
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f18faf553c322456309a49d5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_981355621abdc9121b8e1594.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_3551f0c427daf6d928593f52.woff')format("woff");}.ff5{font-family:ff5;line-height:0.865000;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_be6a668cee16b233e4b81b08.woff')format("woff");}.ff6{font-family:ff6;line-height:0.865000;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_9f3af13e05591dc85fa7c893.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_f588f4de240368a978f90754.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_e5b8deddb82dd4b276891cd5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.178000;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_1e892e34f63cf8872e0aeedb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.178000;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_b9317f99f6bc5025dbbafe88.woff')format("woff");}.ffb{font-family:ffb;line-height:1.018000;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_e3cd23acbe1ea7a6d6968903.woff')format("woff");}.ffc{font-family:ffc;line-height:1.018000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.009000;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_bd68783d00992c08a46bcbf5.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4f7e5ce1f41e19a9642957b8.woff')format("woff");}.fff{font-family:fff;line-height:0.937988;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_a622ec10e4533cd466d6961c.woff')format("woff");}.ff10{font-family:ff10;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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.760000px;}
.v2{vertical-align:25.044989px;}
.ls4e{letter-spacing:-17.280000px;}
.ls1e{letter-spacing:-1.038000px;}
.ls44{letter-spacing:-0.986621px;}
.ls1d{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.589200px;}
.lsa{letter-spacing:-0.443400px;}
.ls59{letter-spacing:-0.392400px;}
.ls57{letter-spacing:-0.385800px;}
.ls10{letter-spacing:-0.317400px;}
.ls9{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.277800px;}
.ls50{letter-spacing:-0.240600px;}
.lse{letter-spacing:-0.227682px;}
.lsd{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.207600px;}
.ls1c{letter-spacing:-0.144000px;}
.ls55{letter-spacing:-0.136800px;}
.ls26{letter-spacing:-0.072000px;}
.ls56{letter-spacing:-0.067200px;}
.ls1a{letter-spacing:-0.013680px;}
.ls7{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.034560px;}
.ls52{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.075894px;}
.ls14{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.125400px;}
.ls18{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls42{letter-spacing:0.151788px;}
.ls15{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.227682px;}
.ls0{letter-spacing:0.241800px;}
.ls4d{letter-spacing:0.249000px;}
.ls2f{letter-spacing:0.251400px;}
.ls48{letter-spacing:0.255000px;}
.ls3{letter-spacing:0.256320px;}
.ls47{letter-spacing:0.262466px;}
.ls24{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.303576px;}
.lsb{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.340560px;}
.lsf{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.360000px;}
.ls4f{letter-spacing:0.370800px;}
.ls27{letter-spacing:0.378600px;}
.ls1{letter-spacing:0.378720px;}
.ls1b{letter-spacing:0.379470px;}
.ls28{letter-spacing:0.399075px;}
.ls3b{letter-spacing:0.402600px;}
.ls58{letter-spacing:0.406800px;}
.ls3a{letter-spacing:0.417416px;}
.ls2d{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls40{letter-spacing:0.531257px;}
.ls19{letter-spacing:0.540000px;}
.ls54{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.720000px;}
.ls3c{letter-spacing:0.758939px;}
.ls43{letter-spacing:0.864000px;}
.ls3e{letter-spacing:0.936000px;}
.ls30{letter-spacing:0.986621px;}
.ls53{letter-spacing:1.656000px;}
.ls46{letter-spacing:1.776000px;}
.ls39{letter-spacing:2.376000px;}
.ls23{letter-spacing:3.816000px;}
.ls25{letter-spacing:5.232000px;}
.ls3d{letter-spacing:5.256000px;}
.ls41{letter-spacing:6.696000px;}
.ls20{letter-spacing:8.136000px;}
.ls21{letter-spacing:8.576011px;}
.ls22{letter-spacing:8.856000px;}
.ls36{letter-spacing:9.576000px;}
.ls4b{letter-spacing:10.093889px;}
.ls13{letter-spacing:10.296000px;}
.ls17{letter-spacing:11.736000px;}
.ls3f{letter-spacing:12.370707px;}
.ls35{letter-spacing:13.176000px;}
.ls34{letter-spacing:13.896000px;}
.ls2c{letter-spacing:16.056000px;}
.ls37{letter-spacing:21.816000px;}
.ls32{letter-spacing:21.996000px;}
.ls31{letter-spacing:22.995853px;}
.ls4{letter-spacing:24.016320px;}
.ls49{letter-spacing:25.416000px;}
.ls33{letter-spacing:27.576000px;}
.ls45{letter-spacing:31.176000px;}
.ls51{letter-spacing:39.096000px;}
.ls38{letter-spacing:49.872000px;}
.ls4a{letter-spacing:448.092000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.790080px;}
.ws3{word-spacing:-19.944000px;}
.ws20{word-spacing:-19.884203px;}
.ws2{word-spacing:-19.872000px;}
.ws1f{word-spacing:-19.808309px;}
.ws24{word-spacing:-19.656521px;}
.ws15{word-spacing:-19.580627px;}
.wsc{word-spacing:-19.504734px;}
.ws25{word-spacing:-19.368000px;}
.wsb{word-spacing:-19.277052px;}
.ws11{word-spacing:-19.051200px;}
.ws23{word-spacing:-19.008000px;}
.ws1d{word-spacing:-18.936000px;}
.wsa{word-spacing:-18.864000px;}
.ws21{word-spacing:-18.792000px;}
.ws16{word-spacing:-18.648000px;}
.ws1b{word-spacing:-18.576000px;}
.ws26{word-spacing:-18.518113px;}
.ws4{word-spacing:-18.504000px;}
.ws1a{word-spacing:-18.432000px;}
.ws17{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.288000px;}
.ws14{word-spacing:-18.216000px;}
.ws27{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.348880px;}
.ws6{word-spacing:-17.023680px;}
.ws7{word-spacing:-16.580280px;}
.ws22{word-spacing:-12.800280px;}
.wse{word-spacing:-12.739680px;}
.ws1e{word-spacing:-12.649080px;}
.wsd{word-spacing:-12.397680px;}
.ws19{word-spacing:-12.190080px;}
.ws1c{word-spacing:-12.119880px;}
.wsf{word-spacing:-12.080280px;}
.ws10{word-spacing:-11.808480px;}
.ws18{word-spacing:-11.359680px;}
.ws5{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws13{word-spacing:-0.142560px;}
.ws12{word-spacing:0.000000px;}
._2f{margin-left:-80.676000px;}
._34{margin-left:-77.544000px;}
._35{margin-left:-74.232000px;}
._31{margin-left:-69.840000px;}
._33{margin-left:-65.664000px;}
._30{margin-left:-54.504000px;}
._32{margin-left:-48.744000px;}
._12{margin-left:-8.284250px;}
._2d{margin-left:-7.102069px;}
._9{margin-left:-4.234560px;}
._a{margin-left:-2.534880px;}
._1{margin-left:-1.157760px;}
._2{width:1.280160px;}
._3{width:2.326080px;}
._14{width:3.672000px;}
._c{width:5.561280px;}
._b{width:6.721920px;}
._15{width:8.568000px;}
._18{width:10.473359px;}
._6{width:11.989440px;}
._7{width:13.014720px;}
._1d{width:14.393280px;}
._17{width:16.344000px;}
._16{width:17.424000px;}
._8{width:18.920160px;}
._d{width:20.301120px;}
._13{width:21.514080px;}
._4{width:23.428800px;}
._5{width:24.667680px;}
._20{width:26.380320px;}
._2a{width:27.576000px;}
._26{width:29.064000px;}
._27{width:30.348000px;}
._25{width:31.949760px;}
._1c{width:33.048000px;}
._1b{width:34.128000px;}
._1f{width:35.496000px;}
._1e{width:36.804000px;}
._2c{width:37.809600px;}
._21{width:39.240000px;}
._22{width:40.641600px;}
._2b{width:41.856480px;}
._28{width:42.857760px;}
._e{width:44.064000px;}
._f{width:45.132000px;}
._24{width:47.585760px;}
._23{width:48.792000px;}
._29{width:51.960000px;}
._10{width:57.144000px;}
._11{width:58.464000px;}
._19{width:65.568000px;}
._1a{width:66.612000px;}
._2e{width:474.456000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fsa{font-size:44.018465px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:50.848916px;}
.fsd{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs9{font-size:75.893905px;}
.fsb{font-size:77.760000px;}
.fse{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y43{bottom:6.660000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y42{bottom:30.450000px;}
.y44{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y41{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y3f{bottom:117.396000px;}
.y96{bottom:117.576000px;}
.y3e{bottom:121.896000px;}
.y5{bottom:131.220000px;}
.y7f{bottom:131.976000px;}
.y3d{bottom:133.416000px;}
.y95{bottom:134.676000px;}
.y7e{bottom:136.476000px;}
.y94{bottom:139.176000px;}
.y7d{bottom:146.736000px;}
.y8b{bottom:147.996000px;}
.y93{bottom:149.256000px;}
.y7c{bottom:151.230000px;}
.y92{bottom:153.750000px;}
.ya5{bottom:155.370000px;}
.y7b{bottom:161.310000px;}
.y91{bottom:165.270000px;}
.y7a{bottom:165.810000px;}
.y8a{bottom:172.830000px;}
.y79{bottom:175.890000px;}
.y8f{bottom:177.330000px;}
.y78{bottom:180.390000px;}
.y77{bottom:190.470000px;}
.y86{bottom:191.910000px;}
.y89{bottom:194.790000px;}
.y76{bottom:194.970000px;}
.y3c{bottom:196.410000px;}
.ya4{bottom:199.290000px;}
.y75{bottom:206.490000px;}
.y85{bottom:216.750000px;}
.y3b{bottom:218.370000px;}
.ya3{bottom:224.130000px;}
.y74{bottom:238.710000px;}
.y3a{bottom:240.330000px;}
.ya2{bottom:246.090000px;}
.y73{bottom:260.670000px;}
.y39{bottom:262.290000px;}
.ya1{bottom:268.050000px;}
.y72{bottom:282.630000px;}
.y38{bottom:284.250000px;}
.y8e{bottom:288.570000px;}
.ya0{bottom:292.890000px;}
.y71{bottom:304.590000px;}
.y37{bottom:306.030000px;}
.y9f{bottom:314.850000px;}
.y70{bottom:326.370000px;}
.y36{bottom:327.990000px;}
.y9e{bottom:339.735000px;}
.y6e{bottom:348.375000px;}
.y35{bottom:349.995000px;}
.y6f{bottom:354.315000px;}
.y9d{bottom:361.695000px;}
.y6c{bottom:370.335000px;}
.y34{bottom:371.955000px;}
.y6d{bottom:376.275000px;}
.y9c{bottom:386.535000px;}
.y6b{bottom:392.295000px;}
.y33{bottom:393.915000px;}
.y9b{bottom:408.495000px;}
.y6a{bottom:414.255000px;}
.y32{bottom:415.875000px;}
.y9a{bottom:433.335000px;}
.y69{bottom:436.215000px;}
.y31{bottom:437.835000px;}
.y90{bottom:442.155000px;}
.y99{bottom:455.295000px;}
.y68{bottom:458.175000px;}
.y30{bottom:459.795000px;}
.y67{bottom:480.135000px;}
.y2f{bottom:481.755000px;}
.y88{bottom:486.075000px;}
.y66{bottom:502.095000px;}
.y2d{bottom:503.715000px;}
.y2e{bottom:509.655000px;}
.y65{bottom:524.055000px;}
.y2c{bottom:525.495000px;}
.y84{bottom:529.995000px;}
.y64{bottom:545.835000px;}
.y2b{bottom:547.455000px;}
.y63{bottom:567.795000px;}
.y2a{bottom:569.415000px;}
.y62{bottom:589.755000px;}
.y29{bottom:591.375000px;}
.y61{bottom:611.745000px;}
.y28{bottom:613.365000px;}
.y5f{bottom:633.705000px;}
.y27{bottom:635.325000px;}
.y60{bottom:639.645000px;}
.y5e{bottom:655.665000px;}
.y26{bottom:656.925000px;}
.y98{bottom:661.605000px;}
.y5d{bottom:677.625000px;}
.y25{bottom:678.345000px;}
.y8d{bottom:683.565000px;}
.y24{bottom:689.865000px;}
.y5c{bottom:699.585000px;}
.y23{bottom:710.025000px;}
.y5b{bottom:721.545000px;}
.y22{bottom:730.185000px;}
.y5a{bottom:743.505000px;}
.y21{bottom:750.165000px;}
.y59{bottom:765.285000px;}
.y20{bottom:770.325000px;}
.y97{bottom:771.225000px;}
.y58{bottom:787.245000px;}
.y1f{bottom:790.485000px;}
.y57{bottom:809.205000px;}
.y1e{bottom:810.645000px;}
.y83{bottom:815.145000px;}
.y1d{bottom:830.625000px;}
.y56{bottom:831.165000px;}
.y1c{bottom:850.785000px;}
.y54{bottom:853.125000px;}
.y55{bottom:859.065000px;}
.y1b{bottom:870.990000px;}
.y53{bottom:875.130000px;}
.y82{bottom:881.070000px;}
.y1a{bottom:891.150000px;}
.y52{bottom:897.090000px;}
.y19{bottom:911.130000px;}
.y51{bottom:919.050000px;}
.y18{bottom:928.410000px;}
.y17{bottom:937.230000px;}
.y50{bottom:941.010000px;}
.y16{bottom:956.310000px;}
.y4f{bottom:962.970000px;}
.y15{bottom:969.270000px;}
.y14{bottom:981.150000px;}
.y4e{bottom:984.750000px;}
.y13{bottom:1003.110000px;}
.y4d{bottom:1006.710000px;}
.y81{bottom:1012.650000px;}
.y12{bottom:1025.070000px;}
.y4c{bottom:1028.670000px;}
.y4b{bottom:1050.630000px;}
.y8c{bottom:1056.570000px;}
.y11{bottom:1068.090000px;}
.y49{bottom:1072.590000px;}
.y4a{bottom:1078.530000px;}
.y48{bottom:1094.550000px;}
.y87{bottom:1100.490000px;}
.y40{bottom:1114.710000px;}
.y47{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y46{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y80{bottom:1144.440000px;}
.y45{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h11{height:16.398000px;}
.h6{height:17.280000px;}
.hf{height:27.548640px;}
.h13{height:29.604960px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.h19{height:40.883040px;}
.h15{height:43.094077px;}
.h16{height:47.226960px;}
.h1a{height:49.781089px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h1b{height:61.423863px;}
.h18{height:63.374400px;}
.h12{height:64.848960px;}
.h10{height:65.592000px;}
.h2{height:65.884219px;}
.he{height:70.488000px;}
.h17{height:73.116000px;}
.h14{height:74.300133px;}
.h1c{height:82.470960px;}
.h1d{height:86.585445px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w4{width:317.415000px;}
.w7{width:438.195000px;}
.w5{width:797.400000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x17{left:17.640000px;}
.x18{left:28.080000px;}
.x6{left:70.740000px;}
.x1{left:80.999987px;}
.x15{left:83.699987px;}
.x30{left:85.319987px;}
.x4f{left:86.399987px;}
.x31{left:88.379987px;}
.xae{left:90.395987px;}
.x32{left:91.475987px;}
.xc7{left:98.135987px;}
.x5{left:105.165000px;}
.x82{left:112.715987px;}
.x25{left:126.395987px;}
.xc5{left:127.475987px;}
.xb{left:134.135987px;}
.x6d{left:138.815987px;}
.x76{left:140.975987px;}
.x6c{left:144.575987px;}
.x43{left:145.655987px;}
.x19{left:146.880000px;}
.xc6{left:151.769987px;}
.xa4{left:153.389987px;}
.xc2{left:156.989987px;}
.x95{left:158.969987px;}
.x4d{left:171.569987px;}
.x8b{left:175.889987px;}
.x73{left:177.329987px;}
.xa{left:178.409987px;}
.x87{left:184.889987px;}
.x54{left:188.129987px;}
.x2e{left:192.089973px;}
.x2f{left:198.389987px;}
.x85{left:201.809987px;}
.xac{left:206.309987px;}
.x66{left:207.389987px;}
.x9c{left:216.389987px;}
.x89{left:219.629987px;}
.x1e{left:223.589987px;}
.x26{left:225.029987px;}
.x88{left:227.729987px;}
.x4e{left:234.389987px;}
.xa5{left:239.609987px;}
.x40{left:249.149987px;}
.x8c{left:251.669987px;}
.x83{left:258.149987px;}
.x21{left:262.469973px;}
.xb1{left:263.909987px;}
.x22{left:268.229987px;}
.x38{left:270.389987px;}
.x23{left:274.889987px;}
.x7d{left:276.149987px;}
.x16{left:285.735000px;}
.xc0{left:294.554987px;}
.x97{left:295.634987px;}
.x14{left:297.074987px;}
.x84{left:299.054987px;}
.x10{left:301.574987px;}
.x8a{left:305.894987px;}
.xaa{left:309.854987px;}
.xb8{left:313.094987px;}
.x55{left:314.534987px;}
.x96{left:315.794987px;}
.x67{left:324.254987px;}
.x56{left:327.314987px;}
.xa9{left:336.674987px;}
.xb6{left:339.734987px;}
.x28{left:342.794987px;}
.x3c{left:345.854987px;}
.xb9{left:349.634987px;}
.x60{left:352.334987px;}
.x57{left:354.674987px;}
.x20{left:357.554987px;}
.x99{left:362.234987px;}
.x62{left:364.214987px;}
.x59{left:369.434987px;}
.x86{left:376.274987px;}
.xba{left:386.174987px;}
.x44{left:387.974987px;}
.x9d{left:391.934987px;}
.x93{left:394.274987px;}
.x29{left:406.154987px;}
.x11{left:415.874987px;}
.x48{left:421.634987px;}
.x7e{left:424.154987px;}
.x79{left:425.954987px;}
.x63{left:428.834987px;}
.x39{left:432.974987px;}
.x5a{left:435.854987px;}
.x2a{left:440.534987px;}
.xbb{left:446.654987px;}
.x7b{left:451.334987px;}
.x45{left:456.914987px;}
.xaf{left:458.894987px;}
.x49{left:460.514987px;}
.x61{left:462.494987px;}
.xad{left:463.754987px;}
.x6a{left:467.024987px;}
.x9a{left:469.904987px;}
.xb2{left:479.804987px;}
.x9{left:487.905000px;}
.x51{left:490.424973px;}
.x52{left:500.144987px;}
.x58{left:502.844987px;}
.x4b{left:514.004987px;}
.x2b{left:518.684987px;}
.xc1{left:520.664987px;}
.xb0{left:523.364987px;}
.xa2{left:524.984987px;}
.x7f{left:528.224987px;}
.xc{left:530.024973px;}
.x90{left:531.284987px;}
.x9b{left:532.544987px;}
.xd{left:533.804987px;}
.x7c{left:535.604987px;}
.xe{left:538.484987px;}
.x27{left:543.344973px;}
.x1a{left:544.604973px;}
.xf{left:547.304987px;}
.x1b{left:550.544987px;}
.x4{left:554.145000px;}
.x1c{left:555.224987px;}
.x2c{left:557.204973px;}
.x92{left:559.364973px;}
.x33{left:560.984973px;}
.x2d{left:562.964987px;}
.x46{left:564.404973px;}
.x34{left:567.104987px;}
.x1d{left:568.904987px;}
.x47{left:571.964987px;}
.x3e{left:575.204973px;}
.xab{left:576.824973px;}
.xa0{left:578.984973px;}
.xa6{left:580.244987px;}
.x3f{left:581.504987px;}
.xb7{left:585.104987px;}
.x3a{left:589.604987px;}
.x7a{left:590.684987px;}
.x5b{left:592.484973px;}
.xa1{left:593.744987px;}
.x70{left:595.184973px;}
.x91{left:596.444987px;}
.x77{left:599.684987px;}
.x5c{left:602.024987px;}
.x71{left:604.724987px;}
.x9e{left:606.164987px;}
.x72{left:608.324987px;}
.x5d{left:610.304987px;}
.xa7{left:612.464987px;}
.x4a{left:614.084987px;}
.x80{left:618.044987px;}
.xbc{left:622.004987px;}
.x53{left:623.084987px;}
.x41{left:632.804973px;}
.x35{left:640.724973px;}
.x42{left:643.424987px;}
.x64{left:644.504973px;}
.x36{left:647.384987px;}
.x37{left:654.044987px;}
.x65{left:655.124987px;}
.x98{left:657.509987px;}
.x6b{left:659.849987px;}
.x6e{left:664.529987px;}
.xbd{left:667.229973px;}
.x8d{left:669.929987px;}
.x3d{left:672.989987px;}
.x68{left:674.429987px;}
.xbe{left:679.109987px;}
.xc3{left:681.269987px;}
.xbf{left:686.669987px;}
.x12{left:694.409987px;}
.x5e{left:699.269987px;}
.x3b{left:701.249987px;}
.xa3{left:703.229987px;}
.x74{left:708.629987px;}
.x78{left:714.569987px;}
.x9f{left:719.609987px;}
.x7{left:720.690000px;}
.x75{left:723.569987px;}
.xb3{left:729.149987px;}
.x8e{left:736.349987px;}
.x1f{left:741.389987px;}
.xc4{left:744.629987px;}
.x13{left:751.829987px;}
.x94{left:754.349987px;}
.x6f{left:762.809987px;}
.x4c{left:764.249987px;}
.xa8{left:773.069987px;}
.xb4{left:780.629987px;}
.x24{left:784.229987px;}
.x8{left:786.600000px;}
.xb5{left:796.829987px;}
.x81{left:798.989987px;}
.x8f{left:801.689987px;}
.x69{left:802.769987px;}
.x5f{left:825.629987px;}
.x50{left:828.149987px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:22.262212pt;}
.ls4e{letter-spacing:-15.360000pt;}
.ls1e{letter-spacing:-0.922667pt;}
.ls44{letter-spacing:-0.876996pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.523733pt;}
.lsa{letter-spacing:-0.394133pt;}
.ls59{letter-spacing:-0.348800pt;}
.ls57{letter-spacing:-0.342933pt;}
.ls10{letter-spacing:-0.282133pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.246933pt;}
.ls50{letter-spacing:-0.213867pt;}
.lse{letter-spacing:-0.202384pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.184533pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls55{letter-spacing:-0.121600pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls56{letter-spacing:-0.059733pt;}
.ls1a{letter-spacing:-0.012160pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.030720pt;}
.ls52{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.067461pt;}
.ls14{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.111467pt;}
.ls18{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls42{letter-spacing:0.134922pt;}
.ls15{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.202384pt;}
.ls0{letter-spacing:0.214933pt;}
.ls4d{letter-spacing:0.221333pt;}
.ls2f{letter-spacing:0.223467pt;}
.ls48{letter-spacing:0.226667pt;}
.ls3{letter-spacing:0.227840pt;}
.ls47{letter-spacing:0.233303pt;}
.ls24{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.269845pt;}
.lsb{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.302720pt;}
.lsf{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4f{letter-spacing:0.329600pt;}
.ls27{letter-spacing:0.336533pt;}
.ls1{letter-spacing:0.336640pt;}
.ls1b{letter-spacing:0.337306pt;}
.ls28{letter-spacing:0.354734pt;}
.ls3b{letter-spacing:0.357867pt;}
.ls58{letter-spacing:0.361600pt;}
.ls3a{letter-spacing:0.371037pt;}
.ls2d{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls40{letter-spacing:0.472229pt;}
.ls19{letter-spacing:0.480000pt;}
.ls54{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls3c{letter-spacing:0.674612pt;}
.ls43{letter-spacing:0.768000pt;}
.ls3e{letter-spacing:0.832000pt;}
.ls30{letter-spacing:0.876996pt;}
.ls53{letter-spacing:1.472000pt;}
.ls46{letter-spacing:1.578667pt;}
.ls39{letter-spacing:2.112000pt;}
.ls23{letter-spacing:3.392000pt;}
.ls25{letter-spacing:4.650667pt;}
.ls3d{letter-spacing:4.672000pt;}
.ls41{letter-spacing:5.952000pt;}
.ls20{letter-spacing:7.232000pt;}
.ls21{letter-spacing:7.623121pt;}
.ls22{letter-spacing:7.872000pt;}
.ls36{letter-spacing:8.512000pt;}
.ls4b{letter-spacing:8.972346pt;}
.ls13{letter-spacing:9.152000pt;}
.ls17{letter-spacing:10.432000pt;}
.ls3f{letter-spacing:10.996184pt;}
.ls35{letter-spacing:11.712000pt;}
.ls34{letter-spacing:12.352000pt;}
.ls2c{letter-spacing:14.272000pt;}
.ls37{letter-spacing:19.392000pt;}
.ls32{letter-spacing:19.552000pt;}
.ls31{letter-spacing:20.440758pt;}
.ls4{letter-spacing:21.347840pt;}
.ls49{letter-spacing:22.592000pt;}
.ls33{letter-spacing:24.512000pt;}
.ls45{letter-spacing:27.712000pt;}
.ls51{letter-spacing:34.752000pt;}
.ls38{letter-spacing:44.330667pt;}
.ls4a{letter-spacing:398.304000pt;}
.ws1{word-spacing:-19.368960pt;}
.ws3{word-spacing:-17.728000pt;}
.ws20{word-spacing:-17.674847pt;}
.ws2{word-spacing:-17.664000pt;}
.ws1f{word-spacing:-17.607386pt;}
.ws24{word-spacing:-17.472463pt;}
.ws15{word-spacing:-17.405002pt;}
.wsc{word-spacing:-17.337541pt;}
.ws25{word-spacing:-17.216000pt;}
.wsb{word-spacing:-17.135157pt;}
.ws11{word-spacing:-16.934400pt;}
.ws23{word-spacing:-16.896000pt;}
.ws1d{word-spacing:-16.832000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws21{word-spacing:-16.704000pt;}
.ws16{word-spacing:-16.576000pt;}
.ws1b{word-spacing:-16.512000pt;}
.ws26{word-spacing:-16.460545pt;}
.ws4{word-spacing:-16.448000pt;}
.ws1a{word-spacing:-16.384000pt;}
.ws17{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws14{word-spacing:-16.192000pt;}
.ws27{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.421227pt;}
.ws6{word-spacing:-15.132160pt;}
.ws7{word-spacing:-14.738027pt;}
.ws22{word-spacing:-11.378027pt;}
.wse{word-spacing:-11.324160pt;}
.ws1e{word-spacing:-11.243627pt;}
.wsd{word-spacing:-11.020160pt;}
.ws19{word-spacing:-10.835627pt;}
.ws1c{word-spacing:-10.773227pt;}
.wsf{word-spacing:-10.738027pt;}
.ws10{word-spacing:-10.496427pt;}
.ws18{word-spacing:-10.097493pt;}
.ws5{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws13{word-spacing:-0.126720pt;}
.ws12{word-spacing:0.000000pt;}
._2f{margin-left:-71.712000pt;}
._34{margin-left:-68.928000pt;}
._35{margin-left:-65.984000pt;}
._31{margin-left:-62.080000pt;}
._33{margin-left:-58.368000pt;}
._30{margin-left:-48.448000pt;}
._32{margin-left:-43.328000pt;}
._12{margin-left:-7.363778pt;}
._2d{margin-left:-6.312950pt;}
._9{margin-left:-3.764053pt;}
._a{margin-left:-2.253227pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.137920pt;}
._3{width:2.067627pt;}
._14{width:3.264000pt;}
._c{width:4.943360pt;}
._b{width:5.975040pt;}
._15{width:7.616000pt;}
._18{width:9.309652pt;}
._6{width:10.657280pt;}
._7{width:11.568640pt;}
._1d{width:12.794027pt;}
._17{width:14.528000pt;}
._16{width:15.488000pt;}
._8{width:16.817920pt;}
._d{width:18.045440pt;}
._13{width:19.123627pt;}
._4{width:20.825600pt;}
._5{width:21.926827pt;}
._20{width:23.449173pt;}
._2a{width:24.512000pt;}
._26{width:25.834667pt;}
._27{width:26.976000pt;}
._25{width:28.399787pt;}
._1c{width:29.376000pt;}
._1b{width:30.336000pt;}
._1f{width:31.552000pt;}
._1e{width:32.714667pt;}
._2c{width:33.608533pt;}
._21{width:34.880000pt;}
._22{width:36.125867pt;}
._2b{width:37.205760pt;}
._28{width:38.095787pt;}
._e{width:39.168000pt;}
._f{width:40.117333pt;}
._24{width:42.298453pt;}
._23{width:43.370667pt;}
._29{width:46.186667pt;}
._10{width:50.794667pt;}
._11{width:51.968000pt;}
._19{width:58.282667pt;}
._1a{width:59.210667pt;}
._2e{width:421.738667pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fsa{font-size:39.127524pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:45.199037pt;}
.fsd{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs9{font-size:67.461249pt;}
.fsb{font-size:69.120000pt;}
.fse{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y43{bottom:5.920000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y42{bottom:27.066667pt;}
.y44{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y41{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y3f{bottom:104.352000pt;}
.y96{bottom:104.512000pt;}
.y3e{bottom:108.352000pt;}
.y5{bottom:116.640000pt;}
.y7f{bottom:117.312000pt;}
.y3d{bottom:118.592000pt;}
.y95{bottom:119.712000pt;}
.y7e{bottom:121.312000pt;}
.y94{bottom:123.712000pt;}
.y7d{bottom:130.432000pt;}
.y8b{bottom:131.552000pt;}
.y93{bottom:132.672000pt;}
.y7c{bottom:134.426667pt;}
.y92{bottom:136.666667pt;}
.ya5{bottom:138.106667pt;}
.y7b{bottom:143.386667pt;}
.y91{bottom:146.906667pt;}
.y7a{bottom:147.386667pt;}
.y8a{bottom:153.626667pt;}
.y79{bottom:156.346667pt;}
.y8f{bottom:157.626667pt;}
.y78{bottom:160.346667pt;}
.y77{bottom:169.306667pt;}
.y86{bottom:170.586667pt;}
.y89{bottom:173.146667pt;}
.y76{bottom:173.306667pt;}
.y3c{bottom:174.586667pt;}
.ya4{bottom:177.146667pt;}
.y75{bottom:183.546667pt;}
.y85{bottom:192.666667pt;}
.y3b{bottom:194.106667pt;}
.ya3{bottom:199.226667pt;}
.y74{bottom:212.186667pt;}
.y3a{bottom:213.626667pt;}
.ya2{bottom:218.746667pt;}
.y73{bottom:231.706667pt;}
.y39{bottom:233.146667pt;}
.ya1{bottom:238.266667pt;}
.y72{bottom:251.226667pt;}
.y38{bottom:252.666667pt;}
.y8e{bottom:256.506667pt;}
.ya0{bottom:260.346667pt;}
.y71{bottom:270.746667pt;}
.y37{bottom:272.026667pt;}
.y9f{bottom:279.866667pt;}
.y70{bottom:290.106667pt;}
.y36{bottom:291.546667pt;}
.y9e{bottom:301.986667pt;}
.y6e{bottom:309.666667pt;}
.y35{bottom:311.106667pt;}
.y6f{bottom:314.946667pt;}
.y9d{bottom:321.506667pt;}
.y6c{bottom:329.186667pt;}
.y34{bottom:330.626667pt;}
.y6d{bottom:334.466667pt;}
.y9c{bottom:343.586667pt;}
.y6b{bottom:348.706667pt;}
.y33{bottom:350.146667pt;}
.y9b{bottom:363.106667pt;}
.y6a{bottom:368.226667pt;}
.y32{bottom:369.666667pt;}
.y9a{bottom:385.186667pt;}
.y69{bottom:387.746667pt;}
.y31{bottom:389.186667pt;}
.y90{bottom:393.026667pt;}
.y99{bottom:404.706667pt;}
.y68{bottom:407.266667pt;}
.y30{bottom:408.706667pt;}
.y67{bottom:426.786667pt;}
.y2f{bottom:428.226667pt;}
.y88{bottom:432.066667pt;}
.y66{bottom:446.306667pt;}
.y2d{bottom:447.746667pt;}
.y2e{bottom:453.026667pt;}
.y65{bottom:465.826667pt;}
.y2c{bottom:467.106667pt;}
.y84{bottom:471.106667pt;}
.y64{bottom:485.186667pt;}
.y2b{bottom:486.626667pt;}
.y63{bottom:504.706667pt;}
.y2a{bottom:506.146667pt;}
.y62{bottom:524.226667pt;}
.y29{bottom:525.666667pt;}
.y61{bottom:543.773333pt;}
.y28{bottom:545.213333pt;}
.y5f{bottom:563.293333pt;}
.y27{bottom:564.733333pt;}
.y60{bottom:568.573333pt;}
.y5e{bottom:582.813333pt;}
.y26{bottom:583.933333pt;}
.y98{bottom:588.093333pt;}
.y5d{bottom:602.333333pt;}
.y25{bottom:602.973333pt;}
.y8d{bottom:607.613333pt;}
.y24{bottom:613.213333pt;}
.y5c{bottom:621.853333pt;}
.y23{bottom:631.133333pt;}
.y5b{bottom:641.373333pt;}
.y22{bottom:649.053333pt;}
.y5a{bottom:660.893333pt;}
.y21{bottom:666.813333pt;}
.y59{bottom:680.253333pt;}
.y20{bottom:684.733333pt;}
.y97{bottom:685.533333pt;}
.y58{bottom:699.773333pt;}
.y1f{bottom:702.653333pt;}
.y57{bottom:719.293333pt;}
.y1e{bottom:720.573333pt;}
.y83{bottom:724.573333pt;}
.y1d{bottom:738.333333pt;}
.y56{bottom:738.813333pt;}
.y1c{bottom:756.253333pt;}
.y54{bottom:758.333333pt;}
.y55{bottom:763.613333pt;}
.y1b{bottom:774.213333pt;}
.y53{bottom:777.893333pt;}
.y82{bottom:783.173333pt;}
.y1a{bottom:792.133333pt;}
.y52{bottom:797.413333pt;}
.y19{bottom:809.893333pt;}
.y51{bottom:816.933333pt;}
.y18{bottom:825.253333pt;}
.y17{bottom:833.093333pt;}
.y50{bottom:836.453333pt;}
.y16{bottom:850.053333pt;}
.y4f{bottom:855.973333pt;}
.y15{bottom:861.573333pt;}
.y14{bottom:872.133333pt;}
.y4e{bottom:875.333333pt;}
.y13{bottom:891.653333pt;}
.y4d{bottom:894.853333pt;}
.y81{bottom:900.133333pt;}
.y12{bottom:911.173333pt;}
.y4c{bottom:914.373333pt;}
.y4b{bottom:933.893333pt;}
.y8c{bottom:939.173333pt;}
.y11{bottom:949.413333pt;}
.y49{bottom:953.413333pt;}
.y4a{bottom:958.693333pt;}
.y48{bottom:972.933333pt;}
.y87{bottom:978.213333pt;}
.y40{bottom:990.853333pt;}
.y47{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y46{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y80{bottom:1017.280000pt;}
.y45{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h11{height:14.576000pt;}
.h6{height:15.360000pt;}
.hf{height:24.487680pt;}
.h13{height:26.315520pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.h19{height:36.340480pt;}
.h15{height:38.305846pt;}
.h16{height:41.979520pt;}
.h1a{height:44.249857pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h1b{height:54.598989pt;}
.h18{height:56.332800pt;}
.h12{height:57.643520pt;}
.h10{height:58.304000pt;}
.h2{height:58.563750pt;}
.he{height:62.656000pt;}
.h17{height:64.992000pt;}
.h14{height:66.044563pt;}
.h1c{height:73.307520pt;}
.h1d{height:76.964840pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w4{width:282.146667pt;}
.w7{width:389.506667pt;}
.w5{width:708.800000pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x17{left:15.680000pt;}
.x18{left:24.960000pt;}
.x6{left:62.880000pt;}
.x1{left:71.999988pt;}
.x15{left:74.399988pt;}
.x30{left:75.839988pt;}
.x4f{left:76.799988pt;}
.x31{left:78.559988pt;}
.xae{left:80.351988pt;}
.x32{left:81.311988pt;}
.xc7{left:87.231988pt;}
.x5{left:93.480000pt;}
.x82{left:100.191988pt;}
.x25{left:112.351988pt;}
.xc5{left:113.311988pt;}
.xb{left:119.231988pt;}
.x6d{left:123.391988pt;}
.x76{left:125.311988pt;}
.x6c{left:128.511988pt;}
.x43{left:129.471988pt;}
.x19{left:130.560000pt;}
.xc6{left:134.906655pt;}
.xa4{left:136.346655pt;}
.xc2{left:139.546655pt;}
.x95{left:141.306655pt;}
.x4d{left:152.506655pt;}
.x8b{left:156.346655pt;}
.x73{left:157.626655pt;}
.xa{left:158.586655pt;}
.x87{left:164.346655pt;}
.x54{left:167.226655pt;}
.x2e{left:170.746643pt;}
.x2f{left:176.346655pt;}
.x85{left:179.386655pt;}
.xac{left:183.386655pt;}
.x66{left:184.346655pt;}
.x9c{left:192.346655pt;}
.x89{left:195.226655pt;}
.x1e{left:198.746655pt;}
.x26{left:200.026655pt;}
.x88{left:202.426655pt;}
.x4e{left:208.346655pt;}
.xa5{left:212.986655pt;}
.x40{left:221.466655pt;}
.x8c{left:223.706655pt;}
.x83{left:229.466655pt;}
.x21{left:233.306643pt;}
.xb1{left:234.586655pt;}
.x22{left:238.426655pt;}
.x38{left:240.346655pt;}
.x23{left:244.346655pt;}
.x7d{left:245.466655pt;}
.x16{left:253.986667pt;}
.xc0{left:261.826655pt;}
.x97{left:262.786655pt;}
.x14{left:264.066655pt;}
.x84{left:265.826655pt;}
.x10{left:268.066655pt;}
.x8a{left:271.906655pt;}
.xaa{left:275.426655pt;}
.xb8{left:278.306655pt;}
.x55{left:279.586655pt;}
.x96{left:280.706655pt;}
.x67{left:288.226655pt;}
.x56{left:290.946655pt;}
.xa9{left:299.266655pt;}
.xb6{left:301.986655pt;}
.x28{left:304.706655pt;}
.x3c{left:307.426655pt;}
.xb9{left:310.786655pt;}
.x60{left:313.186655pt;}
.x57{left:315.266655pt;}
.x20{left:317.826655pt;}
.x99{left:321.986655pt;}
.x62{left:323.746655pt;}
.x59{left:328.386655pt;}
.x86{left:334.466655pt;}
.xba{left:343.266655pt;}
.x44{left:344.866655pt;}
.x9d{left:348.386655pt;}
.x93{left:350.466655pt;}
.x29{left:361.026655pt;}
.x11{left:369.666655pt;}
.x48{left:374.786655pt;}
.x7e{left:377.026655pt;}
.x79{left:378.626655pt;}
.x63{left:381.186655pt;}
.x39{left:384.866655pt;}
.x5a{left:387.426655pt;}
.x2a{left:391.586655pt;}
.xbb{left:397.026655pt;}
.x7b{left:401.186655pt;}
.x45{left:406.146655pt;}
.xaf{left:407.906655pt;}
.x49{left:409.346655pt;}
.x61{left:411.106655pt;}
.xad{left:412.226655pt;}
.x6a{left:415.133322pt;}
.x9a{left:417.693322pt;}
.xb2{left:426.493322pt;}
.x9{left:433.693333pt;}
.x51{left:435.933310pt;}
.x52{left:444.573322pt;}
.x58{left:446.973322pt;}
.x4b{left:456.893322pt;}
.x2b{left:461.053322pt;}
.xc1{left:462.813322pt;}
.xb0{left:465.213322pt;}
.xa2{left:466.653322pt;}
.x7f{left:469.533322pt;}
.xc{left:471.133310pt;}
.x90{left:472.253322pt;}
.x9b{left:473.373322pt;}
.xd{left:474.493322pt;}
.x7c{left:476.093322pt;}
.xe{left:478.653322pt;}
.x27{left:482.973310pt;}
.x1a{left:484.093310pt;}
.xf{left:486.493322pt;}
.x1b{left:489.373322pt;}
.x4{left:492.573333pt;}
.x1c{left:493.533322pt;}
.x2c{left:495.293310pt;}
.x92{left:497.213310pt;}
.x33{left:498.653310pt;}
.x2d{left:500.413322pt;}
.x46{left:501.693310pt;}
.x34{left:504.093322pt;}
.x1d{left:505.693322pt;}
.x47{left:508.413322pt;}
.x3e{left:511.293310pt;}
.xab{left:512.733310pt;}
.xa0{left:514.653310pt;}
.xa6{left:515.773322pt;}
.x3f{left:516.893322pt;}
.xb7{left:520.093322pt;}
.x3a{left:524.093322pt;}
.x7a{left:525.053322pt;}
.x5b{left:526.653310pt;}
.xa1{left:527.773322pt;}
.x70{left:529.053310pt;}
.x91{left:530.173322pt;}
.x77{left:533.053322pt;}
.x5c{left:535.133322pt;}
.x71{left:537.533322pt;}
.x9e{left:538.813322pt;}
.x72{left:540.733322pt;}
.x5d{left:542.493322pt;}
.xa7{left:544.413322pt;}
.x4a{left:545.853322pt;}
.x80{left:549.373322pt;}
.xbc{left:552.893322pt;}
.x53{left:553.853322pt;}
.x41{left:562.493310pt;}
.x35{left:569.533310pt;}
.x42{left:571.933322pt;}
.x64{left:572.893310pt;}
.x36{left:575.453322pt;}
.x37{left:581.373322pt;}
.x65{left:582.333322pt;}
.x98{left:584.453322pt;}
.x6b{left:586.533322pt;}
.x6e{left:590.693322pt;}
.xbd{left:593.093310pt;}
.x8d{left:595.493322pt;}
.x3d{left:598.213322pt;}
.x68{left:599.493322pt;}
.xbe{left:603.653322pt;}
.xc3{left:605.573322pt;}
.xbf{left:610.373322pt;}
.x12{left:617.253322pt;}
.x5e{left:621.573322pt;}
.x3b{left:623.333322pt;}
.xa3{left:625.093322pt;}
.x74{left:629.893322pt;}
.x78{left:635.173322pt;}
.x9f{left:639.653322pt;}
.x7{left:640.613333pt;}
.x75{left:643.173322pt;}
.xb3{left:648.133322pt;}
.x8e{left:654.533322pt;}
.x1f{left:659.013322pt;}
.xc4{left:661.893322pt;}
.x13{left:668.293322pt;}
.x94{left:670.533322pt;}
.x6f{left:678.053322pt;}
.x4c{left:679.333322pt;}
.xa8{left:687.173322pt;}
.xb4{left:693.893322pt;}
.x24{left:697.093322pt;}
.x8{left:699.200000pt;}
.xb5{left:708.293322pt;}
.x81{left:710.213322pt;}
.x8f{left:712.613322pt;}
.x69{left:713.573322pt;}
.x5f{left:733.893322pt;}
.x50{left:736.133322pt;}
.x2{left:737.120000pt;}
}




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