
    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_3242829f8af6a5e0948fad4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9542ccde82449a2e1bfcf277.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_e0c59638ef2f0de1dd053d5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_8737e5c01812df4421756f77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116211;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_ce4cc13093d7d2806ab44f65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043000;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_d87fb6474cb497a131190394.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116000;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_acae5d3d2b6386a1533ceaf4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125533;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_079d96211a2d7db682ddba12.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967000;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_50e534966b65c1bdc02b5919.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.879000;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_157086c6565d2b0be5b0a30a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963000;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_41eaa90f5add8726de75887e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992000;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_23bf7fd85154c405e87e1d86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961000;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_5d6851b0ebd705f9b0615a94.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4983a4dea8d3526f4f2cbdb5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.959000;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_b08249306a42f73ba7f205a7.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8d08ceada62979ec05782e5d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.131836;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_dac59aaba2b68ff59b94df69.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1a8bdd538405960aa48c8a7c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.440760px;}
.v2{vertical-align:-1.114560px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v3{vertical-align:30.240000px;}
.ls3a{letter-spacing:-3.066120px;}
.ls3b{letter-spacing:-2.705400px;}
.ls4c{letter-spacing:-2.344680px;}
.ls3c{letter-spacing:-1.262520px;}
.ls3d{letter-spacing:-0.901800px;}
.ls54{letter-spacing:-0.841680px;}
.ls40{letter-spacing:-0.541080px;}
.ls4b{letter-spacing:-0.480960px;}
.ls20{letter-spacing:-0.420840px;}
.ls21{letter-spacing:-0.360720px;}
.ls4a{letter-spacing:-0.300600px;}
.ls3f{letter-spacing:-0.240480px;}
.ls1f{letter-spacing:-0.180360px;}
.ls41{letter-spacing:-0.180000px;}
.ls3e{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.120240px;}
.ls1b{letter-spacing:-0.120000px;}
.ls56{letter-spacing:-0.065880px;}
.ls1e{letter-spacing:-0.060120px;}
.ls18{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000120px;}
.ls27{letter-spacing:0.006012px;}
.ls8{letter-spacing:0.033683px;}
.ls6{letter-spacing:0.040301px;}
.ls19{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.060120px;}
.ls55{letter-spacing:0.065880px;}
.ls24{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.076320px;}
.ls5{letter-spacing:0.078000px;}
.ls7{letter-spacing:0.078120px;}
.ls30{letter-spacing:0.104400px;}
.ls23{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.120240px;}
.ls2e{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.162720px;}
.ls52{letter-spacing:0.168336px;}
.ls1c{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.180360px;}
.ls4{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.654000px;}
.ls47{letter-spacing:0.841680px;}
.ls38{letter-spacing:1.563120px;}
.ls2b{letter-spacing:1.923840px;}
.ls39{letter-spacing:2.284560px;}
.ls33{letter-spacing:2.645280px;}
.ls28{letter-spacing:2.825640px;}
.ls49{letter-spacing:3.006000px;}
.ls36{letter-spacing:3.727440px;}
.ls4d{letter-spacing:4.088160px;}
.ls4e{letter-spacing:4.448880px;}
.ls2f{letter-spacing:4.809600px;}
.ls12{letter-spacing:5.170320px;}
.ls43{letter-spacing:5.531040px;}
.ls4f{letter-spacing:6.252480px;}
.lse{letter-spacing:6.282840px;}
.lsc{letter-spacing:6.600840px;}
.lsd{letter-spacing:6.606840px;}
.lsb{letter-spacing:6.630840px;}
.lsa{letter-spacing:7.407600px;}
.ls1a{letter-spacing:7.416000px;}
.ls29{letter-spacing:7.695360px;}
.ls25{letter-spacing:7.755480px;}
.ls11{letter-spacing:8.056080px;}
.ls42{letter-spacing:8.416800px;}
.ls34{letter-spacing:9.859680px;}
.ls35{letter-spacing:10.941840px;}
.ls2c{letter-spacing:11.663280px;}
.ls31{letter-spacing:12.384720px;}
.ls50{letter-spacing:13.466880px;}
.ls16{letter-spacing:15.631200px;}
.ls45{letter-spacing:15.991920px;}
.ls2{letter-spacing:18.100440px;}
.ls37{letter-spacing:18.516960px;}
.ls13{letter-spacing:18.998040px;}
.ls26{letter-spacing:19.599120px;}
.ls14{letter-spacing:22.605240px;}
.ls2a{letter-spacing:26.813520px;}
.ls48{letter-spacing:30.060000px;}
.ls51{letter-spacing:36.132120px;}
.ls46{letter-spacing:38.657160px;}
.ls44{letter-spacing:62.103960px;}
.ls2d{letter-spacing:65.290320px;}
.ls32{letter-spacing:83.025720px;}
.ls15{letter-spacing:99.799200px;}
.ls53{letter-spacing:848.954520px;}
.ls0{letter-spacing:1391.958360px;}
.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;}
}
.ws3{word-spacing:-150.220440px;}
.ws28{word-spacing:-60.120000px;}
.ws6{word-spacing:-21.170400px;}
.ws7{word-spacing:-21.092400px;}
.ws4{word-spacing:-17.985600px;}
.wsb{word-spacing:-16.352640px;}
.ws8{word-spacing:-16.292400px;}
.ws3a{word-spacing:-16.172280px;}
.ws39{word-spacing:-16.112160px;}
.ws5{word-spacing:-16.008840px;}
.ws26{word-spacing:-14.789520px;}
.ws2b{word-spacing:-14.729400px;}
.ws2e{word-spacing:-14.669280px;}
.ws9{word-spacing:-14.669160px;}
.ws2c{word-spacing:-14.609160px;}
.wse{word-spacing:-14.549040px;}
.wsa{word-spacing:-14.489160px;}
.wsd{word-spacing:-14.488920px;}
.ws2{word-spacing:-12.264480px;}
.ws2a{word-spacing:-8.748000px;}
.ws29{word-spacing:-8.604000px;}
.ws35{word-spacing:-3.727440px;}
.ws11{word-spacing:-0.456000px;}
.ws1b{word-spacing:-0.420000px;}
.ws19{word-spacing:-0.384000px;}
.ws12{word-spacing:-0.354000px;}
.ws1a{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.288000px;}
.ws3e{word-spacing:-0.234360px;}
.ws3c{word-spacing:-0.197640px;}
.ws24{word-spacing:-0.180360px;}
.ws21{word-spacing:-0.120240px;}
.ws1{word-spacing:-0.060120px;}
.ws13{word-spacing:-0.042000px;}
.ws27{word-spacing:-0.036000px;}
.ws10{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.ws3d{word-spacing:0.065880px;}
.ws3f{word-spacing:0.078120px;}
.wsf{word-spacing:0.120240px;}
.ws2d{word-spacing:0.144000px;}
.ws22{word-spacing:0.180360px;}
.ws16{word-spacing:0.186000px;}
.ws15{word-spacing:0.192000px;}
.ws33{word-spacing:0.240480px;}
.ws36{word-spacing:0.300600px;}
.ws25{word-spacing:0.360720px;}
.ws14{word-spacing:0.396000px;}
.ws23{word-spacing:0.420840px;}
.ws37{word-spacing:0.480960px;}
.ws34{word-spacing:0.541080px;}
.ws17{word-spacing:0.552000px;}
.ws20{word-spacing:0.708000px;}
.ws1d{word-spacing:0.726000px;}
.ws1f{word-spacing:0.744000px;}
.ws1c{word-spacing:0.816000px;}
.ws1e{word-spacing:0.822000px;}
.ws3b{word-spacing:0.841680px;}
.ws32{word-spacing:0.901800px;}
.ws31{word-spacing:1.082160px;}
.ws38{word-spacing:2.344680px;}
.ws30{word-spacing:2.705400px;}
.ws2f{word-spacing:3.246480px;}
.wsc{word-spacing:19.262448px;}
._22{margin-left:-5.068116px;}
._4{margin-left:-3.930768px;}
._5{margin-left:-2.260512px;}
._1{margin-left:-1.215504px;}
._0{width:1.052100px;}
._b{width:2.999988px;}
._d{width:4.076136px;}
._7{width:5.080140px;}
._6{width:6.300576px;}
._f{width:7.647264px;}
._8{width:8.705376px;}
._9{width:9.745452px;}
._c{width:11.386728px;}
._16{width:13.304556px;}
._14{width:15.925788px;}
._2c{width:16.947828px;}
._10{width:17.951832px;}
._2{width:19.436796px;}
._3{width:20.759436px;}
._11{width:21.859632px;}
._a{width:22.887684px;}
._e{width:24.102108px;}
._1a{width:25.154208px;}
._1c{width:26.452800px;}
._1b{width:27.577044px;}
._24{width:30.132144px;}
._15{width:32.777424px;}
._29{width:34.203348px;}
._28{width:35.392644px;}
._21{width:37.701252px;}
._1f{width:39.444732px;}
._13{width:43.039908px;}
._20{width:44.362548px;}
._23{width:50.578956px;}
._17{width:54.895572px;}
._26{width:61.484724px;}
._27{width:62.573976px;}
._12{width:64.130004px;}
._1d{width:65.651040px;}
._25{width:74.651004px;}
._2b{width:177.516324px;}
._2a{width:178.971228px;}
._18{width:285.539940px;}
._1e{width:1092.079800px;}
._2d{width:1093.522680px;}
._19{width:1098.933480px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:78.120000px;}
.fs1{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:102.617730px;}
.y4a{bottom:102.783060px;}
.yb6{bottom:106.905510px;}
.y80{bottom:109.166130px;}
.ydc{bottom:109.273050px;}
.y2a{bottom:122.412240px;}
.y49{bottom:122.577570px;}
.yb5{bottom:126.790200px;}
.y7f{bottom:129.050820px;}
.ydb{bottom:129.157740px;}
.y111{bottom:129.443310px;}
.y29{bottom:142.296930px;}
.y48{bottom:142.462260px;}
.yb4{bottom:146.674890px;}
.y7e{bottom:148.935510px;}
.yda{bottom:149.042430px;}
.y110{bottom:149.328000px;}
.y28{bottom:162.181620px;}
.y47{bottom:162.346950px;}
.yb3{bottom:166.559580px;}
.y7d{bottom:168.820200px;}
.yd9{bottom:168.927120px;}
.y10f{bottom:169.212690px;}
.y27{bottom:182.066310px;}
.y46{bottom:182.231640px;}
.yb2{bottom:186.354090px;}
.y142{bottom:186.485310px;}
.y7c{bottom:188.614710px;}
.yd8{bottom:188.721630px;}
.y10e{bottom:189.007200px;}
.y26{bottom:201.951000px;}
.y45{bottom:202.116330px;}
.yb1{bottom:206.238780px;}
.y141{bottom:206.370000px;}
.y7b{bottom:208.499400px;}
.yd7{bottom:208.606320px;}
.y10d{bottom:208.891890px;}
.y25{bottom:221.835690px;}
.y44{bottom:222.001020px;}
.yb0{bottom:226.123470px;}
.y140{bottom:226.260000px;}
.y7a{bottom:228.384090px;}
.yd6{bottom:228.491010px;}
.y10c{bottom:228.776580px;}
.y24{bottom:241.630200px;}
.y43{bottom:241.795530px;}
.yaf{bottom:246.008160px;}
.y13f{bottom:246.150000px;}
.y79{bottom:248.268780px;}
.yd5{bottom:248.375700px;}
.y10b{bottom:248.661270px;}
.y23{bottom:261.514890px;}
.y42{bottom:261.680220px;}
.yae{bottom:265.892850px;}
.y13e{bottom:266.040000px;}
.y78{bottom:268.153470px;}
.yd4{bottom:268.260390px;}
.y10a{bottom:268.545960px;}
.y22{bottom:281.399580px;}
.y41{bottom:281.564910px;}
.yad{bottom:285.777540px;}
.y13d{bottom:285.840000px;}
.y77{bottom:288.038160px;}
.yd3{bottom:288.145080px;}
.y109{bottom:288.430650px;}
.y21{bottom:301.284270px;}
.y40{bottom:301.449600px;}
.yac{bottom:305.572050px;}
.y13c{bottom:305.730000px;}
.y76{bottom:307.832670px;}
.yd2{bottom:307.939590px;}
.y108{bottom:308.225160px;}
.y20{bottom:321.168960px;}
.y3f{bottom:321.334290px;}
.yab{bottom:325.456740px;}
.y13b{bottom:325.620000px;}
.y75{bottom:327.717360px;}
.yd1{bottom:327.824280px;}
.y107{bottom:328.109850px;}
.y1f{bottom:341.053650px;}
.y3e{bottom:341.218980px;}
.yaa{bottom:345.341430px;}
.y13a{bottom:346.770000px;}
.y74{bottom:347.602050px;}
.yd0{bottom:347.708970px;}
.y106{bottom:347.994540px;}
.y1e{bottom:360.848160px;}
.y3d{bottom:361.013490px;}
.ya9{bottom:365.226120px;}
.y73{bottom:367.486740px;}
.ycf{bottom:367.593660px;}
.y105{bottom:367.879230px;}
.y139{bottom:372.600000px;}
.y1d{bottom:380.732850px;}
.y3c{bottom:380.898180px;}
.ya8{bottom:385.110810px;}
.y72{bottom:387.371430px;}
.yce{bottom:387.478350px;}
.y104{bottom:387.763920px;}
.y138{bottom:397.527840px;}
.y1c{bottom:400.617540px;}
.y3b{bottom:400.782870px;}
.ya7{bottom:404.995500px;}
.y71{bottom:407.256120px;}
.ycd{bottom:407.363040px;}
.y103{bottom:407.648610px;}
.y137{bottom:419.400000px;}
.y1b{bottom:420.502230px;}
.y3a{bottom:420.667560px;}
.ya6{bottom:424.790010px;}
.y70{bottom:427.050630px;}
.ycc{bottom:427.157550px;}
.y102{bottom:427.443120px;}
.y1a{bottom:440.386920px;}
.y39{bottom:440.552250px;}
.y136{bottom:441.270000px;}
.ya5{bottom:444.674700px;}
.y6f{bottom:446.935320px;}
.ycb{bottom:447.042240px;}
.y101{bottom:447.327810px;}
.y19{bottom:460.271610px;}
.y38{bottom:460.436940px;}
.y135{bottom:463.140000px;}
.ya4{bottom:464.559390px;}
.y6e{bottom:466.820010px;}
.yca{bottom:466.926930px;}
.y100{bottom:467.212500px;}
.y18{bottom:480.066120px;}
.y37{bottom:480.231450px;}
.ya3{bottom:484.444080px;}
.y134{bottom:485.010000px;}
.y6d{bottom:486.704700px;}
.yc9{bottom:486.811620px;}
.yff{bottom:487.097190px;}
.y17{bottom:499.950810px;}
.y36{bottom:500.116140px;}
.ya2{bottom:504.328770px;}
.y6c{bottom:506.589390px;}
.yc8{bottom:506.696310px;}
.y133{bottom:506.861640px;}
.yfe{bottom:506.981880px;}
.y16{bottom:519.835500px;}
.y35{bottom:520.000830px;}
.ya1{bottom:524.213460px;}
.y6b{bottom:526.474080px;}
.yc7{bottom:526.581000px;}
.y132{bottom:526.746330px;}
.yfd{bottom:526.866570px;}
.y15{bottom:539.720190px;}
.y34{bottom:539.885520px;}
.ya0{bottom:544.007970px;}
.y6a{bottom:546.268590px;}
.yc6{bottom:546.375510px;}
.y131{bottom:546.540840px;}
.yfc{bottom:546.661080px;}
.y14{bottom:559.604880px;}
.y33{bottom:559.770210px;}
.y9f{bottom:563.892660px;}
.y69{bottom:566.153280px;}
.yc5{bottom:566.260200px;}
.y130{bottom:566.425530px;}
.yfb{bottom:566.545770px;}
.y13{bottom:579.489570px;}
.y32{bottom:579.654900px;}
.y9e{bottom:583.777350px;}
.y68{bottom:586.037970px;}
.yc4{bottom:586.144890px;}
.y12f{bottom:586.310220px;}
.yfa{bottom:586.430460px;}
.y12{bottom:599.284080px;}
.y31{bottom:599.449410px;}
.y9d{bottom:603.662040px;}
.y67{bottom:605.922660px;}
.yc3{bottom:606.029580px;}
.y12e{bottom:606.194910px;}
.yf9{bottom:606.315150px;}
.y11{bottom:619.168770px;}
.y30{bottom:619.334100px;}
.y9c{bottom:623.546730px;}
.y66{bottom:625.807350px;}
.yc2{bottom:625.914270px;}
.y12d{bottom:626.079600px;}
.yf8{bottom:626.199840px;}
.y10{bottom:639.053460px;}
.y2f{bottom:639.218790px;}
.y9b{bottom:643.431420px;}
.y65{bottom:645.692040px;}
.yc1{bottom:645.798960px;}
.y12c{bottom:645.964290px;}
.yf7{bottom:646.084530px;}
.yf{bottom:658.938150px;}
.y2e{bottom:659.103480px;}
.y9a{bottom:663.225930px;}
.y64{bottom:665.486550px;}
.yc0{bottom:665.593470px;}
.y12b{bottom:665.758800px;}
.yf6{bottom:665.879040px;}
.ye{bottom:678.822840px;}
.y2d{bottom:678.988170px;}
.y99{bottom:683.110620px;}
.y63{bottom:685.371240px;}
.ybf{bottom:685.478160px;}
.y12a{bottom:685.643490px;}
.yf5{bottom:685.763730px;}
.yd{bottom:698.707500px;}
.y2c{bottom:698.872860px;}
.y98{bottom:702.995310px;}
.y62{bottom:705.255930px;}
.ybe{bottom:705.362850px;}
.y129{bottom:705.528180px;}
.yf4{bottom:705.648420px;}
.y97{bottom:722.889180px;}
.y61{bottom:725.140620px;}
.ybd{bottom:725.247540px;}
.y128{bottom:725.412870px;}
.yf3{bottom:725.533110px;}
.yc{bottom:738.386700px;}
.y96{bottom:743.495310px;}
.y60{bottom:745.025310px;}
.ybc{bottom:745.132230px;}
.y127{bottom:745.297560px;}
.yf2{bottom:745.417800px;}
.y95{bottom:763.383870px;}
.y5f{bottom:764.915490px;}
.ybb{bottom:765.016920px;}
.y126{bottom:765.182250px;}
.yf1{bottom:765.302490px;}
.yb{bottom:780.007500px;}
.y94{bottom:784.268640px;}
.y5e{bottom:784.725930px;}
.yba{bottom:784.811430px;}
.y125{bottom:784.976760px;}
.yf0{bottom:785.097000px;}
.ya{bottom:799.891500px;}
.y5d{bottom:804.610620px;}
.yb9{bottom:804.696120px;}
.y124{bottom:804.861450px;}
.y93{bottom:804.874770px;}
.yef{bottom:804.981690px;}
.y9{bottom:819.775500px;}
.y5c{bottom:824.495310px;}
.yb8{bottom:824.580810px;}
.y123{bottom:824.746140px;}
.y92{bottom:824.759460px;}
.yee{bottom:824.866380px;}
.y5b{bottom:844.385310px;}
.yb7{bottom:844.465500px;}
.y122{bottom:844.630830px;}
.y91{bottom:844.644150px;}
.yed{bottom:844.751070px;}
.y8{bottom:858.871500px;}
.y5a{bottom:864.350190px;}
.y121{bottom:864.515520px;}
.y90{bottom:864.528840px;}
.yec{bottom:864.635760px;}
.y59{bottom:884.234880px;}
.y120{bottom:884.400210px;}
.y8f{bottom:884.413530px;}
.yeb{bottom:884.520450px;}
.y58{bottom:904.029390px;}
.y11f{bottom:904.194720px;}
.y8e{bottom:904.208040px;}
.yea{bottom:904.314960px;}
.y7{bottom:907.773000px;}
.y57{bottom:923.914080px;}
.y11e{bottom:924.079410px;}
.y8d{bottom:924.092730px;}
.ye9{bottom:924.199650px;}
.y6{bottom:929.644500px;}
.y56{bottom:943.798770px;}
.y11d{bottom:943.964100px;}
.y8c{bottom:943.977420px;}
.ye8{bottom:944.084340px;}
.y5{bottom:951.516000px;}
.y55{bottom:963.683460px;}
.y11c{bottom:963.848790px;}
.y8b{bottom:963.862110px;}
.ye7{bottom:963.969030px;}
.y4{bottom:973.387500px;}
.y54{bottom:983.568150px;}
.y11b{bottom:983.733480px;}
.y8a{bottom:983.746800px;}
.ye6{bottom:983.853720px;}
.y53{bottom:1003.452840px;}
.y11a{bottom:1003.618170px;}
.y89{bottom:1003.631490px;}
.ye5{bottom:1003.738410px;}
.y3{bottom:1023.030000px;}
.y52{bottom:1023.247350px;}
.y119{bottom:1023.412680px;}
.y88{bottom:1023.426000px;}
.ye4{bottom:1023.532920px;}
.y51{bottom:1043.132040px;}
.y118{bottom:1043.297370px;}
.y87{bottom:1043.310690px;}
.ye3{bottom:1043.417610px;}
.y50{bottom:1063.016730px;}
.y117{bottom:1063.182060px;}
.y86{bottom:1063.195380px;}
.ye2{bottom:1063.302300px;}
.y4f{bottom:1082.901420px;}
.y116{bottom:1083.066750px;}
.y85{bottom:1083.080070px;}
.ye1{bottom:1083.186990px;}
.y4e{bottom:1102.786110px;}
.y115{bottom:1102.951440px;}
.y84{bottom:1102.964760px;}
.ye0{bottom:1103.071680px;}
.y4d{bottom:1122.670800px;}
.y2{bottom:1122.750000px;}
.y114{bottom:1122.836130px;}
.y83{bottom:1122.849450px;}
.ydf{bottom:1122.956370px;}
.y4c{bottom:1142.465310px;}
.y113{bottom:1142.630640px;}
.y82{bottom:1142.643960px;}
.yde{bottom:1142.750880px;}
.y4b{bottom:1162.350000px;}
.y112{bottom:1162.515330px;}
.y81{bottom:1162.528650px;}
.ydd{bottom:1162.635570px;}
.y1{bottom:1194.030000px;}
.h2{height:42.271875px;}
.h13{height:45.210240px;}
.h7{height:45.811440px;}
.h11{height:49.541760px;}
.hc{height:53.202600px;}
.hb{height:53.245080px;}
.h9{height:53.266320px;}
.h8{height:53.266440px;}
.ha{height:53.266560px;}
.hf{height:53.351280px;}
.he{height:53.372520px;}
.h10{height:53.839464px;}
.hd{height:54.249854px;}
.h4{height:58.369680px;}
.h12{height:58.746240px;}
.h5{height:58.997736px;}
.h6{height:69.959064px;}
.h3{height:119.733750px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x8{left:104.670000px;}
.x9{left:106.375500px;}
.x7{left:154.989000px;}
.x11{left:156.420000px;}
.x6{left:176.235000px;}
.x10{left:186.390000px;}
.xc{left:208.671750px;}
.x12{left:236.430000px;}
.x13{left:278.910000px;}
.x4{left:309.205500px;}
.xe{left:319.320000px;}
.x5{left:329.167500px;}
.x2{left:339.570000px;}
.xf{left:350.280000px;}
.x3{left:384.570000px;}
.xd{left:446.523930px;}
.xa{left:473.017950px;}
.xb{left:494.345520px;}
@media print{
.v1{vertical-align:-5.725120pt;}
.v2{vertical-align:-0.990720pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v3{vertical-align:26.880000pt;}
.ls3a{letter-spacing:-2.725440pt;}
.ls3b{letter-spacing:-2.404800pt;}
.ls4c{letter-spacing:-2.084160pt;}
.ls3c{letter-spacing:-1.122240pt;}
.ls3d{letter-spacing:-0.801600pt;}
.ls54{letter-spacing:-0.748160pt;}
.ls40{letter-spacing:-0.480960pt;}
.ls4b{letter-spacing:-0.427520pt;}
.ls20{letter-spacing:-0.374080pt;}
.ls21{letter-spacing:-0.320640pt;}
.ls4a{letter-spacing:-0.267200pt;}
.ls3f{letter-spacing:-0.213760pt;}
.ls1f{letter-spacing:-0.160320pt;}
.ls41{letter-spacing:-0.160000pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.106880pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls56{letter-spacing:-0.058560pt;}
.ls1e{letter-spacing:-0.053440pt;}
.ls18{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000107pt;}
.ls27{letter-spacing:0.005344pt;}
.ls8{letter-spacing:0.029940pt;}
.ls6{letter-spacing:0.035823pt;}
.ls19{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.053440pt;}
.ls55{letter-spacing:0.058560pt;}
.ls24{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.067840pt;}
.ls5{letter-spacing:0.069333pt;}
.ls7{letter-spacing:0.069440pt;}
.ls30{letter-spacing:0.092800pt;}
.ls23{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.106880pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.144640pt;}
.ls52{letter-spacing:0.149632pt;}
.ls1c{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.160320pt;}
.ls4{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.581333pt;}
.ls47{letter-spacing:0.748160pt;}
.ls38{letter-spacing:1.389440pt;}
.ls2b{letter-spacing:1.710080pt;}
.ls39{letter-spacing:2.030720pt;}
.ls33{letter-spacing:2.351360pt;}
.ls28{letter-spacing:2.511680pt;}
.ls49{letter-spacing:2.672000pt;}
.ls36{letter-spacing:3.313280pt;}
.ls4d{letter-spacing:3.633920pt;}
.ls4e{letter-spacing:3.954560pt;}
.ls2f{letter-spacing:4.275200pt;}
.ls12{letter-spacing:4.595840pt;}
.ls43{letter-spacing:4.916480pt;}
.ls4f{letter-spacing:5.557760pt;}
.lse{letter-spacing:5.584747pt;}
.lsc{letter-spacing:5.867413pt;}
.lsd{letter-spacing:5.872747pt;}
.lsb{letter-spacing:5.894080pt;}
.lsa{letter-spacing:6.584533pt;}
.ls1a{letter-spacing:6.592000pt;}
.ls29{letter-spacing:6.840320pt;}
.ls25{letter-spacing:6.893760pt;}
.ls11{letter-spacing:7.160960pt;}
.ls42{letter-spacing:7.481600pt;}
.ls34{letter-spacing:8.764160pt;}
.ls35{letter-spacing:9.726080pt;}
.ls2c{letter-spacing:10.367360pt;}
.ls31{letter-spacing:11.008640pt;}
.ls50{letter-spacing:11.970560pt;}
.ls16{letter-spacing:13.894400pt;}
.ls45{letter-spacing:14.215040pt;}
.ls2{letter-spacing:16.089280pt;}
.ls37{letter-spacing:16.459520pt;}
.ls13{letter-spacing:16.887147pt;}
.ls26{letter-spacing:17.421440pt;}
.ls14{letter-spacing:20.093547pt;}
.ls2a{letter-spacing:23.834240pt;}
.ls48{letter-spacing:26.720000pt;}
.ls51{letter-spacing:32.117440pt;}
.ls46{letter-spacing:34.361920pt;}
.ls44{letter-spacing:55.203520pt;}
.ls2d{letter-spacing:58.035840pt;}
.ls32{letter-spacing:73.800640pt;}
.ls15{letter-spacing:88.710400pt;}
.ls53{letter-spacing:754.626240pt;}
.ls0{letter-spacing:1237.296320pt;}
.ws3{word-spacing:-133.529280pt;}
.ws28{word-spacing:-53.440000pt;}
.ws6{word-spacing:-18.818133pt;}
.ws7{word-spacing:-18.748800pt;}
.ws4{word-spacing:-15.987200pt;}
.wsb{word-spacing:-14.535680pt;}
.ws8{word-spacing:-14.482133pt;}
.ws3a{word-spacing:-14.375360pt;}
.ws39{word-spacing:-14.321920pt;}
.ws5{word-spacing:-14.230080pt;}
.ws26{word-spacing:-13.146240pt;}
.ws2b{word-spacing:-13.092800pt;}
.ws2e{word-spacing:-13.039360pt;}
.ws9{word-spacing:-13.039253pt;}
.ws2c{word-spacing:-12.985920pt;}
.wse{word-spacing:-12.932480pt;}
.wsa{word-spacing:-12.879253pt;}
.wsd{word-spacing:-12.879040pt;}
.ws2{word-spacing:-10.901760pt;}
.ws2a{word-spacing:-7.776000pt;}
.ws29{word-spacing:-7.648000pt;}
.ws35{word-spacing:-3.313280pt;}
.ws11{word-spacing:-0.405333pt;}
.ws1b{word-spacing:-0.373333pt;}
.ws19{word-spacing:-0.341333pt;}
.ws12{word-spacing:-0.314667pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.256000pt;}
.ws3e{word-spacing:-0.208320pt;}
.ws3c{word-spacing:-0.175680pt;}
.ws24{word-spacing:-0.160320pt;}
.ws21{word-spacing:-0.106880pt;}
.ws1{word-spacing:-0.053440pt;}
.ws13{word-spacing:-0.037333pt;}
.ws27{word-spacing:-0.032000pt;}
.ws10{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.ws3d{word-spacing:0.058560pt;}
.ws3f{word-spacing:0.069440pt;}
.wsf{word-spacing:0.106880pt;}
.ws2d{word-spacing:0.128000pt;}
.ws22{word-spacing:0.160320pt;}
.ws16{word-spacing:0.165333pt;}
.ws15{word-spacing:0.170667pt;}
.ws33{word-spacing:0.213760pt;}
.ws36{word-spacing:0.267200pt;}
.ws25{word-spacing:0.320640pt;}
.ws14{word-spacing:0.352000pt;}
.ws23{word-spacing:0.374080pt;}
.ws37{word-spacing:0.427520pt;}
.ws34{word-spacing:0.480960pt;}
.ws17{word-spacing:0.490667pt;}
.ws20{word-spacing:0.629333pt;}
.ws1d{word-spacing:0.645333pt;}
.ws1f{word-spacing:0.661333pt;}
.ws1c{word-spacing:0.725333pt;}
.ws1e{word-spacing:0.730667pt;}
.ws3b{word-spacing:0.748160pt;}
.ws32{word-spacing:0.801600pt;}
.ws31{word-spacing:0.961920pt;}
.ws38{word-spacing:2.084160pt;}
.ws30{word-spacing:2.404800pt;}
.ws2f{word-spacing:2.885760pt;}
.wsc{word-spacing:17.122176pt;}
._22{margin-left:-4.504992pt;}
._4{margin-left:-3.494016pt;}
._5{margin-left:-2.009344pt;}
._1{margin-left:-1.080448pt;}
._0{width:0.935200pt;}
._b{width:2.666656pt;}
._d{width:3.623232pt;}
._7{width:4.515680pt;}
._6{width:5.600512pt;}
._f{width:6.797568pt;}
._8{width:7.738112pt;}
._9{width:8.662624pt;}
._c{width:10.121536pt;}
._16{width:11.826272pt;}
._14{width:14.156256pt;}
._2c{width:15.064736pt;}
._10{width:15.957184pt;}
._2{width:17.277152pt;}
._3{width:18.452832pt;}
._11{width:19.430784pt;}
._a{width:20.344608pt;}
._e{width:21.424096pt;}
._1a{width:22.359296pt;}
._1c{width:23.513600pt;}
._1b{width:24.512928pt;}
._24{width:26.784128pt;}
._15{width:29.135488pt;}
._29{width:30.402976pt;}
._28{width:31.460128pt;}
._21{width:33.512224pt;}
._1f{width:35.061984pt;}
._13{width:38.257696pt;}
._20{width:39.433376pt;}
._23{width:44.959072pt;}
._17{width:48.796064pt;}
._26{width:54.653088pt;}
._27{width:55.621312pt;}
._12{width:57.004448pt;}
._1d{width:58.356480pt;}
._25{width:66.356448pt;}
._2b{width:157.792288pt;}
._2a{width:159.085536pt;}
._18{width:253.813280pt;}
._1e{width:970.737600pt;}
._2d{width:972.020160pt;}
._19{width:976.829760pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:69.440000pt;}
.fs1{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:91.215760pt;}
.y4a{bottom:91.362720pt;}
.yb6{bottom:95.027120pt;}
.y80{bottom:97.036560pt;}
.ydc{bottom:97.131600pt;}
.y2a{bottom:108.810880pt;}
.y49{bottom:108.957840pt;}
.yb5{bottom:112.702400pt;}
.y7f{bottom:114.711840pt;}
.ydb{bottom:114.806880pt;}
.y111{bottom:115.060720pt;}
.y29{bottom:126.486160pt;}
.y48{bottom:126.633120pt;}
.yb4{bottom:130.377680pt;}
.y7e{bottom:132.387120pt;}
.yda{bottom:132.482160pt;}
.y110{bottom:132.736000pt;}
.y28{bottom:144.161440pt;}
.y47{bottom:144.308400pt;}
.yb3{bottom:148.052960pt;}
.y7d{bottom:150.062400pt;}
.yd9{bottom:150.157440pt;}
.y10f{bottom:150.411280pt;}
.y27{bottom:161.836720pt;}
.y46{bottom:161.983680pt;}
.yb2{bottom:165.648080pt;}
.y142{bottom:165.764720pt;}
.y7c{bottom:167.657520pt;}
.yd8{bottom:167.752560pt;}
.y10e{bottom:168.006400pt;}
.y26{bottom:179.512000pt;}
.y45{bottom:179.658960pt;}
.yb1{bottom:183.323360pt;}
.y141{bottom:183.440000pt;}
.y7b{bottom:185.332800pt;}
.yd7{bottom:185.427840pt;}
.y10d{bottom:185.681680pt;}
.y25{bottom:197.187280pt;}
.y44{bottom:197.334240pt;}
.yb0{bottom:200.998640pt;}
.y140{bottom:201.120000pt;}
.y7a{bottom:203.008080pt;}
.yd6{bottom:203.103120pt;}
.y10c{bottom:203.356960pt;}
.y24{bottom:214.782400pt;}
.y43{bottom:214.929360pt;}
.yaf{bottom:218.673920pt;}
.y13f{bottom:218.800000pt;}
.y79{bottom:220.683360pt;}
.yd5{bottom:220.778400pt;}
.y10b{bottom:221.032240pt;}
.y23{bottom:232.457680pt;}
.y42{bottom:232.604640pt;}
.yae{bottom:236.349200pt;}
.y13e{bottom:236.480000pt;}
.y78{bottom:238.358640pt;}
.yd4{bottom:238.453680pt;}
.y10a{bottom:238.707520pt;}
.y22{bottom:250.132960pt;}
.y41{bottom:250.279920pt;}
.yad{bottom:254.024480pt;}
.y13d{bottom:254.080000pt;}
.y77{bottom:256.033920pt;}
.yd3{bottom:256.128960pt;}
.y109{bottom:256.382800pt;}
.y21{bottom:267.808240pt;}
.y40{bottom:267.955200pt;}
.yac{bottom:271.619600pt;}
.y13c{bottom:271.760000pt;}
.y76{bottom:273.629040pt;}
.yd2{bottom:273.724080pt;}
.y108{bottom:273.977920pt;}
.y20{bottom:285.483520pt;}
.y3f{bottom:285.630480pt;}
.yab{bottom:289.294880pt;}
.y13b{bottom:289.440000pt;}
.y75{bottom:291.304320pt;}
.yd1{bottom:291.399360pt;}
.y107{bottom:291.653200pt;}
.y1f{bottom:303.158800pt;}
.y3e{bottom:303.305760pt;}
.yaa{bottom:306.970160pt;}
.y13a{bottom:308.240000pt;}
.y74{bottom:308.979600pt;}
.yd0{bottom:309.074640pt;}
.y106{bottom:309.328480pt;}
.y1e{bottom:320.753920pt;}
.y3d{bottom:320.900880pt;}
.ya9{bottom:324.645440pt;}
.y73{bottom:326.654880pt;}
.ycf{bottom:326.749920pt;}
.y105{bottom:327.003760pt;}
.y139{bottom:331.200000pt;}
.y1d{bottom:338.429200pt;}
.y3c{bottom:338.576160pt;}
.ya8{bottom:342.320720pt;}
.y72{bottom:344.330160pt;}
.yce{bottom:344.425200pt;}
.y104{bottom:344.679040pt;}
.y138{bottom:353.358080pt;}
.y1c{bottom:356.104480pt;}
.y3b{bottom:356.251440pt;}
.ya7{bottom:359.996000pt;}
.y71{bottom:362.005440pt;}
.ycd{bottom:362.100480pt;}
.y103{bottom:362.354320pt;}
.y137{bottom:372.800000pt;}
.y1b{bottom:373.779760pt;}
.y3a{bottom:373.926720pt;}
.ya6{bottom:377.591120pt;}
.y70{bottom:379.600560pt;}
.ycc{bottom:379.695600pt;}
.y102{bottom:379.949440pt;}
.y1a{bottom:391.455040pt;}
.y39{bottom:391.602000pt;}
.y136{bottom:392.240000pt;}
.ya5{bottom:395.266400pt;}
.y6f{bottom:397.275840pt;}
.ycb{bottom:397.370880pt;}
.y101{bottom:397.624720pt;}
.y19{bottom:409.130320pt;}
.y38{bottom:409.277280pt;}
.y135{bottom:411.680000pt;}
.ya4{bottom:412.941680pt;}
.y6e{bottom:414.951120pt;}
.yca{bottom:415.046160pt;}
.y100{bottom:415.300000pt;}
.y18{bottom:426.725440pt;}
.y37{bottom:426.872400pt;}
.ya3{bottom:430.616960pt;}
.y134{bottom:431.120000pt;}
.y6d{bottom:432.626400pt;}
.yc9{bottom:432.721440pt;}
.yff{bottom:432.975280pt;}
.y17{bottom:444.400720pt;}
.y36{bottom:444.547680pt;}
.ya2{bottom:448.292240pt;}
.y6c{bottom:450.301680pt;}
.yc8{bottom:450.396720pt;}
.y133{bottom:450.543680pt;}
.yfe{bottom:450.650560pt;}
.y16{bottom:462.076000pt;}
.y35{bottom:462.222960pt;}
.ya1{bottom:465.967520pt;}
.y6b{bottom:467.976960pt;}
.yc7{bottom:468.072000pt;}
.y132{bottom:468.218960pt;}
.yfd{bottom:468.325840pt;}
.y15{bottom:479.751280pt;}
.y34{bottom:479.898240pt;}
.ya0{bottom:483.562640pt;}
.y6a{bottom:485.572080pt;}
.yc6{bottom:485.667120pt;}
.y131{bottom:485.814080pt;}
.yfc{bottom:485.920960pt;}
.y14{bottom:497.426560pt;}
.y33{bottom:497.573520pt;}
.y9f{bottom:501.237920pt;}
.y69{bottom:503.247360pt;}
.yc5{bottom:503.342400pt;}
.y130{bottom:503.489360pt;}
.yfb{bottom:503.596240pt;}
.y13{bottom:515.101840pt;}
.y32{bottom:515.248800pt;}
.y9e{bottom:518.913200pt;}
.y68{bottom:520.922640pt;}
.yc4{bottom:521.017680pt;}
.y12f{bottom:521.164640pt;}
.yfa{bottom:521.271520pt;}
.y12{bottom:532.696960pt;}
.y31{bottom:532.843920pt;}
.y9d{bottom:536.588480pt;}
.y67{bottom:538.597920pt;}
.yc3{bottom:538.692960pt;}
.y12e{bottom:538.839920pt;}
.yf9{bottom:538.946800pt;}
.y11{bottom:550.372240pt;}
.y30{bottom:550.519200pt;}
.y9c{bottom:554.263760pt;}
.y66{bottom:556.273200pt;}
.yc2{bottom:556.368240pt;}
.y12d{bottom:556.515200pt;}
.yf8{bottom:556.622080pt;}
.y10{bottom:568.047520pt;}
.y2f{bottom:568.194480pt;}
.y9b{bottom:571.939040pt;}
.y65{bottom:573.948480pt;}
.yc1{bottom:574.043520pt;}
.y12c{bottom:574.190480pt;}
.yf7{bottom:574.297360pt;}
.yf{bottom:585.722800pt;}
.y2e{bottom:585.869760pt;}
.y9a{bottom:589.534160pt;}
.y64{bottom:591.543600pt;}
.yc0{bottom:591.638640pt;}
.y12b{bottom:591.785600pt;}
.yf6{bottom:591.892480pt;}
.ye{bottom:603.398080pt;}
.y2d{bottom:603.545040pt;}
.y99{bottom:607.209440pt;}
.y63{bottom:609.218880pt;}
.ybf{bottom:609.313920pt;}
.y12a{bottom:609.460880pt;}
.yf5{bottom:609.567760pt;}
.yd{bottom:621.073333pt;}
.y2c{bottom:621.220320pt;}
.y98{bottom:624.884720pt;}
.y62{bottom:626.894160pt;}
.ybe{bottom:626.989200pt;}
.y129{bottom:627.136160pt;}
.yf4{bottom:627.243040pt;}
.y97{bottom:642.568160pt;}
.y61{bottom:644.569440pt;}
.ybd{bottom:644.664480pt;}
.y128{bottom:644.811440pt;}
.yf3{bottom:644.918320pt;}
.yc{bottom:656.343733pt;}
.y96{bottom:660.884720pt;}
.y60{bottom:662.244720pt;}
.ybc{bottom:662.339760pt;}
.y127{bottom:662.486720pt;}
.yf2{bottom:662.593600pt;}
.y95{bottom:678.563440pt;}
.y5f{bottom:679.924880pt;}
.ybb{bottom:680.015040pt;}
.y126{bottom:680.162000pt;}
.yf1{bottom:680.268880pt;}
.yb{bottom:693.340000pt;}
.y94{bottom:697.127680pt;}
.y5e{bottom:697.534160pt;}
.yba{bottom:697.610160pt;}
.y125{bottom:697.757120pt;}
.yf0{bottom:697.864000pt;}
.ya{bottom:711.014667pt;}
.y5d{bottom:715.209440pt;}
.yb9{bottom:715.285440pt;}
.y124{bottom:715.432400pt;}
.y93{bottom:715.444240pt;}
.yef{bottom:715.539280pt;}
.y9{bottom:728.689333pt;}
.y5c{bottom:732.884720pt;}
.yb8{bottom:732.960720pt;}
.y123{bottom:733.107680pt;}
.y92{bottom:733.119520pt;}
.yee{bottom:733.214560pt;}
.y5b{bottom:750.564720pt;}
.yb7{bottom:750.636000pt;}
.y122{bottom:750.782960pt;}
.y91{bottom:750.794800pt;}
.yed{bottom:750.889840pt;}
.y8{bottom:763.441333pt;}
.y5a{bottom:768.311280pt;}
.y121{bottom:768.458240pt;}
.y90{bottom:768.470080pt;}
.yec{bottom:768.565120pt;}
.y59{bottom:785.986560pt;}
.y120{bottom:786.133520pt;}
.y8f{bottom:786.145360pt;}
.yeb{bottom:786.240400pt;}
.y58{bottom:803.581680pt;}
.y11f{bottom:803.728640pt;}
.y8e{bottom:803.740480pt;}
.yea{bottom:803.835520pt;}
.y7{bottom:806.909333pt;}
.y57{bottom:821.256960pt;}
.y11e{bottom:821.403920pt;}
.y8d{bottom:821.415760pt;}
.ye9{bottom:821.510800pt;}
.y6{bottom:826.350667pt;}
.y56{bottom:838.932240pt;}
.y11d{bottom:839.079200pt;}
.y8c{bottom:839.091040pt;}
.ye8{bottom:839.186080pt;}
.y5{bottom:845.792000pt;}
.y55{bottom:856.607520pt;}
.y11c{bottom:856.754480pt;}
.y8b{bottom:856.766320pt;}
.ye7{bottom:856.861360pt;}
.y4{bottom:865.233333pt;}
.y54{bottom:874.282800pt;}
.y11b{bottom:874.429760pt;}
.y8a{bottom:874.441600pt;}
.ye6{bottom:874.536640pt;}
.y53{bottom:891.958080pt;}
.y11a{bottom:892.105040pt;}
.y89{bottom:892.116880pt;}
.ye5{bottom:892.211920pt;}
.y3{bottom:909.360000pt;}
.y52{bottom:909.553200pt;}
.y119{bottom:909.700160pt;}
.y88{bottom:909.712000pt;}
.ye4{bottom:909.807040pt;}
.y51{bottom:927.228480pt;}
.y118{bottom:927.375440pt;}
.y87{bottom:927.387280pt;}
.ye3{bottom:927.482320pt;}
.y50{bottom:944.903760pt;}
.y117{bottom:945.050720pt;}
.y86{bottom:945.062560pt;}
.ye2{bottom:945.157600pt;}
.y4f{bottom:962.579040pt;}
.y116{bottom:962.726000pt;}
.y85{bottom:962.737840pt;}
.ye1{bottom:962.832880pt;}
.y4e{bottom:980.254320pt;}
.y115{bottom:980.401280pt;}
.y84{bottom:980.413120pt;}
.ye0{bottom:980.508160pt;}
.y4d{bottom:997.929600pt;}
.y2{bottom:998.000000pt;}
.y114{bottom:998.076560pt;}
.y83{bottom:998.088400pt;}
.ydf{bottom:998.183440pt;}
.y4c{bottom:1015.524720pt;}
.y113{bottom:1015.671680pt;}
.y82{bottom:1015.683520pt;}
.yde{bottom:1015.778560pt;}
.y4b{bottom:1033.200000pt;}
.y112{bottom:1033.346960pt;}
.y81{bottom:1033.358800pt;}
.ydd{bottom:1033.453840pt;}
.y1{bottom:1061.360000pt;}
.h2{height:37.575000pt;}
.h13{height:40.186880pt;}
.h7{height:40.721280pt;}
.h11{height:44.037120pt;}
.hc{height:47.291200pt;}
.hb{height:47.328960pt;}
.h9{height:47.347840pt;}
.h8{height:47.347947pt;}
.ha{height:47.348053pt;}
.hf{height:47.423360pt;}
.he{height:47.442240pt;}
.h10{height:47.857301pt;}
.hd{height:48.222093pt;}
.h4{height:51.884160pt;}
.h12{height:52.218880pt;}
.h5{height:52.442432pt;}
.h6{height:62.185835pt;}
.h3{height:106.430000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x8{left:93.040000pt;}
.x9{left:94.556000pt;}
.x7{left:137.768000pt;}
.x11{left:139.040000pt;}
.x6{left:156.653333pt;}
.x10{left:165.680000pt;}
.xc{left:185.486000pt;}
.x12{left:210.160000pt;}
.x13{left:247.920000pt;}
.x4{left:274.849333pt;}
.xe{left:283.840000pt;}
.x5{left:292.593333pt;}
.x2{left:301.840000pt;}
.xf{left:311.360000pt;}
.x3{left:341.840000pt;}
.xd{left:396.910160pt;}
.xa{left:420.460400pt;}
.xb{left:439.418240pt;}
}




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