
    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_78693253c5b34b16047a1bb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_a1009e7cc1db737f915e947b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_256f2d93f6a61ea85fa260ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089355;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_0ba0969ba693f07d0293e01f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.089355;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_0da9ce7a7563d1b9c7ad208a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166504;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_3b8994463fbd3c963e3c95fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166504;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_39d00380a64b4c9657c10e80.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_41ed8e3ee2e82e36835725c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_dcecf3302b90a0a76d891a36.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_6fb59116851dfb781e7432ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_ac2957a1a93acfaff6915925.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700195;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_f81751f8eaf9635e448f09a3.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls9{letter-spacing:-0.762000px;}
.ls16{letter-spacing:-0.618000px;}
.ls15{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.334200px;}
.lse{letter-spacing:-0.207600px;}
.ls6{letter-spacing:-0.069000px;}
.ls7{letter-spacing:-0.051840px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.054720px;}
.ls5{letter-spacing:0.089400px;}
.ls14{letter-spacing:0.100800px;}
.lsd{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144720px;}
.lsf{letter-spacing:0.155400px;}
.ls4{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.328200px;}
.ls10{letter-spacing:0.328320px;}
.ls13{letter-spacing:1.267200px;}
.ls2{letter-spacing:4.867200px;}
.lsa{letter-spacing:5.587200px;}
.lsb{letter-spacing:6.307200px;}
.lsc{letter-spacing:39.185280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.wsb{word-spacing:-14.901000px;}
.ws8{word-spacing:-14.728200px;}
.ws7{word-spacing:-14.679600px;}
.ws9{word-spacing:-14.627520px;}
.ws6{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws2{word-spacing:-14.503800px;}
.ws5{word-spacing:-14.238600px;}
.wsc{word-spacing:-14.158200px;}
.ws1{word-spacing:-9.187200px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:3.047040px;}
._23{margin-left:-8.147520px;}
._b{margin-left:-6.912000px;}
._a{margin-left:-5.875200px;}
._26{margin-left:-4.845120px;}
._24{margin-left:-3.179520px;}
._25{margin-left:-2.169600px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.095200px;}
._3{width:3.568800px;}
._13{width:4.791120px;}
._14{width:6.204720px;}
._d{width:7.469280px;}
._4{width:8.519760px;}
._12{width:9.655200px;}
._11{width:10.664640px;}
._15{width:11.989440px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._c{width:16.280640px;}
._1f{width:17.487360px;}
._10{width:18.547200px;}
._f{width:20.269440px;}
._e{width:21.528000px;}
._19{width:22.852800px;}
._1c{width:24.034320px;}
._1a{width:25.038720px;}
._1b{width:26.098560px;}
._21{width:27.158400px;}
._18{width:28.218240px;}
._20{width:29.410560px;}
._1d{width:30.735360px;}
._1e{width:32.383200px;}
._16{width:33.716160px;}
._17{width:35.182560px;}
._22{width:36.603360px;}
._28{width:38.286720px;}
._27{width:39.385680px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._29{width:173.176320px;}
._1{width:201.403200px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:3.592500px;}
.ybc{bottom:3.600000px;}
.yd1{bottom:3.765000px;}
.yd9{bottom:3.772500px;}
.ycc{bottom:3.780000px;}
.yec{bottom:3.810000px;}
.ye5{bottom:3.825000px;}
.yfb{bottom:4.140000px;}
.y119{bottom:22.852500px;}
.yde{bottom:22.860000px;}
.yd0{bottom:23.025000px;}
.yd8{bottom:23.032500px;}
.ycb{bottom:23.040000px;}
.yeb{bottom:23.070000px;}
.ybb{bottom:23.085000px;}
.y135{bottom:42.285000px;}
.yd7{bottom:42.286500px;}
.ydd{bottom:42.300000px;}
.y17d{bottom:42.330000px;}
.y156{bottom:42.345000px;}
.ycf{bottom:42.465000px;}
.yca{bottom:42.480000px;}
.yea{bottom:42.510000px;}
.ye4{bottom:42.525000px;}
.y31{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.y118{bottom:61.546500px;}
.ydc{bottom:61.560000px;}
.y155{bottom:61.605000px;}
.yf3{bottom:61.725000px;}
.yd6{bottom:61.726500px;}
.ye2{bottom:61.740000px;}
.yc9{bottom:61.770000px;}
.yc{bottom:73.656000px;}
.y134{bottom:80.985000px;}
.yd5{bottom:80.986500px;}
.ye1{bottom:81.000000px;}
.ydb{bottom:81.030000px;}
.y154{bottom:81.045000px;}
.y103{bottom:81.180000px;}
.yc8{bottom:81.210000px;}
.yb{bottom:89.136000px;}
.y117{bottom:100.246500px;}
.ye7{bottom:100.260000px;}
.y153{bottom:100.305000px;}
.y133{bottom:100.425000px;}
.yd4{bottom:100.426500px;}
.ye0{bottom:100.440000px;}
.yc7{bottom:100.470000px;}
.ya{bottom:104.616000px;}
.y112{bottom:111.463500px;}
.y136{bottom:112.723500px;}
.yf9{bottom:114.876000px;}
.y89{bottom:116.316000px;}
.y14f{bottom:117.216000px;}
.y132{bottom:119.685000px;}
.yd3{bottom:119.686500px;}
.y130{bottom:119.700000px;}
.y138{bottom:119.730000px;}
.y152{bottom:119.745000px;}
.y15a{bottom:119.880000px;}
.yc6{bottom:119.910000px;}
.y102{bottom:119.925000px;}
.y9{bottom:120.096000px;}
.yd2{bottom:120.823500px;}
.y181{bottom:121.363500px;}
.y192{bottom:123.703500px;}
.yb4{bottom:126.036000px;}
.y59{bottom:127.656000px;}
.y16d{bottom:132.696000px;}
.yf8{bottom:134.136000px;}
.y8{bottom:135.576000px;}
.y88{bottom:135.756000px;}
.y14e{bottom:136.656000px;}
.y1ca{bottom:138.456000px;}
.y116{bottom:138.946500px;}
.y17c{bottom:138.990000px;}
.y159{bottom:139.140000px;}
.yc5{bottom:139.170000px;}
.y101{bottom:139.185000px;}
.yb3{bottom:145.296000px;}
.y58{bottom:147.096000px;}
.y1b3{bottom:153.210000px;}
.yf7{bottom:153.570000px;}
.y87{bottom:155.010000px;}
.y14d{bottom:155.910000px;}
.y1c9{bottom:157.710000px;}
.y115{bottom:158.386500px;}
.y180{bottom:158.400000px;}
.y12f{bottom:158.430000px;}
.y158{bottom:158.580000px;}
.yc4{bottom:158.610000px;}
.y100{bottom:158.625000px;}
.yb2{bottom:164.730000px;}
.y57{bottom:166.350000px;}
.y2f{bottom:169.410000px;}
.y16c{bottom:170.130000px;}
.y131{bottom:170.685000px;}
.y1b2{bottom:172.650000px;}
.yf6{bottom:172.830000px;}
.y86{bottom:174.450000px;}
.y14c{bottom:175.350000px;}
.y1c8{bottom:176.970000px;}
.y114{bottom:177.646500px;}
.y17b{bottom:177.690000px;}
.y17f{bottom:177.840000px;}
.yc3{bottom:177.870000px;}
.yff{bottom:177.885000px;}
.yb1{bottom:183.990000px;}
.y2e{bottom:191.730000px;}
.y1b1{bottom:191.910000px;}
.yf5{bottom:192.270000px;}
.y85{bottom:193.710000px;}
.y14b{bottom:194.610000px;}
.y1c7{bottom:196.410000px;}
.y113{bottom:197.086500px;}
.yce{bottom:197.130000px;}
.y196{bottom:197.131500px;}
.yc2{bottom:197.310000px;}
.yfe{bottom:197.325000px;}
.yb0{bottom:203.430000px;}
.y56{bottom:203.610000px;}
.y16b{bottom:207.390000px;}
.y1b0{bottom:211.350000px;}
.yf4{bottom:211.530000px;}
.y84{bottom:212.970000px;}
.y2d{bottom:213.870000px;}
.y14a{bottom:214.050000px;}
.y1c6{bottom:215.670000px;}
.y17a{bottom:216.390000px;}
.y195{bottom:216.391500px;}
.yc1{bottom:216.570000px;}
.yfd{bottom:216.585000px;}
.yaf{bottom:222.690000px;}
.y55{bottom:225.930000px;}
.yf2{bottom:227.925000px;}
.y1af{bottom:230.610000px;}
.y83{bottom:232.410000px;}
.y149{bottom:233.310000px;}
.y1c5{bottom:235.110000px;}
.yc0{bottom:235.830000px;}
.y194{bottom:235.831500px;}
.y2c{bottom:236.190000px;}
.yae{bottom:242.130000px;}
.y16a{bottom:244.650000px;}
.y54{bottom:248.070000px;}
.y1ae{bottom:250.050000px;}
.y82{bottom:251.670000px;}
.y148{bottom:252.750000px;}
.y1c4{bottom:254.370000px;}
.y179{bottom:255.090000px;}
.y193{bottom:255.091500px;}
.ybf{bottom:255.270000px;}
.ycd{bottom:256.185000px;}
.y171{bottom:256.725000px;}
.y2b{bottom:258.330000px;}
.yb9{bottom:261.390000px;}
.y1ad{bottom:269.310000px;}
.y53{bottom:270.390000px;}
.y81{bottom:271.110000px;}
.y147{bottom:272.010000px;}
.y1c3{bottom:273.810000px;}
.ybe{bottom:274.530000px;}
.y2a{bottom:280.650000px;}
.yb8{bottom:280.830000px;}
.y169{bottom:282.090000px;}
.y1ac{bottom:288.570000px;}
.y80{bottom:290.370000px;}
.y146{bottom:291.450000px;}
.y52{bottom:292.710000px;}
.y1c2{bottom:293.070000px;}
.y178{bottom:293.835000px;}
.y12e{bottom:293.970000px;}
.yb7{bottom:300.090000px;}
.y168{bottom:301.350000px;}
.y29{bottom:302.790000px;}
.yf1{bottom:305.325000px;}
.y15c{bottom:306.045000px;}
.y1ab{bottom:308.010000px;}
.y7f{bottom:309.855000px;}
.y145{bottom:310.755000px;}
.y1c1{bottom:312.555000px;}
.y12d{bottom:313.230000px;}
.y177{bottom:313.275000px;}
.y51{bottom:314.895000px;}
.yb6{bottom:319.575000px;}
.y167{bottom:320.835000px;}
.y111{bottom:324.975000px;}
.y28{bottom:325.155000px;}
.y144{bottom:326.415000px;}
.y1aa{bottom:327.315000px;}
.y7e{bottom:329.115000px;}
.y1c0{bottom:331.815000px;}
.y176{bottom:332.535000px;}
.y12c{bottom:332.670000px;}
.y17e{bottom:334.155000px;}
.y50{bottom:337.215000px;}
.yb5{bottom:338.835000px;}
.y166{bottom:340.095000px;}
.y1a9{bottom:346.755000px;}
.y27{bottom:347.475000px;}
.yad{bottom:348.555000px;}
.y1bf{bottom:351.255000px;}
.y12b{bottom:351.930000px;}
.y175{bottom:351.975000px;}
.y7d{bottom:358.095000px;}
.y4f{bottom:359.355000px;}
.y165{bottom:359.535000px;}
.yf0{bottom:363.495000px;}
.y110{bottom:367.275000px;}
.yac{bottom:367.815000px;}
.y26{bottom:369.615000px;}
.y1be{bottom:370.515000px;}
.y12a{bottom:371.190000px;}
.y1a8{bottom:375.735000px;}
.y7c{bottom:377.535000px;}
.y4e{bottom:381.675000px;}
.y10f{bottom:386.715000px;}
.yab{bottom:387.255000px;}
.y1bd{bottom:389.955000px;}
.y129{bottom:390.675000px;}
.y25{bottom:391.935000px;}
.y164{bottom:393.195000px;}
.y191{bottom:394.455000px;}
.y1a7{bottom:395.175000px;}
.y7b{bottom:396.795000px;}
.y4d{bottom:403.995000px;}
.y10e{bottom:405.975000px;}
.yaa{bottom:406.515000px;}
.y1bc{bottom:409.215000px;}
.y128{bottom:409.935000px;}
.y24{bottom:414.075000px;}
.y1a6{bottom:414.435000px;}
.y7a{bottom:416.235000px;}
.yef{bottom:421.455000px;}
.y11b{bottom:422.175000px;}
.y10d{bottom:425.415000px;}
.ya9{bottom:425.955000px;}
.y4c{bottom:426.135000px;}
.y1bb{bottom:428.655000px;}
.y127{bottom:429.375000px;}
.y190{bottom:432.975000px;}
.y1a5{bottom:433.695000px;}
.y79{bottom:435.495000px;}
.y23{bottom:436.395000px;}
.yee{bottom:440.715000px;}
.y10c{bottom:444.675000px;}
.ya8{bottom:445.215000px;}
.y1ba{bottom:447.915000px;}
.y4b{bottom:448.455000px;}
.y126{bottom:448.635000px;}
.y163{bottom:451.155000px;}
.y1a4{bottom:453.135000px;}
.y78{bottom:454.935000px;}
.y22{bottom:458.715000px;}
.y143{bottom:461.775000px;}
.y10b{bottom:464.115000px;}
.ya7{bottom:464.655000px;}
.y18f{bottom:467.175000px;}
.y125{bottom:468.075000px;}
.y4a{bottom:470.595000px;}
.y1a3{bottom:472.395000px;}
.y77{bottom:474.195000px;}
.y21{bottom:480.855000px;}
.y10a{bottom:483.375000px;}
.ya6{bottom:483.915000px;}
.y18e{bottom:486.615000px;}
.y124{bottom:487.335000px;}
.y162{bottom:489.855000px;}
.y1a2{bottom:492.735000px;}
.y49{bottom:492.915000px;}
.y76{bottom:493.635000px;}
.yed{bottom:498.855000px;}
.y15b{bottom:499.575000px;}
.y109{bottom:502.635000px;}
.ya5{bottom:503.175000px;}
.y18d{bottom:505.875000px;}
.y123{bottom:506.775000px;}
.ybd{bottom:507.675000px;}
.y1a1{bottom:511.995000px;}
.y75{bottom:512.895000px;}
.y48{bottom:515.235000px;}
.y20{bottom:518.115000px;}
.y108{bottom:522.075000px;}
.ya4{bottom:522.615000px;}
.y18c{bottom:525.315000px;}
.y122{bottom:526.035000px;}
.y174{bottom:527.655000px;}
.y1a0{bottom:531.435000px;}
.y74{bottom:532.335000px;}
.y47{bottom:537.375000px;}
.y1f{bottom:540.435000px;}
.y107{bottom:541.335000px;}
.ya3{bottom:541.875000px;}
.y1b9{bottom:543.315000px;}
.y18b{bottom:544.575000px;}
.y121{bottom:545.475000px;}
.y19f{bottom:550.695000px;}
.y73{bottom:551.595000px;}
.ye9{bottom:556.815000px;}
.y46{bottom:559.695000px;}
.y106{bottom:560.805000px;}
.ya2{bottom:561.345000px;}
.y1e{bottom:562.605000px;}
.y18a{bottom:564.045000px;}
.y120{bottom:564.735000px;}
.y161{bottom:567.285000px;}
.y72{bottom:571.065000px;}
.ya1{bottom:580.605000px;}
.y45{bottom:581.865000px;}
.y1b8{bottom:582.045000px;}
.y189{bottom:583.305000px;}
.y11f{bottom:584.175000px;}
.y1d{bottom:584.925000px;}
.y71{bottom:590.325000px;}
.y157{bottom:596.265000px;}
.y105{bottom:598.065000px;}
.ya0{bottom:600.045000px;}
.y1b7{bottom:601.305000px;}
.y11e{bottom:603.435000px;}
.y173{bottom:603.465000px;}
.y44{bottom:604.185000px;}
.y1c{bottom:607.065000px;}
.y70{bottom:609.765000px;}
.y104{bottom:614.625000px;}
.y9f{bottom:619.305000px;}
.y188{bottom:620.745000px;}
.y11d{bottom:622.875000px;}
.y172{bottom:622.905000px;}
.y43{bottom:626.325000px;}
.y6f{bottom:629.025000px;}
.y1b{bottom:629.385000px;}
.ye8{bottom:634.245000px;}
.y9e{bottom:638.745000px;}
.y187{bottom:640.005000px;}
.y11c{bottom:642.165000px;}
.y6e{bottom:648.285000px;}
.y42{bottom:648.645000px;}
.y19e{bottom:649.365000px;}
.y1a{bottom:651.705000px;}
.y9d{bottom:658.005000px;}
.y186{bottom:659.445000px;}
.y6d{bottom:667.725000px;}
.y19d{bottom:668.625000px;}
.y41{bottom:670.965000px;}
.y19{bottom:673.845000px;}
.y9c{bottom:677.445000px;}
.y185{bottom:678.705000px;}
.y6c{bottom:686.985000px;}
.y19c{bottom:688.065000px;}
.yfc{bottom:691.845000px;}
.ye6{bottom:692.385000px;}
.y40{bottom:693.105000px;}
.y18{bottom:696.165000px;}
.y9b{bottom:696.705000px;}
.y1b6{bottom:698.145000px;}
.y160{bottom:702.645000px;}
.y6b{bottom:706.425000px;}
.y19b{bottom:707.325000px;}
.y184{bottom:712.365000px;}
.y3f{bottom:715.425000px;}
.y9a{bottom:716.145000px;}
.y1b5{bottom:717.405000px;}
.y17{bottom:718.305000px;}
.y6a{bottom:725.685000px;}
.y142{bottom:732.705000px;}
.y99{bottom:735.405000px;}
.y1b4{bottom:736.845000px;}
.y19a{bottom:737.205000px;}
.y3e{bottom:737.565000px;}
.y16{bottom:740.625000px;}
.y15f{bottom:741.165000px;}
.y69{bottom:745.125000px;}
.y98{bottom:754.845000px;}
.y141{bottom:756.105000px;}
.y199{bottom:757.365000px;}
.y3d{bottom:759.885000px;}
.y15{bottom:762.945000px;}
.y68{bottom:764.385000px;}
.y151{bottom:770.505000px;}
.y97{bottom:774.105000px;}
.y140{bottom:775.365000px;}
.y3c{bottom:782.205000px;}
.y67{bottom:783.825000px;}
.y96{bottom:793.365000px;}
.y13f{bottom:794.805000px;}
.y14{bottom:796.965000px;}
.yba{bottom:799.485000px;}
.y66{bottom:803.085000px;}
.y3b{bottom:804.345000px;}
.ye3{bottom:808.305000px;}
.y183{bottom:809.025000px;}
.y95{bottom:812.850000px;}
.y13e{bottom:814.110000px;}
.y65{bottom:822.570000px;}
.y13{bottom:823.650000px;}
.y3a{bottom:826.710000px;}
.y94{bottom:832.110000px;}
.y13d{bottom:833.550000px;}
.y64{bottom:841.830000px;}
.y12{bottom:845.790000px;}
.y39{bottom:848.850000px;}
.y93{bottom:851.550000px;}
.y13c{bottom:852.810000px;}
.y63{bottom:861.270000px;}
.ydf{bottom:866.490000px;}
.y182{bottom:867.210000px;}
.y11{bottom:868.110000px;}
.y92{bottom:870.810000px;}
.y38{bottom:871.170000px;}
.y13b{bottom:872.250000px;}
.y62{bottom:880.530000px;}
.y91{bottom:890.250000px;}
.y13a{bottom:891.510000px;}
.y170{bottom:895.290000px;}
.y61{bottom:899.970000px;}
.y150{bottom:905.910000px;}
.y37{bottom:908.430000px;}
.y90{bottom:909.510000px;}
.y139{bottom:910.950000px;}
.y60{bottom:919.230000px;}
.y10{bottom:921.030000px;}
.yfa{bottom:924.810000px;}
.y198{bottom:925.170000px;}
.y8f{bottom:928.950000px;}
.y15e{bottom:930.210000px;}
.y5f{bottom:938.490000px;}
.y137{bottom:944.610000px;}
.y36{bottom:945.690000px;}
.y8e{bottom:948.210000px;}
.y16f{bottom:952.530000px;}
.yf{bottom:953.970000px;}
.y5e{bottom:957.930000px;}
.y15d{bottom:963.870000px;}
.y8d{bottom:967.650000px;}
.y35{bottom:967.830000px;}
.y16e{bottom:971.970000px;}
.y5d{bottom:977.190000px;}
.yda{bottom:982.590000px;}
.ye{bottom:986.910000px;}
.y5c{bottom:996.630000px;}
.y34{bottom:1000.410000px;}
.y8c{bottom:1006.350000px;}
.y7{bottom:1013.730000px;}
.y5b{bottom:1015.890000px;}
.y6{bottom:1021.650000px;}
.y197{bottom:1022.010000px;}
.y8b{bottom:1025.610000px;}
.y5a{bottom:1035.330000px;}
.y5{bottom:1040.910000px;}
.y33{bottom:1041.990000px;}
.y8a{bottom:1045.050000px;}
.y4{bottom:1060.350000px;}
.y32{bottom:1064.340000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y30{bottom:1121.220000px;}
.h3{height:15.240234px;}
.h17{height:19.245000px;}
.h1a{height:19.785000px;}
.h22{height:19.800000px;}
.h1d{height:38.685000px;}
.hb{height:38.722500px;}
.h4{height:40.843828px;}
.h32{height:45.345937px;}
.h7{height:46.986328px;}
.h1{height:56.084062px;}
.h2{height:57.636562px;}
.h15{height:57.945000px;}
.h20{height:57.952500px;}
.h30{height:57.990000px;}
.h16{height:58.125000px;}
.h13{height:58.140000px;}
.h9{height:58.154062px;}
.h18{height:58.161000px;}
.h11{height:58.162500px;}
.ha{height:68.084282px;}
.h8{height:71.324297px;}
.h1c{height:77.220000px;}
.h19{height:77.385000px;}
.h2d{height:77.421000px;}
.h14{height:77.430000px;}
.h6{height:86.255508px;}
.h2e{height:96.660000px;}
.hf{height:96.690000px;}
.h31{height:96.825000px;}
.h5{height:110.583984px;}
.h12{height:115.920000px;}
.h10{height:116.085000px;}
.h28{height:116.130000px;}
.h24{height:135.345000px;}
.he{height:135.352500px;}
.h29{height:135.360000px;}
.h25{height:135.382500px;}
.h21{height:135.390000px;}
.h26{height:174.240000px;}
.h2c{height:193.485000px;}
.h27{height:193.515000px;}
.h1e{height:212.782500px;}
.h1b{height:232.230000px;}
.hd{height:251.475000px;}
.h2f{height:270.742500px;}
.h23{height:270.930000px;}
.hc{height:290.190000px;}
.h2b{height:367.620000px;}
.h2a{height:638.550000px;}
.h1f{height:657.825000px;}
.h0{height:1188.000000px;}
.w11{width:115.549500px;}
.w12{width:129.621000px;}
.w13{width:129.636000px;}
.w1{width:133.009500px;}
.w4{width:135.529500px;}
.wc{width:141.469500px;}
.wa{width:143.449500px;}
.w15{width:144.349500px;}
.wf{width:145.069500px;}
.wd{width:153.735000px;}
.w2{width:156.075000px;}
.w9{width:157.129500px;}
.w6{width:157.489500px;}
.w7{width:157.515000px;}
.w14{width:289.275000px;}
.w8{width:349.275000px;}
.w3{width:375.195000px;}
.we{width:427.755000px;}
.w10{width:519.210000px;}
.w16{width:519.930000px;}
.wb{width:520.830000px;}
.w5{width:528.750000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:8.089500px;}
.xd{left:126.946500px;}
.x1{left:135.036000px;}
.x8{left:138.816000px;}
.x1a{left:145.656000px;}
.x1b{left:156.270000px;}
.xb{left:162.030000px;}
.x5{left:165.450000px;}
.x4{left:179.850000px;}
.xc{left:189.030000px;}
.x7{left:193.710000px;}
.x17{left:242.505000px;}
.x9{left:252.570000px;}
.xf{left:259.965000px;}
.x3{left:262.470000px;}
.x14{left:268.425000px;}
.x13{left:270.405000px;}
.x16{left:272.025000px;}
.x11{left:284.445000px;}
.x6{left:321.735000px;}
.x18{left:372.315000px;}
.xa{left:412.275000px;}
.x10{left:416.055000px;}
.x15{left:422.175000px;}
.x12{left:441.975000px;}
.x19{left:501.960000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.677333pt;}
.ls16{letter-spacing:-0.549333pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.297067pt;}
.lse{letter-spacing:-0.184533pt;}
.ls6{letter-spacing:-0.061333pt;}
.ls7{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.048640pt;}
.ls5{letter-spacing:0.079467pt;}
.ls14{letter-spacing:0.089600pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128640pt;}
.lsf{letter-spacing:0.138133pt;}
.ls4{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.291733pt;}
.ls10{letter-spacing:0.291840pt;}
.ls13{letter-spacing:1.126400pt;}
.ls2{letter-spacing:4.326400pt;}
.lsa{letter-spacing:4.966400pt;}
.lsb{letter-spacing:5.606400pt;}
.lsc{letter-spacing:34.831360pt;}
.wsa{word-spacing:-58.880000pt;}
.wsb{word-spacing:-13.245333pt;}
.ws8{word-spacing:-13.091733pt;}
.ws7{word-spacing:-13.048533pt;}
.ws9{word-spacing:-13.002240pt;}
.ws6{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws2{word-spacing:-12.892267pt;}
.ws5{word-spacing:-12.656533pt;}
.wsc{word-spacing:-12.585067pt;}
.ws1{word-spacing:-8.166400pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:2.708480pt;}
._23{margin-left:-7.242240pt;}
._b{margin-left:-6.144000pt;}
._a{margin-left:-5.222400pt;}
._26{margin-left:-4.306773pt;}
._24{margin-left:-2.826240pt;}
._25{margin-left:-1.928533pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:1.862400pt;}
._3{width:3.172267pt;}
._13{width:4.258773pt;}
._14{width:5.515307pt;}
._d{width:6.639360pt;}
._4{width:7.573120pt;}
._12{width:8.582400pt;}
._11{width:9.479680pt;}
._15{width:10.657280pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._c{width:14.471680pt;}
._1f{width:15.544320pt;}
._10{width:16.486400pt;}
._f{width:18.017280pt;}
._e{width:19.136000pt;}
._19{width:20.313600pt;}
._1c{width:21.363840pt;}
._1a{width:22.256640pt;}
._1b{width:23.198720pt;}
._21{width:24.140800pt;}
._18{width:25.082880pt;}
._20{width:26.142720pt;}
._1d{width:27.320320pt;}
._1e{width:28.785067pt;}
._16{width:29.969920pt;}
._17{width:31.273387pt;}
._22{width:32.536320pt;}
._28{width:34.032640pt;}
._27{width:35.009493pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._29{width:153.934507pt;}
._1{width:179.025067pt;}
.fs1{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:3.193333pt;}
.ybc{bottom:3.200000pt;}
.yd1{bottom:3.346667pt;}
.yd9{bottom:3.353333pt;}
.ycc{bottom:3.360000pt;}
.yec{bottom:3.386667pt;}
.ye5{bottom:3.400000pt;}
.yfb{bottom:3.680000pt;}
.y119{bottom:20.313333pt;}
.yde{bottom:20.320000pt;}
.yd0{bottom:20.466667pt;}
.yd8{bottom:20.473333pt;}
.ycb{bottom:20.480000pt;}
.yeb{bottom:20.506667pt;}
.ybb{bottom:20.520000pt;}
.y135{bottom:37.586667pt;}
.yd7{bottom:37.588000pt;}
.ydd{bottom:37.600000pt;}
.y17d{bottom:37.626667pt;}
.y156{bottom:37.640000pt;}
.ycf{bottom:37.746667pt;}
.yca{bottom:37.760000pt;}
.yea{bottom:37.786667pt;}
.ye4{bottom:37.800000pt;}
.y31{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.y118{bottom:54.708000pt;}
.ydc{bottom:54.720000pt;}
.y155{bottom:54.760000pt;}
.yf3{bottom:54.866667pt;}
.yd6{bottom:54.868000pt;}
.ye2{bottom:54.880000pt;}
.yc9{bottom:54.906667pt;}
.yc{bottom:65.472000pt;}
.y134{bottom:71.986667pt;}
.yd5{bottom:71.988000pt;}
.ye1{bottom:72.000000pt;}
.ydb{bottom:72.026667pt;}
.y154{bottom:72.040000pt;}
.y103{bottom:72.160000pt;}
.yc8{bottom:72.186667pt;}
.yb{bottom:79.232000pt;}
.y117{bottom:89.108000pt;}
.ye7{bottom:89.120000pt;}
.y153{bottom:89.160000pt;}
.y133{bottom:89.266667pt;}
.yd4{bottom:89.268000pt;}
.ye0{bottom:89.280000pt;}
.yc7{bottom:89.306667pt;}
.ya{bottom:92.992000pt;}
.y112{bottom:99.078667pt;}
.y136{bottom:100.198667pt;}
.yf9{bottom:102.112000pt;}
.y89{bottom:103.392000pt;}
.y14f{bottom:104.192000pt;}
.y132{bottom:106.386667pt;}
.yd3{bottom:106.388000pt;}
.y130{bottom:106.400000pt;}
.y138{bottom:106.426667pt;}
.y152{bottom:106.440000pt;}
.y15a{bottom:106.560000pt;}
.yc6{bottom:106.586667pt;}
.y102{bottom:106.600000pt;}
.y9{bottom:106.752000pt;}
.yd2{bottom:107.398667pt;}
.y181{bottom:107.878667pt;}
.y192{bottom:109.958667pt;}
.yb4{bottom:112.032000pt;}
.y59{bottom:113.472000pt;}
.y16d{bottom:117.952000pt;}
.yf8{bottom:119.232000pt;}
.y8{bottom:120.512000pt;}
.y88{bottom:120.672000pt;}
.y14e{bottom:121.472000pt;}
.y1ca{bottom:123.072000pt;}
.y116{bottom:123.508000pt;}
.y17c{bottom:123.546667pt;}
.y159{bottom:123.680000pt;}
.yc5{bottom:123.706667pt;}
.y101{bottom:123.720000pt;}
.yb3{bottom:129.152000pt;}
.y58{bottom:130.752000pt;}
.y1b3{bottom:136.186667pt;}
.yf7{bottom:136.506667pt;}
.y87{bottom:137.786667pt;}
.y14d{bottom:138.586667pt;}
.y1c9{bottom:140.186667pt;}
.y115{bottom:140.788000pt;}
.y180{bottom:140.800000pt;}
.y12f{bottom:140.826667pt;}
.y158{bottom:140.960000pt;}
.yc4{bottom:140.986667pt;}
.y100{bottom:141.000000pt;}
.yb2{bottom:146.426667pt;}
.y57{bottom:147.866667pt;}
.y2f{bottom:150.586667pt;}
.y16c{bottom:151.226667pt;}
.y131{bottom:151.720000pt;}
.y1b2{bottom:153.466667pt;}
.yf6{bottom:153.626667pt;}
.y86{bottom:155.066667pt;}
.y14c{bottom:155.866667pt;}
.y1c8{bottom:157.306667pt;}
.y114{bottom:157.908000pt;}
.y17b{bottom:157.946667pt;}
.y17f{bottom:158.080000pt;}
.yc3{bottom:158.106667pt;}
.yff{bottom:158.120000pt;}
.yb1{bottom:163.546667pt;}
.y2e{bottom:170.426667pt;}
.y1b1{bottom:170.586667pt;}
.yf5{bottom:170.906667pt;}
.y85{bottom:172.186667pt;}
.y14b{bottom:172.986667pt;}
.y1c7{bottom:174.586667pt;}
.y113{bottom:175.188000pt;}
.yce{bottom:175.226667pt;}
.y196{bottom:175.228000pt;}
.yc2{bottom:175.386667pt;}
.yfe{bottom:175.400000pt;}
.yb0{bottom:180.826667pt;}
.y56{bottom:180.986667pt;}
.y16b{bottom:184.346667pt;}
.y1b0{bottom:187.866667pt;}
.yf4{bottom:188.026667pt;}
.y84{bottom:189.306667pt;}
.y2d{bottom:190.106667pt;}
.y14a{bottom:190.266667pt;}
.y1c6{bottom:191.706667pt;}
.y17a{bottom:192.346667pt;}
.y195{bottom:192.348000pt;}
.yc1{bottom:192.506667pt;}
.yfd{bottom:192.520000pt;}
.yaf{bottom:197.946667pt;}
.y55{bottom:200.826667pt;}
.yf2{bottom:202.600000pt;}
.y1af{bottom:204.986667pt;}
.y83{bottom:206.586667pt;}
.y149{bottom:207.386667pt;}
.y1c5{bottom:208.986667pt;}
.yc0{bottom:209.626667pt;}
.y194{bottom:209.628000pt;}
.y2c{bottom:209.946667pt;}
.yae{bottom:215.226667pt;}
.y16a{bottom:217.466667pt;}
.y54{bottom:220.506667pt;}
.y1ae{bottom:222.266667pt;}
.y82{bottom:223.706667pt;}
.y148{bottom:224.666667pt;}
.y1c4{bottom:226.106667pt;}
.y179{bottom:226.746667pt;}
.y193{bottom:226.748000pt;}
.ybf{bottom:226.906667pt;}
.ycd{bottom:227.720000pt;}
.y171{bottom:228.200000pt;}
.y2b{bottom:229.626667pt;}
.yb9{bottom:232.346667pt;}
.y1ad{bottom:239.386667pt;}
.y53{bottom:240.346667pt;}
.y81{bottom:240.986667pt;}
.y147{bottom:241.786667pt;}
.y1c3{bottom:243.386667pt;}
.ybe{bottom:244.026667pt;}
.y2a{bottom:249.466667pt;}
.yb8{bottom:249.626667pt;}
.y169{bottom:250.746667pt;}
.y1ac{bottom:256.506667pt;}
.y80{bottom:258.106667pt;}
.y146{bottom:259.066667pt;}
.y52{bottom:260.186667pt;}
.y1c2{bottom:260.506667pt;}
.y178{bottom:261.186667pt;}
.y12e{bottom:261.306667pt;}
.yb7{bottom:266.746667pt;}
.y168{bottom:267.866667pt;}
.y29{bottom:269.146667pt;}
.yf1{bottom:271.400000pt;}
.y15c{bottom:272.040000pt;}
.y1ab{bottom:273.786667pt;}
.y7f{bottom:275.426667pt;}
.y145{bottom:276.226667pt;}
.y1c1{bottom:277.826667pt;}
.y12d{bottom:278.426667pt;}
.y177{bottom:278.466667pt;}
.y51{bottom:279.906667pt;}
.yb6{bottom:284.066667pt;}
.y167{bottom:285.186667pt;}
.y111{bottom:288.866667pt;}
.y28{bottom:289.026667pt;}
.y144{bottom:290.146667pt;}
.y1aa{bottom:290.946667pt;}
.y7e{bottom:292.546667pt;}
.y1c0{bottom:294.946667pt;}
.y176{bottom:295.586667pt;}
.y12c{bottom:295.706667pt;}
.y17e{bottom:297.026667pt;}
.y50{bottom:299.746667pt;}
.yb5{bottom:301.186667pt;}
.y166{bottom:302.306667pt;}
.y1a9{bottom:308.226667pt;}
.y27{bottom:308.866667pt;}
.yad{bottom:309.826667pt;}
.y1bf{bottom:312.226667pt;}
.y12b{bottom:312.826667pt;}
.y175{bottom:312.866667pt;}
.y7d{bottom:318.306667pt;}
.y4f{bottom:319.426667pt;}
.y165{bottom:319.586667pt;}
.yf0{bottom:323.106667pt;}
.y110{bottom:326.466667pt;}
.yac{bottom:326.946667pt;}
.y26{bottom:328.546667pt;}
.y1be{bottom:329.346667pt;}
.y12a{bottom:329.946667pt;}
.y1a8{bottom:333.986667pt;}
.y7c{bottom:335.586667pt;}
.y4e{bottom:339.266667pt;}
.y10f{bottom:343.746667pt;}
.yab{bottom:344.226667pt;}
.y1bd{bottom:346.626667pt;}
.y129{bottom:347.266667pt;}
.y25{bottom:348.386667pt;}
.y164{bottom:349.506667pt;}
.y191{bottom:350.626667pt;}
.y1a7{bottom:351.266667pt;}
.y7b{bottom:352.706667pt;}
.y4d{bottom:359.106667pt;}
.y10e{bottom:360.866667pt;}
.yaa{bottom:361.346667pt;}
.y1bc{bottom:363.746667pt;}
.y128{bottom:364.386667pt;}
.y24{bottom:368.066667pt;}
.y1a6{bottom:368.386667pt;}
.y7a{bottom:369.986667pt;}
.yef{bottom:374.626667pt;}
.y11b{bottom:375.266667pt;}
.y10d{bottom:378.146667pt;}
.ya9{bottom:378.626667pt;}
.y4c{bottom:378.786667pt;}
.y1bb{bottom:381.026667pt;}
.y127{bottom:381.666667pt;}
.y190{bottom:384.866667pt;}
.y1a5{bottom:385.506667pt;}
.y79{bottom:387.106667pt;}
.y23{bottom:387.906667pt;}
.yee{bottom:391.746667pt;}
.y10c{bottom:395.266667pt;}
.ya8{bottom:395.746667pt;}
.y1ba{bottom:398.146667pt;}
.y4b{bottom:398.626667pt;}
.y126{bottom:398.786667pt;}
.y163{bottom:401.026667pt;}
.y1a4{bottom:402.786667pt;}
.y78{bottom:404.386667pt;}
.y22{bottom:407.746667pt;}
.y143{bottom:410.466667pt;}
.y10b{bottom:412.546667pt;}
.ya7{bottom:413.026667pt;}
.y18f{bottom:415.266667pt;}
.y125{bottom:416.066667pt;}
.y4a{bottom:418.306667pt;}
.y1a3{bottom:419.906667pt;}
.y77{bottom:421.506667pt;}
.y21{bottom:427.426667pt;}
.y10a{bottom:429.666667pt;}
.ya6{bottom:430.146667pt;}
.y18e{bottom:432.546667pt;}
.y124{bottom:433.186667pt;}
.y162{bottom:435.426667pt;}
.y1a2{bottom:437.986667pt;}
.y49{bottom:438.146667pt;}
.y76{bottom:438.786667pt;}
.yed{bottom:443.426667pt;}
.y15b{bottom:444.066667pt;}
.y109{bottom:446.786667pt;}
.ya5{bottom:447.266667pt;}
.y18d{bottom:449.666667pt;}
.y123{bottom:450.466667pt;}
.ybd{bottom:451.266667pt;}
.y1a1{bottom:455.106667pt;}
.y75{bottom:455.906667pt;}
.y48{bottom:457.986667pt;}
.y20{bottom:460.546667pt;}
.y108{bottom:464.066667pt;}
.ya4{bottom:464.546667pt;}
.y18c{bottom:466.946667pt;}
.y122{bottom:467.586667pt;}
.y174{bottom:469.026667pt;}
.y1a0{bottom:472.386667pt;}
.y74{bottom:473.186667pt;}
.y47{bottom:477.666667pt;}
.y1f{bottom:480.386667pt;}
.y107{bottom:481.186667pt;}
.ya3{bottom:481.666667pt;}
.y1b9{bottom:482.946667pt;}
.y18b{bottom:484.066667pt;}
.y121{bottom:484.866667pt;}
.y19f{bottom:489.506667pt;}
.y73{bottom:490.306667pt;}
.ye9{bottom:494.946667pt;}
.y46{bottom:497.506667pt;}
.y106{bottom:498.493333pt;}
.ya2{bottom:498.973333pt;}
.y1e{bottom:500.093333pt;}
.y18a{bottom:501.373333pt;}
.y120{bottom:501.986667pt;}
.y161{bottom:504.253333pt;}
.y72{bottom:507.613333pt;}
.ya1{bottom:516.093333pt;}
.y45{bottom:517.213333pt;}
.y1b8{bottom:517.373333pt;}
.y189{bottom:518.493333pt;}
.y11f{bottom:519.266667pt;}
.y1d{bottom:519.933333pt;}
.y71{bottom:524.733333pt;}
.y157{bottom:530.013333pt;}
.y105{bottom:531.613333pt;}
.ya0{bottom:533.373333pt;}
.y1b7{bottom:534.493333pt;}
.y11e{bottom:536.386667pt;}
.y173{bottom:536.413333pt;}
.y44{bottom:537.053333pt;}
.y1c{bottom:539.613333pt;}
.y70{bottom:542.013333pt;}
.y104{bottom:546.333333pt;}
.y9f{bottom:550.493333pt;}
.y188{bottom:551.773333pt;}
.y11d{bottom:553.666667pt;}
.y172{bottom:553.693333pt;}
.y43{bottom:556.733333pt;}
.y6f{bottom:559.133333pt;}
.y1b{bottom:559.453333pt;}
.ye8{bottom:563.773333pt;}
.y9e{bottom:567.773333pt;}
.y187{bottom:568.893333pt;}
.y11c{bottom:570.813333pt;}
.y6e{bottom:576.253333pt;}
.y42{bottom:576.573333pt;}
.y19e{bottom:577.213333pt;}
.y1a{bottom:579.293333pt;}
.y9d{bottom:584.893333pt;}
.y186{bottom:586.173333pt;}
.y6d{bottom:593.533333pt;}
.y19d{bottom:594.333333pt;}
.y41{bottom:596.413333pt;}
.y19{bottom:598.973333pt;}
.y9c{bottom:602.173333pt;}
.y185{bottom:603.293333pt;}
.y6c{bottom:610.653333pt;}
.y19c{bottom:611.613333pt;}
.yfc{bottom:614.973333pt;}
.ye6{bottom:615.453333pt;}
.y40{bottom:616.093333pt;}
.y18{bottom:618.813333pt;}
.y9b{bottom:619.293333pt;}
.y1b6{bottom:620.573333pt;}
.y160{bottom:624.573333pt;}
.y6b{bottom:627.933333pt;}
.y19b{bottom:628.733333pt;}
.y184{bottom:633.213333pt;}
.y3f{bottom:635.933333pt;}
.y9a{bottom:636.573333pt;}
.y1b5{bottom:637.693333pt;}
.y17{bottom:638.493333pt;}
.y6a{bottom:645.053333pt;}
.y142{bottom:651.293333pt;}
.y99{bottom:653.693333pt;}
.y1b4{bottom:654.973333pt;}
.y19a{bottom:655.293333pt;}
.y3e{bottom:655.613333pt;}
.y16{bottom:658.333333pt;}
.y15f{bottom:658.813333pt;}
.y69{bottom:662.333333pt;}
.y98{bottom:670.973333pt;}
.y141{bottom:672.093333pt;}
.y199{bottom:673.213333pt;}
.y3d{bottom:675.453333pt;}
.y15{bottom:678.173333pt;}
.y68{bottom:679.453333pt;}
.y151{bottom:684.893333pt;}
.y97{bottom:688.093333pt;}
.y140{bottom:689.213333pt;}
.y3c{bottom:695.293333pt;}
.y67{bottom:696.733333pt;}
.y96{bottom:705.213333pt;}
.y13f{bottom:706.493333pt;}
.y14{bottom:708.413333pt;}
.yba{bottom:710.653333pt;}
.y66{bottom:713.853333pt;}
.y3b{bottom:714.973333pt;}
.ye3{bottom:718.493333pt;}
.y183{bottom:719.133333pt;}
.y95{bottom:722.533333pt;}
.y13e{bottom:723.653333pt;}
.y65{bottom:731.173333pt;}
.y13{bottom:732.133333pt;}
.y3a{bottom:734.853333pt;}
.y94{bottom:739.653333pt;}
.y13d{bottom:740.933333pt;}
.y64{bottom:748.293333pt;}
.y12{bottom:751.813333pt;}
.y39{bottom:754.533333pt;}
.y93{bottom:756.933333pt;}
.y13c{bottom:758.053333pt;}
.y63{bottom:765.573333pt;}
.ydf{bottom:770.213333pt;}
.y182{bottom:770.853333pt;}
.y11{bottom:771.653333pt;}
.y92{bottom:774.053333pt;}
.y38{bottom:774.373333pt;}
.y13b{bottom:775.333333pt;}
.y62{bottom:782.693333pt;}
.y91{bottom:791.333333pt;}
.y13a{bottom:792.453333pt;}
.y170{bottom:795.813333pt;}
.y61{bottom:799.973333pt;}
.y150{bottom:805.253333pt;}
.y37{bottom:807.493333pt;}
.y90{bottom:808.453333pt;}
.y139{bottom:809.733333pt;}
.y60{bottom:817.093333pt;}
.y10{bottom:818.693333pt;}
.yfa{bottom:822.053333pt;}
.y198{bottom:822.373333pt;}
.y8f{bottom:825.733333pt;}
.y15e{bottom:826.853333pt;}
.y5f{bottom:834.213333pt;}
.y137{bottom:839.653333pt;}
.y36{bottom:840.613333pt;}
.y8e{bottom:842.853333pt;}
.y16f{bottom:846.693333pt;}
.yf{bottom:847.973333pt;}
.y5e{bottom:851.493333pt;}
.y15d{bottom:856.773333pt;}
.y8d{bottom:860.133333pt;}
.y35{bottom:860.293333pt;}
.y16e{bottom:863.973333pt;}
.y5d{bottom:868.613333pt;}
.yda{bottom:873.413333pt;}
.ye{bottom:877.253333pt;}
.y5c{bottom:885.893333pt;}
.y34{bottom:889.253333pt;}
.y8c{bottom:894.533333pt;}
.y7{bottom:901.093333pt;}
.y5b{bottom:903.013333pt;}
.y6{bottom:908.133333pt;}
.y197{bottom:908.453333pt;}
.y8b{bottom:911.653333pt;}
.y5a{bottom:920.293333pt;}
.y5{bottom:925.253333pt;}
.y33{bottom:926.213333pt;}
.y8a{bottom:928.933333pt;}
.y4{bottom:942.533333pt;}
.y32{bottom:946.080000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y30{bottom:996.640000pt;}
.h3{height:13.546875pt;}
.h17{height:17.106667pt;}
.h1a{height:17.586667pt;}
.h22{height:17.600000pt;}
.h1d{height:34.386667pt;}
.hb{height:34.420000pt;}
.h4{height:36.305625pt;}
.h32{height:40.307500pt;}
.h7{height:41.765625pt;}
.h1{height:49.852500pt;}
.h2{height:51.232500pt;}
.h15{height:51.506667pt;}
.h20{height:51.513333pt;}
.h30{height:51.546667pt;}
.h16{height:51.666667pt;}
.h13{height:51.680000pt;}
.h9{height:51.692500pt;}
.h18{height:51.698667pt;}
.h11{height:51.700000pt;}
.ha{height:60.519362pt;}
.h8{height:63.399375pt;}
.h1c{height:68.640000pt;}
.h19{height:68.786667pt;}
.h2d{height:68.818667pt;}
.h14{height:68.826667pt;}
.h6{height:76.671562pt;}
.h2e{height:85.920000pt;}
.hf{height:85.946667pt;}
.h31{height:86.066667pt;}
.h5{height:98.296875pt;}
.h12{height:103.040000pt;}
.h10{height:103.186667pt;}
.h28{height:103.226667pt;}
.h24{height:120.306667pt;}
.he{height:120.313333pt;}
.h29{height:120.320000pt;}
.h25{height:120.340000pt;}
.h21{height:120.346667pt;}
.h26{height:154.880000pt;}
.h2c{height:171.986667pt;}
.h27{height:172.013333pt;}
.h1e{height:189.140000pt;}
.h1b{height:206.426667pt;}
.hd{height:223.533333pt;}
.h2f{height:240.660000pt;}
.h23{height:240.826667pt;}
.hc{height:257.946667pt;}
.h2b{height:326.773333pt;}
.h2a{height:567.600000pt;}
.h1f{height:584.733333pt;}
.h0{height:1056.000000pt;}
.w11{width:102.710667pt;}
.w12{width:115.218667pt;}
.w13{width:115.232000pt;}
.w1{width:118.230667pt;}
.w4{width:120.470667pt;}
.wc{width:125.750667pt;}
.wa{width:127.510667pt;}
.w15{width:128.310667pt;}
.wf{width:128.950667pt;}
.wd{width:136.653333pt;}
.w2{width:138.733333pt;}
.w9{width:139.670667pt;}
.w6{width:139.990667pt;}
.w7{width:140.013333pt;}
.w14{width:257.133333pt;}
.w8{width:310.466667pt;}
.w3{width:333.506667pt;}
.we{width:380.226667pt;}
.w10{width:461.520000pt;}
.w16{width:462.160000pt;}
.wb{width:462.960000pt;}
.w5{width:470.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.190667pt;}
.xd{left:112.841333pt;}
.x1{left:120.032000pt;}
.x8{left:123.392000pt;}
.x1a{left:129.472000pt;}
.x1b{left:138.906667pt;}
.xb{left:144.026667pt;}
.x5{left:147.066667pt;}
.x4{left:159.866667pt;}
.xc{left:168.026667pt;}
.x7{left:172.186667pt;}
.x17{left:215.560000pt;}
.x9{left:224.506667pt;}
.xf{left:231.080000pt;}
.x3{left:233.306667pt;}
.x14{left:238.600000pt;}
.x13{left:240.360000pt;}
.x16{left:241.800000pt;}
.x11{left:252.840000pt;}
.x6{left:285.986667pt;}
.x18{left:330.946667pt;}
.xa{left:366.466667pt;}
.x10{left:369.826667pt;}
.x15{left:375.266667pt;}
.x12{left:392.866667pt;}
.x19{left:446.186667pt;}
.x2{left:696.133333pt;}
}




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