
    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_a5ed6bb04f48c880b4f93ea0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_050b9824269d3fe7b6476e78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087402;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_8d65620a975a1cb59333f9f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087402;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_45fa6b565922f01234b82d29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_c76f596afb24e430461b2421.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_43b72c7f3328e9aab42f0965.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854004;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_1613501f5063dd64d11f4bcf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.762207;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_ef281f050756de24abd4968b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d4add93a37dac7687a2278a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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_4f34b479871f025a5eaa41c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.096680;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_47b674c32bf642e3c8de6629.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9a51e05211b16abb6602f503.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.099609;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);}
.m6{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.286400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286400,0.000000,0.000000,0.250000,0,0);}
.mb{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:45.360000px;}
.ls7{letter-spacing:-2.682000px;}
.ls37{letter-spacing:-0.828000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.696000px;}
.ls34{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.409800px;}
.ls19{letter-spacing:-0.334200px;}
.ls1d{letter-spacing:-0.267600px;}
.ls35{letter-spacing:-0.233400px;}
.ls28{letter-spacing:-0.228000px;}
.ls29{letter-spacing:-0.126600px;}
.ls9{letter-spacing:-0.121200px;}
.ls38{letter-spacing:-0.109200px;}
.ls30{letter-spacing:-0.069000px;}
.ls36{letter-spacing:-0.043200px;}
.lsc{letter-spacing:-0.020460px;}
.ls16{letter-spacing:-0.005796px;}
.ls6{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.007200px;}
.ls2a{letter-spacing:0.011520px;}
.lse{letter-spacing:0.012240px;}
.ls1e{letter-spacing:0.023040px;}
.ls20{letter-spacing:0.075000px;}
.ls1b{letter-spacing:0.080400px;}
.ls21{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.109200px;}
.ls31{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.147000px;}
.ls2d{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.210000px;}
.ls1c{letter-spacing:0.222000px;}
.ls8{letter-spacing:0.256800px;}
.ls17{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.303784px;}
.ls2f{letter-spacing:0.328320px;}
.ls2b{letter-spacing:0.385800px;}
.ls26{letter-spacing:0.385920px;}
.ls15{letter-spacing:0.400800px;}
.lsf{letter-spacing:0.497400px;}
.ls3{letter-spacing:0.498183px;}
.lsb{letter-spacing:0.559200px;}
.lsd{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.756000px;}
.ls10{letter-spacing:0.864265px;}
.ls27{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.423328px;}
.ls23{letter-spacing:2.532707px;}
.ls25{letter-spacing:5.040000px;}
.ls2{letter-spacing:8.986084px;}
.ls5{letter-spacing:10.298636px;}
.ls12{letter-spacing:11.520000px;}
.ls4{letter-spacing:12.077499px;}
.ls13{letter-spacing:13.680000px;}
.ls2e{letter-spacing:59.345280px;}
.ls24{letter-spacing:275.707200px;}
.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;}
}
.ws6{word-spacing:-66.240000px;}
.ws1{word-spacing:-36.907200px;}
.ws0{word-spacing:-34.225200px;}
.ws21{word-spacing:-28.422720px;}
.ws3{word-spacing:-26.709600px;}
.ws4{word-spacing:-26.662800px;}
.ws2{word-spacing:-26.452800px;}
.ws10{word-spacing:-26.447004px;}
.ws5{word-spacing:-26.331600px;}
.ws1c{word-spacing:-26.224800px;}
.ws14{word-spacing:-26.043000px;}
.ws7{word-spacing:-17.316000px;}
.wsa{word-spacing:-17.172000px;}
.ws9{word-spacing:-17.119200px;}
.wse{word-spacing:-17.057400px;}
.wsf{word-spacing:-16.960800px;}
.ws11{word-spacing:-16.822200px;}
.ws22{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws29{word-spacing:-16.450800px;}
.wsd{word-spacing:-15.840000px;}
.ws1f{word-spacing:-14.958600px;}
.ws16{word-spacing:-14.794800px;}
.ws26{word-spacing:-14.719800px;}
.ws1b{word-spacing:-14.679600px;}
.ws15{word-spacing:-14.653200px;}
.ws1a{word-spacing:-14.647800px;}
.ws19{word-spacing:-14.595840px;}
.ws1e{word-spacing:-14.584320px;}
.wsb{word-spacing:-14.572800px;}
.ws27{word-spacing:-14.529600px;}
.ws23{word-spacing:-14.503800px;}
.ws1d{word-spacing:-14.446200px;}
.ws25{word-spacing:-14.339400px;}
.ws17{word-spacing:-14.305200px;}
.ws13{word-spacing:-14.238600px;}
.ws24{word-spacing:-13.924800px;}
.ws20{word-spacing:-13.876800px;}
.ws18{word-spacing:-13.780800px;}
.ws28{word-spacing:-13.744800px;}
.wsc{word-spacing:0.000000px;}
._3{margin-left:-8.446583px;}
._4{margin-left:-5.871600px;}
._6{margin-left:-4.694318px;}
._0{margin-left:-3.420000px;}
._2{margin-left:-2.283840px;}
._5{margin-left:-1.218892px;}
._7{width:1.024233px;}
._8{width:2.321815px;}
._18{width:3.582406px;}
._1{width:4.597915px;}
._c{width:5.648601px;}
._12{width:7.014990px;}
._1f{width:8.464928px;}
._9{width:9.472320px;}
._15{width:10.511392px;}
._b{width:11.624390px;}
._a{width:12.946281px;}
._26{width:14.017257px;}
._10{width:15.143301px;}
._2c{width:16.957440px;}
._2d{width:18.043852px;}
._d{width:19.881856px;}
._1d{width:21.456075px;}
._1e{width:23.091938px;}
._11{width:25.171200px;}
._1c{width:26.175395px;}
._22{width:27.314216px;}
._e{width:29.018094px;}
._f{width:30.241047px;}
._39{width:31.641004px;}
._21{width:33.318720px;}
._20{width:34.643520px;}
._2e{width:35.835840px;}
._14{width:37.033134px;}
._13{width:38.286720px;}
._25{width:40.722607px;}
._24{width:42.588296px;}
._36{width:47.398732px;}
._23{width:49.282560px;}
._2a{width:62.569525px;}
._29{width:63.656640px;}
._28{width:64.810339px;}
._27{width:66.240000px;}
._1a{width:70.846167px;}
._1b{width:71.898000px;}
._32{width:96.312960px;}
._33{width:97.965467px;}
._16{width:125.957847px;}
._17{width:127.150167px;}
._38{width:128.438398px;}
._37{width:130.573527px;}
._35{width:146.655360px;}
._34{width:148.475903px;}
._19{width:187.826007px;}
._2f{width:194.420812px;}
._30{width:196.071532px;}
._31{width:275.425920px;}
._2b{width:320.136960px;}
.fc5{color:rgb(41,42,46);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(54,95,145);}
.fc4{color:rgb(3,3,3);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:102.240000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y33{bottom:5.040000px;}
.y4{bottom:48.600000px;}
.y32{bottom:51.660000px;}
.y34{bottom:57.060000px;}
.y68{bottom:90.720000px;}
.y12c{bottom:92.520000px;}
.y9c{bottom:92.880000px;}
.y15f{bottom:95.580000px;}
.y31{bottom:100.980000px;}
.yfc{bottom:105.120000px;}
.y192{bottom:105.480000px;}
.yc8{bottom:107.820000px;}
.y67{bottom:109.980000px;}
.y12b{bottom:111.780000px;}
.y9b{bottom:112.140000px;}
.y15e{bottom:114.840000px;}
.y30{bottom:119.880000px;}
.yfb{bottom:124.380000px;}
.y191{bottom:124.920000px;}
.y66{bottom:129.420000px;}
.yc7{bottom:129.960000px;}
.y12a{bottom:131.040000px;}
.y9a{bottom:131.400000px;}
.y15d{bottom:136.800000px;}
.y2f{bottom:138.960000px;}
.yfa{bottom:143.640000px;}
.y190{bottom:144.180000px;}
.y65{bottom:148.320000px;}
.y99{bottom:150.480000px;}
.yc6{bottom:152.280000px;}
.y129{bottom:153.000000px;}
.y15c{bottom:156.060000px;}
.y2e{bottom:158.220000px;}
.yf9{bottom:163.080000px;}
.y18f{bottom:166.680000px;}
.y64{bottom:167.220000px;}
.y98{bottom:169.770000px;}
.y128{bottom:171.930000px;}
.yc5{bottom:174.450000px;}
.y2d{bottom:177.690000px;}
.y15b{bottom:178.770000px;}
.yf8{bottom:182.370000px;}
.y63{bottom:186.690000px;}
.y97{bottom:189.210000px;}
.y18e{bottom:191.910000px;}
.y127{bottom:193.710000px;}
.y2c{bottom:196.590000px;}
.yc4{bottom:196.770000px;}
.yf7{bottom:201.810000px;}
.y15a{bottom:203.970000px;}
.y62{bottom:205.950000px;}
.y96{bottom:208.110000px;}
.y18d{bottom:210.990000px;}
.y126{bottom:212.610000px;}
.y2b{bottom:215.670000px;}
.yc3{bottom:219.090000px;}
.yf6{bottom:221.070000px;}
.y159{bottom:223.230000px;}
.y61{bottom:225.390000px;}
.y95{bottom:227.550000px;}
.y18c{bottom:229.890000px;}
.y2a{bottom:234.570000px;}
.yf5{bottom:240.510000px;}
.yc2{bottom:241.230000px;}
.y60{bottom:244.650000px;}
.y158{bottom:245.190000px;}
.y18b{bottom:248.790000px;}
.y29{bottom:254.010000px;}
.y94{bottom:254.910000px;}
.y125{bottom:256.350000px;}
.yf4{bottom:259.770000px;}
.yc1{bottom:263.550000px;}
.y5f{bottom:264.090000px;}
.y157{bottom:264.450000px;}
.y18a{bottom:270.750000px;}
.y28{bottom:273.270000px;}
.y124{bottom:278.850000px;}
.yf3{bottom:279.210000px;}
.y5e{bottom:282.990000px;}
.y156{bottom:283.890000px;}
.yc0{bottom:285.690000px;}
.y189{bottom:290.010000px;}
.y27{bottom:292.170000px;}
.y93{bottom:295.410000px;}
.yf2{bottom:298.470000px;}
.y5d{bottom:302.430000px;}
.y155{bottom:303.150000px;}
.y123{bottom:304.050000px;}
.ybf{bottom:308.010000px;}
.y26{bottom:311.250000px;}
.y188{bottom:311.970000px;}
.yf1{bottom:317.550000px;}
.y5c{bottom:321.690000px;}
.y122{bottom:322.950000px;}
.y154{bottom:325.110000px;}
.y25{bottom:330.150000px;}
.ybe{bottom:330.330000px;}
.y187{bottom:330.870000px;}
.y92{bottom:331.230000px;}
.yf0{bottom:336.450000px;}
.y5b{bottom:340.590000px;}
.y153{bottom:344.370000px;}
.y121{bottom:344.730000px;}
.y24{bottom:349.230000px;}
.ybd{bottom:352.470000px;}
.y186{bottom:352.830000px;}
.y91{bottom:353.730000px;}
.yef{bottom:355.350000px;}
.y5a{bottom:359.670000px;}
.y152{bottom:363.630000px;}
.y120{bottom:363.810000px;}
.y23{bottom:368.130000px;}
.y185{bottom:372.090000px;}
.y90{bottom:372.990000px;}
.ybc{bottom:374.790000px;}
.y59{bottom:378.930000px;}
.y11f{bottom:382.710000px;}
.y151{bottom:385.590000px;}
.y22{bottom:387.030000px;}
.y184{bottom:390.990000px;}
.y8f{bottom:392.250000px;}
.yee{bottom:394.050000px;}
.ybb{bottom:396.930000px;}
.y11e{bottom:401.790000px;}
.y21{bottom:406.110000px;}
.y58{bottom:406.470000px;}
.y150{bottom:407.550000px;}
.y8e{bottom:411.690000px;}
.yed{bottom:413.535000px;}
.yba{bottom:419.295000px;}
.y11d{bottom:420.735000px;}
.y14f{bottom:426.855000px;}
.y8d{bottom:430.995000px;}
.yec{bottom:432.795000px;}
.y20{bottom:433.155000px;}
.y183{bottom:438.735000px;}
.yb9{bottom:441.435000px;}
.y11c{bottom:442.515000px;}
.y57{bottom:447.015000px;}
.y14e{bottom:448.815000px;}
.y8c{bottom:450.435000px;}
.yeb{bottom:451.875000px;}
.y182{bottom:457.995000px;}
.yb8{bottom:463.755000px;}
.y11b{bottom:464.475000px;}
.y1f{bottom:465.555000px;}
.y14d{bottom:468.075000px;}
.y8b{bottom:469.335000px;}
.yea{bottom:471.135000px;}
.y181{bottom:479.955000px;}
.y56{bottom:482.835000px;}
.y11a{bottom:483.735000px;}
.y1e{bottom:484.455000px;}
.yb7{bottom:486.075000px;}
.y8a{bottom:488.415000px;}
.y14c{bottom:490.215000px;}
.ye9{bottom:490.575000px;}
.y180{bottom:499.395000px;}
.y1d{bottom:503.715000px;}
.y55{bottom:505.155000px;}
.y119{bottom:505.695000px;}
.y89{bottom:507.315000px;}
.yb6{bottom:508.215000px;}
.ye8{bottom:509.475000px;}
.y17f{bottom:518.655000px;}
.y54{bottom:524.235000px;}
.y118{bottom:524.595000px;}
.y1c{bottom:525.675000px;}
.y88{bottom:526.755000px;}
.ye7{bottom:528.375000px;}
.y14b{bottom:528.735000px;}
.yb5{bottom:530.535000px;}
.y17e{bottom:540.615000px;}
.y53{bottom:543.135000px;}
.y1b{bottom:544.755000px;}
.y87{bottom:545.655000px;}
.y117{bottom:546.375000px;}
.ye6{bottom:547.455000px;}
.y14a{bottom:550.695000px;}
.yb4{bottom:552.675000px;}
.y17d{bottom:559.875000px;}
.y52{bottom:562.035000px;}
.y86{bottom:564.915000px;}
.y1a{bottom:565.095000px;}
.y116{bottom:565.275000px;}
.ye5{bottom:566.715000px;}
.y149{bottom:569.955000px;}
.yb3{bottom:574.995000px;}
.y51{bottom:581.115000px;}
.y17c{bottom:581.835000px;}
.y85{bottom:584.355000px;}
.ye4{bottom:586.155000px;}
.y19{bottom:586.875000px;}
.y115{bottom:587.235000px;}
.y148{bottom:591.915000px;}
.yb2{bottom:597.315000px;}
.y50{bottom:600.015000px;}
.y84{bottom:603.255000px;}
.y17b{bottom:603.795000px;}
.ye3{bottom:605.055000px;}
.y18{bottom:605.955000px;}
.y114{bottom:606.855000px;}
.y147{bottom:614.595000px;}
.y4f{bottom:619.095000px;}
.yb1{bottom:619.455000px;}
.y83{bottom:622.335000px;}
.y17a{bottom:623.055000px;}
.ye2{bottom:624.135000px;}
.y17{bottom:625.935000px;}
.y113{bottom:637.815000px;}
.y4e{bottom:637.995000px;}
.y146{bottom:639.795000px;}
.y82{bottom:641.235000px;}
.yb0{bottom:641.775000px;}
.ye1{bottom:643.395000px;}
.y179{bottom:645.015000px;}
.y16{bottom:647.715000px;}
.y4d{bottom:656.895000px;}
.y145{bottom:659.085000px;}
.y81{bottom:660.165000px;}
.ye0{bottom:662.865000px;}
.y178{bottom:664.305000px;}
.y15{bottom:666.825000px;}
.yaf{bottom:669.345000px;}
.y4c{bottom:676.005000px;}
.y144{bottom:678.345000px;}
.y80{bottom:679.245000px;}
.ydf{bottom:682.125000px;}
.y14{bottom:685.725000px;}
.y177{bottom:686.265000px;}
.y4b{bottom:694.905000px;}
.y112{bottom:697.245000px;}
.y7f{bottom:698.505000px;}
.y143{bottom:700.305000px;}
.yde{bottom:701.385000px;}
.yae{bottom:701.745000px;}
.y176{bottom:705.525000px;}
.y13{bottom:707.505000px;}
.y4a{bottom:713.985000px;}
.y111{bottom:716.145000px;}
.y7e{bottom:717.945000px;}
.y142{bottom:719.565000px;}
.yad{bottom:720.645000px;}
.ydd{bottom:720.825000px;}
.y12{bottom:726.585000px;}
.y175{bottom:727.485000px;}
.y49{bottom:732.885000px;}
.y110{bottom:735.225000px;}
.y7d{bottom:737.205000px;}
.yac{bottom:739.725000px;}
.ydc{bottom:740.085000px;}
.y141{bottom:741.705000px;}
.y11{bottom:745.485000px;}
.y174{bottom:746.745000px;}
.y48{bottom:751.965000px;}
.y7c{bottom:756.285000px;}
.yab{bottom:758.625000px;}
.ydb{bottom:759.525000px;}
.y140{bottom:760.965000px;}
.y10{bottom:764.385000px;}
.y173{bottom:768.705000px;}
.y10f{bottom:769.425000px;}
.y47{bottom:770.865000px;}
.y7b{bottom:775.545000px;}
.yaa{bottom:777.705000px;}
.yda{bottom:778.425000px;}
.y13f{bottom:782.745000px;}
.y46{bottom:789.765000px;}
.y172{bottom:791.385000px;}
.yf{bottom:794.445000px;}
.y7a{bottom:794.625000px;}
.ya9{bottom:796.965000px;}
.yd9{bottom:797.865000px;}
.y13e{bottom:802.005000px;}
.y45{bottom:808.845000px;}
.y79{bottom:813.885000px;}
.y10e{bottom:815.865000px;}
.ya8{bottom:816.225000px;}
.y171{bottom:816.585000px;}
.yd8{bottom:817.125000px;}
.y13d{bottom:824.505000px;}
.y44{bottom:827.745000px;}
.ye{bottom:830.265000px;}
.y78{bottom:833.145000px;}
.y10d{bottom:834.945000px;}
.ya7{bottom:835.305000px;}
.y170{bottom:835.845000px;}
.yd7{bottom:836.565000px;}
.y43{bottom:846.825000px;}
.y13c{bottom:849.705000px;}
.y77{bottom:852.225000px;}
.y10c{bottom:853.845000px;}
.ya6{bottom:854.205000px;}
.y16f{bottom:855.105000px;}
.yd6{bottom:855.825000px;}
.yd{bottom:856.185000px;}
.y42{bottom:865.725000px;}
.y13b{bottom:869.145000px;}
.y76{bottom:871.485000px;}
.y10b{bottom:873.285000px;}
.ya5{bottom:873.645000px;}
.yd5{bottom:875.265000px;}
.y16e{bottom:877.065000px;}
.yc{bottom:882.105000px;}
.y13a{bottom:888.405000px;}
.y75{bottom:890.925000px;}
.y10a{bottom:892.185000px;}
.y41{bottom:892.905000px;}
.yd4{bottom:894.525000px;}
.y16d{bottom:896.325000px;}
.yb{bottom:908.070000px;}
.y139{bottom:910.410000px;}
.y109{bottom:911.670000px;}
.ya4{bottom:912.390000px;}
.yd3{bottom:914.010000px;}
.y16c{bottom:915.810000px;}
.y74{bottom:918.150000px;}
.y108{bottom:930.930000px;}
.ya3{bottom:931.650000px;}
.y138{bottom:932.190000px;}
.y40{bottom:933.270000px;}
.ya{bottom:935.250000px;}
.y16b{bottom:937.590000px;}
.y107{bottom:950.190000px;}
.ya2{bottom:951.090000px;}
.yd2{bottom:952.530000px;}
.y137{bottom:954.150000px;}
.y16a{bottom:956.490000px;}
.y73{bottom:958.470000px;}
.y9{bottom:968.550000px;}
.y3f{bottom:969.090000px;}
.y106{bottom:969.270000px;}
.ya1{bottom:970.350000px;}
.yd1{bottom:971.970000px;}
.y136{bottom:973.410000px;}
.y169{bottom:978.270000px;}
.y105{bottom:988.530000px;}
.ya0{bottom:989.790000px;}
.y72{bottom:990.870000px;}
.yd0{bottom:991.230000px;}
.y3e{bottom:991.590000px;}
.y135{bottom:995.550000px;}
.y168{bottom:1000.230000px;}
.y104{bottom:1007.970000px;}
.y8{bottom:1009.050000px;}
.y71{bottom:1009.770000px;}
.ycf{bottom:1010.670000px;}
.y3d{bottom:1010.850000px;}
.y134{bottom:1014.810000px;}
.y167{bottom:1019.130000px;}
.y103{bottom:1027.230000px;}
.y9f{bottom:1027.950000px;}
.y70{bottom:1028.670000px;}
.y3c{bottom:1029.930000px;}
.y133{bottom:1034.070000px;}
.yce{bottom:1038.210000px;}
.y166{bottom:1041.090000px;}
.y102{bottom:1046.670000px;}
.y9e{bottom:1047.390000px;}
.y6f{bottom:1047.750000px;}
.y3b{bottom:1048.830000px;}
.y7{bottom:1054.410000px;}
.y132{bottom:1056.030000px;}
.y165{bottom:1059.990000px;}
.y101{bottom:1065.930000px;}
.y9d{bottom:1066.650000px;}
.y6e{bottom:1067.010000px;}
.y3a{bottom:1067.730000px;}
.ycd{bottom:1073.130000px;}
.y131{bottom:1075.470000px;}
.y195{bottom:1077.990000px;}
.y164{bottom:1078.890000px;}
.y100{bottom:1085.370000px;}
.y6d{bottom:1086.090000px;}
.y39{bottom:1086.810000px;}
.y130{bottom:1094.730000px;}
.ycc{bottom:1095.450000px;}
.y194{bottom:1099.950000px;}
.y163{bottom:1100.850000px;}
.yff{bottom:1104.270000px;}
.y6c{bottom:1105.350000px;}
.y38{bottom:1105.710000px;}
.y6{bottom:1110.930000px;}
.y12f{bottom:1117.230000px;}
.ycb{bottom:1117.590000px;}
.y162{bottom:1120.110000px;}
.y193{bottom:1121.730000px;}
.yfe{bottom:1123.710000px;}
.y6b{bottom:1124.430000px;}
.y37{bottom:1124.790000px;}
.yca{bottom:1139.910000px;}
.y161{bottom:1142.070000px;}
.y12e{bottom:1142.610000px;}
.yfd{bottom:1142.970000px;}
.y6a{bottom:1143.330000px;}
.y36{bottom:1143.690000px;}
.y5{bottom:1155.060000px;}
.y160{bottom:1161.360000px;}
.y12d{bottom:1161.540000px;}
.yc9{bottom:1162.260000px;}
.y69{bottom:1162.440000px;}
.y35{bottom:1162.800000px;}
.y3{bottom:1203.480000px;}
.y2{bottom:1218.960000px;}
.y1{bottom:1247.760000px;}
.h10{height:21.420000px;}
.h4{height:42.806602px;}
.h11{height:46.736719px;}
.h2{height:47.448281px;}
.ha{height:48.224531px;}
.h15{height:50.800781px;}
.h5{height:51.574219px;}
.hb{height:55.825312px;}
.hc{height:55.987031px;}
.h16{height:57.280781px;}
.hf{height:57.571875px;}
.h12{height:58.154062px;}
.he{height:61.329023px;}
.h9{height:62.578125px;}
.hd{height:63.180000px;}
.h14{height:67.584375px;}
.h8{height:73.216406px;}
.h13{height:74.433516px;}
.h3{height:88.166602px;}
.h7{height:104.505469px;}
.h6{height:145.807031px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:650.850000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2a{left:1.440000px;}
.x4{left:57.959987px;}
.x1{left:84.995987px;}
.x26{left:91.295987px;}
.x23{left:104.975987px;}
.x24{left:106.235987px;}
.x9{left:111.995987px;}
.xa{left:138.995987px;}
.x6{left:207.389987px;}
.xb{left:261.254987px;}
.x7{left:277.454987px;}
.x2c{left:337.034987px;}
.x5{left:339.734987px;}
.x28{left:359.894987px;}
.x8{left:376.814987px;}
.x2b{left:390.314987px;}
.x25{left:416.264987px;}
.x2{left:453.704987px;}
.x3{left:456.764987px;}
.x1b{left:459.824987px;}
.x1c{left:466.124987px;}
.x12{left:489.884987px;}
.x13{left:496.004987px;}
.x2d{left:505.544987px;}
.x14{left:510.584987px;}
.xc{left:515.984987px;}
.x1e{left:524.444987px;}
.x1f{left:530.744987px;}
.xd{left:535.424987px;}
.x11{left:540.464987px;}
.xe{left:541.724987px;}
.xf{left:586.589987px;}
.x10{left:591.089987px;}
.x2e{left:597.029987px;}
.x15{left:599.369987px;}
.x16{left:605.669987px;}
.x20{left:617.909987px;}
.x21{left:624.209987px;}
.x17{left:638.429987px;}
.x18{left:642.929987px;}
.x22{left:651.749987px;}
.x2f{left:652.829987px;}
.x27{left:668.309987px;}
.x29{left:681.269987px;}
.x19{left:758.879987px;}
.x1a{left:763.379987px;}
.x1d{left:784.439987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.320000pt;}
.ls7{letter-spacing:-2.384000pt;}
.ls37{letter-spacing:-0.736000pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.618667pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.364267pt;}
.ls19{letter-spacing:-0.297067pt;}
.ls1d{letter-spacing:-0.237867pt;}
.ls35{letter-spacing:-0.207467pt;}
.ls28{letter-spacing:-0.202667pt;}
.ls29{letter-spacing:-0.112533pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls38{letter-spacing:-0.097067pt;}
.ls30{letter-spacing:-0.061333pt;}
.ls36{letter-spacing:-0.038400pt;}
.lsc{letter-spacing:-0.018187pt;}
.ls16{letter-spacing:-0.005152pt;}
.ls6{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.006400pt;}
.ls2a{letter-spacing:0.010240pt;}
.lse{letter-spacing:0.010880pt;}
.ls1e{letter-spacing:0.020480pt;}
.ls20{letter-spacing:0.066667pt;}
.ls1b{letter-spacing:0.071467pt;}
.ls21{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.097067pt;}
.ls31{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.130667pt;}
.ls2d{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.186667pt;}
.ls1c{letter-spacing:0.197333pt;}
.ls8{letter-spacing:0.228267pt;}
.ls17{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.270030pt;}
.ls2f{letter-spacing:0.291840pt;}
.ls2b{letter-spacing:0.342933pt;}
.ls26{letter-spacing:0.343040pt;}
.ls15{letter-spacing:0.356267pt;}
.lsf{letter-spacing:0.442133pt;}
.ls3{letter-spacing:0.442830pt;}
.lsb{letter-spacing:0.497067pt;}
.lsd{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.672000pt;}
.ls10{letter-spacing:0.768236pt;}
.ls27{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.154069pt;}
.ls23{letter-spacing:2.251295pt;}
.ls25{letter-spacing:4.480000pt;}
.ls2{letter-spacing:7.987631pt;}
.ls5{letter-spacing:9.154343pt;}
.ls12{letter-spacing:10.240000pt;}
.ls4{letter-spacing:10.735555pt;}
.ls13{letter-spacing:12.160000pt;}
.ls2e{letter-spacing:52.751360pt;}
.ls24{letter-spacing:245.073067pt;}
.ws6{word-spacing:-58.880000pt;}
.ws1{word-spacing:-32.806400pt;}
.ws0{word-spacing:-30.422400pt;}
.ws21{word-spacing:-25.264640pt;}
.ws3{word-spacing:-23.741867pt;}
.ws4{word-spacing:-23.700267pt;}
.ws2{word-spacing:-23.513600pt;}
.ws10{word-spacing:-23.508448pt;}
.ws5{word-spacing:-23.405867pt;}
.ws1c{word-spacing:-23.310933pt;}
.ws14{word-spacing:-23.149333pt;}
.ws7{word-spacing:-15.392000pt;}
.wsa{word-spacing:-15.264000pt;}
.ws9{word-spacing:-15.217067pt;}
.wse{word-spacing:-15.162133pt;}
.wsf{word-spacing:-15.076267pt;}
.ws11{word-spacing:-14.953067pt;}
.ws22{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws29{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.080000pt;}
.ws1f{word-spacing:-13.296533pt;}
.ws16{word-spacing:-13.150933pt;}
.ws26{word-spacing:-13.084267pt;}
.ws1b{word-spacing:-13.048533pt;}
.ws15{word-spacing:-13.025067pt;}
.ws1a{word-spacing:-13.020267pt;}
.ws19{word-spacing:-12.974080pt;}
.ws1e{word-spacing:-12.963840pt;}
.wsb{word-spacing:-12.953600pt;}
.ws27{word-spacing:-12.915200pt;}
.ws23{word-spacing:-12.892267pt;}
.ws1d{word-spacing:-12.841067pt;}
.ws25{word-spacing:-12.746133pt;}
.ws17{word-spacing:-12.715733pt;}
.ws13{word-spacing:-12.656533pt;}
.ws24{word-spacing:-12.377600pt;}
.ws20{word-spacing:-12.334933pt;}
.ws18{word-spacing:-12.249600pt;}
.ws28{word-spacing:-12.217600pt;}
.wsc{word-spacing:0.000000pt;}
._3{margin-left:-7.508073pt;}
._4{margin-left:-5.219200pt;}
._6{margin-left:-4.172727pt;}
._0{margin-left:-3.040000pt;}
._2{margin-left:-2.030080pt;}
._5{margin-left:-1.083460pt;}
._7{width:0.910429pt;}
._8{width:2.063836pt;}
._18{width:3.184361pt;}
._1{width:4.087035pt;}
._c{width:5.020979pt;}
._12{width:6.235547pt;}
._1f{width:7.524380pt;}
._9{width:8.419840pt;}
._15{width:9.343460pt;}
._b{width:10.332791pt;}
._a{width:11.507805pt;}
._26{width:12.459784pt;}
._10{width:13.460712pt;}
._2c{width:15.073280pt;}
._2d{width:16.038980pt;}
._d{width:17.672761pt;}
._1d{width:19.072066pt;}
._1e{width:20.526167pt;}
._11{width:22.374400pt;}
._1c{width:23.267018pt;}
._22{width:24.279303pt;}
._e{width:25.793862pt;}
._f{width:26.880931pt;}
._39{width:28.125337pt;}
._21{width:29.616640pt;}
._20{width:30.794240pt;}
._2e{width:31.854080pt;}
._14{width:32.918342pt;}
._13{width:34.032640pt;}
._25{width:36.197873pt;}
._24{width:37.856263pt;}
._36{width:42.132206pt;}
._23{width:43.806720pt;}
._2a{width:55.617356pt;}
._29{width:56.583680pt;}
._28{width:57.609191pt;}
._27{width:58.880000pt;}
._1a{width:62.974371pt;}
._1b{width:63.909333pt;}
._32{width:85.611520pt;}
._33{width:87.080415pt;}
._16{width:111.962531pt;}
._17{width:113.022371pt;}
._38{width:114.167465pt;}
._37{width:116.065357pt;}
._35{width:130.360320pt;}
._34{width:131.978581pt;}
._19{width:166.956451pt;}
._2f{width:172.818500pt;}
._30{width:174.285806pt;}
._31{width:244.823040pt;}
._2b{width:284.566187pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:90.880000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:4.480000pt;}
.y4{bottom:43.200000pt;}
.y32{bottom:45.920000pt;}
.y34{bottom:50.720000pt;}
.y68{bottom:80.640000pt;}
.y12c{bottom:82.240000pt;}
.y9c{bottom:82.560000pt;}
.y15f{bottom:84.960000pt;}
.y31{bottom:89.760000pt;}
.yfc{bottom:93.440000pt;}
.y192{bottom:93.760000pt;}
.yc8{bottom:95.840000pt;}
.y67{bottom:97.760000pt;}
.y12b{bottom:99.360000pt;}
.y9b{bottom:99.680000pt;}
.y15e{bottom:102.080000pt;}
.y30{bottom:106.560000pt;}
.yfb{bottom:110.560000pt;}
.y191{bottom:111.040000pt;}
.y66{bottom:115.040000pt;}
.yc7{bottom:115.520000pt;}
.y12a{bottom:116.480000pt;}
.y9a{bottom:116.800000pt;}
.y15d{bottom:121.600000pt;}
.y2f{bottom:123.520000pt;}
.yfa{bottom:127.680000pt;}
.y190{bottom:128.160000pt;}
.y65{bottom:131.840000pt;}
.y99{bottom:133.760000pt;}
.yc6{bottom:135.360000pt;}
.y129{bottom:136.000000pt;}
.y15c{bottom:138.720000pt;}
.y2e{bottom:140.640000pt;}
.yf9{bottom:144.960000pt;}
.y18f{bottom:148.160000pt;}
.y64{bottom:148.640000pt;}
.y98{bottom:150.906667pt;}
.y128{bottom:152.826667pt;}
.yc5{bottom:155.066667pt;}
.y2d{bottom:157.946667pt;}
.y15b{bottom:158.906667pt;}
.yf8{bottom:162.106667pt;}
.y63{bottom:165.946667pt;}
.y97{bottom:168.186667pt;}
.y18e{bottom:170.586667pt;}
.y127{bottom:172.186667pt;}
.y2c{bottom:174.746667pt;}
.yc4{bottom:174.906667pt;}
.yf7{bottom:179.386667pt;}
.y15a{bottom:181.306667pt;}
.y62{bottom:183.066667pt;}
.y96{bottom:184.986667pt;}
.y18d{bottom:187.546667pt;}
.y126{bottom:188.986667pt;}
.y2b{bottom:191.706667pt;}
.yc3{bottom:194.746667pt;}
.yf6{bottom:196.506667pt;}
.y159{bottom:198.426667pt;}
.y61{bottom:200.346667pt;}
.y95{bottom:202.266667pt;}
.y18c{bottom:204.346667pt;}
.y2a{bottom:208.506667pt;}
.yf5{bottom:213.786667pt;}
.yc2{bottom:214.426667pt;}
.y60{bottom:217.466667pt;}
.y158{bottom:217.946667pt;}
.y18b{bottom:221.146667pt;}
.y29{bottom:225.786667pt;}
.y94{bottom:226.586667pt;}
.y125{bottom:227.866667pt;}
.yf4{bottom:230.906667pt;}
.yc1{bottom:234.266667pt;}
.y5f{bottom:234.746667pt;}
.y157{bottom:235.066667pt;}
.y18a{bottom:240.666667pt;}
.y28{bottom:242.906667pt;}
.y124{bottom:247.866667pt;}
.yf3{bottom:248.186667pt;}
.y5e{bottom:251.546667pt;}
.y156{bottom:252.346667pt;}
.yc0{bottom:253.946667pt;}
.y189{bottom:257.786667pt;}
.y27{bottom:259.706667pt;}
.y93{bottom:262.586667pt;}
.yf2{bottom:265.306667pt;}
.y5d{bottom:268.826667pt;}
.y155{bottom:269.466667pt;}
.y123{bottom:270.266667pt;}
.ybf{bottom:273.786667pt;}
.y26{bottom:276.666667pt;}
.y188{bottom:277.306667pt;}
.yf1{bottom:282.266667pt;}
.y5c{bottom:285.946667pt;}
.y122{bottom:287.066667pt;}
.y154{bottom:288.986667pt;}
.y25{bottom:293.466667pt;}
.ybe{bottom:293.626667pt;}
.y187{bottom:294.106667pt;}
.y92{bottom:294.426667pt;}
.yf0{bottom:299.066667pt;}
.y5b{bottom:302.746667pt;}
.y153{bottom:306.106667pt;}
.y121{bottom:306.426667pt;}
.y24{bottom:310.426667pt;}
.ybd{bottom:313.306667pt;}
.y186{bottom:313.626667pt;}
.y91{bottom:314.426667pt;}
.yef{bottom:315.866667pt;}
.y5a{bottom:319.706667pt;}
.y152{bottom:323.226667pt;}
.y120{bottom:323.386667pt;}
.y23{bottom:327.226667pt;}
.y185{bottom:330.746667pt;}
.y90{bottom:331.546667pt;}
.ybc{bottom:333.146667pt;}
.y59{bottom:336.826667pt;}
.y11f{bottom:340.186667pt;}
.y151{bottom:342.746667pt;}
.y22{bottom:344.026667pt;}
.y184{bottom:347.546667pt;}
.y8f{bottom:348.666667pt;}
.yee{bottom:350.266667pt;}
.ybb{bottom:352.826667pt;}
.y11e{bottom:357.146667pt;}
.y21{bottom:360.986667pt;}
.y58{bottom:361.306667pt;}
.y150{bottom:362.266667pt;}
.y8e{bottom:365.946667pt;}
.yed{bottom:367.586667pt;}
.yba{bottom:372.706667pt;}
.y11d{bottom:373.986667pt;}
.y14f{bottom:379.426667pt;}
.y8d{bottom:383.106667pt;}
.yec{bottom:384.706667pt;}
.y20{bottom:385.026667pt;}
.y183{bottom:389.986667pt;}
.yb9{bottom:392.386667pt;}
.y11c{bottom:393.346667pt;}
.y57{bottom:397.346667pt;}
.y14e{bottom:398.946667pt;}
.y8c{bottom:400.386667pt;}
.yeb{bottom:401.666667pt;}
.y182{bottom:407.106667pt;}
.yb8{bottom:412.226667pt;}
.y11b{bottom:412.866667pt;}
.y1f{bottom:413.826667pt;}
.y14d{bottom:416.066667pt;}
.y8b{bottom:417.186667pt;}
.yea{bottom:418.786667pt;}
.y181{bottom:426.626667pt;}
.y56{bottom:429.186667pt;}
.y11a{bottom:429.986667pt;}
.y1e{bottom:430.626667pt;}
.yb7{bottom:432.066667pt;}
.y8a{bottom:434.146667pt;}
.y14c{bottom:435.746667pt;}
.ye9{bottom:436.066667pt;}
.y180{bottom:443.906667pt;}
.y1d{bottom:447.746667pt;}
.y55{bottom:449.026667pt;}
.y119{bottom:449.506667pt;}
.y89{bottom:450.946667pt;}
.yb6{bottom:451.746667pt;}
.ye8{bottom:452.866667pt;}
.y17f{bottom:461.026667pt;}
.y54{bottom:465.986667pt;}
.y118{bottom:466.306667pt;}
.y1c{bottom:467.266667pt;}
.y88{bottom:468.226667pt;}
.ye7{bottom:469.666667pt;}
.y14b{bottom:469.986667pt;}
.yb5{bottom:471.586667pt;}
.y17e{bottom:480.546667pt;}
.y53{bottom:482.786667pt;}
.y1b{bottom:484.226667pt;}
.y87{bottom:485.026667pt;}
.y117{bottom:485.666667pt;}
.ye6{bottom:486.626667pt;}
.y14a{bottom:489.506667pt;}
.yb4{bottom:491.266667pt;}
.y17d{bottom:497.666667pt;}
.y52{bottom:499.586667pt;}
.y86{bottom:502.146667pt;}
.y1a{bottom:502.306667pt;}
.y116{bottom:502.466667pt;}
.ye5{bottom:503.746667pt;}
.y149{bottom:506.626667pt;}
.yb3{bottom:511.106667pt;}
.y51{bottom:516.546667pt;}
.y17c{bottom:517.186667pt;}
.y85{bottom:519.426667pt;}
.ye4{bottom:521.026667pt;}
.y19{bottom:521.666667pt;}
.y115{bottom:521.986667pt;}
.y148{bottom:526.146667pt;}
.yb2{bottom:530.946667pt;}
.y50{bottom:533.346667pt;}
.y84{bottom:536.226667pt;}
.y17b{bottom:536.706667pt;}
.ye3{bottom:537.826667pt;}
.y18{bottom:538.626667pt;}
.y114{bottom:539.426667pt;}
.y147{bottom:546.306667pt;}
.y4f{bottom:550.306667pt;}
.yb1{bottom:550.626667pt;}
.y83{bottom:553.186667pt;}
.y17a{bottom:553.826667pt;}
.ye2{bottom:554.786667pt;}
.y17{bottom:556.386667pt;}
.y113{bottom:566.946667pt;}
.y4e{bottom:567.106667pt;}
.y146{bottom:568.706667pt;}
.y82{bottom:569.986667pt;}
.yb0{bottom:570.466667pt;}
.ye1{bottom:571.906667pt;}
.y179{bottom:573.346667pt;}
.y16{bottom:575.746667pt;}
.y4d{bottom:583.906667pt;}
.y145{bottom:585.853333pt;}
.y81{bottom:586.813333pt;}
.ye0{bottom:589.213333pt;}
.y178{bottom:590.493333pt;}
.y15{bottom:592.733333pt;}
.yaf{bottom:594.973333pt;}
.y4c{bottom:600.893333pt;}
.y144{bottom:602.973333pt;}
.y80{bottom:603.773333pt;}
.ydf{bottom:606.333333pt;}
.y14{bottom:609.533333pt;}
.y177{bottom:610.013333pt;}
.y4b{bottom:617.693333pt;}
.y112{bottom:619.773333pt;}
.y7f{bottom:620.893333pt;}
.y143{bottom:622.493333pt;}
.yde{bottom:623.453333pt;}
.yae{bottom:623.773333pt;}
.y176{bottom:627.133333pt;}
.y13{bottom:628.893333pt;}
.y4a{bottom:634.653333pt;}
.y111{bottom:636.573333pt;}
.y7e{bottom:638.173333pt;}
.y142{bottom:639.613333pt;}
.yad{bottom:640.573333pt;}
.ydd{bottom:640.733333pt;}
.y12{bottom:645.853333pt;}
.y175{bottom:646.653333pt;}
.y49{bottom:651.453333pt;}
.y110{bottom:653.533333pt;}
.y7d{bottom:655.293333pt;}
.yac{bottom:657.533333pt;}
.ydc{bottom:657.853333pt;}
.y141{bottom:659.293333pt;}
.y11{bottom:662.653333pt;}
.y174{bottom:663.773333pt;}
.y48{bottom:668.413333pt;}
.y7c{bottom:672.253333pt;}
.yab{bottom:674.333333pt;}
.ydb{bottom:675.133333pt;}
.y140{bottom:676.413333pt;}
.y10{bottom:679.453333pt;}
.y173{bottom:683.293333pt;}
.y10f{bottom:683.933333pt;}
.y47{bottom:685.213333pt;}
.y7b{bottom:689.373333pt;}
.yaa{bottom:691.293333pt;}
.yda{bottom:691.933333pt;}
.y13f{bottom:695.773333pt;}
.y46{bottom:702.013333pt;}
.y172{bottom:703.453333pt;}
.yf{bottom:706.173333pt;}
.y7a{bottom:706.333333pt;}
.ya9{bottom:708.413333pt;}
.yd9{bottom:709.213333pt;}
.y13e{bottom:712.893333pt;}
.y45{bottom:718.973333pt;}
.y79{bottom:723.453333pt;}
.y10e{bottom:725.213333pt;}
.ya8{bottom:725.533333pt;}
.y171{bottom:725.853333pt;}
.yd8{bottom:726.333333pt;}
.y13d{bottom:732.893333pt;}
.y44{bottom:735.773333pt;}
.ye{bottom:738.013333pt;}
.y78{bottom:740.573333pt;}
.y10d{bottom:742.173333pt;}
.ya7{bottom:742.493333pt;}
.y170{bottom:742.973333pt;}
.yd7{bottom:743.613333pt;}
.y43{bottom:752.733333pt;}
.y13c{bottom:755.293333pt;}
.y77{bottom:757.533333pt;}
.y10c{bottom:758.973333pt;}
.ya6{bottom:759.293333pt;}
.y16f{bottom:760.093333pt;}
.yd6{bottom:760.733333pt;}
.yd{bottom:761.053333pt;}
.y42{bottom:769.533333pt;}
.y13b{bottom:772.573333pt;}
.y76{bottom:774.653333pt;}
.y10b{bottom:776.253333pt;}
.ya5{bottom:776.573333pt;}
.yd5{bottom:778.013333pt;}
.y16e{bottom:779.613333pt;}
.yc{bottom:784.093333pt;}
.y13a{bottom:789.693333pt;}
.y75{bottom:791.933333pt;}
.y10a{bottom:793.053333pt;}
.y41{bottom:793.693333pt;}
.yd4{bottom:795.133333pt;}
.y16d{bottom:796.733333pt;}
.yb{bottom:807.173333pt;}
.y139{bottom:809.253333pt;}
.y109{bottom:810.373333pt;}
.ya4{bottom:811.013333pt;}
.yd3{bottom:812.453333pt;}
.y16c{bottom:814.053333pt;}
.y74{bottom:816.133333pt;}
.y108{bottom:827.493333pt;}
.ya3{bottom:828.133333pt;}
.y138{bottom:828.613333pt;}
.y40{bottom:829.573333pt;}
.ya{bottom:831.333333pt;}
.y16b{bottom:833.413333pt;}
.y107{bottom:844.613333pt;}
.ya2{bottom:845.413333pt;}
.yd2{bottom:846.693333pt;}
.y137{bottom:848.133333pt;}
.y16a{bottom:850.213333pt;}
.y73{bottom:851.973333pt;}
.y9{bottom:860.933333pt;}
.y3f{bottom:861.413333pt;}
.y106{bottom:861.573333pt;}
.ya1{bottom:862.533333pt;}
.yd1{bottom:863.973333pt;}
.y136{bottom:865.253333pt;}
.y169{bottom:869.573333pt;}
.y105{bottom:878.693333pt;}
.ya0{bottom:879.813333pt;}
.y72{bottom:880.773333pt;}
.yd0{bottom:881.093333pt;}
.y3e{bottom:881.413333pt;}
.y135{bottom:884.933333pt;}
.y168{bottom:889.093333pt;}
.y104{bottom:895.973333pt;}
.y8{bottom:896.933333pt;}
.y71{bottom:897.573333pt;}
.ycf{bottom:898.373333pt;}
.y3d{bottom:898.533333pt;}
.y134{bottom:902.053333pt;}
.y167{bottom:905.893333pt;}
.y103{bottom:913.093333pt;}
.y9f{bottom:913.733333pt;}
.y70{bottom:914.373333pt;}
.y3c{bottom:915.493333pt;}
.y133{bottom:919.173333pt;}
.yce{bottom:922.853333pt;}
.y166{bottom:925.413333pt;}
.y102{bottom:930.373333pt;}
.y9e{bottom:931.013333pt;}
.y6f{bottom:931.333333pt;}
.y3b{bottom:932.293333pt;}
.y7{bottom:937.253333pt;}
.y132{bottom:938.693333pt;}
.y165{bottom:942.213333pt;}
.y101{bottom:947.493333pt;}
.y9d{bottom:948.133333pt;}
.y6e{bottom:948.453333pt;}
.y3a{bottom:949.093333pt;}
.ycd{bottom:953.893333pt;}
.y131{bottom:955.973333pt;}
.y195{bottom:958.213333pt;}
.y164{bottom:959.013333pt;}
.y100{bottom:964.773333pt;}
.y6d{bottom:965.413333pt;}
.y39{bottom:966.053333pt;}
.y130{bottom:973.093333pt;}
.ycc{bottom:973.733333pt;}
.y194{bottom:977.733333pt;}
.y163{bottom:978.533333pt;}
.yff{bottom:981.573333pt;}
.y6c{bottom:982.533333pt;}
.y38{bottom:982.853333pt;}
.y6{bottom:987.493333pt;}
.y12f{bottom:993.093333pt;}
.ycb{bottom:993.413333pt;}
.y162{bottom:995.653333pt;}
.y193{bottom:997.093333pt;}
.yfe{bottom:998.853333pt;}
.y6b{bottom:999.493333pt;}
.y37{bottom:999.813333pt;}
.yca{bottom:1013.253333pt;}
.y161{bottom:1015.173333pt;}
.y12e{bottom:1015.653333pt;}
.yfd{bottom:1015.973333pt;}
.y6a{bottom:1016.293333pt;}
.y36{bottom:1016.613333pt;}
.y5{bottom:1026.720000pt;}
.y160{bottom:1032.320000pt;}
.y12d{bottom:1032.480000pt;}
.yc9{bottom:1033.120000pt;}
.y69{bottom:1033.280000pt;}
.y35{bottom:1033.600000pt;}
.y3{bottom:1069.760000pt;}
.y2{bottom:1083.520000pt;}
.y1{bottom:1109.120000pt;}
.h10{height:19.040000pt;}
.h4{height:38.050313pt;}
.h11{height:41.543750pt;}
.h2{height:42.176250pt;}
.ha{height:42.866250pt;}
.h15{height:45.156250pt;}
.h5{height:45.843750pt;}
.hb{height:49.622500pt;}
.hc{height:49.766250pt;}
.h16{height:50.916250pt;}
.hf{height:51.175000pt;}
.h12{height:51.692500pt;}
.he{height:54.514687pt;}
.h9{height:55.625000pt;}
.hd{height:56.160000pt;}
.h14{height:60.075000pt;}
.h8{height:65.081250pt;}
.h13{height:66.163125pt;}
.h3{height:78.370313pt;}
.h7{height:92.893750pt;}
.h6{height:129.606250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:578.533333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.280000pt;}
.x4{left:51.519988pt;}
.x1{left:75.551988pt;}
.x26{left:81.151988pt;}
.x23{left:93.311988pt;}
.x24{left:94.431988pt;}
.x9{left:99.551988pt;}
.xa{left:123.551988pt;}
.x6{left:184.346655pt;}
.xb{left:232.226655pt;}
.x7{left:246.626655pt;}
.x2c{left:299.586655pt;}
.x5{left:301.986655pt;}
.x28{left:319.906655pt;}
.x8{left:334.946655pt;}
.x2b{left:346.946655pt;}
.x25{left:370.013321pt;}
.x2{left:403.293321pt;}
.x3{left:406.013321pt;}
.x1b{left:408.733321pt;}
.x1c{left:414.333321pt;}
.x12{left:435.453321pt;}
.x13{left:440.893321pt;}
.x2d{left:449.373321pt;}
.x14{left:453.853321pt;}
.xc{left:458.653321pt;}
.x1e{left:466.173321pt;}
.x1f{left:471.773322pt;}
.xd{left:475.933321pt;}
.x11{left:480.413322pt;}
.xe{left:481.533322pt;}
.xf{left:521.413322pt;}
.x10{left:525.413322pt;}
.x2e{left:530.693322pt;}
.x15{left:532.773322pt;}
.x16{left:538.373321pt;}
.x20{left:549.253321pt;}
.x21{left:554.853321pt;}
.x17{left:567.493322pt;}
.x18{left:571.493322pt;}
.x22{left:579.333322pt;}
.x2f{left:580.293321pt;}
.x27{left:594.053322pt;}
.x29{left:605.573322pt;}
.x19{left:674.559988pt;}
.x1a{left:678.559988pt;}
.x1d{left:697.279988pt;}
}




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