
    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_917271aaa30c0bab07b40325.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b1ff4d5c6ceb8bea23069b87.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_870d13a30b92899dc2d9d750.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_14ef04c0efbadccd0c17e7b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_a60fc70758531a0344f44238.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_de15dc3dd54d053c4a943110.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_b8b2393984f4224d49118980.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_60e185dc823f9c7861556f7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_ad8e8f89c6007aab47a64c74.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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_04877b5b7b128be697129a66.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.207448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207448,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.lsa{letter-spacing:-3.924000px;}
.ls9{letter-spacing:-3.240000px;}
.ls24{letter-spacing:-0.684000px;}
.ls2f{letter-spacing:-0.346200px;}
.ls5b{letter-spacing:-0.317400px;}
.ls75{letter-spacing:-0.309600px;}
.ls1f{letter-spacing:-0.250800px;}
.ls79{letter-spacing:-0.234600px;}
.ls77{letter-spacing:-0.198600px;}
.lsb{letter-spacing:-0.180000px;}
.ls66{letter-spacing:-0.133200px;}
.ls65{letter-spacing:-0.126000px;}
.ls64{letter-spacing:-0.047400px;}
.ls76{letter-spacing:-0.009360px;}
.ls8{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.019320px;}
.ls28{letter-spacing:0.040646px;}
.ls3f{letter-spacing:0.051600px;}
.ls36{letter-spacing:0.051865px;}
.ls52{letter-spacing:0.098395px;}
.ls40{letter-spacing:0.173066px;}
.ls78{letter-spacing:0.269400px;}
.ls25{letter-spacing:0.291600px;}
.ls15{letter-spacing:0.346132px;}
.ls22{letter-spacing:0.349200px;}
.ls74{letter-spacing:0.360000px;}
.ls7b{letter-spacing:0.369600px;}
.ls7a{letter-spacing:0.378600px;}
.ls20{letter-spacing:0.387600px;}
.ls2e{letter-spacing:0.397200px;}
.ls5a{letter-spacing:0.418800px;}
.lsf{letter-spacing:0.439582px;}
.ls53{letter-spacing:0.478839px;}
.ls21{letter-spacing:0.511800px;}
.ls13{letter-spacing:0.579408px;}
.ls26{letter-spacing:0.619002px;}
.ls3d{letter-spacing:0.642000px;}
.ls0{letter-spacing:0.696000px;}
.ls1{letter-spacing:0.696037px;}
.ls17{letter-spacing:0.705770px;}
.ls3e{letter-spacing:0.714000px;}
.ls42{letter-spacing:0.714252px;}
.ls18{letter-spacing:0.715399px;}
.ls54{letter-spacing:0.723124px;}
.ls3a{letter-spacing:0.749154px;}
.ls4c{letter-spacing:0.750000px;}
.ls5c{letter-spacing:0.756000px;}
.ls32{letter-spacing:0.824841px;}
.ls41{letter-spacing:0.836599px;}
.ls3b{letter-spacing:0.861959px;}
.ls37{letter-spacing:0.864000px;}
.ls58{letter-spacing:0.926374px;}
.ls16{letter-spacing:1.008000px;}
.ls4b{letter-spacing:1.139610px;}
.ls59{letter-spacing:1.500133px;}
.ls7{letter-spacing:2.419762px;}
.ls6{letter-spacing:3.110343px;}
.ls56{letter-spacing:3.800925px;}
.ls4{letter-spacing:4.140000px;}
.ls57{letter-spacing:4.491506px;}
.ls6f{letter-spacing:4.860000px;}
.ls70{letter-spacing:5.580000px;}
.ls14{letter-spacing:5.872668px;}
.ls71{letter-spacing:6.300000px;}
.ls12{letter-spacing:6.563250px;}
.ls61{letter-spacing:7.020000px;}
.ls6b{letter-spacing:7.200000px;}
.ls62{letter-spacing:7.740000px;}
.ls72{letter-spacing:8.460000px;}
.ls73{letter-spacing:8.640000px;}
.ls67{letter-spacing:10.620000px;}
.ls4e{letter-spacing:10.706737px;}
.ls69{letter-spacing:10.740000px;}
.ls68{letter-spacing:11.340000px;}
.ls46{letter-spacing:11.397318px;}
.ls6a{letter-spacing:11.520000px;}
.ls1d{letter-spacing:12.060000px;}
.ls2d{letter-spacing:12.258872px;}
.ls1e{letter-spacing:12.780000px;}
.ls4a{letter-spacing:13.469062px;}
.ls3c{letter-spacing:14.770799px;}
.ls63{letter-spacing:16.921968px;}
.ls4d{letter-spacing:18.303131px;}
.ls6e{letter-spacing:18.993712px;}
.ls1a{letter-spacing:19.680000px;}
.ls23{letter-spacing:20.400000px;}
.ls6d{letter-spacing:20.700000px;}
.ls6c{letter-spacing:21.420000px;}
.lse{letter-spacing:22.446618px;}
.ls10{letter-spacing:23.137199px;}
.ls5e{letter-spacing:23.827781px;}
.ls38{letter-spacing:25.387332px;}
.ls39{letter-spacing:25.497921px;}
.ls2b{letter-spacing:29.352430px;}
.ls2c{letter-spacing:29.525076px;}
.ls29{letter-spacing:31.424174px;}
.ls27{letter-spacing:31.596819px;}
.ls2a{letter-spacing:32.114755px;}
.ls30{letter-spacing:34.013265px;}
.ls31{letter-spacing:34.676798px;}
.ls4f{letter-spacing:37.994465px;}
.ls51{letter-spacing:38.657998px;}
.ls50{letter-spacing:38.768587px;}
.ls45{letter-spacing:39.020568px;}
.ls43{letter-spacing:39.711149px;}
.ls44{letter-spacing:40.401730px;}
.ls11{letter-spacing:41.092312px;}
.lsc{letter-spacing:45.926380px;}
.ls2{letter-spacing:46.616961px;}
.ls19{letter-spacing:51.480000px;}
.ls55{letter-spacing:52.832193px;}
.ls48{letter-spacing:60.428586px;}
.ls47{letter-spacing:60.601232px;}
.ls49{letter-spacing:61.119167px;}
.ls60{letter-spacing:63.363556px;}
.ls5f{letter-spacing:63.881492px;}
.lsd{letter-spacing:67.334399px;}
.ls3{letter-spacing:69.406142px;}
.ls33{letter-spacing:73.825264px;}
.ls35{letter-spacing:74.488797px;}
.ls34{letter-spacing:74.654681px;}
.ls1b{letter-spacing:92.700000px;}
.ls1c{letter-spacing:93.420000px;}
.ls5{letter-spacing:94.957648px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-84.240000px;}
.ws1{word-spacing:-27.000000px;}
.ws13{word-spacing:-21.816000px;}
.ws11{word-spacing:-21.810000px;}
.wsf{word-spacing:-21.774000px;}
.ws6{word-spacing:-21.756000px;}
.wse{word-spacing:-21.702000px;}
.wsa{word-spacing:-21.571800px;}
.ws12{word-spacing:-21.478800px;}
.ws9{word-spacing:-21.447600px;}
.ws1b{word-spacing:-21.438600px;}
.ws1c{word-spacing:-21.429600px;}
.ws15{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.409200px;}
.wsc{word-spacing:-21.351600px;}
.ws19{word-spacing:-21.329400px;}
.ws10{word-spacing:-21.111600px;}
.ws14{word-spacing:-21.079320px;}
.ws2{word-spacing:-21.060000px;}
.ws17{word-spacing:-21.050640px;}
.ws18{word-spacing:-20.861400px;}
.ws1a{word-spacing:-20.825400px;}
.ws8{word-spacing:-20.809200px;}
.ws16{word-spacing:-20.750400px;}
.wsd{word-spacing:-20.713800px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.820000px;}
.ws4{word-spacing:-17.136000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-8.773920px;}
._5{margin-left:-7.689120px;}
._37{margin-left:-6.676800px;}
._6{margin-left:-5.054400px;}
._3{margin-left:-3.622320px;}
._2{margin-left:-2.190240px;}
._1{margin-left:-1.090320px;}
._0{width:1.068000px;}
._1f{width:2.298279px;}
._10{width:3.708208px;}
._b{width:4.828800px;}
._2c{width:6.092400px;}
._27{width:7.356000px;}
._34{width:8.592480px;}
._2e{width:9.940320px;}
._12{width:11.258160px;}
._13{width:12.831600px;}
._26{width:14.010960px;}
._28{width:15.106080px;}
._29{width:16.201200px;}
._39{width:17.853120px;}
._24{width:19.233840px;}
._1e{width:22.425243px;}
._1d{width:24.113959px;}
._14{width:25.242000px;}
._25{width:26.255801px;}
._15{width:28.072607px;}
._e{width:29.369760px;}
._11{width:30.970320px;}
._31{width:32.013097px;}
._18{width:33.058888px;}
._2a{width:35.435040px;}
._21{width:37.698720px;}
._1a{width:39.340080px;}
._1b{width:40.456560px;}
._2b{width:42.511200px;}
._22{width:43.552080px;}
._23{width:45.152640px;}
._33{width:46.160640px;}
._32{width:47.675040px;}
._36{width:48.763920px;}
._7{width:49.824000px;}
._8{width:51.636240px;}
._f{width:52.677120px;}
._1c{width:57.141840px;}
._16{width:61.016880px;}
._3b{width:62.084880px;}
._3a{width:63.180000px;}
._3c{width:64.477451px;}
._2d{width:65.565840px;}
._20{width:77.411760px;}
._2f{width:78.950304px;}
._9{width:88.169280px;}
._a{width:89.661360px;}
._19{width:92.354160px;}
._17{width:94.921997px;}
._d{width:96.593280px;}
._38{width:101.199360px;}
._c{width:110.988948px;}
._30{width:121.696800px;}
._35{width:749.640000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.980000px;}
.y2{bottom:4.320000px;}
.y3{bottom:5.940000px;}
.y8{bottom:9.180000px;}
.y3b{bottom:21.420000px;}
.y9{bottom:25.200000px;}
.y3a{bottom:45.540000px;}
.y7{bottom:53.460000px;}
.y39{bottom:73.836000px;}
.y64{bottom:126.756000px;}
.y26{bottom:138.276000px;}
.y57{bottom:151.050000px;}
.y63{bottom:163.110000px;}
.y25{bottom:174.450000px;}
.y56{bottom:187.230000px;}
.y62{bottom:199.290000px;}
.y24{bottom:210.630000px;}
.y55{bottom:223.410000px;}
.y61{bottom:235.470000px;}
.y23{bottom:246.990000px;}
.y54{bottom:259.590000px;}
.y60{bottom:271.650000px;}
.y22{bottom:283.170000px;}
.y53{bottom:295.770000px;}
.y5f{bottom:308.010000px;}
.y21{bottom:319.350000px;}
.y52{bottom:332.130000px;}
.y5e{bottom:344.235000px;}
.y20{bottom:355.530000px;}
.y35{bottom:358.230000px;}
.y51{bottom:368.355000px;}
.y5d{bottom:380.415000px;}
.y1f{bottom:391.755000px;}
.y34{bottom:394.635000px;}
.y50{bottom:404.535000px;}
.y5c{bottom:416.595000px;}
.y1e{bottom:428.115000px;}
.y33{bottom:430.815000px;}
.y4f{bottom:440.715000px;}
.y5b{bottom:452.775000px;}
.y1d{bottom:464.295000px;}
.y32{bottom:466.995000px;}
.y4e{bottom:477.075000px;}
.y5a{bottom:489.135000px;}
.y1c{bottom:500.475000px;}
.y31{bottom:503.175000px;}
.y4d{bottom:513.255000px;}
.y59{bottom:525.315000px;}
.y1b{bottom:536.655000px;}
.y30{bottom:539.355000px;}
.y4c{bottom:549.435000px;}
.y58{bottom:561.495000px;}
.y1a{bottom:573.015000px;}
.y2f{bottom:575.715000px;}
.y4b{bottom:585.615000px;}
.y19{bottom:609.195000px;}
.y2e{bottom:611.895000px;}
.y4a{bottom:622.005000px;}
.y18{bottom:645.405000px;}
.y2d{bottom:648.105000px;}
.y49{bottom:658.185000px;}
.y17{bottom:681.585000px;}
.y2c{bottom:684.285000px;}
.y48{bottom:694.365000px;}
.y16{bottom:717.945000px;}
.y2b{bottom:720.645000px;}
.y47{bottom:730.545000px;}
.y15{bottom:754.305000px;}
.y2a{bottom:756.825000px;}
.y46{bottom:766.905000px;}
.y14{bottom:790.665000px;}
.y29{bottom:793.005000px;}
.y45{bottom:803.085000px;}
.y13{bottom:818.385000px;}
.y28{bottom:829.185000px;}
.y44{bottom:839.265000px;}
.y12{bottom:846.105000px;}
.y27{bottom:865.545000px;}
.y11{bottom:874.005000px;}
.y43{bottom:875.490000px;}
.y10{bottom:901.770000px;}
.y42{bottom:911.670000px;}
.yf{bottom:937.950000px;}
.y41{bottom:948.030000px;}
.ye{bottom:974.130000px;}
.y40{bottom:984.210000px;}
.yd{bottom:1010.310000px;}
.y3f{bottom:1020.390000px;}
.yc{bottom:1046.670000px;}
.y3e{bottom:1056.570000px;}
.yb{bottom:1082.850000px;}
.y3d{bottom:1092.930000px;}
.ya{bottom:1119.030000px;}
.y3c{bottom:1129.110000px;}
.y6{bottom:1143.150000px;}
.y38{bottom:1153.260000px;}
.y4{bottom:1162.800000px;}
.y37{bottom:1172.880000px;}
.y1{bottom:1188.180000px;}
.y36{bottom:1198.260000px;}
.h5{height:14.580000px;}
.h2{height:21.420000px;}
.h7{height:31.140000px;}
.h4{height:52.998047px;}
.hd{height:54.597656px;}
.h10{height:59.066719px;}
.hb{height:59.436914px;}
.hf{height:68.362734px;}
.he{height:69.432187px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:82.635820px;}
.h6{height:82.676953px;}
.ha{height:84.898125px;}
.h12{height:86.585445px;}
.h9{height:108.843750px;}
.h11{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:44.100000px;}
.w6{width:62.820000px;}
.wb{width:63.036000px;}
.wa{width:728.430000px;}
.w5{width:728.820000px;}
.w8{width:840.240000px;}
.w2{width:840.600000px;}
.w9{width:892.979987px;}
.w7{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x5{left:8.640000px;}
.x9{left:18.000000px;}
.x4{left:35.460000px;}
.x7{left:54.720000px;}
.x2{left:72.720000px;}
.x6{left:84.995987px;}
.xb{left:117.035987px;}
.x67{left:122.255987px;}
.xa{left:127.475987px;}
.x82{left:130.355987px;}
.x28{left:140.795987px;}
.xf{left:146.915987px;}
.x29{left:148.895987px;}
.x64{left:157.889987px;}
.x25{left:161.309987px;}
.x18{left:165.989987px;}
.x5f{left:171.749987px;}
.x36{left:182.549987px;}
.x6c{left:189.209987px;}
.x1d{left:196.229987px;}
.x7d{left:202.889987px;}
.x49{left:206.669987px;}
.x1c{left:212.069987px;}
.x4a{left:214.049987px;}
.x37{left:219.269987px;}
.x39{left:225.029987px;}
.x3a{left:232.049987px;}
.x1a{left:237.449987px;}
.x4b{left:243.209987px;}
.x4c{left:250.769987px;}
.x17{left:255.674987px;}
.x3b{left:263.189987px;}
.x24{left:267.194987px;}
.x3c{left:270.389987px;}
.x6b{left:285.374987px;}
.x2a{left:305.174987px;}
.xd{left:307.514987px;}
.x68{left:308.954987px;}
.x62{left:312.554987px;}
.x2b{left:315.434987px;}
.x48{left:316.874987px;}
.x46{left:319.394987px;}
.x80{left:326.954987px;}
.x6f{left:333.074987px;}
.x57{left:341.714987px;}
.x3d{left:344.774987px;}
.x70{left:346.394987px;}
.x26{left:350.354987px;}
.x3e{left:351.794987px;}
.x4d{left:358.274987px;}
.x47{left:362.234987px;}
.x60{left:364.574987px;}
.x4e{left:365.654987px;}
.x19{left:379.334987px;}
.x7c{left:387.254987px;}
.x71{left:393.374987px;}
.x81{left:412.274987px;}
.x72{left:413.894987px;}
.x66{left:422.894987px;}
.x73{left:427.214987px;}
.x52{left:434.774987px;}
.x2c{left:443.054987px;}
.x7f{left:445.394987px;}
.x16{left:446.684987px;}
.x74{left:448.994987px;}
.x2d{left:453.314987px;}
.x75{left:462.314987px;}
.x1f{left:468.284987px;}
.x34{left:482.684987px;}
.x2e{left:484.484987px;}
.x6d{left:485.564987px;}
.x7e{left:487.184987px;}
.x3f{left:490.064987px;}
.x58{left:493.664987px;}
.x2f{left:494.744987px;}
.x40{left:497.264987px;}
.x10{left:512.744987px;}
.x76{left:514.184987px;}
.x4f{left:515.264987px;}
.x77{left:527.504987px;}
.x6e{left:531.284987px;}
.x69{left:545.144987px;}
.x50{left:552.524987px;}
.xc{left:565.844987px;}
.x5a{left:568.724987px;}
.x5d{left:583.664987px;}
.xe{left:585.824987px;}
.x6a{left:588.704987px;}
.x30{left:595.904987px;}
.x78{left:601.484987px;}
.x5b{left:606.884987px;}
.x27{left:609.764987px;}
.x35{left:611.744987px;}
.x79{left:614.804987px;}
.x5e{left:625.244987px;}
.x51{left:630.824987px;}
.x55{left:633.704987px;}
.x5c{left:636.764987px;}
.x38{left:641.264987px;}
.x11{left:642.929987px;}
.x12{left:649.409987px;}
.x45{left:655.889987px;}
.x13{left:660.209987px;}
.x59{left:662.909987px;}
.x7a{left:664.529987px;}
.x14{left:666.869987px;}
.x7b{left:669.929987px;}
.x56{left:676.409987px;}
.x41{left:690.629987px;}
.x23{left:698.189987px;}
.x31{left:702.869987px;}
.x1b{left:708.989987px;}
.x32{left:713.129987px;}
.x21{left:732.029987px;}
.x42{left:743.009987px;}
.x53{left:753.629987px;}
.x20{left:755.969987px;}
.x15{left:768.959987px;}
.x61{left:772.889987px;}
.x22{left:775.799987px;}
.x44{left:778.649987px;}
.x43{left:781.709987px;}
.x8{left:783.540000px;}
.x54{left:796.649987px;}
.x1e{left:799.019987px;}
.x63{left:802.229987px;}
.x65{left:803.849987px;}
.x33{left:807.989987px;}
.x3{left:844.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-3.488000pt;}
.ls9{letter-spacing:-2.880000pt;}
.ls24{letter-spacing:-0.608000pt;}
.ls2f{letter-spacing:-0.307733pt;}
.ls5b{letter-spacing:-0.282133pt;}
.ls75{letter-spacing:-0.275200pt;}
.ls1f{letter-spacing:-0.222933pt;}
.ls79{letter-spacing:-0.208533pt;}
.ls77{letter-spacing:-0.176533pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls66{letter-spacing:-0.118400pt;}
.ls65{letter-spacing:-0.112000pt;}
.ls64{letter-spacing:-0.042133pt;}
.ls76{letter-spacing:-0.008320pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.017173pt;}
.ls28{letter-spacing:0.036129pt;}
.ls3f{letter-spacing:0.045867pt;}
.ls36{letter-spacing:0.046103pt;}
.ls52{letter-spacing:0.087462pt;}
.ls40{letter-spacing:0.153837pt;}
.ls78{letter-spacing:0.239467pt;}
.ls25{letter-spacing:0.259200pt;}
.ls15{letter-spacing:0.307673pt;}
.ls22{letter-spacing:0.310400pt;}
.ls74{letter-spacing:0.320000pt;}
.ls7b{letter-spacing:0.328533pt;}
.ls7a{letter-spacing:0.336533pt;}
.ls20{letter-spacing:0.344533pt;}
.ls2e{letter-spacing:0.353067pt;}
.ls5a{letter-spacing:0.372267pt;}
.lsf{letter-spacing:0.390739pt;}
.ls53{letter-spacing:0.425635pt;}
.ls21{letter-spacing:0.454933pt;}
.ls13{letter-spacing:0.515029pt;}
.ls26{letter-spacing:0.550224pt;}
.ls3d{letter-spacing:0.570667pt;}
.ls0{letter-spacing:0.618667pt;}
.ls1{letter-spacing:0.618699pt;}
.ls17{letter-spacing:0.627351pt;}
.ls3e{letter-spacing:0.634667pt;}
.ls42{letter-spacing:0.634891pt;}
.ls18{letter-spacing:0.635910pt;}
.ls54{letter-spacing:0.642777pt;}
.ls3a{letter-spacing:0.665915pt;}
.ls4c{letter-spacing:0.666667pt;}
.ls5c{letter-spacing:0.672000pt;}
.ls32{letter-spacing:0.733192pt;}
.ls41{letter-spacing:0.743644pt;}
.ls3b{letter-spacing:0.766186pt;}
.ls37{letter-spacing:0.768000pt;}
.ls58{letter-spacing:0.823444pt;}
.ls16{letter-spacing:0.896000pt;}
.ls4b{letter-spacing:1.012986pt;}
.ls59{letter-spacing:1.333451pt;}
.ls7{letter-spacing:2.150900pt;}
.ls6{letter-spacing:2.764750pt;}
.ls56{letter-spacing:3.378600pt;}
.ls4{letter-spacing:3.680000pt;}
.ls57{letter-spacing:3.992450pt;}
.ls6f{letter-spacing:4.320000pt;}
.ls70{letter-spacing:4.960000pt;}
.ls14{letter-spacing:5.220150pt;}
.ls71{letter-spacing:5.600000pt;}
.ls12{letter-spacing:5.834000pt;}
.ls61{letter-spacing:6.240000pt;}
.ls6b{letter-spacing:6.400000pt;}
.ls62{letter-spacing:6.880000pt;}
.ls72{letter-spacing:7.520000pt;}
.ls73{letter-spacing:7.680000pt;}
.ls67{letter-spacing:9.440000pt;}
.ls4e{letter-spacing:9.517100pt;}
.ls69{letter-spacing:9.546667pt;}
.ls68{letter-spacing:10.080000pt;}
.ls46{letter-spacing:10.130950pt;}
.ls6a{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:10.720000pt;}
.ls2d{letter-spacing:10.896775pt;}
.ls1e{letter-spacing:11.360000pt;}
.ls4a{letter-spacing:11.972500pt;}
.ls3c{letter-spacing:13.129599pt;}
.ls63{letter-spacing:15.041749pt;}
.ls4d{letter-spacing:16.269449pt;}
.ls6e{letter-spacing:16.883299pt;}
.ls1a{letter-spacing:17.493333pt;}
.ls23{letter-spacing:18.133333pt;}
.ls6d{letter-spacing:18.400000pt;}
.ls6c{letter-spacing:19.040000pt;}
.lse{letter-spacing:19.952549pt;}
.ls10{letter-spacing:20.566399pt;}
.ls5e{letter-spacing:21.180249pt;}
.ls38{letter-spacing:22.566517pt;}
.ls39{letter-spacing:22.664819pt;}
.ls2b{letter-spacing:26.091049pt;}
.ls2c{letter-spacing:26.244512pt;}
.ls29{letter-spacing:27.932599pt;}
.ls27{letter-spacing:28.086062pt;}
.ls2a{letter-spacing:28.546449pt;}
.ls30{letter-spacing:30.234013pt;}
.ls31{letter-spacing:30.823821pt;}
.ls4f{letter-spacing:33.772858pt;}
.ls51{letter-spacing:34.362665pt;}
.ls50{letter-spacing:34.460966pt;}
.ls45{letter-spacing:34.684949pt;}
.ls43{letter-spacing:35.298799pt;}
.ls44{letter-spacing:35.912649pt;}
.ls11{letter-spacing:36.526499pt;}
.lsc{letter-spacing:40.823449pt;}
.ls2{letter-spacing:41.437299pt;}
.ls19{letter-spacing:45.760000pt;}
.ls55{letter-spacing:46.961949pt;}
.ls48{letter-spacing:53.714299pt;}
.ls47{letter-spacing:53.867761pt;}
.ls49{letter-spacing:54.328149pt;}
.ls60{letter-spacing:56.323161pt;}
.ls5f{letter-spacing:56.783549pt;}
.lsd{letter-spacing:59.852799pt;}
.ls3{letter-spacing:61.694349pt;}
.ls33{letter-spacing:65.622457pt;}
.ls35{letter-spacing:66.212264pt;}
.ls34{letter-spacing:66.359716pt;}
.ls1b{letter-spacing:82.400000pt;}
.ls1c{letter-spacing:83.040000pt;}
.ls5{letter-spacing:84.406798pt;}
.ws5{word-spacing:-74.880000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws13{word-spacing:-19.392000pt;}
.ws11{word-spacing:-19.386667pt;}
.wsf{word-spacing:-19.354667pt;}
.ws6{word-spacing:-19.338667pt;}
.wse{word-spacing:-19.290667pt;}
.wsa{word-spacing:-19.174933pt;}
.ws12{word-spacing:-19.092267pt;}
.ws9{word-spacing:-19.064533pt;}
.ws1b{word-spacing:-19.056533pt;}
.ws1c{word-spacing:-19.048533pt;}
.ws15{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.030400pt;}
.wsc{word-spacing:-18.979200pt;}
.ws19{word-spacing:-18.959467pt;}
.ws10{word-spacing:-18.765867pt;}
.ws14{word-spacing:-18.737173pt;}
.ws2{word-spacing:-18.720000pt;}
.ws17{word-spacing:-18.711680pt;}
.ws18{word-spacing:-18.543467pt;}
.ws1a{word-spacing:-18.511467pt;}
.ws8{word-spacing:-18.497067pt;}
.ws16{word-spacing:-18.444800pt;}
.wsd{word-spacing:-18.412267pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.840000pt;}
.ws4{word-spacing:-15.232000pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-7.799040pt;}
._5{margin-left:-6.834773pt;}
._37{margin-left:-5.934933pt;}
._6{margin-left:-4.492800pt;}
._3{margin-left:-3.219840pt;}
._2{margin-left:-1.946880pt;}
._1{margin-left:-0.969173pt;}
._0{width:0.949333pt;}
._1f{width:2.042914pt;}
._10{width:3.296185pt;}
._b{width:4.292267pt;}
._2c{width:5.415467pt;}
._27{width:6.538667pt;}
._34{width:7.637760pt;}
._2e{width:8.835840pt;}
._12{width:10.007253pt;}
._13{width:11.405867pt;}
._26{width:12.454187pt;}
._28{width:13.427627pt;}
._29{width:14.401067pt;}
._39{width:15.869440pt;}
._24{width:17.096747pt;}
._1e{width:19.933550pt;}
._1d{width:21.434630pt;}
._14{width:22.437333pt;}
._25{width:23.338490pt;}
._15{width:24.953429pt;}
._e{width:26.106453pt;}
._11{width:27.529173pt;}
._31{width:28.456086pt;}
._18{width:29.385678pt;}
._2a{width:31.497813pt;}
._21{width:33.509973pt;}
._1a{width:34.968960pt;}
._1b{width:35.961387pt;}
._2b{width:37.787733pt;}
._22{width:38.712960pt;}
._23{width:40.135680pt;}
._33{width:41.031680pt;}
._32{width:42.377813pt;}
._36{width:43.345707pt;}
._7{width:44.288000pt;}
._8{width:45.898880pt;}
._f{width:46.824107pt;}
._1c{width:50.792747pt;}
._16{width:54.237227pt;}
._3b{width:55.186560pt;}
._3a{width:56.160000pt;}
._3c{width:57.313290pt;}
._2d{width:58.280747pt;}
._20{width:68.810453pt;}
._2f{width:70.178048pt;}
._9{width:78.372693pt;}
._a{width:79.698987pt;}
._19{width:82.092587pt;}
._17{width:84.375109pt;}
._d{width:85.860693pt;}
._38{width:89.954987pt;}
._c{width:98.656842pt;}
._30{width:108.174933pt;}
._35{width:666.346667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.760000pt;}
.y2{bottom:3.840000pt;}
.y3{bottom:5.280000pt;}
.y8{bottom:8.160000pt;}
.y3b{bottom:19.040000pt;}
.y9{bottom:22.400000pt;}
.y3a{bottom:40.480000pt;}
.y7{bottom:47.520000pt;}
.y39{bottom:65.632000pt;}
.y64{bottom:112.672000pt;}
.y26{bottom:122.912000pt;}
.y57{bottom:134.266667pt;}
.y63{bottom:144.986667pt;}
.y25{bottom:155.066667pt;}
.y56{bottom:166.426667pt;}
.y62{bottom:177.146667pt;}
.y24{bottom:187.226667pt;}
.y55{bottom:198.586667pt;}
.y61{bottom:209.306667pt;}
.y23{bottom:219.546667pt;}
.y54{bottom:230.746667pt;}
.y60{bottom:241.466667pt;}
.y22{bottom:251.706667pt;}
.y53{bottom:262.906667pt;}
.y5f{bottom:273.786667pt;}
.y21{bottom:283.866667pt;}
.y52{bottom:295.226667pt;}
.y5e{bottom:305.986667pt;}
.y20{bottom:316.026667pt;}
.y35{bottom:318.426667pt;}
.y51{bottom:327.426667pt;}
.y5d{bottom:338.146667pt;}
.y1f{bottom:348.226667pt;}
.y34{bottom:350.786667pt;}
.y50{bottom:359.586667pt;}
.y5c{bottom:370.306667pt;}
.y1e{bottom:380.546667pt;}
.y33{bottom:382.946667pt;}
.y4f{bottom:391.746667pt;}
.y5b{bottom:402.466667pt;}
.y1d{bottom:412.706667pt;}
.y32{bottom:415.106667pt;}
.y4e{bottom:424.066667pt;}
.y5a{bottom:434.786667pt;}
.y1c{bottom:444.866667pt;}
.y31{bottom:447.266667pt;}
.y4d{bottom:456.226667pt;}
.y59{bottom:466.946667pt;}
.y1b{bottom:477.026667pt;}
.y30{bottom:479.426667pt;}
.y4c{bottom:488.386667pt;}
.y58{bottom:499.106667pt;}
.y1a{bottom:509.346667pt;}
.y2f{bottom:511.746667pt;}
.y4b{bottom:520.546667pt;}
.y19{bottom:541.506667pt;}
.y2e{bottom:543.906667pt;}
.y4a{bottom:552.893333pt;}
.y18{bottom:573.693333pt;}
.y2d{bottom:576.093333pt;}
.y49{bottom:585.053333pt;}
.y17{bottom:605.853333pt;}
.y2c{bottom:608.253333pt;}
.y48{bottom:617.213333pt;}
.y16{bottom:638.173333pt;}
.y2b{bottom:640.573333pt;}
.y47{bottom:649.373333pt;}
.y15{bottom:670.493333pt;}
.y2a{bottom:672.733333pt;}
.y46{bottom:681.693333pt;}
.y14{bottom:702.813333pt;}
.y29{bottom:704.893333pt;}
.y45{bottom:713.853333pt;}
.y13{bottom:727.453333pt;}
.y28{bottom:737.053333pt;}
.y44{bottom:746.013333pt;}
.y12{bottom:752.093333pt;}
.y27{bottom:769.373333pt;}
.y11{bottom:776.893333pt;}
.y43{bottom:778.213333pt;}
.y10{bottom:801.573333pt;}
.y42{bottom:810.373333pt;}
.yf{bottom:833.733333pt;}
.y41{bottom:842.693333pt;}
.ye{bottom:865.893333pt;}
.y40{bottom:874.853333pt;}
.yd{bottom:898.053333pt;}
.y3f{bottom:907.013333pt;}
.yc{bottom:930.373333pt;}
.y3e{bottom:939.173333pt;}
.yb{bottom:962.533333pt;}
.y3d{bottom:971.493333pt;}
.ya{bottom:994.693333pt;}
.y3c{bottom:1003.653333pt;}
.y6{bottom:1016.133333pt;}
.y38{bottom:1025.120000pt;}
.y4{bottom:1033.600000pt;}
.y37{bottom:1042.560000pt;}
.y1{bottom:1056.160000pt;}
.y36{bottom:1065.120000pt;}
.h5{height:12.960000pt;}
.h2{height:19.040000pt;}
.h7{height:27.680000pt;}
.h4{height:47.109375pt;}
.hd{height:48.531250pt;}
.h10{height:52.503750pt;}
.hb{height:52.832812pt;}
.hf{height:60.766875pt;}
.he{height:61.717500pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:73.454062pt;}
.h6{height:73.490625pt;}
.ha{height:75.465000pt;}
.h12{height:76.964840pt;}
.h9{height:96.750000pt;}
.h11{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:39.200000pt;}
.w6{width:55.840000pt;}
.wb{width:56.032000pt;}
.wa{width:647.493333pt;}
.w5{width:647.840000pt;}
.w8{width:746.880000pt;}
.w2{width:747.200000pt;}
.w9{width:793.759988pt;}
.w7{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x5{left:7.680000pt;}
.x9{left:16.000000pt;}
.x4{left:31.520000pt;}
.x7{left:48.640000pt;}
.x2{left:64.640000pt;}
.x6{left:75.551988pt;}
.xb{left:104.031988pt;}
.x67{left:108.671988pt;}
.xa{left:113.311988pt;}
.x82{left:115.871988pt;}
.x28{left:125.151988pt;}
.xf{left:130.591988pt;}
.x29{left:132.351988pt;}
.x64{left:140.346655pt;}
.x25{left:143.386655pt;}
.x18{left:147.546655pt;}
.x5f{left:152.666655pt;}
.x36{left:162.266655pt;}
.x6c{left:168.186655pt;}
.x1d{left:174.426655pt;}
.x7d{left:180.346655pt;}
.x49{left:183.706655pt;}
.x1c{left:188.506655pt;}
.x4a{left:190.266655pt;}
.x37{left:194.906655pt;}
.x39{left:200.026655pt;}
.x3a{left:206.266655pt;}
.x1a{left:211.066655pt;}
.x4b{left:216.186655pt;}
.x4c{left:222.906655pt;}
.x17{left:227.266655pt;}
.x3b{left:233.946655pt;}
.x24{left:237.506655pt;}
.x3c{left:240.346655pt;}
.x6b{left:253.666655pt;}
.x2a{left:271.266655pt;}
.xd{left:273.346655pt;}
.x68{left:274.626655pt;}
.x62{left:277.826655pt;}
.x2b{left:280.386655pt;}
.x48{left:281.666655pt;}
.x46{left:283.906655pt;}
.x80{left:290.626655pt;}
.x6f{left:296.066655pt;}
.x57{left:303.746655pt;}
.x3d{left:306.466655pt;}
.x70{left:307.906655pt;}
.x26{left:311.426655pt;}
.x3e{left:312.706655pt;}
.x4d{left:318.466655pt;}
.x47{left:321.986655pt;}
.x60{left:324.066655pt;}
.x4e{left:325.026655pt;}
.x19{left:337.186655pt;}
.x7c{left:344.226655pt;}
.x71{left:349.666655pt;}
.x81{left:366.466655pt;}
.x72{left:367.906655pt;}
.x66{left:375.906655pt;}
.x73{left:379.746655pt;}
.x52{left:386.466655pt;}
.x2c{left:393.826655pt;}
.x7f{left:395.906655pt;}
.x16{left:397.053321pt;}
.x74{left:399.106655pt;}
.x2d{left:402.946655pt;}
.x75{left:410.946655pt;}
.x1f{left:416.253321pt;}
.x34{left:429.053322pt;}
.x2e{left:430.653322pt;}
.x6d{left:431.613322pt;}
.x7e{left:433.053322pt;}
.x3f{left:435.613322pt;}
.x58{left:438.813322pt;}
.x2f{left:439.773322pt;}
.x40{left:442.013322pt;}
.x10{left:455.773322pt;}
.x76{left:457.053322pt;}
.x4f{left:458.013322pt;}
.x77{left:468.893322pt;}
.x6e{left:472.253322pt;}
.x69{left:484.573322pt;}
.x50{left:491.133322pt;}
.xc{left:502.973321pt;}
.x5a{left:505.533322pt;}
.x5d{left:518.813322pt;}
.xe{left:520.733322pt;}
.x6a{left:523.293322pt;}
.x30{left:529.693322pt;}
.x78{left:534.653322pt;}
.x5b{left:539.453322pt;}
.x27{left:542.013322pt;}
.x35{left:543.773322pt;}
.x79{left:546.493322pt;}
.x5e{left:555.773322pt;}
.x51{left:560.733322pt;}
.x55{left:563.293322pt;}
.x5c{left:566.013322pt;}
.x38{left:570.013322pt;}
.x11{left:571.493322pt;}
.x12{left:577.253321pt;}
.x45{left:583.013322pt;}
.x13{left:586.853321pt;}
.x59{left:589.253322pt;}
.x7a{left:590.693322pt;}
.x14{left:592.773321pt;}
.x7b{left:595.493322pt;}
.x56{left:601.253322pt;}
.x41{left:613.893322pt;}
.x23{left:620.613321pt;}
.x31{left:624.773322pt;}
.x1b{left:630.213322pt;}
.x32{left:633.893322pt;}
.x21{left:650.693322pt;}
.x42{left:660.453322pt;}
.x53{left:669.893322pt;}
.x20{left:671.973321pt;}
.x15{left:683.519988pt;}
.x61{left:687.013322pt;}
.x22{left:689.599988pt;}
.x44{left:692.133322pt;}
.x43{left:694.853322pt;}
.x8{left:696.480000pt;}
.x54{left:708.133322pt;}
.x1e{left:710.239988pt;}
.x63{left:713.093322pt;}
.x65{left:714.533322pt;}
.x33{left:718.213322pt;}
.x3{left:751.040000pt;}
}




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