
    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_d9dbb6bd8d9d3193929bab60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f4d4b38e3b3980486533ce94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_b2e97e78392242657557649b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_d9889840e1a7301071c13526.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_f147f462de36c044cbf60786.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_4591692704d6b51200760d3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_30fff4e4d41754c051c353cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_5374ef0c2ce5681da8ffb157.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f4d1f308498062b35ab5946a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_e07e4813aa92d7b9e07ff293.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b69ed0e33a1c78d9718b842a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fe6676a5322abf6ea1b96d06.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls17{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.127200px;}
.lsd{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.091200px;}
.ls18{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.052980px;}
.lsf{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.119520px;}
.ls12{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.132600px;}
.ls0{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.ls16{letter-spacing:14.346720px;}
.ls13{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws12{word-spacing:-54.144000px;}
.ws10{word-spacing:-54.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.252000px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.447440px;}
.wsd{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.wsf{word-spacing:289.422000px;}
.ws11{word-spacing:331.254000px;}
._13{margin-left:-7.215360px;}
._5{margin-left:-5.497920px;}
._0{margin-left:-4.302720px;}
._4{margin-left:-2.629440px;}
._2{margin-left:-1.380960px;}
._1{width:1.038000px;}
._3{width:2.825040px;}
._6{width:3.829680px;}
._f{width:5.205600px;}
._7{width:6.252720px;}
._c{width:7.432320px;}
._8{width:9.133200px;}
._a{width:10.615200px;}
._9{width:12.430080px;}
._12{width:13.902000px;}
._d{width:16.314480px;}
._b{width:17.629200px;}
._e{width:18.720480px;}
._10{width:20.198880px;}
._17{width:23.185440px;}
._16{width:25.518240px;}
._15{width:26.532720px;}
._11{width:29.328720px;}
._14{width:31.360800px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:0.180000px;}
.y15c{bottom:2.520000px;}
.y3f{bottom:3.240000px;}
.yde{bottom:3.285000px;}
.yc6{bottom:3.420000px;}
.ybe{bottom:3.600000px;}
.ya2{bottom:3.780000px;}
.ya5{bottom:3.810000px;}
.ya0{bottom:3.960000px;}
.y114{bottom:4.140000px;}
.yae{bottom:4.500000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.yfa{bottom:9.720000px;}
.yc1{bottom:11.880000px;}
.yc4{bottom:12.060000px;}
.ybc{bottom:12.240000px;}
.y1a{bottom:12.420000px;}
.yca{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y3{bottom:18.360000px;}
.ydc{bottom:20.385000px;}
.yc2{bottom:20.514000px;}
.y3e{bottom:20.520000px;}
.yc5{bottom:20.700000px;}
.ybd{bottom:20.880000px;}
.y15f{bottom:21.060000px;}
.y5{bottom:21.240000px;}
.yf6{bottom:21.780000px;}
.y158{bottom:21.855000px;}
.y42{bottom:27.540000px;}
.y17{bottom:29.385000px;}
.yc9{bottom:29.880000px;}
.yb{bottom:30.240000px;}
.ydd{bottom:37.665000px;}
.y3d{bottom:37.800000px;}
.y4{bottom:38.016000px;}
.y2{bottom:39.276000px;}
.y41{bottom:42.120000px;}
.y16{bottom:42.165000px;}
.y1{bottom:43.740000px;}
.yf4{bottom:44.025000px;}
.ya{bottom:46.620000px;}
.y3c{bottom:55.080000px;}
.yf3{bottom:60.510000px;}
.y156{bottom:60.585000px;}
.y11e{bottom:61.590000px;}
.y15{bottom:62.505000px;}
.y3b{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y14{bottom:75.465000px;}
.y125{bottom:78.045000px;}
.yea{bottom:78.090000px;}
.y14e{bottom:78.120000px;}
.y11f{bottom:85.785000px;}
.y3a{bottom:89.640000px;}
.y8{bottom:93.090000px;}
.y13{bottom:93.105000px;}
.yeb{bottom:100.830000px;}
.y14f{bottom:102.240000px;}
.y157{bottom:106.380000px;}
.y39{bottom:106.740000px;}
.y120{bottom:109.980000px;}
.y7{bottom:111.270000px;}
.y86{bottom:111.996000px;}
.y12{bottom:112.905000px;}
.yf5{bottom:114.660000px;}
.y4e{bottom:120.636000px;}
.yec{bottom:123.630000px;}
.y38{bottom:124.020000px;}
.y18e{bottom:125.136000px;}
.y150{bottom:126.390000px;}
.ye8{bottom:126.576000px;}
.y85{bottom:129.276000px;}
.yc0{bottom:131.976000px;}
.y121{bottom:134.130000px;}
.y4d{bottom:137.736000px;}
.y11{bottom:138.645000px;}
.y163{bottom:140.076000px;}
.y37{bottom:141.300000px;}
.ye7{bottom:143.856000px;}
.y18d{bottom:145.116000px;}
.yed{bottom:146.370000px;}
.y84{bottom:146.556000px;}
.y151{bottom:150.510000px;}
.y14c{bottom:155.010000px;}
.y11c{bottom:155.550000px;}
.y162{bottom:157.350000px;}
.y122{bottom:158.325000px;}
.y36{bottom:158.580000px;}
.ye6{bottom:161.130000px;}
.y10{bottom:162.945000px;}
.y83{bottom:163.830000px;}
.y18c{bottom:166.350000px;}
.y4c{bottom:167.070000px;}
.ybf{bottom:167.250000px;}
.yee{bottom:169.125000px;}
.y11b{bottom:172.830000px;}
.y152{bottom:174.630000px;}
.y35{bottom:175.860000px;}
.ye5{bottom:178.230000px;}
.y82{bottom:181.110000px;}
.y123{bottom:182.520000px;}
.y14b{bottom:184.170000px;}
.y4b{bottom:184.350000px;}
.ybb{bottom:185.250000px;}
.y18b{bottom:186.330000px;}
.y11a{bottom:190.110000px;}
.yef{bottom:191.910000px;}
.y34{bottom:192.960000px;}
.ye4{bottom:195.510000px;}
.y81{bottom:198.210000px;}
.y153{bottom:198.750000px;}
.y14a{bottom:201.450000px;}
.y4a{bottom:201.630000px;}
.y27{bottom:202.710000px;}
.y18a{bottom:203.610000px;}
.y124{bottom:206.715000px;}
.y161{bottom:209.010000px;}
.y33{bottom:210.270000px;}
.ye3{bottom:212.790000px;}
.yf0{bottom:214.665000px;}
.y80{bottom:215.490000px;}
.y26{bottom:218.010000px;}
.y49{bottom:218.730000px;}
.y189{bottom:220.890000px;}
.yba{bottom:221.070000px;}
.y154{bottom:222.870000px;}
.y119{bottom:223.410000px;}
.y160{bottom:226.290000px;}
.y32{bottom:227.550000px;}
.y149{bottom:230.610000px;}
.ye2{bottom:231.330000px;}
.y7f{bottom:232.770000px;}
.y25{bottom:235.470000px;}
.y48{bottom:236.010000px;}
.yf1{bottom:237.450000px;}
.y188{bottom:238.170000px;}
.y118{bottom:240.870000px;}
.y15d{bottom:241.050000px;}
.yb9{bottom:242.310000px;}
.y31{bottom:244.830000px;}
.y155{bottom:246.990000px;}
.ye1{bottom:247.710000px;}
.y148{bottom:247.890000px;}
.y24{bottom:252.750000px;}
.y47{bottom:253.290000px;}
.y187{bottom:255.450000px;}
.yf2{bottom:260.205000px;}
.y117{bottom:261.390000px;}
.y7e{bottom:261.930000px;}
.y30{bottom:262.110000px;}
.y147{bottom:266.430000px;}
.y23{bottom:270.030000px;}
.y46{bottom:270.570000px;}
.yb8{bottom:271.650000px;}
.y186{bottom:272.730000px;}
.y7d{bottom:279.210000px;}
.y2f{bottom:279.390000px;}
.y116{bottom:281.010000px;}
.ye0{bottom:282.990000px;}
.y22{bottom:287.850000px;}
.yb7{bottom:288.930000px;}
.y185{bottom:289.830000px;}
.y2e{bottom:296.490000px;}
.y146{bottom:297.390000px;}
.ydf{bottom:300.990000px;}
.y115{bottom:301.710000px;}
.y45{bottom:305.130000px;}
.y21{bottom:305.310000px;}
.yb6{bottom:306.210000px;}
.y184{bottom:307.110000px;}
.y2d{bottom:313.770000px;}
.y145{bottom:314.670000px;}
.y7c{bottom:314.850000px;}
.y113{bottom:322.230000px;}
.y20{bottom:322.590000px;}
.y44{bottom:322.950000px;}
.yb5{bottom:323.310000px;}
.y183{bottom:324.390000px;}
.y2c{bottom:331.050000px;}
.y144{bottom:331.770000px;}
.y7b{bottom:333.210000px;}
.ydb{bottom:336.270000px;}
.y1f{bottom:340.050000px;}
.yb4{bottom:340.635000px;}
.y43{bottom:341.355000px;}
.y182{bottom:341.715000px;}
.y112{bottom:345.135000px;}
.y2b{bottom:348.330000px;}
.y7a{bottom:351.615000px;}
.y40{bottom:355.755000px;}
.y1e{bottom:357.690000px;}
.yb3{bottom:357.915000px;}
.y181{bottom:358.995000px;}
.y143{bottom:361.155000px;}
.y2a{bottom:365.610000px;}
.y79{bottom:368.715000px;}
.y111{bottom:374.295000px;}
.yb2{bottom:375.195000px;}
.y180{bottom:376.275000px;}
.y142{bottom:378.435000px;}
.y29{bottom:382.890000px;}
.y1d{bottom:385.050000px;}
.y78{bottom:386.715000px;}
.yda{bottom:388.695000px;}
.y110{bottom:391.575000px;}
.yb1{bottom:392.475000px;}
.y17f{bottom:393.375000px;}
.y141{bottom:395.715000px;}
.y28{bottom:399.990000px;}
.y1c{bottom:402.690000px;}
.y77{bottom:406.695000px;}
.y1b{bottom:409.215000px;}
.yb0{bottom:409.575000px;}
.y17e{bottom:410.655000px;}
.y10f{bottom:420.915000px;}
.y140{bottom:424.875000px;}
.y76{bottom:425.055000px;}
.yaf{bottom:428.115000px;}
.y10e{bottom:438.195000px;}
.y17d{bottom:439.995000px;}
.yd9{bottom:441.975000px;}
.y13f{bottom:442.155000px;}
.y75{bottom:443.415000px;}
.yad{bottom:444.495000px;}
.y15b{bottom:452.235000px;}
.y10d{bottom:455.295000px;}
.y17c{bottom:457.275000px;}
.y13e{bottom:459.435000px;}
.y74{bottom:461.775000px;}
.yac{bottom:465.015000px;}
.y10c{bottom:472.575000px;}
.y17b{bottom:474.375000px;}
.y13d{bottom:476.715000px;}
.yd8{bottom:477.255000px;}
.y73{bottom:479.955000px;}
.yab{bottom:484.455000px;}
.y10b{bottom:489.855000px;}
.y13c{bottom:493.815000px;}
.y72{bottom:497.235000px;}
.yaa{bottom:503.715000px;}
.y10a{bottom:507.135000px;}
.y13b{bottom:511.095000px;}
.yd7{bottom:512.535000px;}
.y71{bottom:514.515000px;}
.y17a{bottom:520.995000px;}
.ya9{bottom:523.155000px;}
.y109{bottom:524.415000px;}
.y13a{bottom:529.635000px;}
.y70{bottom:532.875000px;}
.yd6{bottom:533.775000px;}
.y179{bottom:538.275000px;}
.y108{bottom:541.695000px;}
.ya8{bottom:542.415000px;}
.y139{bottom:546.015000px;}
.y6f{bottom:551.235000px;}
.y178{bottom:555.375000px;}
.y107{bottom:555.735000px;}
.y11d{bottom:555.840000px;}
.ya7{bottom:561.855000px;}
.yd5{bottom:562.935000px;}
.y138{bottom:564.015000px;}
.y6e{bottom:569.595000px;}
.yd4{bottom:580.215000px;}
.ya6{bottom:581.115000px;}
.y137{bottom:582.015000px;}
.y177{bottom:584.715000px;}
.y6d{bottom:587.775000px;}
.y1ac{bottom:594.075000px;}
.yd3{bottom:597.495000px;}
.y136{bottom:600.015000px;}
.ya4{bottom:600.555000px;}
.y176{bottom:601.995000px;}
.y6c{bottom:605.805000px;}
.y1ab{bottom:611.565000px;}
.yd2{bottom:614.805000px;}
.y135{bottom:618.045000px;}
.y175{bottom:619.125000px;}
.ya3{bottom:619.845000px;}
.y6b{bottom:625.785000px;}
.y1aa{bottom:629.025000px;}
.yd1{bottom:631.905000px;}
.y134{bottom:636.045000px;}
.ya1{bottom:639.285000px;}
.y6a{bottom:643.065000px;}
.y1a9{bottom:646.305000px;}
.y174{bottom:648.465000px;}
.yd0{bottom:649.185000px;}
.y133{bottom:654.045000px;}
.y9f{bottom:658.545000px;}
.y69{bottom:660.345000px;}
.y1a8{bottom:663.405000px;}
.y173{bottom:665.745000px;}
.ycf{bottom:666.465000px;}
.y132{bottom:672.045000px;}
.y68{bottom:678.345000px;}
.y1a7{bottom:680.685000px;}
.y9e{bottom:681.225000px;}
.y172{bottom:683.025000px;}
.yce{bottom:683.745000px;}
.y131{bottom:693.285000px;}
.y1a6{bottom:697.965000px;}
.y15a{bottom:698.145000px;}
.y67{bottom:698.325000px;}
.ycd{bottom:702.285000px;}
.y171{bottom:712.185000px;}
.y1a5{bottom:715.245000px;}
.y66{bottom:715.425000px;}
.y9d{bottom:715.605000px;}
.ycc{bottom:721.185000px;}
.y130{bottom:722.445000px;}
.y170{bottom:729.465000px;}
.y1a4{bottom:732.525000px;}
.y65{bottom:732.705000px;}
.y9c{bottom:732.885000px;}
.y12f{bottom:739.725000px;}
.y159{bottom:746.565000px;}
.y16f{bottom:746.745000px;}
.y1a3{bottom:749.625000px;}
.y64{bottom:749.985000px;}
.y9b{bottom:750.165000px;}
.ycb{bottom:750.525000px;}
.ye9{bottom:751.140000px;}
.y12e{bottom:757.005000px;}
.y1a2{bottom:766.905000px;}
.y63{bottom:767.265000px;}
.y9a{bottom:767.445000px;}
.y12d{bottom:774.285000px;}
.y16e{bottom:775.905000px;}
.y1a1{bottom:784.185000px;}
.y99{bottom:784.725000px;}
.y62{bottom:785.265000px;}
.y12c{bottom:791.565000px;}
.y16d{bottom:793.185000px;}
.y106{bottom:800.745000px;}
.y1a0{bottom:801.465000px;}
.y98{bottom:801.825000px;}
.y61{bottom:805.245000px;}
.y12b{bottom:808.845000px;}
.y105{bottom:815.505000px;}
.y19f{bottom:818.745000px;}
.y97{bottom:819.105000px;}
.y16c{bottom:822.345000px;}
.y60{bottom:822.525000px;}
.y19{bottom:823.245000px;}
.y12a{bottom:825.945000px;}
.y104{bottom:834.585000px;}
.y19e{bottom:836.025000px;}
.y96{bottom:836.385000px;}
.y5f{bottom:839.625000px;}
.y129{bottom:843.225000px;}
.yf{bottom:852.765000px;}
.y19d{bottom:853.125000px;}
.y95{bottom:854.385000px;}
.y5e{bottom:856.905000px;}
.y128{bottom:861.765000px;}
.y19c{bottom:870.405000px;}
.y103{bottom:871.890000px;}
.y5d{bottom:874.230000px;}
.y94{bottom:874.410000px;}
.y127{bottom:880.710000px;}
.y19b{bottom:887.730000px;}
.y102{bottom:889.890000px;}
.y5c{bottom:891.510000px;}
.y93{bottom:891.690000px;}
.y16b{bottom:903.390000px;}
.y19a{bottom:905.010000px;}
.y101{bottom:907.890000px;}
.y5b{bottom:908.790000px;}
.y126{bottom:910.050000px;}
.y14d{bottom:910.440000px;}
.y16a{bottom:920.670000px;}
.y199{bottom:922.290000px;}
.y92{bottom:926.790000px;}
.y100{bottom:926.970000px;}
.y5a{bottom:937.950000px;}
.y198{bottom:939.570000px;}
.yff{bottom:945.150000px;}
.y91{bottom:946.770000px;}
.y59{bottom:955.230000px;}
.y197{bottom:956.670000px;}
.yfe{bottom:963.150000px;}
.y90{bottom:965.130000px;}
.y58{bottom:972.510000px;}
.y196{bottom:973.950000px;}
.yfd{bottom:981.150000px;}
.y8f{bottom:983.490000px;}
.y169{bottom:984.390000px;}
.y57{bottom:989.790000px;}
.y195{bottom:991.230000px;}
.yfc{bottom:1000.230000px;}
.y168{bottom:1001.670000px;}
.y8e{bottom:1001.850000px;}
.y194{bottom:1008.510000px;}
.yfb{bottom:1018.410000px;}
.y56{bottom:1018.950000px;}
.y8d{bottom:1019.850000px;}
.y193{bottom:1025.790000px;}
.yd{bottom:1030.830000px;}
.y55{bottom:1036.230000px;}
.yf9{bottom:1036.410000px;}
.y8c{bottom:1039.830000px;}
.y192{bottom:1042.890000px;}
.y167{bottom:1048.110000px;}
.yc8{bottom:1052.610000px;}
.y54{bottom:1053.510000px;}
.y6{bottom:1056.210000px;}
.y8b{bottom:1056.930000px;}
.y191{bottom:1060.170000px;}
.y166{bottom:1065.390000px;}
.yf8{bottom:1070.790000px;}
.y8a{bottom:1074.210000px;}
.y190{bottom:1077.450000px;}
.y53{bottom:1082.670000px;}
.y89{bottom:1091.490000px;}
.y18f{bottom:1094.730000px;}
.y52{bottom:1099.950000px;}
.yc7{bottom:1106.610000px;}
.y88{bottom:1109.850000px;}
.y165{bottom:1112.010000px;}
.y51{bottom:1117.230000px;}
.y87{bottom:1128.210000px;}
.yf7{bottom:1129.110000px;}
.y164{bottom:1129.290000px;}
.yc3{bottom:1141.920000px;}
.y50{bottom:1146.420000px;}
.y4f{bottom:1163.700000px;}
.h28{height:17.100000px;}
.h23{height:17.280000px;}
.h36{height:17.316000px;}
.h2f{height:17.460000px;}
.h31{height:18.216000px;}
.h30{height:18.360000px;}
.h1f{height:18.540000px;}
.h20{height:18.576000px;}
.h34{height:18.900000px;}
.h32{height:18.936000px;}
.h21{height:19.800000px;}
.h33{height:19.980000px;}
.ha{height:25.020000px;}
.he{height:28.968750px;}
.h10{height:29.520000px;}
.h2e{height:30.240000px;}
.h29{height:34.380000px;}
.h26{height:34.416000px;}
.h25{height:34.560000px;}
.h24{height:35.100000px;}
.h7{height:36.180000px;}
.h17{height:38.818125px;}
.h19{height:41.726953px;}
.h18{height:42.164648px;}
.hf{height:43.453125px;}
.h1c{height:43.506914px;}
.hc{height:44.002969px;}
.h9{height:44.820000px;}
.h15{height:45.549492px;}
.h14{height:45.770625px;}
.h13{height:47.980898px;}
.h1b{height:48.088125px;}
.h1e{height:50.273438px;}
.h1d{height:50.800781px;}
.h2a{height:51.696000px;}
.h27{height:53.280000px;}
.h1a{height:53.460000px;}
.h2{height:53.676000px;}
.h2c{height:53.709961px;}
.h2d{height:53.853187px;}
.h8{height:54.000000px;}
.h16{height:59.439023px;}
.h3{height:61.189805px;}
.hd{height:63.180000px;}
.h22{height:65.884219px;}
.h4{height:67.824844px;}
.h5{height:71.613281px;}
.h11{height:73.722656px;}
.h6{height:121.536000px;}
.hb{height:178.050000px;}
.h39{height:210.450000px;}
.h35{height:227.160000px;}
.h38{height:241.950000px;}
.h37{height:267.300000px;}
.h2b{height:280.620000px;}
.h12{height:414.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:155.370000px;}
.wa{width:185.970000px;}
.wb{width:186.150000px;}
.w10{width:201.630000px;}
.wf{width:213.870000px;}
.w8{width:220.935000px;}
.w12{width:317.010000px;}
.w13{width:324.435000px;}
.we{width:329.655000px;}
.wc{width:381.060000px;}
.w11{width:390.960000px;}
.wd{width:422.100000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x12{left:12.600000px;}
.x27{left:32.865000px;}
.xc{left:37.836000px;}
.x1e{left:40.575000px;}
.x2d{left:47.490000px;}
.x1f{left:68.475000px;}
.x1{left:72.360000px;}
.x20{left:74.625000px;}
.x4{left:80.999987px;}
.x28{left:83.310000px;}
.x5{left:98.130000px;}
.xd{left:99.930000px;}
.x13{left:108.035987px;}
.x21{left:112.035000px;}
.x2e{left:113.115000px;}
.x22{left:117.930000px;}
.x3c{left:125.496000px;}
.x2f{left:126.690000px;}
.x35{left:130.470000px;}
.x14{left:135.035987px;}
.x36{left:150.270000px;}
.x23{left:155.550000px;}
.x1b{left:161.849987px;}
.xf{left:169.950000px;}
.x37{left:196.740000px;}
.x24{left:199.110000px;}
.x25{left:205.050000px;}
.x2b{left:208.649987px;}
.x38{left:211.860000px;}
.x10{left:215.175000px;}
.x6{left:228.270000px;}
.x2c{left:234.900000px;}
.x26{left:237.705000px;}
.x34{left:250.560000px;}
.x39{left:253.620000px;}
.x31{left:255.269987px;}
.x1d{left:256.320000px;}
.x17{left:260.130000px;}
.x16{left:262.289987px;}
.x19{left:267.509987px;}
.x3d{left:281.379000px;}
.x9{left:285.015000px;}
.x2a{left:290.234987px;}
.x11{left:293.835000px;}
.x1c{left:297.974987px;}
.x3f{left:299.775000px;}
.x40{left:309.099000px;}
.x41{left:316.695000px;}
.x7{left:344.775000px;}
.xe{left:361.515000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x32{left:403.635000px;}
.x3b{left:417.134987px;}
.x3e{left:443.235000px;}
.x15{left:446.474987px;}
.xa{left:452.280000px;}
.x33{left:618.225000px;}
.x18{left:633.705000px;}
.x1a{left:638.924987px;}
.x30{left:644.504987px;}
.x29{left:660.209987px;}
.x3a{left:707.549987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.113067pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.081067pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047093pt;}
.lsf{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.106240pt;}
.ls12{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.117867pt;}
.ls0{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.ls16{letter-spacing:12.752640pt;}
.ls13{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws12{word-spacing:-48.128000pt;}
.ws10{word-spacing:-48.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.557333pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.953280pt;}
.wsd{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.wsf{word-spacing:257.264000pt;}
.ws11{word-spacing:294.448000pt;}
._13{margin-left:-6.413653pt;}
._5{margin-left:-4.887040pt;}
._0{margin-left:-3.824640pt;}
._4{margin-left:-2.337280pt;}
._2{margin-left:-1.227520pt;}
._1{width:0.922667pt;}
._3{width:2.511147pt;}
._6{width:3.404160pt;}
._f{width:4.627200pt;}
._7{width:5.557973pt;}
._c{width:6.606507pt;}
._8{width:8.118400pt;}
._a{width:9.435733pt;}
._9{width:11.048960pt;}
._12{width:12.357333pt;}
._d{width:14.501760pt;}
._b{width:15.670400pt;}
._e{width:16.640427pt;}
._10{width:17.954560pt;}
._17{width:20.609280pt;}
._16{width:22.682880pt;}
._15{width:23.584640pt;}
._11{width:26.069973pt;}
._14{width:27.876267pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:0.160000pt;}
.y15c{bottom:2.240000pt;}
.y3f{bottom:2.880000pt;}
.yde{bottom:2.920000pt;}
.yc6{bottom:3.040000pt;}
.ybe{bottom:3.200000pt;}
.ya2{bottom:3.360000pt;}
.ya5{bottom:3.386667pt;}
.ya0{bottom:3.520000pt;}
.y114{bottom:3.680000pt;}
.yae{bottom:4.000000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.yfa{bottom:8.640000pt;}
.yc1{bottom:10.560000pt;}
.yc4{bottom:10.720000pt;}
.ybc{bottom:10.880000pt;}
.y1a{bottom:11.040000pt;}
.yca{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y3{bottom:16.320000pt;}
.ydc{bottom:18.120000pt;}
.yc2{bottom:18.234667pt;}
.y3e{bottom:18.240000pt;}
.yc5{bottom:18.400000pt;}
.ybd{bottom:18.560000pt;}
.y15f{bottom:18.720000pt;}
.y5{bottom:18.880000pt;}
.yf6{bottom:19.360000pt;}
.y158{bottom:19.426667pt;}
.y42{bottom:24.480000pt;}
.y17{bottom:26.120000pt;}
.yc9{bottom:26.560000pt;}
.yb{bottom:26.880000pt;}
.ydd{bottom:33.480000pt;}
.y3d{bottom:33.600000pt;}
.y4{bottom:33.792000pt;}
.y2{bottom:34.912000pt;}
.y41{bottom:37.440000pt;}
.y16{bottom:37.480000pt;}
.y1{bottom:38.880000pt;}
.yf4{bottom:39.133333pt;}
.ya{bottom:41.440000pt;}
.y3c{bottom:48.960000pt;}
.yf3{bottom:53.786667pt;}
.y156{bottom:53.853333pt;}
.y11e{bottom:54.746667pt;}
.y15{bottom:55.560000pt;}
.y3b{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:67.080000pt;}
.y125{bottom:69.373333pt;}
.yea{bottom:69.413333pt;}
.y14e{bottom:69.440000pt;}
.y11f{bottom:76.253333pt;}
.y3a{bottom:79.680000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:82.760000pt;}
.yeb{bottom:89.626667pt;}
.y14f{bottom:90.880000pt;}
.y157{bottom:94.560000pt;}
.y39{bottom:94.880000pt;}
.y120{bottom:97.760000pt;}
.y7{bottom:98.906667pt;}
.y86{bottom:99.552000pt;}
.y12{bottom:100.360000pt;}
.yf5{bottom:101.920000pt;}
.y4e{bottom:107.232000pt;}
.yec{bottom:109.893333pt;}
.y38{bottom:110.240000pt;}
.y18e{bottom:111.232000pt;}
.y150{bottom:112.346667pt;}
.ye8{bottom:112.512000pt;}
.y85{bottom:114.912000pt;}
.yc0{bottom:117.312000pt;}
.y121{bottom:119.226667pt;}
.y4d{bottom:122.432000pt;}
.y11{bottom:123.240000pt;}
.y163{bottom:124.512000pt;}
.y37{bottom:125.600000pt;}
.ye7{bottom:127.872000pt;}
.y18d{bottom:128.992000pt;}
.yed{bottom:130.106667pt;}
.y84{bottom:130.272000pt;}
.y151{bottom:133.786667pt;}
.y14c{bottom:137.786667pt;}
.y11c{bottom:138.266667pt;}
.y162{bottom:139.866667pt;}
.y122{bottom:140.733333pt;}
.y36{bottom:140.960000pt;}
.ye6{bottom:143.226667pt;}
.y10{bottom:144.840000pt;}
.y83{bottom:145.626667pt;}
.y18c{bottom:147.866667pt;}
.y4c{bottom:148.506667pt;}
.ybf{bottom:148.666667pt;}
.yee{bottom:150.333333pt;}
.y11b{bottom:153.626667pt;}
.y152{bottom:155.226667pt;}
.y35{bottom:156.320000pt;}
.ye5{bottom:158.426667pt;}
.y82{bottom:160.986667pt;}
.y123{bottom:162.240000pt;}
.y14b{bottom:163.706667pt;}
.y4b{bottom:163.866667pt;}
.ybb{bottom:164.666667pt;}
.y18b{bottom:165.626667pt;}
.y11a{bottom:168.986667pt;}
.yef{bottom:170.586667pt;}
.y34{bottom:171.520000pt;}
.ye4{bottom:173.786667pt;}
.y81{bottom:176.186667pt;}
.y153{bottom:176.666667pt;}
.y14a{bottom:179.066667pt;}
.y4a{bottom:179.226667pt;}
.y27{bottom:180.186667pt;}
.y18a{bottom:180.986667pt;}
.y124{bottom:183.746667pt;}
.y161{bottom:185.786667pt;}
.y33{bottom:186.906667pt;}
.ye3{bottom:189.146667pt;}
.yf0{bottom:190.813333pt;}
.y80{bottom:191.546667pt;}
.y26{bottom:193.786667pt;}
.y49{bottom:194.426667pt;}
.y189{bottom:196.346667pt;}
.yba{bottom:196.506667pt;}
.y154{bottom:198.106667pt;}
.y119{bottom:198.586667pt;}
.y160{bottom:201.146667pt;}
.y32{bottom:202.266667pt;}
.y149{bottom:204.986667pt;}
.ye2{bottom:205.626667pt;}
.y7f{bottom:206.906667pt;}
.y25{bottom:209.306667pt;}
.y48{bottom:209.786667pt;}
.yf1{bottom:211.066667pt;}
.y188{bottom:211.706667pt;}
.y118{bottom:214.106667pt;}
.y15d{bottom:214.266667pt;}
.yb9{bottom:215.386667pt;}
.y31{bottom:217.626667pt;}
.y155{bottom:219.546667pt;}
.ye1{bottom:220.186667pt;}
.y148{bottom:220.346667pt;}
.y24{bottom:224.666667pt;}
.y47{bottom:225.146667pt;}
.y187{bottom:227.066667pt;}
.yf2{bottom:231.293333pt;}
.y117{bottom:232.346667pt;}
.y7e{bottom:232.826667pt;}
.y30{bottom:232.986667pt;}
.y147{bottom:236.826667pt;}
.y23{bottom:240.026667pt;}
.y46{bottom:240.506667pt;}
.yb8{bottom:241.466667pt;}
.y186{bottom:242.426667pt;}
.y7d{bottom:248.186667pt;}
.y2f{bottom:248.346667pt;}
.y116{bottom:249.786667pt;}
.ye0{bottom:251.546667pt;}
.y22{bottom:255.866667pt;}
.yb7{bottom:256.826667pt;}
.y185{bottom:257.626667pt;}
.y2e{bottom:263.546667pt;}
.y146{bottom:264.346667pt;}
.ydf{bottom:267.546667pt;}
.y115{bottom:268.186667pt;}
.y45{bottom:271.226667pt;}
.y21{bottom:271.386667pt;}
.yb6{bottom:272.186667pt;}
.y184{bottom:272.986667pt;}
.y2d{bottom:278.906667pt;}
.y145{bottom:279.706667pt;}
.y7c{bottom:279.866667pt;}
.y113{bottom:286.426667pt;}
.y20{bottom:286.746667pt;}
.y44{bottom:287.066667pt;}
.yb5{bottom:287.386667pt;}
.y183{bottom:288.346667pt;}
.y2c{bottom:294.266667pt;}
.y144{bottom:294.906667pt;}
.y7b{bottom:296.186667pt;}
.ydb{bottom:298.906667pt;}
.y1f{bottom:302.266667pt;}
.yb4{bottom:302.786667pt;}
.y43{bottom:303.426667pt;}
.y182{bottom:303.746667pt;}
.y112{bottom:306.786667pt;}
.y2b{bottom:309.626667pt;}
.y7a{bottom:312.546667pt;}
.y40{bottom:316.226667pt;}
.y1e{bottom:317.946667pt;}
.yb3{bottom:318.146667pt;}
.y181{bottom:319.106667pt;}
.y143{bottom:321.026667pt;}
.y2a{bottom:324.986667pt;}
.y79{bottom:327.746667pt;}
.y111{bottom:332.706667pt;}
.yb2{bottom:333.506667pt;}
.y180{bottom:334.466667pt;}
.y142{bottom:336.386667pt;}
.y29{bottom:340.346667pt;}
.y1d{bottom:342.266667pt;}
.y78{bottom:343.746667pt;}
.yda{bottom:345.506667pt;}
.y110{bottom:348.066667pt;}
.yb1{bottom:348.866667pt;}
.y17f{bottom:349.666667pt;}
.y141{bottom:351.746667pt;}
.y28{bottom:355.546667pt;}
.y1c{bottom:357.946667pt;}
.y77{bottom:361.506667pt;}
.y1b{bottom:363.746667pt;}
.yb0{bottom:364.066667pt;}
.y17e{bottom:365.026667pt;}
.y10f{bottom:374.146667pt;}
.y140{bottom:377.666667pt;}
.y76{bottom:377.826667pt;}
.yaf{bottom:380.546667pt;}
.y10e{bottom:389.506667pt;}
.y17d{bottom:391.106667pt;}
.yd9{bottom:392.866667pt;}
.y13f{bottom:393.026667pt;}
.y75{bottom:394.146667pt;}
.yad{bottom:395.106667pt;}
.y15b{bottom:401.986667pt;}
.y10d{bottom:404.706667pt;}
.y17c{bottom:406.466667pt;}
.y13e{bottom:408.386667pt;}
.y74{bottom:410.466667pt;}
.yac{bottom:413.346667pt;}
.y10c{bottom:420.066667pt;}
.y17b{bottom:421.666667pt;}
.y13d{bottom:423.746667pt;}
.yd8{bottom:424.226667pt;}
.y73{bottom:426.626667pt;}
.yab{bottom:430.626667pt;}
.y10b{bottom:435.426667pt;}
.y13c{bottom:438.946667pt;}
.y72{bottom:441.986667pt;}
.yaa{bottom:447.746667pt;}
.y10a{bottom:450.786667pt;}
.y13b{bottom:454.306667pt;}
.yd7{bottom:455.586667pt;}
.y71{bottom:457.346667pt;}
.y17a{bottom:463.106667pt;}
.ya9{bottom:465.026667pt;}
.y109{bottom:466.146667pt;}
.y13a{bottom:470.786667pt;}
.y70{bottom:473.666667pt;}
.yd6{bottom:474.466667pt;}
.y179{bottom:478.466667pt;}
.y108{bottom:481.506667pt;}
.ya8{bottom:482.146667pt;}
.y139{bottom:485.346667pt;}
.y6f{bottom:489.986667pt;}
.y178{bottom:493.666667pt;}
.y107{bottom:493.986667pt;}
.y11d{bottom:494.080000pt;}
.ya7{bottom:499.426667pt;}
.yd5{bottom:500.386667pt;}
.y138{bottom:501.346667pt;}
.y6e{bottom:506.306667pt;}
.yd4{bottom:515.746667pt;}
.ya6{bottom:516.546667pt;}
.y137{bottom:517.346667pt;}
.y177{bottom:519.746667pt;}
.y6d{bottom:522.466667pt;}
.y1ac{bottom:528.066667pt;}
.yd3{bottom:531.106667pt;}
.y136{bottom:533.346667pt;}
.ya4{bottom:533.826667pt;}
.y176{bottom:535.106667pt;}
.y6c{bottom:538.493333pt;}
.y1ab{bottom:543.613333pt;}
.yd2{bottom:546.493333pt;}
.y135{bottom:549.373333pt;}
.y175{bottom:550.333333pt;}
.ya3{bottom:550.973333pt;}
.y6b{bottom:556.253333pt;}
.y1aa{bottom:559.133333pt;}
.yd1{bottom:561.693333pt;}
.y134{bottom:565.373333pt;}
.ya1{bottom:568.253333pt;}
.y6a{bottom:571.613333pt;}
.y1a9{bottom:574.493333pt;}
.y174{bottom:576.413333pt;}
.yd0{bottom:577.053333pt;}
.y133{bottom:581.373333pt;}
.y9f{bottom:585.373333pt;}
.y69{bottom:586.973333pt;}
.y1a8{bottom:589.693333pt;}
.y173{bottom:591.773333pt;}
.ycf{bottom:592.413333pt;}
.y132{bottom:597.373333pt;}
.y68{bottom:602.973333pt;}
.y1a7{bottom:605.053333pt;}
.y9e{bottom:605.533333pt;}
.y172{bottom:607.133333pt;}
.yce{bottom:607.773333pt;}
.y131{bottom:616.253333pt;}
.y1a6{bottom:620.413333pt;}
.y15a{bottom:620.573333pt;}
.y67{bottom:620.733333pt;}
.ycd{bottom:624.253333pt;}
.y171{bottom:633.053333pt;}
.y1a5{bottom:635.773333pt;}
.y66{bottom:635.933333pt;}
.y9d{bottom:636.093333pt;}
.ycc{bottom:641.053333pt;}
.y130{bottom:642.173333pt;}
.y170{bottom:648.413333pt;}
.y1a4{bottom:651.133333pt;}
.y65{bottom:651.293333pt;}
.y9c{bottom:651.453333pt;}
.y12f{bottom:657.533333pt;}
.y159{bottom:663.613333pt;}
.y16f{bottom:663.773333pt;}
.y1a3{bottom:666.333333pt;}
.y64{bottom:666.653333pt;}
.y9b{bottom:666.813333pt;}
.ycb{bottom:667.133333pt;}
.ye9{bottom:667.680000pt;}
.y12e{bottom:672.893333pt;}
.y1a2{bottom:681.693333pt;}
.y63{bottom:682.013333pt;}
.y9a{bottom:682.173333pt;}
.y12d{bottom:688.253333pt;}
.y16e{bottom:689.693333pt;}
.y1a1{bottom:697.053333pt;}
.y99{bottom:697.533333pt;}
.y62{bottom:698.013333pt;}
.y12c{bottom:703.613333pt;}
.y16d{bottom:705.053333pt;}
.y106{bottom:711.773333pt;}
.y1a0{bottom:712.413333pt;}
.y98{bottom:712.733333pt;}
.y61{bottom:715.773333pt;}
.y12b{bottom:718.973333pt;}
.y105{bottom:724.893333pt;}
.y19f{bottom:727.773333pt;}
.y97{bottom:728.093333pt;}
.y16c{bottom:730.973333pt;}
.y60{bottom:731.133333pt;}
.y19{bottom:731.773333pt;}
.y12a{bottom:734.173333pt;}
.y104{bottom:741.853333pt;}
.y19e{bottom:743.133333pt;}
.y96{bottom:743.453333pt;}
.y5f{bottom:746.333333pt;}
.y129{bottom:749.533333pt;}
.yf{bottom:758.013333pt;}
.y19d{bottom:758.333333pt;}
.y95{bottom:759.453333pt;}
.y5e{bottom:761.693333pt;}
.y128{bottom:766.013333pt;}
.y19c{bottom:773.693333pt;}
.y103{bottom:775.013333pt;}
.y5d{bottom:777.093333pt;}
.y94{bottom:777.253333pt;}
.y127{bottom:782.853333pt;}
.y19b{bottom:789.093333pt;}
.y102{bottom:791.013333pt;}
.y5c{bottom:792.453333pt;}
.y93{bottom:792.613333pt;}
.y16b{bottom:803.013333pt;}
.y19a{bottom:804.453333pt;}
.y101{bottom:807.013333pt;}
.y5b{bottom:807.813333pt;}
.y126{bottom:808.933333pt;}
.y14d{bottom:809.280000pt;}
.y16a{bottom:818.373333pt;}
.y199{bottom:819.813333pt;}
.y92{bottom:823.813333pt;}
.y100{bottom:823.973333pt;}
.y5a{bottom:833.733333pt;}
.y198{bottom:835.173333pt;}
.yff{bottom:840.133333pt;}
.y91{bottom:841.573333pt;}
.y59{bottom:849.093333pt;}
.y197{bottom:850.373333pt;}
.yfe{bottom:856.133333pt;}
.y90{bottom:857.893333pt;}
.y58{bottom:864.453333pt;}
.y196{bottom:865.733333pt;}
.yfd{bottom:872.133333pt;}
.y8f{bottom:874.213333pt;}
.y169{bottom:875.013333pt;}
.y57{bottom:879.813333pt;}
.y195{bottom:881.093333pt;}
.yfc{bottom:889.093333pt;}
.y168{bottom:890.373333pt;}
.y8e{bottom:890.533333pt;}
.y194{bottom:896.453333pt;}
.yfb{bottom:905.253333pt;}
.y56{bottom:905.733333pt;}
.y8d{bottom:906.533333pt;}
.y193{bottom:911.813333pt;}
.yd{bottom:916.293333pt;}
.y55{bottom:921.093333pt;}
.yf9{bottom:921.253333pt;}
.y8c{bottom:924.293333pt;}
.y192{bottom:927.013333pt;}
.y167{bottom:931.653333pt;}
.yc8{bottom:935.653333pt;}
.y54{bottom:936.453333pt;}
.y6{bottom:938.853333pt;}
.y8b{bottom:939.493333pt;}
.y191{bottom:942.373333pt;}
.y166{bottom:947.013333pt;}
.yf8{bottom:951.813333pt;}
.y8a{bottom:954.853333pt;}
.y190{bottom:957.733333pt;}
.y53{bottom:962.373333pt;}
.y89{bottom:970.213333pt;}
.y18f{bottom:973.093333pt;}
.y52{bottom:977.733333pt;}
.yc7{bottom:983.653333pt;}
.y88{bottom:986.533333pt;}
.y165{bottom:988.453333pt;}
.y51{bottom:993.093333pt;}
.y87{bottom:1002.853333pt;}
.yf7{bottom:1003.653333pt;}
.y164{bottom:1003.813333pt;}
.yc3{bottom:1015.040000pt;}
.y50{bottom:1019.040000pt;}
.y4f{bottom:1034.400000pt;}
.h28{height:15.200000pt;}
.h23{height:15.360000pt;}
.h36{height:15.392000pt;}
.h2f{height:15.520000pt;}
.h31{height:16.192000pt;}
.h30{height:16.320000pt;}
.h1f{height:16.480000pt;}
.h20{height:16.512000pt;}
.h34{height:16.800000pt;}
.h32{height:16.832000pt;}
.h21{height:17.600000pt;}
.h33{height:17.760000pt;}
.ha{height:22.240000pt;}
.he{height:25.750000pt;}
.h10{height:26.240000pt;}
.h2e{height:26.880000pt;}
.h29{height:30.560000pt;}
.h26{height:30.592000pt;}
.h25{height:30.720000pt;}
.h24{height:31.200000pt;}
.h7{height:32.160000pt;}
.h17{height:34.505000pt;}
.h19{height:37.090625pt;}
.h18{height:37.479688pt;}
.hf{height:38.625000pt;}
.h1c{height:38.672812pt;}
.hc{height:39.113750pt;}
.h9{height:39.840000pt;}
.h15{height:40.488438pt;}
.h14{height:40.685000pt;}
.h13{height:42.649687pt;}
.h1b{height:42.745000pt;}
.h1e{height:44.687500pt;}
.h1d{height:45.156250pt;}
.h2a{height:45.952000pt;}
.h27{height:47.360000pt;}
.h1a{height:47.520000pt;}
.h2{height:47.712000pt;}
.h2c{height:47.742188pt;}
.h2d{height:47.869500pt;}
.h8{height:48.000000pt;}
.h16{height:52.834688pt;}
.h3{height:54.390938pt;}
.hd{height:56.160000pt;}
.h22{height:58.563750pt;}
.h4{height:60.288750pt;}
.h5{height:63.656250pt;}
.h11{height:65.531250pt;}
.h6{height:108.032000pt;}
.hb{height:158.266667pt;}
.h39{height:187.066667pt;}
.h35{height:201.920000pt;}
.h38{height:215.066667pt;}
.h37{height:237.600000pt;}
.h2b{height:249.440000pt;}
.h12{height:368.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:138.106667pt;}
.wa{width:165.306667pt;}
.wb{width:165.466667pt;}
.w10{width:179.226667pt;}
.wf{width:190.106667pt;}
.w8{width:196.386667pt;}
.w12{width:281.786667pt;}
.w13{width:288.386667pt;}
.we{width:293.026667pt;}
.wc{width:338.720000pt;}
.w11{width:347.520000pt;}
.wd{width:375.200000pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x12{left:11.200000pt;}
.x27{left:29.213333pt;}
.xc{left:33.632000pt;}
.x1e{left:36.066667pt;}
.x2d{left:42.213333pt;}
.x1f{left:60.866667pt;}
.x1{left:64.320000pt;}
.x20{left:66.333333pt;}
.x4{left:71.999988pt;}
.x28{left:74.053333pt;}
.x5{left:87.226667pt;}
.xd{left:88.826667pt;}
.x13{left:96.031988pt;}
.x21{left:99.586667pt;}
.x2e{left:100.546667pt;}
.x22{left:104.826667pt;}
.x3c{left:111.552000pt;}
.x2f{left:112.613333pt;}
.x35{left:115.973333pt;}
.x14{left:120.031988pt;}
.x36{left:133.573333pt;}
.x23{left:138.266667pt;}
.x1b{left:143.866655pt;}
.xf{left:151.066667pt;}
.x37{left:174.880000pt;}
.x24{left:176.986667pt;}
.x25{left:182.266667pt;}
.x2b{left:185.466655pt;}
.x38{left:188.320000pt;}
.x10{left:191.266667pt;}
.x6{left:202.906667pt;}
.x2c{left:208.800000pt;}
.x26{left:211.293333pt;}
.x34{left:222.720000pt;}
.x39{left:225.440000pt;}
.x31{left:226.906655pt;}
.x1d{left:227.840000pt;}
.x17{left:231.226667pt;}
.x16{left:233.146655pt;}
.x19{left:237.786655pt;}
.x3d{left:250.114667pt;}
.x9{left:253.346667pt;}
.x2a{left:257.986655pt;}
.x11{left:261.186667pt;}
.x1c{left:264.866655pt;}
.x3f{left:266.466667pt;}
.x40{left:274.754667pt;}
.x41{left:281.506667pt;}
.x7{left:306.466667pt;}
.xe{left:321.346667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x32{left:358.786667pt;}
.x3b{left:370.786655pt;}
.x3e{left:393.986667pt;}
.x15{left:396.866655pt;}
.xa{left:402.026667pt;}
.x33{left:549.533333pt;}
.x18{left:563.293333pt;}
.x1a{left:567.933322pt;}
.x30{left:572.893322pt;}
.x29{left:586.853322pt;}
.x3a{left:628.933322pt;}
.x3{left:663.013333pt;}
}




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