
    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_0cc8108f68fdc7b63931224c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e3bf8d5d7fccbca66fe96a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ada2516395cc0488cab4c4e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_6b811c0940de698580bfa3e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_b0fc4307aa1c0eaeca3db15e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_1e05aff9aefc5d5c0d1a6c54.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.749512;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_b7d6a40c75c0bb30746db33d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_d40f0d4cea07fcb8dd430de2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.769043;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_0653372450842e2a5327a572.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.693359;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_1b9d2540c29ee2cff121b24c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909180;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_b59d876f81ae1a7febfdf867.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.776855;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);}
.v1{vertical-align:-152.640000px;}
.v2{vertical-align:-135.660000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:192.000000px;}
.ls2c{letter-spacing:-5.880000px;}
.ls42{letter-spacing:-2.562000px;}
.ls3d{letter-spacing:-2.112000px;}
.ls16{letter-spacing:-2.058000px;}
.ls25{letter-spacing:-1.878000px;}
.ls14{letter-spacing:-0.672000px;}
.ls1e{letter-spacing:-0.666000px;}
.ls4{letter-spacing:-0.624000px;}
.ls12{letter-spacing:-0.585600px;}
.ls5{letter-spacing:-0.544200px;}
.ls3b{letter-spacing:-0.528000px;}
.ls26{letter-spacing:-0.480600px;}
.ls24{letter-spacing:-0.400200px;}
.ls0{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.048120px;}
.lsf{letter-spacing:0.050688px;}
.lsd{letter-spacing:0.050700px;}
.ls13{letter-spacing:0.090600px;}
.lsa{letter-spacing:0.090720px;}
.ls37{letter-spacing:0.092880px;}
.ls15{letter-spacing:0.101400px;}
.ls31{letter-spacing:0.136080px;}
.ls1f{letter-spacing:0.136200px;}
.ls11{letter-spacing:0.181200px;}
.lsc{letter-spacing:0.181440px;}
.ls1d{letter-spacing:0.192000px;}
.ls40{letter-spacing:0.211968px;}
.ls3e{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.240000px;}
.ls34{letter-spacing:0.256080px;}
.ls2d{letter-spacing:0.272400px;}
.ls36{letter-spacing:0.505440px;}
.ls3{letter-spacing:0.575400px;}
.ls18{letter-spacing:0.580200px;}
.ls21{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.678000px;}
.ls22{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.768000px;}
.ls33{letter-spacing:0.807840px;}
.ls2f{letter-spacing:0.810000px;}
.ls23{letter-spacing:0.816000px;}
.ls3f{letter-spacing:0.883584px;}
.ls30{letter-spacing:0.943920px;}
.ls41{letter-spacing:0.954000px;}
.ls3a{letter-spacing:0.960000px;}
.ls1c{letter-spacing:1.353600px;}
.ls1b{letter-spacing:1.404000px;}
.ls1a{letter-spacing:1.488000px;}
.ls9{letter-spacing:2.210688px;}
.ls19{letter-spacing:2.250000px;}
.ls7{letter-spacing:2.250720px;}
.ls35{letter-spacing:5.127840px;}
.ls32{letter-spacing:5.307840px;}
.ls38{letter-spacing:11.567808px;}
.ls10{letter-spacing:28.130688px;}
.lse{letter-spacing:49.730688px;}
.ls1{letter-spacing:50.447808px;}
.ls39{letter-spacing:50.591808px;}
.ls2a{letter-spacing:52.607808px;}
.lsb{letter-spacing:54.090720px;}
.ls20{letter-spacing:78.527808px;}
.ls2b{letter-spacing:89.327808px;}
.ls2{letter-spacing:97.967808px;}
.ls29{letter-spacing:111.441600px;}
.ls28{letter-spacing:111.492000px;}
.ls8{letter-spacing:115.977600px;}
.ls6{letter-spacing:116.028000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-70.724736px;}
.ws12{word-spacing:-70.640640px;}
.ws24{word-spacing:-41.232192px;}
.ws2b{word-spacing:-41.186160px;}
.ws1b{word-spacing:-41.048160px;}
.ws23{word-spacing:-41.042160px;}
.ws1f{word-spacing:-41.040192px;}
.ws1a{word-spacing:-40.992192px;}
.ws1{word-spacing:-40.847592px;}
.ws22{word-spacing:-40.512192px;}
.ws21{word-spacing:-40.504560px;}
.ws15{word-spacing:-40.464192px;}
.ws19{word-spacing:-40.368360px;}
.ws29{word-spacing:-40.320312px;}
.ws16{word-spacing:-40.272192px;}
.ws26{word-spacing:-40.232160px;}
.ws1c{word-spacing:-39.831960px;}
.ws1e{word-spacing:-39.791592px;}
.ws25{word-spacing:-39.704160px;}
.ws3{word-spacing:-39.687960px;}
.ws2{word-spacing:-39.648192px;}
.ws14{word-spacing:-39.566160px;}
.wsf{word-spacing:-38.879280px;}
.ws1d{word-spacing:-38.354160px;}
.ws2a{word-spacing:-38.160192px;}
.ws10{word-spacing:-38.157312px;}
.ws2c{word-spacing:-37.670160px;}
.wsb{word-spacing:-37.307280px;}
.wsd{word-spacing:-37.249512px;}
.ws4{word-spacing:-36.810480px;}
.ws8{word-spacing:-36.770712px;}
.wse{word-spacing:-36.720012px;}
.ws6{word-spacing:-36.719880px;}
.ws13{word-spacing:-36.669312px;}
.ws27{word-spacing:-36.180000px;}
.ws5{word-spacing:-36.043680px;}
.ws7{word-spacing:-35.997312px;}
.ws9{word-spacing:-34.611312px;}
.ws2d{word-spacing:-30.064032px;}
.ws17{word-spacing:-30.024000px;}
.ws18{word-spacing:-24.058752px;}
.ws20{word-spacing:-17.578752px;}
.ws28{word-spacing:-0.144720px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:23.555280px;}
.wsc{word-spacing:23.634552px;}
._37{margin-left:-12.892896px;}
._f{margin-left:-11.331360px;}
._32{margin-left:-10.024128px;}
._1b{margin-left:-8.717184px;}
._3{margin-left:-7.387344px;}
._1a{margin-left:-6.382224px;}
._2{margin-left:-5.207472px;}
._4{margin-left:-3.878784px;}
._1{margin-left:-1.924992px;}
._0{width:1.080720px;}
._7{width:2.219616px;}
._8{width:3.526800px;}
._6{width:5.066064px;}
._e{width:6.159456px;}
._21{width:7.674768px;}
._5{width:8.756784px;}
._38{width:9.812880px;}
._1e{width:11.427504px;}
._17{width:13.583232px;}
._16{width:15.596832px;}
._2a{width:16.785408px;}
._29{width:18.628128px;}
._28{width:21.165744px;}
._27{width:23.260752px;}
._34{width:26.159280px;}
._35{width:27.376560px;}
._18{width:28.460496px;}
._19{width:29.889408px;}
._2b{width:43.764432px;}
._2c{width:44.790000px;}
._14{width:49.381008px;}
._a{width:50.824944px;}
._15{width:52.685904px;}
._11{width:53.711280px;}
._13{width:54.863328px;}
._12{width:57.020832px;}
._36{width:58.280784px;}
._33{width:59.290272px;}
._10{width:63.236400px;}
._23{width:71.288160px;}
._22{width:72.848544px;}
._2f{width:76.504392px;}
._2d{width:77.711520px;}
._2e{width:78.789168px;}
._20{width:80.454480px;}
._1f{width:81.822960px;}
._30{width:88.695120px;}
._31{width:89.967696px;}
._d{width:97.999824px;}
._24{width:114.431616px;}
._25{width:116.000544px;}
._26{width:117.572160px;}
._c{width:173.159424px;}
._b{width:174.235728px;}
._9{width:557.973024px;}
._1c{width:772.885440px;}
._1d{width:1034.375232px;}
.fc12{color:rgb(184,207,255);}
.fc11{color:rgb(255,192,0);}
.fc10{color:rgb(153,153,255);}
.fcf{color:rgb(109,109,109);}
.fce{color:rgb(0,153,255);}
.fc0{color:rgb(64,64,64);}
.fc1{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fcd{color:rgb(175,214,178);}
.fc4{color:rgb(54,54,54);}
.fc7{color:rgb(0,0,0);}
.fca{color:rgb(255,255,0);}
.fc2{color:rgb(95,95,95);}
.fc6{color:transparent;}
.fc5{color:rgb(66,44,22);}
.fcc{color:rgb(255,51,204);}
.fc8{color:rgb(255,0,0);}
.fc9{color:rgb(41,112,255);}
.fcb{color:rgb(192,0,0);}
.fs4{font-size:84.384000px;}
.fs5{font-size:95.040000px;}
.fs6{font-size:95.184000px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs3{font-size:120.960000px;}
.fs2{font-size:121.104000px;}
.fs7{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs13{font-size:138.240000px;}
.fs14{font-size:138.384000px;}
.fsb{font-size:144.720000px;}
.fs1{font-size:144.864000px;}
.fs11{font-size:155.520000px;}
.fsa{font-size:155.664000px;}
.fs12{font-size:168.480000px;}
.fsc{font-size:168.624000px;}
.fs10{font-size:185.760000px;}
.fsf{font-size:185.904000px;}
.fs0{font-size:216.144000px;}
.fse{font-size:239.904000px;}
.yb8{bottom:-2.340000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:20.376000px;}
.ya4{bottom:28.224000px;}
.y5c{bottom:32.436000px;}
.y12{bottom:35.676000px;}
.y58{bottom:37.548000px;}
.y7f{bottom:41.292000px;}
.y9{bottom:41.940000px;}
.y4d{bottom:42.408000px;}
.yb7{bottom:44.676000px;}
.y6{bottom:45.936000px;}
.y9b{bottom:50.292000px;}
.y68{bottom:50.472000px;}
.y3d{bottom:56.592000px;}
.ycb{bottom:64.044000px;}
.y2a{bottom:69.804000px;}
.y8{bottom:70.560000px;}
.y57{bottom:80.784000px;}
.y4c{bottom:82.404000px;}
.ya3{bottom:82.800000px;}
.y7e{bottom:84.492000px;}
.y9a{bottom:84.888000px;}
.yb6{bottom:91.692000px;}
.y3c{bottom:92.232000px;}
.y67{bottom:93.672000px;}
.yaa{bottom:97.884000px;}
.yca{bottom:98.604000px;}
.y94{bottom:98.928000px;}
.y7{bottom:99.756000px;}
.ybe{bottom:100.692000px;}
.y73{bottom:102.744000px;}
.y29{bottom:109.260000px;}
.y8c{bottom:115.344000px;}
.y4b{bottom:121.860000px;}
.y56{bottom:124.020000px;}
.y7d{bottom:127.728000px;}
.y3b{bottom:128.448000px;}
.y11{bottom:132.192000px;}
.y93{bottom:136.224000px;}
.ybd{bottom:136.368000px;}
.ya2{bottom:137.916000px;}
.yb5{bottom:138.708000px;}
.y5f{bottom:144.144000px;}
.y72{bottom:145.980000px;}
.y1b{bottom:147.744000px;}
.y28{bottom:148.680000px;}
.y84{bottom:159.945000px;}
.y4a{bottom:161.280000px;}
.y8b{bottom:163.440000px;}
.y7c{bottom:170.970000px;}
.yc3{bottom:171.825000px;}
.y3a{bottom:176.010000px;}
.y55{bottom:185.610000px;}
.y99{bottom:185.730000px;}
.yc9{bottom:187.350000px;}
.y27{bottom:188.670000px;}
.y71{bottom:189.180000px;}
.ya1{bottom:192.495000px;}
.y66{bottom:195.120000px;}
.y1a{bottom:199.620000px;}
.y49{bottom:201.270000px;}
.y39{bottom:211.680000px;}
.y82{bottom:216.750000px;}
.ya9{bottom:216.930000px;}
.yc8{bottom:221.910000px;}
.ybc{bottom:223.995000px;}
.y26{bottom:228.135000px;}
.y10{bottom:228.705000px;}
.y54{bottom:228.855000px;}
.y70{bottom:232.410000px;}
.yb4{bottom:232.740000px;}
.y65{bottom:238.350000px;}
.y48{bottom:240.735000px;}
.y7a{bottom:241.590000px;}
.y92{bottom:246.240000px;}
.ya0{bottom:247.605000px;}
.y38{bottom:247.860000px;}
.y19{bottom:251.490000px;}
.y5{bottom:255.570000px;}
.ya8{bottom:257.430000px;}
.ybb{bottom:259.665000px;}
.y25{bottom:267.555000px;}
.y6f{bottom:275.655000px;}
.yb3{bottom:277.050000px;}
.y47{bottom:280.185000px;}
.y8a{bottom:281.520000px;}
.y37{bottom:284.070000px;}
.y79{bottom:284.835000px;}
.y98{bottom:286.170000px;}
.y53{bottom:289.905000px;}
.yc2{bottom:290.880000px;}
.y4{bottom:291.210000px;}
.y9f{bottom:302.730000px;}
.y24{bottom:307.545000px;}
.y6e{bottom:318.885000px;}
.y18{bottom:319.110000px;}
.y36{bottom:319.755000px;}
.y46{bottom:320.145000px;}
.y97{bottom:320.760000px;}
.yb2{bottom:324.030000px;}
.yf{bottom:325.185000px;}
.y3{bottom:327.420000px;}
.y78{bottom:328.065000px;}
.yc7{bottom:328.140000px;}
.y89{bottom:329.610000px;}
.yc1{bottom:331.410000px;}
.y64{bottom:339.765000px;}
.y23{bottom:347.010000px;}
.y52{bottom:350.970000px;}
.y35{bottom:355.935000px;}
.ya7{bottom:356.325000px;}
.y5e{bottom:356.940000px;}
.y9e{bottom:357.840000px;}
.y45{bottom:359.610000px;}
.y6d{bottom:362.130000px;}
.yba{bottom:363.315000px;}
.yb1{bottom:371.055000px;}
.y91{bottom:374.910000px;}
.y63{bottom:383.010000px;}
.y22{bottom:386.460000px;}
.y51{bottom:394.200000px;}
.ya6{bottom:396.825000px;}
.y2{bottom:398.955000px;}
.y44{bottom:399.060000px;}
.y81{bottom:399.345000px;}
.y77{bottom:399.885000px;}
.y6c{bottom:405.330000px;}
.y34{bottom:407.805000px;}
.y9d{bottom:412.950000px;}
.yb0{bottom:418.065000px;}
.y96{bottom:419.730000px;}
.ye{bottom:420.015000px;}
.y21{bottom:426.420000px;}
.y17{bottom:428.040000px;}
.yc0{bottom:430.275000px;}
.yc6{bottom:433.950000px;}
.y43{bottom:439.050000px;}
.y80{bottom:442.590000px;}
.y33{bottom:443.490000px;}
.y76{bottom:445.290000px;}
.y1{bottom:446.505000px;}
.y88{bottom:447.735000px;}
.y6b{bottom:448.560000px;}
.y50{bottom:455.790000px;}
.yaf{bottom:465.090000px;}
.y20{bottom:465.870000px;}
.y9c{bottom:468.075000px;}
.yc5{bottom:468.540000px;}
.ybf{bottom:470.775000px;}
.y16{bottom:471.270000px;}
.y83{bottom:476.070000px;}
.y42{bottom:478.470000px;}
.y32{bottom:479.670000px;}
.y62{bottom:484.530000px;}
.y5b{bottom:485.100000px;}
.yb9{bottom:488.415000px;}
.y6a{bottom:491.790000px;}
.y87{bottom:495.825000px;}
.y4f{bottom:499.035000px;}
.y90{bottom:501.840000px;}
.y1f{bottom:505.335000px;}
.yae{bottom:512.100000px;}
.y15{bottom:514.470000px;}
.y31{bottom:515.880000px;}
.ya5{bottom:516.030000px;}
.y5a{bottom:517.530000px;}
.y41{bottom:517.935000px;}
.yd{bottom:518.190000px;}
.y75{bottom:523.110000px;}
.y61{bottom:527.760000px;}
.y69{bottom:535.035000px;}
.y95{bottom:539.565000px;}
.y1e{bottom:545.325000px;}
.y30{bottom:551.550000px;}
.y14{bottom:557.715000px;}
.y40{bottom:557.925000px;}
.yad{bottom:559.110000px;}
.y4e{bottom:560.085000px;}
.y5d{bottom:568.590000px;}
.yc4{bottom:574.740000px;}
.y2f{bottom:587.730000px;}
.y2e{bottom:607.470000px;}
.yc{bottom:613.005000px;}
.y7b{bottom:625.755000px;}
.y8f{bottom:633.855000px;}
.y13{bottom:639.105000px;}
.y3f{bottom:642.525000px;}
.yac{bottom:654.915000px;}
.y60{bottom:673.170000px;}
.ycd{bottom:675.750000px;}
.y8e{bottom:676.005000px;}
.y74{bottom:676.875000px;}
.y2d{bottom:677.595000px;}
.y85{bottom:683.925000px;}
.y86{bottom:690.630000px;}
.y59{bottom:697.140000px;}
.yb{bottom:699.270000px;}
.y2b{bottom:702.390000px;}
.yab{bottom:713.310000px;}
.y1d{bottom:716.325000px;}
.y2c{bottom:719.745000px;}
.ya{bottom:733.320000px;}
.ycc{bottom:734.115000px;}
.y8d{bottom:734.370000px;}
.y1c{bottom:750.390000px;}
.h5{height:88.009875px;}
.h6{height:99.123750px;}
.h7{height:99.273938px;}
.ha{height:112.640625px;}
.h9{height:112.790813px;}
.h4{height:126.157500px;}
.h3{height:126.307688px;}
.h8{height:137.421562px;}
.he{height:137.571750px;}
.h17{height:140.842477px;}
.h15{height:144.180000px;}
.h16{height:144.330188px;}
.hc{height:150.938437px;}
.h2{height:151.088625px;}
.h13{height:162.202500px;}
.hb{height:162.352687px;}
.h14{height:175.719375px;}
.hd{height:175.869563px;}
.h12{height:193.741875px;}
.h11{height:193.892063px;}
.h1{height:225.431438px;}
.h10{height:250.212375px;}
.hf{height:329.571750px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x11{left:23.400000px;}
.x10{left:28.800000px;}
.x1e{left:40.572000px;}
.x2f{left:44.172000px;}
.x30{left:47.520000px;}
.x32{left:49.176000px;}
.x2a{left:54.468000px;}
.x33{left:61.344000px;}
.x26{left:63.504000px;}
.x24{left:71.064000px;}
.x28{left:73.404000px;}
.xd{left:82.728000px;}
.xc{left:84.060000px;}
.x40{left:90.036000px;}
.x2c{left:97.884000px;}
.x14{left:100.800000px;}
.x18{left:106.056000px;}
.x1b{left:110.268000px;}
.x42{left:111.744000px;}
.x36{left:113.112000px;}
.x3b{left:114.552000px;}
.x3c{left:119.448000px;}
.x3d{left:132.120000px;}
.x2d{left:138.420000px;}
.x15{left:141.336000px;}
.x1f{left:143.316000px;}
.xe{left:149.184000px;}
.x38{left:150.225000px;}
.x2e{left:151.770000px;}
.x16{left:183.990000px;}
.x37{left:231.810000px;}
.x1{left:237.675000px;}
.x3a{left:254.670000px;}
.x9{left:366.990000px;}
.x45{left:375.480000px;}
.x25{left:415.185000px;}
.x34{left:440.925000px;}
.x31{left:482.040000px;}
.x1d{left:487.260000px;}
.xf{left:494.385000px;}
.xb{left:549.510000px;}
.x19{left:550.830000px;}
.x21{left:557.535000px;}
.x23{left:604.005000px;}
.x20{left:610.815000px;}
.x8{left:613.875000px;}
.x44{left:622.410000px;}
.x1a{left:651.315000px;}
.x41{left:678.570000px;}
.x29{left:681.450000px;}
.x2{left:707.730000px;}
.x1c{left:728.895000px;}
.x22{left:765.000000px;}
.x35{left:771.510000px;}
.x7{left:781.380000px;}
.x43{left:789.870000px;}
.x5{left:802.290000px;}
.xa{left:816.945000px;}
.x17{left:820.830000px;}
.x12{left:834.870000px;}
.x13{left:838.695000px;}
.x3{left:854.175000px;}
.x4{left:890.895000px;}
.x3e{left:900.825000px;}
.x3f{left:902.595000px;}
.x39{left:909.255000px;}
.x27{left:991.590000px;}
.x2b{left:993.210000px;}
.x6{left:1003.470000px;}
@media print{
.v1{vertical-align:-135.680000pt;}
.v2{vertical-align:-120.586667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:170.666667pt;}
.ls2c{letter-spacing:-5.226667pt;}
.ls42{letter-spacing:-2.277333pt;}
.ls3d{letter-spacing:-1.877333pt;}
.ls16{letter-spacing:-1.829333pt;}
.ls25{letter-spacing:-1.669333pt;}
.ls14{letter-spacing:-0.597333pt;}
.ls1e{letter-spacing:-0.592000pt;}
.ls4{letter-spacing:-0.554667pt;}
.ls12{letter-spacing:-0.520533pt;}
.ls5{letter-spacing:-0.483733pt;}
.ls3b{letter-spacing:-0.469333pt;}
.ls26{letter-spacing:-0.427200pt;}
.ls24{letter-spacing:-0.355733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.042773pt;}
.lsf{letter-spacing:0.045056pt;}
.lsd{letter-spacing:0.045067pt;}
.ls13{letter-spacing:0.080533pt;}
.lsa{letter-spacing:0.080640pt;}
.ls37{letter-spacing:0.082560pt;}
.ls15{letter-spacing:0.090133pt;}
.ls31{letter-spacing:0.120960pt;}
.ls1f{letter-spacing:0.121067pt;}
.ls11{letter-spacing:0.161067pt;}
.lsc{letter-spacing:0.161280pt;}
.ls1d{letter-spacing:0.170667pt;}
.ls40{letter-spacing:0.188416pt;}
.ls3e{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.213333pt;}
.ls34{letter-spacing:0.227627pt;}
.ls2d{letter-spacing:0.242133pt;}
.ls36{letter-spacing:0.449280pt;}
.ls3{letter-spacing:0.511467pt;}
.ls18{letter-spacing:0.515733pt;}
.ls21{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.602667pt;}
.ls22{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.682667pt;}
.ls33{letter-spacing:0.718080pt;}
.ls2f{letter-spacing:0.720000pt;}
.ls23{letter-spacing:0.725333pt;}
.ls3f{letter-spacing:0.785408pt;}
.ls30{letter-spacing:0.839040pt;}
.ls41{letter-spacing:0.848000pt;}
.ls3a{letter-spacing:0.853333pt;}
.ls1c{letter-spacing:1.203200pt;}
.ls1b{letter-spacing:1.248000pt;}
.ls1a{letter-spacing:1.322667pt;}
.ls9{letter-spacing:1.965056pt;}
.ls19{letter-spacing:2.000000pt;}
.ls7{letter-spacing:2.000640pt;}
.ls35{letter-spacing:4.558080pt;}
.ls32{letter-spacing:4.718080pt;}
.ls38{letter-spacing:10.282496pt;}
.ls10{letter-spacing:25.005056pt;}
.lse{letter-spacing:44.205056pt;}
.ls1{letter-spacing:44.842496pt;}
.ls39{letter-spacing:44.970496pt;}
.ls2a{letter-spacing:46.762496pt;}
.lsb{letter-spacing:48.080640pt;}
.ls20{letter-spacing:69.802496pt;}
.ls2b{letter-spacing:79.402496pt;}
.ls2{letter-spacing:87.082496pt;}
.ls29{letter-spacing:99.059200pt;}
.ls28{letter-spacing:99.104000pt;}
.ls8{letter-spacing:103.091200pt;}
.ls6{letter-spacing:103.136000pt;}
.ws11{word-spacing:-62.866432pt;}
.ws12{word-spacing:-62.791680pt;}
.ws24{word-spacing:-36.650837pt;}
.ws2b{word-spacing:-36.609920pt;}
.ws1b{word-spacing:-36.487253pt;}
.ws23{word-spacing:-36.481920pt;}
.ws1f{word-spacing:-36.480171pt;}
.ws1a{word-spacing:-36.437504pt;}
.ws1{word-spacing:-36.308971pt;}
.ws22{word-spacing:-36.010837pt;}
.ws21{word-spacing:-36.004053pt;}
.ws15{word-spacing:-35.968171pt;}
.ws19{word-spacing:-35.882987pt;}
.ws29{word-spacing:-35.840277pt;}
.ws16{word-spacing:-35.797504pt;}
.ws26{word-spacing:-35.761920pt;}
.ws1c{word-spacing:-35.406187pt;}
.ws1e{word-spacing:-35.370304pt;}
.ws25{word-spacing:-35.292587pt;}
.ws3{word-spacing:-35.278187pt;}
.ws2{word-spacing:-35.242837pt;}
.ws14{word-spacing:-35.169920pt;}
.wsf{word-spacing:-34.559360pt;}
.ws1d{word-spacing:-34.092587pt;}
.ws2a{word-spacing:-33.920171pt;}
.ws10{word-spacing:-33.917611pt;}
.ws2c{word-spacing:-33.484587pt;}
.wsb{word-spacing:-33.162027pt;}
.wsd{word-spacing:-33.110677pt;}
.ws4{word-spacing:-32.720427pt;}
.ws8{word-spacing:-32.685077pt;}
.wse{word-spacing:-32.640011pt;}
.ws6{word-spacing:-32.639893pt;}
.ws13{word-spacing:-32.594944pt;}
.ws27{word-spacing:-32.160000pt;}
.ws5{word-spacing:-32.038827pt;}
.ws7{word-spacing:-31.997611pt;}
.ws9{word-spacing:-30.765611pt;}
.ws2d{word-spacing:-26.723584pt;}
.ws17{word-spacing:-26.688000pt;}
.ws18{word-spacing:-21.385557pt;}
.ws20{word-spacing:-15.625557pt;}
.ws28{word-spacing:-0.128640pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:20.938027pt;}
.wsc{word-spacing:21.008491pt;}
._37{margin-left:-11.460352pt;}
._f{margin-left:-10.072320pt;}
._32{margin-left:-8.910336pt;}
._1b{margin-left:-7.748608pt;}
._3{margin-left:-6.566528pt;}
._1a{margin-left:-5.673088pt;}
._2{margin-left:-4.628864pt;}
._4{margin-left:-3.447808pt;}
._1{margin-left:-1.711104pt;}
._0{width:0.960640pt;}
._7{width:1.972992pt;}
._8{width:3.134933pt;}
._6{width:4.503168pt;}
._e{width:5.475072pt;}
._21{width:6.822016pt;}
._5{width:7.783808pt;}
._38{width:8.722560pt;}
._1e{width:10.157781pt;}
._17{width:12.073984pt;}
._16{width:13.863851pt;}
._2a{width:14.920363pt;}
._29{width:16.558336pt;}
._28{width:18.813995pt;}
._27{width:20.676224pt;}
._34{width:23.252693pt;}
._35{width:24.334720pt;}
._18{width:25.298219pt;}
._19{width:26.568363pt;}
._2b{width:38.901717pt;}
._2c{width:39.813333pt;}
._14{width:43.894229pt;}
._a{width:45.177728pt;}
._15{width:46.831915pt;}
._11{width:47.743360pt;}
._13{width:48.767403pt;}
._12{width:50.685184pt;}
._36{width:51.805141pt;}
._33{width:52.702464pt;}
._10{width:56.210133pt;}
._23{width:63.367253pt;}
._22{width:64.754261pt;}
._2f{width:68.003904pt;}
._2d{width:69.076907pt;}
._2e{width:70.034816pt;}
._20{width:71.515093pt;}
._1f{width:72.731520pt;}
._30{width:78.840107pt;}
._31{width:79.971285pt;}
._d{width:87.110955pt;}
._24{width:101.716992pt;}
._25{width:103.111595pt;}
._26{width:104.508587pt;}
._c{width:153.919488pt;}
._b{width:154.876203pt;}
._9{width:495.976021pt;}
._1c{width:687.009280pt;}
._1d{width:919.444651pt;}
.fs4{font-size:75.008000pt;}
.fs5{font-size:84.480000pt;}
.fs6{font-size:84.608000pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs3{font-size:107.520000pt;}
.fs2{font-size:107.648000pt;}
.fs7{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs13{font-size:122.880000pt;}
.fs14{font-size:123.008000pt;}
.fsb{font-size:128.640000pt;}
.fs1{font-size:128.768000pt;}
.fs11{font-size:138.240000pt;}
.fsa{font-size:138.368000pt;}
.fs12{font-size:149.760000pt;}
.fsc{font-size:149.888000pt;}
.fs10{font-size:165.120000pt;}
.fsf{font-size:165.248000pt;}
.fs0{font-size:192.128000pt;}
.fse{font-size:213.248000pt;}
.yb8{bottom:-2.080000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:18.112000pt;}
.ya4{bottom:25.088000pt;}
.y5c{bottom:28.832000pt;}
.y12{bottom:31.712000pt;}
.y58{bottom:33.376000pt;}
.y7f{bottom:36.704000pt;}
.y9{bottom:37.280000pt;}
.y4d{bottom:37.696000pt;}
.yb7{bottom:39.712000pt;}
.y6{bottom:40.832000pt;}
.y9b{bottom:44.704000pt;}
.y68{bottom:44.864000pt;}
.y3d{bottom:50.304000pt;}
.ycb{bottom:56.928000pt;}
.y2a{bottom:62.048000pt;}
.y8{bottom:62.720000pt;}
.y57{bottom:71.808000pt;}
.y4c{bottom:73.248000pt;}
.ya3{bottom:73.600000pt;}
.y7e{bottom:75.104000pt;}
.y9a{bottom:75.456000pt;}
.yb6{bottom:81.504000pt;}
.y3c{bottom:81.984000pt;}
.y67{bottom:83.264000pt;}
.yaa{bottom:87.008000pt;}
.yca{bottom:87.648000pt;}
.y94{bottom:87.936000pt;}
.y7{bottom:88.672000pt;}
.ybe{bottom:89.504000pt;}
.y73{bottom:91.328000pt;}
.y29{bottom:97.120000pt;}
.y8c{bottom:102.528000pt;}
.y4b{bottom:108.320000pt;}
.y56{bottom:110.240000pt;}
.y7d{bottom:113.536000pt;}
.y3b{bottom:114.176000pt;}
.y11{bottom:117.504000pt;}
.y93{bottom:121.088000pt;}
.ybd{bottom:121.216000pt;}
.ya2{bottom:122.592000pt;}
.yb5{bottom:123.296000pt;}
.y5f{bottom:128.128000pt;}
.y72{bottom:129.760000pt;}
.y1b{bottom:131.328000pt;}
.y28{bottom:132.160000pt;}
.y84{bottom:142.173333pt;}
.y4a{bottom:143.360000pt;}
.y8b{bottom:145.280000pt;}
.y7c{bottom:151.973333pt;}
.yc3{bottom:152.733333pt;}
.y3a{bottom:156.453333pt;}
.y55{bottom:164.986667pt;}
.y99{bottom:165.093333pt;}
.yc9{bottom:166.533333pt;}
.y27{bottom:167.706667pt;}
.y71{bottom:168.160000pt;}
.ya1{bottom:171.106667pt;}
.y66{bottom:173.440000pt;}
.y1a{bottom:177.440000pt;}
.y49{bottom:178.906667pt;}
.y39{bottom:188.160000pt;}
.y82{bottom:192.666667pt;}
.ya9{bottom:192.826667pt;}
.yc8{bottom:197.253333pt;}
.ybc{bottom:199.106667pt;}
.y26{bottom:202.786667pt;}
.y10{bottom:203.293333pt;}
.y54{bottom:203.426667pt;}
.y70{bottom:206.586667pt;}
.yb4{bottom:206.880000pt;}
.y65{bottom:211.866667pt;}
.y48{bottom:213.986667pt;}
.y7a{bottom:214.746667pt;}
.y92{bottom:218.880000pt;}
.ya0{bottom:220.093333pt;}
.y38{bottom:220.320000pt;}
.y19{bottom:223.546667pt;}
.y5{bottom:227.173333pt;}
.ya8{bottom:228.826667pt;}
.ybb{bottom:230.813333pt;}
.y25{bottom:237.826667pt;}
.y6f{bottom:245.026667pt;}
.yb3{bottom:246.266667pt;}
.y47{bottom:249.053333pt;}
.y8a{bottom:250.240000pt;}
.y37{bottom:252.506667pt;}
.y79{bottom:253.186667pt;}
.y98{bottom:254.373333pt;}
.y53{bottom:257.693333pt;}
.yc2{bottom:258.560000pt;}
.y4{bottom:258.853333pt;}
.y9f{bottom:269.093333pt;}
.y24{bottom:273.373333pt;}
.y6e{bottom:283.453333pt;}
.y18{bottom:283.653333pt;}
.y36{bottom:284.226667pt;}
.y46{bottom:284.573333pt;}
.y97{bottom:285.120000pt;}
.yb2{bottom:288.026667pt;}
.yf{bottom:289.053333pt;}
.y3{bottom:291.040000pt;}
.y78{bottom:291.613333pt;}
.yc7{bottom:291.680000pt;}
.y89{bottom:292.986667pt;}
.yc1{bottom:294.586667pt;}
.y64{bottom:302.013333pt;}
.y23{bottom:308.453333pt;}
.y52{bottom:311.973333pt;}
.y35{bottom:316.386667pt;}
.ya7{bottom:316.733333pt;}
.y5e{bottom:317.280000pt;}
.y9e{bottom:318.080000pt;}
.y45{bottom:319.653333pt;}
.y6d{bottom:321.893333pt;}
.yba{bottom:322.946667pt;}
.yb1{bottom:329.826667pt;}
.y91{bottom:333.253333pt;}
.y63{bottom:340.453333pt;}
.y22{bottom:343.520000pt;}
.y51{bottom:350.400000pt;}
.ya6{bottom:352.733333pt;}
.y2{bottom:354.626667pt;}
.y44{bottom:354.720000pt;}
.y81{bottom:354.973333pt;}
.y77{bottom:355.453333pt;}
.y6c{bottom:360.293333pt;}
.y34{bottom:362.493333pt;}
.y9d{bottom:367.066667pt;}
.yb0{bottom:371.613333pt;}
.y96{bottom:373.093333pt;}
.ye{bottom:373.346667pt;}
.y21{bottom:379.040000pt;}
.y17{bottom:380.480000pt;}
.yc0{bottom:382.466667pt;}
.yc6{bottom:385.733333pt;}
.y43{bottom:390.266667pt;}
.y80{bottom:393.413333pt;}
.y33{bottom:394.213333pt;}
.y76{bottom:395.813333pt;}
.y1{bottom:396.893333pt;}
.y88{bottom:397.986667pt;}
.y6b{bottom:398.720000pt;}
.y50{bottom:405.146667pt;}
.yaf{bottom:413.413333pt;}
.y20{bottom:414.106667pt;}
.y9c{bottom:416.066667pt;}
.yc5{bottom:416.480000pt;}
.ybf{bottom:418.466667pt;}
.y16{bottom:418.906667pt;}
.y83{bottom:423.173333pt;}
.y42{bottom:425.306667pt;}
.y32{bottom:426.373333pt;}
.y62{bottom:430.693333pt;}
.y5b{bottom:431.200000pt;}
.yb9{bottom:434.146667pt;}
.y6a{bottom:437.146667pt;}
.y87{bottom:440.733333pt;}
.y4f{bottom:443.586667pt;}
.y90{bottom:446.080000pt;}
.y1f{bottom:449.186667pt;}
.yae{bottom:455.200000pt;}
.y15{bottom:457.306667pt;}
.y31{bottom:458.560000pt;}
.ya5{bottom:458.693333pt;}
.y5a{bottom:460.026667pt;}
.y41{bottom:460.386667pt;}
.yd{bottom:460.613333pt;}
.y75{bottom:464.986667pt;}
.y61{bottom:469.120000pt;}
.y69{bottom:475.586667pt;}
.y95{bottom:479.613333pt;}
.y1e{bottom:484.733333pt;}
.y30{bottom:490.266667pt;}
.y14{bottom:495.746667pt;}
.y40{bottom:495.933333pt;}
.yad{bottom:496.986667pt;}
.y4e{bottom:497.853333pt;}
.y5d{bottom:505.413333pt;}
.yc4{bottom:510.880000pt;}
.y2f{bottom:522.426667pt;}
.y2e{bottom:539.973333pt;}
.yc{bottom:544.893333pt;}
.y7b{bottom:556.226667pt;}
.y8f{bottom:563.426667pt;}
.y13{bottom:568.093333pt;}
.y3f{bottom:571.133333pt;}
.yac{bottom:582.146667pt;}
.y60{bottom:598.373333pt;}
.ycd{bottom:600.666667pt;}
.y8e{bottom:600.893333pt;}
.y74{bottom:601.666667pt;}
.y2d{bottom:602.306667pt;}
.y85{bottom:607.933333pt;}
.y86{bottom:613.893333pt;}
.y59{bottom:619.680000pt;}
.yb{bottom:621.573333pt;}
.y2b{bottom:624.346667pt;}
.yab{bottom:634.053333pt;}
.y1d{bottom:636.733333pt;}
.y2c{bottom:639.773333pt;}
.ya{bottom:651.840000pt;}
.ycc{bottom:652.546667pt;}
.y8d{bottom:652.773333pt;}
.y1c{bottom:667.013333pt;}
.h5{height:78.231000pt;}
.h6{height:88.110000pt;}
.h7{height:88.243500pt;}
.ha{height:100.125000pt;}
.h9{height:100.258500pt;}
.h4{height:112.140000pt;}
.h3{height:112.273500pt;}
.h8{height:122.152500pt;}
.he{height:122.286000pt;}
.h17{height:125.193312pt;}
.h15{height:128.160000pt;}
.h16{height:128.293500pt;}
.hc{height:134.167500pt;}
.h2{height:134.301000pt;}
.h13{height:144.180000pt;}
.hb{height:144.313500pt;}
.h14{height:156.195000pt;}
.hd{height:156.328500pt;}
.h12{height:172.215000pt;}
.h11{height:172.348500pt;}
.h1{height:200.383500pt;}
.h10{height:222.411000pt;}
.hf{height:292.952667pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x11{left:20.800000pt;}
.x10{left:25.600000pt;}
.x1e{left:36.064000pt;}
.x2f{left:39.264000pt;}
.x30{left:42.240000pt;}
.x32{left:43.712000pt;}
.x2a{left:48.416000pt;}
.x33{left:54.528000pt;}
.x26{left:56.448000pt;}
.x24{left:63.168000pt;}
.x28{left:65.248000pt;}
.xd{left:73.536000pt;}
.xc{left:74.720000pt;}
.x40{left:80.032000pt;}
.x2c{left:87.008000pt;}
.x14{left:89.600000pt;}
.x18{left:94.272000pt;}
.x1b{left:98.016000pt;}
.x42{left:99.328000pt;}
.x36{left:100.544000pt;}
.x3b{left:101.824000pt;}
.x3c{left:106.176000pt;}
.x3d{left:117.440000pt;}
.x2d{left:123.040000pt;}
.x15{left:125.632000pt;}
.x1f{left:127.392000pt;}
.xe{left:132.608000pt;}
.x38{left:133.533333pt;}
.x2e{left:134.906667pt;}
.x16{left:163.546667pt;}
.x37{left:206.053333pt;}
.x1{left:211.266667pt;}
.x3a{left:226.373333pt;}
.x9{left:326.213333pt;}
.x45{left:333.760000pt;}
.x25{left:369.053333pt;}
.x34{left:391.933333pt;}
.x31{left:428.480000pt;}
.x1d{left:433.120000pt;}
.xf{left:439.453333pt;}
.xb{left:488.453333pt;}
.x19{left:489.626667pt;}
.x21{left:495.586667pt;}
.x23{left:536.893333pt;}
.x20{left:542.946667pt;}
.x8{left:545.666667pt;}
.x44{left:553.253333pt;}
.x1a{left:578.946667pt;}
.x41{left:603.173333pt;}
.x29{left:605.733333pt;}
.x2{left:629.093333pt;}
.x1c{left:647.906667pt;}
.x22{left:680.000000pt;}
.x35{left:685.786667pt;}
.x7{left:694.560000pt;}
.x43{left:702.106667pt;}
.x5{left:713.146667pt;}
.xa{left:726.173333pt;}
.x17{left:729.626667pt;}
.x12{left:742.106667pt;}
.x13{left:745.506667pt;}
.x3{left:759.266667pt;}
.x4{left:791.906667pt;}
.x3e{left:800.733333pt;}
.x3f{left:802.306667pt;}
.x39{left:808.226667pt;}
.x27{left:881.413333pt;}
.x2b{left:882.853333pt;}
.x6{left:891.973333pt;}
}




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