
    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_e791d466ffe9f7a713507368.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_7ddbfe9e76b78e1b1dbd72a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_4268826d1f4eec3594c4a980.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_641d429978d1efe1ac2a7124.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_732ea0d130239c9d4bfaa5e0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fcff9405d2c10573738cb3d7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8da4d83f5415431318da9118.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_e791d466ffe9f7a713507368.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c0d3c3070de15d68e311905f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12a1b0473add97e1ef58f2f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_436395f1b60ebc885e5925ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_18f0e224e6ee407c75d6aeb2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.840000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws7a{word-spacing:-18.000000px;}
.ws83{word-spacing:-16.500000px;}
.ws2{word-spacing:-10.248000px;}
.ws1{word-spacing:-9.828000px;}
.ws8b{word-spacing:-9.636000px;}
.ws78{word-spacing:-7.560000px;}
.ws20{word-spacing:-6.480000px;}
.ws15{word-spacing:-6.120000px;}
.ws6c{word-spacing:-4.896000px;}
.ws18{word-spacing:-4.824000px;}
.ws19{word-spacing:-4.752000px;}
.ws60{word-spacing:-4.608000px;}
.ws33{word-spacing:-4.464000px;}
.ws7d{word-spacing:-4.392000px;}
.ws7e{word-spacing:-4.320000px;}
.ws68{word-spacing:-4.032000px;}
.ws7f{word-spacing:-3.888000px;}
.ws90{word-spacing:-3.828000px;}
.ws46{word-spacing:-3.600000px;}
.ws3b{word-spacing:-3.384000px;}
.ws53{word-spacing:-2.304000px;}
.ws7c{word-spacing:-2.232000px;}
.ws74{word-spacing:-2.088000px;}
.ws6a{word-spacing:-1.872000px;}
.ws62{word-spacing:-1.800000px;}
.ws61{word-spacing:-1.656000px;}
.ws5b{word-spacing:-1.584000px;}
.ws4f{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.008000px;}
.ws5{word-spacing:-0.966000px;}
.ws3e{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.648000px;}
.ws5e{word-spacing:-0.360000px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.144000px;}
.ws52{word-spacing:0.288000px;}
.ws5c{word-spacing:0.360000px;}
.ws35{word-spacing:0.432000px;}
.ws89{word-spacing:0.462000px;}
.ws43{word-spacing:0.720000px;}
.ws76{word-spacing:1.008000px;}
.ws6d{word-spacing:1.296000px;}
.ws2f{word-spacing:1.512000px;}
.ws57{word-spacing:1.656000px;}
.ws7b{word-spacing:1.728000px;}
.ws1a{word-spacing:1.800000px;}
.ws2c{word-spacing:2.016000px;}
.ws67{word-spacing:2.088000px;}
.ws88{word-spacing:2.112000px;}
.ws50{word-spacing:2.160000px;}
.ws6{word-spacing:2.277000px;}
.ws1c{word-spacing:2.304000px;}
.ws3a{word-spacing:2.664000px;}
.ws51{word-spacing:3.024000px;}
.ws1d{word-spacing:3.096000px;}
.ws25{word-spacing:3.528000px;}
.ws22{word-spacing:3.744000px;}
.ws2b{word-spacing:3.888000px;}
.ws3f{word-spacing:4.032000px;}
.ws64{word-spacing:4.320000px;}
.ws47{word-spacing:4.392000px;}
.ws7{word-spacing:4.692000px;}
.ws17{word-spacing:4.896000px;}
.wsd{word-spacing:5.037000px;}
.ws86{word-spacing:5.148000px;}
.ws34{word-spacing:5.328000px;}
.ws4e{word-spacing:5.400000px;}
.ws13{word-spacing:5.544000px;}
.ws82{word-spacing:5.688000px;}
.ws5a{word-spacing:5.832000px;}
.wsa{word-spacing:5.934000px;}
.ws23{word-spacing:5.976000px;}
.ws65{word-spacing:6.192000px;}
.ws26{word-spacing:6.336000px;}
.wsf{word-spacing:6.408000px;}
.ws32{word-spacing:6.480000px;}
.ws1f{word-spacing:6.984000px;}
.ws75{word-spacing:7.704000px;}
.ws4b{word-spacing:8.136000px;}
.ws8f{word-spacing:8.250000px;}
.ws27{word-spacing:8.424000px;}
.ws39{word-spacing:8.496000px;}
.ws4{word-spacing:8.556000px;}
.ws85{word-spacing:8.778000px;}
.ws3d{word-spacing:8.856000px;}
.ws8e{word-spacing:8.910000px;}
.ws10{word-spacing:9.000000px;}
.ws14{word-spacing:9.216000px;}
.ws9{word-spacing:9.246000px;}
.ws21{word-spacing:9.864000px;}
.ws71{word-spacing:10.152000px;}
.ws6f{word-spacing:10.512000px;}
.ws80{word-spacing:10.656000px;}
.wsb{word-spacing:10.833000px;}
.ws56{word-spacing:11.016000px;}
.ws4d{word-spacing:11.088000px;}
.ws37{word-spacing:11.304000px;}
.ws42{word-spacing:11.376000px;}
.wsc{word-spacing:11.385000px;}
.ws41{word-spacing:12.096000px;}
.ws38{word-spacing:12.168000px;}
.ws36{word-spacing:12.240000px;}
.ws63{word-spacing:12.384000px;}
.ws29{word-spacing:13.104000px;}
.ws84{word-spacing:13.266000px;}
.ws87{word-spacing:13.398000px;}
.ws8{word-spacing:13.662000px;}
.ws28{word-spacing:14.184000px;}
.ws79{word-spacing:14.544000px;}
.ws6b{word-spacing:14.760000px;}
.ws45{word-spacing:15.696000px;}
.ws91{word-spacing:15.972000px;}
.ws30{word-spacing:16.848000px;}
.ws6e{word-spacing:17.208000px;}
.ws49{word-spacing:17.640000px;}
.ws4c{word-spacing:18.360000px;}
.ws48{word-spacing:19.008000px;}
.ws24{word-spacing:19.152000px;}
.ws5f{word-spacing:19.296000px;}
.ws44{word-spacing:19.584000px;}
.ws8c{word-spacing:19.668000px;}
.ws5d{word-spacing:19.872000px;}
.ws2d{word-spacing:20.376000px;}
.ws69{word-spacing:20.448000px;}
.ws40{word-spacing:20.592000px;}
.ws70{word-spacing:21.024000px;}
.ws3{word-spacing:21.390000px;}
.ws66{word-spacing:22.320000px;}
.ws16{word-spacing:22.536000px;}
.ws73{word-spacing:23.544000px;}
.wse{word-spacing:23.976000px;}
.ws31{word-spacing:25.920000px;}
.ws2e{word-spacing:27.144000px;}
.ws55{word-spacing:27.720000px;}
.ws11{word-spacing:29.304000px;}
.ws77{word-spacing:31.608000px;}
.ws72{word-spacing:32.256000px;}
.ws58{word-spacing:32.400000px;}
.ws3c{word-spacing:32.472000px;}
.ws8d{word-spacing:32.802000px;}
.ws81{word-spacing:33.120000px;}
.ws8a{word-spacing:34.056000px;}
.ws1b{word-spacing:35.856000px;}
.ws2a{word-spacing:36.504000px;}
.ws59{word-spacing:48.816000px;}
._1f{margin-left:-10.497600px;}
._1b{margin-left:-8.740800px;}
._1{margin-left:-7.711200px;}
._19{margin-left:-6.388800px;}
._0{margin-left:-5.352000px;}
._3{margin-left:-4.200000px;}
._5{margin-left:-2.940000px;}
._4{margin-left:-1.746000px;}
._9{width:1.523700px;}
._8{width:2.733000px;}
._a{width:4.114800px;}
._2{width:5.191200px;}
._18{width:6.199200px;}
._15{width:7.200000px;}
._d{width:8.689800px;}
._e{width:9.987000px;}
._16{width:11.424000px;}
._10{width:12.770400px;}
._f{width:13.999200px;}
._11{width:15.465600px;}
._14{width:16.912800px;}
._13{width:19.094400px;}
._c{width:20.366100px;}
._6{width:21.378600px;}
._12{width:22.759200px;}
._b{width:24.025800px;}
._1a{width:25.345200px;}
._1c{width:26.432400px;}
._7{width:28.855800px;}
._17{width:30.146400px;}
._1d{width:31.680000px;}
._1e{width:44.496000px;}
._20{width:48.902400px;}
.fc1{color:rgb(16,15,13);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y73{bottom:78.654450px;}
.y141{bottom:81.850650px;}
.y4c{bottom:83.294550px;}
.y99{bottom:83.754600px;}
.ybe{bottom:89.754600px;}
.y106{bottom:90.332850px;}
.y25{bottom:91.659000px;}
.y162{bottom:93.590850px;}
.y186{bottom:94.600650px;}
.y72{bottom:100.404450px;}
.y123{bottom:101.004600px;}
.ye1{bottom:101.142750px;}
.y140{bottom:102.850650px;}
.y4b{bottom:105.044550px;}
.y98{bottom:105.504600px;}
.y105{bottom:111.332850px;}
.ybd{bottom:111.504600px;}
.y161{bottom:114.590850px;}
.y24{bottom:115.410900px;}
.y185{bottom:115.600650px;}
.y122{bottom:122.004600px;}
.ye0{bottom:122.142750px;}
.y71{bottom:122.154450px;}
.y13f{bottom:123.850650px;}
.y4a{bottom:126.794550px;}
.y97{bottom:127.254600px;}
.y104{bottom:132.332850px;}
.ybc{bottom:133.254600px;}
.y23{bottom:134.910900px;}
.y160{bottom:135.590850px;}
.y184{bottom:136.600650px;}
.y121{bottom:143.004600px;}
.ydf{bottom:143.142750px;}
.y70{bottom:143.904450px;}
.y13e{bottom:144.850650px;}
.y96{bottom:149.004600px;}
.y103{bottom:153.332850px;}
.ybb{bottom:155.004600px;}
.y183{bottom:157.600650px;}
.y22{bottom:158.662800px;}
.y15f{bottom:161.442750px;}
.y49{bottom:163.544550px;}
.y120{bottom:164.004600px;}
.yde{bottom:164.142750px;}
.y6f{bottom:165.654450px;}
.y13d{bottom:165.850650px;}
.y102{bottom:174.332700px;}
.y21{bottom:178.162800px;}
.y182{bottom:178.600500px;}
.y15e{bottom:182.442750px;}
.y95{bottom:182.754600px;}
.y11f{bottom:185.004600px;}
.ydd{bottom:185.142750px;}
.y13c{bottom:186.850500px;}
.y6e{bottom:187.404450px;}
.yba{bottom:190.254600px;}
.y101{bottom:195.332700px;}
.y20{bottom:197.662800px;}
.y181{bottom:199.600500px;}
.y15d{bottom:203.442750px;}
.y11e{bottom:206.004600px;}
.ydc{bottom:206.142750px;}
.y48{bottom:206.744550px;}
.y13b{bottom:207.850500px;}
.y100{bottom:217.082700px;}
.y1f{bottom:217.162800px;}
.y180{bottom:220.600500px;}
.y15c{bottom:224.442750px;}
.y94{bottom:225.954600px;}
.y11d{bottom:227.004600px;}
.y47{bottom:227.744550px;}
.ydb{bottom:227.892750px;}
.y13a{bottom:228.850500px;}
.y6d{bottom:230.754600px;}
.yb9{bottom:233.454600px;}
.y1e{bottom:236.662800px;}
.yff{bottom:238.832700px;}
.y17f{bottom:241.600500px;}
.y15b{bottom:245.442750px;}
.y93{bottom:246.954600px;}
.y11c{bottom:248.004600px;}
.y46{bottom:248.744550px;}
.yda{bottom:249.642750px;}
.y139{bottom:249.850500px;}
.yb8{bottom:254.454600px;}
.y1d{bottom:256.162800px;}
.yfe{bottom:260.582700px;}
.y17e{bottom:262.600500px;}
.y92{bottom:267.954600px;}
.y1a6{bottom:268.215000px;}
.y11b{bottom:269.004600px;}
.y45{bottom:269.744550px;}
.y138{bottom:270.850500px;}
.y15a{bottom:271.294650px;}
.yd9{bottom:271.392750px;}
.y6c{bottom:273.954600px;}
.yb7{bottom:275.454600px;}
.y1c{bottom:275.662800px;}
.yfd{bottom:282.332700px;}
.y17d{bottom:283.600500px;}
.y1a5{bottom:287.715000px;}
.y91{bottom:288.954600px;}
.y11a{bottom:290.004600px;}
.y44{bottom:290.744550px;}
.y137{bottom:291.850500px;}
.y159{bottom:292.294650px;}
.yd8{bottom:293.142750px;}
.y6b{bottom:294.954600px;}
.y1b{bottom:295.162800px;}
.yb6{bottom:296.454600px;}
.yfc{bottom:304.082700px;}
.y17c{bottom:304.600500px;}
.y90{bottom:309.954600px;}
.y1a4{bottom:309.967050px;}
.y119{bottom:311.004600px;}
.y43{bottom:311.744550px;}
.y136{bottom:312.850500px;}
.y158{bottom:313.294650px;}
.y1a{bottom:314.662800px;}
.yd7{bottom:314.892750px;}
.y6a{bottom:315.954600px;}
.yb5{bottom:317.454600px;}
.y17b{bottom:325.600500px;}
.y1a3{bottom:327.967050px;}
.y8f{bottom:330.954600px;}
.y118{bottom:332.004600px;}
.y42{bottom:332.744550px;}
.y135{bottom:333.850500px;}
.y19{bottom:334.162800px;}
.y157{bottom:334.294650px;}
.yd6{bottom:336.642750px;}
.y69{bottom:336.954600px;}
.yfb{bottom:338.438700px;}
.yb4{bottom:338.454600px;}
.y17a{bottom:346.600500px;}
.y1a2{bottom:350.218950px;}
.y8e{bottom:351.954600px;}
.y117{bottom:353.004600px;}
.y18{bottom:353.662800px;}
.y41{bottom:353.744550px;}
.y134{bottom:354.850500px;}
.y156{bottom:355.294650px;}
.y68{bottom:357.954600px;}
.yd5{bottom:358.392750px;}
.yb3{bottom:359.454600px;}
.yfa{bottom:360.038700px;}
.y179{bottom:367.600500px;}
.y1a1{bottom:368.218950px;}
.y17{bottom:373.162800px;}
.y8d{bottom:373.704600px;}
.y116{bottom:374.004600px;}
.y40{bottom:374.744550px;}
.y133{bottom:375.850500px;}
.y155{bottom:376.294650px;}
.y67{bottom:378.954600px;}
.yd4{bottom:380.142750px;}
.yb2{bottom:380.454600px;}
.yf9{bottom:381.038700px;}
.y178{bottom:388.600500px;}
.y1a0{bottom:390.471000px;}
.y16{bottom:392.662800px;}
.y115{bottom:395.004600px;}
.y8c{bottom:395.454600px;}
.y3f{bottom:395.744550px;}
.y132{bottom:396.850500px;}
.y66{bottom:399.954600px;}
.yb1{bottom:401.454600px;}
.yd3{bottom:401.892750px;}
.yf8{bottom:402.038700px;}
.y154{bottom:402.146700px;}
.y19f{bottom:408.471000px;}
.y177{bottom:409.600500px;}
.y15{bottom:412.162800px;}
.y114{bottom:416.004600px;}
.y3e{bottom:416.744550px;}
.y8b{bottom:417.204600px;}
.y131{bottom:417.850500px;}
.y65{bottom:420.954600px;}
.yb0{bottom:422.454600px;}
.yf7{bottom:423.038700px;}
.y153{bottom:423.146700px;}
.yd2{bottom:423.642750px;}
.y176{bottom:430.600500px;}
.y19e{bottom:430.722900px;}
.y14{bottom:431.662800px;}
.y113{bottom:437.004600px;}
.y3d{bottom:437.744550px;}
.y8a{bottom:438.204600px;}
.y130{bottom:438.850500px;}
.y64{bottom:441.954600px;}
.yaf{bottom:443.454600px;}
.yf6{bottom:444.038700px;}
.y152{bottom:444.146700px;}
.y19d{bottom:448.722900px;}
.y13{bottom:451.162800px;}
.y175{bottom:451.600500px;}
.yd1{bottom:453.746700px;}
.y112{bottom:458.004600px;}
.y3c{bottom:458.744550px;}
.y89{bottom:459.204600px;}
.y12f{bottom:459.850500px;}
.y63{bottom:462.954600px;}
.yae{bottom:464.454600px;}
.yf5{bottom:465.038700px;}
.y151{bottom:465.146700px;}
.y19c{bottom:466.722900px;}
.y12{bottom:470.662800px;}
.y174{bottom:472.600500px;}
.yd0{bottom:475.496700px;}
.y111{bottom:479.004600px;}
.y3b{bottom:479.744550px;}
.y88{bottom:480.204600px;}
.y12e{bottom:480.850500px;}
.y62{bottom:483.954600px;}
.yad{bottom:485.454600px;}
.yf4{bottom:486.038700px;}
.y150{bottom:486.146700px;}
.y19b{bottom:488.974800px;}
.y11{bottom:490.162800px;}
.y173{bottom:493.600500px;}
.ycf{bottom:497.246700px;}
.y3a{bottom:500.744550px;}
.y110{bottom:500.754600px;}
.y87{bottom:501.204600px;}
.y12d{bottom:501.850500px;}
.y61{bottom:504.954600px;}
.yac{bottom:506.454600px;}
.y19a{bottom:506.974800px;}
.yf3{bottom:507.038700px;}
.y10{bottom:509.662800px;}
.y14f{bottom:511.998600px;}
.y172{bottom:514.600500px;}
.yce{bottom:518.996700px;}
.y39{bottom:521.744550px;}
.y86{bottom:522.204600px;}
.y10f{bottom:522.504600px;}
.y12c{bottom:522.850500px;}
.y199{bottom:524.974800px;}
.y60{bottom:525.954600px;}
.yab{bottom:527.454600px;}
.yf2{bottom:528.038700px;}
.yf{bottom:529.162800px;}
.y14e{bottom:532.998600px;}
.y171{bottom:535.600500px;}
.ycd{bottom:540.746700px;}
.y38{bottom:542.744550px;}
.y85{bottom:543.204600px;}
.y12b{bottom:543.850500px;}
.y10e{bottom:544.254600px;}
.y5f{bottom:546.954600px;}
.y198{bottom:547.226850px;}
.yaa{bottom:548.454600px;}
.ye{bottom:548.662800px;}
.yf1{bottom:549.038700px;}
.y14d{bottom:553.998600px;}
.y170{bottom:556.600650px;}
.ycc{bottom:562.496700px;}
.y37{bottom:563.744550px;}
.y84{bottom:564.804450px;}
.y12a{bottom:564.850650px;}
.y197{bottom:565.226850px;}
.y10d{bottom:566.004600px;}
.y5e{bottom:567.954600px;}
.yd{bottom:568.162800px;}
.ya9{bottom:569.454600px;}
.yf0{bottom:570.038700px;}
.y14c{bottom:574.998600px;}
.y16f{bottom:577.600650px;}
.ycb{bottom:584.246700px;}
.y36{bottom:584.744550px;}
.y129{bottom:585.850650px;}
.y83{bottom:586.404450px;}
.y196{bottom:587.478750px;}
.yc{bottom:587.662800px;}
.y10c{bottom:587.754600px;}
.y5d{bottom:588.954600px;}
.ya8{bottom:590.454600px;}
.yef{bottom:591.038700px;}
.y14b{bottom:595.998600px;}
.y16e{bottom:598.600650px;}
.y195{bottom:605.478750px;}
.y35{bottom:605.744550px;}
.yca{bottom:605.996700px;}
.y128{bottom:607.600650px;}
.y82{bottom:608.004600px;}
.y10b{bottom:609.504600px;}
.y5c{bottom:609.954600px;}
.ya7{bottom:611.454600px;}
.yee{bottom:612.038700px;}
.y14a{bottom:616.998600px;}
.y16d{bottom:619.600650px;}
.yb{bottom:626.662800px;}
.y34{bottom:626.744550px;}
.y194{bottom:627.730800px;}
.yc9{bottom:627.746700px;}
.y127{bottom:629.350650px;}
.y81{bottom:629.604600px;}
.y5b{bottom:630.954600px;}
.ya6{bottom:632.454600px;}
.yed{bottom:633.038700px;}
.y16c{bottom:640.600650px;}
.y149{bottom:642.850650px;}
.y193{bottom:645.730800px;}
.y33{bottom:647.744550px;}
.ya{bottom:648.262800px;}
.y126{bottom:651.100650px;}
.y80{bottom:651.204600px;}
.y5a{bottom:651.954600px;}
.y10a{bottom:653.004600px;}
.ya5{bottom:653.454600px;}
.yec{bottom:654.038700px;}
.yc8{bottom:657.850650px;}
.y16b{bottom:661.600650px;}
.y148{bottom:664.600650px;}
.y192{bottom:667.982700px;}
.y32{bottom:668.744550px;}
.y9{bottom:669.862800px;}
.y7f{bottom:672.804450px;}
.y125{bottom:672.850650px;}
.y59{bottom:672.954600px;}
.ya4{bottom:674.454600px;}
.yeb{bottom:675.788700px;}
.yc7{bottom:679.600650px;}
.y16a{bottom:682.600650px;}
.y191{bottom:685.982700px;}
.y147{bottom:686.350650px;}
.y31{bottom:689.744550px;}
.y58{bottom:693.954600px;}
.y7e{bottom:694.404450px;}
.ya3{bottom:695.454600px;}
.y109{bottom:696.204600px;}
.yea{bottom:697.538700px;}
.yc6{bottom:701.350650px;}
.y124{bottom:703.104600px;}
.y169{bottom:703.600650px;}
.y8{bottom:705.562800px;}
.y146{bottom:708.100650px;}
.y190{bottom:708.234750px;}
.y30{bottom:710.744550px;}
.y57{bottom:714.954600px;}
.y7d{bottom:716.004600px;}
.ya2{bottom:716.454600px;}
.y108{bottom:717.204600px;}
.ye9{bottom:719.288700px;}
.yc5{bottom:723.100650px;}
.y168{bottom:725.350650px;}
.y18f{bottom:726.234750px;}
.y7{bottom:727.162800px;}
.y145{bottom:729.850650px;}
.y2f{bottom:731.744550px;}
.y56{bottom:735.954600px;}
.ya1{bottom:737.454600px;}
.y7c{bottom:737.604600px;}
.y107{bottom:738.204600px;}
.ye8{bottom:741.038700px;}
.yc4{bottom:744.850650px;}
.y167{bottom:747.100650px;}
.y18e{bottom:748.486650px;}
.y6{bottom:748.762800px;}
.y144{bottom:751.600650px;}
.y2e{bottom:753.494550px;}
.y55{bottom:756.954600px;}
.ya0{bottom:758.454600px;}
.y7b{bottom:759.204600px;}
.ye7{bottom:762.788700px;}
.y18d{bottom:766.486650px;}
.yc3{bottom:766.600650px;}
.y166{bottom:768.850650px;}
.y143{bottom:773.350650px;}
.y2d{bottom:775.244550px;}
.y54{bottom:777.954600px;}
.y9f{bottom:779.454600px;}
.y7a{bottom:780.204600px;}
.ye6{bottom:784.538700px;}
.yc2{bottom:788.350650px;}
.y18c{bottom:788.738700px;}
.y5{bottom:790.462800px;}
.y165{bottom:790.600650px;}
.y2c{bottom:796.994550px;}
.y53{bottom:798.954600px;}
.y9e{bottom:800.454600px;}
.y79{bottom:801.204600px;}
.y142{bottom:803.604450px;}
.y18b{bottom:806.738700px;}
.yc1{bottom:810.100650px;}
.y164{bottom:812.350650px;}
.y4{bottom:817.462800px;}
.y2b{bottom:818.744550px;}
.ye5{bottom:818.894550px;}
.y52{bottom:819.954600px;}
.y9d{bottom:821.454600px;}
.y78{bottom:822.204600px;}
.y18a{bottom:828.990600px;}
.yc0{bottom:831.850650px;}
.y163{bottom:838.352550px;}
.y2a{bottom:840.494550px;}
.ye4{bottom:840.644550px;}
.y51{bottom:840.954600px;}
.y9c{bottom:842.454600px;}
.y77{bottom:843.204600px;}
.y3{bottom:844.462800px;}
.y189{bottom:846.990600px;}
.ybf{bottom:853.600650px;}
.y50{bottom:861.954600px;}
.y29{bottom:862.244550px;}
.ye3{bottom:862.394550px;}
.y9b{bottom:863.454600px;}
.y76{bottom:864.204600px;}
.y188{bottom:869.242650px;}
.y4f{bottom:883.704600px;}
.y28{bottom:883.994550px;}
.ye2{bottom:884.144550px;}
.y9a{bottom:884.454600px;}
.y75{bottom:885.204600px;}
.y187{bottom:887.242650px;}
.y4e{bottom:905.454600px;}
.y74{bottom:906.204600px;}
.y4d{bottom:927.204600px;}
.y26{bottom:927.477600px;}
.y27{bottom:927.494550px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.h7{height:41.689453px;}
.hb{height:45.858398px;}
.h6{height:47.909180px;}
.ha{height:48.761719px;}
.h8{height:48.796875px;}
.h5{height:50.027344px;}
.h3{height:50.400000px;}
.h9{height:51.264000px;}
.h4{height:56.929688px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:80.787450px;}
.x1{left:85.039350px;}
.x5{left:116.081400px;}
.xd{left:123.307050px;}
.xc{left:134.787450px;}
.xe{left:136.063050px;}
.x8{left:190.192500px;}
.x3{left:202.317900px;}
.x4{left:204.155850px;}
.x6{left:210.141450px;}
.x9{left:215.743050px;}
.x7{left:265.159500px;}
.xa{left:270.415350px;}
.x2{left:352.777350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.746667pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7a{word-spacing:-16.000000pt;}
.ws83{word-spacing:-14.666667pt;}
.ws2{word-spacing:-9.109333pt;}
.ws1{word-spacing:-8.736000pt;}
.ws8b{word-spacing:-8.565333pt;}
.ws78{word-spacing:-6.720000pt;}
.ws20{word-spacing:-5.760000pt;}
.ws15{word-spacing:-5.440000pt;}
.ws6c{word-spacing:-4.352000pt;}
.ws18{word-spacing:-4.288000pt;}
.ws19{word-spacing:-4.224000pt;}
.ws60{word-spacing:-4.096000pt;}
.ws33{word-spacing:-3.968000pt;}
.ws7d{word-spacing:-3.904000pt;}
.ws7e{word-spacing:-3.840000pt;}
.ws68{word-spacing:-3.584000pt;}
.ws7f{word-spacing:-3.456000pt;}
.ws90{word-spacing:-3.402667pt;}
.ws46{word-spacing:-3.200000pt;}
.ws3b{word-spacing:-3.008000pt;}
.ws53{word-spacing:-2.048000pt;}
.ws7c{word-spacing:-1.984000pt;}
.ws74{word-spacing:-1.856000pt;}
.ws6a{word-spacing:-1.664000pt;}
.ws62{word-spacing:-1.600000pt;}
.ws61{word-spacing:-1.472000pt;}
.ws5b{word-spacing:-1.408000pt;}
.ws4f{word-spacing:-1.152000pt;}
.ws12{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.896000pt;}
.ws5{word-spacing:-0.858667pt;}
.ws3e{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.576000pt;}
.ws5e{word-spacing:-0.320000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.128000pt;}
.ws52{word-spacing:0.256000pt;}
.ws5c{word-spacing:0.320000pt;}
.ws35{word-spacing:0.384000pt;}
.ws89{word-spacing:0.410667pt;}
.ws43{word-spacing:0.640000pt;}
.ws76{word-spacing:0.896000pt;}
.ws6d{word-spacing:1.152000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws57{word-spacing:1.472000pt;}
.ws7b{word-spacing:1.536000pt;}
.ws1a{word-spacing:1.600000pt;}
.ws2c{word-spacing:1.792000pt;}
.ws67{word-spacing:1.856000pt;}
.ws88{word-spacing:1.877333pt;}
.ws50{word-spacing:1.920000pt;}
.ws6{word-spacing:2.024000pt;}
.ws1c{word-spacing:2.048000pt;}
.ws3a{word-spacing:2.368000pt;}
.ws51{word-spacing:2.688000pt;}
.ws1d{word-spacing:2.752000pt;}
.ws25{word-spacing:3.136000pt;}
.ws22{word-spacing:3.328000pt;}
.ws2b{word-spacing:3.456000pt;}
.ws3f{word-spacing:3.584000pt;}
.ws64{word-spacing:3.840000pt;}
.ws47{word-spacing:3.904000pt;}
.ws7{word-spacing:4.170667pt;}
.ws17{word-spacing:4.352000pt;}
.wsd{word-spacing:4.477333pt;}
.ws86{word-spacing:4.576000pt;}
.ws34{word-spacing:4.736000pt;}
.ws4e{word-spacing:4.800000pt;}
.ws13{word-spacing:4.928000pt;}
.ws82{word-spacing:5.056000pt;}
.ws5a{word-spacing:5.184000pt;}
.wsa{word-spacing:5.274667pt;}
.ws23{word-spacing:5.312000pt;}
.ws65{word-spacing:5.504000pt;}
.ws26{word-spacing:5.632000pt;}
.wsf{word-spacing:5.696000pt;}
.ws32{word-spacing:5.760000pt;}
.ws1f{word-spacing:6.208000pt;}
.ws75{word-spacing:6.848000pt;}
.ws4b{word-spacing:7.232000pt;}
.ws8f{word-spacing:7.333333pt;}
.ws27{word-spacing:7.488000pt;}
.ws39{word-spacing:7.552000pt;}
.ws4{word-spacing:7.605333pt;}
.ws85{word-spacing:7.802667pt;}
.ws3d{word-spacing:7.872000pt;}
.ws8e{word-spacing:7.920000pt;}
.ws10{word-spacing:8.000000pt;}
.ws14{word-spacing:8.192000pt;}
.ws9{word-spacing:8.218667pt;}
.ws21{word-spacing:8.768000pt;}
.ws71{word-spacing:9.024000pt;}
.ws6f{word-spacing:9.344000pt;}
.ws80{word-spacing:9.472000pt;}
.wsb{word-spacing:9.629333pt;}
.ws56{word-spacing:9.792000pt;}
.ws4d{word-spacing:9.856000pt;}
.ws37{word-spacing:10.048000pt;}
.ws42{word-spacing:10.112000pt;}
.wsc{word-spacing:10.120000pt;}
.ws41{word-spacing:10.752000pt;}
.ws38{word-spacing:10.816000pt;}
.ws36{word-spacing:10.880000pt;}
.ws63{word-spacing:11.008000pt;}
.ws29{word-spacing:11.648000pt;}
.ws84{word-spacing:11.792000pt;}
.ws87{word-spacing:11.909333pt;}
.ws8{word-spacing:12.144000pt;}
.ws28{word-spacing:12.608000pt;}
.ws79{word-spacing:12.928000pt;}
.ws6b{word-spacing:13.120000pt;}
.ws45{word-spacing:13.952000pt;}
.ws91{word-spacing:14.197333pt;}
.ws30{word-spacing:14.976000pt;}
.ws6e{word-spacing:15.296000pt;}
.ws49{word-spacing:15.680000pt;}
.ws4c{word-spacing:16.320000pt;}
.ws48{word-spacing:16.896000pt;}
.ws24{word-spacing:17.024000pt;}
.ws5f{word-spacing:17.152000pt;}
.ws44{word-spacing:17.408000pt;}
.ws8c{word-spacing:17.482667pt;}
.ws5d{word-spacing:17.664000pt;}
.ws2d{word-spacing:18.112000pt;}
.ws69{word-spacing:18.176000pt;}
.ws40{word-spacing:18.304000pt;}
.ws70{word-spacing:18.688000pt;}
.ws3{word-spacing:19.013333pt;}
.ws66{word-spacing:19.840000pt;}
.ws16{word-spacing:20.032000pt;}
.ws73{word-spacing:20.928000pt;}
.wse{word-spacing:21.312000pt;}
.ws31{word-spacing:23.040000pt;}
.ws2e{word-spacing:24.128000pt;}
.ws55{word-spacing:24.640000pt;}
.ws11{word-spacing:26.048000pt;}
.ws77{word-spacing:28.096000pt;}
.ws72{word-spacing:28.672000pt;}
.ws58{word-spacing:28.800000pt;}
.ws3c{word-spacing:28.864000pt;}
.ws8d{word-spacing:29.157333pt;}
.ws81{word-spacing:29.440000pt;}
.ws8a{word-spacing:30.272000pt;}
.ws1b{word-spacing:31.872000pt;}
.ws2a{word-spacing:32.448000pt;}
.ws59{word-spacing:43.392000pt;}
._1f{margin-left:-9.331200pt;}
._1b{margin-left:-7.769600pt;}
._1{margin-left:-6.854400pt;}
._19{margin-left:-5.678933pt;}
._0{margin-left:-4.757333pt;}
._3{margin-left:-3.733333pt;}
._5{margin-left:-2.613333pt;}
._4{margin-left:-1.552000pt;}
._9{width:1.354400pt;}
._8{width:2.429333pt;}
._a{width:3.657600pt;}
._2{width:4.614400pt;}
._18{width:5.510400pt;}
._15{width:6.400000pt;}
._d{width:7.724267pt;}
._e{width:8.877333pt;}
._16{width:10.154667pt;}
._10{width:11.351467pt;}
._f{width:12.443733pt;}
._11{width:13.747200pt;}
._14{width:15.033600pt;}
._13{width:16.972800pt;}
._c{width:18.103200pt;}
._6{width:19.003200pt;}
._12{width:20.230400pt;}
._b{width:21.356267pt;}
._1a{width:22.529067pt;}
._1c{width:23.495467pt;}
._7{width:25.649600pt;}
._17{width:26.796800pt;}
._1d{width:28.160000pt;}
._1e{width:39.552000pt;}
._20{width:43.468800pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y73{bottom:69.915067pt;}
.y141{bottom:72.756133pt;}
.y4c{bottom:74.039600pt;}
.y99{bottom:74.448533pt;}
.ybe{bottom:79.781867pt;}
.y106{bottom:80.295867pt;}
.y25{bottom:81.474667pt;}
.y162{bottom:83.191867pt;}
.y186{bottom:84.089467pt;}
.y72{bottom:89.248400pt;}
.y123{bottom:89.781867pt;}
.ye1{bottom:89.904667pt;}
.y140{bottom:91.422800pt;}
.y4b{bottom:93.372933pt;}
.y98{bottom:93.781867pt;}
.y105{bottom:98.962533pt;}
.ybd{bottom:99.115200pt;}
.y161{bottom:101.858533pt;}
.y24{bottom:102.587467pt;}
.y185{bottom:102.756133pt;}
.y122{bottom:108.448533pt;}
.ye0{bottom:108.571333pt;}
.y71{bottom:108.581733pt;}
.y13f{bottom:110.089467pt;}
.y4a{bottom:112.706267pt;}
.y97{bottom:113.115200pt;}
.y104{bottom:117.629200pt;}
.ybc{bottom:118.448533pt;}
.y23{bottom:119.920800pt;}
.y160{bottom:120.525200pt;}
.y184{bottom:121.422800pt;}
.y121{bottom:127.115200pt;}
.ydf{bottom:127.238000pt;}
.y70{bottom:127.915067pt;}
.y13e{bottom:128.756133pt;}
.y96{bottom:132.448533pt;}
.y103{bottom:136.295867pt;}
.ybb{bottom:137.781867pt;}
.y183{bottom:140.089467pt;}
.y22{bottom:141.033600pt;}
.y15f{bottom:143.504667pt;}
.y49{bottom:145.372933pt;}
.y120{bottom:145.781867pt;}
.yde{bottom:145.904667pt;}
.y6f{bottom:147.248400pt;}
.y13d{bottom:147.422800pt;}
.y102{bottom:154.962400pt;}
.y21{bottom:158.366933pt;}
.y182{bottom:158.756000pt;}
.y15e{bottom:162.171333pt;}
.y95{bottom:162.448533pt;}
.y11f{bottom:164.448533pt;}
.ydd{bottom:164.571333pt;}
.y13c{bottom:166.089333pt;}
.y6e{bottom:166.581733pt;}
.yba{bottom:169.115200pt;}
.y101{bottom:173.629067pt;}
.y20{bottom:175.700267pt;}
.y181{bottom:177.422667pt;}
.y15d{bottom:180.838000pt;}
.y11e{bottom:183.115200pt;}
.ydc{bottom:183.238000pt;}
.y48{bottom:183.772933pt;}
.y13b{bottom:184.756000pt;}
.y100{bottom:192.962400pt;}
.y1f{bottom:193.033600pt;}
.y180{bottom:196.089333pt;}
.y15c{bottom:199.504667pt;}
.y94{bottom:200.848533pt;}
.y11d{bottom:201.781867pt;}
.y47{bottom:202.439600pt;}
.ydb{bottom:202.571333pt;}
.y13a{bottom:203.422667pt;}
.y6d{bottom:205.115200pt;}
.yb9{bottom:207.515200pt;}
.y1e{bottom:210.366933pt;}
.yff{bottom:212.295733pt;}
.y17f{bottom:214.756000pt;}
.y15b{bottom:218.171333pt;}
.y93{bottom:219.515200pt;}
.y11c{bottom:220.448533pt;}
.y46{bottom:221.106267pt;}
.yda{bottom:221.904667pt;}
.y139{bottom:222.089333pt;}
.yb8{bottom:226.181867pt;}
.y1d{bottom:227.700267pt;}
.yfe{bottom:231.629067pt;}
.y17e{bottom:233.422667pt;}
.y92{bottom:238.181867pt;}
.y1a6{bottom:238.413333pt;}
.y11b{bottom:239.115200pt;}
.y45{bottom:239.772933pt;}
.y138{bottom:240.756000pt;}
.y15a{bottom:241.150800pt;}
.yd9{bottom:241.238000pt;}
.y6c{bottom:243.515200pt;}
.yb7{bottom:244.848533pt;}
.y1c{bottom:245.033600pt;}
.yfd{bottom:250.962400pt;}
.y17d{bottom:252.089333pt;}
.y1a5{bottom:255.746667pt;}
.y91{bottom:256.848533pt;}
.y11a{bottom:257.781867pt;}
.y44{bottom:258.439600pt;}
.y137{bottom:259.422667pt;}
.y159{bottom:259.817467pt;}
.yd8{bottom:260.571333pt;}
.y6b{bottom:262.181867pt;}
.y1b{bottom:262.366933pt;}
.yb6{bottom:263.515200pt;}
.yfc{bottom:270.295733pt;}
.y17c{bottom:270.756000pt;}
.y90{bottom:275.515200pt;}
.y1a4{bottom:275.526267pt;}
.y119{bottom:276.448533pt;}
.y43{bottom:277.106267pt;}
.y136{bottom:278.089333pt;}
.y158{bottom:278.484133pt;}
.y1a{bottom:279.700267pt;}
.yd7{bottom:279.904667pt;}
.y6a{bottom:280.848533pt;}
.yb5{bottom:282.181867pt;}
.y17b{bottom:289.422667pt;}
.y1a3{bottom:291.526267pt;}
.y8f{bottom:294.181867pt;}
.y118{bottom:295.115200pt;}
.y42{bottom:295.772933pt;}
.y135{bottom:296.756000pt;}
.y19{bottom:297.033600pt;}
.y157{bottom:297.150800pt;}
.yd6{bottom:299.238000pt;}
.y69{bottom:299.515200pt;}
.yfb{bottom:300.834400pt;}
.yb4{bottom:300.848533pt;}
.y17a{bottom:308.089333pt;}
.y1a2{bottom:311.305733pt;}
.y8e{bottom:312.848533pt;}
.y117{bottom:313.781867pt;}
.y18{bottom:314.366933pt;}
.y41{bottom:314.439600pt;}
.y134{bottom:315.422667pt;}
.y156{bottom:315.817467pt;}
.y68{bottom:318.181867pt;}
.yd5{bottom:318.571333pt;}
.yb3{bottom:319.515200pt;}
.yfa{bottom:320.034400pt;}
.y179{bottom:326.756000pt;}
.y1a1{bottom:327.305733pt;}
.y17{bottom:331.700267pt;}
.y8d{bottom:332.181867pt;}
.y116{bottom:332.448533pt;}
.y40{bottom:333.106267pt;}
.y133{bottom:334.089333pt;}
.y155{bottom:334.484133pt;}
.y67{bottom:336.848533pt;}
.yd4{bottom:337.904667pt;}
.yb2{bottom:338.181867pt;}
.yf9{bottom:338.701067pt;}
.y178{bottom:345.422667pt;}
.y1a0{bottom:347.085333pt;}
.y16{bottom:349.033600pt;}
.y115{bottom:351.115200pt;}
.y8c{bottom:351.515200pt;}
.y3f{bottom:351.772933pt;}
.y132{bottom:352.756000pt;}
.y66{bottom:355.515200pt;}
.yb1{bottom:356.848533pt;}
.yd3{bottom:357.238000pt;}
.yf8{bottom:357.367733pt;}
.y154{bottom:357.463733pt;}
.y19f{bottom:363.085333pt;}
.y177{bottom:364.089333pt;}
.y15{bottom:366.366933pt;}
.y114{bottom:369.781867pt;}
.y3e{bottom:370.439600pt;}
.y8b{bottom:370.848533pt;}
.y131{bottom:371.422667pt;}
.y65{bottom:374.181867pt;}
.yb0{bottom:375.515200pt;}
.yf7{bottom:376.034400pt;}
.y153{bottom:376.130400pt;}
.yd2{bottom:376.571333pt;}
.y176{bottom:382.756000pt;}
.y19e{bottom:382.864800pt;}
.y14{bottom:383.700267pt;}
.y113{bottom:388.448533pt;}
.y3d{bottom:389.106267pt;}
.y8a{bottom:389.515200pt;}
.y130{bottom:390.089333pt;}
.y64{bottom:392.848533pt;}
.yaf{bottom:394.181867pt;}
.yf6{bottom:394.701067pt;}
.y152{bottom:394.797067pt;}
.y19d{bottom:398.864800pt;}
.y13{bottom:401.033600pt;}
.y175{bottom:401.422667pt;}
.yd1{bottom:403.330400pt;}
.y112{bottom:407.115200pt;}
.y3c{bottom:407.772933pt;}
.y89{bottom:408.181867pt;}
.y12f{bottom:408.756000pt;}
.y63{bottom:411.515200pt;}
.yae{bottom:412.848533pt;}
.yf5{bottom:413.367733pt;}
.y151{bottom:413.463733pt;}
.y19c{bottom:414.864800pt;}
.y12{bottom:418.366933pt;}
.y174{bottom:420.089333pt;}
.yd0{bottom:422.663733pt;}
.y111{bottom:425.781867pt;}
.y3b{bottom:426.439600pt;}
.y88{bottom:426.848533pt;}
.y12e{bottom:427.422667pt;}
.y62{bottom:430.181867pt;}
.yad{bottom:431.515200pt;}
.yf4{bottom:432.034400pt;}
.y150{bottom:432.130400pt;}
.y19b{bottom:434.644267pt;}
.y11{bottom:435.700267pt;}
.y173{bottom:438.756000pt;}
.ycf{bottom:441.997067pt;}
.y3a{bottom:445.106267pt;}
.y110{bottom:445.115200pt;}
.y87{bottom:445.515200pt;}
.y12d{bottom:446.089333pt;}
.y61{bottom:448.848533pt;}
.yac{bottom:450.181867pt;}
.y19a{bottom:450.644267pt;}
.yf3{bottom:450.701067pt;}
.y10{bottom:453.033600pt;}
.y14f{bottom:455.109867pt;}
.y172{bottom:457.422667pt;}
.yce{bottom:461.330400pt;}
.y39{bottom:463.772933pt;}
.y86{bottom:464.181867pt;}
.y10f{bottom:464.448533pt;}
.y12c{bottom:464.756000pt;}
.y199{bottom:466.644267pt;}
.y60{bottom:467.515200pt;}
.yab{bottom:468.848533pt;}
.yf2{bottom:469.367733pt;}
.yf{bottom:470.366933pt;}
.y14e{bottom:473.776533pt;}
.y171{bottom:476.089333pt;}
.ycd{bottom:480.663733pt;}
.y38{bottom:482.439600pt;}
.y85{bottom:482.848533pt;}
.y12b{bottom:483.422667pt;}
.y10e{bottom:483.781867pt;}
.y5f{bottom:486.181867pt;}
.y198{bottom:486.423867pt;}
.yaa{bottom:487.515200pt;}
.ye{bottom:487.700267pt;}
.yf1{bottom:488.034400pt;}
.y14d{bottom:492.443200pt;}
.y170{bottom:494.756133pt;}
.ycc{bottom:499.997067pt;}
.y37{bottom:501.106267pt;}
.y84{bottom:502.048400pt;}
.y12a{bottom:502.089467pt;}
.y197{bottom:502.423867pt;}
.y10d{bottom:503.115200pt;}
.y5e{bottom:504.848533pt;}
.yd{bottom:505.033600pt;}
.ya9{bottom:506.181867pt;}
.yf0{bottom:506.701067pt;}
.y14c{bottom:511.109867pt;}
.y16f{bottom:513.422800pt;}
.ycb{bottom:519.330400pt;}
.y36{bottom:519.772933pt;}
.y129{bottom:520.756133pt;}
.y83{bottom:521.248400pt;}
.y196{bottom:522.203333pt;}
.yc{bottom:522.366933pt;}
.y10c{bottom:522.448533pt;}
.y5d{bottom:523.515200pt;}
.ya8{bottom:524.848533pt;}
.yef{bottom:525.367733pt;}
.y14b{bottom:529.776533pt;}
.y16e{bottom:532.089467pt;}
.y195{bottom:538.203333pt;}
.y35{bottom:538.439600pt;}
.yca{bottom:538.663733pt;}
.y128{bottom:540.089467pt;}
.y82{bottom:540.448533pt;}
.y10b{bottom:541.781867pt;}
.y5c{bottom:542.181867pt;}
.ya7{bottom:543.515200pt;}
.yee{bottom:544.034400pt;}
.y14a{bottom:548.443200pt;}
.y16d{bottom:550.756133pt;}
.yb{bottom:557.033600pt;}
.y34{bottom:557.106267pt;}
.y194{bottom:557.982933pt;}
.yc9{bottom:557.997067pt;}
.y127{bottom:559.422800pt;}
.y81{bottom:559.648533pt;}
.y5b{bottom:560.848533pt;}
.ya6{bottom:562.181867pt;}
.yed{bottom:562.701067pt;}
.y16c{bottom:569.422800pt;}
.y149{bottom:571.422800pt;}
.y193{bottom:573.982933pt;}
.y33{bottom:575.772933pt;}
.ya{bottom:576.233600pt;}
.y126{bottom:578.756133pt;}
.y80{bottom:578.848533pt;}
.y5a{bottom:579.515200pt;}
.y10a{bottom:580.448533pt;}
.ya5{bottom:580.848533pt;}
.yec{bottom:581.367733pt;}
.yc8{bottom:584.756133pt;}
.y16b{bottom:588.089467pt;}
.y148{bottom:590.756133pt;}
.y192{bottom:593.762400pt;}
.y32{bottom:594.439600pt;}
.y9{bottom:595.433600pt;}
.y7f{bottom:598.048400pt;}
.y125{bottom:598.089467pt;}
.y59{bottom:598.181867pt;}
.ya4{bottom:599.515200pt;}
.yeb{bottom:600.701067pt;}
.yc7{bottom:604.089467pt;}
.y16a{bottom:606.756133pt;}
.y191{bottom:609.762400pt;}
.y147{bottom:610.089467pt;}
.y31{bottom:613.106267pt;}
.y58{bottom:616.848533pt;}
.y7e{bottom:617.248400pt;}
.ya3{bottom:618.181867pt;}
.y109{bottom:618.848533pt;}
.yea{bottom:620.034400pt;}
.yc6{bottom:623.422800pt;}
.y124{bottom:624.981867pt;}
.y169{bottom:625.422800pt;}
.y8{bottom:627.166933pt;}
.y146{bottom:629.422800pt;}
.y190{bottom:629.542000pt;}
.y30{bottom:631.772933pt;}
.y57{bottom:635.515200pt;}
.y7d{bottom:636.448533pt;}
.ya2{bottom:636.848533pt;}
.y108{bottom:637.515200pt;}
.ye9{bottom:639.367733pt;}
.yc5{bottom:642.756133pt;}
.y168{bottom:644.756133pt;}
.y18f{bottom:645.542000pt;}
.y7{bottom:646.366933pt;}
.y145{bottom:648.756133pt;}
.y2f{bottom:650.439600pt;}
.y56{bottom:654.181867pt;}
.ya1{bottom:655.515200pt;}
.y7c{bottom:655.648533pt;}
.y107{bottom:656.181867pt;}
.ye8{bottom:658.701067pt;}
.yc4{bottom:662.089467pt;}
.y167{bottom:664.089467pt;}
.y18e{bottom:665.321467pt;}
.y6{bottom:665.566933pt;}
.y144{bottom:668.089467pt;}
.y2e{bottom:669.772933pt;}
.y55{bottom:672.848533pt;}
.ya0{bottom:674.181867pt;}
.y7b{bottom:674.848533pt;}
.ye7{bottom:678.034400pt;}
.y18d{bottom:681.321467pt;}
.yc3{bottom:681.422800pt;}
.y166{bottom:683.422800pt;}
.y143{bottom:687.422800pt;}
.y2d{bottom:689.106267pt;}
.y54{bottom:691.515200pt;}
.y9f{bottom:692.848533pt;}
.y7a{bottom:693.515200pt;}
.ye6{bottom:697.367733pt;}
.yc2{bottom:700.756133pt;}
.y18c{bottom:701.101067pt;}
.y5{bottom:702.633600pt;}
.y165{bottom:702.756133pt;}
.y2c{bottom:708.439600pt;}
.y53{bottom:710.181867pt;}
.y9e{bottom:711.515200pt;}
.y79{bottom:712.181867pt;}
.y142{bottom:714.315067pt;}
.y18b{bottom:717.101067pt;}
.yc1{bottom:720.089467pt;}
.y164{bottom:722.089467pt;}
.y4{bottom:726.633600pt;}
.y2b{bottom:727.772933pt;}
.ye5{bottom:727.906267pt;}
.y52{bottom:728.848533pt;}
.y9d{bottom:730.181867pt;}
.y78{bottom:730.848533pt;}
.y18a{bottom:736.880533pt;}
.yc0{bottom:739.422800pt;}
.y163{bottom:745.202267pt;}
.y2a{bottom:747.106267pt;}
.ye4{bottom:747.239600pt;}
.y51{bottom:747.515200pt;}
.y9c{bottom:748.848533pt;}
.y77{bottom:749.515200pt;}
.y3{bottom:750.633600pt;}
.y189{bottom:752.880533pt;}
.ybf{bottom:758.756133pt;}
.y50{bottom:766.181867pt;}
.y29{bottom:766.439600pt;}
.ye3{bottom:766.572933pt;}
.y9b{bottom:767.515200pt;}
.y76{bottom:768.181867pt;}
.y188{bottom:772.660133pt;}
.y4f{bottom:785.515200pt;}
.y28{bottom:785.772933pt;}
.ye2{bottom:785.906267pt;}
.y9a{bottom:786.181867pt;}
.y75{bottom:786.848533pt;}
.y187{bottom:788.660133pt;}
.y4e{bottom:804.848533pt;}
.y74{bottom:805.515200pt;}
.y4d{bottom:824.181867pt;}
.y26{bottom:824.424533pt;}
.y27{bottom:824.439600pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.h7{height:37.057292pt;}
.hb{height:40.763021pt;}
.h6{height:42.585938pt;}
.ha{height:43.343750pt;}
.h8{height:43.375000pt;}
.h5{height:44.468750pt;}
.h3{height:44.800000pt;}
.h9{height:45.568000pt;}
.h4{height:50.604167pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:71.811067pt;}
.x1{left:75.590533pt;}
.x5{left:103.183467pt;}
.xd{left:109.606267pt;}
.xc{left:119.811067pt;}
.xe{left:120.944933pt;}
.x8{left:169.060000pt;}
.x3{left:179.838133pt;}
.x4{left:181.471867pt;}
.x6{left:186.792400pt;}
.x9{left:191.771600pt;}
.x7{left:235.697333pt;}
.xa{left:240.369200pt;}
.x2{left:313.579867pt;}
}




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