
    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_ff6e0e79cf0cbd47106ad731.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_63173f454cb61cb9f474169f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_d57daa214bfdc2ce0f594486.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_cca9553dae0e2739b1db1e69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_0a85f0c6730add6f48aae152.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_94ee9d385bc6bf245d534278.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_b89631e5a4a5191e0076b5f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_88221dea9c3c3ba57399402c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_f0ac369a3aeae55074452721.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894531;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_99023093660c6573ec9778ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.907227;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_da5faee88a988e63bb231a4f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb9b197d48209e3fb3a42930.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_aa705ba6031dd79343d9867e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_da5faee88a988e63bb231a4f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e9f276473e6170aa35199eab.woff2')format("woff");}.fff{font-family:fff;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e6ce8b3d257131acbf371a19.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.075195;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:ff11;src:url('chunks/assets/font_702dbd28826793f762c467aa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v2{vertical-align:-16.200000px;}
.v5{vertical-align:-13.200000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:21.571612px;}
.ls45{letter-spacing:-13.635000px;}
.ls4b{letter-spacing:-13.320000px;}
.ls43{letter-spacing:-11.115000px;}
.ls30{letter-spacing:-10.845000px;}
.ls49{letter-spacing:-10.575000px;}
.ls3f{letter-spacing:-10.395000px;}
.ls44{letter-spacing:-10.305000px;}
.ls52{letter-spacing:-10.170000px;}
.ls47{letter-spacing:-9.990000px;}
.ls32{letter-spacing:-9.810000px;}
.ls46{letter-spacing:-9.450000px;}
.ls41{letter-spacing:-9.180000px;}
.ls4c{letter-spacing:-8.865000px;}
.ls48{letter-spacing:-8.325000px;}
.ls53{letter-spacing:-5.850000px;}
.ls31{letter-spacing:-4.995000px;}
.ls29{letter-spacing:-0.990000px;}
.ls21{letter-spacing:-0.390184px;}
.ls25{letter-spacing:-0.330000px;}
.ls42{letter-spacing:-0.300000px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000600px;}
.ls33{letter-spacing:0.007200px;}
.ls36{letter-spacing:0.007800px;}
.ls3c{letter-spacing:0.009000px;}
.ls19{letter-spacing:0.009600px;}
.ls18{letter-spacing:0.010200px;}
.ls2{letter-spacing:0.042000px;}
.ls50{letter-spacing:0.045000px;}
.ls4f{letter-spacing:0.059400px;}
.ls26{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.102000px;}
.ls23{letter-spacing:0.119400px;}
.ls22{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.132000px;}
.ls1f{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.198000px;}
.ls3e{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.264000px;}
.ls37{letter-spacing:0.268800px;}
.ls39{letter-spacing:0.270000px;}
.ls3d{letter-spacing:0.271200px;}
.ls38{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.396000px;}
.ls35{letter-spacing:0.450000px;}
.ls8{letter-spacing:0.462000px;}
.ls34{letter-spacing:0.463800px;}
.ls40{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.557406px;}
.ls2f{letter-spacing:0.557700px;}
.ls2d{letter-spacing:0.568800px;}
.ls2b{letter-spacing:0.569400px;}
.lsa{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.660000px;}
.ls4e{letter-spacing:0.675000px;}
.ls4d{letter-spacing:0.682800px;}
.ls1c{letter-spacing:0.726000px;}
.ls15{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.858000px;}
.ls2c{letter-spacing:0.886800px;}
.ls2a{letter-spacing:0.887400px;}
.ls14{letter-spacing:0.990000px;}
.ls2e{letter-spacing:0.996000px;}
.ls24{letter-spacing:1.020000px;}
.ls51{letter-spacing:1.140000px;}
.lse{letter-spacing:1.188000px;}
.ls17{letter-spacing:1.254000px;}
.ls3b{letter-spacing:1.260000px;}
.ls3a{letter-spacing:1.278000px;}
.ls11{letter-spacing:1.320000px;}
.ls13{letter-spacing:1.452000px;}
.ls12{letter-spacing:1.584000px;}
.ls27{letter-spacing:2.178000px;}
.ls20{letter-spacing:2.505000px;}
.ls4a{letter-spacing:8.760000px;}
.ls28{letter-spacing:10.441800px;}
.ls1{letter-spacing:10.656000px;}
.ls3{letter-spacing:12.510000px;}
.ls1e{letter-spacing:1031.814247px;}
.ls6{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.wsf{word-spacing:-18.678000px;}
.wsd{word-spacing:-17.226000px;}
.ws6{word-spacing:-16.896000px;}
.wsc{word-spacing:-16.698000px;}
.wsb{word-spacing:-16.566000px;}
.ws5{word-spacing:-16.500000px;}
.wse{word-spacing:-16.170000px;}
.ws25{word-spacing:-15.240000px;}
.ws2{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.700000px;}
.ws9{word-spacing:-13.935150px;}
.wsa{word-spacing:-13.544966px;}
.ws22{word-spacing:-12.510000px;}
.ws14{word-spacing:-12.240000px;}
.ws26{word-spacing:-11.925000px;}
.ws16{word-spacing:-11.700000px;}
.ws21{word-spacing:-11.520000px;}
.ws28{word-spacing:-11.295000px;}
.ws10{word-spacing:-11.282700px;}
.ws1b{word-spacing:-11.250000px;}
.ws7{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.750000px;}
.ws0{word-spacing:-9.366000px;}
.ws3{word-spacing:-8.775000px;}
.ws12{word-spacing:-6.255000px;}
.ws29{word-spacing:-5.400000px;}
.ws4{word-spacing:0.000000px;}
.ws1f{word-spacing:5.400000px;}
.ws24{word-spacing:6.750000px;}
.ws17{word-spacing:7.110000px;}
.ws1d{word-spacing:7.335000px;}
.ws1e{word-spacing:8.730000px;}
.ws1a{word-spacing:9.045000px;}
.ws13{word-spacing:9.405000px;}
.ws27{word-spacing:9.765000px;}
.ws15{word-spacing:9.990000px;}
.ws20{word-spacing:10.170000px;}
.ws11{word-spacing:10.440000px;}
.ws18{word-spacing:10.665000px;}
.ws23{word-spacing:15.390000px;}
.ws1c{word-spacing:15.705000px;}
.ws8{word-spacing:278.214000px;}
._18{margin-left:-1609.287600px;}
._19{margin-left:-1209.334200px;}
._1a{margin-left:-156.218876px;}
._1b{margin-left:-50.689402px;}
._1c{margin-left:-37.847867px;}
._12{margin-left:-16.500000px;}
._8{margin-left:-13.660800px;}
._1{margin-left:-10.662600px;}
._7{margin-left:-9.324000px;}
._10{margin-left:-8.008737px;}
._f{margin-left:-6.600000px;}
._11{margin-left:-2.230358px;}
._d{margin-left:-1.099263px;}
._4{width:1.386000px;}
._3{width:2.604000px;}
._5{width:3.990000px;}
._6{width:5.245200px;}
._a{width:6.249884px;}
._9{width:7.361274px;}
._b{width:8.443453px;}
._1d{width:9.477821px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._13{width:27.522000px;}
._1e{width:29.607000px;}
._1f{width:31.407000px;}
._c{width:45.698400px;}
._16{width:312.725400px;}
._15{width:362.232600px;}
._14{width:406.260600px;}
._17{width:444.060000px;}
._e{width:1157.565600px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,3,1);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fsa{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs12{font-size:42.900000px;}
.fs6{font-size:45.000000px;}
.fsf{font-size:47.477400px;}
.fs4{font-size:48.000000px;}
.fs10{font-size:50.271000px;}
.fsc{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fs11{font-size:55.740600px;}
.fsd{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs13{font-size:62.031000px;}
.fse{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.yfa{bottom:-11.939100px;}
.y0{bottom:0.000000px;}
.y97{bottom:4.588050px;}
.yc4{bottom:5.674050px;}
.yc8{bottom:51.829350px;}
.y1{bottom:85.039350px;}
.y31{bottom:85.039500px;}
.y126{bottom:85.039650px;}
.y109{bottom:85.039800px;}
.y8b{bottom:100.205400px;}
.y8c{bottom:112.585132px;}
.y12{bottom:119.055150px;}
.y143{bottom:119.679600px;}
.y108{bottom:119.748450px;}
.yda{bottom:119.766150px;}
.yc2{bottom:119.880300px;}
.y4b{bottom:119.995800px;}
.ya1{bottom:120.179550px;}
.y69{bottom:120.355500px;}
.y125{bottom:120.405000px;}
.y16f{bottom:121.174800px;}
.y11{bottom:131.055150px;}
.y107{bottom:137.344950px;}
.yd9{bottom:137.362500px;}
.yc1{bottom:137.476800px;}
.y142{bottom:137.495100px;}
.y4a{bottom:137.592300px;}
.ya0{bottom:137.776050px;}
.y68{bottom:137.952000px;}
.y124{bottom:138.001500px;}
.y16e{bottom:138.990300px;}
.y89{bottom:147.204900px;}
.y10{bottom:149.433000px;}
.y106{bottom:154.941450px;}
.yd8{bottom:154.959000px;}
.yc0{bottom:155.073300px;}
.y49{bottom:155.188800px;}
.y141{bottom:155.310600px;}
.y9f{bottom:155.372550px;}
.y67{bottom:155.548500px;}
.y16d{bottom:156.805800px;}
.y8d{bottom:157.736139px;}
.yc6{bottom:158.412420px;}
.yc7{bottom:162.328197px;}
.y88{bottom:164.801400px;}
.ye9{bottom:165.639750px;}
.yf{bottom:167.811000px;}
.y105{bottom:172.537950px;}
.yd7{bottom:172.555500px;}
.ybf{bottom:172.669800px;}
.y48{bottom:172.785300px;}
.y9e{bottom:172.969050px;}
.y140{bottom:173.126100px;}
.y66{bottom:173.145000px;}
.y16c{bottom:174.621300px;}
.yc5{bottom:175.134600px;}
.y87{bottom:182.397900px;}
.ye8{bottom:183.236250px;}
.ye{bottom:184.062900px;}
.y47{bottom:190.381800px;}
.y9d{bottom:190.565550px;}
.y123{bottom:190.787250px;}
.y13f{bottom:190.941600px;}
.y16b{bottom:192.436800px;}
.yd{bottom:195.243900px;}
.y104{bottom:198.931800px;}
.yd6{bottom:198.949350px;}
.ybe{bottom:199.063650px;}
.y86{bottom:199.994250px;}
.ye7{bottom:200.832750px;}
.yc{bottom:206.424900px;}
.y122{bottom:206.774250px;}
.y46{bottom:207.978300px;}
.y9c{bottom:208.162050px;}
.y65{bottom:208.336200px;}
.y13e{bottom:208.757100px;}
.y16a{bottom:210.252300px;}
.y103{bottom:216.528300px;}
.ybd{bottom:216.660150px;}
.y85{bottom:217.590750px;}
.ye6{bottom:218.429250px;}
.yb{bottom:223.983900px;}
.y45{bottom:225.574800px;}
.y9b{bottom:225.758550px;}
.y64{bottom:225.932700px;}
.y13d{bottom:226.572600px;}
.y169{bottom:228.067800px;}
.y102{bottom:234.124800px;}
.ybc{bottom:234.256650px;}
.ya{bottom:235.164900px;}
.ye5{bottom:236.025750px;}
.yd5{bottom:242.937900px;}
.y63{bottom:243.529200px;}
.y13c{bottom:244.388100px;}
.y168{bottom:245.883300px;}
.y9{bottom:246.345900px;}
.y101{bottom:251.721300px;}
.ybb{bottom:251.853150px;}
.y9a{bottom:252.152400px;}
.y84{bottom:252.781950px;}
.ye4{bottom:253.622250px;}
.y8{bottom:257.526900px;}
.yd4{bottom:260.534400px;}
.y62{bottom:261.125700px;}
.y167{bottom:263.698800px;}
.y100{bottom:269.317800px;}
.yba{bottom:269.449650px;}
.y83{bottom:270.378450px;}
.ye3{bottom:271.218750px;}
.yd3{bottom:278.130900px;}
.y44{bottom:278.360550px;}
.y13b{bottom:279.798300px;}
.y166{bottom:281.514450px;}
.y30{bottom:284.050350px;}
.yff{bottom:286.914300px;}
.yb9{bottom:287.046150px;}
.ye2{bottom:288.815250px;}
.y43{bottom:294.347550px;}
.yd2{bottom:295.727400px;}
.y2f{bottom:298.442850px;}
.y165{bottom:299.329950px;}
.yfe{bottom:304.510800px;}
.yb8{bottom:304.642650px;}
.y82{bottom:305.569650px;}
.ye1{bottom:306.411750px;}
.y42{bottom:310.334550px;}
.yd1{bottom:313.323900px;}
.y61{bottom:313.911450px;}
.y164{bottom:317.145450px;}
.y2e{bottom:320.829000px;}
.yfd{bottom:322.107300px;}
.yb7{bottom:322.239150px;}
.y99{bottom:322.532850px;}
.y81{bottom:323.166150px;}
.ye0{bottom:324.008250px;}
.y60{bottom:329.898450px;}
.yd0{bottom:330.920400px;}
.y163{bottom:334.960950px;}
.y2d{bottom:335.221500px;}
.y98{bottom:338.519850px;}
.y13a{bottom:340.764900px;}
.ydf{bottom:341.604750px;}
.ycf{bottom:348.516900px;}
.y2c{bottom:349.614000px;}
.y162{bottom:352.776300px;}
.yb6{bottom:352.884900px;}
.y139{bottom:358.361400px;}
.yde{bottom:359.201250px;}
.y96{bottom:362.500500px;}
.y2b{bottom:364.006500px;}
.yce{bottom:366.113400px;}
.y161{bottom:370.591800px;}
.yfc{bottom:374.893050px;}
.y80{bottom:375.951900px;}
.y138{bottom:375.957900px;}
.y2a{bottom:378.399000px;}
.ycd{bottom:383.709900px;}
.y160{bottom:388.407300px;}
.yfb{bottom:390.880050px;}
.y29{bottom:392.791500px;}
.y7f{bottom:393.548400px;}
.y137{bottom:393.554400px;}
.ycc{bottom:401.306400px;}
.yb5{bottom:401.946000px;}
.y15f{bottom:406.222800px;}
.y28{bottom:407.184000px;}
.y7e{bottom:411.144900px;}
.ydd{bottom:411.987150px;}
.yf9{bottom:414.861000px;}
.ycb{bottom:418.902900px;}
.yb4{bottom:419.542500px;}
.y136{bottom:419.948250px;}
.y15e{bottom:424.038450px;}
.ydc{bottom:427.974000px;}
.yb3{bottom:437.139000px;}
.y135{bottom:437.544600px;}
.y27{bottom:437.563950px;}
.y15d{bottom:441.853800px;}
.ydb{bottom:443.961000px;}
.y7d{bottom:446.336100px;}
.y26{bottom:451.956450px;}
.yb2{bottom:454.735500px;}
.y134{bottom:455.141100px;}
.y15c{bottom:459.669450px;}
.y7c{bottom:463.932600px;}
.yca{bottom:471.688650px;}
.yb1{bottom:472.332000px;}
.y133{bottom:472.737600px;}
.y25{bottom:474.342600px;}
.y15b{bottom:477.484800px;}
.y7b{bottom:481.529100px;}
.y121{bottom:481.533150px;}
.yc9{bottom:487.675650px;}
.y24{bottom:488.735100px;}
.yb0{bottom:489.928500px;}
.y132{bottom:490.334100px;}
.y15a{bottom:495.300450px;}
.y7a{bottom:499.125600px;}
.y120{bottom:499.129650px;}
.y23{bottom:503.127600px;}
.yaf{bottom:507.525000px;}
.y131{bottom:507.930750px;}
.yc3{bottom:511.656000px;}
.y159{bottom:513.115800px;}
.y79{bottom:516.722100px;}
.y11f{bottom:516.726150px;}
.y5f{bottom:516.727650px;}
.y22{bottom:517.520100px;}
.yae{bottom:525.121500px;}
.y95{bottom:525.135450px;}
.y130{bottom:525.527100px;}
.y158{bottom:530.931450px;}
.y21{bottom:531.912600px;}
.y78{bottom:534.318600px;}
.y11e{bottom:534.322650px;}
.y5e{bottom:534.324150px;}
.yad{bottom:542.718000px;}
.y94{bottom:542.731950px;}
.y12f{bottom:543.123750px;}
.y20{bottom:546.305100px;}
.y157{bottom:548.746800px;}
.y77{bottom:551.915100px;}
.y11d{bottom:551.919150px;}
.y5d{bottom:551.920650px;}
.yac{bottom:560.314500px;}
.y93{bottom:560.328450px;}
.y1f{bottom:560.697600px;}
.y156{bottom:566.562450px;}
.y76{bottom:569.511600px;}
.y11c{bottom:569.515650px;}
.y5c{bottom:569.517150px;}
.y1e{bottom:575.090100px;}
.yab{bottom:577.911000px;}
.y12e{bottom:578.314800px;}
.y155{bottom:584.377800px;}
.y75{bottom:587.108100px;}
.y11b{bottom:587.112150px;}
.y5b{bottom:587.113650px;}
.y1d{bottom:589.482600px;}
.yaa{bottom:595.507500px;}
.y154{bottom:602.193300px;}
.y74{bottom:604.704600px;}
.y11a{bottom:604.708650px;}
.y5a{bottom:604.710150px;}
.ya9{bottom:613.104000px;}
.y92{bottom:613.114350px;}
.yf8{bottom:613.270050px;}
.y153{bottom:620.008800px;}
.y73{bottom:622.301100px;}
.y119{bottom:622.305150px;}
.y59{bottom:622.306650px;}
.y91{bottom:629.101200px;}
.ya8{bottom:630.700500px;}
.yf7{bottom:630.866550px;}
.y12d{bottom:631.100550px;}
.y152{bottom:637.824300px;}
.y41{bottom:639.665700px;}
.y72{bottom:639.897600px;}
.y118{bottom:639.901650px;}
.y58{bottom:639.903150px;}
.ya7{bottom:648.297000px;}
.yf6{bottom:648.463050px;}
.y12c{bottom:648.697200px;}
.y90{bottom:654.310200px;}
.y151{bottom:655.639950px;}
.y40{bottom:657.262200px;}
.y71{bottom:657.494100px;}
.y117{bottom:657.498150px;}
.y57{bottom:657.499650px;}
.ya6{bottom:665.893500px;}
.yf5{bottom:666.059550px;}
.y12b{bottom:666.293550px;}
.y150{bottom:673.455300px;}
.y3f{bottom:674.858700px;}
.y70{bottom:675.090600px;}
.y116{bottom:675.094650px;}
.y56{bottom:675.096150px;}
.y8f{bottom:675.915600px;}
.y1c{bottom:676.158600px;}
.yf4{bottom:683.656200px;}
.y8e{bottom:688.709100px;}
.y14f{bottom:691.270800px;}
.y3e{bottom:692.455200px;}
.y6f{bottom:692.687100px;}
.y12a{bottom:692.687400px;}
.y115{bottom:692.691150px;}
.y55{bottom:692.692650px;}
.y1b{bottom:696.195600px;}
.ya5{bottom:701.084550px;}
.yf3{bottom:701.252550px;}
.y1a{bottom:708.132600px;}
.y14e{bottom:709.086300px;}
.y3d{bottom:710.051700px;}
.y6e{bottom:710.283600px;}
.y129{bottom:710.283900px;}
.y54{bottom:710.289150px;}
.y8a{bottom:714.358500px;}
.yf2{bottom:718.849050px;}
.y114{bottom:719.085000px;}
.y14d{bottom:726.901950px;}
.y3c{bottom:727.648200px;}
.y6d{bottom:727.880100px;}
.y128{bottom:727.880400px;}
.y19{bottom:728.169600px;}
.yf1{bottom:736.445550px;}
.ya4{bottom:736.679250px;}
.y14c{bottom:744.717300px;}
.y3b{bottom:745.244700px;}
.y6c{bottom:745.476600px;}
.y127{bottom:745.476900px;}
.y53{bottom:745.480200px;}
.y18{bottom:748.903950px;}
.yf0{bottom:754.042050px;}
.ya3{bottom:754.275750px;}
.y14b{bottom:762.532800px;}
.y3a{bottom:762.841200px;}
.y6b{bottom:763.073100px;}
.y113{bottom:763.073400px;}
.yef{bottom:771.638550px;}
.ya2{bottom:771.872250px;}
.y14a{bottom:780.348300px;}
.y39{bottom:780.437700px;}
.y6a{bottom:780.669600px;}
.y112{bottom:780.670050px;}
.y17{bottom:783.508350px;}
.yee{bottom:789.235050px;}
.y38{bottom:798.034200px;}
.y149{bottom:798.163950px;}
.y52{bottom:798.266100px;}
.y111{bottom:798.266400px;}
.y16{bottom:805.108200px;}
.yed{bottom:806.831700px;}
.y37{bottom:815.630700px;}
.y51{bottom:815.862600px;}
.y110{bottom:815.862900px;}
.y148{bottom:815.979450px;}
.yec{bottom:824.428200px;}
.y15{bottom:830.960250px;}
.y36{bottom:833.227350px;}
.y50{bottom:833.459100px;}
.y10f{bottom:833.459400px;}
.y147{bottom:833.794950px;}
.yeb{bottom:842.024550px;}
.y35{bottom:850.823700px;}
.y4f{bottom:851.055600px;}
.y10e{bottom:851.055900px;}
.y146{bottom:851.610300px;}
.y14{bottom:856.460250px;}
.yea{bottom:859.621050px;}
.y4e{bottom:868.652100px;}
.y10d{bottom:868.652400px;}
.y145{bottom:869.425800px;}
.y13{bottom:881.960250px;}
.y34{bottom:886.014900px;}
.y4d{bottom:886.248600px;}
.y10c{bottom:886.248900px;}
.y144{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y33{bottom:931.878150px;}
.y10b{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y4c{bottom:949.474500px;}
.y32{bottom:949.474650px;}
.y10a{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h4{height:19.764000px;}
.hb{height:24.114111px;}
.h17{height:28.854492px;}
.h6{height:31.206000px;}
.h16{height:31.643873px;}
.h7{height:33.435000px;}
.h19{height:34.929508px;}
.h10{height:34.987793px;}
.he{height:35.037598px;}
.h5{height:35.328000px;}
.hd{height:35.411133px;}
.hf{height:35.635254px;}
.hc{height:37.098633px;}
.h1b{height:38.702702px;}
.h2{height:41.220703px;}
.h1e{height:41.343904px;}
.h14{height:41.660156px;}
.ha{height:44.793457px;}
.h11{height:45.278320px;}
.h13{height:45.342773px;}
.h12{height:45.826172px;}
.h1f{height:48.887695px;}
.h9{height:49.464844px;}
.h21{height:53.320312px;}
.h20{height:53.818359px;}
.h1c{height:60.279913px;}
.h8{height:62.490234px;}
.h3{height:104.850000px;}
.h18{height:121.066500px;}
.h1d{height:171.724500px;}
.h15{height:182.808000px;}
.h1a{height:333.285000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w3{width:461.275500px;}
.w2{width:481.812000px;}
.w4{width:487.573500px;}
.w5{width:487.819500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x23{left:42.525600px;}
.x25{left:53.267839px;}
.x24{left:69.585900px;}
.xc{left:110.551200px;}
.x1{left:113.476500px;}
.x7{left:114.564750px;}
.x22{left:119.092500px;}
.x13{left:121.974000px;}
.x17{left:126.863100px;}
.x12{left:131.176200px;}
.x20{left:132.241500px;}
.xd{left:136.063050px;}
.x4{left:138.988350px;}
.x28{left:146.692950px;}
.xe{left:149.021250px;}
.x11{left:155.196900px;}
.x10{left:158.122200px;}
.x1f{left:163.386450px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.xa{left:186.937200px;}
.x8{left:189.125700px;}
.x14{left:220.505850px;}
.x21{left:230.252250px;}
.x19{left:237.511800px;}
.x18{left:247.870800px;}
.xf{left:259.937100px;}
.x26{left:262.858050px;}
.x27{left:266.445150px;}
.x1b{left:365.541600px;}
.x1a{left:372.819300px;}
.xb{left:383.970000px;}
.x15{left:399.839859px;}
.x9{left:415.096500px;}
.x16{left:419.709151px;}
.x3{left:441.045750px;}
.x1d{left:459.084900px;}
.x1c{left:473.942850px;}
.x2{left:521.280900px;}
.x1e{left:553.520250px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v5{vertical-align:-11.733333pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:19.174766pt;}
.ls45{letter-spacing:-12.120000pt;}
.ls4b{letter-spacing:-11.840000pt;}
.ls43{letter-spacing:-9.880000pt;}
.ls30{letter-spacing:-9.640000pt;}
.ls49{letter-spacing:-9.400000pt;}
.ls3f{letter-spacing:-9.240000pt;}
.ls44{letter-spacing:-9.160000pt;}
.ls52{letter-spacing:-9.040000pt;}
.ls47{letter-spacing:-8.880000pt;}
.ls32{letter-spacing:-8.720000pt;}
.ls46{letter-spacing:-8.400000pt;}
.ls41{letter-spacing:-8.160000pt;}
.ls4c{letter-spacing:-7.880000pt;}
.ls48{letter-spacing:-7.400000pt;}
.ls53{letter-spacing:-5.200000pt;}
.ls31{letter-spacing:-4.440000pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls21{letter-spacing:-0.346830pt;}
.ls25{letter-spacing:-0.293333pt;}
.ls42{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000533pt;}
.ls33{letter-spacing:0.006400pt;}
.ls36{letter-spacing:0.006933pt;}
.ls3c{letter-spacing:0.008000pt;}
.ls19{letter-spacing:0.008533pt;}
.ls18{letter-spacing:0.009067pt;}
.ls2{letter-spacing:0.037333pt;}
.ls50{letter-spacing:0.040000pt;}
.ls4f{letter-spacing:0.052800pt;}
.ls26{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.090667pt;}
.ls23{letter-spacing:0.106133pt;}
.ls22{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.117333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls3e{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.234667pt;}
.ls37{letter-spacing:0.238933pt;}
.ls39{letter-spacing:0.240000pt;}
.ls3d{letter-spacing:0.241067pt;}
.ls38{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.352000pt;}
.ls35{letter-spacing:0.400000pt;}
.ls8{letter-spacing:0.410667pt;}
.ls34{letter-spacing:0.412267pt;}
.ls40{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.495472pt;}
.ls2f{letter-spacing:0.495733pt;}
.ls2d{letter-spacing:0.505600pt;}
.ls2b{letter-spacing:0.506133pt;}
.lsa{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.586667pt;}
.ls4e{letter-spacing:0.600000pt;}
.ls4d{letter-spacing:0.606933pt;}
.ls1c{letter-spacing:0.645333pt;}
.ls15{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.762667pt;}
.ls2c{letter-spacing:0.788267pt;}
.ls2a{letter-spacing:0.788800pt;}
.ls14{letter-spacing:0.880000pt;}
.ls2e{letter-spacing:0.885333pt;}
.ls24{letter-spacing:0.906667pt;}
.ls51{letter-spacing:1.013333pt;}
.lse{letter-spacing:1.056000pt;}
.ls17{letter-spacing:1.114667pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls3a{letter-spacing:1.136000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls13{letter-spacing:1.290667pt;}
.ls12{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.936000pt;}
.ls20{letter-spacing:2.226667pt;}
.ls4a{letter-spacing:7.786667pt;}
.ls28{letter-spacing:9.281600pt;}
.ls1{letter-spacing:9.472000pt;}
.ls3{letter-spacing:11.120000pt;}
.ls1e{letter-spacing:917.168219pt;}
.ls6{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.wsf{word-spacing:-16.602667pt;}
.wsd{word-spacing:-15.312000pt;}
.ws6{word-spacing:-15.018667pt;}
.wsc{word-spacing:-14.842667pt;}
.wsb{word-spacing:-14.725333pt;}
.ws5{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.373333pt;}
.ws25{word-spacing:-13.546667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws19{word-spacing:-13.066667pt;}
.ws9{word-spacing:-12.386800pt;}
.wsa{word-spacing:-12.039970pt;}
.ws22{word-spacing:-11.120000pt;}
.ws14{word-spacing:-10.880000pt;}
.ws26{word-spacing:-10.600000pt;}
.ws16{word-spacing:-10.400000pt;}
.ws21{word-spacing:-10.240000pt;}
.ws28{word-spacing:-10.040000pt;}
.ws10{word-spacing:-10.029067pt;}
.ws1b{word-spacing:-10.000000pt;}
.ws7{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.666667pt;}
.ws0{word-spacing:-8.325333pt;}
.ws3{word-spacing:-7.800000pt;}
.ws12{word-spacing:-5.560000pt;}
.ws29{word-spacing:-4.800000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f{word-spacing:4.800000pt;}
.ws24{word-spacing:6.000000pt;}
.ws17{word-spacing:6.320000pt;}
.ws1d{word-spacing:6.520000pt;}
.ws1e{word-spacing:7.760000pt;}
.ws1a{word-spacing:8.040000pt;}
.ws13{word-spacing:8.360000pt;}
.ws27{word-spacing:8.680000pt;}
.ws15{word-spacing:8.880000pt;}
.ws20{word-spacing:9.040000pt;}
.ws11{word-spacing:9.280000pt;}
.ws18{word-spacing:9.480000pt;}
.ws23{word-spacing:13.680000pt;}
.ws1c{word-spacing:13.960000pt;}
.ws8{word-spacing:247.301333pt;}
._18{margin-left:-1430.477867pt;}
._19{margin-left:-1074.963733pt;}
._1a{margin-left:-138.861223pt;}
._1b{margin-left:-45.057246pt;}
._1c{margin-left:-33.642549pt;}
._12{margin-left:-14.666667pt;}
._8{margin-left:-12.142933pt;}
._1{margin-left:-9.477867pt;}
._7{margin-left:-8.288000pt;}
._10{margin-left:-7.118877pt;}
._f{margin-left:-5.866667pt;}
._11{margin-left:-1.982540pt;}
._d{margin-left:-0.977123pt;}
._4{width:1.232000pt;}
._3{width:2.314667pt;}
._5{width:3.546667pt;}
._6{width:4.662400pt;}
._a{width:5.555453pt;}
._9{width:6.543354pt;}
._b{width:7.505291pt;}
._1d{width:8.424730pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._13{width:24.464000pt;}
._1e{width:26.317333pt;}
._1f{width:27.917333pt;}
._c{width:40.620800pt;}
._16{width:277.978133pt;}
._15{width:321.984533pt;}
._14{width:361.120533pt;}
._17{width:394.720000pt;}
._e{width:1028.947200pt;}
.fs3{font-size:24.000000pt;}
.fsa{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs12{font-size:38.133333pt;}
.fs6{font-size:40.000000pt;}
.fsf{font-size:42.202133pt;}
.fs4{font-size:42.666667pt;}
.fs10{font-size:44.685333pt;}
.fsc{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fs11{font-size:49.547200pt;}
.fsd{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs13{font-size:55.138667pt;}
.fse{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.yfa{bottom:-10.612533pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:4.078267pt;}
.yc4{bottom:5.043600pt;}
.yc8{bottom:46.070533pt;}
.y1{bottom:75.590533pt;}
.y31{bottom:75.590667pt;}
.y126{bottom:75.590800pt;}
.y109{bottom:75.590933pt;}
.y8b{bottom:89.071467pt;}
.y8c{bottom:100.075673pt;}
.y12{bottom:105.826800pt;}
.y143{bottom:106.381867pt;}
.y108{bottom:106.443067pt;}
.yda{bottom:106.458800pt;}
.yc2{bottom:106.560267pt;}
.y4b{bottom:106.662933pt;}
.ya1{bottom:106.826267pt;}
.y69{bottom:106.982667pt;}
.y125{bottom:107.026667pt;}
.y16f{bottom:107.710933pt;}
.y11{bottom:116.493467pt;}
.y107{bottom:122.084400pt;}
.yd9{bottom:122.100000pt;}
.yc1{bottom:122.201600pt;}
.y142{bottom:122.217867pt;}
.y4a{bottom:122.304267pt;}
.ya0{bottom:122.467600pt;}
.y68{bottom:122.624000pt;}
.y124{bottom:122.668000pt;}
.y16e{bottom:123.546933pt;}
.y89{bottom:130.848800pt;}
.y10{bottom:132.829333pt;}
.y106{bottom:137.725733pt;}
.yd8{bottom:137.741333pt;}
.yc0{bottom:137.842933pt;}
.y49{bottom:137.945600pt;}
.y141{bottom:138.053867pt;}
.y9f{bottom:138.108933pt;}
.y67{bottom:138.265333pt;}
.y16d{bottom:139.382933pt;}
.y8d{bottom:140.209902pt;}
.yc6{bottom:140.811040pt;}
.yc7{bottom:144.291731pt;}
.y88{bottom:146.490133pt;}
.ye9{bottom:147.235333pt;}
.yf{bottom:149.165333pt;}
.y105{bottom:153.367067pt;}
.yd7{bottom:153.382667pt;}
.ybf{bottom:153.484267pt;}
.y48{bottom:153.586933pt;}
.y9e{bottom:153.750267pt;}
.y140{bottom:153.889867pt;}
.y66{bottom:153.906667pt;}
.y16c{bottom:155.218933pt;}
.yc5{bottom:155.675200pt;}
.y87{bottom:162.131467pt;}
.ye8{bottom:162.876667pt;}
.ye{bottom:163.611467pt;}
.y47{bottom:169.228267pt;}
.y9d{bottom:169.391600pt;}
.y123{bottom:169.588667pt;}
.y13f{bottom:169.725867pt;}
.y16b{bottom:171.054933pt;}
.yd{bottom:173.550133pt;}
.y104{bottom:176.828267pt;}
.yd6{bottom:176.843867pt;}
.ybe{bottom:176.945467pt;}
.y86{bottom:177.772667pt;}
.ye7{bottom:178.518000pt;}
.yc{bottom:183.488800pt;}
.y122{bottom:183.799333pt;}
.y46{bottom:184.869600pt;}
.y9c{bottom:185.032933pt;}
.y65{bottom:185.187733pt;}
.y13e{bottom:185.561867pt;}
.y16a{bottom:186.890933pt;}
.y103{bottom:192.469600pt;}
.ybd{bottom:192.586800pt;}
.y85{bottom:193.414000pt;}
.ye6{bottom:194.159333pt;}
.yb{bottom:199.096800pt;}
.y45{bottom:200.510933pt;}
.y9b{bottom:200.674267pt;}
.y64{bottom:200.829067pt;}
.y13d{bottom:201.397867pt;}
.y169{bottom:202.726933pt;}
.y102{bottom:208.110933pt;}
.ybc{bottom:208.228133pt;}
.ya{bottom:209.035467pt;}
.ye5{bottom:209.800667pt;}
.yd5{bottom:215.944800pt;}
.y63{bottom:216.470400pt;}
.y13c{bottom:217.233867pt;}
.y168{bottom:218.562933pt;}
.y9{bottom:218.974133pt;}
.y101{bottom:223.752267pt;}
.ybb{bottom:223.869467pt;}
.y9a{bottom:224.135467pt;}
.y84{bottom:224.695067pt;}
.ye4{bottom:225.442000pt;}
.y8{bottom:228.912800pt;}
.yd4{bottom:231.586133pt;}
.y62{bottom:232.111733pt;}
.y167{bottom:234.398933pt;}
.y100{bottom:239.393600pt;}
.yba{bottom:239.510800pt;}
.y83{bottom:240.336400pt;}
.ye3{bottom:241.083333pt;}
.yd3{bottom:247.227467pt;}
.y44{bottom:247.431600pt;}
.y13b{bottom:248.709600pt;}
.y166{bottom:250.235067pt;}
.y30{bottom:252.489200pt;}
.yff{bottom:255.034933pt;}
.yb9{bottom:255.152133pt;}
.ye2{bottom:256.724667pt;}
.y43{bottom:261.642267pt;}
.yd2{bottom:262.868800pt;}
.y2f{bottom:265.282533pt;}
.y165{bottom:266.071067pt;}
.yfe{bottom:270.676267pt;}
.yb8{bottom:270.793467pt;}
.y82{bottom:271.617467pt;}
.ye1{bottom:272.366000pt;}
.y42{bottom:275.852933pt;}
.yd1{bottom:278.510133pt;}
.y61{bottom:279.032400pt;}
.y164{bottom:281.907067pt;}
.y2e{bottom:285.181333pt;}
.yfd{bottom:286.317600pt;}
.yb7{bottom:286.434800pt;}
.y99{bottom:286.695867pt;}
.y81{bottom:287.258800pt;}
.ye0{bottom:288.007333pt;}
.y60{bottom:293.243067pt;}
.yd0{bottom:294.151467pt;}
.y163{bottom:297.743067pt;}
.y2d{bottom:297.974667pt;}
.y98{bottom:300.906533pt;}
.y13a{bottom:302.902133pt;}
.ydf{bottom:303.648667pt;}
.ycf{bottom:309.792800pt;}
.y2c{bottom:310.768000pt;}
.y162{bottom:313.578933pt;}
.yb6{bottom:313.675467pt;}
.y139{bottom:318.543467pt;}
.yde{bottom:319.290000pt;}
.y96{bottom:322.222667pt;}
.y2b{bottom:323.561333pt;}
.yce{bottom:325.434133pt;}
.y161{bottom:329.414933pt;}
.yfc{bottom:333.238267pt;}
.y80{bottom:334.179467pt;}
.y138{bottom:334.184800pt;}
.y2a{bottom:336.354667pt;}
.ycd{bottom:341.075467pt;}
.y160{bottom:345.250933pt;}
.yfb{bottom:347.448933pt;}
.y29{bottom:349.148000pt;}
.y7f{bottom:349.820800pt;}
.y137{bottom:349.826133pt;}
.ycc{bottom:356.716800pt;}
.yb5{bottom:357.285333pt;}
.y15f{bottom:361.086933pt;}
.y28{bottom:361.941333pt;}
.y7e{bottom:365.462133pt;}
.ydd{bottom:366.210800pt;}
.yf9{bottom:368.765333pt;}
.ycb{bottom:372.358133pt;}
.yb4{bottom:372.926667pt;}
.y136{bottom:373.287333pt;}
.y15e{bottom:376.923067pt;}
.ydc{bottom:380.421333pt;}
.yb3{bottom:388.568000pt;}
.y135{bottom:388.928533pt;}
.y27{bottom:388.945733pt;}
.y15d{bottom:392.758933pt;}
.ydb{bottom:394.632000pt;}
.y7d{bottom:396.743200pt;}
.y26{bottom:401.739067pt;}
.yb2{bottom:404.209333pt;}
.y134{bottom:404.569867pt;}
.y15c{bottom:408.595067pt;}
.y7c{bottom:412.384533pt;}
.yca{bottom:419.278800pt;}
.yb1{bottom:419.850667pt;}
.y133{bottom:420.211200pt;}
.y25{bottom:421.637867pt;}
.y15b{bottom:424.430933pt;}
.y7b{bottom:428.025867pt;}
.y121{bottom:428.029467pt;}
.yc9{bottom:433.489467pt;}
.y24{bottom:434.431200pt;}
.yb0{bottom:435.492000pt;}
.y132{bottom:435.852533pt;}
.y15a{bottom:440.267067pt;}
.y7a{bottom:443.667200pt;}
.y120{bottom:443.670800pt;}
.y23{bottom:447.224533pt;}
.yaf{bottom:451.133333pt;}
.y131{bottom:451.494000pt;}
.yc3{bottom:454.805333pt;}
.y159{bottom:456.102933pt;}
.y79{bottom:459.308533pt;}
.y11f{bottom:459.312133pt;}
.y5f{bottom:459.313467pt;}
.y22{bottom:460.017867pt;}
.yae{bottom:466.774667pt;}
.y95{bottom:466.787067pt;}
.y130{bottom:467.135200pt;}
.y158{bottom:471.939067pt;}
.y21{bottom:472.811200pt;}
.y78{bottom:474.949867pt;}
.y11e{bottom:474.953467pt;}
.y5e{bottom:474.954800pt;}
.yad{bottom:482.416000pt;}
.y94{bottom:482.428400pt;}
.y12f{bottom:482.776667pt;}
.y20{bottom:485.604533pt;}
.y157{bottom:487.774933pt;}
.y77{bottom:490.591200pt;}
.y11d{bottom:490.594800pt;}
.y5d{bottom:490.596133pt;}
.yac{bottom:498.057333pt;}
.y93{bottom:498.069733pt;}
.y1f{bottom:498.397867pt;}
.y156{bottom:503.611067pt;}
.y76{bottom:506.232533pt;}
.y11c{bottom:506.236133pt;}
.y5c{bottom:506.237467pt;}
.y1e{bottom:511.191200pt;}
.yab{bottom:513.698667pt;}
.y12e{bottom:514.057600pt;}
.y155{bottom:519.446933pt;}
.y75{bottom:521.873867pt;}
.y11b{bottom:521.877467pt;}
.y5b{bottom:521.878800pt;}
.y1d{bottom:523.984533pt;}
.yaa{bottom:529.340000pt;}
.y154{bottom:535.282933pt;}
.y74{bottom:537.515200pt;}
.y11a{bottom:537.518800pt;}
.y5a{bottom:537.520133pt;}
.ya9{bottom:544.981333pt;}
.y92{bottom:544.990533pt;}
.yf8{bottom:545.128933pt;}
.y153{bottom:551.118933pt;}
.y73{bottom:553.156533pt;}
.y119{bottom:553.160133pt;}
.y59{bottom:553.161467pt;}
.y91{bottom:559.201067pt;}
.ya8{bottom:560.622667pt;}
.yf7{bottom:560.770267pt;}
.y12d{bottom:560.978267pt;}
.y152{bottom:566.954933pt;}
.y41{bottom:568.591733pt;}
.y72{bottom:568.797867pt;}
.y118{bottom:568.801467pt;}
.y58{bottom:568.802800pt;}
.ya7{bottom:576.264000pt;}
.yf6{bottom:576.411600pt;}
.y12c{bottom:576.619733pt;}
.y90{bottom:581.609067pt;}
.y151{bottom:582.791067pt;}
.y40{bottom:584.233067pt;}
.y71{bottom:584.439200pt;}
.y117{bottom:584.442800pt;}
.y57{bottom:584.444133pt;}
.ya6{bottom:591.905333pt;}
.yf5{bottom:592.052933pt;}
.y12b{bottom:592.260933pt;}
.y150{bottom:598.626933pt;}
.y3f{bottom:599.874400pt;}
.y70{bottom:600.080533pt;}
.y116{bottom:600.084133pt;}
.y56{bottom:600.085467pt;}
.y8f{bottom:600.813867pt;}
.y1c{bottom:601.029867pt;}
.yf4{bottom:607.694400pt;}
.y8e{bottom:612.185867pt;}
.y14f{bottom:614.462933pt;}
.y3e{bottom:615.515733pt;}
.y6f{bottom:615.721867pt;}
.y12a{bottom:615.722133pt;}
.y115{bottom:615.725467pt;}
.y55{bottom:615.726800pt;}
.y1b{bottom:618.840533pt;}
.ya5{bottom:623.186267pt;}
.yf3{bottom:623.335600pt;}
.y1a{bottom:629.451200pt;}
.y14e{bottom:630.298933pt;}
.y3d{bottom:631.157067pt;}
.y6e{bottom:631.363200pt;}
.y129{bottom:631.363467pt;}
.y54{bottom:631.368133pt;}
.y8a{bottom:634.985333pt;}
.yf2{bottom:638.976933pt;}
.y114{bottom:639.186667pt;}
.y14d{bottom:646.135067pt;}
.y3c{bottom:646.798400pt;}
.y6d{bottom:647.004533pt;}
.y128{bottom:647.004800pt;}
.y19{bottom:647.261867pt;}
.yf1{bottom:654.618267pt;}
.ya4{bottom:654.826000pt;}
.y14c{bottom:661.970933pt;}
.y3b{bottom:662.439733pt;}
.y6c{bottom:662.645867pt;}
.y127{bottom:662.646133pt;}
.y53{bottom:662.649067pt;}
.y18{bottom:665.692400pt;}
.yf0{bottom:670.259600pt;}
.ya3{bottom:670.467333pt;}
.y14b{bottom:677.806933pt;}
.y3a{bottom:678.081067pt;}
.y6b{bottom:678.287200pt;}
.y113{bottom:678.287467pt;}
.yef{bottom:685.900933pt;}
.ya2{bottom:686.108667pt;}
.y14a{bottom:693.642933pt;}
.y39{bottom:693.722400pt;}
.y6a{bottom:693.928533pt;}
.y112{bottom:693.928933pt;}
.y17{bottom:696.451867pt;}
.yee{bottom:701.542267pt;}
.y38{bottom:709.363733pt;}
.y149{bottom:709.479067pt;}
.y52{bottom:709.569867pt;}
.y111{bottom:709.570133pt;}
.y16{bottom:715.651733pt;}
.yed{bottom:717.183733pt;}
.y37{bottom:725.005067pt;}
.y51{bottom:725.211200pt;}
.y110{bottom:725.211467pt;}
.y148{bottom:725.315067pt;}
.yec{bottom:732.825067pt;}
.y15{bottom:738.631333pt;}
.y36{bottom:740.646533pt;}
.y50{bottom:740.852533pt;}
.y10f{bottom:740.852800pt;}
.y147{bottom:741.151067pt;}
.yeb{bottom:748.466267pt;}
.y35{bottom:756.287733pt;}
.y4f{bottom:756.493867pt;}
.y10e{bottom:756.494133pt;}
.y146{bottom:756.986933pt;}
.y14{bottom:761.298000pt;}
.yea{bottom:764.107600pt;}
.y4e{bottom:772.135200pt;}
.y10d{bottom:772.135467pt;}
.y145{bottom:772.822933pt;}
.y13{bottom:783.964667pt;}
.y34{bottom:787.568800pt;}
.y4d{bottom:787.776533pt;}
.y10c{bottom:787.776800pt;}
.y144{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y33{bottom:828.336133pt;}
.y10b{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y4c{bottom:843.977333pt;}
.y32{bottom:843.977467pt;}
.y10a{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h4{height:17.568000pt;}
.hb{height:21.434766pt;}
.h17{height:25.648438pt;}
.h6{height:27.738667pt;}
.h16{height:28.127887pt;}
.h7{height:29.720000pt;}
.h19{height:31.048452pt;}
.h10{height:31.100260pt;}
.he{height:31.144531pt;}
.h5{height:31.402667pt;}
.hd{height:31.476562pt;}
.hf{height:31.675781pt;}
.hc{height:32.976562pt;}
.h1b{height:34.402402pt;}
.h2{height:36.640625pt;}
.h1e{height:36.750137pt;}
.h14{height:37.031250pt;}
.ha{height:39.816406pt;}
.h11{height:40.247396pt;}
.h13{height:40.304688pt;}
.h12{height:40.734375pt;}
.h1f{height:43.455729pt;}
.h9{height:43.968750pt;}
.h21{height:47.395833pt;}
.h20{height:47.838542pt;}
.h1c{height:53.582145pt;}
.h8{height:55.546875pt;}
.h3{height:93.200000pt;}
.h18{height:107.614667pt;}
.h1d{height:152.644000pt;}
.h15{height:162.496000pt;}
.h1a{height:296.253333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w3{width:410.022667pt;}
.w2{width:428.277333pt;}
.w4{width:433.398667pt;}
.w5{width:433.617333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x23{left:37.800533pt;}
.x25{left:47.349191pt;}
.x24{left:61.854133pt;}
.xc{left:98.267733pt;}
.x1{left:100.868000pt;}
.x7{left:101.835333pt;}
.x22{left:105.860000pt;}
.x13{left:108.421333pt;}
.x17{left:112.767200pt;}
.x12{left:116.601067pt;}
.x20{left:117.548000pt;}
.xd{left:120.944933pt;}
.x4{left:123.545200pt;}
.x28{left:130.393733pt;}
.xe{left:132.463333pt;}
.x11{left:137.952800pt;}
.x10{left:140.553067pt;}
.x1f{left:145.232400pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.xa{left:166.166400pt;}
.x8{left:168.111733pt;}
.x14{left:196.005200pt;}
.x21{left:204.668667pt;}
.x19{left:211.121600pt;}
.x18{left:220.329600pt;}
.xf{left:231.055200pt;}
.x26{left:233.651600pt;}
.x27{left:236.840133pt;}
.x1b{left:324.925867pt;}
.x1a{left:331.394933pt;}
.xb{left:341.306667pt;}
.x15{left:355.413208pt;}
.x9{left:368.974667pt;}
.x16{left:373.074801pt;}
.x3{left:392.040667pt;}
.x1d{left:408.075467pt;}
.x1c{left:421.282533pt;}
.x2{left:463.360800pt;}
.x1e{left:492.018000pt;}
}




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