
    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_e947c1bb6b593a55e9ecc9d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3e8fc530d53a4f5685558171.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6a319456dc3cc8e20ea608cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_750b699b76ebbe5524fb4a7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_059116bae216493ba4a4aacc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_1a9abca63d9e0eb4d2d043c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_a7cdf082d20cec3dbb29b863.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bbc7d566ab8530cbf672e642.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_d99913620d24096af7bbb7f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;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_f6a93fc4b44d606638fa67a5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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_076420df5f1dbaa867594911.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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_d5d7cb6370348c9cc0ca9810.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740723;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_833c9f2dcbf431e614a48d5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_0ce25cf167da03a98b2fec24.woff2')format("woff");}.fff{font-family:fff;line-height:0.718262;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_67091e1fb4977c3e01f6a0a1.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_e7e69c45bde6d3d3737dceab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.761719;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_a48531e2c741dcd6b346dd22.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.021000;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_52eb9c58a6bd940ca19fdc6e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_753968d6aaa3eab4d7fe80c9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_9a92d376a15991f2ff4d946b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.740234;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:ff16;src:url('chunks/assets/font_4d86d9a41de70e2731b94289.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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:ff17;src:url('chunks/assets/font_076420df5f1dbaa867594911.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.740723;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:ff18;src:url('chunks/assets/font_8394a10f6564fdc648892b8e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.330566;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:ff19;src:url('chunks/assets/font_ea8250a490401c62c42d6b18.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.752441;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:ff1a;src:url('chunks/assets/font_3b6d69c393bc2197090ee960.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:3.333984;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);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-15.840000px;}
