
    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_72296117d1471f5fb6ea2861.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_95acd95d4b44e009e343da5e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_30bb76dbe963662e021c2344.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e1f0a5563de75f7c823842a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_457b347a32dc52b6a80ef7e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd89a7740a6a2a468bda1e41.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116000;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_9e99dccc26f1e7bc342cace1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.714000;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_47c2556bdfc84a0b87f7831c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_3bfacbe00520e66d636cb5ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_248812e739396e1c3317fc20.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_877b4c62f58020b689d6e83f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.891602;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_9e99dccc26f1e7bc342cace1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;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_47c2556bdfc84a0b87f7831c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.918000;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_f73d1ccdcd9038abea11edf8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_a1a9e222b3af69f543f183b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.687012;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_e176535fd9021d430849b7ee.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_9e99dccc26f1e7bc342cace1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714000;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_47c2556bdfc84a0b87f7831c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918000;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_9e99dccc26f1e7bc342cace1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.714000;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_47c2556bdfc84a0b87f7831c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.918000;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_fc51a8174697b1d4667d8285.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_9e99dccc26f1e7bc342cace1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.714000;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_47c2556bdfc84a0b87f7831c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.918000;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_9e99dccc26f1e7bc342cace1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.714000;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_47c2556bdfc84a0b87f7831c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.918000;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);}
