
    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_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_89b40028c622804e33dd7092.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_54c6a9fb12d75260aff5fa68.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_a0c3cbdf5be35b835118772f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911621;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_e52cb88f480704774a8c876e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_45490606e22147486a13c657.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_a4626fc6d85f9b9b2754e9cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_39e416b51f29aaa2a927ac79.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_6e3abfed767b25f8b1b81164.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_52b2d3f05f656583973ca094.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714844;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_ed1ee5cf1d13381538fa9b66.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_f82e07eb6b7d0ebcd653e47a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_46659d8a30c1c309de18c029.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.695312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5fae9ddf2a31173f7975d8ef.woff2')format("woff");}.fff{font-family:fff;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ff5131ba711b15997924b7e9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.002930;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);}
.v1{vertical-align:-186.480000px;}
.v2{vertical-align:-71.280000px;}
.v3{vertical-align:-26.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.120000px;}
.ls30{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.397200px;}
.ls1d{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.322800px;}
.ls27{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.139800px;}
.ls12{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.022320px;}
.ls20{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.378000px;}
.ls4{letter-spacing:0.839520px;}
.ls13{letter-spacing:1.728000px;}
.ls36{letter-spacing:3.168000px;}
.ls16{letter-spacing:4.608000px;}
.ls18{letter-spacing:6.768000px;}
.ls37{letter-spacing:9.660000px;}
.ls2f{letter-spacing:14.688000px;}
.ls25{letter-spacing:26.784000px;}
.ls32{letter-spacing:28.224000px;}
.ls24{letter-spacing:30.384000px;}
.ls2b{letter-spacing:31.080000px;}
.ls10{letter-spacing:31.104000px;}
.ls31{letter-spacing:31.824000px;}
.ls35{letter-spacing:32.544000px;}
.ls28{letter-spacing:33.264000px;}
.ls26{letter-spacing:33.984000px;}
.ls33{letter-spacing:35.424000px;}
.ls1f{letter-spacing:35.568000px;}
.ls2c{letter-spacing:37.721280px;}
.ls2e{letter-spacing:37.745280px;}
.ls34{letter-spacing:44.064000px;}
.ls1c{letter-spacing:54.864000px;}
.ls3{letter-spacing:59.561280px;}
.ls0{letter-spacing:1792.260000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(152,72,6),0 0.015em rgb(152,72,6),0.015em 0 rgb(152,72,6),0 -0.015em  rgb(152,72,6);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(152,72,6);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-66.240000px;}
.ws0{word-spacing:-45.126000px;}
.ws5{word-spacing:-35.310240px;}
.ws7{word-spacing:-24.408000px;}
.ws8{word-spacing:-20.304000px;}
.wse{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.416000px;}
.wsd{word-spacing:-16.344000px;}
.ws9{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.200000px;}
.wsb{word-spacing:-16.056000px;}
.ws11{word-spacing:-15.768000px;}
.wsf{word-spacing:-15.624000px;}
.ws2{word-spacing:-10.601520px;}
.ws3{word-spacing:-9.521280px;}
.ws4{word-spacing:-9.198480px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.374480px;}
._0{width:1.254960px;}
._2{width:2.514240px;}
._3{width:3.622800px;}
._9{width:5.184000px;}
._8{width:6.840000px;}
._e{width:8.208000px;}
._c{width:10.001520px;}
._b{width:11.238480px;}
._a{width:12.312000px;}
._10{width:13.320000px;}
._d{width:14.688000px;}
._28{width:16.416000px;}
._17{width:17.568000px;}
._1a{width:18.611520px;}
._12{width:19.728000px;}
._1f{width:21.707520px;}
._16{width:22.812000px;}
._14{width:23.832000px;}
._13{width:24.984000px;}
._15{width:26.292000px;}
._1e{width:28.584000px;}
._1d{width:29.664000px;}
._1c{width:33.408000px;}
._1b{width:34.488000px;}
._20{width:35.496000px;}
._23{width:36.504000px;}
._22{width:37.800000px;}
._2e{width:39.113040px;}
._2d{width:40.296000px;}
._24{width:41.688000px;}
._27{width:49.602000px;}
._26{width:50.628000px;}
._2c{width:59.316000px;}
._2b{width:60.420000px;}
._4{width:61.974960px;}
._29{width:66.384000px;}
._2a{width:67.452000px;}
._21{width:112.536000px;}
._19{width:141.840000px;}
._18{width:143.064000px;}
._6{width:196.128000px;}
._5{width:828.965760px;}
._7{width:839.868000px;}
._25{width:844.260000px;}
._11{width:848.004000px;}
._f{width:849.305760px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(192,0,0);}
.fc6{color:rgb(80,74,46);}
.fc3{color:rgb(205,136,13);}
.fc2{color:rgb(152,72,6);}
.fc5{color:transparent;}
.fc1{color:rgb(148,138,84);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs8{font-size:156.240000px;}
.fs2{font-size:162.000000px;}
.fs3{font-size:198.000000px;}
.fs9{font-size:599.904000px;}
.y0{bottom:0.000000px;}
.yee{bottom:3.960000px;}
.ye3{bottom:4.140000px;}
.yf3{bottom:4.170000px;}
.y5a{bottom:4.845000px;}
.y45{bottom:4.860000px;}
.y4a{bottom:5.040000px;}
.y19c{bottom:5.580000px;}
.ydf{bottom:9.720000px;}
.y16{bottom:14.220000px;}
.yeb{bottom:16.560000px;}
.yed{bottom:22.320000px;}
.yf2{bottom:22.350000px;}
.ye2{bottom:22.500000px;}
.ye9{bottom:22.530000px;}
.y48{bottom:26.820000px;}
.y57{bottom:27.000000px;}
.y159{bottom:30.420000px;}
.yc1{bottom:37.620000px;}
.y92{bottom:38.880000px;}
.y141{bottom:39.240000px;}
.ya2{bottom:40.320000px;}
.ye5{bottom:40.680000px;}
.ye8{bottom:40.710000px;}
.ye1{bottom:40.860000px;}
.ydc{bottom:43.560000px;}
.y182{bottom:48.600000px;}
.yf0{bottom:59.040000px;}
.ye7{bottom:59.070000px;}
.y73{bottom:64.650000px;}
.y61{bottom:67.356000px;}
.y1{bottom:68.803500px;}
.y14{bottom:89.856000px;}
.y13{bottom:110.376000px;}
.y3f{bottom:115.416000px;}
.y60{bottom:116.316000px;}
.y12{bottom:131.616000px;}
.y11{bottom:152.670000px;}
.y3e{bottom:154.830000px;}
.yfa{bottom:156.450000px;}
.y122{bottom:157.530000px;}
.yda{bottom:159.870000px;}
.y140{bottom:162.210000px;}
.y5b{bottom:163.290000px;}
.y19a{bottom:164.550000px;}
.y183{bottom:166.530000px;}
.y113{bottom:168.510000px;}
.y11f{bottom:168.870000px;}
.y18a{bottom:169.410000px;}
.y15f{bottom:172.470000px;}
.y3d{bottom:173.190000px;}
.y10{bottom:173.730000px;}
.ya6{bottom:181.470000px;}
.y71{bottom:182.370000px;}
.ya0{bottom:183.810000px;}
.y12b{bottom:187.410000px;}
.y104{bottom:187.590000px;}
.y59{bottom:188.865000px;}
.yf9{bottom:189.390000px;}
.y171{bottom:190.110000px;}
.y119{bottom:190.470000px;}
.yf{bottom:191.010000px;}
.y180{bottom:191.550000px;}
.yd9{bottom:192.810000px;}
.yf1{bottom:193.905000px;}
.y13f{bottom:195.150000px;}
.y19e{bottom:196.410000px;}
.y3c{bottom:197.490000px;}
.y199{bottom:197.715000px;}
.y90{bottom:198.795000px;}
.y161{bottom:199.515000px;}
.y112{bottom:201.675000px;}
.y11e{bottom:201.855000px;}
.y15e{bottom:205.455000px;}
.y3b{bottom:207.255000px;}
.y58{bottom:210.855000px;}
.y189{bottom:211.395000px;}
.ya5{bottom:214.455000px;}
.y70{bottom:215.355000px;}
.y9f{bottom:216.795000px;}
.ybf{bottom:218.595000px;}
.y12c{bottom:220.395000px;}
.y103{bottom:220.575000px;}
.yf8{bottom:222.375000px;}
.y3a{bottom:222.555000px;}
.y170{bottom:223.095000px;}
.y118{bottom:223.455000px;}
.y17f{bottom:224.715000px;}
.yd8{bottom:225.795000px;}
.y13e{bottom:228.135000px;}
.y12a{bottom:229.395000px;}
.y116{bottom:230.475000px;}
.yef{bottom:231.375000px;}
.y8f{bottom:231.735000px;}
.y160{bottom:232.455000px;}
.y11d{bottom:234.795000px;}
.y39{bottom:236.415000px;}
.y15d{bottom:238.395000px;}
.y198{bottom:239.655000px;}
.y111{bottom:244.515000px;}
.y145{bottom:247.215000px;}
.ya4{bottom:247.395000px;}
.y6f{bottom:248.295000px;}
.y9e{bottom:249.735000px;}
.y38{bottom:250.095000px;}
.ybe{bottom:251.535000px;}
.y157{bottom:253.335000px;}
.y56{bottom:254.775000px;}
.yf7{bottom:255.495000px;}
.y117{bottom:256.395000px;}
.y17e{bottom:257.655000px;}
.yd7{bottom:258.735000px;}
.y13d{bottom:261.255000px;}
.y129{bottom:262.335000px;}
.y102{bottom:263.415000px;}
.y37{bottom:263.955000px;}
.y16f{bottom:265.035000px;}
.y123{bottom:265.395000px;}
.y11c{bottom:267.735000px;}
.y15c{bottom:271.335000px;}
.y197{bottom:272.595000px;}
.y110{bottom:277.455000px;}
.y36{bottom:277.635000px;}
.ya3{bottom:280.335000px;}
.y6e{bottom:281.235000px;}
.y8e{bottom:282.855000px;}
.ybd{bottom:284.475000px;}
.y156{bottom:286.275000px;}
.yf6{bottom:288.435000px;}
.yca{bottom:289.335000px;}
.y17d{bottom:290.595000px;}
.y35{bottom:291.495000px;}
.y144{bottom:293.655000px;}
.y13c{bottom:294.195000px;}
.y128{bottom:295.275000px;}
.y101{bottom:296.355000px;}
.yb2{bottom:296.895000px;}
.y9b{bottom:298.335000px;}
.y55{bottom:298.875000px;}
.yd6{bottom:300.855000px;}
.y19d{bottom:304.275000px;}
.y34{bottom:305.175000px;}
.yec{bottom:305.355000px;}
.y196{bottom:305.535000px;}
.y16e{bottom:306.975000px;}
.y186{bottom:307.335000px;}
.y10f{bottom:310.395000px;}
.y15b{bottom:313.275000px;}
.y131{bottom:313.635000px;}
.y6d{bottom:314.175000px;}
.y8d{bottom:315.795000px;}
.y33{bottom:319.035000px;}
.y54{bottom:320.835000px;}
.yc9{bottom:322.275000px;}
.y17c{bottom:323.535000px;}
.ybc{bottom:326.415000px;}
.y13b{bottom:327.135000px;}
.yb1{bottom:328.215000px;}
.y100{bottom:329.295000px;}
.y9a{bottom:331.275000px;}
.y32{bottom:332.715000px;}
.y81{bottom:332.895000px;}
.yd5{bottom:333.795000px;}
.y188{bottom:337.215000px;}
.y195{bottom:338.475000px;}
.ye{bottom:338.655000px;}
.y185{bottom:340.275000px;}
.y151{bottom:340.815000px;}
.y53{bottom:342.795000px;}
.y10e{bottom:343.335000px;}
.y130{bottom:346.215000px;}
.y31{bottom:346.575000px;}
.y6c{bottom:347.115000px;}
.y8c{bottom:348.735000px;}
.y16d{bottom:348.915000px;}
.y143{bottom:350.895000px;}
.yc8{bottom:355.215000px;}
.y13a{bottom:360.075000px;}
.y30{bottom:360.255000px;}
.yea{bottom:360.975000px;}
.yb0{bottom:361.155000px;}
.yff{bottom:362.415000px;}
.y80{bottom:364.215000px;}
.y52{bottom:364.755000px;}
.y17b{bottom:365.475000px;}
.yd4{bottom:366.735000px;}
.ybb{bottom:368.355000px;}
.y150{bottom:369.255000px;}
.y187{bottom:370.155000px;}
.y121{bottom:373.215000px;}
.y2f{bottom:374.655000px;}
.y10d{bottom:376.275000px;}
.y12f{bottom:379.155000px;}
.y142{bottom:379.335000px;}
.y6b{bottom:380.055000px;}
.y194{bottom:380.415000px;}
.y8b{bottom:381.675000px;}
.y16c{bottom:382.035000px;}
.yc7{bottom:388.155000px;}
.ycf{bottom:389.775000px;}
.y2e{bottom:391.215000px;}
.ye6{bottom:392.475000px;}
.y139{bottom:393.015000px;}
.yaf{bottom:394.095000px;}
.yfe{bottom:395.355000px;}
.yd{bottom:395.535000px;}
.y7f{bottom:397.155000px;}
.y17a{bottom:398.445000px;}
.y9d{bottom:399.705000px;}
.yba{bottom:401.325000px;}
.y127{bottom:403.125000px;}
.y2d{bottom:405.105000px;}
.y115{bottom:405.285000px;}
.yf5{bottom:406.185000px;}
.y51{bottom:408.705000px;}
.y12e{bottom:412.125000px;}
.y6a{bottom:413.205000px;}
.y193{bottom:413.385000px;}
.y8a{bottom:414.645000px;}
.y14f{bottom:415.905000px;}
.y10c{bottom:418.245000px;}
.y2c{bottom:419.505000px;}
.yc6{bottom:421.125000px;}
.y16b{bottom:424.005000px;}
.y138{bottom:425.985000px;}
.yae{bottom:427.065000px;}
.y7e{bottom:430.125000px;}
.y50{bottom:430.665000px;}
.y179{bottom:431.385000px;}
.y9c{bottom:432.645000px;}
.y2b{bottom:436.065000px;}
.yfd{bottom:438.225000px;}
.yf4{bottom:439.125000px;}
.yd3{bottom:441.645000px;}
.yb9{bottom:443.265000px;}
.y14e{bottom:444.525000px;}
.y126{bottom:445.065000px;}
.y192{bottom:446.325000px;}
.y2a{bottom:449.925000px;}
.y10b{bottom:451.365000px;}
.yc{bottom:452.445000px;}
.y4f{bottom:452.625000px;}
.y15a{bottom:454.065000px;}
.y16a{bottom:456.945000px;}
.y137{bottom:458.925000px;}
.yad{bottom:460.185000px;}
.y7d{bottom:463.065000px;}
.y29{bottom:463.605000px;}
.y69{bottom:464.145000px;}
.y178{bottom:464.325000px;}
.y89{bottom:465.585000px;}
.ye4{bottom:466.485000px;}
.y155{bottom:469.185000px;}
.yfc{bottom:471.165000px;}
.yce{bottom:472.065000px;}
.yd2{bottom:474.585000px;}
.yb8{bottom:476.385000px;}
.y28{bottom:477.465000px;}
.y125{bottom:478.185000px;}
.y191{bottom:479.265000px;}
.y99{bottom:481.065000px;}
.y12d{bottom:487.185000px;}
.y169{bottom:489.885000px;}
.y14d{bottom:490.965000px;}
.y27{bottom:491.145000px;}
.y136{bottom:491.865000px;}
.yac{bottom:493.125000px;}
.y10a{bottom:494.205000px;}
.y7c{bottom:496.185000px;}
.y4e{bottom:496.545000px;}
.y68{bottom:497.085000px;}
.y177{bottom:497.265000px;}
.y11b{bottom:497.805000px;}
.y5{bottom:498.481500px;}
.y88{bottom:498.525000px;}
.y154{bottom:502.125000px;}
.yfb{bottom:504.105000px;}
.y26{bottom:505.005000px;}
.ycd{bottom:505.185000px;}
.yd1{bottom:507.525000px;}
.yb7{bottom:509.325000px;}
.yb{bottom:512.385000px;}
.y98{bottom:514.185000px;}
.y4d{bottom:518.505000px;}
.y14c{bottom:519.585000px;}
.y124{bottom:520.125000px;}
.y190{bottom:521.385000px;}
.ye0{bottom:522.105000px;}
.y168{bottom:522.825000px;}
.y135{bottom:524.805000px;}
.yab{bottom:526.065000px;}
.y109{bottom:527.145000px;}
.y7b{bottom:529.125000px;}
.y67{bottom:530.025000px;}
.y87{bottom:531.465000px;}
.y153{bottom:535.065000px;}
.y114{bottom:537.045000px;}
.y25{bottom:537.225000px;}
.ycc{bottom:538.125000px;}
.y176{bottom:539.385000px;}
.y4c{bottom:540.465000px;}
.yb6{bottom:542.265000px;}
.y97{bottom:547.125000px;}
.y4{bottom:547.306500px;}
.y163{bottom:553.065000px;}
.y18f{bottom:554.325000px;}
.y24{bottom:555.585000px;}
.y167{bottom:555.765000px;}
.yaa{bottom:559.005000px;}
.y7a{bottom:562.065000px;}
.y4b{bottom:562.425000px;}
.y66{bottom:562.965000px;}
.y86{bottom:564.405000px;}
.y152{bottom:568.005000px;}
.y108{bottom:569.985000px;}
.y14b{bottom:570.345000px;}
.ycb{bottom:571.065000px;}
.y134{bottom:571.965000px;}
.ya{bottom:572.865000px;}
.yd0{bottom:573.405000px;}
.y23{bottom:573.945000px;}
.yb5{bottom:575.205000px;}
.yde{bottom:577.905000px;}
.y96{bottom:580.065000px;}
.y175{bottom:581.325000px;}
.y49{bottom:584.385000px;}
.y162{bottom:586.005000px;}
.y18e{bottom:587.265000px;}
.y166{bottom:588.705000px;}
.y22{bottom:592.305000px;}
.y79{bottom:595.005000px;}
.y65{bottom:595.905000px;}
.y3{bottom:596.446500px;}
.y107{bottom:603.150000px;}
.yc5{bottom:604.050000px;}
.yb4{bottom:604.770000px;}
.y173{bottom:605.670000px;}
.y47{bottom:606.570000px;}
.ya9{bottom:609.990000px;}
.y21{bottom:610.530000px;}
.y95{bottom:613.050000px;}
.y85{bottom:614.310000px;}
.y133{bottom:614.670000px;}
.ydd{bottom:615.930000px;}
.y14a{bottom:617.190000px;}
.y184{bottom:618.990000px;}
.y18d{bottom:620.250000px;}
.y78{bottom:627.990000px;}
.y20{bottom:628.890000px;}
.y165{bottom:630.690000px;}
.y174{bottom:631.050000px;}
.y9{bottom:633.210000px;}
.y106{bottom:636.090000px;}
.yc4{bottom:636.990000px;}
.ya8{bottom:642.930000px;}
.y2{bottom:645.406500px;}
.y64{bottom:645.810000px;}
.y94{bottom:645.990000px;}
.y1f{bottom:647.250000px;}
.y46{bottom:650.490000px;}
.yb3{bottom:656.070000px;}
.y77{bottom:660.930000px;}
.y18c{bottom:662.190000px;}
.y84{bottom:662.550000px;}
.y1e{bottom:665.430000px;}
.y105{bottom:669.030000px;}
.yc3{bottom:669.930000px;}
.y132{bottom:670.470000px;}
.y44{bottom:672.450000px;}
.y93{bottom:678.930000px;}
.y164{bottom:680.550000px;}
.y1d{bottom:683.790000px;}
.y149{bottom:692.250000px;}
.ya7{bottom:693.870000px;}
.y63{bottom:694.050000px;}
.y43{bottom:699.270000px;}
.y1c{bottom:702.150000px;}
.yc2{bottom:702.870000px;}
.y76{bottom:711.870000px;}
.y18b{bottom:712.050000px;}
.y83{bottom:719.970000px;}
.y1b{bottom:720.510000px;}
.y148{bottom:720.870000px;}
.y42{bottom:721.230000px;}
.y8{bottom:735.630000px;}
.y11a{bottom:735.810000px;}
.y1a{bottom:738.690000px;}
.y41{bottom:743.190000px;}
.y75{bottom:744.810000px;}
.y147{bottom:749.490000px;}
.y62{bottom:751.290000px;}
.y19{bottom:757.050000px;}
.y15{bottom:764.790000px;}
.y82{bottom:769.290000px;}
.y40{bottom:770.910000px;}
.y18{bottom:775.410000px;}
.y7{bottom:777.030000px;}
.y74{bottom:777.750000px;}
.y146{bottom:777.930000px;}
.y17{bottom:793.770000px;}
.y6{bottom:794.310000px;}
.y72{bottom:796.110000px;}
.y5f{bottom:797.010000px;}
.ydb{bottom:805.860000px;}
.y181{bottom:806.580000px;}
.y5e{bottom:807.300000px;}
.yc0{bottom:808.020000px;}
.y120{bottom:809.280000px;}
.y172{bottom:809.460000px;}
.ya1{bottom:811.440000px;}
.y91{bottom:812.880000px;}
.y158{bottom:813.600000px;}
.y19b{bottom:814.320000px;}
.y5d{bottom:817.740000px;}
.y5c{bottom:829.080000px;}
.h12{height:21.945000px;}
.h15{height:21.960000px;}
.h19{height:21.981000px;}
.hd{height:22.045078px;}
.h14{height:22.162500px;}
.h24{height:23.962500px;}
.he{height:30.443203px;}
.h27{height:30.765000px;}
.hb{height:35.167148px;}
.h2a{height:36.561000px;}
.h1c{height:37.546875px;}
.hc{height:39.366211px;}
.h32{height:40.320000px;}
.h13{height:43.905000px;}
.h16{height:43.920000px;}
.h17{height:43.950000px;}
.h18{height:44.085000px;}
.h2c{height:44.534180px;}
.h9{height:48.990000px;}
.ha{height:49.284492px;}
.h1b{height:50.312812px;}
.h8{height:51.855469px;}
.h1d{height:54.628594px;}
.h28{height:54.885000px;}
.h26{height:54.900000px;}
.h25{height:55.080000px;}
.h11{height:59.378906px;}
.h4{height:62.327813px;}
.h2e{height:64.980000px;}
.h2f{height:69.086250px;}
.h22{height:72.180000px;}
.h2b{height:72.903867px;}
.h29{height:73.245000px;}
.h1e{height:73.290000px;}
.h1f{height:73.620000px;}
.h2d{height:73.800000px;}
.h20{height:74.880000px;}
.h3{height:75.093750px;}
.h30{height:75.420000px;}
.h23{height:78.300000px;}
.h31{height:83.160000px;}
.h1a{height:89.068359px;}
.h21{height:99.874688px;}
.hf{height:128.852227px;}
.h6{height:163.291992px;}
.h5{height:168.960938px;}
.h7{height:206.507812px;}
.h10{height:415.656141px;}
.h2{height:680.130000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:43.590000px;}
.w7{width:90.202500px;}
.w5{width:362.610000px;}
.w8{width:366.765000px;}
.w3{width:431.910000px;}
.w6{width:464.355000px;}
.w2{width:510.795000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.xf{left:7.909500px;}
.x2{left:10.789500px;}
.x13{left:12.600000px;}
.x11{left:17.100000px;}
.x12{left:21.810000px;}
.x14{left:29.149500px;}
.x1{left:59.266500px;}
.xe{left:77.086500px;}
.x29{left:79.246500px;}
.x3{left:84.996000px;}
.x2a{left:87.706500px;}
.x1a{left:93.466500px;}
.x25{left:97.606500px;}
.x1f{left:99.046500px;}
.x26{left:102.466500px;}
.x1c{left:107.326500px;}
.x1d{left:110.206500px;}
.x18{left:111.996000px;}
.x23{left:113.626500px;}
.x6{left:117.396000px;}
.x20{left:128.196000px;}
.x17{left:132.706500px;}
.x28{left:135.396000px;}
.x22{left:137.196000px;}
.x19{left:138.996000px;}
.xd{left:152.310000px;}
.x9{left:161.850000px;}
.x27{left:164.190000px;}
.x1e{left:165.990000px;}
.x4{left:172.470000px;}
.xc{left:176.968500px;}
.x15{left:182.775000px;}
.x24{left:191.235000px;}
.x21{left:193.035000px;}
.xb{left:218.415000px;}
.x5{left:229.935000px;}
.xa{left:235.875000px;}
.x7{left:314.565000px;}
.x8{left:395.745000px;}
.x10{left:509.010000px;}
.x1b{left:524.310000px;}
.x16{left:534.240000px;}
@media print{
.v1{vertical-align:-165.760000pt;}
.v2{vertical-align:-63.360000pt;}
.v3{vertical-align:-23.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.440000pt;}
.ls30{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.353067pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.286933pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.124267pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.019840pt;}
.ls20{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.336000pt;}
.ls4{letter-spacing:0.746240pt;}
.ls13{letter-spacing:1.536000pt;}
.ls36{letter-spacing:2.816000pt;}
.ls16{letter-spacing:4.096000pt;}
.ls18{letter-spacing:6.016000pt;}
.ls37{letter-spacing:8.586667pt;}
.ls2f{letter-spacing:13.056000pt;}
.ls25{letter-spacing:23.808000pt;}
.ls32{letter-spacing:25.088000pt;}
.ls24{letter-spacing:27.008000pt;}
.ls2b{letter-spacing:27.626667pt;}
.ls10{letter-spacing:27.648000pt;}
.ls31{letter-spacing:28.288000pt;}
.ls35{letter-spacing:28.928000pt;}
.ls28{letter-spacing:29.568000pt;}
.ls26{letter-spacing:30.208000pt;}
.ls33{letter-spacing:31.488000pt;}
.ls1f{letter-spacing:31.616000pt;}
.ls2c{letter-spacing:33.530027pt;}
.ls2e{letter-spacing:33.551360pt;}
.ls34{letter-spacing:39.168000pt;}
.ls1c{letter-spacing:48.768000pt;}
.ls3{letter-spacing:52.943360pt;}
.ls0{letter-spacing:1593.120000pt;}
.ws10{word-spacing:-58.880000pt;}
.ws0{word-spacing:-40.112000pt;}
.ws5{word-spacing:-31.386880pt;}
.ws7{word-spacing:-21.696000pt;}
.ws8{word-spacing:-18.048000pt;}
.wse{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.592000pt;}
.wsd{word-spacing:-14.528000pt;}
.ws9{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.400000pt;}
.wsb{word-spacing:-14.272000pt;}
.ws11{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.888000pt;}
.ws2{word-spacing:-9.423573pt;}
.ws3{word-spacing:-8.463360pt;}
.ws4{word-spacing:-8.176427pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.221760pt;}
._0{width:1.115520pt;}
._2{width:2.234880pt;}
._3{width:3.220267pt;}
._9{width:4.608000pt;}
._8{width:6.080000pt;}
._e{width:7.296000pt;}
._c{width:8.890240pt;}
._b{width:9.989760pt;}
._a{width:10.944000pt;}
._10{width:11.840000pt;}
._d{width:13.056000pt;}
._28{width:14.592000pt;}
._17{width:15.616000pt;}
._1a{width:16.543573pt;}
._12{width:17.536000pt;}
._1f{width:19.295573pt;}
._16{width:20.277333pt;}
._14{width:21.184000pt;}
._13{width:22.208000pt;}
._15{width:23.370667pt;}
._1e{width:25.408000pt;}
._1d{width:26.368000pt;}
._1c{width:29.696000pt;}
._1b{width:30.656000pt;}
._20{width:31.552000pt;}
._23{width:32.448000pt;}
._22{width:33.600000pt;}
._2e{width:34.767147pt;}
._2d{width:35.818667pt;}
._24{width:37.056000pt;}
._27{width:44.090667pt;}
._26{width:45.002667pt;}
._2c{width:52.725333pt;}
._2b{width:53.706667pt;}
._4{width:55.088853pt;}
._29{width:59.008000pt;}
._2a{width:59.957333pt;}
._21{width:100.032000pt;}
._19{width:126.080000pt;}
._18{width:127.168000pt;}
._6{width:174.336000pt;}
._5{width:736.858453pt;}
._7{width:746.549333pt;}
._25{width:750.453333pt;}
._11{width:753.781333pt;}
._f{width:754.938453pt;}
.fs6{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs8{font-size:138.880000pt;}
.fs2{font-size:144.000000pt;}
.fs3{font-size:176.000000pt;}
.fs9{font-size:533.248000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:3.520000pt;}
.ye3{bottom:3.680000pt;}
.yf3{bottom:3.706667pt;}
.y5a{bottom:4.306667pt;}
.y45{bottom:4.320000pt;}
.y4a{bottom:4.480000pt;}
.y19c{bottom:4.960000pt;}
.ydf{bottom:8.640000pt;}
.y16{bottom:12.640000pt;}
.yeb{bottom:14.720000pt;}
.yed{bottom:19.840000pt;}
.yf2{bottom:19.866667pt;}
.ye2{bottom:20.000000pt;}
.ye9{bottom:20.026667pt;}
.y48{bottom:23.840000pt;}
.y57{bottom:24.000000pt;}
.y159{bottom:27.040000pt;}
.yc1{bottom:33.440000pt;}
.y92{bottom:34.560000pt;}
.y141{bottom:34.880000pt;}
.ya2{bottom:35.840000pt;}
.ye5{bottom:36.160000pt;}
.ye8{bottom:36.186667pt;}
.ye1{bottom:36.320000pt;}
.ydc{bottom:38.720000pt;}
.y182{bottom:43.200000pt;}
.yf0{bottom:52.480000pt;}
.ye7{bottom:52.506667pt;}
.y73{bottom:57.466667pt;}
.y61{bottom:59.872000pt;}
.y1{bottom:61.158667pt;}
.y14{bottom:79.872000pt;}
.y13{bottom:98.112000pt;}
.y3f{bottom:102.592000pt;}
.y60{bottom:103.392000pt;}
.y12{bottom:116.992000pt;}
.y11{bottom:135.706667pt;}
.y3e{bottom:137.626667pt;}
.yfa{bottom:139.066667pt;}
.y122{bottom:140.026667pt;}
.yda{bottom:142.106667pt;}
.y140{bottom:144.186667pt;}
.y5b{bottom:145.146667pt;}
.y19a{bottom:146.266667pt;}
.y183{bottom:148.026667pt;}
.y113{bottom:149.786667pt;}
.y11f{bottom:150.106667pt;}
.y18a{bottom:150.586667pt;}
.y15f{bottom:153.306667pt;}
.y3d{bottom:153.946667pt;}
.y10{bottom:154.426667pt;}
.ya6{bottom:161.306667pt;}
.y71{bottom:162.106667pt;}
.ya0{bottom:163.386667pt;}
.y12b{bottom:166.586667pt;}
.y104{bottom:166.746667pt;}
.y59{bottom:167.880000pt;}
.yf9{bottom:168.346667pt;}
.y171{bottom:168.986667pt;}
.y119{bottom:169.306667pt;}
.yf{bottom:169.786667pt;}
.y180{bottom:170.266667pt;}
.yd9{bottom:171.386667pt;}
.yf1{bottom:172.360000pt;}
.y13f{bottom:173.466667pt;}
.y19e{bottom:174.586667pt;}
.y3c{bottom:175.546667pt;}
.y199{bottom:175.746667pt;}
.y90{bottom:176.706667pt;}
.y161{bottom:177.346667pt;}
.y112{bottom:179.266667pt;}
.y11e{bottom:179.426667pt;}
.y15e{bottom:182.626667pt;}
.y3b{bottom:184.226667pt;}
.y58{bottom:187.426667pt;}
.y189{bottom:187.906667pt;}
.ya5{bottom:190.626667pt;}
.y70{bottom:191.426667pt;}
.y9f{bottom:192.706667pt;}
.ybf{bottom:194.306667pt;}
.y12c{bottom:195.906667pt;}
.y103{bottom:196.066667pt;}
.yf8{bottom:197.666667pt;}
.y3a{bottom:197.826667pt;}
.y170{bottom:198.306667pt;}
.y118{bottom:198.626667pt;}
.y17f{bottom:199.746667pt;}
.yd8{bottom:200.706667pt;}
.y13e{bottom:202.786667pt;}
.y12a{bottom:203.906667pt;}
.y116{bottom:204.866667pt;}
.yef{bottom:205.666667pt;}
.y8f{bottom:205.986667pt;}
.y160{bottom:206.626667pt;}
.y11d{bottom:208.706667pt;}
.y39{bottom:210.146667pt;}
.y15d{bottom:211.906667pt;}
.y198{bottom:213.026667pt;}
.y111{bottom:217.346667pt;}
.y145{bottom:219.746667pt;}
.ya4{bottom:219.906667pt;}
.y6f{bottom:220.706667pt;}
.y9e{bottom:221.986667pt;}
.y38{bottom:222.306667pt;}
.ybe{bottom:223.586667pt;}
.y157{bottom:225.186667pt;}
.y56{bottom:226.466667pt;}
.yf7{bottom:227.106667pt;}
.y117{bottom:227.906667pt;}
.y17e{bottom:229.026667pt;}
.yd7{bottom:229.986667pt;}
.y13d{bottom:232.226667pt;}
.y129{bottom:233.186667pt;}
.y102{bottom:234.146667pt;}
.y37{bottom:234.626667pt;}
.y16f{bottom:235.586667pt;}
.y123{bottom:235.906667pt;}
.y11c{bottom:237.986667pt;}
.y15c{bottom:241.186667pt;}
.y197{bottom:242.306667pt;}
.y110{bottom:246.626667pt;}
.y36{bottom:246.786667pt;}
.ya3{bottom:249.186667pt;}
.y6e{bottom:249.986667pt;}
.y8e{bottom:251.426667pt;}
.ybd{bottom:252.866667pt;}
.y156{bottom:254.466667pt;}
.yf6{bottom:256.386667pt;}
.yca{bottom:257.186667pt;}
.y17d{bottom:258.306667pt;}
.y35{bottom:259.106667pt;}
.y144{bottom:261.026667pt;}
.y13c{bottom:261.506667pt;}
.y128{bottom:262.466667pt;}
.y101{bottom:263.426667pt;}
.yb2{bottom:263.906667pt;}
.y9b{bottom:265.186667pt;}
.y55{bottom:265.666667pt;}
.yd6{bottom:267.426667pt;}
.y19d{bottom:270.466667pt;}
.y34{bottom:271.266667pt;}
.yec{bottom:271.426667pt;}
.y196{bottom:271.586667pt;}
.y16e{bottom:272.866667pt;}
.y186{bottom:273.186667pt;}
.y10f{bottom:275.906667pt;}
.y15b{bottom:278.466667pt;}
.y131{bottom:278.786667pt;}
.y6d{bottom:279.266667pt;}
.y8d{bottom:280.706667pt;}
.y33{bottom:283.586667pt;}
.y54{bottom:285.186667pt;}
.yc9{bottom:286.466667pt;}
.y17c{bottom:287.586667pt;}
.ybc{bottom:290.146667pt;}
.y13b{bottom:290.786667pt;}
.yb1{bottom:291.746667pt;}
.y100{bottom:292.706667pt;}
.y9a{bottom:294.466667pt;}
.y32{bottom:295.746667pt;}
.y81{bottom:295.906667pt;}
.yd5{bottom:296.706667pt;}
.y188{bottom:299.746667pt;}
.y195{bottom:300.866667pt;}
.ye{bottom:301.026667pt;}
.y185{bottom:302.466667pt;}
.y151{bottom:302.946667pt;}
.y53{bottom:304.706667pt;}
.y10e{bottom:305.186667pt;}
.y130{bottom:307.746667pt;}
.y31{bottom:308.066667pt;}
.y6c{bottom:308.546667pt;}
.y8c{bottom:309.986667pt;}
.y16d{bottom:310.146667pt;}
.y143{bottom:311.906667pt;}
.yc8{bottom:315.746667pt;}
.y13a{bottom:320.066667pt;}
.y30{bottom:320.226667pt;}
.yea{bottom:320.866667pt;}
.yb0{bottom:321.026667pt;}
.yff{bottom:322.146667pt;}
.y80{bottom:323.746667pt;}
.y52{bottom:324.226667pt;}
.y17b{bottom:324.866667pt;}
.yd4{bottom:325.986667pt;}
.ybb{bottom:327.426667pt;}
.y150{bottom:328.226667pt;}
.y187{bottom:329.026667pt;}
.y121{bottom:331.746667pt;}
.y2f{bottom:333.026667pt;}
.y10d{bottom:334.466667pt;}
.y12f{bottom:337.026667pt;}
.y142{bottom:337.186667pt;}
.y6b{bottom:337.826667pt;}
.y194{bottom:338.146667pt;}
.y8b{bottom:339.266667pt;}
.y16c{bottom:339.586667pt;}
.yc7{bottom:345.026667pt;}
.ycf{bottom:346.466667pt;}
.y2e{bottom:347.746667pt;}
.ye6{bottom:348.866667pt;}
.y139{bottom:349.346667pt;}
.yaf{bottom:350.306667pt;}
.yfe{bottom:351.426667pt;}
.yd{bottom:351.586667pt;}
.y7f{bottom:353.026667pt;}
.y17a{bottom:354.173333pt;}
.y9d{bottom:355.293333pt;}
.yba{bottom:356.733333pt;}
.y127{bottom:358.333333pt;}
.y2d{bottom:360.093333pt;}
.y115{bottom:360.253333pt;}
.yf5{bottom:361.053333pt;}
.y51{bottom:363.293333pt;}
.y12e{bottom:366.333333pt;}
.y6a{bottom:367.293333pt;}
.y193{bottom:367.453333pt;}
.y8a{bottom:368.573333pt;}
.y14f{bottom:369.693333pt;}
.y10c{bottom:371.773333pt;}
.y2c{bottom:372.893333pt;}
.yc6{bottom:374.333333pt;}
.y16b{bottom:376.893333pt;}
.y138{bottom:378.653333pt;}
.yae{bottom:379.613333pt;}
.y7e{bottom:382.333333pt;}
.y50{bottom:382.813333pt;}
.y179{bottom:383.453333pt;}
.y9c{bottom:384.573333pt;}
.y2b{bottom:387.613333pt;}
.yfd{bottom:389.533333pt;}
.yf4{bottom:390.333333pt;}
.yd3{bottom:392.573333pt;}
.yb9{bottom:394.013333pt;}
.y14e{bottom:395.133333pt;}
.y126{bottom:395.613333pt;}
.y192{bottom:396.733333pt;}
.y2a{bottom:399.933333pt;}
.y10b{bottom:401.213333pt;}
.yc{bottom:402.173333pt;}
.y4f{bottom:402.333333pt;}
.y15a{bottom:403.613333pt;}
.y16a{bottom:406.173333pt;}
.y137{bottom:407.933333pt;}
.yad{bottom:409.053333pt;}
.y7d{bottom:411.613333pt;}
.y29{bottom:412.093333pt;}
.y69{bottom:412.573333pt;}
.y178{bottom:412.733333pt;}
.y89{bottom:413.853333pt;}
.ye4{bottom:414.653333pt;}
.y155{bottom:417.053333pt;}
.yfc{bottom:418.813333pt;}
.yce{bottom:419.613333pt;}
.yd2{bottom:421.853333pt;}
.yb8{bottom:423.453333pt;}
.y28{bottom:424.413333pt;}
.y125{bottom:425.053333pt;}
.y191{bottom:426.013333pt;}
.y99{bottom:427.613333pt;}
.y12d{bottom:433.053333pt;}
.y169{bottom:435.453333pt;}
.y14d{bottom:436.413333pt;}
.y27{bottom:436.573333pt;}
.y136{bottom:437.213333pt;}
.yac{bottom:438.333333pt;}
.y10a{bottom:439.293333pt;}
.y7c{bottom:441.053333pt;}
.y4e{bottom:441.373333pt;}
.y68{bottom:441.853333pt;}
.y177{bottom:442.013333pt;}
.y11b{bottom:442.493333pt;}
.y5{bottom:443.094667pt;}
.y88{bottom:443.133333pt;}
.y154{bottom:446.333333pt;}
.yfb{bottom:448.093333pt;}
.y26{bottom:448.893333pt;}
.ycd{bottom:449.053333pt;}
.yd1{bottom:451.133333pt;}
.yb7{bottom:452.733333pt;}
.yb{bottom:455.453333pt;}
.y98{bottom:457.053333pt;}
.y4d{bottom:460.893333pt;}
.y14c{bottom:461.853333pt;}
.y124{bottom:462.333333pt;}
.y190{bottom:463.453333pt;}
.ye0{bottom:464.093333pt;}
.y168{bottom:464.733333pt;}
.y135{bottom:466.493333pt;}
.yab{bottom:467.613333pt;}
.y109{bottom:468.573333pt;}
.y7b{bottom:470.333333pt;}
.y67{bottom:471.133333pt;}
.y87{bottom:472.413333pt;}
.y153{bottom:475.613333pt;}
.y114{bottom:477.373333pt;}
.y25{bottom:477.533333pt;}
.ycc{bottom:478.333333pt;}
.y176{bottom:479.453333pt;}
.y4c{bottom:480.413333pt;}
.yb6{bottom:482.013333pt;}
.y97{bottom:486.333333pt;}
.y4{bottom:486.494667pt;}
.y163{bottom:491.613333pt;}
.y18f{bottom:492.733333pt;}
.y24{bottom:493.853333pt;}
.y167{bottom:494.013333pt;}
.yaa{bottom:496.893333pt;}
.y7a{bottom:499.613333pt;}
.y4b{bottom:499.933333pt;}
.y66{bottom:500.413333pt;}
.y86{bottom:501.693333pt;}
.y152{bottom:504.893333pt;}
.y108{bottom:506.653333pt;}
.y14b{bottom:506.973333pt;}
.ycb{bottom:507.613333pt;}
.y134{bottom:508.413333pt;}
.ya{bottom:509.213333pt;}
.yd0{bottom:509.693333pt;}
.y23{bottom:510.173333pt;}
.yb5{bottom:511.293333pt;}
.yde{bottom:513.693333pt;}
.y96{bottom:515.613333pt;}
.y175{bottom:516.733333pt;}
.y49{bottom:519.453333pt;}
.y162{bottom:520.893333pt;}
.y18e{bottom:522.013333pt;}
.y166{bottom:523.293333pt;}
.y22{bottom:526.493333pt;}
.y79{bottom:528.893333pt;}
.y65{bottom:529.693333pt;}
.y3{bottom:530.174667pt;}
.y107{bottom:536.133333pt;}
.yc5{bottom:536.933333pt;}
.yb4{bottom:537.573333pt;}
.y173{bottom:538.373333pt;}
.y47{bottom:539.173333pt;}
.ya9{bottom:542.213333pt;}
.y21{bottom:542.693333pt;}
.y95{bottom:544.933333pt;}
.y85{bottom:546.053333pt;}
.y133{bottom:546.373333pt;}
.ydd{bottom:547.493333pt;}
.y14a{bottom:548.613333pt;}
.y184{bottom:550.213333pt;}
.y18d{bottom:551.333333pt;}
.y78{bottom:558.213333pt;}
.y20{bottom:559.013333pt;}
.y165{bottom:560.613333pt;}
.y174{bottom:560.933333pt;}
.y9{bottom:562.853333pt;}
.y106{bottom:565.413333pt;}
.yc4{bottom:566.213333pt;}
.ya8{bottom:571.493333pt;}
.y2{bottom:573.694667pt;}
.y64{bottom:574.053333pt;}
.y94{bottom:574.213333pt;}
.y1f{bottom:575.333333pt;}
.y46{bottom:578.213333pt;}
.yb3{bottom:583.173333pt;}
.y77{bottom:587.493333pt;}
.y18c{bottom:588.613333pt;}
.y84{bottom:588.933333pt;}
.y1e{bottom:591.493333pt;}
.y105{bottom:594.693333pt;}
.yc3{bottom:595.493333pt;}
.y132{bottom:595.973333pt;}
.y44{bottom:597.733333pt;}
.y93{bottom:603.493333pt;}
.y164{bottom:604.933333pt;}
.y1d{bottom:607.813333pt;}
.y149{bottom:615.333333pt;}
.ya7{bottom:616.773333pt;}
.y63{bottom:616.933333pt;}
.y43{bottom:621.573333pt;}
.y1c{bottom:624.133333pt;}
.yc2{bottom:624.773333pt;}
.y76{bottom:632.773333pt;}
.y18b{bottom:632.933333pt;}
.y83{bottom:639.973333pt;}
.y1b{bottom:640.453333pt;}
.y148{bottom:640.773333pt;}
.y42{bottom:641.093333pt;}
.y8{bottom:653.893333pt;}
.y11a{bottom:654.053333pt;}
.y1a{bottom:656.613333pt;}
.y41{bottom:660.613333pt;}
.y75{bottom:662.053333pt;}
.y147{bottom:666.213333pt;}
.y62{bottom:667.813333pt;}
.y19{bottom:672.933333pt;}
.y15{bottom:679.813333pt;}
.y82{bottom:683.813333pt;}
.y40{bottom:685.253333pt;}
.y18{bottom:689.253333pt;}
.y7{bottom:690.693333pt;}
.y74{bottom:691.333333pt;}
.y146{bottom:691.493333pt;}
.y17{bottom:705.573333pt;}
.y6{bottom:706.053333pt;}
.y72{bottom:707.653333pt;}
.y5f{bottom:708.453333pt;}
.ydb{bottom:716.320000pt;}
.y181{bottom:716.960000pt;}
.y5e{bottom:717.600000pt;}
.yc0{bottom:718.240000pt;}
.y120{bottom:719.360000pt;}
.y172{bottom:719.520000pt;}
.ya1{bottom:721.280000pt;}
.y91{bottom:722.560000pt;}
.y158{bottom:723.200000pt;}
.y19b{bottom:723.840000pt;}
.y5d{bottom:726.880000pt;}
.y5c{bottom:736.960000pt;}
.h12{height:19.506667pt;}
.h15{height:19.520000pt;}
.h19{height:19.538667pt;}
.hd{height:19.595625pt;}
.h14{height:19.700000pt;}
.h24{height:21.300000pt;}
.he{height:27.060625pt;}
.h27{height:27.346667pt;}
.hb{height:31.259687pt;}
.h2a{height:32.498667pt;}
.h1c{height:33.375000pt;}
.hc{height:34.992188pt;}
.h32{height:35.840000pt;}
.h13{height:39.026667pt;}
.h16{height:39.040000pt;}
.h17{height:39.066667pt;}
.h18{height:39.186667pt;}
.h2c{height:39.585938pt;}
.h9{height:43.546667pt;}
.ha{height:43.808438pt;}
.h1b{height:44.722500pt;}
.h8{height:46.093750pt;}
.h1d{height:48.558750pt;}
.h28{height:48.786667pt;}
.h26{height:48.800000pt;}
.h25{height:48.960000pt;}
.h11{height:52.781250pt;}
.h4{height:55.402500pt;}
.h2e{height:57.760000pt;}
.h2f{height:61.410000pt;}
.h22{height:64.160000pt;}
.h2b{height:64.803437pt;}
.h29{height:65.106667pt;}
.h1e{height:65.146667pt;}
.h1f{height:65.440000pt;}
.h2d{height:65.600000pt;}
.h20{height:66.560000pt;}
.h3{height:66.750000pt;}
.h30{height:67.040000pt;}
.h23{height:69.600000pt;}
.h31{height:73.920000pt;}
.h1a{height:79.171875pt;}
.h21{height:88.777500pt;}
.hf{height:114.535313pt;}
.h6{height:145.148438pt;}
.h5{height:150.187500pt;}
.h7{height:183.562500pt;}
.h10{height:369.472125pt;}
.h2{height:604.560000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:38.746667pt;}
.w7{width:80.180000pt;}
.w5{width:322.320000pt;}
.w8{width:326.013333pt;}
.w3{width:383.920000pt;}
.w6{width:412.760000pt;}
.w2{width:454.040000pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.xf{left:7.030667pt;}
.x2{left:9.590667pt;}
.x13{left:11.200000pt;}
.x11{left:15.200000pt;}
.x12{left:19.386667pt;}
.x14{left:25.910667pt;}
.x1{left:52.681333pt;}
.xe{left:68.521333pt;}
.x29{left:70.441333pt;}
.x3{left:75.552000pt;}
.x2a{left:77.961333pt;}
.x1a{left:83.081333pt;}
.x25{left:86.761333pt;}
.x1f{left:88.041333pt;}
.x26{left:91.081333pt;}
.x1c{left:95.401333pt;}
.x1d{left:97.961333pt;}
.x18{left:99.552000pt;}
.x23{left:101.001333pt;}
.x6{left:104.352000pt;}
.x20{left:113.952000pt;}
.x17{left:117.961333pt;}
.x28{left:120.352000pt;}
.x22{left:121.952000pt;}
.x19{left:123.552000pt;}
.xd{left:135.386667pt;}
.x9{left:143.866667pt;}
.x27{left:145.946667pt;}
.x1e{left:147.546667pt;}
.x4{left:153.306667pt;}
.xc{left:157.305333pt;}
.x15{left:162.466667pt;}
.x24{left:169.986667pt;}
.x21{left:171.586667pt;}
.xb{left:194.146667pt;}
.x5{left:204.386667pt;}
.xa{left:209.666667pt;}
.x7{left:279.613333pt;}
.x8{left:351.773333pt;}
.x10{left:452.453333pt;}
.x1b{left:466.053333pt;}
.x16{left:474.880000pt;}
}




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