
    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_9abd9df0bf3507edbe43bff9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942383;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_d12cf29ac4160aee1c87382a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_b306d0ce411dcaa9673be5d8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b58c86e7971e76e3c09c1f08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_a21ac1db249edc62951b32c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_89a2172ba2e46cf6c66d3d9b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e8d50f2f1747142c5a91182d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_5ce51d15824309ac5a6a1bef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_f70bfcef2ee699a48f92d48d.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.800000px;}
.v2{vertical-align:32.400000px;}
.v3{vertical-align:34.128000px;}
.ls5{letter-spacing:-4.020000px;}
.ls3c{letter-spacing:-2.172000px;}
.ls33{letter-spacing:-2.088000px;}
.ls35{letter-spacing:-1.944000px;}
.ls38{letter-spacing:-1.044000px;}
.ls3a{letter-spacing:-0.900000px;}
.ls3b{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.612000px;}
.ls31{letter-spacing:-0.325200px;}
.ls7{letter-spacing:-0.298800px;}
.ls28{letter-spacing:-0.292200px;}
.ls39{letter-spacing:-0.252000px;}
.ls29{letter-spacing:-0.246000px;}
.ls18{letter-spacing:-0.220800px;}
.ls36{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.211200px;}
.ls1c{letter-spacing:-0.186600px;}
.ls26{letter-spacing:-0.183000px;}
.ls25{letter-spacing:-0.151200px;}
.ls37{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.115200px;}
.ls24{letter-spacing:-0.112200px;}
.ls16{letter-spacing:-0.036000px;}
.ls32{letter-spacing:-0.009060px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.040320px;}
.ls19{letter-spacing:0.048240px;}
.ls1b{letter-spacing:0.050400px;}
.ls30{letter-spacing:0.072000px;}
.ls43{letter-spacing:0.073440px;}
.ls2c{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.115200px;}
.ls11{letter-spacing:0.126000px;}
.ls1a{letter-spacing:0.142200px;}
.lse{letter-spacing:0.165600px;}
.ls21{letter-spacing:0.181440px;}
.ls10{letter-spacing:0.211200px;}
.ls3e{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.238200px;}
.ls17{letter-spacing:0.241200px;}
.ls3f{letter-spacing:0.247200px;}
.ls6{letter-spacing:0.298800px;}
.ls34{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.474000px;}
.ls22{letter-spacing:9.443520px;}
.ls20{letter-spacing:10.163520px;}
.ls4{letter-spacing:22.151520px;}
.ls23{letter-spacing:25.416000px;}
.ls2f{letter-spacing:28.767024px;}
.ls2d{letter-spacing:28.908000px;}
.ls2e{letter-spacing:29.628000px;}
.ls3{letter-spacing:39.228480px;}
.ls40{letter-spacing:54.119520px;}
.ls2{letter-spacing:111.549600px;}
.ls1{letter-spacing:111.600000px;}
.ls42{letter-spacing:119.841600px;}
.ls8{letter-spacing:119.865600px;}
.ls41{letter-spacing:119.892000px;}
.ls9{letter-spacing:119.916000px;}
.ls12{letter-spacing:124.200000px;}
.ls13{letter-spacing:128.433600px;}
.ls14{letter-spacing:128.484000px;}
.ls15{letter-spacing:132.516000px;}
.ls1f{letter-spacing:173.865600px;}
.ls1d{letter-spacing:173.916000px;}
.ls2a{letter-spacing:178.149600px;}
.ls2b{letter-spacing:178.200000px;}
.ls1e{letter-spacing:182.460000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(34,165,220),0 0.015em rgb(34,165,220),0.015em 0 rgb(34,165,220),0 -0.015em  rgb(34,165,220);}
.sc3{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);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(1,152,214),0 0.015em rgb(1,152,214),0.015em 0 rgb(1,152,214),0 -0.015em  rgb(1,152,214);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(34,165,220);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(1,152,214);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2c{word-spacing:-54.073560px;}
.ws3{word-spacing:-39.378240px;}
.ws6{word-spacing:-32.544000px;}
.ws4a{word-spacing:-29.631456px;}
.ws39{word-spacing:-29.592000px;}
.ws13{word-spacing:-27.289440px;}
.ws12{word-spacing:-27.247104px;}
.ws2a{word-spacing:-27.206784px;}
.ws11{word-spacing:-27.174240px;}
.ws29{word-spacing:-24.897600px;}
.ws50{word-spacing:-24.440544px;}
.ws32{word-spacing:-24.408000px;}
.wsb{word-spacing:-21.641760px;}
.ws24{word-spacing:-19.038240px;}
.wsa{word-spacing:-17.621760px;}
.ws4f{word-spacing:-17.573760px;}
.ws14{word-spacing:-16.304544px;}
.wsc{word-spacing:-16.272000px;}
.ws2b{word-spacing:-14.482080px;}
.wsd{word-spacing:-13.505760px;}
.ws22{word-spacing:-10.934784px;}
.ws0{word-spacing:-9.437760px;}
.ws2d{word-spacing:-9.322560px;}
.ws2f{word-spacing:-9.145560px;}
.ws1{word-spacing:-8.136000px;}
.ws9{word-spacing:-4.408800px;}
.ws4e{word-spacing:-3.168000px;}
.ws10{word-spacing:-2.972880px;}
.ws1c{word-spacing:-2.946960px;}
.ws19{word-spacing:-2.159280px;}
.ws16{word-spacing:-2.066400px;}
.ws15{word-spacing:-2.024640px;}
.ws36{word-spacing:-1.743504px;}
.ws17{word-spacing:-1.681200px;}
.ws40{word-spacing:-1.680000px;}
.ws46{word-spacing:-1.640976px;}
.ws25{word-spacing:-1.518000px;}
.ws38{word-spacing:-1.368000px;}
.ws4d{word-spacing:-1.260000px;}
.ws3f{word-spacing:-1.188000px;}
.ws48{word-spacing:-1.097088px;}
.ws44{word-spacing:-1.044000px;}
.ws35{word-spacing:-1.010784px;}
.ws7{word-spacing:-0.964080px;}
.ws3d{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.856800px;}
.ws8{word-spacing:-0.852000px;}
.ws1a{word-spacing:-0.750240px;}
.ws3e{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.600000px;}
.ws37{word-spacing:-0.574272px;}
.ws34{word-spacing:-0.512640px;}
.ws42{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.168000px;}
.ws41{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.084384px;}
.wse{word-spacing:-0.084240px;}
.ws2{word-spacing:0.000000px;}
.ws4c{word-spacing:0.108000px;}
.ws33{word-spacing:0.216000px;}
.ws47{word-spacing:0.475344px;}
.ws4b{word-spacing:0.504000px;}
.ws23{word-spacing:0.904800px;}
.ws31{word-spacing:1.056000px;}
.ws45{word-spacing:1.380000px;}
.ws1b{word-spacing:1.469520px;}
.ws43{word-spacing:1.812000px;}
.ws3c{word-spacing:3.168000px;}
.ws3b{word-spacing:3.420000px;}
.ws49{word-spacing:3.503088px;}
.ws1d{word-spacing:6.343680px;}
.ws1f{word-spacing:91.197720px;}
.ws1e{word-spacing:91.266912px;}
.ws21{word-spacing:114.666960px;}
.ws27{word-spacing:114.741984px;}
.ws20{word-spacing:118.816320px;}
.ws26{word-spacing:118.878168px;}
.ws28{word-spacing:125.372280px;}
.ws30{word-spacing:126.231120px;}
.ws2e{word-spacing:288.411120px;}
._e{margin-left:-16.641240px;}
._4{margin-left:-12.545280px;}
._7{margin-left:-10.172160px;}
._8{margin-left:-8.409840px;}
._d{margin-left:-6.713280px;}
._3{margin-left:-5.025600px;}
._5{margin-left:-4.007520px;}
._2{margin-left:-2.838240px;}
._0{margin-left:-1.169280px;}
._1{width:1.336320px;}
._b{width:2.930160px;}
._9{width:4.794000px;}
._f{width:10.964640px;}
._14{width:16.369440px;}
._a{width:23.179440px;}
._c{width:24.778800px;}
._6{width:25.963920px;}
._10{width:27.864960px;}
._11{width:30.335520px;}
._13{width:738.061680px;}
._12{width:3366.069360px;}
.fce{color:rgb(0,143,204);}
.fc0{color:rgb(69,80,100);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc7{color:rgb(34,165,220);}
.fc8{color:rgb(137,137,137);}
.fc1{color:rgb(37,96,140);}
.fc4{color:rgb(0,152,216);}
.fc5{color:rgb(1,152,214);}
.fc6{color:transparent;}
.fc9{color:rgb(5,99,193);}
.fcd{color:rgb(8,61,91);}
.fca{color:rgb(63,67,80);}
.fcc{color:rgb(11,27,50);}
.fcb{color:rgb(0,128,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs1{font-size:41.904000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fsc{font-size:59.760000px;}
.fs14{font-size:64.080000px;}
.fs6{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs18{font-size:77.760000px;}
.fsf{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs16{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fs15{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs3{font-size:174.240000px;}
.fse{font-size:192.240000px;}
.fs12{font-size:239.760000px;}
.fs17{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y3{bottom:10.908000px;}
.y6{bottom:14.328000px;}
.yc{bottom:16.920000px;}
.y2{bottom:23.544000px;}
.y5{bottom:25.128000px;}
.y4{bottom:35.928000px;}
.y1{bottom:36.144000px;}
.y78{bottom:62.352000px;}
.y2b{bottom:63.828000px;}
.y92{bottom:66.132000px;}
.y97{bottom:83.916000px;}
.yae{bottom:84.600000px;}
.y95{bottom:87.228000px;}
.yaa{bottom:87.444000px;}
.y8a{bottom:88.992000px;}
.y8f{bottom:91.440000px;}
.ya6{bottom:96.192000px;}
.y94{bottom:96.696000px;}
.y96{bottom:101.916000px;}
.y2f{bottom:106.200000px;}
.y18{bottom:106.632000px;}
.y58{bottom:112.932000px;}
.y4d{bottom:113.508000px;}
.ya9{bottom:119.844000px;}
.y88{bottom:120.348000px;}
.y62{bottom:120.744000px;}
.y77{bottom:127.080000px;}
.y93{bottom:132.156000px;}
.y17{bottom:132.552000px;}
.y8c{bottom:135.540000px;}
.y61{bottom:145.944000px;}
.y4c{bottom:147.888000px;}
.y76{bottom:160.380000px;}
.y6c{bottom:166.500000px;}
.y87{bottom:170.565000px;}
.y60{bottom:171.150000px;}
.y8b{bottom:182.880000px;}
.y75{bottom:193.860000px;}
.y5f{bottom:197.070000px;}
.y86{bottom:199.725000px;}
.y24{bottom:202.530000px;}
.y6b{bottom:212.220000px;}
.yb{bottom:216.390000px;}
.y74{bottom:219.780000px;}
.y21{bottom:221.430000px;}
.y57{bottom:225.900000px;}
.y85{bottom:228.885000px;}
.y23{bottom:230.295000px;}
.y3d{bottom:232.275000px;}
.y5e{bottom:240.270000px;}
.y20{bottom:243.030000px;}
.y6a{bottom:245.700000px;}
.y22{bottom:251.895000px;}
.ya{bottom:257.430000px;}
.y56{bottom:258.300000px;}
.y43{bottom:260.745000px;}
.y91{bottom:261.150000px;}
.y4b{bottom:261.975000px;}
.y3c{bottom:268.455000px;}
.y84{bottom:278.970000px;}
.y69{bottom:279.210000px;}
.y8e{bottom:280.440000px;}
.y73{bottom:280.830000px;}
.y90{bottom:282.750000px;}
.y5d{bottom:283.500000px;}
.y16{bottom:287.490000px;}
.y3f{bottom:296.175000px;}
.y42{bottom:296.355000px;}
.y8d{bottom:298.440000px;}
.y9{bottom:299.955000px;}
.y3b{bottom:304.815000px;}
.y83{bottom:308.130000px;}
.y4a{bottom:309.315000px;}
.y68{bottom:312.510000px;}
.y26{bottom:313.635000px;}
.y7a{bottom:318.990000px;}
.y1f{bottom:319.680000px;}
.y25{bottom:325.695000px;}
.y15{bottom:326.370000px;}
.y72{bottom:326.550000px;}
.y40{bottom:336.570000px;}
.y41{bottom:337.395000px;}
.y3a{bottom:341.205000px;}
.y5c{bottom:344.340000px;}
.y1e{bottom:347.430000px;}
.y67{bottom:347.610000px;}
.y55{bottom:351.390000px;}
.y49{bottom:356.655000px;}
.y82{bottom:358.350000px;}
.y71{bottom:360.030000px;}
.y14{bottom:365.250000px;}
.y1d{bottom:369.030000px;}
.y3e{bottom:374.835000px;}
.y39{bottom:377.385000px;}
.y54{bottom:384.870000px;}
.y81{bottom:387.510000px;}
.y66{bottom:393.330000px;}
.ya5{bottom:396.690000px;}
.y48{bottom:404.205000px;}
.y38{bottom:413.745000px;}
.y80{bottom:416.670000px;}
.y13{bottom:419.070000px;}
.y53{bottom:419.970000px;}
.y65{bottom:426.810000px;}
.y9d{bottom:432.570000px;}
.y30{bottom:436.065000px;}
.y47{bottom:436.605000px;}
.y37{bottom:442.545000px;}
.y32{bottom:447.195000px;}
.y2e{bottom:452.370000px;}
.y12{bottom:457.995000px;}
.y8{bottom:458.430000px;}
.y64{bottom:460.335000px;}
.y70{bottom:461.955000px;}
.y9c{bottom:465.015000px;}
.y7f{bottom:466.920000px;}
.y52{bottom:467.355000px;}
.y46{bottom:469.005000px;}
.yab{bottom:478.335000px;}
.y36{bottom:478.905000px;}
.y1c{bottom:487.590000px;}
.y5b{bottom:489.990000px;}
.ya4{bottom:490.965000px;}
.y27{bottom:493.635000px;}
.y7e{bottom:496.080000px;}
.y1b{bottom:499.650000px;}
.y9b{bottom:504.795000px;}
.y7{bottom:505.410000px;}
.y6f{bottom:507.675000px;}
.y11{bottom:511.815000px;}
.y51{bottom:514.695000px;}
.y35{bottom:515.130000px;}
.y45{bottom:516.345000px;}
.y1a{bottom:521.385000px;}
.y5a{bottom:522.390000px;}
.y63{bottom:527.115000px;}
.y2c{bottom:528.330000px;}
.y31{bottom:534.345000px;}
.y6e{bottom:541.155000px;}
.y19{bottom:542.985000px;}
.y9a{bottom:544.755000px;}
.y7d{bottom:546.120000px;}
.y44{bottom:548.745000px;}
.y34{bottom:551.490000px;}
.y79{bottom:553.170000px;}
.y50{bottom:562.215000px;}
.y10{bottom:565.815000px;}
.y59{bottom:569.190000px;}
.ya0{bottom:573.630000px;}
.y6d{bottom:574.455000px;}
.y2a{bottom:574.485000px;}
.y7c{bottom:575.280000px;}
.ya2{bottom:576.720000px;}
.y99{bottom:577.155000px;}
.y9f{bottom:591.630000px;}
.y29{bottom:602.250000px;}
.yf{bottom:604.695000px;}
.ya1{bottom:609.120000px;}
.y4f{bottom:609.555000px;}
.y9e{bottom:609.630000px;}
.ya3{bottom:622.695000px;}
.y28{bottom:623.850000px;}
.y7b{bottom:625.530000px;}
.yad{bottom:662.250000px;}
.yac{bottom:680.250000px;}
.ya8{bottom:682.350000px;}
.y89{bottom:688.245000px;}
.ye{bottom:697.680000px;}
.y33{bottom:698.940000px;}
.y98{bottom:714.750000px;}
.y4e{bottom:716.580000px;}
.y2d{bottom:738.255000px;}
.yd{bottom:744.660000px;}
.ya7{bottom:747.150000px;}
.h1{height:31.911328px;}
.h4{height:34.277344px;}
.h3{height:39.761719px;}
.h2{height:39.898828px;}
.hc{height:45.931641px;}
.hd{height:46.068750px;}
.h17{height:48.124125px;}
.hf{height:56.900391px;}
.h12{height:64.249453px;}
.h13{height:64.359281px;}
.hb{height:68.554688px;}
.he{height:68.691797px;}
.h8{height:71.613281px;}
.h20{height:74.039062px;}
.h19{height:80.208984px;}
.h1c{height:81.105469px;}
.h1b{height:81.213609px;}
.h7{height:91.177734px;}
.h18{height:91.314844px;}
.h16{height:95.245664px;}
.h1a{height:95.388891px;}
.h1e{height:102.682687px;}
.h10{height:102.832031px;}
.h21{height:102.969141px;}
.h6{height:114.486328px;}
.h14{height:114.623437px;}
.h1d{height:119.594180px;}
.h9{height:137.109375px;}
.ha{height:137.246484px;}
.h5{height:165.902344px;}
.h11{height:183.041016px;}
.h15{height:228.287109px;}
.h1f{height:228.424219px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x33{left:10.799979px;}
.x9{left:87.695979px;}
.x42{left:89.855979px;}
.x3e{left:91.943979px;}
.x1f{left:104.183979px;}
.x37{left:109.799979px;}
.xa{left:128.195979px;}
.x16{left:142.343979px;}
.x4f{left:144.971979px;}
.x1a{left:146.951979px;}
.x4d{left:148.283979px;}
.x18{left:153.509979px;}
.x22{left:157.394979px;}
.xb{left:159.044979px;}
.x2{left:162.464979px;}
.x38{left:163.799979px;}
.x43{left:182.189979px;}
.x3{left:195.479979px;}
.x30{left:200.909979px;}
.x19{left:203.939979px;}
.x2d{left:206.429979px;}
.x17{left:215.819979px;}
.x29{left:236.234979px;}
.x20{left:237.959979px;}
.x31{left:254.909979px;}
.x4b{left:289.544979px;}
.x27{left:307.514979px;}
.x7{left:334.334979px;}
.x21{left:359.894979px;}
.x4{left:367.949979px;}
.x28{left:374.939979px;}
.x5{left:439.094979px;}
.x1{left:449.249979px;}
.x23{left:498.389979px;}
.x48{left:507.269979px;}
.x2e{left:516.779979px;}
.x6{left:565.124979px;}
.x2f{left:570.779979px;}
.x2b{left:593.024979px;}
.x1d{left:613.079979px;}
.x13{left:618.479979px;}
.x12{left:623.954979px;}
.x1c{left:628.379979px;}
.x15{left:631.259979px;}
.x24{left:644.729979px;}
.x1b{left:654.659979px;}
.x4a{left:662.789979px;}
.x14{left:673.739979px;}
.x2a{left:685.364979px;}
.x25{left:698.729979px;}
.x47{left:712.079979px;}
.x26{left:739.229979px;}
.x4e{left:785.369979px;}
.x1e{left:847.904979px;}
.x32{left:865.904979px;}
.x3a{left:969.299979px;}
.x2c{left:975.344979px;}
.x49{left:1021.889979px;}
.x34{left:1056.854979px;}
.x3b{left:1060.709979px;}
.xe{left:1061.849979px;}
.x10{left:1064.729979px;}
.xd{left:1073.189979px;}
.x35{left:1083.674979px;}
.xc{left:1085.294979px;}
.x11{left:1101.854979px;}
.x36{left:1109.774979px;}
.xf{left:1120.394979px;}
.x4c{left:1133.309979px;}
.x41{left:1158.554979px;}
.x40{left:1159.994979px;}
.x3c{left:1236.239979px;}
.x3f{left:1237.469979px;}
.x44{left:1265.909979px;}
.x3d{left:1276.454979px;}
.x46{left:1293.809979px;}
.x45{left:1297.409979px;}
.x39{left:1393.769979px;}
.x8{left:1402.949979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.600000pt;}
.v2{vertical-align:28.800000pt;}
.v3{vertical-align:30.336000pt;}
.ls5{letter-spacing:-3.573333pt;}
.ls3c{letter-spacing:-1.930667pt;}
.ls33{letter-spacing:-1.856000pt;}
.ls35{letter-spacing:-1.728000pt;}
.ls38{letter-spacing:-0.928000pt;}
.ls3a{letter-spacing:-0.800000pt;}
.ls3b{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.544000pt;}
.ls31{letter-spacing:-0.289067pt;}
.ls7{letter-spacing:-0.265600pt;}
.ls28{letter-spacing:-0.259733pt;}
.ls39{letter-spacing:-0.224000pt;}
.ls29{letter-spacing:-0.218667pt;}
.ls18{letter-spacing:-0.196267pt;}
.ls36{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.187733pt;}
.ls1c{letter-spacing:-0.165867pt;}
.ls26{letter-spacing:-0.162667pt;}
.ls25{letter-spacing:-0.134400pt;}
.ls37{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.102400pt;}
.ls24{letter-spacing:-0.099733pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls32{letter-spacing:-0.008053pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.035840pt;}
.ls19{letter-spacing:0.042880pt;}
.ls1b{letter-spacing:0.044800pt;}
.ls30{letter-spacing:0.064000pt;}
.ls43{letter-spacing:0.065280pt;}
.ls2c{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.102400pt;}
.ls11{letter-spacing:0.112000pt;}
.ls1a{letter-spacing:0.126400pt;}
.lse{letter-spacing:0.147200pt;}
.ls21{letter-spacing:0.161280pt;}
.ls10{letter-spacing:0.187733pt;}
.ls3e{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.211733pt;}
.ls17{letter-spacing:0.214400pt;}
.ls3f{letter-spacing:0.219733pt;}
.ls6{letter-spacing:0.265600pt;}
.ls34{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.421333pt;}
.ls22{letter-spacing:8.394240pt;}
.ls20{letter-spacing:9.034240pt;}
.ls4{letter-spacing:19.690240pt;}
.ls23{letter-spacing:22.592000pt;}
.ls2f{letter-spacing:25.570688pt;}
.ls2d{letter-spacing:25.696000pt;}
.ls2e{letter-spacing:26.336000pt;}
.ls3{letter-spacing:34.869760pt;}
.ls40{letter-spacing:48.106240pt;}
.ls2{letter-spacing:99.155200pt;}
.ls1{letter-spacing:99.200000pt;}
.ls42{letter-spacing:106.525867pt;}
.ls8{letter-spacing:106.547200pt;}
.ls41{letter-spacing:106.570667pt;}
.ls9{letter-spacing:106.592000pt;}
.ls12{letter-spacing:110.400000pt;}
.ls13{letter-spacing:114.163200pt;}
.ls14{letter-spacing:114.208000pt;}
.ls15{letter-spacing:117.792000pt;}
.ls1f{letter-spacing:154.547200pt;}
.ls1d{letter-spacing:154.592000pt;}
.ls2a{letter-spacing:158.355200pt;}
.ls2b{letter-spacing:158.400000pt;}
.ls1e{letter-spacing:162.186667pt;}
.ws2c{word-spacing:-48.065387pt;}
.ws3{word-spacing:-35.002880pt;}
.ws6{word-spacing:-28.928000pt;}
.ws4a{word-spacing:-26.339072pt;}
.ws39{word-spacing:-26.304000pt;}
.ws13{word-spacing:-24.257280pt;}
.ws12{word-spacing:-24.219648pt;}
.ws2a{word-spacing:-24.183808pt;}
.ws11{word-spacing:-24.154880pt;}
.ws29{word-spacing:-22.131200pt;}
.ws50{word-spacing:-21.724928pt;}
.ws32{word-spacing:-21.696000pt;}
.wsb{word-spacing:-19.237120pt;}
.ws24{word-spacing:-16.922880pt;}
.wsa{word-spacing:-15.663787pt;}
.ws4f{word-spacing:-15.621120pt;}
.ws14{word-spacing:-14.492928pt;}
.wsc{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-12.872960pt;}
.wsd{word-spacing:-12.005120pt;}
.ws22{word-spacing:-9.719808pt;}
.ws0{word-spacing:-8.389120pt;}
.ws2d{word-spacing:-8.286720pt;}
.ws2f{word-spacing:-8.129387pt;}
.ws1{word-spacing:-7.232000pt;}
.ws9{word-spacing:-3.918933pt;}
.ws4e{word-spacing:-2.816000pt;}
.ws10{word-spacing:-2.642560pt;}
.ws1c{word-spacing:-2.619520pt;}
.ws19{word-spacing:-1.919360pt;}
.ws16{word-spacing:-1.836800pt;}
.ws15{word-spacing:-1.799680pt;}
.ws36{word-spacing:-1.549781pt;}
.ws17{word-spacing:-1.494400pt;}
.ws40{word-spacing:-1.493333pt;}
.ws46{word-spacing:-1.458645pt;}
.ws25{word-spacing:-1.349333pt;}
.ws38{word-spacing:-1.216000pt;}
.ws4d{word-spacing:-1.120000pt;}
.ws3f{word-spacing:-1.056000pt;}
.ws48{word-spacing:-0.975189pt;}
.ws44{word-spacing:-0.928000pt;}
.ws35{word-spacing:-0.898475pt;}
.ws7{word-spacing:-0.856960pt;}
.ws3d{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.761600pt;}
.ws8{word-spacing:-0.757333pt;}
.ws1a{word-spacing:-0.666880pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.533333pt;}
.ws37{word-spacing:-0.510464pt;}
.ws34{word-spacing:-0.455680pt;}
.ws42{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.149333pt;}
.ws41{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.075008pt;}
.wse{word-spacing:-0.074880pt;}
.ws2{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.096000pt;}
.ws33{word-spacing:0.192000pt;}
.ws47{word-spacing:0.422528pt;}
.ws4b{word-spacing:0.448000pt;}
.ws23{word-spacing:0.804267pt;}
.ws31{word-spacing:0.938667pt;}
.ws45{word-spacing:1.226667pt;}
.ws1b{word-spacing:1.306240pt;}
.ws43{word-spacing:1.610667pt;}
.ws3c{word-spacing:2.816000pt;}
.ws3b{word-spacing:3.040000pt;}
.ws49{word-spacing:3.113856pt;}
.ws1d{word-spacing:5.638827pt;}
.ws1f{word-spacing:81.064640pt;}
.ws1e{word-spacing:81.126144pt;}
.ws21{word-spacing:101.926187pt;}
.ws27{word-spacing:101.992875pt;}
.ws20{word-spacing:105.614507pt;}
.ws26{word-spacing:105.669483pt;}
.ws28{word-spacing:111.442027pt;}
.ws30{word-spacing:112.205440pt;}
.ws2e{word-spacing:256.365440pt;}
._e{margin-left:-14.792213pt;}
._4{margin-left:-11.151360pt;}
._7{margin-left:-9.041920pt;}
._8{margin-left:-7.475413pt;}
._d{margin-left:-5.967360pt;}
._3{margin-left:-4.467200pt;}
._5{margin-left:-3.562240pt;}
._2{margin-left:-2.522880pt;}
._0{margin-left:-1.039360pt;}
._1{width:1.187840pt;}
._b{width:2.604587pt;}
._9{width:4.261333pt;}
._f{width:9.746347pt;}
._14{width:14.550613pt;}
._a{width:20.603947pt;}
._c{width:22.025600pt;}
._6{width:23.079040pt;}
._10{width:24.768853pt;}
._11{width:26.964907pt;}
._13{width:656.054827pt;}
._12{width:2992.061653pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:37.248000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fsc{font-size:53.120000pt;}
.fs14{font-size:56.960000pt;}
.fs6{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs18{font-size:69.120000pt;}
.fsf{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs16{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fs15{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs3{font-size:154.880000pt;}
.fse{font-size:170.880000pt;}
.fs12{font-size:213.120000pt;}
.fs17{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:9.696000pt;}
.y6{bottom:12.736000pt;}
.yc{bottom:15.040000pt;}
.y2{bottom:20.928000pt;}
.y5{bottom:22.336000pt;}
.y4{bottom:31.936000pt;}
.y1{bottom:32.128000pt;}
.y78{bottom:55.424000pt;}
.y2b{bottom:56.736000pt;}
.y92{bottom:58.784000pt;}
.y97{bottom:74.592000pt;}
.yae{bottom:75.200000pt;}
.y95{bottom:77.536000pt;}
.yaa{bottom:77.728000pt;}
.y8a{bottom:79.104000pt;}
.y8f{bottom:81.280000pt;}
.ya6{bottom:85.504000pt;}
.y94{bottom:85.952000pt;}
.y96{bottom:90.592000pt;}
.y2f{bottom:94.400000pt;}
.y18{bottom:94.784000pt;}
.y58{bottom:100.384000pt;}
.y4d{bottom:100.896000pt;}
.ya9{bottom:106.528000pt;}
.y88{bottom:106.976000pt;}
.y62{bottom:107.328000pt;}
.y77{bottom:112.960000pt;}
.y93{bottom:117.472000pt;}
.y17{bottom:117.824000pt;}
.y8c{bottom:120.480000pt;}
.y61{bottom:129.728000pt;}
.y4c{bottom:131.456000pt;}
.y76{bottom:142.560000pt;}
.y6c{bottom:148.000000pt;}
.y87{bottom:151.613333pt;}
.y60{bottom:152.133333pt;}
.y8b{bottom:162.560000pt;}
.y75{bottom:172.320000pt;}
.y5f{bottom:175.173333pt;}
.y86{bottom:177.533333pt;}
.y24{bottom:180.026667pt;}
.y6b{bottom:188.640000pt;}
.yb{bottom:192.346667pt;}
.y74{bottom:195.360000pt;}
.y21{bottom:196.826667pt;}
.y57{bottom:200.800000pt;}
.y85{bottom:203.453333pt;}
.y23{bottom:204.706667pt;}
.y3d{bottom:206.466667pt;}
.y5e{bottom:213.573333pt;}
.y20{bottom:216.026667pt;}
.y6a{bottom:218.400000pt;}
.y22{bottom:223.906667pt;}
.ya{bottom:228.826667pt;}
.y56{bottom:229.600000pt;}
.y43{bottom:231.773333pt;}
.y91{bottom:232.133333pt;}
.y4b{bottom:232.866667pt;}
.y3c{bottom:238.626667pt;}
.y84{bottom:247.973333pt;}
.y69{bottom:248.186667pt;}
.y8e{bottom:249.280000pt;}
.y73{bottom:249.626667pt;}
.y90{bottom:251.333333pt;}
.y5d{bottom:252.000000pt;}
.y16{bottom:255.546667pt;}
.y3f{bottom:263.266667pt;}
.y42{bottom:263.426667pt;}
.y8d{bottom:265.280000pt;}
.y9{bottom:266.626667pt;}
.y3b{bottom:270.946667pt;}
.y83{bottom:273.893333pt;}
.y4a{bottom:274.946667pt;}
.y68{bottom:277.786667pt;}
.y26{bottom:278.786667pt;}
.y7a{bottom:283.546667pt;}
.y1f{bottom:284.160000pt;}
.y25{bottom:289.506667pt;}
.y15{bottom:290.106667pt;}
.y72{bottom:290.266667pt;}
.y40{bottom:299.173333pt;}
.y41{bottom:299.906667pt;}
.y3a{bottom:303.293333pt;}
.y5c{bottom:306.080000pt;}
.y1e{bottom:308.826667pt;}
.y67{bottom:308.986667pt;}
.y55{bottom:312.346667pt;}
.y49{bottom:317.026667pt;}
.y82{bottom:318.533333pt;}
.y71{bottom:320.026667pt;}
.y14{bottom:324.666667pt;}
.y1d{bottom:328.026667pt;}
.y3e{bottom:333.186667pt;}
.y39{bottom:335.453333pt;}
.y54{bottom:342.106667pt;}
.y81{bottom:344.453333pt;}
.y66{bottom:349.626667pt;}
.ya5{bottom:352.613333pt;}
.y48{bottom:359.293333pt;}
.y38{bottom:367.773333pt;}
.y80{bottom:370.373333pt;}
.y13{bottom:372.506667pt;}
.y53{bottom:373.306667pt;}
.y65{bottom:379.386667pt;}
.y9d{bottom:384.506667pt;}
.y30{bottom:387.613333pt;}
.y47{bottom:388.093333pt;}
.y37{bottom:393.373333pt;}
.y32{bottom:397.506667pt;}
.y2e{bottom:402.106667pt;}
.y12{bottom:407.106667pt;}
.y8{bottom:407.493333pt;}
.y64{bottom:409.186667pt;}
.y70{bottom:410.626667pt;}
.y9c{bottom:413.346667pt;}
.y7f{bottom:415.040000pt;}
.y52{bottom:415.426667pt;}
.y46{bottom:416.893333pt;}
.yab{bottom:425.186667pt;}
.y36{bottom:425.693333pt;}
.y1c{bottom:433.413333pt;}
.y5b{bottom:435.546667pt;}
.ya4{bottom:436.413333pt;}
.y27{bottom:438.786667pt;}
.y7e{bottom:440.960000pt;}
.y1b{bottom:444.133333pt;}
.y9b{bottom:448.706667pt;}
.y7{bottom:449.253333pt;}
.y6f{bottom:451.266667pt;}
.y11{bottom:454.946667pt;}
.y51{bottom:457.506667pt;}
.y35{bottom:457.893333pt;}
.y45{bottom:458.973333pt;}
.y1a{bottom:463.453333pt;}
.y5a{bottom:464.346667pt;}
.y63{bottom:468.546667pt;}
.y2c{bottom:469.626667pt;}
.y31{bottom:474.973333pt;}
.y6e{bottom:481.026667pt;}
.y19{bottom:482.653333pt;}
.y9a{bottom:484.226667pt;}
.y7d{bottom:485.440000pt;}
.y44{bottom:487.773333pt;}
.y34{bottom:490.213333pt;}
.y79{bottom:491.706667pt;}
.y50{bottom:499.746667pt;}
.y10{bottom:502.946667pt;}
.y59{bottom:505.946667pt;}
.ya0{bottom:509.893333pt;}
.y6d{bottom:510.626667pt;}
.y2a{bottom:510.653333pt;}
.y7c{bottom:511.360000pt;}
.ya2{bottom:512.640000pt;}
.y99{bottom:513.026667pt;}
.y9f{bottom:525.893333pt;}
.y29{bottom:535.333333pt;}
.yf{bottom:537.506667pt;}
.ya1{bottom:541.440000pt;}
.y4f{bottom:541.826667pt;}
.y9e{bottom:541.893333pt;}
.ya3{bottom:553.506667pt;}
.y28{bottom:554.533333pt;}
.y7b{bottom:556.026667pt;}
.yad{bottom:588.666667pt;}
.yac{bottom:604.666667pt;}
.ya8{bottom:606.533333pt;}
.y89{bottom:611.773333pt;}
.ye{bottom:620.160000pt;}
.y33{bottom:621.280000pt;}
.y98{bottom:635.333333pt;}
.y4e{bottom:636.960000pt;}
.y2d{bottom:656.226667pt;}
.yd{bottom:661.920000pt;}
.ya7{bottom:664.133333pt;}
.h1{height:28.365625pt;}
.h4{height:30.468750pt;}
.h3{height:35.343750pt;}
.h2{height:35.465625pt;}
.hc{height:40.828125pt;}
.hd{height:40.950000pt;}
.h17{height:42.777000pt;}
.hf{height:50.578125pt;}
.h12{height:57.110625pt;}
.h13{height:57.208250pt;}
.hb{height:60.937500pt;}
.he{height:61.059375pt;}
.h8{height:63.656250pt;}
.h20{height:65.812500pt;}
.h19{height:71.296875pt;}
.h1c{height:72.093750pt;}
.h1b{height:72.189875pt;}
.h7{height:81.046875pt;}
.h18{height:81.168750pt;}
.h16{height:84.662813pt;}
.h1a{height:84.790125pt;}
.h1e{height:91.273500pt;}
.h10{height:91.406250pt;}
.h21{height:91.528125pt;}
.h6{height:101.765625pt;}
.h14{height:101.887500pt;}
.h1d{height:106.305937pt;}
.h9{height:121.875000pt;}
.ha{height:121.996875pt;}
.h5{height:147.468750pt;}
.h11{height:162.703125pt;}
.h15{height:202.921875pt;}
.h1f{height:203.043750pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x33{left:9.599981pt;}
.x9{left:77.951981pt;}
.x42{left:79.871981pt;}
.x3e{left:81.727981pt;}
.x1f{left:92.607981pt;}
.x37{left:97.599981pt;}
.xa{left:113.951981pt;}
.x16{left:126.527981pt;}
.x4f{left:128.863981pt;}
.x1a{left:130.623981pt;}
.x4d{left:131.807981pt;}
.x18{left:136.453314pt;}
.x22{left:139.906648pt;}
.xb{left:141.373314pt;}
.x2{left:144.413314pt;}
.x38{left:145.599981pt;}
.x43{left:161.946648pt;}
.x3{left:173.759981pt;}
.x30{left:178.586648pt;}
.x19{left:181.279981pt;}
.x2d{left:183.493314pt;}
.x17{left:191.839981pt;}
.x29{left:209.986648pt;}
.x20{left:211.519981pt;}
.x31{left:226.586648pt;}
.x4b{left:257.373314pt;}
.x27{left:273.346648pt;}
.x7{left:297.186648pt;}
.x21{left:319.906648pt;}
.x4{left:327.066648pt;}
.x28{left:333.279981pt;}
.x5{left:390.306648pt;}
.x1{left:399.333314pt;}
.x23{left:443.013314pt;}
.x48{left:450.906648pt;}
.x2e{left:459.359981pt;}
.x6{left:502.333314pt;}
.x2f{left:507.359981pt;}
.x2b{left:527.133314pt;}
.x1d{left:544.959981pt;}
.x13{left:549.759981pt;}
.x12{left:554.626648pt;}
.x1c{left:558.559981pt;}
.x15{left:561.119981pt;}
.x24{left:573.093314pt;}
.x1b{left:581.919981pt;}
.x4a{left:589.146648pt;}
.x14{left:598.879981pt;}
.x2a{left:609.213314pt;}
.x25{left:621.093314pt;}
.x47{left:632.959981pt;}
.x26{left:657.093314pt;}
.x4e{left:698.106648pt;}
.x1e{left:753.693314pt;}
.x32{left:769.693314pt;}
.x3a{left:861.599981pt;}
.x2c{left:866.973314pt;}
.x49{left:908.346648pt;}
.x34{left:939.426648pt;}
.x3b{left:942.853314pt;}
.xe{left:943.866648pt;}
.x10{left:946.426648pt;}
.xd{left:953.946648pt;}
.x35{left:963.266648pt;}
.xc{left:964.706648pt;}
.x11{left:979.426648pt;}
.x36{left:986.466648pt;}
.xf{left:995.906648pt;}
.x4c{left:1007.386648pt;}
.x41{left:1029.826648pt;}
.x40{left:1031.106648pt;}
.x3c{left:1098.879981pt;}
.x3f{left:1099.973314pt;}
.x44{left:1125.253314pt;}
.x3d{left:1134.626648pt;}
.x46{left:1150.053314pt;}
.x45{left:1153.253314pt;}
.x39{left:1238.906648pt;}
.x8{left:1247.066648pt;}
}




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