.m3{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760036px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.358560px;}
.ls5{letter-spacing:13.677711px;}
.ls3{letter-spacing:16.331535px;}
.ls2{letter-spacing:22.537122px;}
.ls1{letter-spacing:24.740384px;}
.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;}
}
.ws16{word-spacing:-66.240000px;}
.ws1{word-spacing:-30.000000px;}
.wsa{word-spacing:-28.813168px;}
.ws5{word-spacing:-16.560000px;}
.ws19{word-spacing:-15.298560px;}
.ws1a{word-spacing:-14.940000px;}
.ws23{word-spacing:-13.500000px;}
.wsf{word-spacing:-10.440000px;}
.ws8{word-spacing:-1.442461px;}
.ws2d{word-spacing:-0.726403px;}
.ws2c{word-spacing:-0.726217px;}
.ws11{word-spacing:-0.722547px;}
.ws10{word-spacing:-0.722499px;}
.ws20{word-spacing:-0.722457px;}
.ws2b{word-spacing:-0.488359px;}
.ws2e{word-spacing:-0.341236px;}
.ws1b{word-spacing:-0.341230px;}
.ws1c{word-spacing:-0.341104px;}
.ws28{word-spacing:-0.064003px;}
.ws2a{word-spacing:-0.063913px;}
.ws18{word-spacing:-0.034554px;}
.ws12{word-spacing:-0.032262px;}
.ws29{word-spacing:-0.008989px;}
.ws1d{word-spacing:-0.007712px;}
.ws27{word-spacing:-0.006489px;}
.ws24{word-spacing:-0.005127px;}
.ws1f{word-spacing:-0.002537px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.043227px;}
.ws1e{word-spacing:0.281229px;}
.ws2{word-spacing:0.724529px;}
.wsd{word-spacing:1.437286px;}
.ws3{word-spacing:2.025204px;}
.wsc{word-spacing:5.334635px;}
.wsb{word-spacing:5.871420px;}
.ws21{word-spacing:6.476877px;}
.ws15{word-spacing:7.557053px;}
.ws6{word-spacing:7.918513px;}
.ws7{word-spacing:8.296399px;}
.ws22{word-spacing:9.008116px;}
.wse{word-spacing:10.436716px;}
.ws13{word-spacing:15.476301px;}
.ws25{word-spacing:15.772227px;}
.ws9{word-spacing:16.553601px;}
.ws4{word-spacing:16.557000px;}
.ws14{word-spacing:18.356144px;}
.ws26{word-spacing:33.940656px;}
._5{margin-left:-2.532138px;}
._1{margin-left:-1.195515px;}
._6{width:1.431360px;}
._9{width:3.406320px;}
._d{width:4.965840px;}
._22{width:5.974067px;}
._0{width:7.476098px;}
._b{width:8.665200px;}
._f{width:10.659861px;}
._e{width:12.191040px;}
._12{width:13.687920px;}
._1f{width:15.168960px;}
._2{width:16.561579px;}
._8{width:18.119812px;}
._7{width:19.566585px;}
._1a{width:21.005497px;}
._a{width:22.393909px;}
._c{width:23.579764px;}
._15{width:25.546019px;}
._11{width:26.596080px;}
._14{width:28.544676px;}
._13{width:29.642846px;}
._20{width:32.008089px;}
._4{width:33.118800px;}
._19{width:35.009729px;}
._21{width:37.426832px;}
._24{width:40.200770px;}
._10{width:41.830728px;}
._18{width:42.902422px;}
._1c{width:45.401483px;}
._16{width:46.883854px;}
._17{width:48.698143px;}
._23{width:51.153667px;}
._1e{width:61.404531px;}
._1b{width:62.834449px;}
._1d{width:64.259649px;}
._28{width:66.030502px;}
._25{width:92.670992px;}
._27{width:97.710577px;}
._26{width:99.150502px;}
._3{width:506.460600px;}
.fc7{color:rgb(36,31,32);}
.fc6{color:rgb(36,31,32);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs6{font-size:60.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs7{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.239992px;}
.ya0{bottom:3.239997px;}
.y9d{bottom:3.419980px;}
.yc7{bottom:3.420002px;}
.yca{bottom:3.420018px;}
.yc0{bottom:3.420023px;}
.yc5{bottom:3.599978px;}
.ya1{bottom:3.599984px;}
.yc8{bottom:3.779986px;}
.ycb{bottom:3.780003px;}
.yc1{bottom:3.780008px;}
.y9e{bottom:3.780012px;}
.y4d{bottom:3.959978px;}
.y7f{bottom:3.959987px;}
.yf1{bottom:3.959991px;}
.ycd{bottom:3.960010px;}
.yd6{bottom:3.960012px;}
.y92{bottom:4.139985px;}
.ya4{bottom:4.139989px;}
.y1c{bottom:4.289325px;}
.yc2{bottom:5.760020px;}
.ybe{bottom:6.480002px;}
.y9b{bottom:6.480004px;}
.y1e{bottom:7.057035px;}
.y20{bottom:7.750800px;}
.y1b{bottom:19.233262px;}
.y7e{bottom:23.039989px;}
.ya3{bottom:23.039999px;}
.yd5{bottom:23.040013px;}
.yf0{bottom:23.040038px;}
.y1f{bottom:28.939500px;}
.y1a{bottom:34.177200px;}
.yd4{bottom:41.939978px;}
.yd3{bottom:61.019979px;}
.y19{bottom:61.708950px;}
.y18{bottom:64.500000px;}
.y17{bottom:64.920000px;}
.yd2{bottom:79.919988px;}
.y90{bottom:118.077072px;}
.y6e{bottom:128.700027px;}
.y8f{bottom:136.977070px;}
.y6d{bottom:147.780030px;}
.yee{bottom:155.340020px;}
.y8e{bottom:156.057072px;}
.y49{bottom:156.301500px;}
.yac{bottom:162.537070px;}
.y6c{bottom:166.680027px;}
.yed{bottom:174.420021px;}
.y8d{bottom:174.957069px;}
.y48{bottom:175.381500px;}
.yab{bottom:181.437069px;}
.y6b{bottom:185.580024px;}
.yec{bottom:193.320030px;}
.y8c{bottom:193.857078px;}
.y47{bottom:194.281500px;}
.yaa{bottom:200.517060px;}
.y6a{bottom:204.660027px;}
.yeb{bottom:212.400032px;}
.y8b{bottom:212.937057px;}
.y46{bottom:213.361500px;}
.ya9{bottom:219.417069px;}
.y69{bottom:223.560013px;}
.yea{bottom:231.300018px;}
.y8a{bottom:231.837066px;}
.y45{bottom:232.261500px;}
.ycc{bottom:235.437069px;}
.ya8{bottom:238.497071px;}
.y68{bottom:242.640015px;}
.ye9{bottom:250.200027px;}
.y44{bottom:251.161500px;}
.ya7{bottom:257.397057px;}
.y67{bottom:261.540024px;}
.y89{bottom:268.917069px;}
.ye8{bottom:269.280030px;}
.y43{bottom:270.241500px;}
.ya6{bottom:276.297066px;}
.y88{bottom:287.817078px;}
.ye7{bottom:288.180015px;}
.y42{bottom:289.141500px;}
.ya5{bottom:295.377068px;}
.y66{bottom:299.520012px;}
.y87{bottom:306.717064px;}
.ye6{bottom:307.260018px;}
.y41{bottom:308.221500px;}
.y65{bottom:318.420021px;}
.y86{bottom:325.797066px;}
.ye5{bottom:326.160027px;}
.y40{bottom:327.121500px;}
.ya2{bottom:329.217066px;}
.y64{bottom:337.500023px;}
.y85{bottom:344.697075px;}
.ye4{bottom:345.060013px;}
.y3f{bottom:346.021500px;}
.y63{bottom:356.400009px;}
.y84{bottom:363.777076px;}
.ye3{bottom:364.140015px;}
.y3e{bottom:365.101500px;}
.y62{bottom:375.480011px;}
.y83{bottom:382.677063px;}
.ye2{bottom:383.040024px;}
.y3d{bottom:384.001500px;}
.y61{bottom:394.380019px;}
.y82{bottom:401.757064px;}
.ye1{bottom:402.120025px;}
.y3c{bottom:403.081500px;}
.y60{bottom:413.280030px;}
.y81{bottom:420.657073px;}
.ye0{bottom:421.020035px;}
.y3b{bottom:421.981500px;}
.y5f{bottom:432.360031px;}
.y80{bottom:439.557082px;}
.ydf{bottom:439.560013px;}
.y3a{bottom:440.881500px;}
.y39{bottom:459.961500px;}
.y5e{bottom:470.339997px;}
.y7d{bottom:474.657063px;}
.yde{bottom:477.900009px;}
.y38{bottom:478.861500px;}
.y5d{bottom:489.240006px;}
.ydd{bottom:496.980010px;}
.y37{bottom:497.941500px;}
.y5c{bottom:508.140015px;}
.ydc{bottom:515.520035px;}
.y36{bottom:516.481500px;}
.y5b{bottom:527.220016px;}
.y5a{bottom:546.120025px;}
.ydb{bottom:553.860031px;}
.y59{bottom:565.200027px;}
.y35{bottom:570.841500px;}
.yda{bottom:572.759994px;}
.y58{bottom:584.100036px;}
.y34{bottom:588.121500px;}
.yd9{bottom:591.839997px;}
.yc9{bottom:594.897060px;}
.y9f{bottom:596.697060px;}
.y57{bottom:603.000000px;}
.y33{bottom:605.221500px;}
.yd8{bottom:610.740006px;}
.yc6{bottom:612.177060px;}
.y9c{bottom:613.797060px;}
.y32{bottom:622.501500px;}
.yc3{bottom:629.457060px;}
.yd7{bottom:629.460023px;}
.y9a{bottom:633.777060px;}
.y31{bottom:639.781500px;}
.y56{bottom:640.080001px;}
.ybf{bottom:646.557058px;}
.y30{bottom:657.061500px;}
.yd1{bottom:663.660013px;}
.ybd{bottom:666.537058px;}
.y99{bottom:667.797043px;}
.y2f{bottom:674.341500px;}
.y55{bottom:678.060013px;}
.y2e{bottom:691.621500px;}
.y54{bottom:696.960023px;}
.ybc{bottom:700.557037px;}
.y98{bottom:705.777054px;}
.y2d{bottom:708.721500px;}
.y53{bottom:715.860031px;}
.y97{bottom:724.857055px;}
.y2c{bottom:726.001500px;}
.y52{bottom:734.940033px;}
.ybb{bottom:738.537048px;}
.y2b{bottom:743.281500px;}
.y96{bottom:743.757064px;}
.yba{bottom:757.617049px;}
.y2a{bottom:760.561500px;}
.y95{bottom:762.657073px;}
.y51{bottom:771.480010px;}
.yb9{bottom:776.517060px;}
.y29{bottom:777.841500px;}
.y94{bottom:781.737030px;}
.yb8{bottom:795.417023px;}
.y93{bottom:800.637086px;}
.yb7{bottom:814.497071px;}
.y7c{bottom:816.477081px;}
.y50{bottom:829.080048px;}
.y28{bottom:832.201500px;}
.yb6{bottom:833.397033px;}
.y91{bottom:833.577056px;}
.y7b{bottom:835.377045px;}
.y4f{bottom:847.980010px;}
.yb5{bottom:852.477081px;}
.y7a{bottom:854.277099px;}
.y4e{bottom:866.879975px;}
.y27{bottom:869.281500px;}
.yb4{bottom:871.377045px;}
.y79{bottom:873.357056px;}
.y16{bottom:874.260000px;}
.y15{bottom:886.260000px;}
.y26{bottom:888.181500px;}
.yb3{bottom:890.277008px;}
.y78{bottom:892.257019px;}
.yd0{bottom:894.059967px;}
.y25{bottom:894.121500px;}
.y14{bottom:898.260000px;}
.y4c{bottom:900.900008px;}
.y7{bottom:903.300000px;}
.yb2{bottom:909.357056px;}
.y13{bottom:910.260000px;}
.y77{bottom:911.337066px;}
.ycf{bottom:912.960022px;}
.y12{bottom:922.260000px;}
.y23{bottom:925.261500px;}
.yb1{bottom:928.257019px;}
.y76{bottom:930.237030px;}
.y24{bottom:931.201500px;}
.yce{bottom:932.039977px;}
.y6{bottom:932.400000px;}
.y11{bottom:945.510000px;}
.yb0{bottom:947.337066px;}
.y75{bottom:949.137086px;}
.y10{bottom:957.510000px;}
.yef{bottom:965.880006px;}
.yaf{bottom:966.237030px;}
.y22{bottom:969.181500px;}
.yf{bottom:969.510000px;}
.y5{bottom:972.750000px;}
.ye{bottom:981.510000px;}
.yae{bottom:985.137086px;}
.y74{bottom:985.857056px;}
.y21{bottom:998.341500px;}
.yad{bottom:1004.217040px;}
.yd{bottom:1004.760000px;}
.y4{bottom:1011.165000px;}
.yc{bottom:1016.760000px;}
.y73{bottom:1023.117096px;}
.yb{bottom:1028.760000px;}
.y3{bottom:1039.965000px;}
.ya{bottom:1040.760000px;}
.y72{bottom:1042.197053px;}
.y9{bottom:1052.760000px;}
.y71{bottom:1061.097015px;}
.y8{bottom:1078.260000px;}
.y70{bottom:1080.177063px;}
.y4b{bottom:1080.179993px;}
.y2{bottom:1081.485000px;}
.y6f{bottom:1099.077027px;}
.y4a{bottom:1099.080048px;}
.y1d{bottom:1137.000000px;}
.y1{bottom:1191.570000px;}
.h23{height:17.099998px;}
.h21{height:17.100000px;}
.h24{height:17.280000px;}
.h1f{height:19.260000px;}
.h1e{height:19.979998px;}
.h22{height:19.980000px;}
.h12{height:27.900000px;}
.hf{height:28.302187px;}
.he{height:29.015859px;}
.h1c{height:29.339999px;}
.h20{height:40.501406px;}
.h11{height:41.522695px;}
.hb{height:42.000000px;}
.h9{height:42.942899px;}
.h5{height:43.804688px;}
.hd{height:44.893125px;}
.h13{height:45.992813px;}
.h10{height:46.025156px;}
.h8{height:46.538700px;}
.ha{height:46.935000px;}
.h18{height:46.979999px;}
.h7{height:49.336436px;}
.h4{height:50.062500px;}
.h1a{height:52.775805px;}
.h19{height:52.775811px;}
.h16{height:52.775853px;}
.h15{height:52.775859px;}
.h14{height:52.775895px;}
.h1b{height:52.775901px;}
.h1d{height:52.775991px;}
.h2{height:56.320312px;}
.hc{height:69.291562px;}
.h3{height:72.000000px;}
.h1{height:75.093750px;}
.h25{height:103.859997px;}
.h17{height:1262.877045px;}
.h6{height:1262.880000px;}
.h0{height:1263.000000px;}
.w10{width:51.299999px;}
.wd{width:51.480000px;}
.wc{width:134.099997px;}
.w12{width:145.259996px;}
.wb{width:148.139995px;}
.w11{width:148.319997px;}
.w9{width:325.439993px;}
.w8{width:331.379992px;}
.wf{width:334.079992px;}
.we{width:334.259993px;}
.w13{width:335.699993px;}
.w14{width:346.139991px;}
.w6{width:581.399987px;}
.w15{width:594.539986px;}
.wa{width:655.559985px;}
.w3{width:683.273100px;}
.w4{width:688.395000px;}
.w16{width:692.819983px;}
.w0{width:892.500000px;}
.w7{width:892.976970px;}
.w5{width:892.979981px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.337034px;}
.xc{left:3.000000px;}
.x29{left:4.140010px;}
.x1e{left:7.020000px;}
.x19{left:8.100003px;}
.x23{left:10.080000px;}
.x20{left:12.240012px;}
.x1c{left:18.899999px;}
.x25{left:20.339981px;}
.x30{left:21.600009px;}
.x2b{left:25.739998px;}
.x39{left:33.480005px;}
.x22{left:47.519996px;}
.x3a{left:49.860001px;}
.x26{left:52.559996px;}
.x32{left:56.880000px;}
.x1{left:58.500000px;}
.x31{left:62.459996px;}
.x2e{left:63.900002px;}
.x2f{left:66.239979px;}
.x8{left:76.052700px;}
.x38{left:100.619999px;}
.xa{left:102.000000px;}
.x7{left:103.466400px;}
.xd{left:106.380000px;}
.x18{left:109.263027px;}
.x33{left:114.123027px;}
.x1b{left:118.803027px;}
.x17{left:120.239990px;}
.x15{left:127.620000px;}
.x35{left:149.219997px;}
.x37{left:151.919999px;}
.x16{left:155.699997px;}
.x1d{left:158.940002px;}
.x36{left:170.279996px;}
.x28{left:207.003026px;}
.xe{left:212.760000px;}
.x5{left:216.450000px;}
.x14{left:217.980000px;}
.x2a{left:258.303024px;}
.x21{left:279.543023px;}
.x27{left:303.659995px;}
.xb{left:308.268000px;}
.xf{left:326.160000px;}
.x10{left:331.380000px;}
.x11{left:402.840000px;}
.x2c{left:406.623021px;}
.x12{left:410.760000px;}
.x6{left:447.000000px;}
.x24{left:457.203019px;}
.x1a{left:458.283019px;}
.x34{left:466.563019px;}
.x1f{left:479.163018px;}
.x2d{left:540.723018px;}
.x13{left:544.140000px;}
.x2{left:605.490000px;}
.x4{left:627.990000px;}
.x3{left:634.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120032pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.318720pt;}
.ls5{letter-spacing:12.157965pt;}
.ls3{letter-spacing:14.516920pt;}
.ls2{letter-spacing:20.032997pt;}
.ls1{letter-spacing:21.991453pt;}
.ws16{word-spacing:-58.880000pt;}
.ws1{word-spacing:-26.666667pt;}
.wsa{word-spacing:-25.611705pt;}
.ws5{word-spacing:-14.720000pt;}
.ws19{word-spacing:-13.598720pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws23{word-spacing:-12.000000pt;}
.wsf{word-spacing:-9.280000pt;}
.ws8{word-spacing:-1.282188pt;}
.ws2d{word-spacing:-0.645691pt;}
.ws2c{word-spacing:-0.645526pt;}
.ws11{word-spacing:-0.642264pt;}
.ws10{word-spacing:-0.642221pt;}
.ws20{word-spacing:-0.642184pt;}
.ws2b{word-spacing:-0.434097pt;}
.ws2e{word-spacing:-0.303321pt;}
.ws1b{word-spacing:-0.303316pt;}
.ws1c{word-spacing:-0.303204pt;}
.ws28{word-spacing:-0.056891pt;}
.ws2a{word-spacing:-0.056811pt;}
.ws18{word-spacing:-0.030715pt;}
.ws12{word-spacing:-0.028677pt;}
.ws29{word-spacing:-0.007990pt;}
.ws1d{word-spacing:-0.006855pt;}
.ws27{word-spacing:-0.005768pt;}
.ws24{word-spacing:-0.004558pt;}
.ws1f{word-spacing:-0.002255pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.038424pt;}
.ws1e{word-spacing:0.249981pt;}
.ws2{word-spacing:0.644026pt;}
.wsd{word-spacing:1.277587pt;}
.ws3{word-spacing:1.800182pt;}
.wsc{word-spacing:4.741898pt;}
.wsb{word-spacing:5.219040pt;}
.ws21{word-spacing:5.757224pt;}
.ws15{word-spacing:6.717380pt;}
.ws6{word-spacing:7.038678pt;}
.ws7{word-spacing:7.374577pt;}
.ws22{word-spacing:8.007215pt;}
.wse{word-spacing:9.277081pt;}
.ws13{word-spacing:13.756712pt;}
.ws25{word-spacing:14.019757pt;}
.ws9{word-spacing:14.714312pt;}
.ws4{word-spacing:14.717333pt;}
.ws14{word-spacing:16.316572pt;}
.ws26{word-spacing:30.169472pt;}
._5{margin-left:-2.250790pt;}
._1{margin-left:-1.062680pt;}
._6{width:1.272320pt;}
._9{width:3.027840pt;}
._d{width:4.414080pt;}
._22{width:5.310282pt;}
._0{width:6.645421pt;}
._b{width:7.702400pt;}
._f{width:9.475432pt;}
._e{width:10.836480pt;}
._12{width:12.167040pt;}
._1f{width:13.483520pt;}
._2{width:14.721403pt;}
._8{width:16.106500pt;}
._7{width:17.392520pt;}
._1a{width:18.671553pt;}
._a{width:19.905697pt;}
._c{width:20.959790pt;}
._15{width:22.707572pt;}
._11{width:23.640960pt;}
._14{width:25.373045pt;}
._13{width:26.349197pt;}
._20{width:28.451634pt;}
._4{width:29.438933pt;}
._19{width:31.119759pt;}
._21{width:33.268295pt;}
._24{width:35.734018pt;}
._10{width:37.182869pt;}
._18{width:38.135486pt;}
._1c{width:40.356874pt;}
._16{width:41.674537pt;}
._17{width:43.287238pt;}
._23{width:45.469927pt;}
._1e{width:54.581805pt;}
._1b{width:55.852843pt;}
._1d{width:57.119688pt;}
._28{width:58.693779pt;}
._25{width:82.374215pt;}
._27{width:86.853847pt;}
._26{width:88.133779pt;}
._3{width:450.187200pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs6{font-size:53.333333pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs7{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:2.879993pt;}
.ya0{bottom:2.879997pt;}
.y9d{bottom:3.039983pt;}
.yc7{bottom:3.040001pt;}
.yca{bottom:3.040016pt;}
.yc0{bottom:3.040020pt;}
.yc5{bottom:3.199980pt;}
.ya1{bottom:3.199985pt;}
.yc8{bottom:3.359988pt;}
.ycb{bottom:3.360003pt;}
.yc1{bottom:3.360007pt;}
.y9e{bottom:3.360011pt;}
.y4d{bottom:3.519980pt;}
.y7f{bottom:3.519988pt;}
.yf1{bottom:3.519992pt;}
.ycd{bottom:3.520009pt;}
.yd6{bottom:3.520011pt;}
.y92{bottom:3.679987pt;}
.ya4{bottom:3.679991pt;}
.y1c{bottom:3.812733pt;}
.yc2{bottom:5.120017pt;}
.ybe{bottom:5.760001pt;}
.y9b{bottom:5.760004pt;}
.y1e{bottom:6.272920pt;}
.y20{bottom:6.889600pt;}
.y1b{bottom:17.096233pt;}
.y7e{bottom:20.479991pt;}
.ya3{bottom:20.479999pt;}
.yd5{bottom:20.480012pt;}
.yf0{bottom:20.480033pt;}
.y1f{bottom:25.724000pt;}
.y1a{bottom:30.379733pt;}
.yd4{bottom:37.279980pt;}
.yd3{bottom:54.239981pt;}
.y19{bottom:54.852400pt;}
.y18{bottom:57.333333pt;}
.y17{bottom:57.706667pt;}
.yd2{bottom:71.039989pt;}
.y90{bottom:104.957397pt;}
.y6e{bottom:114.400024pt;}
.y8f{bottom:121.757396pt;}
.y6d{bottom:131.360027pt;}
.yee{bottom:138.080017pt;}
.y8e{bottom:138.717397pt;}
.y49{bottom:138.934667pt;}
.yac{bottom:144.477396pt;}
.y6c{bottom:148.160024pt;}
.yed{bottom:155.040019pt;}
.y8d{bottom:155.517395pt;}
.y48{bottom:155.894667pt;}
.yab{bottom:161.277395pt;}
.y6b{bottom:164.960021pt;}
.yec{bottom:171.840027pt;}
.y8c{bottom:172.317403pt;}
.y47{bottom:172.694667pt;}
.yaa{bottom:178.237387pt;}
.y6a{bottom:181.920024pt;}
.yeb{bottom:188.800028pt;}
.y8b{bottom:189.277384pt;}
.y46{bottom:189.654667pt;}
.ya9{bottom:195.037395pt;}
.y69{bottom:198.720012pt;}
.yea{bottom:205.600016pt;}
.y8a{bottom:206.077392pt;}
.y45{bottom:206.454667pt;}
.ycc{bottom:209.277395pt;}
.ya8{bottom:211.997396pt;}
.y68{bottom:215.680013pt;}
.ye9{bottom:222.400024pt;}
.y44{bottom:223.254667pt;}
.ya7{bottom:228.797384pt;}
.y67{bottom:232.480021pt;}
.y89{bottom:239.037395pt;}
.ye8{bottom:239.360027pt;}
.y43{bottom:240.214667pt;}
.ya6{bottom:245.597392pt;}
.y88{bottom:255.837403pt;}
.ye7{bottom:256.160013pt;}
.y42{bottom:257.014667pt;}
.ya5{bottom:262.557393pt;}
.y66{bottom:266.240011pt;}
.y87{bottom:272.637391pt;}
.ye6{bottom:273.120016pt;}
.y41{bottom:273.974667pt;}
.y65{bottom:283.040019pt;}
.y86{bottom:289.597392pt;}
.ye5{bottom:289.920024pt;}
.y40{bottom:290.774667pt;}
.ya2{bottom:292.637392pt;}
.y64{bottom:300.000020pt;}
.y85{bottom:306.397400pt;}
.ye4{bottom:306.720012pt;}
.y3f{bottom:307.574667pt;}
.y63{bottom:316.800008pt;}
.y84{bottom:323.357401pt;}
.ye3{bottom:323.680013pt;}
.y3e{bottom:324.534667pt;}
.y62{bottom:333.760009pt;}
.y83{bottom:340.157389pt;}
.ye2{bottom:340.480021pt;}
.y3d{bottom:341.334667pt;}
.y61{bottom:350.560017pt;}
.y82{bottom:357.117391pt;}
.ye1{bottom:357.440023pt;}
.y3c{bottom:358.294667pt;}
.y60{bottom:367.360027pt;}
.y81{bottom:373.917399pt;}
.ye0{bottom:374.240031pt;}
.y3b{bottom:375.094667pt;}
.y5f{bottom:384.320028pt;}
.y80{bottom:390.717407pt;}
.ydf{bottom:390.720012pt;}
.y3a{bottom:391.894667pt;}
.y39{bottom:408.854667pt;}
.y5e{bottom:418.079997pt;}
.y7d{bottom:421.917389pt;}
.yde{bottom:424.800008pt;}
.y38{bottom:425.654667pt;}
.y5d{bottom:434.880005pt;}
.ydd{bottom:441.760009pt;}
.y37{bottom:442.614667pt;}
.y5c{bottom:451.680013pt;}
.ydc{bottom:458.240031pt;}
.y36{bottom:459.094667pt;}
.y5b{bottom:468.640015pt;}
.y5a{bottom:485.440023pt;}
.ydb{bottom:492.320028pt;}
.y59{bottom:502.400024pt;}
.y35{bottom:507.414667pt;}
.yda{bottom:509.119995pt;}
.y58{bottom:519.200032pt;}
.y34{bottom:522.774667pt;}
.yd9{bottom:526.079997pt;}
.yc9{bottom:528.797387pt;}
.y9f{bottom:530.397387pt;}
.y57{bottom:536.000000pt;}
.y33{bottom:537.974667pt;}
.yd8{bottom:542.880005pt;}
.yc6{bottom:544.157387pt;}
.y9c{bottom:545.597387pt;}
.y32{bottom:553.334667pt;}
.yc3{bottom:559.517387pt;}
.yd7{bottom:559.520020pt;}
.y9a{bottom:563.357387pt;}
.y31{bottom:568.694667pt;}
.y56{bottom:568.960001pt;}
.ybf{bottom:574.717385pt;}
.y30{bottom:584.054667pt;}
.yd1{bottom:589.920012pt;}
.ybd{bottom:592.477385pt;}
.y99{bottom:593.597372pt;}
.y2f{bottom:599.414667pt;}
.y55{bottom:602.720012pt;}
.y2e{bottom:614.774667pt;}
.y54{bottom:619.520020pt;}
.ybc{bottom:622.717367pt;}
.y98{bottom:627.357381pt;}
.y2d{bottom:629.974667pt;}
.y53{bottom:636.320028pt;}
.y97{bottom:644.317383pt;}
.y2c{bottom:645.334667pt;}
.y52{bottom:653.280029pt;}
.ybb{bottom:656.477376pt;}
.y2b{bottom:660.694667pt;}
.y96{bottom:661.117391pt;}
.yba{bottom:673.437377pt;}
.y2a{bottom:676.054667pt;}
.y95{bottom:677.917399pt;}
.y51{bottom:685.760009pt;}
.yb9{bottom:690.237387pt;}
.y29{bottom:691.414667pt;}
.y94{bottom:694.877360pt;}
.yb8{bottom:707.037353pt;}
.y93{bottom:711.677409pt;}
.yb7{bottom:723.997396pt;}
.y7c{bottom:725.757405pt;}
.y50{bottom:736.960043pt;}
.y28{bottom:739.734667pt;}
.yb6{bottom:740.797363pt;}
.y91{bottom:740.957383pt;}
.y7b{bottom:742.557373pt;}
.y4f{bottom:753.760009pt;}
.yb5{bottom:757.757405pt;}
.y7a{bottom:759.357421pt;}
.y4e{bottom:770.559977pt;}
.y27{bottom:772.694667pt;}
.yb4{bottom:774.557373pt;}
.y79{bottom:776.317383pt;}
.y16{bottom:777.120000pt;}
.y15{bottom:787.786667pt;}
.y26{bottom:789.494667pt;}
.yb3{bottom:791.357340pt;}
.y78{bottom:793.117351pt;}
.yd0{bottom:794.719971pt;}
.y25{bottom:794.774667pt;}
.y14{bottom:798.453333pt;}
.y4c{bottom:800.800007pt;}
.y7{bottom:802.933333pt;}
.yb2{bottom:808.317383pt;}
.y13{bottom:809.120000pt;}
.y77{bottom:810.077392pt;}
.ycf{bottom:811.520020pt;}
.y12{bottom:819.786667pt;}
.y23{bottom:822.454667pt;}
.yb1{bottom:825.117351pt;}
.y76{bottom:826.877360pt;}
.y24{bottom:827.734667pt;}
.yce{bottom:828.479980pt;}
.y6{bottom:828.800000pt;}
.y11{bottom:840.453333pt;}
.yb0{bottom:842.077392pt;}
.y75{bottom:843.677409pt;}
.y10{bottom:851.120000pt;}
.yef{bottom:858.560005pt;}
.yaf{bottom:858.877360pt;}
.y22{bottom:861.494667pt;}
.yf{bottom:861.786667pt;}
.y5{bottom:864.666667pt;}
.ye{bottom:872.453333pt;}
.yae{bottom:875.677409pt;}
.y74{bottom:876.317383pt;}
.y21{bottom:887.414667pt;}
.yad{bottom:892.637369pt;}
.yd{bottom:893.120000pt;}
.y4{bottom:898.813333pt;}
.yc{bottom:903.786667pt;}
.y73{bottom:909.437419pt;}
.yb{bottom:914.453333pt;}
.y3{bottom:924.413333pt;}
.ya{bottom:925.120000pt;}
.y72{bottom:926.397380pt;}
.y9{bottom:935.786667pt;}
.y71{bottom:943.197347pt;}
.y8{bottom:958.453333pt;}
.y70{bottom:960.157389pt;}
.y4b{bottom:960.159993pt;}
.y2{bottom:961.320000pt;}
.y6f{bottom:976.957357pt;}
.y4a{bottom:976.960043pt;}
.y1d{bottom:1010.666667pt;}
.y1{bottom:1059.173333pt;}
.h23{height:15.199999pt;}
.h21{height:15.200000pt;}
.h24{height:15.360000pt;}
.h1f{height:17.120000pt;}
.h1e{height:17.759999pt;}
.h22{height:17.760000pt;}
.h12{height:24.800000pt;}
.hf{height:25.157500pt;}
.he{height:25.791875pt;}
.h1c{height:26.079999pt;}
.h20{height:36.001250pt;}
.h11{height:36.909063pt;}
.hb{height:37.333333pt;}
.h9{height:38.171466pt;}
.h5{height:38.937500pt;}
.hd{height:39.905000pt;}
.h13{height:40.882500pt;}
.h10{height:40.911250pt;}
.h8{height:41.367733pt;}
.ha{height:41.720000pt;}
.h18{height:41.759999pt;}
.h7{height:43.854610pt;}
.h4{height:44.500000pt;}
.h1a{height:46.911827pt;}
.h19{height:46.911832pt;}
.h16{height:46.911870pt;}
.h15{height:46.911875pt;}
.h14{height:46.911907pt;}
.h1b{height:46.911912pt;}
.h1d{height:46.911992pt;}
.h2{height:50.062500pt;}
.hc{height:61.592500pt;}
.h3{height:64.000000pt;}
.h1{height:66.750000pt;}
.h25{height:92.319997pt;}
.h17{height:1122.557373pt;}
.h6{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w10{width:45.599999pt;}
.wd{width:45.760000pt;}
.wc{width:119.199997pt;}
.w12{width:129.119996pt;}
.wb{width:131.679996pt;}
.w11{width:131.839997pt;}
.w9{width:289.279993pt;}
.w8{width:294.559993pt;}
.wf{width:296.959993pt;}
.we{width:297.119993pt;}
.w13{width:298.399993pt;}
.w14{width:307.679992pt;}
.w6{width:516.799988pt;}
.w15{width:528.479988pt;}
.wa{width:582.719987pt;}
.w3{width:607.353867pt;}
.w4{width:611.906667pt;}
.w16{width:615.839985pt;}
.w0{width:793.333333pt;}
.w7{width:793.757307pt;}
.w5{width:793.759983pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.188474pt;}
.xc{left:2.666667pt;}
.x29{left:3.680009pt;}
.x1e{left:6.240000pt;}
.x19{left:7.200003pt;}
.x23{left:8.960000pt;}
.x20{left:10.880011pt;}
.x1c{left:16.799999pt;}
.x25{left:18.079983pt;}
.x30{left:19.200008pt;}
.x2b{left:22.879999pt;}
.x39{left:29.760004pt;}
.x22{left:42.239996pt;}
.x3a{left:44.320001pt;}
.x26{left:46.719996pt;}
.x32{left:50.560000pt;}
.x1{left:52.000000pt;}
.x31{left:55.519996pt;}
.x2e{left:56.800001pt;}
.x2f{left:58.879981pt;}
.x8{left:67.602400pt;}
.x38{left:89.439999pt;}
.xa{left:90.666667pt;}
.x7{left:91.970133pt;}
.xd{left:94.560000pt;}
.x18{left:97.122691pt;}
.x33{left:101.442691pt;}
.x1b{left:105.602691pt;}
.x17{left:106.879991pt;}
.x15{left:113.440000pt;}
.x35{left:132.639997pt;}
.x37{left:135.039999pt;}
.x16{left:138.399997pt;}
.x1d{left:141.280001pt;}
.x36{left:151.359996pt;}
.x28{left:184.002689pt;}
.xe{left:189.120000pt;}
.x5{left:192.400000pt;}
.x14{left:193.760000pt;}
.x2a{left:229.602688pt;}
.x21{left:248.482687pt;}
.x27{left:269.919996pt;}
.xb{left:274.016000pt;}
.xf{left:289.920000pt;}
.x10{left:294.560000pt;}
.x11{left:358.080000pt;}
.x2c{left:361.442685pt;}
.x12{left:365.120000pt;}
.x6{left:397.333333pt;}
.x24{left:406.402684pt;}
.x1a{left:407.362684pt;}
.x34{left:414.722684pt;}
.x1f{left:425.922683pt;}
.x2d{left:480.642683pt;}
.x13{left:483.680000pt;}
.x2{left:538.213333pt;}
.x4{left:558.213333pt;}
.x3{left:563.920000pt;}
}




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