
    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_1a8ce2f52465cccae953772f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_c60ef201d5132c9ff446aaf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_ddc25454425539f3a4eca1f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_b8b9b58a8d85dee822a15529.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_09033347a093558a2328161b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918457;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_acfe31c6726313b956991594.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.717285;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_b9f0a552e36001358c122e43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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_a464d034ac514a9f7790d7c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979000;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_57cc331436a63aae31c92b35.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971191;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_fe1cdec79f9ac50fb9b0eb08.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-3.100800px;}
.ls2f{letter-spacing:-2.851200px;}
.ls2e{letter-spacing:-2.543400px;}
.ls42{letter-spacing:-1.843200px;}
.ls41{letter-spacing:-0.096000px;}
.lsc{letter-spacing:-0.081600px;}
.ls50{letter-spacing:-0.078000px;}
.ls2a{letter-spacing:-0.076800px;}
.ls51{letter-spacing:-0.069600px;}
.ls2d{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.061200px;}
.ls43{letter-spacing:-0.057600px;}
.ls3a{letter-spacing:-0.054000px;}
.ls4b{letter-spacing:-0.031200px;}
.ls4f{letter-spacing:-0.015600px;}
.ls2{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.012000px;}
.ls2b{letter-spacing:0.016200px;}
.ls27{letter-spacing:0.019200px;}
.ls24{letter-spacing:0.021600px;}
.ls20{letter-spacing:0.022800px;}
.ls44{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.031200px;}
.ls36{letter-spacing:0.032400px;}
.ls9{letter-spacing:0.033600px;}
.ls8{letter-spacing:0.038400px;}
.ls1a{letter-spacing:0.042000px;}
.ls53{letter-spacing:0.043200px;}
.ls30{letter-spacing:0.052800px;}
.ls29{letter-spacing:0.057600px;}
.ls39{letter-spacing:0.062400px;}
.ls2c{letter-spacing:0.064800px;}
.ls4d{letter-spacing:0.073200px;}
.ls5{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.098400px;}
.ls54{letter-spacing:0.115200px;}
.ls56{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.122400px;}
.ls52{letter-spacing:0.144000px;}
.ls55{letter-spacing:0.151200px;}
.ls23{letter-spacing:0.939600px;}
.ls25{letter-spacing:0.972000px;}
.ls28{letter-spacing:1.056000px;}
.ls10{letter-spacing:1.350000px;}
.ls17{letter-spacing:1.410000px;}
.ls35{letter-spacing:1.419600px;}
.ls33{letter-spacing:1.435200px;}
.ls34{letter-spacing:1.466400px;}
.ls16{letter-spacing:1.474200px;}
.ls14{letter-spacing:1.506600px;}
.ls15{letter-spacing:1.522800px;}
.ls1e{letter-spacing:1.656000px;}
.ls1c{letter-spacing:1.674000px;}
.ls1d{letter-spacing:1.710000px;}
.ls12{letter-spacing:1.711200px;}
.ls21{letter-spacing:1.766400px;}
.ls13{letter-spacing:1.767000px;}
.ls49{letter-spacing:1.794000px;}
.ls1f{letter-spacing:1.804800px;}
.ls22{letter-spacing:1.824000px;}
.ls40{letter-spacing:1.876800px;}
.ls3c{letter-spacing:1.885740px;}
.ls3f{letter-spacing:1.917600px;}
.ls3e{letter-spacing:1.958400px;}
.ls3d{letter-spacing:1.978800px;}
.ls6{letter-spacing:2.484000px;}
.ls7{letter-spacing:2.566800px;}
.ls32{letter-spacing:2.646000px;}
.ls31{letter-spacing:2.704800px;}
.ls19{letter-spacing:3.402000px;}
.ls18{letter-spacing:3.477600px;}
.ls11{letter-spacing:3.553200px;}
.ls26{letter-spacing:3.850200px;}
.ls4{letter-spacing:3.961800px;}
.ls4e{letter-spacing:4.004400px;}
.ls4c{letter-spacing:4.047000px;}
.ls38{letter-spacing:5.815800px;}
.ls37{letter-spacing:6.253200px;}
.ls3b{letter-spacing:9.363600px;}
.ls46{letter-spacing:12.283200px;}
.ls45{letter-spacing:14.097600px;}
.ls47{letter-spacing:31.190400px;}
.ls1b{letter-spacing:45.000000px;}
.lse{letter-spacing:47.246400px;}
.lsb{letter-spacing:68.802000px;}
.ls48{letter-spacing:101.400000px;}
.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;}
}
.ws1{word-spacing:-166.800000px;}
.ws13{word-spacing:-119.016000px;}
.wsb{word-spacing:-115.092000px;}
.wsd{word-spacing:-101.821200px;}
.ws18{word-spacing:-91.740000px;}
.ws12{word-spacing:-63.360000px;}
.ws10{word-spacing:-54.912000px;}
.ws11{word-spacing:-54.834000px;}
.ws3{word-spacing:-54.336000px;}
.ws2{word-spacing:-54.240000px;}
.ws6{word-spacing:-51.714000px;}
.ws14{word-spacing:-50.688000px;}
.ws17{word-spacing:-49.363200px;}
.ws15{word-spacing:-49.305600px;}
.ws16{word-spacing:-49.291200px;}
.ws7{word-spacing:-43.430400px;}
.wsc{word-spacing:-43.399200px;}
.wsf{word-spacing:-43.368000px;}
.ws5{word-spacing:-43.003200px;}
.wse{word-spacing:-41.730000px;}
.ws8{word-spacing:-40.060800px;}
.ws4{word-spacing:-37.968000px;}
.wsa{word-spacing:-27.132000px;}
.ws9{word-spacing:-27.120000px;}
.ws0{word-spacing:0.000000px;}
._18{margin-left:-50.508000px;}
._17{margin-left:-48.108000px;}
._16{margin-left:-46.836000px;}
._23{margin-left:-17.316000px;}
._5{margin-left:-15.384000px;}
._20{margin-left:-13.986000px;}
._1f{margin-left:-11.988000px;}
._21{margin-left:-9.946800px;}
._6{margin-left:-8.928000px;}
._22{margin-left:-7.674000px;}
._0{margin-left:-6.405000px;}
._a{margin-left:-4.920000px;}
._2{margin-left:-3.408000px;}
._1{margin-left:-2.136000px;}
._3{margin-left:-1.080000px;}
._4{width:1.848000px;}
._14{width:3.244800px;}
._25{width:4.660800px;}
._1b{width:5.670000px;}
._f{width:6.746400px;}
._10{width:7.792800px;}
._26{width:9.396000px;}
._32{width:10.468800px;}
._31{width:12.196800px;}
._2e{width:13.809600px;}
._30{width:14.817600px;}
._e{width:15.862800px;}
._b{width:17.136000px;}
._34{width:18.435600px;}
._35{width:20.590800px;}
._19{width:21.708000px;}
._7{width:27.744000px;}
._1a{width:29.076000px;}
._33{width:31.104000px;}
._1d{width:33.858000px;}
._1e{width:36.612000px;}
._8{width:37.872000px;}
._9{width:39.312000px;}
._15{width:47.328000px;}
._13{width:49.702800px;}
._d{width:51.163200px;}
._c{width:52.544400px;}
._2c{width:59.648400px;}
._24{width:61.851600px;}
._2f{width:63.716400px;}
._2d{width:65.347200px;}
._12{width:67.975200px;}
._11{width:69.156000px;}
._27{width:76.852800px;}
._2b{width:78.009000px;}
._1c{width:80.028000px;}
._36{width:81.744000px;}
._2a{width:82.966800px;}
._28{width:85.195200px;}
._29{width:86.250000px;}
.fcc{color:rgb(35,115,166);}
.fcb{color:rgb(224,0,27);}
.fc7{color:transparent;}
.fc4{color:rgb(255,126,121);}
.fc8{color:rgb(192,80,77);}
.fc3{color:rgb(0,0,255);}
.fca{color:rgb(179,0,22);}
.fc9{color:rgb(51,51,51);}
.fc6{color:rgb(26,26,26);}
.fc5{color:rgb(61,61,61);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(43,43,43);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:108.000000px;}
.fs11{font-size:114.000000px;}
.fs14{font-size:120.000000px;}
.fs15{font-size:132.000000px;}
.fs18{font-size:144.000000px;}
.fs3{font-size:150.000000px;}
.fs4{font-size:156.000000px;}
.fsf{font-size:162.000000px;}
.fsa{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.fse{font-size:186.000000px;}
.fsb{font-size:192.000000px;}
.fs9{font-size:198.000000px;}
.fsc{font-size:204.000000px;}
.fs10{font-size:210.000000px;}
.fs7{font-size:240.000000px;}
.fs8{font-size:276.000000px;}
.fs1a{font-size:288.000000px;}
.fs16{font-size:294.000000px;}
.fs1d{font-size:300.000000px;}
.fs17{font-size:312.000000px;}
.fs1{font-size:318.000000px;}
.fs1f{font-size:330.000000px;}
.fs1b{font-size:348.000000px;}
.fs1c{font-size:360.000000px;}
.fs19{font-size:366.000000px;}
.fsd{font-size:378.000000px;}
.fs13{font-size:414.000000px;}
.fs6{font-size:426.000000px;}
.fs1e{font-size:468.000000px;}
.fs0{font-size:492.000000px;}
.fs5{font-size:600.000000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:20.038500px;}
.y138{bottom:36.993000px;}
.ybf{bottom:39.384000px;}
.y57{bottom:46.086000px;}
.yd1{bottom:46.943100px;}
.y7d{bottom:48.872850px;}
.yf2{bottom:72.640650px;}
.ye1{bottom:77.675100px;}
.yd0{bottom:82.943100px;}
.y7c{bottom:90.872850px;}
.ybe{bottom:102.675000px;}
.y106{bottom:105.355500px;}
.yf1{bottom:107.140650px;}
.ye0{bottom:113.675100px;}
.y137{bottom:115.293000px;}
.y45{bottom:118.635000px;}
.ycf{bottom:118.943100px;}
.y97{bottom:120.380700px;}
.y22{bottom:122.238600px;}
.y61{bottom:130.861500px;}
.y7b{bottom:140.119500px;}
.yf0{bottom:141.640650px;}
.y6c{bottom:141.903750px;}
.y87{bottom:148.880550px;}
.y34{bottom:155.620500px;}
.y96{bottom:156.381000px;}
.y60{bottom:163.861500px;}
.ybd{bottom:165.966000px;}
.y21{bottom:168.196500px;}
.y6e{bottom:170.680500px;}
.yd{bottom:173.568000px;}
.yef{bottom:176.140500px;}
.y6b{bottom:177.903000px;}
.yaa{bottom:180.559500px;}
.y86{bottom:184.881000px;}
.y127{bottom:187.488000px;}
.y15{bottom:188.946000px;}
.yf7{bottom:189.336000px;}
.y7a{bottom:193.675500px;}
.y5f{bottom:196.861500px;}
.y44{bottom:198.862500px;}
.y6{bottom:200.533500px;}
.y56{bottom:206.458500px;}
.yee{bottom:210.640500px;}
.y100{bottom:215.151000px;}
.y134{bottom:227.272500px;}
.ya9{bottom:228.559500px;}
.yc{bottom:229.068000px;}
.ybc{bottom:229.257000px;}
.y5e{bottom:229.861500px;}
.y126{bottom:237.318000px;}
.y20{bottom:238.153500px;}
.yb1{bottom:239.967000px;}
.y43{bottom:241.462500px;}
.yf6{bottom:243.336000px;}
.y11b{bottom:244.786500px;}
.yed{bottom:245.140500px;}
.y79{bottom:247.231500px;}
.y5{bottom:254.533500px;}
.y33{bottom:255.012000px;}
.yb4{bottom:255.468000px;}
.y14{bottom:256.419000px;}
.y95{bottom:259.228500px;}
.y55{bottom:260.458500px;}
.ydf{bottom:266.152500px;}
.ya8{bottom:276.559500px;}
.y133{bottom:279.472500px;}
.yec{bottom:279.640500px;}
.y42{bottom:284.062500px;}
.y125{bottom:289.518000px;}
.ybb{bottom:292.546500px;}
.y78{bottom:300.787500px;}
.y94{bottom:305.728500px;}
.y4{bottom:308.533500px;}
.yb0{bottom:308.967000px;}
.y32{bottom:313.522500px;}
.yeb{bottom:314.140500px;}
.y54{bottom:314.458500px;}
.y27{bottom:319.033500px;}
.ya7{bottom:324.559500px;}
.y85{bottom:325.108500px;}
.y41{bottom:326.662500px;}
.y13b{bottom:333.886500px;}
.yff{bottom:337.431000px;}
.yce{bottom:337.653000px;}
.yf5{bottom:338.182500px;}
.yea{bottom:348.640500px;}
.y93{bottom:352.228500px;}
.y77{bottom:354.345000px;}
.yba{bottom:355.837500px;}
.y40{bottom:369.262500px;}
.y31{bottom:372.033000px;}
.ya6{bottom:372.559500px;}
.y5d{bottom:375.451500px;}
.y26{bottom:376.033500px;}
.y49{bottom:376.116000px;}
.y84{bottom:379.108500px;}
.ye9{bottom:383.140500px;}
.y132{bottom:383.872500px;}
.y11a{bottom:385.786500px;}
.y6a{bottom:391.597500px;}
.ycd{bottom:393.333000px;}
.y124{bottom:393.918000px;}
.y53{bottom:395.458500px;}
.yfe{bottom:398.571000px;}
.y92{bottom:398.728500px;}
.yde{bottom:403.920000px;}
.y76{bottom:407.901000px;}
.y1f{bottom:410.110500px;}
.y3f{bottom:411.862500px;}
.y13{bottom:412.857000px;}
.ye8{bottom:417.640500px;}
.yb9{bottom:419.128500px;}
.ya5{bottom:420.559500px;}
.y30{bottom:430.542000px;}
.y131{bottom:436.072500px;}
.y119{bottom:436.786500px;}
.y91{bottom:445.228500px;}
.ydd{bottom:445.770000px;}
.y123{bottom:446.118000px;}
.yaf{bottom:446.967000px;}
.yf4{bottom:447.682500px;}
.ycc{bottom:449.013000px;}
.y52{bottom:449.458500px;}
.y69{bottom:450.097500px;}
.yb{bottom:452.163000px;}
.y3e{bottom:454.462500px;}
.y1e{bottom:456.067500px;}
.yfd{bottom:459.711000px;}
.y75{bottom:461.457000px;}
.y101{bottom:463.075500px;}
.ya4{bottom:468.559500px;}
.y107{bottom:476.169000px;}
.y12{bottom:479.074500px;}
.yb8{bottom:482.419500px;}
.y10c{bottom:486.589500px;}
.y83{bottom:487.108500px;}
.ydc{bottom:487.620000px;}
.y118{bottom:487.786500px;}
.y130{bottom:488.272500px;}
.y2f{bottom:489.052500px;}
.y25{bottom:490.033500px;}
.y109{bottom:491.530500px;}
.y122{bottom:498.318000px;}
.y5c{bottom:498.451500px;}
.y1d{bottom:502.024500px;}
.y48{bottom:503.616000px;}
.ycb{bottom:504.693000px;}
.y74{bottom:515.013000px;}
.yae{bottom:515.967000px;}
.ya3{bottom:516.559500px;}
.ydb{bottom:529.402500px;}
.y51{bottom:530.458500px;}
.y90{bottom:538.228500px;}
.y3d{bottom:539.662500px;}
.y12f{bottom:540.472500px;}
.y82{bottom:541.108500px;}
.yb7{bottom:545.709000px;}
.y24{bottom:547.033500px;}
.y2e{bottom:547.563000px;}
.y121{bottom:550.518000px;}
.y68{bottom:550.597500px;}
.yf3{bottom:557.182500px;}
.y5b{bottom:559.951500px;}
.yca{bottom:560.373000px;}
.ya2{bottom:564.559500px;}
.y73{bottom:568.569000px;}
.y1c{bottom:571.981500px;}
.yfc{bottom:581.991000px;}
.y3c{bottom:582.262500px;}
.y50{bottom:584.458500px;}
.y8f{bottom:584.728500px;}
.yad{bottom:584.967000px;}
.ye{bottom:585.864000px;}
.yf{bottom:590.575500px;}
.y3{bottom:593.274000px;}
.y81{bottom:595.108500px;}
.yda{bottom:598.320000px;}
.y120{bottom:602.718000px;}
.y2d{bottom:606.072000px;}
.yb6{bottom:609.000000px;}
.y67{bottom:609.097500px;}
.ya1{bottom:612.559500px;}
.yc9{bottom:616.053000px;}
.y111{bottom:621.378000px;}
.y5a{bottom:621.451500px;}
.y72{bottom:622.125000px;}
.y3b{bottom:624.862500px;}
.y117{bottom:628.786500px;}
.y47{bottom:631.116000px;}
.y8e{bottom:631.228500px;}
.y105{bottom:632.433000px;}
.y4f{bottom:638.458500px;}
.yd9{bottom:640.170000px;}
.y12e{bottom:644.872500px;}
.y11f{bottom:654.918000px;}
.ya0{bottom:660.559500px;}
.y23{bottom:661.033500px;}
.y11{bottom:662.206500px;}
.y2c{bottom:664.582500px;}
.ye7{bottom:664.605000px;}
.y3a{bottom:667.462500px;}
.y66{bottom:667.597500px;}
.yc8{bottom:671.733000px;}
.yb5{bottom:672.291000px;}
.ya{bottom:675.256500px;}
.y71{bottom:675.681000px;}
.y8d{bottom:677.728500px;}
.y116{bottom:679.786500px;}
.yd8{bottom:681.952500px;}
.y110{bottom:686.178000px;}
.y13a{bottom:693.150000px;}
.y12d{bottom:697.072500px;}
.y104{bottom:697.233000px;}
.y80{bottom:703.108500px;}
.yfb{bottom:704.271000px;}
.y11e{bottom:707.118000px;}
.y9f{bottom:708.559500px;}
.y39{bottom:710.062500px;}
.ye6{bottom:711.105000px;}
.y4e{bottom:720.148500px;}
.yac{bottom:722.967000px;}
.y2b{bottom:723.093000px;}
.y8c{bottom:724.228500px;}
.y65{bottom:726.097500px;}
.yc7{bottom:727.413000px;}
.y10{bottom:728.425500px;}
.y70{bottom:729.237000px;}
.y9{bottom:730.756500px;}
.y115{bottom:730.786500px;}
.y1b{bottom:743.940000px;}
.y59{bottom:744.451500px;}
.y12c{bottom:749.272500px;}
.yd7{bottom:750.870000px;}
.y38{bottom:752.662500px;}
.y7f{bottom:757.108500px;}
.y46{bottom:758.616000px;}
.y11d{bottom:759.318000px;}
.yfa{bottom:765.411000px;}
.y8b{bottom:770.728500px;}
.y4d{bottom:777.148500px;}
.y2a{bottom:781.602000px;}
.y10f{bottom:782.598000px;}
.y6f{bottom:782.793000px;}
.yc6{bottom:783.093000px;}
.y8{bottom:786.256500px;}
.y1a{bottom:789.897000px;}
.yab{bottom:791.967000px;}
.yd6{bottom:792.652500px;}
.y10b{bottom:793.237500px;}
.y37{bottom:795.798000px;}
.y12b{bottom:801.472500px;}
.y2{bottom:801.483000px;}
.ye5{bottom:804.106500px;}
.y58{bottom:805.951500px;}
.y7e{bottom:811.108500px;}
.y11c{bottom:811.518000px;}
.y8a{bottom:817.228500px;}
.y64{bottom:826.597500px;}
.y10e{bottom:830.178000px;}
.y4c{bottom:834.148500px;}
.yc5{bottom:838.773000px;}
.y29{bottom:840.112500px;}
.ye4{bottom:850.606500px;}
.y12a{bottom:853.672500px;}
.y103{bottom:856.833000px;}
.y19{bottom:859.854000px;}
.yd5{bottom:861.570000px;}
.y9a{bottom:882.918000px;}
.y63{bottom:885.097500px;}
.yf9{bottom:887.691000px;}
.y36{bottom:894.310500px;}
.yc4{bottom:894.453000px;}
.y10d{bottom:894.978000px;}
.y28{bottom:898.623000px;}
.yd4{bottom:903.352500px;}
.y17{bottom:913.323000px;}
.y102{bottom:921.633000px;}
.y1{bottom:927.483000px;}
.y9e{bottom:940.438500px;}
.ye3{bottom:943.605000px;}
.y129{bottom:947.659500px;}
.yf8{bottom:948.831000px;}
.y89{bottom:949.017000px;}
.yc3{bottom:950.133000px;}
.y113{bottom:955.579500px;}
.y136{bottom:959.808000px;}
.yb3{bottom:959.817000px;}
.y99{bottom:960.918000px;}
.yd3{bottom:972.270000px;}
.y9d{bottom:974.938500px;}
.y7{bottom:988.752000px;}
.y4b{bottom:991.278000px;}
.y18{bottom:1002.411000px;}
.yc2{bottom:1005.813000px;}
.y9c{bottom:1009.438500px;}
.yd2{bottom:1014.052500px;}
.y16{bottom:1027.323000px;}
.y6d{bottom:1033.315500px;}
.y62{bottom:1033.317000px;}
.y139{bottom:1033.356000px;}
.y98{bottom:1038.918000px;}
.y135{bottom:1042.654500px;}
.y9b{bottom:1043.938500px;}
.y35{bottom:1044.115500px;}
.y128{bottom:1046.209500px;}
.ye2{bottom:1046.515500px;}
.y112{bottom:1050.079500px;}
.y88{bottom:1052.517000px;}
.y4a{bottom:1054.278000px;}
.y108{bottom:1056.442500px;}
.yb2{bottom:1057.317000px;}
.y114{bottom:1060.116000px;}
.yc1{bottom:1061.493000px;}
.yc0{bottom:1117.173000px;}
.h2b{height:70.198950px;}
.h21{height:77.519531px;}
.h13{height:82.048828px;}
.h2c{height:82.582031px;}
.h1d{height:86.132812px;}
.h26{height:87.780000px;}
.h1c{height:94.746094px;}
.h14{height:98.824219px;}
.h30{height:100.933594px;}
.h18{height:109.804688px;}
.h2f{height:110.109375px;}
.h1a{height:110.742188px;}
.h1f{height:111.896484px;}
.h1b{height:116.279297px;}
.h29{height:119.285156px;}
.hb{height:120.585938px;}
.h2e{height:128.460938px;}
.h16{height:131.250000px;}
.h24{height:131.765625px;}
.h4{height:137.255859px;}
.h28{height:137.636719px;}
.h17{height:137.812500px;}
.he{height:139.453125px;}
.ha{height:142.119141px;}
.h5{height:142.746094px;}
.h25{height:143.016094px;}
.hd{height:146.425781px;}
.h11{height:148.236328px;}
.h3{height:164.707031px;}
.h10{height:170.197266px;}
.h8{height:172.265625px;}
.hc{height:175.687500px;}
.h22{height:186.667969px;}
.h12{height:192.158203px;}
.h9{height:204.708984px;}
.h33{height:209.052000px;}
.h2a{height:213.609375px;}
.h1e{height:218.059570px;}
.h34{height:220.218750px;}
.h35{height:229.394531px;}
.h20{height:231.410156px;}
.h2{height:235.860352px;}
.h2d{height:266.097656px;}
.h31{height:275.273438px;}
.hf{height:280.362305px;}
.h32{height:289.037109px;}
.h15{height:307.063477px;}
.h27{height:334.904297px;}
.h7{height:389.806641px;}
.h36{height:428.238281px;}
.h1{height:450.199219px;}
.h6{height:549.023438px;}
.h23{height:783.487500px;}
.h19{height:876.910500px;}
.h0{height:1215.000000px;}
.w6{width:80.404500px;}
.w4{width:113.272650px;}
.w5{width:133.896300px;}
.w3{width:155.910000px;}
.w7{width:935.331000px;}
.w2{width:1182.658500px;}
.w1{width:1200.502500px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x54{left:2.485905px;}
.x2f{left:10.126500px;}
.x3e{left:12.000000px;}
.x19{left:16.285800px;}
.x5d{left:21.876000px;}
.x4e{left:48.361650px;}
.x56{left:54.751800px;}
.x5a{left:75.622500px;}
.x40{left:77.992050px;}
.x58{left:89.551650px;}
.x51{left:92.994600px;}
.x3a{left:97.784700px;}
.x2a{left:110.022900px;}
.x26{left:111.795750px;}
.x31{left:112.881900px;}
.x12{left:116.812200px;}
.x38{left:120.249900px;}
.x15{left:122.291400px;}
.x44{left:145.009650px;}
.x9{left:146.051100px;}
.x49{left:164.634000px;}
.x18{left:167.710500px;}
.x2b{left:181.552500px;}
.x2d{left:183.375000px;}
.xe{left:191.974500px;}
.x4b{left:199.788000px;}
.x39{left:205.785000px;}
.x4a{left:214.854000px;}
.x35{left:241.306500px;}
.x36{left:264.105000px;}
.x27{left:271.876500px;}
.x14{left:273.715500px;}
.xf{left:282.022500px;}
.xd{left:343.399500px;}
.x33{left:346.050000px;}
.x20{left:360.664500px;}
.x5c{left:377.206500px;}
.x32{left:405.072000px;}
.x1b{left:416.718000px;}
.xb{left:425.253000px;}
.x11{left:446.286000px;}
.x57{left:461.862000px;}
.x5b{left:463.180500px;}
.x1e{left:464.743500px;}
.x4c{left:474.181500px;}
.x1c{left:518.902500px;}
.x3b{left:533.617500px;}
.x2e{left:551.118000px;}
.x3d{left:580.432500px;}
.x2{left:588.004500px;}
.xa{left:600.472500px;}
.x46{left:611.731500px;}
.x3c{left:628.527000px;}
.x3{left:669.679500px;}
.x43{left:671.584500px;}
.x60{left:673.602000px;}
.x6{left:679.645500px;}
.x1{left:690.495000px;}
.x59{left:729.282000px;}
.x34{left:745.149000px;}
.x47{left:755.865000px;}
.x48{left:771.811500px;}
.xc{left:773.994000px;}
.x5{left:802.975500px;}
.x5f{left:806.838000px;}
.x1d{left:836.943000px;}
.x29{left:858.091500px;}
.x17{left:888.390000px;}
.x1f{left:898.579500px;}
.x4d{left:905.814000px;}
.x55{left:908.497500px;}
.x10{left:912.976500px;}
.x30{left:966.813000px;}
.x4{left:1020.226500px;}
.x21{left:1045.599000px;}
.x3f{left:1088.100000px;}
.x41{left:1101.600000px;}
.x42{left:1140.600000px;}
.x23{left:1162.489500px;}
.x22{left:1189.489500px;}
.x8{left:1208.583000px;}
.x7{left:1214.880000px;}
.x24{left:1216.489500px;}
.x13{left:1236.045000px;}
.x5e{left:1259.599500px;}
.x53{left:1321.624500px;}
.x25{left:1408.881000px;}
.x1a{left:1591.200000px;}
.x16{left:1603.320000px;}
.x37{left:1626.870000px;}
.x4f{left:1703.040000px;}
.x45{left:1752.420000px;}
.x2c{left:1769.190000px;}
.x28{left:1874.805000px;}
.x50{left:1878.375000px;}
.x52{left:1994.670000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.756267pt;}
.ls2f{letter-spacing:-2.534400pt;}
.ls2e{letter-spacing:-2.260800pt;}
.ls42{letter-spacing:-1.638400pt;}
.ls41{letter-spacing:-0.085333pt;}
.lsc{letter-spacing:-0.072533pt;}
.ls50{letter-spacing:-0.069333pt;}
.ls2a{letter-spacing:-0.068267pt;}
.ls51{letter-spacing:-0.061867pt;}
.ls2d{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.054400pt;}
.ls43{letter-spacing:-0.051200pt;}
.ls3a{letter-spacing:-0.048000pt;}
.ls4b{letter-spacing:-0.027733pt;}
.ls4f{letter-spacing:-0.013867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.010667pt;}
.ls2b{letter-spacing:0.014400pt;}
.ls27{letter-spacing:0.017067pt;}
.ls24{letter-spacing:0.019200pt;}
.ls20{letter-spacing:0.020267pt;}
.ls44{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.027733pt;}
.ls36{letter-spacing:0.028800pt;}
.ls9{letter-spacing:0.029867pt;}
.ls8{letter-spacing:0.034133pt;}
.ls1a{letter-spacing:0.037333pt;}
.ls53{letter-spacing:0.038400pt;}
.ls30{letter-spacing:0.046933pt;}
.ls29{letter-spacing:0.051200pt;}
.ls39{letter-spacing:0.055467pt;}
.ls2c{letter-spacing:0.057600pt;}
.ls4d{letter-spacing:0.065067pt;}
.ls5{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.087467pt;}
.ls54{letter-spacing:0.102400pt;}
.ls56{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.108800pt;}
.ls52{letter-spacing:0.128000pt;}
.ls55{letter-spacing:0.134400pt;}
.ls23{letter-spacing:0.835200pt;}
.ls25{letter-spacing:0.864000pt;}
.ls28{letter-spacing:0.938667pt;}
.ls10{letter-spacing:1.200000pt;}
.ls17{letter-spacing:1.253333pt;}
.ls35{letter-spacing:1.261867pt;}
.ls33{letter-spacing:1.275733pt;}
.ls34{letter-spacing:1.303467pt;}
.ls16{letter-spacing:1.310400pt;}
.ls14{letter-spacing:1.339200pt;}
.ls15{letter-spacing:1.353600pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls1c{letter-spacing:1.488000pt;}
.ls1d{letter-spacing:1.520000pt;}
.ls12{letter-spacing:1.521067pt;}
.ls21{letter-spacing:1.570133pt;}
.ls13{letter-spacing:1.570667pt;}
.ls49{letter-spacing:1.594667pt;}
.ls1f{letter-spacing:1.604267pt;}
.ls22{letter-spacing:1.621333pt;}
.ls40{letter-spacing:1.668267pt;}
.ls3c{letter-spacing:1.676213pt;}
.ls3f{letter-spacing:1.704533pt;}
.ls3e{letter-spacing:1.740800pt;}
.ls3d{letter-spacing:1.758933pt;}
.ls6{letter-spacing:2.208000pt;}
.ls7{letter-spacing:2.281600pt;}
.ls32{letter-spacing:2.352000pt;}
.ls31{letter-spacing:2.404267pt;}
.ls19{letter-spacing:3.024000pt;}
.ls18{letter-spacing:3.091200pt;}
.ls11{letter-spacing:3.158400pt;}
.ls26{letter-spacing:3.422400pt;}
.ls4{letter-spacing:3.521600pt;}
.ls4e{letter-spacing:3.559467pt;}
.ls4c{letter-spacing:3.597333pt;}
.ls38{letter-spacing:5.169600pt;}
.ls37{letter-spacing:5.558400pt;}
.ls3b{letter-spacing:8.323200pt;}
.ls46{letter-spacing:10.918400pt;}
.ls45{letter-spacing:12.531200pt;}
.ls47{letter-spacing:27.724800pt;}
.ls1b{letter-spacing:40.000000pt;}
.lse{letter-spacing:41.996800pt;}
.lsb{letter-spacing:61.157333pt;}
.ls48{letter-spacing:90.133333pt;}
.ws1{word-spacing:-148.266667pt;}
.ws13{word-spacing:-105.792000pt;}
.wsb{word-spacing:-102.304000pt;}
.wsd{word-spacing:-90.507733pt;}
.ws18{word-spacing:-81.546667pt;}
.ws12{word-spacing:-56.320000pt;}
.ws10{word-spacing:-48.810667pt;}
.ws11{word-spacing:-48.741333pt;}
.ws3{word-spacing:-48.298667pt;}
.ws2{word-spacing:-48.213333pt;}
.ws6{word-spacing:-45.968000pt;}
.ws14{word-spacing:-45.056000pt;}
.ws17{word-spacing:-43.878400pt;}
.ws15{word-spacing:-43.827200pt;}
.ws16{word-spacing:-43.814400pt;}
.ws7{word-spacing:-38.604800pt;}
.wsc{word-spacing:-38.577067pt;}
.wsf{word-spacing:-38.549333pt;}
.ws5{word-spacing:-38.225067pt;}
.wse{word-spacing:-37.093333pt;}
.ws8{word-spacing:-35.609600pt;}
.ws4{word-spacing:-33.749333pt;}
.wsa{word-spacing:-24.117333pt;}
.ws9{word-spacing:-24.106667pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-44.896000pt;}
._17{margin-left:-42.762667pt;}
._16{margin-left:-41.632000pt;}
._23{margin-left:-15.392000pt;}
._5{margin-left:-13.674667pt;}
._20{margin-left:-12.432000pt;}
._1f{margin-left:-10.656000pt;}
._21{margin-left:-8.841600pt;}
._6{margin-left:-7.936000pt;}
._22{margin-left:-6.821333pt;}
._0{margin-left:-5.693333pt;}
._a{margin-left:-4.373333pt;}
._2{margin-left:-3.029333pt;}
._1{margin-left:-1.898667pt;}
._3{margin-left:-0.960000pt;}
._4{width:1.642667pt;}
._14{width:2.884267pt;}
._25{width:4.142933pt;}
._1b{width:5.040000pt;}
._f{width:5.996800pt;}
._10{width:6.926933pt;}
._26{width:8.352000pt;}
._32{width:9.305600pt;}
._31{width:10.841600pt;}
._2e{width:12.275200pt;}
._30{width:13.171200pt;}
._e{width:14.100267pt;}
._b{width:15.232000pt;}
._34{width:16.387200pt;}
._35{width:18.302933pt;}
._19{width:19.296000pt;}
._7{width:24.661333pt;}
._1a{width:25.845333pt;}
._33{width:27.648000pt;}
._1d{width:30.096000pt;}
._1e{width:32.544000pt;}
._8{width:33.664000pt;}
._9{width:34.944000pt;}
._15{width:42.069333pt;}
._13{width:44.180267pt;}
._d{width:45.478400pt;}
._c{width:46.706133pt;}
._2c{width:53.020800pt;}
._24{width:54.979200pt;}
._2f{width:56.636800pt;}
._2d{width:58.086400pt;}
._12{width:60.422400pt;}
._11{width:61.472000pt;}
._27{width:68.313600pt;}
._2b{width:69.341333pt;}
._1c{width:71.136000pt;}
._36{width:72.661333pt;}
._2a{width:73.748267pt;}
._28{width:75.729067pt;}
._29{width:76.666667pt;}
.fs12{font-size:96.000000pt;}
.fs11{font-size:101.333333pt;}
.fs14{font-size:106.666667pt;}
.fs15{font-size:117.333333pt;}
.fs18{font-size:128.000000pt;}
.fs3{font-size:133.333333pt;}
.fs4{font-size:138.666667pt;}
.fsf{font-size:144.000000pt;}
.fsa{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.fse{font-size:165.333333pt;}
.fsb{font-size:170.666667pt;}
.fs9{font-size:176.000000pt;}
.fsc{font-size:181.333333pt;}
.fs10{font-size:186.666667pt;}
.fs7{font-size:213.333333pt;}
.fs8{font-size:245.333333pt;}
.fs1a{font-size:256.000000pt;}
.fs16{font-size:261.333333pt;}
.fs1d{font-size:266.666667pt;}
.fs17{font-size:277.333333pt;}
.fs1{font-size:282.666667pt;}
.fs1f{font-size:293.333333pt;}
.fs1b{font-size:309.333333pt;}
.fs1c{font-size:320.000000pt;}
.fs19{font-size:325.333333pt;}
.fsd{font-size:336.000000pt;}
.fs13{font-size:368.000000pt;}
.fs6{font-size:378.666667pt;}
.fs1e{font-size:416.000000pt;}
.fs0{font-size:437.333333pt;}
.fs5{font-size:533.333333pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:17.812000pt;}
.y138{bottom:32.882667pt;}
.ybf{bottom:35.008000pt;}
.y57{bottom:40.965333pt;}
.yd1{bottom:41.727200pt;}
.y7d{bottom:43.442533pt;}
.yf2{bottom:64.569467pt;}
.ye1{bottom:69.044533pt;}
.yd0{bottom:73.727200pt;}
.y7c{bottom:80.775867pt;}
.ybe{bottom:91.266667pt;}
.y106{bottom:93.649333pt;}
.yf1{bottom:95.236133pt;}
.ye0{bottom:101.044533pt;}
.y137{bottom:102.482667pt;}
.y45{bottom:105.453333pt;}
.ycf{bottom:105.727200pt;}
.y97{bottom:107.005067pt;}
.y22{bottom:108.656533pt;}
.y61{bottom:116.321333pt;}
.y7b{bottom:124.550667pt;}
.yf0{bottom:125.902800pt;}
.y6c{bottom:126.136667pt;}
.y87{bottom:132.338267pt;}
.y34{bottom:138.329333pt;}
.y96{bottom:139.005333pt;}
.y60{bottom:145.654667pt;}
.ybd{bottom:147.525333pt;}
.y21{bottom:149.508000pt;}
.y6e{bottom:151.716000pt;}
.yd{bottom:154.282667pt;}
.yef{bottom:156.569333pt;}
.y6b{bottom:158.136000pt;}
.yaa{bottom:160.497333pt;}
.y86{bottom:164.338667pt;}
.y127{bottom:166.656000pt;}
.y15{bottom:167.952000pt;}
.yf7{bottom:168.298667pt;}
.y7a{bottom:172.156000pt;}
.y5f{bottom:174.988000pt;}
.y44{bottom:176.766667pt;}
.y6{bottom:178.252000pt;}
.y56{bottom:183.518667pt;}
.yee{bottom:187.236000pt;}
.y100{bottom:191.245333pt;}
.y134{bottom:202.020000pt;}
.ya9{bottom:203.164000pt;}
.yc{bottom:203.616000pt;}
.ybc{bottom:203.784000pt;}
.y5e{bottom:204.321333pt;}
.y126{bottom:210.949333pt;}
.y20{bottom:211.692000pt;}
.yb1{bottom:213.304000pt;}
.y43{bottom:214.633333pt;}
.yf6{bottom:216.298667pt;}
.y11b{bottom:217.588000pt;}
.yed{bottom:217.902667pt;}
.y79{bottom:219.761333pt;}
.y5{bottom:226.252000pt;}
.y33{bottom:226.677333pt;}
.yb4{bottom:227.082667pt;}
.y14{bottom:227.928000pt;}
.y95{bottom:230.425333pt;}
.y55{bottom:231.518667pt;}
.ydf{bottom:236.580000pt;}
.ya8{bottom:245.830667pt;}
.y133{bottom:248.420000pt;}
.yec{bottom:248.569333pt;}
.y42{bottom:252.500000pt;}
.y125{bottom:257.349333pt;}
.ybb{bottom:260.041333pt;}
.y78{bottom:267.366667pt;}
.y94{bottom:271.758667pt;}
.y4{bottom:274.252000pt;}
.yb0{bottom:274.637333pt;}
.y32{bottom:278.686667pt;}
.yeb{bottom:279.236000pt;}
.y54{bottom:279.518667pt;}
.y27{bottom:283.585333pt;}
.ya7{bottom:288.497333pt;}
.y85{bottom:288.985333pt;}
.y41{bottom:290.366667pt;}
.y13b{bottom:296.788000pt;}
.yff{bottom:299.938667pt;}
.yce{bottom:300.136000pt;}
.yf5{bottom:300.606667pt;}
.yea{bottom:309.902667pt;}
.y93{bottom:313.092000pt;}
.y77{bottom:314.973333pt;}
.yba{bottom:316.300000pt;}
.y40{bottom:328.233333pt;}
.y31{bottom:330.696000pt;}
.ya6{bottom:331.164000pt;}
.y5d{bottom:333.734667pt;}
.y26{bottom:334.252000pt;}
.y49{bottom:334.325333pt;}
.y84{bottom:336.985333pt;}
.ye9{bottom:340.569333pt;}
.y132{bottom:341.220000pt;}
.y11a{bottom:342.921333pt;}
.y6a{bottom:348.086667pt;}
.ycd{bottom:349.629333pt;}
.y124{bottom:350.149333pt;}
.y53{bottom:351.518667pt;}
.yfe{bottom:354.285333pt;}
.y92{bottom:354.425333pt;}
.yde{bottom:359.040000pt;}
.y76{bottom:362.578667pt;}
.y1f{bottom:364.542667pt;}
.y3f{bottom:366.100000pt;}
.y13{bottom:366.984000pt;}
.ye8{bottom:371.236000pt;}
.yb9{bottom:372.558667pt;}
.ya5{bottom:373.830667pt;}
.y30{bottom:382.704000pt;}
.y131{bottom:387.620000pt;}
.y119{bottom:388.254667pt;}
.y91{bottom:395.758667pt;}
.ydd{bottom:396.240000pt;}
.y123{bottom:396.549333pt;}
.yaf{bottom:397.304000pt;}
.yf4{bottom:397.940000pt;}
.ycc{bottom:399.122667pt;}
.y52{bottom:399.518667pt;}
.y69{bottom:400.086667pt;}
.yb{bottom:401.922667pt;}
.y3e{bottom:403.966667pt;}
.y1e{bottom:405.393333pt;}
.yfd{bottom:408.632000pt;}
.y75{bottom:410.184000pt;}
.y101{bottom:411.622667pt;}
.ya4{bottom:416.497333pt;}
.y107{bottom:423.261333pt;}
.y12{bottom:425.844000pt;}
.yb8{bottom:428.817333pt;}
.y10c{bottom:432.524000pt;}
.y83{bottom:432.985333pt;}
.ydc{bottom:433.440000pt;}
.y118{bottom:433.588000pt;}
.y130{bottom:434.020000pt;}
.y2f{bottom:434.713333pt;}
.y25{bottom:435.585333pt;}
.y109{bottom:436.916000pt;}
.y122{bottom:442.949333pt;}
.y5c{bottom:443.068000pt;}
.y1d{bottom:446.244000pt;}
.y48{bottom:447.658667pt;}
.ycb{bottom:448.616000pt;}
.y74{bottom:457.789333pt;}
.yae{bottom:458.637333pt;}
.ya3{bottom:459.164000pt;}
.ydb{bottom:470.580000pt;}
.y51{bottom:471.518667pt;}
.y90{bottom:478.425333pt;}
.y3d{bottom:479.700000pt;}
.y12f{bottom:480.420000pt;}
.y82{bottom:480.985333pt;}
.yb7{bottom:485.074667pt;}
.y24{bottom:486.252000pt;}
.y2e{bottom:486.722667pt;}
.y121{bottom:489.349333pt;}
.y68{bottom:489.420000pt;}
.yf3{bottom:495.273333pt;}
.y5b{bottom:497.734667pt;}
.yca{bottom:498.109333pt;}
.ya2{bottom:501.830667pt;}
.y73{bottom:505.394667pt;}
.y1c{bottom:508.428000pt;}
.yfc{bottom:517.325333pt;}
.y3c{bottom:517.566667pt;}
.y50{bottom:519.518667pt;}
.y8f{bottom:519.758667pt;}
.yad{bottom:519.970667pt;}
.ye{bottom:520.768000pt;}
.yf{bottom:524.956000pt;}
.y3{bottom:527.354667pt;}
.y81{bottom:528.985333pt;}
.yda{bottom:531.840000pt;}
.y120{bottom:535.749333pt;}
.y2d{bottom:538.730667pt;}
.yb6{bottom:541.333333pt;}
.y67{bottom:541.420000pt;}
.ya1{bottom:544.497333pt;}
.yc9{bottom:547.602667pt;}
.y111{bottom:552.336000pt;}
.y5a{bottom:552.401333pt;}
.y72{bottom:553.000000pt;}
.y3b{bottom:555.433333pt;}
.y117{bottom:558.921333pt;}
.y47{bottom:560.992000pt;}
.y8e{bottom:561.092000pt;}
.y105{bottom:562.162667pt;}
.y4f{bottom:567.518667pt;}
.yd9{bottom:569.040000pt;}
.y12e{bottom:573.220000pt;}
.y11f{bottom:582.149333pt;}
.ya0{bottom:587.164000pt;}
.y23{bottom:587.585333pt;}
.y11{bottom:588.628000pt;}
.y2c{bottom:590.740000pt;}
.ye7{bottom:590.760000pt;}
.y3a{bottom:593.300000pt;}
.y66{bottom:593.420000pt;}
.yc8{bottom:597.096000pt;}
.yb5{bottom:597.592000pt;}
.ya{bottom:600.228000pt;}
.y71{bottom:600.605333pt;}
.y8d{bottom:602.425333pt;}
.y116{bottom:604.254667pt;}
.yd8{bottom:606.180000pt;}
.y110{bottom:609.936000pt;}
.y13a{bottom:616.133333pt;}
.y12d{bottom:619.620000pt;}
.y104{bottom:619.762667pt;}
.y80{bottom:624.985333pt;}
.yfb{bottom:626.018667pt;}
.y11e{bottom:628.549333pt;}
.y9f{bottom:629.830667pt;}
.y39{bottom:631.166667pt;}
.ye6{bottom:632.093333pt;}
.y4e{bottom:640.132000pt;}
.yac{bottom:642.637333pt;}
.y2b{bottom:642.749333pt;}
.y8c{bottom:643.758667pt;}
.y65{bottom:645.420000pt;}
.yc7{bottom:646.589333pt;}
.y10{bottom:647.489333pt;}
.y70{bottom:648.210667pt;}
.y9{bottom:649.561333pt;}
.y115{bottom:649.588000pt;}
.y1b{bottom:661.280000pt;}
.y59{bottom:661.734667pt;}
.y12c{bottom:666.020000pt;}
.yd7{bottom:667.440000pt;}
.y38{bottom:669.033333pt;}
.y7f{bottom:672.985333pt;}
.y46{bottom:674.325333pt;}
.y11d{bottom:674.949333pt;}
.yfa{bottom:680.365333pt;}
.y8b{bottom:685.092000pt;}
.y4d{bottom:690.798667pt;}
.y2a{bottom:694.757333pt;}
.y10f{bottom:695.642667pt;}
.y6f{bottom:695.816000pt;}
.yc6{bottom:696.082667pt;}
.y8{bottom:698.894667pt;}
.y1a{bottom:702.130667pt;}
.yab{bottom:703.970667pt;}
.yd6{bottom:704.580000pt;}
.y10b{bottom:705.100000pt;}
.y37{bottom:707.376000pt;}
.y12b{bottom:712.420000pt;}
.y2{bottom:712.429333pt;}
.ye5{bottom:714.761333pt;}
.y58{bottom:716.401333pt;}
.y7e{bottom:720.985333pt;}
.y11c{bottom:721.349333pt;}
.y8a{bottom:726.425333pt;}
.y64{bottom:734.753333pt;}
.y10e{bottom:737.936000pt;}
.y4c{bottom:741.465333pt;}
.yc5{bottom:745.576000pt;}
.y29{bottom:746.766667pt;}
.ye4{bottom:756.094667pt;}
.y12a{bottom:758.820000pt;}
.y103{bottom:761.629333pt;}
.y19{bottom:764.314667pt;}
.yd5{bottom:765.840000pt;}
.y9a{bottom:784.816000pt;}
.y63{bottom:786.753333pt;}
.yf9{bottom:789.058667pt;}
.y36{bottom:794.942667pt;}
.yc4{bottom:795.069333pt;}
.y10d{bottom:795.536000pt;}
.y28{bottom:798.776000pt;}
.yd4{bottom:802.980000pt;}
.y17{bottom:811.842667pt;}
.y102{bottom:819.229333pt;}
.y1{bottom:824.429333pt;}
.y9e{bottom:835.945333pt;}
.ye3{bottom:838.760000pt;}
.y129{bottom:842.364000pt;}
.yf8{bottom:843.405333pt;}
.y89{bottom:843.570667pt;}
.yc3{bottom:844.562667pt;}
.y113{bottom:849.404000pt;}
.y136{bottom:853.162667pt;}
.yb3{bottom:853.170667pt;}
.y99{bottom:854.149333pt;}
.yd3{bottom:864.240000pt;}
.y9d{bottom:866.612000pt;}
.y7{bottom:878.890667pt;}
.y4b{bottom:881.136000pt;}
.y18{bottom:891.032000pt;}
.yc2{bottom:894.056000pt;}
.y9c{bottom:897.278667pt;}
.yd2{bottom:901.380000pt;}
.y16{bottom:913.176000pt;}
.y6d{bottom:918.502667pt;}
.y62{bottom:918.504000pt;}
.y139{bottom:918.538667pt;}
.y98{bottom:923.482667pt;}
.y135{bottom:926.804000pt;}
.y9b{bottom:927.945333pt;}
.y35{bottom:928.102667pt;}
.y128{bottom:929.964000pt;}
.ye2{bottom:930.236000pt;}
.y112{bottom:933.404000pt;}
.y88{bottom:935.570667pt;}
.y4a{bottom:937.136000pt;}
.y108{bottom:939.060000pt;}
.yb2{bottom:939.837333pt;}
.y114{bottom:942.325333pt;}
.yc1{bottom:943.549333pt;}
.yc0{bottom:993.042667pt;}
.h2b{height:62.399067pt;}
.h21{height:68.906250pt;}
.h13{height:72.932292pt;}
.h2c{height:73.406250pt;}
.h1d{height:76.562500pt;}
.h26{height:78.026667pt;}
.h1c{height:84.218750pt;}
.h14{height:87.843750pt;}
.h30{height:89.718750pt;}
.h18{height:97.604167pt;}
.h2f{height:97.875000pt;}
.h1a{height:98.437500pt;}
.h1f{height:99.463542pt;}
.h1b{height:103.359375pt;}
.h29{height:106.031250pt;}
.hb{height:107.187500pt;}
.h2e{height:114.187500pt;}
.h16{height:116.666667pt;}
.h24{height:117.125000pt;}
.h4{height:122.005208pt;}
.h28{height:122.343750pt;}
.h17{height:122.500000pt;}
.he{height:123.958333pt;}
.ha{height:126.328125pt;}
.h5{height:126.885417pt;}
.h25{height:127.125417pt;}
.hd{height:130.156250pt;}
.h11{height:131.765625pt;}
.h3{height:146.406250pt;}
.h10{height:151.286458pt;}
.h8{height:153.125000pt;}
.hc{height:156.166667pt;}
.h22{height:165.927083pt;}
.h12{height:170.807292pt;}
.h9{height:181.963542pt;}
.h33{height:185.824000pt;}
.h2a{height:189.875000pt;}
.h1e{height:193.830729pt;}
.h34{height:195.750000pt;}
.h35{height:203.906250pt;}
.h20{height:205.697917pt;}
.h2{height:209.653646pt;}
.h2d{height:236.531250pt;}
.h31{height:244.687500pt;}
.hf{height:249.210938pt;}
.h32{height:256.921875pt;}
.h15{height:272.945312pt;}
.h27{height:297.692708pt;}
.h7{height:346.494792pt;}
.h36{height:380.656250pt;}
.h1{height:400.177083pt;}
.h6{height:488.020833pt;}
.h23{height:696.433333pt;}
.h19{height:779.476000pt;}
.h0{height:1080.000000pt;}
.w6{width:71.470667pt;}
.w4{width:100.686800pt;}
.w5{width:119.018933pt;}
.w3{width:138.586667pt;}
.w7{width:831.405333pt;}
.w2{width:1051.252000pt;}
.w1{width:1067.113333pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x54{left:2.209693pt;}
.x2f{left:9.001333pt;}
.x3e{left:10.666667pt;}
.x19{left:14.476267pt;}
.x5d{left:19.445333pt;}
.x4e{left:42.988133pt;}
.x56{left:48.668267pt;}
.x5a{left:67.220000pt;}
.x40{left:69.326267pt;}
.x58{left:79.601467pt;}
.x51{left:82.661867pt;}
.x3a{left:86.919733pt;}
.x2a{left:97.798133pt;}
.x26{left:99.374000pt;}
.x31{left:100.339467pt;}
.x12{left:103.833067pt;}
.x38{left:106.888800pt;}
.x15{left:108.703467pt;}
.x44{left:128.897467pt;}
.x9{left:129.823200pt;}
.x49{left:146.341333pt;}
.x18{left:149.076000pt;}
.x2b{left:161.380000pt;}
.x2d{left:163.000000pt;}
.xe{left:170.644000pt;}
.x4b{left:177.589333pt;}
.x39{left:182.920000pt;}
.x4a{left:190.981333pt;}
.x35{left:214.494667pt;}
.x36{left:234.760000pt;}
.x27{left:241.668000pt;}
.x14{left:243.302667pt;}
.xf{left:250.686667pt;}
.xd{left:305.244000pt;}
.x33{left:307.600000pt;}
.x20{left:320.590667pt;}
.x5c{left:335.294667pt;}
.x32{left:360.064000pt;}
.x1b{left:370.416000pt;}
.xb{left:378.002667pt;}
.x11{left:396.698667pt;}
.x57{left:410.544000pt;}
.x5b{left:411.716000pt;}
.x1e{left:413.105333pt;}
.x4c{left:421.494667pt;}
.x1c{left:461.246667pt;}
.x3b{left:474.326667pt;}
.x2e{left:489.882667pt;}
.x3d{left:515.940000pt;}
.x2{left:522.670667pt;}
.xa{left:533.753333pt;}
.x46{left:543.761333pt;}
.x3c{left:558.690667pt;}
.x3{left:595.270667pt;}
.x43{left:596.964000pt;}
.x60{left:598.757333pt;}
.x6{left:604.129333pt;}
.x1{left:613.773333pt;}
.x59{left:648.250667pt;}
.x34{left:662.354667pt;}
.x47{left:671.880000pt;}
.x48{left:686.054667pt;}
.xc{left:687.994667pt;}
.x5{left:713.756000pt;}
.x5f{left:717.189333pt;}
.x1d{left:743.949333pt;}
.x29{left:762.748000pt;}
.x17{left:789.680000pt;}
.x1f{left:798.737333pt;}
.x4d{left:805.168000pt;}
.x55{left:807.553333pt;}
.x10{left:811.534667pt;}
.x30{left:859.389333pt;}
.x4{left:906.868000pt;}
.x21{left:929.421333pt;}
.x3f{left:967.200000pt;}
.x41{left:979.200000pt;}
.x42{left:1013.866667pt;}
.x23{left:1033.324000pt;}
.x22{left:1057.324000pt;}
.x8{left:1074.296000pt;}
.x7{left:1079.893333pt;}
.x24{left:1081.324000pt;}
.x13{left:1098.706667pt;}
.x5e{left:1119.644000pt;}
.x53{left:1174.777333pt;}
.x25{left:1252.338667pt;}
.x1a{left:1414.400000pt;}
.x16{left:1425.173333pt;}
.x37{left:1446.106667pt;}
.x4f{left:1513.813333pt;}
.x45{left:1557.706667pt;}
.x2c{left:1572.613333pt;}
.x28{left:1666.493333pt;}
.x50{left:1669.666667pt;}
.x52{left:1773.040000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  