.v8{vertical-align:-5.760000px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.760000px;}
.v3{vertical-align:11.778000px;}
.v7{vertical-align:15.840000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:52.560000px;}
.ls1c{letter-spacing:-0.690000px;}
.ls16{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.219000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.210000px;}
.ls1f{letter-spacing:-0.166800px;}
.ls21{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.084000px;}
.ls11{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.066000px;}
.ls14{letter-spacing:-0.060000px;}
.lse{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.048000px;}
.ls15{letter-spacing:-0.042000px;}
.lsd{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.024000px;}
.ls17{letter-spacing:-0.012000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.018000px;}
.ls22{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.166800px;}
.ls1{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.181440px;}
.ls0{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.722000px;}
.ls7{letter-spacing:2.064000px;}
.ls8{letter-spacing:2.166000px;}
.ls4{letter-spacing:3.468000px;}
.ls19{letter-spacing:55.080000px;}
.ls1a{letter-spacing:1212.412800px;}
.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;}
}
.ws1f{word-spacing:-72.000000px;}
.ws20{word-spacing:-51.120000px;}
.ws21{word-spacing:-41.760000px;}
.ws22{word-spacing:-41.550000px;}
.ws5{word-spacing:-35.040000px;}
.ws0{word-spacing:-23.958000px;}
.ws1{word-spacing:-23.940000px;}
.ws23{word-spacing:-20.370000px;}
.ws25{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws29{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws28{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.632000px;}
.ws24{word-spacing:-16.006800px;}
.ws26{word-spacing:-15.673200px;}
.ws27{word-spacing:-15.621000px;}
.ws3{word-spacing:-12.241200px;}
.ws1e{word-spacing:-12.060000px;}
.ws1d{word-spacing:-0.036000px;}
.ws1c{word-spacing:-0.012000px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:0.162000px;}
.wsf{word-spacing:0.174000px;}
.ws1a{word-spacing:0.180000px;}
.wse{word-spacing:0.186000px;}
.wsd{word-spacing:0.210000px;}
.ws8{word-spacing:0.288000px;}
.ws9{word-spacing:0.384000px;}
.ws10{word-spacing:0.570000px;}
.ws16{word-spacing:5.082000px;}
.ws13{word-spacing:5.088000px;}
.ws11{word-spacing:5.094000px;}
.ws12{word-spacing:5.106000px;}
.ws14{word-spacing:5.112000px;}
.ws15{word-spacing:5.118000px;}
.ws17{word-spacing:5.130000px;}
.ws18{word-spacing:5.142000px;}
.wsa{word-spacing:14.094000px;}
.wsc{word-spacing:17.058000px;}
.wsb{word-spacing:17.100000px;}
._8{margin-left:-5.034480px;}
._7{margin-left:-2.176157px;}
._1{margin-left:-1.073374px;}
._0{width:1.521531px;}
._3{width:3.066000px;}
._5{width:14.208000px;}
._2{width:18.426000px;}
._4{width:19.466469px;}
._6{width:507.486000px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y22{bottom:19.555500px;}
.y48{bottom:22.500000px;}
.y47{bottom:28.264500px;}
.y21{bottom:37.555500px;}
.y20{bottom:55.555500px;}
.y1f{bottom:88.747500px;}
.y27{bottom:96.156000px;}
.y1e{bottom:106.534500px;}
.y1d{bottom:124.278000px;}
.y46{bottom:125.676000px;}
.y13e{bottom:125.856000px;}
.yf3{bottom:126.036000px;}
.y63{bottom:126.756000px;}
.y104{bottom:134.676000px;}
.yfb{bottom:146.916000px;}
.y45{bottom:156.810000px;}
.yf2{bottom:156.990000px;}
.y62{bottom:157.890000px;}
.yc7{bottom:159.870000px;}
.y1c{bottom:164.841000px;}
.y103{bottom:165.810000px;}
.yd5{bottom:167.070000px;}
.y12a{bottom:174.990000px;}
.y151{bottom:176.250000px;}
.yfa{bottom:178.050000px;}
.y44{bottom:187.770000px;}
.yb7{bottom:187.950000px;}
.yf1{bottom:188.130000px;}
.y61{bottom:188.850000px;}
.yc6{bottom:190.830000px;}
.y102{bottom:196.770000px;}
.y11d{bottom:196.950000px;}
.yd4{bottom:198.030000px;}
.y1a{bottom:204.996000px;}
.y129{bottom:205.950000px;}
.y150{bottom:207.390000px;}
.yf9{bottom:209.010000px;}
.y43{bottom:218.910000px;}
.yf0{bottom:219.090000px;}
.y60{bottom:219.990000px;}
.yc5{bottom:221.970000px;}
.y7c{bottom:227.910000px;}
.y13d{bottom:228.090000px;}
.yd3{bottom:229.170000px;}
.y19{bottom:235.950000px;}
.y14f{bottom:238.350000px;}
.yf8{bottom:240.150000px;}
.y128{bottom:246.090000px;}
.y42{bottom:249.870000px;}
.yb6{bottom:250.050000px;}
.yef{bottom:250.230000px;}
.y5f{bottom:250.950000px;}
.yc4{bottom:252.930000px;}
.y7b{bottom:258.870000px;}
.y13c{bottom:259.050000px;}
.yd2{bottom:260.130000px;}
.y18{bottom:267.090000px;}
.y11c{bottom:277.050000px;}
.y14e{bottom:278.490000px;}
.y41{bottom:281.010000px;}
.y5e{bottom:282.090000px;}
.yc3{bottom:283.890000px;}
.yf7{bottom:287.310000px;}
.y7a{bottom:290.010000px;}
.y10c{bottom:291.090000px;}
.yd1{bottom:291.270000px;}
.y17{bottom:298.050000px;}
.y13b{bottom:299.190000px;}
.yf6{bottom:305.490000px;}
.y11b{bottom:308.190000px;}
.y14d{bottom:309.450000px;}
.y40{bottom:311.970000px;}
.yb5{bottom:312.150000px;}
.y5d{bottom:313.050000px;}
.yc2{bottom:315.030000px;}
.yee{bottom:319.350000px;}
.y79{bottom:320.970000px;}
.y10b{bottom:322.050000px;}
.yd0{bottom:322.230000px;}
.yf5{bottom:323.490000px;}
.y16{bottom:329.190000px;}
.y13a{bottom:330.195000px;}
.yed{bottom:337.575000px;}
.y9c{bottom:338.655000px;}
.y11a{bottom:339.195000px;}
.y14c{bottom:340.635000px;}
.yf4{bottom:341.715000px;}
.y3f{bottom:343.155000px;}
.yac{bottom:343.875000px;}
.y5c{bottom:344.235000px;}
.yc1{bottom:346.035000px;}
.y78{bottom:352.155000px;}
.ycf{bottom:353.235000px;}
.yec{bottom:355.575000px;}
.y15{bottom:360.150000px;}
.y139{bottom:361.335000px;}
.y9b{bottom:369.795000px;}
.y119{bottom:370.335000px;}
.y14b{bottom:371.595000px;}
.yeb{bottom:373.755000px;}
.y3e{bottom:374.115000px;}
.yb4{bottom:374.295000px;}
.yab{bottom:374.835000px;}
.y5b{bottom:375.195000px;}
.yc0{bottom:377.175000px;}
.y127{bottom:379.335000px;}
.y77{bottom:383.115000px;}
.y10a{bottom:384.195000px;}
.yce{bottom:384.375000px;}
.y14{bottom:391.290000px;}
.yea{bottom:391.935000px;}
.y9a{bottom:400.755000px;}
.y138{bottom:401.295000px;}
.y14a{bottom:402.735000px;}
.y3d{bottom:405.255000px;}
.yaa{bottom:405.975000px;}
.y82{bottom:406.335000px;}
.ye9{bottom:409.935000px;}
.y118{bottom:410.295000px;}
.y76{bottom:414.255000px;}
.y5a{bottom:415.335000px;}
.y13{bottom:422.295000px;}
.ye8{bottom:428.115000px;}
.y99{bottom:431.895000px;}
.y137{bottom:432.435000px;}
.y3c{bottom:436.215000px;}
.yb3{bottom:436.395000px;}
.ya9{bottom:436.935000px;}
.y81{bottom:437.295000px;}
.y126{bottom:441.435000px;}
.y149{bottom:442.695000px;}
.y75{bottom:445.215000px;}
.y59{bottom:446.295000px;}
.ycd{bottom:446.475000px;}
.y12{bottom:453.435000px;}
.ybf{bottom:455.295000px;}
.y98{bottom:462.855000px;}
.y136{bottom:463.395000px;}
.y3b{bottom:467.355000px;}
.ya8{bottom:468.075000px;}
.y80{bottom:468.435000px;}
.y148{bottom:473.835000px;}
.y74{bottom:476.355000px;}
.y58{bottom:477.435000px;}
.y125{bottom:481.395000px;}
.ybe{bottom:482.475000px;}
.y11{bottom:484.395000px;}
.y117{bottom:490.395000px;}
.y97{bottom:493.995000px;}
.y135{bottom:494.535000px;}
.y3a{bottom:498.315000px;}
.yb2{bottom:498.495000px;}
.ya7{bottom:499.035000px;}
.y7f{bottom:499.395000px;}
.y147{bottom:504.795000px;}
.y73{bottom:507.315000px;}
.y57{bottom:508.395000px;}
.ycc{bottom:508.575000px;}
.ybd{bottom:509.655000px;}
.y124{bottom:512.535000px;}
.y101{bottom:516.315000px;}
.y116{bottom:521.535000px;}
.y10{bottom:524.535000px;}
.y96{bottom:524.955000px;}
.y39{bottom:529.455000px;}
.ya6{bottom:530.175000px;}
.ye7{bottom:530.535000px;}
.y134{bottom:534.495000px;}
.y146{bottom:535.935000px;}
.ybc{bottom:536.835000px;}
.y72{bottom:538.455000px;}
.y56{bottom:539.535000px;}
.y123{bottom:543.495000px;}
.y100{bottom:547.455000px;}
.y115{bottom:552.495000px;}
.yf{bottom:555.495000px;}
.y38{bottom:560.415000px;}
.ya5{bottom:561.135000px;}
.ye6{bottom:561.495000px;}
.ybb{bottom:564.015000px;}
.y133{bottom:565.635000px;}
.y145{bottom:566.895000px;}
.y95{bottom:567.075000px;}
.y71{bottom:569.415000px;}
.y55{bottom:570.495000px;}
.y122{bottom:574.635000px;}
.yff{bottom:578.415000px;}
.y109{bottom:579.495000px;}
.y114{bottom:583.635000px;}
.ye{bottom:586.635000px;}
.yba{bottom:591.195000px;}
.yb1{bottom:591.555000px;}
.ya4{bottom:592.275000px;}
.ye5{bottom:592.635000px;}
.y132{bottom:596.625000px;}
.y37{bottom:600.405000px;}
.y54{bottom:601.665000px;}
.y121{bottom:605.625000px;}
.yfe{bottom:609.405000px;}
.y108{bottom:610.665000px;}
.y113{bottom:614.625000px;}
.y144{bottom:617.325000px;}
.yd{bottom:617.595000px;}
.ycb{bottom:617.865000px;}
.yb9{bottom:618.405000px;}
.y94{bottom:621.465000px;}
.yb0{bottom:622.545000px;}
.ye4{bottom:623.625000px;}
.y131{bottom:627.765000px;}
.y36{bottom:631.545000px;}
.y53{bottom:632.625000px;}
.y120{bottom:636.765000px;}
.y143{bottom:638.025000px;}
.yfd{bottom:640.545000px;}
.y107{bottom:641.625000px;}
.yca{bottom:645.045000px;}
.yb8{bottom:645.585000px;}
.y112{bottom:645.765000px;}
.yc{bottom:648.735000px;}
.yaf{bottom:653.685000px;}
.ye3{bottom:654.765000px;}
.y130{bottom:657.465000px;}
.y142{bottom:658.725000px;}
.ya3{bottom:661.425000px;}
.y35{bottom:662.505000px;}
.y52{bottom:663.765000px;}
.y70{bottom:671.505000px;}
.yc9{bottom:672.225000px;}
.y106{bottom:672.765000px;}
.y93{bottom:673.485000px;}
.y111{bottom:676.725000px;}
.y12f{bottom:678.165000px;}
.ya2{bottom:679.605000px;}
.yb{bottom:679.725000px;}
.yae{bottom:684.645000px;}
.ye2{bottom:685.725000px;}
.y34{bottom:693.645000px;}
.y51{bottom:694.725000px;}
.ya1{bottom:697.605000px;}
.y12e{bottom:698.865000px;}
.yc8{bottom:699.405000px;}
.y6f{bottom:702.645000px;}
.y105{bottom:703.725000px;}
.y92{bottom:704.625000px;}
.y110{bottom:707.865000px;}
.ya{bottom:710.865000px;}
.ya0{bottom:715.785000px;}
.ye1{bottom:716.865000px;}
.y33{bottom:724.605000px;}
.y50{bottom:725.865000px;}
.y141{bottom:729.825000px;}
.y6e{bottom:733.605000px;}
.y9f{bottom:733.965000px;}
.y7e{bottom:734.865000px;}
.y91{bottom:735.585000px;}
.y10f{bottom:738.825000px;}
.ye0{bottom:747.825000px;}
.y9{bottom:750.825000px;}
.y9e{bottom:751.965000px;}
.y32{bottom:755.745000px;}
.y4f{bottom:756.825000px;}
.y140{bottom:760.965000px;}
.y6d{bottom:764.745000px;}
.y7d{bottom:765.825000px;}
.y90{bottom:766.545000px;}
.y10e{bottom:769.965000px;}
.y9d{bottom:770.145000px;}
.y152{bottom:778.965000px;}
.yad{bottom:784.905000px;}
.y31{bottom:786.705000px;}
.ydf{bottom:787.965000px;}
.y6c{bottom:795.705000px;}
.y4e{bottom:796.965000px;}
.y8f{bottom:797.685000px;}
.y8{bottom:800.925000px;}
.y11f{bottom:809.925000px;}
.y30{bottom:817.845000px;}
.yde{bottom:818.925000px;}
.y6b{bottom:826.845000px;}
.y4d{bottom:827.925000px;}
.y8e{bottom:828.645000px;}
.y13f{bottom:832.065000px;}
.y10d{bottom:841.065000px;}
.y2f{bottom:848.805000px;}
.ydd{bottom:850.065000px;}
.y6a{bottom:857.805000px;}
.y4c{bottom:859.065000px;}
.y8d{bottom:859.785000px;}
.y11e{bottom:872.070000px;}
.y2e{bottom:879.990000px;}
.ydc{bottom:881.070000px;}
.y7{bottom:887.865000px;}
.y69{bottom:888.990000px;}
.y4b{bottom:890.070000px;}
.y8c{bottom:890.790000px;}
.y12d{bottom:903.210000px;}
.ydb{bottom:912.210000px;}
.y68{bottom:919.950000px;}
.y6{bottom:921.210000px;}
.y2d{bottom:922.110000px;}
.y8b{bottom:930.930000px;}
.y12c{bottom:934.170000px;}
.yda{bottom:943.170000px;}
.y67{bottom:951.090000px;}
.y4a{bottom:952.170000px;}
.y5{bottom:959.010000px;}
.y8a{bottom:961.890000px;}
.y12b{bottom:965.310000px;}
.yd9{bottom:974.310000px;}
.y66{bottom:982.050000px;}
.y49{bottom:983.310000px;}
.y89{bottom:993.030000px;}
.yfc{bottom:993.210000px;}
.y4{bottom:999.150000px;}
.yd8{bottom:1005.270000px;}
.y65{bottom:1013.190000px;}
.y2c{bottom:1014.270000px;}
.y88{bottom:1023.990000px;}
.y3{bottom:1032.270000px;}
.yd7{bottom:1036.410000px;}
.y2b{bottom:1045.410000px;}
.y87{bottom:1055.130000px;}
.y64{bottom:1055.310000px;}
.y2{bottom:1063.851000px;}
.yd6{bottom:1067.370000px;}
.y2a{bottom:1076.370000px;}
.y1{bottom:1105.251000px;}
.y85{bottom:1106.430000px;}
.y29{bottom:1107.510000px;}
.y86{bottom:1111.470000px;}
.y83{bottom:1115.430000px;}
.y84{bottom:1133.820000px;}
.y28{bottom:1138.500000px;}
.y26{bottom:1160.289000px;}
.y25{bottom:1178.289000px;}
.y24{bottom:1196.289000px;}
.y23{bottom:1214.289000px;}
.y1b{bottom:1244.880000px;}
.hd{height:28.916016px;}
.h8{height:43.710938px;}
.h6{height:45.000000px;}
.h4{height:47.344922px;}
.h7{height:48.656250px;}
.ha{height:52.800000px;}
.h13{height:62.184375px;}
.h9{height:62.578125px;}
.h12{height:63.855000px;}
.hc{height:64.546875px;}
.h15{height:70.628906px;}
.h5{height:70.664062px;}
.h14{height:72.562500px;}
.h3{height:74.704922px;}
.hf{height:83.254922px;}
.hb{height:84.898125px;}
.h11{height:86.504063px;}
.h2{height:93.983203px;}
.h10{height:101.915508px;}
.he{height:154.475508px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.500000px;}
.xe{left:14.727000px;}
.xd{left:74.236500px;}
.xc{left:77.164500px;}
.x9{left:108.036000px;}
.x1{left:110.982000px;}
.x2{left:120.276000px;}
.x7{left:135.036000px;}
.x6{left:142.956000px;}
.x4{left:151.770000px;}
.x10{left:187.024500px;}
.x13{left:207.030000px;}
.x14{left:214.410000px;}
.x12{left:228.090000px;}
.x3{left:251.130000px;}
.x5{left:363.495000px;}
.x16{left:389.955000px;}
.x8{left:399.495000px;}
.xb{left:443.169000px;}
.x11{left:630.517545px;}
.x15{left:767.130000px;}
.xf{left:776.130000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-14.080000pt;}
.v8{vertical-align:-5.120000pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.120000pt;}
.v3{vertical-align:10.469333pt;}
.v7{vertical-align:14.080000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:46.720000pt;}
.ls1c{letter-spacing:-0.613333pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.194667pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.186667pt;}
.ls1f{letter-spacing:-0.148267pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.074667pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls14{letter-spacing:-0.053333pt;}
.lse{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.042667pt;}
.ls15{letter-spacing:-0.037333pt;}
.lsd{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.021333pt;}
.ls17{letter-spacing:-0.010667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.016000pt;}
.ls22{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.148267pt;}
.ls1{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.161280pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.530667pt;}
.ls7{letter-spacing:1.834667pt;}
.ls8{letter-spacing:1.925333pt;}
.ls4{letter-spacing:3.082667pt;}
.ls19{letter-spacing:48.960000pt;}
.ls1a{letter-spacing:1077.700267pt;}
.ws1f{word-spacing:-64.000000pt;}
.ws20{word-spacing:-45.440000pt;}
.ws21{word-spacing:-37.120000pt;}
.ws22{word-spacing:-36.933333pt;}
.ws5{word-spacing:-31.146667pt;}
.ws0{word-spacing:-21.296000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws23{word-spacing:-18.106667pt;}
.ws25{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws29{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws28{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.784000pt;}
.ws24{word-spacing:-14.228267pt;}
.ws26{word-spacing:-13.931733pt;}
.ws27{word-spacing:-13.885333pt;}
.ws3{word-spacing:-10.881067pt;}
.ws1e{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-0.032000pt;}
.ws1c{word-spacing:-0.010667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.144000pt;}
.wsf{word-spacing:0.154667pt;}
.ws1a{word-spacing:0.160000pt;}
.wse{word-spacing:0.165333pt;}
.wsd{word-spacing:0.186667pt;}
.ws8{word-spacing:0.256000pt;}
.ws9{word-spacing:0.341333pt;}
.ws10{word-spacing:0.506667pt;}
.ws16{word-spacing:4.517333pt;}
.ws13{word-spacing:4.522667pt;}
.ws11{word-spacing:4.528000pt;}
.ws12{word-spacing:4.538667pt;}
.ws14{word-spacing:4.544000pt;}
.ws15{word-spacing:4.549333pt;}
.ws17{word-spacing:4.560000pt;}
.ws18{word-spacing:4.570667pt;}
.wsa{word-spacing:12.528000pt;}
.wsc{word-spacing:15.162667pt;}
.wsb{word-spacing:15.200000pt;}
._8{margin-left:-4.475093pt;}
._7{margin-left:-1.934362pt;}
._1{margin-left:-0.954110pt;}
._0{width:1.352472pt;}
._3{width:2.725333pt;}
._5{width:12.629333pt;}
._2{width:16.378667pt;}
._4{width:17.303528pt;}
._6{width:451.098667pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:17.382667pt;}
.y48{bottom:20.000000pt;}
.y47{bottom:25.124000pt;}
.y21{bottom:33.382667pt;}
.y20{bottom:49.382667pt;}
.y1f{bottom:78.886667pt;}
.y27{bottom:85.472000pt;}
.y1e{bottom:94.697333pt;}
.y1d{bottom:110.469333pt;}
.y46{bottom:111.712000pt;}
.y13e{bottom:111.872000pt;}
.yf3{bottom:112.032000pt;}
.y63{bottom:112.672000pt;}
.y104{bottom:119.712000pt;}
.yfb{bottom:130.592000pt;}
.y45{bottom:139.386667pt;}
.yf2{bottom:139.546667pt;}
.y62{bottom:140.346667pt;}
.yc7{bottom:142.106667pt;}
.y1c{bottom:146.525333pt;}
.y103{bottom:147.386667pt;}
.yd5{bottom:148.506667pt;}
.y12a{bottom:155.546667pt;}
.y151{bottom:156.666667pt;}
.yfa{bottom:158.266667pt;}
.y44{bottom:166.906667pt;}
.yb7{bottom:167.066667pt;}
.yf1{bottom:167.226667pt;}
.y61{bottom:167.866667pt;}
.yc6{bottom:169.626667pt;}
.y102{bottom:174.906667pt;}
.y11d{bottom:175.066667pt;}
.yd4{bottom:176.026667pt;}
.y1a{bottom:182.218667pt;}
.y129{bottom:183.066667pt;}
.y150{bottom:184.346667pt;}
.yf9{bottom:185.786667pt;}
.y43{bottom:194.586667pt;}
.yf0{bottom:194.746667pt;}
.y60{bottom:195.546667pt;}
.yc5{bottom:197.306667pt;}
.y7c{bottom:202.586667pt;}
.y13d{bottom:202.746667pt;}
.yd3{bottom:203.706667pt;}
.y19{bottom:209.733333pt;}
.y14f{bottom:211.866667pt;}
.yf8{bottom:213.466667pt;}
.y128{bottom:218.746667pt;}
.y42{bottom:222.106667pt;}
.yb6{bottom:222.266667pt;}
.yef{bottom:222.426667pt;}
.y5f{bottom:223.066667pt;}
.yc4{bottom:224.826667pt;}
.y7b{bottom:230.106667pt;}
.y13c{bottom:230.266667pt;}
.yd2{bottom:231.226667pt;}
.y18{bottom:237.413333pt;}
.y11c{bottom:246.266667pt;}
.y14e{bottom:247.546667pt;}
.y41{bottom:249.786667pt;}
.y5e{bottom:250.746667pt;}
.yc3{bottom:252.346667pt;}
.yf7{bottom:255.386667pt;}
.y7a{bottom:257.786667pt;}
.y10c{bottom:258.746667pt;}
.yd1{bottom:258.906667pt;}
.y17{bottom:264.933333pt;}
.y13b{bottom:265.946667pt;}
.yf6{bottom:271.546667pt;}
.y11b{bottom:273.946667pt;}
.y14d{bottom:275.066667pt;}
.y40{bottom:277.306667pt;}
.yb5{bottom:277.466667pt;}
.y5d{bottom:278.266667pt;}
.yc2{bottom:280.026667pt;}
.yee{bottom:283.866667pt;}
.y79{bottom:285.306667pt;}
.y10b{bottom:286.266667pt;}
.yd0{bottom:286.426667pt;}
.yf5{bottom:287.546667pt;}
.y16{bottom:292.613333pt;}
.y13a{bottom:293.506667pt;}
.yed{bottom:300.066667pt;}
.y9c{bottom:301.026667pt;}
.y11a{bottom:301.506667pt;}
.y14c{bottom:302.786667pt;}
.yf4{bottom:303.746667pt;}
.y3f{bottom:305.026667pt;}
.yac{bottom:305.666667pt;}
.y5c{bottom:305.986667pt;}
.yc1{bottom:307.586667pt;}
.y78{bottom:313.026667pt;}
.ycf{bottom:313.986667pt;}
.yec{bottom:316.066667pt;}
.y15{bottom:320.133333pt;}
.y139{bottom:321.186667pt;}
.y9b{bottom:328.706667pt;}
.y119{bottom:329.186667pt;}
.y14b{bottom:330.306667pt;}
.yeb{bottom:332.226667pt;}
.y3e{bottom:332.546667pt;}
.yb4{bottom:332.706667pt;}
.yab{bottom:333.186667pt;}
.y5b{bottom:333.506667pt;}
.yc0{bottom:335.266667pt;}
.y127{bottom:337.186667pt;}
.y77{bottom:340.546667pt;}
.y10a{bottom:341.506667pt;}
.yce{bottom:341.666667pt;}
.y14{bottom:347.813333pt;}
.yea{bottom:348.386667pt;}
.y9a{bottom:356.226667pt;}
.y138{bottom:356.706667pt;}
.y14a{bottom:357.986667pt;}
.y3d{bottom:360.226667pt;}
.yaa{bottom:360.866667pt;}
.y82{bottom:361.186667pt;}
.ye9{bottom:364.386667pt;}
.y118{bottom:364.706667pt;}
.y76{bottom:368.226667pt;}
.y5a{bottom:369.186667pt;}
.y13{bottom:375.373333pt;}
.ye8{bottom:380.546667pt;}
.y99{bottom:383.906667pt;}
.y137{bottom:384.386667pt;}
.y3c{bottom:387.746667pt;}
.yb3{bottom:387.906667pt;}
.ya9{bottom:388.386667pt;}
.y81{bottom:388.706667pt;}
.y126{bottom:392.386667pt;}
.y149{bottom:393.506667pt;}
.y75{bottom:395.746667pt;}
.y59{bottom:396.706667pt;}
.ycd{bottom:396.866667pt;}
.y12{bottom:403.053333pt;}
.ybf{bottom:404.706667pt;}
.y98{bottom:411.426667pt;}
.y136{bottom:411.906667pt;}
.y3b{bottom:415.426667pt;}
.ya8{bottom:416.066667pt;}
.y80{bottom:416.386667pt;}
.y148{bottom:421.186667pt;}
.y74{bottom:423.426667pt;}
.y58{bottom:424.386667pt;}
.y125{bottom:427.906667pt;}
.ybe{bottom:428.866667pt;}
.y11{bottom:430.573333pt;}
.y117{bottom:435.906667pt;}
.y97{bottom:439.106667pt;}
.y135{bottom:439.586667pt;}
.y3a{bottom:442.946667pt;}
.yb2{bottom:443.106667pt;}
.ya7{bottom:443.586667pt;}
.y7f{bottom:443.906667pt;}
.y147{bottom:448.706667pt;}
.y73{bottom:450.946667pt;}
.y57{bottom:451.906667pt;}
.ycc{bottom:452.066667pt;}
.ybd{bottom:453.026667pt;}
.y124{bottom:455.586667pt;}
.y101{bottom:458.946667pt;}
.y116{bottom:463.586667pt;}
.y10{bottom:466.253333pt;}
.y96{bottom:466.626667pt;}
.y39{bottom:470.626667pt;}
.ya6{bottom:471.266667pt;}
.ye7{bottom:471.586667pt;}
.y134{bottom:475.106667pt;}
.y146{bottom:476.386667pt;}
.ybc{bottom:477.186667pt;}
.y72{bottom:478.626667pt;}
.y56{bottom:479.586667pt;}
.y123{bottom:483.106667pt;}
.y100{bottom:486.626667pt;}
.y115{bottom:491.106667pt;}
.yf{bottom:493.773333pt;}
.y38{bottom:498.146667pt;}
.ya5{bottom:498.786667pt;}
.ye6{bottom:499.106667pt;}
.ybb{bottom:501.346667pt;}
.y133{bottom:502.786667pt;}
.y145{bottom:503.906667pt;}
.y95{bottom:504.066667pt;}
.y71{bottom:506.146667pt;}
.y55{bottom:507.106667pt;}
.y122{bottom:510.786667pt;}
.yff{bottom:514.146667pt;}
.y109{bottom:515.106667pt;}
.y114{bottom:518.786667pt;}
.ye{bottom:521.453333pt;}
.yba{bottom:525.506667pt;}
.yb1{bottom:525.826667pt;}
.ya4{bottom:526.466667pt;}
.ye5{bottom:526.786667pt;}
.y132{bottom:530.333333pt;}
.y37{bottom:533.693333pt;}
.y54{bottom:534.813333pt;}
.y121{bottom:538.333333pt;}
.yfe{bottom:541.693333pt;}
.y108{bottom:542.813333pt;}
.y113{bottom:546.333333pt;}
.y144{bottom:548.733333pt;}
.yd{bottom:548.973333pt;}
.ycb{bottom:549.213333pt;}
.yb9{bottom:549.693333pt;}
.y94{bottom:552.413333pt;}
.yb0{bottom:553.373333pt;}
.ye4{bottom:554.333333pt;}
.y131{bottom:558.013333pt;}
.y36{bottom:561.373333pt;}
.y53{bottom:562.333333pt;}
.y120{bottom:566.013333pt;}
.y143{bottom:567.133333pt;}
.yfd{bottom:569.373333pt;}
.y107{bottom:570.333333pt;}
.yca{bottom:573.373333pt;}
.yb8{bottom:573.853333pt;}
.y112{bottom:574.013333pt;}
.yc{bottom:576.653333pt;}
.yaf{bottom:581.053333pt;}
.ye3{bottom:582.013333pt;}
.y130{bottom:584.413333pt;}
.y142{bottom:585.533333pt;}
.ya3{bottom:587.933333pt;}
.y35{bottom:588.893333pt;}
.y52{bottom:590.013333pt;}
.y70{bottom:596.893333pt;}
.yc9{bottom:597.533333pt;}
.y106{bottom:598.013333pt;}
.y93{bottom:598.653333pt;}
.y111{bottom:601.533333pt;}
.y12f{bottom:602.813333pt;}
.ya2{bottom:604.093333pt;}
.yb{bottom:604.200000pt;}
.yae{bottom:608.573333pt;}
.ye2{bottom:609.533333pt;}
.y34{bottom:616.573333pt;}
.y51{bottom:617.533333pt;}
.ya1{bottom:620.093333pt;}
.y12e{bottom:621.213333pt;}
.yc8{bottom:621.693333pt;}
.y6f{bottom:624.573333pt;}
.y105{bottom:625.533333pt;}
.y92{bottom:626.333333pt;}
.y110{bottom:629.213333pt;}
.ya{bottom:631.880000pt;}
.ya0{bottom:636.253333pt;}
.ye1{bottom:637.213333pt;}
.y33{bottom:644.093333pt;}
.y50{bottom:645.213333pt;}
.y141{bottom:648.733333pt;}
.y6e{bottom:652.093333pt;}
.y9f{bottom:652.413333pt;}
.y7e{bottom:653.213333pt;}
.y91{bottom:653.853333pt;}
.y10f{bottom:656.733333pt;}
.ye0{bottom:664.733333pt;}
.y9{bottom:667.400000pt;}
.y9e{bottom:668.413333pt;}
.y32{bottom:671.773333pt;}
.y4f{bottom:672.733333pt;}
.y140{bottom:676.413333pt;}
.y6d{bottom:679.773333pt;}
.y7d{bottom:680.733333pt;}
.y90{bottom:681.373333pt;}
.y10e{bottom:684.413333pt;}
.y9d{bottom:684.573333pt;}
.y152{bottom:692.413333pt;}
.yad{bottom:697.693333pt;}
.y31{bottom:699.293333pt;}
.ydf{bottom:700.413333pt;}
.y6c{bottom:707.293333pt;}
.y4e{bottom:708.413333pt;}
.y8f{bottom:709.053333pt;}
.y8{bottom:711.933333pt;}
.y11f{bottom:719.933333pt;}
.y30{bottom:726.973333pt;}
.yde{bottom:727.933333pt;}
.y6b{bottom:734.973333pt;}
.y4d{bottom:735.933333pt;}
.y8e{bottom:736.573333pt;}
.y13f{bottom:739.613333pt;}
.y10d{bottom:747.613333pt;}
.y2f{bottom:754.493333pt;}
.ydd{bottom:755.613333pt;}
.y6a{bottom:762.493333pt;}
.y4c{bottom:763.613333pt;}
.y8d{bottom:764.253333pt;}
.y11e{bottom:775.173333pt;}
.y2e{bottom:782.213333pt;}
.ydc{bottom:783.173333pt;}
.y7{bottom:789.213333pt;}
.y69{bottom:790.213333pt;}
.y4b{bottom:791.173333pt;}
.y8c{bottom:791.813333pt;}
.y12d{bottom:802.853333pt;}
.ydb{bottom:810.853333pt;}
.y68{bottom:817.733333pt;}
.y6{bottom:818.853333pt;}
.y2d{bottom:819.653333pt;}
.y8b{bottom:827.493333pt;}
.y12c{bottom:830.373333pt;}
.yda{bottom:838.373333pt;}
.y67{bottom:845.413333pt;}
.y4a{bottom:846.373333pt;}
.y5{bottom:852.453333pt;}
.y8a{bottom:855.013333pt;}
.y12b{bottom:858.053333pt;}
.yd9{bottom:866.053333pt;}
.y66{bottom:872.933333pt;}
.y49{bottom:874.053333pt;}
.y89{bottom:882.693333pt;}
.yfc{bottom:882.853333pt;}
.y4{bottom:888.133333pt;}
.yd8{bottom:893.573333pt;}
.y65{bottom:900.613333pt;}
.y2c{bottom:901.573333pt;}
.y88{bottom:910.213333pt;}
.y3{bottom:917.573333pt;}
.yd7{bottom:921.253333pt;}
.y2b{bottom:929.253333pt;}
.y87{bottom:937.893333pt;}
.y64{bottom:938.053333pt;}
.y2{bottom:945.645333pt;}
.yd6{bottom:948.773333pt;}
.y2a{bottom:956.773333pt;}
.y1{bottom:982.445333pt;}
.y85{bottom:983.493333pt;}
.y29{bottom:984.453333pt;}
.y86{bottom:987.973333pt;}
.y83{bottom:991.493333pt;}
.y84{bottom:1007.840000pt;}
.y28{bottom:1012.000000pt;}
.y26{bottom:1031.368000pt;}
.y25{bottom:1047.368000pt;}
.y24{bottom:1063.368000pt;}
.y23{bottom:1079.368000pt;}
.y1b{bottom:1106.560000pt;}
.hd{height:25.703125pt;}
.h8{height:38.854167pt;}
.h6{height:40.000000pt;}
.h4{height:42.084375pt;}
.h7{height:43.250000pt;}
.ha{height:46.933333pt;}
.h13{height:55.275000pt;}
.h9{height:55.625000pt;}
.h12{height:56.760000pt;}
.hc{height:57.375000pt;}
.h15{height:62.781250pt;}
.h5{height:62.812500pt;}
.h14{height:64.500000pt;}
.h3{height:66.404375pt;}
.hf{height:74.004375pt;}
.hb{height:75.465000pt;}
.h11{height:76.892500pt;}
.h2{height:83.540625pt;}
.h10{height:90.591562pt;}
.he{height:137.311562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.666667pt;}
.xe{left:13.090667pt;}
.xd{left:65.988000pt;}
.xc{left:68.590667pt;}
.x9{left:96.032000pt;}
.x1{left:98.650667pt;}
.x2{left:106.912000pt;}
.x7{left:120.032000pt;}
.x6{left:127.072000pt;}
.x4{left:134.906667pt;}
.x10{left:166.244000pt;}
.x13{left:184.026667pt;}
.x14{left:190.586667pt;}
.x12{left:202.746667pt;}
.x3{left:223.226667pt;}
.x5{left:323.106667pt;}
.x16{left:346.626667pt;}
.x8{left:355.106667pt;}
.xb{left:393.928000pt;}
.x11{left:560.460040pt;}
.x15{left:681.893333pt;}
.xf{left:689.893333pt;}
}




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