
    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_d5faf3a4e65b75c2498e15aa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_a302177196d6e3dbfcdb6636.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_4bd7f09174e47dd5f8b4ddd7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_daf1e37cc560dccc427cb3eb.woff')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_9c07004efe68f45a84a4a630.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c3c935c06b76b9f1f38bcd9e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_9421f104b48afbc958149241.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bb92adf9be14dbb3c3f84c86.woff')format("woff");}.ff8{font-family:ff8;line-height:1.201172;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_21634cccfabb503a765df83b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_dd7568f4d23499866de39e61.woff')format("woff");}.ffa{font-family:ffa;line-height:0.764160;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_d08c16de3fa10f4c064185db.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_1e54b8f65312157fd6fe330b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dfbd2a6f39f3c87ca95cab01.woff')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249896,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249896,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249896,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.205510,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.205510,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.205510,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,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);}
.m7{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-95.184000px;}
.v7{vertical-align:-65.664000px;}
.vf{vertical-align:-43.200000px;}
.v2{vertical-align:-32.400000px;}
.v6{vertical-align:-29.520000px;}
.v4{vertical-align:-26.640000px;}
.va{vertical-align:-20.160000px;}
.v10{vertical-align:-13.246490px;}
.v3{vertical-align:-11.640000px;}
.vb{vertical-align:-5.580000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:3.180000px;}
.vc{vertical-align:5.040000px;}
.v9{vertical-align:6.300000px;}
.v5{vertical-align:26.640000px;}
.v1{vertical-align:32.400000px;}
.ve{vertical-align:43.200000px;}
.ls24{letter-spacing:-14.280000px;}
.ls1{letter-spacing:-10.680000px;}
.lsc{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.259800px;}
.ls23{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.139200px;}
.ls3{letter-spacing:-0.132600px;}
.ls28{letter-spacing:-0.122400px;}
.ls4{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.055440px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.021745px;}
.ls19{letter-spacing:0.023910px;}
.ls18{letter-spacing:0.050244px;}
.ls20{letter-spacing:0.082323px;}
.ls17{letter-spacing:0.086663px;}
.ls22{letter-spacing:0.103200px;}
.ls21{letter-spacing:0.105523px;}
.ls2{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.113764px;}
.ls11{letter-spacing:0.122400px;}
.ls1e{letter-spacing:0.124800px;}
.ls27{letter-spacing:0.184800px;}
.lsa{letter-spacing:0.198048px;}
.ls15{letter-spacing:0.214800px;}
.lsd{letter-spacing:0.228240px;}
.ls1f{letter-spacing:0.266400px;}
.ls1c{letter-spacing:0.288000px;}
.lse{letter-spacing:0.301680px;}
.ls1d{letter-spacing:0.326880px;}
.ls14{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.948240px;}
.ls8{letter-spacing:22.050816px;}
.ls7{letter-spacing:22.164000px;}
.ls26{letter-spacing:111.546720px;}
.ls5{letter-spacing:122.184000px;}
.ls13{letter-spacing:155.246880px;}
.ls12{letter-spacing:155.546880px;}
.ls16{letter-spacing:319.837051px;}
.ls1a{letter-spacing:968.712000px;}
.ls1b{letter-spacing:1277.100000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(46,46,46),0 0.015em rgb(46,46,46),0.015em 0 rgb(46,46,46),0 -0.015em  rgb(46,46,46);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(46,46,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-341.252684px;}
.ws11{word-spacing:-108.144000px;}
.wse{word-spacing:-108.000000px;}
.wsb{word-spacing:-95.760000px;}
.ws1{word-spacing:-63.072000px;}
.ws26{word-spacing:-60.048000px;}
.wsa{word-spacing:-53.482752px;}
.ws4{word-spacing:-53.442720px;}
.ws1f{word-spacing:-46.903680px;}
.ws14{word-spacing:-46.759680px;}
.ws21{word-spacing:-46.740480px;}
.ws5{word-spacing:-46.677312px;}
.ws3{word-spacing:-46.637280px;}
.ws13{word-spacing:-43.295520px;}
.ws1b{word-spacing:-40.320000px;}
.ws9{word-spacing:-40.032000px;}
.ws27{word-spacing:-33.611520px;}
.ws28{word-spacing:-33.304320px;}
.ws10{word-spacing:-33.166920px;}
.ws1d{word-spacing:-30.064032px;}
.ws7{word-spacing:-30.024000px;}
.ws18{word-spacing:-27.587003px;}
.ws22{word-spacing:-26.661312px;}
.ws19{word-spacing:-26.621280px;}
.wsd{word-spacing:-24.408000px;}
.ws8{word-spacing:-23.976000px;}
.ws1c{word-spacing:-23.418720px;}
.wsf{word-spacing:-22.217760px;}
.ws15{word-spacing:-21.856560px;}
.ws6{word-spacing:-21.060000px;}
.ws12{word-spacing:-20.056032px;}
.ws0{word-spacing:-20.016000px;}
.ws1e{word-spacing:-19.163040px;}
.ws17{word-spacing:-18.757017px;}
.ws25{word-spacing:-13.734918px;}
.ws1a{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:123.780750px;}
.ws24{word-spacing:133.555518px;}
.ws23{word-spacing:149.769465px;}
.wsc{word-spacing:1180.620000px;}
._20{margin-left:-2739.578016px;}
._1f{margin-left:-1526.218992px;}
._1e{margin-left:-319.837051px;}
._3{margin-left:-25.164432px;}
._2{margin-left:-24.048000px;}
._10{margin-left:-20.970000px;}
._5{margin-left:-19.225008px;}
._12{margin-left:-18.144000px;}
._13{margin-left:-16.992000px;}
._d{margin-left:-15.552000px;}
._c{margin-left:-14.356224px;}
._0{margin-left:-13.274496px;}
._b{margin-left:-11.427168px;}
._6{margin-left:-9.936000px;}
._8{margin-left:-8.733504px;}
._7{margin-left:-7.509312px;}
._a{margin-left:-5.400000px;}
._11{margin-left:-3.541248px;}
._4{margin-left:-2.498112px;}
._1{margin-left:-1.346688px;}
._9{width:1.610112px;}
._e{width:3.154704px;}
._1a{width:4.986192px;}
._f{width:9.593664px;}
._21{width:13.578432px;}
._19{width:27.964800px;}
._15{width:52.259040px;}
._16{width:58.196160px;}
._14{width:59.249520px;}
._22{width:180.946675px;}
._1b{width:218.449440px;}
._1d{width:693.568368px;}
._1c{width:990.487920px;}
._17{width:1218.456000px;}
._18{width:1858.773168px;}
.fcf{color:rgb(67,77,214);}
.fce{color:rgb(255,0,0);}
.fc0{color:rgb(26,50,96);}
.fc2{color:rgb(255,255,255);}
.fc5{color:rgb(61,61,61);}
.fca{color:rgb(35,72,92);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(69,144,184);}
.fcc{color:rgb(46,46,46);}
.fc6{color:rgb(19,38,72);}
.fc7{color:rgb(0,112,192);}
.fcd{color:rgb(0,32,96);}
.fc3{color:rgb(72,118,205);}
.fc8{color:transparent;}
.fc9{color:rgb(52,108,138);}
.fcb{color:rgb(33,74,48);}
.fs21{font-size:33.237839px;}
.fs14{font-size:36.719779px;}
.fs13{font-size:39.281385px;}
.fs1d{font-size:48.731368px;}
.fs25{font-size:49.406180px;}
.fs1e{font-size:52.323636px;}
.fs16{font-size:56.160000px;}
.fs23{font-size:56.409869px;}
.fs15{font-size:57.344126px;}
.fs22{font-size:66.240000px;}
.fs1f{font-size:67.361541px;}
.fs20{font-size:67.362519px;}
.fs1a{font-size:67.471283px;}
.fs18{font-size:71.745853px;}
.fs3{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fs26{font-size:72.635321px;}
.fs24{font-size:72.664455px;}
.fs17{font-size:77.034651px;}
.fs11{font-size:79.920000px;}
.fs8{font-size:84.240000px;}
.fs1c{font-size:84.384000px;}
.fs9{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs1b{font-size:99.192512px;}
.fs19{font-size:99.233822px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs28{font-size:110.160000px;}
.fs10{font-size:113.760000px;}
.fs5{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fsf{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fsc{font-size:156.240000px;}
.fsb{font-size:156.384000px;}
.fs6{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs27{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:0.000183px;}
.y34{bottom:7.200000px;}
.y7f{bottom:7.760637px;}
.yb0{bottom:9.335161px;}
.y31{bottom:10.548000px;}
.y83{bottom:17.100000px;}
.y86{bottom:17.964000px;}
.y6a{bottom:18.288000px;}
.y63{bottom:18.962588px;}
.y9a{bottom:20.318782px;}
.y27{bottom:22.572000px;}
.y89{bottom:27.648000px;}
.y33{bottom:28.800000px;}
.y64{bottom:30.271930px;}
.ya6{bottom:31.122530px;}
.y30{bottom:32.148000px;}
.y57{bottom:35.028000px;}
.y87{bottom:36.036000px;}
.y5c{bottom:39.852000px;}
.y76{bottom:42.974250px;}
.y8d{bottom:44.288757px;}
.ya7{bottom:44.984964px;}
.y2c{bottom:48.672000px;}
.y32{bottom:50.400000px;}
.ya3{bottom:52.812000px;}
.y7e{bottom:55.700414px;}
.y8e{bottom:56.414536px;}
.y77{bottom:61.902357px;}
.y4c{bottom:62.568000px;}
.y26{bottom:69.408000px;}
.ya8{bottom:75.548882px;}
.y5b{bottom:75.888000px;}
.y7d{bottom:76.779862px;}
.y85{bottom:79.848000px;}
.y61{bottom:80.460000px;}
.y8f{bottom:82.856065px;}
.y2b{bottom:84.708000px;}
.y65{bottom:85.736408px;}
.yaf{bottom:86.382659px;}
.y9{bottom:88.884000px;}
.y69{bottom:91.244716px;}
.yb9{bottom:95.328000px;}
.ya2{bottom:96.012000px;}
.y7c{bottom:98.765562px;}
.y54{bottom:99.072000px;}
.y70{bottom:104.220000px;}
.y14{bottom:104.580000px;}
.y99{bottom:105.705326px;}
.y4b{bottom:105.768000px;}
.ya9{bottom:106.114817px;}
.y90{bottom:109.297594px;}
.y5a{bottom:111.888000px;}
.y60{bottom:112.860000px;}
.ybd{bottom:116.172000px;}
.y25{bottom:116.208000px;}
.y2a{bottom:120.708000px;}
.y8{bottom:127.620000px;}
.yb8{bottom:131.328000px;}
.y53{bottom:131.652000px;}
.y78{bottom:134.885017px;}
.y91{bottom:135.795252px;}
.yaa{bottom:136.678736px;}
.ya1{bottom:139.212000px;}
.y56{bottom:140.796000px;}
.y66{bottom:141.222233px;}
.y59{bottom:147.888000px;}
.y4a{bottom:149.004000px;}
.y6f{bottom:151.020000px;}
.y75{bottom:151.448906px;}
.y84{bottom:153.930000px;}
.y13{bottom:155.010000px;}
.y29{bottom:156.705000px;}
.y5d{bottom:161.790000px;}
.y92{bottom:162.236781px;}
.y24{bottom:163.005000px;}
.y52{bottom:164.055000px;}
.yab{bottom:167.306192px;}
.yb7{bottom:167.370000px;}
.y7{bottom:168.120000px;}
.y55{bottom:176.835000px;}
.ya0{bottom:182.445000px;}
.y58{bottom:183.885000px;}
.y93{bottom:188.678309px;}
.y49{bottom:192.210000px;}
.y28{bottom:192.705000px;}
.y67{bottom:196.686711px;}
.yac{bottom:197.872128px;}
.yb6{bottom:203.370000px;}
.y68{bottom:206.272243px;}
.y79{bottom:207.870432px;}
.y23{bottom:209.850000px;}
.y94{bottom:215.119838px;}
.y6{bottom:217.950000px;}
.y16{bottom:224.895000px;}
.y9f{bottom:225.645000px;}
.y6b{bottom:226.515000px;}
.yad{bottom:228.436046px;}
.y51{bottom:229.395000px;}
.y95{bottom:241.561367px;}
.y12{bottom:247.605000px;}
.y17{bottom:247.710000px;}
.yb5{bottom:255.570000px;}
.y5{bottom:256.830000px;}
.y62{bottom:258.840000px;}
.yae{bottom:259.002990px;}
.y9d{bottom:264.803528px;}
.y98{bottom:265.196425px;}
.y8c{bottom:274.214775px;}
.y9c{bottom:279.736701px;}
.y97{bottom:280.129598px;}
.y7a{bottom:280.935730px;}
.y15{bottom:282.495000px;}
.ya4{bottom:282.930000px;}
.yb4{bottom:291.570000px;}
.y96{bottom:295.061835px;}
.y39{bottom:297.210000px;}
.y50{bottom:297.285000px;}
.y9b{bottom:297.475398px;}
.y5f{bottom:298.950000px;}
.y20{bottom:305.970000px;}
.y47{bottom:306.720000px;}
.y4{bottom:315.975000px;}
.y72{bottom:325.695000px;}
.y5e{bottom:327.750000px;}
.y4f{bottom:329.505000px;}
.y38{bottom:331.410000px;}
.y71{bottom:331.710000px;}
.y36{bottom:332.565000px;}
.y46{bottom:335.520000px;}
.y1f{bottom:338.370000px;}
.y88{bottom:341.925000px;}
.yb3{bottom:343.800000px;}
.y3b{bottom:345.270000px;}
.y8a{bottom:348.915000px;}
.y7b{bottom:353.922522px;}
.y4e{bottom:362.085000px;}
.y45{bottom:364.140000px;}
.y37{bottom:365.610000px;}
.yc0{bottom:369.105000px;}
.y1e{bottom:370.770000px;}
.y3{bottom:373.575000px;}
.y11{bottom:373.710000px;}
.y35{bottom:375.765000px;}
.yb2{bottom:379.800000px;}
.y3a{bottom:388.515000px;}
.y44{bottom:393.120000px;}
.y4d{bottom:394.485000px;}
.ybf{bottom:401.505000px;}
.y1d{bottom:403.200000px;}
.ybc{bottom:411.690000px;}
.y43{bottom:421.920000px;}
.y10{bottom:424.110000px;}
.y2{bottom:431.175000px;}
.y82{bottom:432.570000px;}
.ybe{bottom:433.905000px;}
.y74{bottom:439.485000px;}
.y42{bottom:450.750000px;}
.y22{bottom:464.145000px;}
.y73{bottom:464.685000px;}
.ybb{bottom:469.290000px;}
.y1c{bottom:470.595000px;}
.yf{bottom:474.555000px;}
.y81{bottom:475.770000px;}
.y1{bottom:488.805000px;}
.y9e{bottom:488.955000px;}
.y21{bottom:492.945000px;}
.y1b{bottom:495.795000px;}
.y80{bottom:518.970000px;}
.ye{bottom:524.955000px;}
.y48{bottom:525.630000px;}
.yba{bottom:526.935000px;}
.yb1{bottom:533.550000px;}
.y1a{bottom:568.650000px;}
.y3f{bottom:568.695000px;}
.y6e{bottom:570.165000px;}
.y2f{bottom:592.455000px;}
.y19{bottom:619.050000px;}
.y3e{bottom:619.095000px;}
.y6d{bottom:620.610000px;}
.y8b{bottom:622.515000px;}
.yd{bottom:622.770000px;}
.yc{bottom:625.530000px;}
.y2e{bottom:635.655000px;}
.y41{bottom:642.135000px;}
.yb{bottom:657.930000px;}
.y2d{bottom:678.885000px;}
.y40{bottom:685.365000px;}
.y3d{bottom:689.010000px;}
.ya{bottom:691.050000px;}
.y18{bottom:711.645000px;}
.y6c{bottom:713.310000px;}
.y3c{bottom:746.610000px;}
.h19{height:26.840580px;}
.h18{height:28.713005px;}
.h29{height:35.620536px;}
.h2a{height:38.246330px;}
.h30{height:41.233190px;}
.h1a{height:41.916092px;}
.h2b{height:49.238392px;}
.h2c{height:49.239107px;}
.h20{height:52.443136px;}
.h32{height:53.093298px;}
.h31{height:53.114595px;}
.h4{height:54.000000px;}
.h1f{height:56.309020px;}
.ha{height:58.490859px;}
.h1d{height:63.180000px;}
.h25{height:63.288000px;}
.h2d{height:65.884219px;}
.hb{height:67.565039px;}
.hc{height:67.666641px;}
.h13{height:71.820000px;}
.h22{height:72.505464px;}
.h21{height:72.535660px;}
.h34{height:78.943359px;}
.h24{height:80.280000px;}
.h7{height:81.000000px;}
.h5{height:81.108000px;}
.h27{height:83.787539px;}
.h12{height:85.320000px;}
.h3{height:86.400000px;}
.h26{height:87.192000px;}
.h1b{height:90.087539px;}
.h6{height:90.180000px;}
.hf{height:90.288000px;}
.h1c{height:103.091133px;}
.h11{height:108.000000px;}
.h10{height:108.108000px;}
.h15{height:110.250000px;}
.h16{height:110.360250px;}
.h14{height:110.583984px;}
.h23{height:115.020000px;}
.h2e{height:115.128000px;}
.he{height:117.180000px;}
.hd{height:117.288000px;}
.h8{height:125.820000px;}
.h9{height:125.928000px;}
.h2{height:144.180000px;}
.h1{height:144.288000px;}
.h33{height:162.000000px;}
.h17{height:211.715393px;}
.h2f{height:297.915000px;}
.h28{height:339.225225px;}
.h1e{height:406.897690px;}
.h0{height:810.000000px;}
.w4{width:340.698371px;}
.w2{width:364.381035px;}
.w5{width:389.433897px;}
.w3{width:479.160000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x23{left:5.975979px;}
.x1f{left:10.799979px;}
.x2c{left:14.363979px;}
.x38{left:17.711979px;}
.x41{left:22.723679px;}
.x32{left:29.663979px;}
.x18{left:31.427979px;}
.x5c{left:33.176561px;}
.x19{left:36.647979px;}
.x64{left:39.051328px;}
.x3f{left:41.795979px;}
.x36{left:45.251979px;}
.x63{left:46.923176px;}
.x40{left:48.739519px;}
.x1b{left:49.967979px;}
.x5a{left:53.219082px;}
.x2d{left:54.863979px;}
.x26{left:58.463979px;}
.x60{left:62.999979px;}
.x37{left:64.331979px;}
.x39{left:75.851979px;}
.x1{left:79.451979px;}
.x59{left:84.262757px;}
.x62{left:92.394469px;}
.x5e{left:97.061838px;}
.x1a{left:103.067979px;}
.x65{left:104.903979px;}
.x28{left:109.079979px;}
.x45{left:113.327979px;}
.xf{left:117.719979px;}
.x5d{left:126.084954px;}
.xe{left:131.399979px;}
.x4c{left:135.023904px;}
.x27{left:136.223979px;}
.x2f{left:139.427979px;}
.x47{left:141.947979px;}
.x44{left:150.989979px;}
.x49{left:157.829979px;}
.x29{left:163.439979px;}
.xd{left:169.379979px;}
.x30{left:173.264979px;}
.x46{left:179.024979px;}
.x5{left:184.649979px;}
.x4d{left:186.535387px;}
.x50{left:190.904979px;}
.x4{left:198.329979px;}
.x42{left:200.902490px;}
.x33{left:201.929979px;}
.x4f{left:204.269979px;}
.x5b{left:224.382522px;}
.x43{left:225.689979px;}
.x4e{left:228.929979px;}
.x67{left:232.049979px;}
.x3{left:236.339979px;}
.x2{left:241.529979px;}
.x66{left:247.529979px;}
.x48{left:308.309979px;}
.x21{left:367.769979px;}
.x5f{left:394.949979px;}
.x22{left:425.189979px;}
.x53{left:431.849979px;}
.x54{left:442.514979px;}
.x2b{left:472.214979px;}
.x6{left:553.754979px;}
.x1d{left:560.984979px;}
.x1e{left:562.424979px;}
.x1c{left:575.744979px;}
.x3d{left:578.909979px;}
.x2e{left:583.589979px;}
.x57{left:599.609979px;}
.x8{left:604.364979px;}
.x7{left:631.544979px;}
.x55{left:651.389979px;}
.x9{left:658.724979px;}
.x3a{left:690.119979px;}
.x3e{left:707.069979px;}
.x34{left:713.414979px;}
.x51{left:716.729979px;}
.x2a{left:724.604979px;}
.x56{left:730.364979px;}
.x35{left:748.829979px;}
.x31{left:760.424979px;}
.x12{left:792.074979px;}
.x14{left:814.934979px;}
.x24{left:825.299979px;}
.x15{left:843.374979px;}
.x6a{left:849.749979px;}
.x69{left:864.869979px;}
.x13{left:879.734979px;}
.x61{left:889.095000px;}
.x6b{left:901.439979px;}
.x4b{left:960.840000px;}
.xa{left:997.994979px;}
.x58{left:1010.010000px;}
.x20{left:1022.609979px;}
.xc{left:1034.669979px;}
.x10{left:1037.549979px;}
.xb{left:1072.289979px;}
.x25{left:1078.094979px;}
.x11{left:1081.469979px;}
.x68{left:1118.309979px;}
.x3c{left:1149.629979px;}
.x3b{left:1174.289979px;}
.x16{left:1262.594979px;}
.x4a{left:1273.709979px;}
.x17{left:1291.934979px;}
.x52{left:1361.084979px;}
@media print{
.v8{vertical-align:-84.608000pt;}
.v7{vertical-align:-58.368000pt;}
.vf{vertical-align:-38.400000pt;}
.v2{vertical-align:-28.800000pt;}
.v6{vertical-align:-26.240000pt;}
.v4{vertical-align:-23.680000pt;}
.va{vertical-align:-17.920000pt;}
.v10{vertical-align:-11.774658pt;}
.v3{vertical-align:-10.346667pt;}
.vb{vertical-align:-4.960000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.826667pt;}
.vc{vertical-align:4.480000pt;}
.v9{vertical-align:5.600000pt;}
.v5{vertical-align:23.680000pt;}
.v1{vertical-align:28.800000pt;}
.ve{vertical-align:38.400000pt;}
.ls24{letter-spacing:-12.693333pt;}
.ls1{letter-spacing:-9.493333pt;}
.lsc{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls23{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.123733pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls28{letter-spacing:-0.108800pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.049280pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.019329pt;}
.ls19{letter-spacing:0.021253pt;}
.ls18{letter-spacing:0.044661pt;}
.ls20{letter-spacing:0.073176pt;}
.ls17{letter-spacing:0.077034pt;}
.ls22{letter-spacing:0.091733pt;}
.ls21{letter-spacing:0.093798pt;}
.ls2{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.101123pt;}
.ls11{letter-spacing:0.108800pt;}
.ls1e{letter-spacing:0.110933pt;}
.ls27{letter-spacing:0.164267pt;}
.lsa{letter-spacing:0.176043pt;}
.ls15{letter-spacing:0.190933pt;}
.lsd{letter-spacing:0.202880pt;}
.ls1f{letter-spacing:0.236800pt;}
.ls1c{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.268160pt;}
.ls1d{letter-spacing:0.290560pt;}
.ls14{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.842880pt;}
.ls8{letter-spacing:19.600725pt;}
.ls7{letter-spacing:19.701333pt;}
.ls26{letter-spacing:99.152640pt;}
.ls5{letter-spacing:108.608000pt;}
.ls13{letter-spacing:137.997227pt;}
.ls12{letter-spacing:138.263893pt;}
.ls16{letter-spacing:284.299601pt;}
.ls1a{letter-spacing:861.077333pt;}
.ls1b{letter-spacing:1135.200000pt;}
.ws16{word-spacing:-303.335719pt;}
.ws11{word-spacing:-96.128000pt;}
.wse{word-spacing:-96.000000pt;}
.wsb{word-spacing:-85.120000pt;}
.ws1{word-spacing:-56.064000pt;}
.ws26{word-spacing:-53.376000pt;}
.wsa{word-spacing:-47.540224pt;}
.ws4{word-spacing:-47.504640pt;}
.ws1f{word-spacing:-41.692160pt;}
.ws14{word-spacing:-41.564160pt;}
.ws21{word-spacing:-41.547093pt;}
.ws5{word-spacing:-41.490944pt;}
.ws3{word-spacing:-41.455360pt;}
.ws13{word-spacing:-38.484907pt;}
.ws1b{word-spacing:-35.840000pt;}
.ws9{word-spacing:-35.584000pt;}
.ws27{word-spacing:-29.876907pt;}
.ws28{word-spacing:-29.603840pt;}
.ws10{word-spacing:-29.481707pt;}
.ws1d{word-spacing:-26.723584pt;}
.ws7{word-spacing:-26.688000pt;}
.ws18{word-spacing:-24.521780pt;}
.ws22{word-spacing:-23.698944pt;}
.ws19{word-spacing:-23.663360pt;}
.wsd{word-spacing:-21.696000pt;}
.ws8{word-spacing:-21.312000pt;}
.ws1c{word-spacing:-20.816640pt;}
.wsf{word-spacing:-19.749120pt;}
.ws15{word-spacing:-19.428053pt;}
.ws6{word-spacing:-18.720000pt;}
.ws12{word-spacing:-17.827584pt;}
.ws0{word-spacing:-17.792000pt;}
.ws1e{word-spacing:-17.033813pt;}
.ws17{word-spacing:-16.672904pt;}
.ws25{word-spacing:-12.208816pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:110.027333pt;}
.ws24{word-spacing:118.716016pt;}
.ws23{word-spacing:133.128413pt;}
.wsc{word-spacing:1049.440000pt;}
._20{margin-left:-2435.180459pt;}
._1f{margin-left:-1356.639104pt;}
._1e{margin-left:-284.299601pt;}
._3{margin-left:-22.368384pt;}
._2{margin-left:-21.376000pt;}
._10{margin-left:-18.640000pt;}
._5{margin-left:-17.088896pt;}
._12{margin-left:-16.128000pt;}
._13{margin-left:-15.104000pt;}
._d{margin-left:-13.824000pt;}
._c{margin-left:-12.761088pt;}
._0{margin-left:-11.799552pt;}
._b{margin-left:-10.157483pt;}
._6{margin-left:-8.832000pt;}
._8{margin-left:-7.763115pt;}
._7{margin-left:-6.674944pt;}
._a{margin-left:-4.800000pt;}
._11{margin-left:-3.147776pt;}
._4{margin-left:-2.220544pt;}
._1{margin-left:-1.197056pt;}
._9{width:1.431211pt;}
._e{width:2.804181pt;}
._1a{width:4.432171pt;}
._f{width:8.527701pt;}
._21{width:12.069717pt;}
._19{width:24.857600pt;}
._15{width:46.452480pt;}
._16{width:51.729920pt;}
._14{width:52.666240pt;}
._22{width:160.841489pt;}
._1b{width:194.177280pt;}
._1d{width:616.505216pt;}
._1c{width:880.433707pt;}
._17{width:1083.072000pt;}
._18{width:1652.242816pt;}
.fs21{font-size:29.544746pt;}
.fs14{font-size:32.639803pt;}
.fs13{font-size:34.916787pt;}
.fs1d{font-size:43.316771pt;}
.fs25{font-size:43.916604pt;}
.fs1e{font-size:46.509899pt;}
.fs16{font-size:49.920000pt;}
.fs23{font-size:50.142106pt;}
.fs15{font-size:50.972556pt;}
.fs22{font-size:58.880000pt;}
.fs1f{font-size:59.876925pt;}
.fs20{font-size:59.877795pt;}
.fs1a{font-size:59.974474pt;}
.fs18{font-size:63.774091pt;}
.fs3{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fs26{font-size:64.564730pt;}
.fs24{font-size:64.590627pt;}
.fs17{font-size:68.475245pt;}
.fs11{font-size:71.040000pt;}
.fs8{font-size:74.880000pt;}
.fs1c{font-size:75.008000pt;}
.fs9{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs1b{font-size:88.171121pt;}
.fs19{font-size:88.207842pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs28{font-size:97.920000pt;}
.fs10{font-size:101.120000pt;}
.fs5{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fsf{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fsc{font-size:138.880000pt;}
.fsb{font-size:139.008000pt;}
.fs6{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs27{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:0.000163pt;}
.y34{bottom:6.400000pt;}
.y7f{bottom:6.898344pt;}
.yb0{bottom:8.297921pt;}
.y31{bottom:9.376000pt;}
.y83{bottom:15.200000pt;}
.y86{bottom:15.968000pt;}
.y6a{bottom:16.256000pt;}
.y63{bottom:16.855634pt;}
.y9a{bottom:18.061139pt;}
.y27{bottom:20.064000pt;}
.y89{bottom:24.576000pt;}
.y33{bottom:25.600000pt;}
.y64{bottom:26.908382pt;}
.ya6{bottom:27.664471pt;}
.y30{bottom:28.576000pt;}
.y57{bottom:31.136000pt;}
.y87{bottom:32.032000pt;}
.y5c{bottom:35.424000pt;}
.y76{bottom:38.199333pt;}
.y8d{bottom:39.367784pt;}
.ya7{bottom:39.986634pt;}
.y2c{bottom:43.264000pt;}
.y32{bottom:44.800000pt;}
.ya3{bottom:46.944000pt;}
.y7e{bottom:49.511479pt;}
.y8e{bottom:50.146255pt;}
.y77{bottom:55.024317pt;}
.y4c{bottom:55.616000pt;}
.y26{bottom:61.696000pt;}
.ya8{bottom:67.154562pt;}
.y5b{bottom:67.456000pt;}
.y7d{bottom:68.248767pt;}
.y85{bottom:70.976000pt;}
.y61{bottom:71.520000pt;}
.y8f{bottom:73.649836pt;}
.y2b{bottom:75.296000pt;}
.y65{bottom:76.210140pt;}
.yaf{bottom:76.784586pt;}
.y9{bottom:79.008000pt;}
.y69{bottom:81.106414pt;}
.yb9{bottom:84.736000pt;}
.ya2{bottom:85.344000pt;}
.y7c{bottom:87.791610pt;}
.y54{bottom:88.064000pt;}
.y70{bottom:92.640000pt;}
.y14{bottom:92.960000pt;}
.y99{bottom:93.960290pt;}
.y4b{bottom:94.016000pt;}
.ya9{bottom:94.324282pt;}
.y90{bottom:97.153417pt;}
.y5a{bottom:99.456000pt;}
.y60{bottom:100.320000pt;}
.ybd{bottom:103.264000pt;}
.y25{bottom:103.296000pt;}
.y2a{bottom:107.296000pt;}
.y8{bottom:113.440000pt;}
.yb8{bottom:116.736000pt;}
.y53{bottom:117.024000pt;}
.y78{bottom:119.897793pt;}
.y91{bottom:120.706891pt;}
.yaa{bottom:121.492210pt;}
.ya1{bottom:123.744000pt;}
.y56{bottom:125.152000pt;}
.y66{bottom:125.530873pt;}
.y59{bottom:131.456000pt;}
.y4a{bottom:132.448000pt;}
.y6f{bottom:134.240000pt;}
.y75{bottom:134.621250pt;}
.y84{bottom:136.826667pt;}
.y13{bottom:137.786667pt;}
.y29{bottom:139.293333pt;}
.y5d{bottom:143.813333pt;}
.y92{bottom:144.210472pt;}
.y24{bottom:144.893333pt;}
.y52{bottom:145.826667pt;}
.yab{bottom:148.716615pt;}
.yb7{bottom:148.773333pt;}
.y7{bottom:149.440000pt;}
.y55{bottom:157.186667pt;}
.ya0{bottom:162.173333pt;}
.y58{bottom:163.453333pt;}
.y93{bottom:167.714053pt;}
.y49{bottom:170.853333pt;}
.y28{bottom:171.293333pt;}
.y67{bottom:174.832632pt;}
.yac{bottom:175.886336pt;}
.yb6{bottom:180.773333pt;}
.y68{bottom:183.353105pt;}
.y79{bottom:184.773717pt;}
.y23{bottom:186.533333pt;}
.y94{bottom:191.217634pt;}
.y6{bottom:193.733333pt;}
.y16{bottom:199.906667pt;}
.y9f{bottom:200.573333pt;}
.y6b{bottom:201.346667pt;}
.yad{bottom:203.054263pt;}
.y51{bottom:203.906667pt;}
.y95{bottom:214.721215pt;}
.y12{bottom:220.093333pt;}
.y17{bottom:220.186667pt;}
.yb5{bottom:227.173333pt;}
.y5{bottom:228.293333pt;}
.y62{bottom:230.080000pt;}
.yae{bottom:230.224880pt;}
.y9d{bottom:235.380914pt;}
.y98{bottom:235.730156pt;}
.y8c{bottom:243.746466pt;}
.y9c{bottom:248.654845pt;}
.y97{bottom:249.004087pt;}
.y7a{bottom:249.720649pt;}
.y15{bottom:251.106667pt;}
.ya4{bottom:251.493333pt;}
.yb4{bottom:259.173333pt;}
.y96{bottom:262.277186pt;}
.y39{bottom:264.186667pt;}
.y50{bottom:264.253333pt;}
.y9b{bottom:264.422576pt;}
.y5f{bottom:265.733333pt;}
.y20{bottom:271.973333pt;}
.y47{bottom:272.640000pt;}
.y4{bottom:280.866667pt;}
.y72{bottom:289.506667pt;}
.y5e{bottom:291.333333pt;}
.y4f{bottom:292.893333pt;}
.y38{bottom:294.586667pt;}
.y71{bottom:294.853333pt;}
.y36{bottom:295.613333pt;}
.y46{bottom:298.240000pt;}
.y1f{bottom:300.773333pt;}
.y88{bottom:303.933333pt;}
.yb3{bottom:305.600000pt;}
.y3b{bottom:306.906667pt;}
.y8a{bottom:310.146667pt;}
.y7b{bottom:314.597797pt;}
.y4e{bottom:321.853333pt;}
.y45{bottom:323.680000pt;}
.y37{bottom:324.986667pt;}
.yc0{bottom:328.093333pt;}
.y1e{bottom:329.573333pt;}
.y3{bottom:332.066667pt;}
.y11{bottom:332.186667pt;}
.y35{bottom:334.013333pt;}
.yb2{bottom:337.600000pt;}
.y3a{bottom:345.346667pt;}
.y44{bottom:349.440000pt;}
.y4d{bottom:350.653333pt;}
.ybf{bottom:356.893333pt;}
.y1d{bottom:358.400000pt;}
.ybc{bottom:365.946667pt;}
.y43{bottom:375.040000pt;}
.y10{bottom:376.986667pt;}
.y2{bottom:383.266667pt;}
.y82{bottom:384.506667pt;}
.ybe{bottom:385.693333pt;}
.y74{bottom:390.653333pt;}
.y42{bottom:400.666667pt;}
.y22{bottom:412.573333pt;}
.y73{bottom:413.053333pt;}
.ybb{bottom:417.146667pt;}
.y1c{bottom:418.306667pt;}
.yf{bottom:421.826667pt;}
.y81{bottom:422.906667pt;}
.y1{bottom:434.493333pt;}
.y9e{bottom:434.626667pt;}
.y21{bottom:438.173333pt;}
.y1b{bottom:440.706667pt;}
.y80{bottom:461.306667pt;}
.ye{bottom:466.626667pt;}
.y48{bottom:467.226667pt;}
.yba{bottom:468.386667pt;}
.yb1{bottom:474.266667pt;}
.y1a{bottom:505.466667pt;}
.y3f{bottom:505.506667pt;}
.y6e{bottom:506.813333pt;}
.y2f{bottom:526.626667pt;}
.y19{bottom:550.266667pt;}
.y3e{bottom:550.306667pt;}
.y6d{bottom:551.653333pt;}
.y8b{bottom:553.346667pt;}
.yd{bottom:553.573333pt;}
.yc{bottom:556.026667pt;}
.y2e{bottom:565.026667pt;}
.y41{bottom:570.786667pt;}
.yb{bottom:584.826667pt;}
.y2d{bottom:603.453333pt;}
.y40{bottom:609.213333pt;}
.y3d{bottom:612.453333pt;}
.ya{bottom:614.266667pt;}
.y18{bottom:632.573333pt;}
.y6c{bottom:634.053333pt;}
.y3c{bottom:663.653333pt;}
.h19{height:23.858294pt;}
.h18{height:25.522671pt;}
.h29{height:31.662699pt;}
.h2a{height:33.996738pt;}
.h30{height:36.651725pt;}
.h1a{height:37.258749pt;}
.h2b{height:43.767459pt;}
.h2c{height:43.768095pt;}
.h20{height:46.616120pt;}
.h32{height:47.194043pt;}
.h31{height:47.212973pt;}
.h4{height:48.000000pt;}
.h1f{height:50.052462pt;}
.ha{height:51.991875pt;}
.h1d{height:56.160000pt;}
.h25{height:56.256000pt;}
.h2d{height:58.563750pt;}
.hb{height:60.057813pt;}
.hc{height:60.148125pt;}
.h13{height:63.840000pt;}
.h22{height:64.449301pt;}
.h21{height:64.476142pt;}
.h34{height:70.171875pt;}
.h24{height:71.360000pt;}
.h7{height:72.000000pt;}
.h5{height:72.096000pt;}
.h27{height:74.477812pt;}
.h12{height:75.840000pt;}
.h3{height:76.800000pt;}
.h26{height:77.504000pt;}
.h1b{height:80.077812pt;}
.h6{height:80.160000pt;}
.hf{height:80.256000pt;}
.h1c{height:91.636562pt;}
.h11{height:96.000000pt;}
.h10{height:96.096000pt;}
.h15{height:98.000000pt;}
.h16{height:98.098000pt;}
.h14{height:98.296875pt;}
.h23{height:102.240000pt;}
.h2e{height:102.336000pt;}
.he{height:104.160000pt;}
.hd{height:104.256000pt;}
.h8{height:111.840000pt;}
.h9{height:111.936000pt;}
.h2{height:128.160000pt;}
.h1{height:128.256000pt;}
.h33{height:144.000000pt;}
.h17{height:188.191460pt;}
.h2f{height:264.813333pt;}
.h28{height:301.533534pt;}
.h1e{height:361.686835pt;}
.h0{height:720.000000pt;}
.w4{width:302.842996pt;}
.w2{width:323.894253pt;}
.w5{width:346.163464pt;}
.w3{width:425.920000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x23{left:5.311981pt;}
.x1f{left:9.599981pt;}
.x2c{left:12.767981pt;}
.x38{left:15.743981pt;}
.x41{left:20.198826pt;}
.x32{left:26.367981pt;}
.x18{left:27.935981pt;}
.x5c{left:29.490277pt;}
.x19{left:32.575981pt;}
.x64{left:34.712292pt;}
.x3f{left:37.151981pt;}
.x36{left:40.223981pt;}
.x63{left:41.709490pt;}
.x40{left:43.324016pt;}
.x1b{left:44.415981pt;}
.x5a{left:47.305851pt;}
.x2d{left:48.767981pt;}
.x26{left:51.967981pt;}
.x60{left:55.999981pt;}
.x37{left:57.183981pt;}
.x39{left:67.423981pt;}
.x1{left:70.623981pt;}
.x59{left:74.900228pt;}
.x62{left:82.128417pt;}
.x5e{left:86.277189pt;}
.x1a{left:91.615981pt;}
.x65{left:93.247981pt;}
.x28{left:96.959981pt;}
.x45{left:100.735981pt;}
.xf{left:104.639981pt;}
.x5d{left:112.075515pt;}
.xe{left:116.799981pt;}
.x4c{left:120.021248pt;}
.x27{left:121.087981pt;}
.x2f{left:123.935981pt;}
.x47{left:126.175981pt;}
.x44{left:134.213314pt;}
.x49{left:140.293314pt;}
.x29{left:145.279981pt;}
.xd{left:150.559981pt;}
.x30{left:154.013314pt;}
.x46{left:159.133314pt;}
.x5{left:164.133314pt;}
.x4d{left:165.809233pt;}
.x50{left:169.693314pt;}
.x4{left:176.293314pt;}
.x42{left:178.579991pt;}
.x33{left:179.493314pt;}
.x4f{left:181.573314pt;}
.x5b{left:199.451130pt;}
.x43{left:200.613314pt;}
.x4e{left:203.493314pt;}
.x67{left:206.266648pt;}
.x3{left:210.079981pt;}
.x2{left:214.693314pt;}
.x66{left:220.026648pt;}
.x48{left:274.053314pt;}
.x21{left:326.906648pt;}
.x5f{left:351.066648pt;}
.x22{left:377.946648pt;}
.x53{left:383.866648pt;}
.x54{left:393.346648pt;}
.x2b{left:419.746648pt;}
.x6{left:492.226648pt;}
.x1d{left:498.653314pt;}
.x1e{left:499.933314pt;}
.x1c{left:511.773314pt;}
.x3d{left:514.586648pt;}
.x2e{left:518.746648pt;}
.x57{left:532.986648pt;}
.x8{left:537.213314pt;}
.x7{left:561.373314pt;}
.x55{left:579.013314pt;}
.x9{left:585.533314pt;}
.x3a{left:613.439981pt;}
.x3e{left:628.506648pt;}
.x34{left:634.146648pt;}
.x51{left:637.093314pt;}
.x2a{left:644.093314pt;}
.x56{left:649.213314pt;}
.x35{left:665.626648pt;}
.x31{left:675.933314pt;}
.x12{left:704.066648pt;}
.x14{left:724.386648pt;}
.x24{left:733.599981pt;}
.x15{left:749.666648pt;}
.x6a{left:755.333314pt;}
.x69{left:768.773314pt;}
.x13{left:781.986648pt;}
.x61{left:790.306667pt;}
.x6b{left:801.279981pt;}
.x4b{left:854.080000pt;}
.xa{left:887.106648pt;}
.x58{left:897.786667pt;}
.x20{left:908.986648pt;}
.xc{left:919.706648pt;}
.x10{left:922.266648pt;}
.xb{left:953.146648pt;}
.x25{left:958.306648pt;}
.x11{left:961.306648pt;}
.x68{left:994.053314pt;}
.x3c{left:1021.893314pt;}
.x3b{left:1043.813314pt;}
.x16{left:1122.306648pt;}
.x4a{left:1132.186648pt;}
.x17{left:1148.386648pt;}
.x52{left:1209.853314pt;}
}




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