
    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_6acb46d4247d8a75767ab180.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_736e206b2568bd83fcf8f37d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_86743751738239721b90805a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_2d8b9f6b96353b3b20d19b85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_f21ba3a7c85790dcb51f0341.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_233a244268523f949c3e40ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_154c10b87f5f812c93fc0706.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0d8714020238c2df18c357f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_86898b280f6f9082adb3f9f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_692c64b8c4a8bf51789c18d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_ca30d91a1e36fc13ec2c1c0c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v4{vertical-align:-49.680000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:27.540000px;}
.ls1e{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.538800px;}
.lsf{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.ls4{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.900000px;}
.ls19{letter-spacing:0.924000px;}
.ls17{letter-spacing:2.340000px;}
.ls1a{letter-spacing:3.060000px;}
.ls1f{letter-spacing:9.540000px;}
.ls18{letter-spacing:21.060000px;}
.ls12{letter-spacing:28.260000px;}
.ls11{letter-spacing:34.020000px;}
.ls2{letter-spacing:66.240000px;}
.ls5{letter-spacing:66.600000px;}
.ls3{letter-spacing:66.960000px;}
.ls6{letter-spacing:902.280000px;}
.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;}
}
.ws3{word-spacing:-36.907200px;}
.ws5{word-spacing:-32.940000px;}
.ws14{word-spacing:-15.864000px;}
.wsd{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.146400px;}
.wse{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.274000px;}
.ws2{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.392000px;}
.ws17{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.672000px;}
.ws8{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws11{word-spacing:-11.521200px;}
.ws1{word-spacing:-10.933800px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
._d{margin-left:-2.094480px;}
._0{margin-left:-1.013040px;}
._3{width:1.477440px;}
._1{width:2.990880px;}
._2{width:4.114560px;}
._e{width:5.449920px;}
._a{width:6.513840px;}
._6{width:7.589520px;}
._9{width:8.605440px;}
._8{width:9.738000px;}
._b{width:11.002320px;}
._1c{width:12.967920px;}
._2d{width:14.698800px;}
._14{width:16.135200px;}
._7{width:17.210880px;}
._15{width:18.365760px;}
._c{width:19.481760px;}
._f{width:20.617200px;}
._29{width:21.670560px;}
._10{width:22.678320px;}
._16{width:24.202800px;}
._24{width:25.371360px;}
._17{width:26.737680px;}
._12{width:28.087200px;}
._13{width:29.103120px;}
._11{width:30.417840px;}
._22{width:32.210640px;}
._1b{width:33.883920px;}
._21{width:35.402160px;}
._20{width:36.899760px;}
._25{width:37.965600px;}
._1a{width:39.680640px;}
._2b{width:40.713120px;}
._1f{width:41.832000px;}
._23{width:43.139520px;}
._26{width:44.334000px;}
._27{width:45.596640px;}
._1e{width:47.604960px;}
._1d{width:48.883680px;}
._2a{width:53.166720px;}
._2c{width:54.195600px;}
._28{width:62.622000px;}
._33{width:66.204000px;}
._18{width:68.186160px;}
._19{width:69.357600px;}
._31{width:70.956000px;}
._32{width:72.070560px;}
._3b{width:76.788000px;}
._2f{width:106.596000px;}
._40{width:111.780000px;}
._41{width:113.164560px;}
._3d{width:121.878000px;}
._3e{width:176.106000px;}
._39{width:183.096000px;}
._3c{width:192.353040px;}
._42{width:194.652000px;}
._43{width:196.344000px;}
._38{width:202.014000px;}
._34{width:207.066000px;}
._37{width:220.536000px;}
._3a{width:258.390000px;}
._4{width:291.900000px;}
._36{width:424.008000px;}
._35{width:450.792000px;}
._2e{width:464.724000px;}
._3f{width:939.240000px;}
._30{width:1092.258000px;}
._5{width:1209.960000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(3,50,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fsc{font-size:50.848916px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:131.760000px;}
.fs8{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.140000px;}
.y9{bottom:4.320000px;}
.y48{bottom:14.400000px;}
.y3{bottom:22.320000px;}
.y4c{bottom:22.680000px;}
.y8{bottom:30.780000px;}
.y2{bottom:37.080000px;}
.y1{bottom:49.680000px;}
.y7{bottom:66.270000px;}
.yf0{bottom:80.640000px;}
.ybd{bottom:81.360000px;}
.y7f{bottom:81.540000px;}
.y5{bottom:83.325000px;}
.y9d{bottom:84.240000px;}
.y14f{bottom:85.140000px;}
.y11a{bottom:85.860000px;}
.y184{bottom:87.660000px;}
.ye5{bottom:94.320000px;}
.ybc{bottom:95.400000px;}
.yef{bottom:100.440000px;}
.y14e{bottom:100.620000px;}
.y7e{bottom:101.340000px;}
.y9c{bottom:101.520000px;}
.y183{bottom:103.320000px;}
.y119{bottom:105.660000px;}
.ybb{bottom:111.060000px;}
.ye4{bottom:114.120000px;}
.y14d{bottom:116.100000px;}
.y9b{bottom:118.800000px;}
.y1a9{bottom:119.160000px;}
.yee{bottom:120.420000px;}
.y7d{bottom:121.140000px;}
.y46{bottom:123.120000px;}
.y118{bottom:125.460000px;}
.yba{bottom:126.540000px;}
.y3d{bottom:131.580000px;}
.y14c{bottom:131.760000px;}
.ye3{bottom:134.100000px;}
.y182{bottom:134.280000px;}
.y9a{bottom:136.080000px;}
.y1a8{bottom:136.980000px;}
.yb9{bottom:138.960000px;}
.yed{bottom:140.220000px;}
.y7c{bottom:140.760000px;}
.y45{bottom:142.956000px;}
.y117{bottom:145.116000px;}
.y14b{bottom:147.276000px;}
.y181{bottom:149.796000px;}
.y3c{bottom:151.410000px;}
.y99{bottom:153.390000px;}
.ye2{bottom:153.930000px;}
.y1a7{bottom:154.830000px;}
.yec{bottom:160.050000px;}
.y7b{bottom:160.950000px;}
.y44{bottom:162.750000px;}
.y116{bottom:164.910000px;}
.y98{bottom:170.670000px;}
.y3b{bottom:171.210000px;}
.y180{bottom:171.390000px;}
.y1a6{bottom:172.830000px;}
.ye1{bottom:173.730000px;}
.y14a{bottom:178.230000px;}
.yeb{bottom:179.490000px;}
.y7a{bottom:180.750000px;}
.y43{bottom:182.550000px;}
.y115{bottom:185.070000px;}
.y17f{bottom:186.870000px;}
.y97{bottom:187.770000px;}
.y1a5{bottom:190.650000px;}
.y3a{bottom:191.190000px;}
.ye0{bottom:193.530000px;}
.yea{bottom:199.290000px;}
.y149{bottom:199.830000px;}
.y79{bottom:200.550000px;}
.y42{bottom:202.350000px;}
.y4{bottom:204.165000px;}
.y114{bottom:204.870000px;}
.y96{bottom:205.050000px;}
.y1a4{bottom:208.470000px;}
.y39{bottom:210.990000px;}
.ydf{bottom:213.330000px;}
.y148{bottom:215.310000px;}
.y17e{bottom:218.010000px;}
.ye9{bottom:219.630000px;}
.y78{bottom:220.350000px;}
.y95{bottom:221.970000px;}
.y41{bottom:222.330000px;}
.y113{bottom:224.670000px;}
.y1a3{bottom:226.290000px;}
.y38{bottom:230.790000px;}
.yde{bottom:233.310000px;}
.y17d{bottom:233.490000px;}
.ye8{bottom:239.430000px;}
.y94{bottom:239.610000px;}
.y77{bottom:240.330000px;}
.y40{bottom:242.130000px;}
.y1a2{bottom:244.110000px;}
.y112{bottom:244.650000px;}
.y147{bottom:246.450000px;}
.y17c{bottom:248.970000px;}
.y37{bottom:250.590000px;}
.ydd{bottom:253.110000px;}
.y93{bottom:259.230000px;}
.y76{bottom:260.130000px;}
.y3f{bottom:261.930000px;}
.y1a1{bottom:262.110000px;}
.y111{bottom:264.450000px;}
.y36{bottom:268.590000px;}
.y17b{bottom:270.570000px;}
.ydc{bottom:272.910000px;}
.y92{bottom:279.030000px;}
.y75{bottom:279.930000px;}
.y35{bottom:281.550000px;}
.y3e{bottom:281.730000px;}
.y146{bottom:283.350000px;}
.y110{bottom:283.890000px;}
.y17a{bottom:286.050000px;}
.ydb{bottom:292.710000px;}
.y1a0{bottom:297.750000px;}
.y91{bottom:298.830000px;}
.y145{bottom:299.010000px;}
.y74{bottom:299.730000px;}
.y179{bottom:301.530000px;}
.y34{bottom:304.050000px;}
.yda{bottom:312.510000px;}
.y144{bottom:314.490000px;}
.y33{bottom:315.750000px;}
.y178{bottom:317.010000px;}
.y19f{bottom:317.730000px;}
.y90{bottom:318.810000px;}
.y73{bottom:319.530000px;}
.y10f{bottom:321.510000px;}
.y32{bottom:327.630000px;}
.y143{bottom:329.970000px;}
.yd9{bottom:332.490000px;}
.y177{bottom:332.670000px;}
.y8f{bottom:338.610000px;}
.y10e{bottom:338.790000px;}
.y19e{bottom:339.150000px;}
.y72{bottom:339.510000px;}
.y31{bottom:343.110000px;}
.y142{bottom:345.450000px;}
.y176{bottom:348.150000px;}
.yd8{bottom:352.290000px;}
.y10d{bottom:355.710000px;}
.y30{bottom:355.890000px;}
.y8e{bottom:358.410000px;}
.y71{bottom:359.310000px;}
.y141{bottom:361.110000px;}
.y19d{bottom:363.810000px;}
.yb8{bottom:368.130000px;}
.y175{bottom:369.570000px;}
.yd7{bottom:372.090000px;}
.y10c{bottom:372.810000px;}
.y2f{bottom:375.690000px;}
.y8d{bottom:378.255000px;}
.y70{bottom:378.795000px;}
.y140{bottom:382.575000px;}
.y174{bottom:385.275000px;}
.yb7{bottom:386.355000px;}
.y19c{bottom:388.515000px;}
.y10b{bottom:390.495000px;}
.yd6{bottom:391.935000px;}
.y2e{bottom:395.715000px;}
.y8c{bottom:398.055000px;}
.y6f{bottom:398.955000px;}
.y173{bottom:400.755000px;}
.yb6{bottom:401.835000px;}
.y10a{bottom:407.775000px;}
.yd5{bottom:411.735000px;}
.y19b{bottom:413.175000px;}
.y13f{bottom:413.715000px;}
.y2d{bottom:415.515000px;}
.y172{bottom:416.235000px;}
.y6e{bottom:416.415000px;}
.yb5{bottom:417.495000px;}
.y8b{bottom:418.035000px;}
.y109{bottom:424.695000px;}
.y13e{bottom:429.195000px;}
.yb4{bottom:429.735000px;}
.yd4{bottom:431.715000px;}
.y6d{bottom:433.695000px;}
.y2c{bottom:435.315000px;}
.y8a{bottom:437.835000px;}
.y108{bottom:442.335000px;}
.y13d{bottom:450.795000px;}
.y6c{bottom:450.975000px;}
.yd3{bottom:451.515000px;}
.y171{bottom:453.315000px;}
.y2b{bottom:455.115000px;}
.y89{bottom:457.275000px;}
.ye7{bottom:457.635000px;}
.y107{bottom:459.615000px;}
.y19a{bottom:462.495000px;}
.y13c{bottom:466.275000px;}
.y6b{bottom:468.255000px;}
.y170{bottom:468.795000px;}
.yd2{bottom:471.315000px;}
.y2a{bottom:474.915000px;}
.y106{bottom:476.715000px;}
.y88{bottom:477.075000px;}
.ye6{bottom:477.435000px;}
.y13b{bottom:481.755000px;}
.y16f{bottom:484.275000px;}
.y6a{bottom:485.355000px;}
.y199{bottom:486.975000px;}
.yd1{bottom:491.115000px;}
.y105{bottom:493.995000px;}
.y29{bottom:494.895000px;}
.y87{bottom:497.235000px;}
.y69{bottom:502.635000px;}
.y16e{bottom:505.875000px;}
.yd0{bottom:510.915000px;}
.y104{bottom:511.275000px;}
.y198{bottom:511.635000px;}
.y13a{bottom:512.895000px;}
.y28{bottom:514.695000px;}
.y86{bottom:517.215000px;}
.y68{bottom:519.555000px;}
.y16d{bottom:521.355000px;}
.y103{bottom:528.555000px;}
.ycf{bottom:530.895000px;}
.y139{bottom:534.315000px;}
.y27{bottom:534.495000px;}
.y197{bottom:536.295000px;}
.y67{bottom:536.835000px;}
.y85{bottom:537.015000px;}
.y102{bottom:545.835000px;}
.y138{bottom:549.795000px;}
.yce{bottom:550.695000px;}
.y16c{bottom:552.495000px;}
.y26{bottom:554.295000px;}
.y66{bottom:556.455000px;}
.y84{bottom:556.815000px;}
.y196{bottom:560.955000px;}
.y101{bottom:563.115000px;}
.y137{bottom:565.455000px;}
.y16b{bottom:567.975000px;}
.ycd{bottom:570.495000px;}
.y25{bottom:574.095000px;}
.y65{bottom:576.255000px;}
.y83{bottom:576.615000px;}
.y100{bottom:580.215000px;}
.y136{bottom:580.935000px;}
.y195{bottom:585.615000px;}
.y16a{bottom:589.575000px;}
.ycc{bottom:590.295000px;}
.y24{bottom:594.075000px;}
.y64{bottom:596.415000px;}
.yff{bottom:597.495000px;}
.y169{bottom:605.055000px;}
.ycb{bottom:610.095000px;}
.y194{bottom:610.305000px;}
.y23{bottom:613.905000px;}
.yfe{bottom:614.805000px;}
.y63{bottom:616.425000px;}
.y135{bottom:618.045000px;}
.y168{bottom:620.565000px;}
.yca{bottom:630.105000px;}
.yfd{bottom:632.085000px;}
.y134{bottom:633.525000px;}
.y22{bottom:633.705000px;}
.y193{bottom:634.965000px;}
.y167{bottom:636.045000px;}
.y62{bottom:636.225000px;}
.y133{bottom:649.005000px;}
.yfc{bottom:649.365000px;}
.yc9{bottom:649.545000px;}
.y166{bottom:651.705000px;}
.y21{bottom:653.505000px;}
.y61{bottom:656.025000px;}
.y192{bottom:659.625000px;}
.y132{bottom:664.485000px;}
.yfb{bottom:666.645000px;}
.yc8{bottom:671.865000px;}
.y165{bottom:673.125000px;}
.y60{bottom:675.825000px;}
.y20{bottom:679.245000px;}
.yfa{bottom:683.385000px;}
.y191{bottom:684.285000px;}
.y131{bottom:686.085000px;}
.y164{bottom:688.605000px;}
.yc7{bottom:694.365000px;}
.y5f{bottom:695.625000px;}
.yf9{bottom:701.025000px;}
.y130{bottom:701.565000px;}
.y1f{bottom:703.005000px;}
.y163{bottom:704.265000px;}
.yb3{bottom:707.865000px;}
.yc6{bottom:708.045000px;}
.y190{bottom:708.765000px;}
.y5e{bottom:715.605000px;}
.y12f{bottom:717.045000px;}
.y162{bottom:719.745000px;}
.y1e{bottom:720.105000px;}
.yf8{bottom:720.645000px;}
.yc5{bottom:722.265000px;}
.yb2{bottom:725.145000px;}
.y12e{bottom:732.705000px;}
.y18f{bottom:733.425000px;}
.y161{bottom:735.225000px;}
.y5d{bottom:735.405000px;}
.yc4{bottom:737.745000px;}
.yf7{bottom:740.625000px;}
.y1d{bottom:742.065000px;}
.yb1{bottom:742.425000px;}
.y1c{bottom:750.345000px;}
.y160{bottom:750.705000px;}
.yc3{bottom:753.225000px;}
.y12d{bottom:754.125000px;}
.y5c{bottom:755.205000px;}
.y1b{bottom:755.565000px;}
.y18e{bottom:756.825000px;}
.yb0{bottom:759.705000px;}
.yf6{bottom:760.425000px;}
.yc2{bottom:768.705000px;}
.y1a{bottom:769.425000px;}
.y12c{bottom:769.785000px;}
.y15f{bottom:772.305000px;}
.y82{bottom:774.645000px;}
.y5b{bottom:775.005000px;}
.yaf{bottom:776.985000px;}
.y18d{bottom:778.245000px;}
.yf5{bottom:780.225000px;}
.y19{bottom:783.285000px;}
.yc1{bottom:784.365000px;}
.y12b{bottom:785.265000px;}
.y15e{bottom:787.785000px;}
.y18c{bottom:793.725000px;}
.yae{bottom:794.265000px;}
.y81{bottom:794.445000px;}
.y5a{bottom:794.805000px;}
.y18{bottom:796.965000px;}
.yf4{bottom:799.665000px;}
.yc0{bottom:799.845000px;}
.y12a{bottom:800.745000px;}
.y15d{bottom:803.265000px;}
.y17{bottom:804.885000px;}
.y18b{bottom:809.385000px;}
.yad{bottom:811.365000px;}
.y80{bottom:814.425000px;}
.y59{bottom:814.785000px;}
.ybf{bottom:815.325000px;}
.y129{bottom:816.225000px;}
.yf3{bottom:817.125000px;}
.y15c{bottom:818.925000px;}
.y16{bottom:820.905000px;}
.y18a{bottom:824.865000px;}
.yac{bottom:828.645000px;}
.ybe{bottom:830.265000px;}
.y128{bottom:831.705000px;}
.yf2{bottom:834.405000px;}
.y58{bottom:834.585000px;}
.y189{bottom:840.345000px;}
.y15{bottom:843.405000px;}
.yab{bottom:845.970000px;}
.y127{bottom:853.350000px;}
.yf1{bottom:854.070000px;}
.y57{bottom:854.430000px;}
.y15b{bottom:855.870000px;}
.yaa{bottom:863.250000px;}
.y14{bottom:865.590000px;}
.y126{bottom:868.830000px;}
.y15a{bottom:871.530000px;}
.y56{bottom:874.230000px;}
.y188{bottom:877.470000px;}
.ya9{bottom:880.530000px;}
.y125{bottom:884.490000px;}
.y13{bottom:887.010000px;}
.y187{bottom:892.950000px;}
.y55{bottom:894.030000px;}
.ya8{bottom:897.450000px;}
.y124{bottom:899.970000px;}
.y159{bottom:902.490000px;}
.y186{bottom:908.430000px;}
.y54{bottom:914.010000px;}
.ya7{bottom:914.550000px;}
.y123{bottom:915.450000px;}
.y158{bottom:924.090000px;}
.y12{bottom:924.990000px;}
.y122{bottom:930.930000px;}
.ya6{bottom:932.190000px;}
.y53{bottom:933.810000px;}
.y157{bottom:939.570000px;}
.ya5{bottom:949.470000px;}
.y121{bottom:952.530000px;}
.y52{bottom:953.610000px;}
.y156{bottom:955.050000px;}
.y11{bottom:962.970000px;}
.ya4{bottom:966.750000px;}
.y120{bottom:968.010000px;}
.y155{bottom:970.530000px;}
.y51{bottom:973.410000px;}
.y185{bottom:976.650000px;}
.y11f{bottom:983.490000px;}
.ya3{bottom:984.030000px;}
.y154{bottom:992.130000px;}
.y50{bottom:993.210000px;}
.y10{bottom:998.070000px;}
.y11e{bottom:999.150000px;}
.ya2{bottom:1001.310000px;}
.y153{bottom:1007.610000px;}
.yf{bottom:1012.470000px;}
.y4f{bottom:1013.190000px;}
.y11d{bottom:1014.630000px;}
.ya1{bottom:1018.410000px;}
.y47{bottom:1020.930000px;}
.y6{bottom:1021.290000px;}
.y152{bottom:1023.270000px;}
.ye{bottom:1026.150000px;}
.y4e{bottom:1032.990000px;}
.ya0{bottom:1035.330000px;}
.y11c{bottom:1035.870000px;}
.y151{bottom:1038.750000px;}
.yd{bottom:1041.810000px;}
.y11b{bottom:1052.430000px;}
.y9f{bottom:1052.610000px;}
.y4d{bottom:1052.790000px;}
.y150{bottom:1054.230000px;}
.yc{bottom:1057.830000px;}
.yb{bottom:1081.080000px;}
.y4b{bottom:1086.480000px;}
.ya{bottom:1106.640000px;}
.y9e{bottom:1113.660000px;}
.y4a{bottom:1122.660000px;}
.h18{height:21.225000px;}
.h13{height:23.319141px;}
.h11{height:29.664141px;}
.h14{height:29.678906px;}
.h16{height:35.332031px;}
.h17{height:40.985156px;}
.h10{height:42.086250px;}
.h24{height:45.035156px;}
.hb{height:47.321367px;}
.h1{height:47.344922px;}
.h21{height:48.616875px;}
.h1c{height:49.838906px;}
.h12{height:52.264673px;}
.h3{height:52.998047px;}
.h1e{height:54.421875px;}
.h23{height:55.503491px;}
.h5{height:56.084062px;}
.h1f{height:56.214844px;}
.ha{height:58.651172px;}
.h1d{height:59.439023px;}
.hd{height:60.226875px;}
.h1b{height:61.423863px;}
.h1a{height:62.211094px;}
.h20{height:65.010937px;}
.hf{height:65.518594px;}
.he{height:65.698594px;}
.h19{height:65.884219px;}
.h25{height:67.824844px;}
.h8{height:71.324297px;}
.h22{height:84.898125px;}
.h4{height:98.805000px;}
.h15{height:105.996094px;}
.h6{height:106.050000px;}
.h2{height:108.843750px;}
.hc{height:132.789375px;}
.h9{height:141.257812px;}
.h7{height:142.038984px;}
.h0{height:1188.000000px;}
.w2{width:82.965000px;}
.w1{width:760.635000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:10.798500px;}
.x1b{left:14.400000px;}
.x1{left:81.000000px;}
.x3{left:82.081500px;}
.x1e{left:108.036000px;}
.xb{left:117.216000px;}
.xe{left:118.296000px;}
.xc{left:138.456000px;}
.x22{left:158.250000px;}
.x17{left:162.030000px;}
.x15{left:185.790000px;}
.x13{left:198.030000px;}
.x10{left:200.550000px;}
.x11{left:201.630000px;}
.xf{left:262.110000px;}
.x6{left:336.135000px;}
.x1c{left:347.835000px;}
.x8{left:349.455000px;}
.x5{left:369.795000px;}
.xd{left:372.675000px;}
.x12{left:379.155000px;}
.x9{left:394.275000px;}
.x1f{left:416.055000px;}
.x16{left:422.895000px;}
.x7{left:423.975000px;}
.x20{left:434.775000px;}
.x1d{left:451.155000px;}
.x2{left:452.235000px;}
.xa{left:462.495000px;}
.x18{left:488.955000px;}
.x19{left:515.985000px;}
.x14{left:726.990000px;}
.x1a{left:761.730000px;}
.x21{left:849.030000px;}
@media print{
.v4{vertical-align:-44.160000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:24.480000pt;}
.ls1e{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.478933pt;}
.lsf{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.821333pt;}
.ls17{letter-spacing:2.080000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls1f{letter-spacing:8.480000pt;}
.ls18{letter-spacing:18.720000pt;}
.ls12{letter-spacing:25.120000pt;}
.ls11{letter-spacing:30.240000pt;}
.ls2{letter-spacing:58.880000pt;}
.ls5{letter-spacing:59.200000pt;}
.ls3{letter-spacing:59.520000pt;}
.ls6{letter-spacing:802.026667pt;}
.ws3{word-spacing:-32.806400pt;}
.ws5{word-spacing:-29.280000pt;}
.ws14{word-spacing:-14.101333pt;}
.wsd{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws13{word-spacing:-12.688000pt;}
.ws2{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws17{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.264000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws11{word-spacing:-10.241067pt;}
.ws1{word-spacing:-9.718933pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
._d{margin-left:-1.861760pt;}
._0{margin-left:-0.900480pt;}
._3{width:1.313280pt;}
._1{width:2.658560pt;}
._2{width:3.657387pt;}
._e{width:4.844373pt;}
._a{width:5.790080pt;}
._6{width:6.746240pt;}
._9{width:7.649280pt;}
._8{width:8.656000pt;}
._b{width:9.779840pt;}
._1c{width:11.527040pt;}
._2d{width:13.065600pt;}
._14{width:14.342400pt;}
._7{width:15.298560pt;}
._15{width:16.325120pt;}
._c{width:17.317120pt;}
._f{width:18.326400pt;}
._29{width:19.262720pt;}
._10{width:20.158507pt;}
._16{width:21.513600pt;}
._24{width:22.552320pt;}
._17{width:23.766827pt;}
._12{width:24.966400pt;}
._13{width:25.869440pt;}
._11{width:27.038080pt;}
._22{width:28.631680pt;}
._1b{width:30.119040pt;}
._21{width:31.468587pt;}
._20{width:32.799787pt;}
._25{width:33.747200pt;}
._1a{width:35.271680pt;}
._2b{width:36.189440pt;}
._1f{width:37.184000pt;}
._23{width:38.346240pt;}
._26{width:39.408000pt;}
._27{width:40.530347pt;}
._1e{width:42.315520pt;}
._1d{width:43.452160pt;}
._2a{width:47.259307pt;}
._2c{width:48.173867pt;}
._28{width:55.664000pt;}
._33{width:58.848000pt;}
._18{width:60.609920pt;}
._19{width:61.651200pt;}
._31{width:63.072000pt;}
._32{width:64.062720pt;}
._3b{width:68.256000pt;}
._2f{width:94.752000pt;}
._40{width:99.360000pt;}
._41{width:100.590720pt;}
._3d{width:108.336000pt;}
._3e{width:156.538667pt;}
._39{width:162.752000pt;}
._3c{width:170.980480pt;}
._42{width:173.024000pt;}
._43{width:174.528000pt;}
._38{width:179.568000pt;}
._34{width:184.058667pt;}
._37{width:196.032000pt;}
._3a{width:229.680000pt;}
._4{width:259.466667pt;}
._36{width:376.896000pt;}
._35{width:400.704000pt;}
._2e{width:413.088000pt;}
._3f{width:834.880000pt;}
._30{width:970.896000pt;}
._5{width:1075.520000pt;}
.fsd{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fsc{font-size:45.199037pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:117.120000pt;}
.fs8{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.680000pt;}
.y9{bottom:3.840000pt;}
.y48{bottom:12.800000pt;}
.y3{bottom:19.840000pt;}
.y4c{bottom:20.160000pt;}
.y8{bottom:27.360000pt;}
.y2{bottom:32.960000pt;}
.y1{bottom:44.160000pt;}
.y7{bottom:58.906667pt;}
.yf0{bottom:71.680000pt;}
.ybd{bottom:72.320000pt;}
.y7f{bottom:72.480000pt;}
.y5{bottom:74.066667pt;}
.y9d{bottom:74.880000pt;}
.y14f{bottom:75.680000pt;}
.y11a{bottom:76.320000pt;}
.y184{bottom:77.920000pt;}
.ye5{bottom:83.840000pt;}
.ybc{bottom:84.800000pt;}
.yef{bottom:89.280000pt;}
.y14e{bottom:89.440000pt;}
.y7e{bottom:90.080000pt;}
.y9c{bottom:90.240000pt;}
.y183{bottom:91.840000pt;}
.y119{bottom:93.920000pt;}
.ybb{bottom:98.720000pt;}
.ye4{bottom:101.440000pt;}
.y14d{bottom:103.200000pt;}
.y9b{bottom:105.600000pt;}
.y1a9{bottom:105.920000pt;}
.yee{bottom:107.040000pt;}
.y7d{bottom:107.680000pt;}
.y46{bottom:109.440000pt;}
.y118{bottom:111.520000pt;}
.yba{bottom:112.480000pt;}
.y3d{bottom:116.960000pt;}
.y14c{bottom:117.120000pt;}
.ye3{bottom:119.200000pt;}
.y182{bottom:119.360000pt;}
.y9a{bottom:120.960000pt;}
.y1a8{bottom:121.760000pt;}
.yb9{bottom:123.520000pt;}
.yed{bottom:124.640000pt;}
.y7c{bottom:125.120000pt;}
.y45{bottom:127.072000pt;}
.y117{bottom:128.992000pt;}
.y14b{bottom:130.912000pt;}
.y181{bottom:133.152000pt;}
.y3c{bottom:134.586667pt;}
.y99{bottom:136.346667pt;}
.ye2{bottom:136.826667pt;}
.y1a7{bottom:137.626667pt;}
.yec{bottom:142.266667pt;}
.y7b{bottom:143.066667pt;}
.y44{bottom:144.666667pt;}
.y116{bottom:146.586667pt;}
.y98{bottom:151.706667pt;}
.y3b{bottom:152.186667pt;}
.y180{bottom:152.346667pt;}
.y1a6{bottom:153.626667pt;}
.ye1{bottom:154.426667pt;}
.y14a{bottom:158.426667pt;}
.yeb{bottom:159.546667pt;}
.y7a{bottom:160.666667pt;}
.y43{bottom:162.266667pt;}
.y115{bottom:164.506667pt;}
.y17f{bottom:166.106667pt;}
.y97{bottom:166.906667pt;}
.y1a5{bottom:169.466667pt;}
.y3a{bottom:169.946667pt;}
.ye0{bottom:172.026667pt;}
.yea{bottom:177.146667pt;}
.y149{bottom:177.626667pt;}
.y79{bottom:178.266667pt;}
.y42{bottom:179.866667pt;}
.y4{bottom:181.480000pt;}
.y114{bottom:182.106667pt;}
.y96{bottom:182.266667pt;}
.y1a4{bottom:185.306667pt;}
.y39{bottom:187.546667pt;}
.ydf{bottom:189.626667pt;}
.y148{bottom:191.386667pt;}
.y17e{bottom:193.786667pt;}
.ye9{bottom:195.226667pt;}
.y78{bottom:195.866667pt;}
.y95{bottom:197.306667pt;}
.y41{bottom:197.626667pt;}
.y113{bottom:199.706667pt;}
.y1a3{bottom:201.146667pt;}
.y38{bottom:205.146667pt;}
.yde{bottom:207.386667pt;}
.y17d{bottom:207.546667pt;}
.ye8{bottom:212.826667pt;}
.y94{bottom:212.986667pt;}
.y77{bottom:213.626667pt;}
.y40{bottom:215.226667pt;}
.y1a2{bottom:216.986667pt;}
.y112{bottom:217.466667pt;}
.y147{bottom:219.066667pt;}
.y17c{bottom:221.306667pt;}
.y37{bottom:222.746667pt;}
.ydd{bottom:224.986667pt;}
.y93{bottom:230.426667pt;}
.y76{bottom:231.226667pt;}
.y3f{bottom:232.826667pt;}
.y1a1{bottom:232.986667pt;}
.y111{bottom:235.066667pt;}
.y36{bottom:238.746667pt;}
.y17b{bottom:240.506667pt;}
.ydc{bottom:242.586667pt;}
.y92{bottom:248.026667pt;}
.y75{bottom:248.826667pt;}
.y35{bottom:250.266667pt;}
.y3e{bottom:250.426667pt;}
.y146{bottom:251.866667pt;}
.y110{bottom:252.346667pt;}
.y17a{bottom:254.266667pt;}
.ydb{bottom:260.186667pt;}
.y1a0{bottom:264.666667pt;}
.y91{bottom:265.626667pt;}
.y145{bottom:265.786667pt;}
.y74{bottom:266.426667pt;}
.y179{bottom:268.026667pt;}
.y34{bottom:270.266667pt;}
.yda{bottom:277.786667pt;}
.y144{bottom:279.546667pt;}
.y33{bottom:280.666667pt;}
.y178{bottom:281.786667pt;}
.y19f{bottom:282.426667pt;}
.y90{bottom:283.386667pt;}
.y73{bottom:284.026667pt;}
.y10f{bottom:285.786667pt;}
.y32{bottom:291.226667pt;}
.y143{bottom:293.306667pt;}
.yd9{bottom:295.546667pt;}
.y177{bottom:295.706667pt;}
.y8f{bottom:300.986667pt;}
.y10e{bottom:301.146667pt;}
.y19e{bottom:301.466667pt;}
.y72{bottom:301.786667pt;}
.y31{bottom:304.986667pt;}
.y142{bottom:307.066667pt;}
.y176{bottom:309.466667pt;}
.yd8{bottom:313.146667pt;}
.y10d{bottom:316.186667pt;}
.y30{bottom:316.346667pt;}
.y8e{bottom:318.586667pt;}
.y71{bottom:319.386667pt;}
.y141{bottom:320.986667pt;}
.y19d{bottom:323.386667pt;}
.yb8{bottom:327.226667pt;}
.y175{bottom:328.506667pt;}
.yd7{bottom:330.746667pt;}
.y10c{bottom:331.386667pt;}
.y2f{bottom:333.946667pt;}
.y8d{bottom:336.226667pt;}
.y70{bottom:336.706667pt;}
.y140{bottom:340.066667pt;}
.y174{bottom:342.466667pt;}
.yb7{bottom:343.426667pt;}
.y19c{bottom:345.346667pt;}
.y10b{bottom:347.106667pt;}
.yd6{bottom:348.386667pt;}
.y2e{bottom:351.746667pt;}
.y8c{bottom:353.826667pt;}
.y6f{bottom:354.626667pt;}
.y173{bottom:356.226667pt;}
.yb6{bottom:357.186667pt;}
.y10a{bottom:362.466667pt;}
.yd5{bottom:365.986667pt;}
.y19b{bottom:367.266667pt;}
.y13f{bottom:367.746667pt;}
.y2d{bottom:369.346667pt;}
.y172{bottom:369.986667pt;}
.y6e{bottom:370.146667pt;}
.yb5{bottom:371.106667pt;}
.y8b{bottom:371.586667pt;}
.y109{bottom:377.506667pt;}
.y13e{bottom:381.506667pt;}
.yb4{bottom:381.986667pt;}
.yd4{bottom:383.746667pt;}
.y6d{bottom:385.506667pt;}
.y2c{bottom:386.946667pt;}
.y8a{bottom:389.186667pt;}
.y108{bottom:393.186667pt;}
.y13d{bottom:400.706667pt;}
.y6c{bottom:400.866667pt;}
.yd3{bottom:401.346667pt;}
.y171{bottom:402.946667pt;}
.y2b{bottom:404.546667pt;}
.y89{bottom:406.466667pt;}
.ye7{bottom:406.786667pt;}
.y107{bottom:408.546667pt;}
.y19a{bottom:411.106667pt;}
.y13c{bottom:414.466667pt;}
.y6b{bottom:416.226667pt;}
.y170{bottom:416.706667pt;}
.yd2{bottom:418.946667pt;}
.y2a{bottom:422.146667pt;}
.y106{bottom:423.746667pt;}
.y88{bottom:424.066667pt;}
.ye6{bottom:424.386667pt;}
.y13b{bottom:428.226667pt;}
.y16f{bottom:430.466667pt;}
.y6a{bottom:431.426667pt;}
.y199{bottom:432.866667pt;}
.yd1{bottom:436.546667pt;}
.y105{bottom:439.106667pt;}
.y29{bottom:439.906667pt;}
.y87{bottom:441.986667pt;}
.y69{bottom:446.786667pt;}
.y16e{bottom:449.666667pt;}
.yd0{bottom:454.146667pt;}
.y104{bottom:454.466667pt;}
.y198{bottom:454.786667pt;}
.y13a{bottom:455.906667pt;}
.y28{bottom:457.506667pt;}
.y86{bottom:459.746667pt;}
.y68{bottom:461.826667pt;}
.y16d{bottom:463.426667pt;}
.y103{bottom:469.826667pt;}
.ycf{bottom:471.906667pt;}
.y139{bottom:474.946667pt;}
.y27{bottom:475.106667pt;}
.y197{bottom:476.706667pt;}
.y67{bottom:477.186667pt;}
.y85{bottom:477.346667pt;}
.y102{bottom:485.186667pt;}
.y138{bottom:488.706667pt;}
.yce{bottom:489.506667pt;}
.y16c{bottom:491.106667pt;}
.y26{bottom:492.706667pt;}
.y66{bottom:494.626667pt;}
.y84{bottom:494.946667pt;}
.y196{bottom:498.626667pt;}
.y101{bottom:500.546667pt;}
.y137{bottom:502.626667pt;}
.y16b{bottom:504.866667pt;}
.ycd{bottom:507.106667pt;}
.y25{bottom:510.306667pt;}
.y65{bottom:512.226667pt;}
.y83{bottom:512.546667pt;}
.y100{bottom:515.746667pt;}
.y136{bottom:516.386667pt;}
.y195{bottom:520.546667pt;}
.y16a{bottom:524.066667pt;}
.ycc{bottom:524.706667pt;}
.y24{bottom:528.066667pt;}
.y64{bottom:530.146667pt;}
.yff{bottom:531.106667pt;}
.y169{bottom:537.826667pt;}
.ycb{bottom:542.306667pt;}
.y194{bottom:542.493333pt;}
.y23{bottom:545.693333pt;}
.yfe{bottom:546.493333pt;}
.y63{bottom:547.933333pt;}
.y135{bottom:549.373333pt;}
.y168{bottom:551.613333pt;}
.yca{bottom:560.093333pt;}
.yfd{bottom:561.853333pt;}
.y134{bottom:563.133333pt;}
.y22{bottom:563.293333pt;}
.y193{bottom:564.413333pt;}
.y167{bottom:565.373333pt;}
.y62{bottom:565.533333pt;}
.y133{bottom:576.893333pt;}
.yfc{bottom:577.213333pt;}
.yc9{bottom:577.373333pt;}
.y166{bottom:579.293333pt;}
.y21{bottom:580.893333pt;}
.y61{bottom:583.133333pt;}
.y192{bottom:586.333333pt;}
.y132{bottom:590.653333pt;}
.yfb{bottom:592.573333pt;}
.yc8{bottom:597.213333pt;}
.y165{bottom:598.333333pt;}
.y60{bottom:600.733333pt;}
.y20{bottom:603.773333pt;}
.yfa{bottom:607.453333pt;}
.y191{bottom:608.253333pt;}
.y131{bottom:609.853333pt;}
.y164{bottom:612.093333pt;}
.yc7{bottom:617.213333pt;}
.y5f{bottom:618.333333pt;}
.yf9{bottom:623.133333pt;}
.y130{bottom:623.613333pt;}
.y1f{bottom:624.893333pt;}
.y163{bottom:626.013333pt;}
.yb3{bottom:629.213333pt;}
.yc6{bottom:629.373333pt;}
.y190{bottom:630.013333pt;}
.y5e{bottom:636.093333pt;}
.y12f{bottom:637.373333pt;}
.y162{bottom:639.773333pt;}
.y1e{bottom:640.093333pt;}
.yf8{bottom:640.573333pt;}
.yc5{bottom:642.013333pt;}
.yb2{bottom:644.573333pt;}
.y12e{bottom:651.293333pt;}
.y18f{bottom:651.933333pt;}
.y161{bottom:653.533333pt;}
.y5d{bottom:653.693333pt;}
.yc4{bottom:655.773333pt;}
.yf7{bottom:658.333333pt;}
.y1d{bottom:659.613333pt;}
.yb1{bottom:659.933333pt;}
.y1c{bottom:666.973333pt;}
.y160{bottom:667.293333pt;}
.yc3{bottom:669.533333pt;}
.y12d{bottom:670.333333pt;}
.y5c{bottom:671.293333pt;}
.y1b{bottom:671.613333pt;}
.y18e{bottom:672.733333pt;}
.yb0{bottom:675.293333pt;}
.yf6{bottom:675.933333pt;}
.yc2{bottom:683.293333pt;}
.y1a{bottom:683.933333pt;}
.y12c{bottom:684.253333pt;}
.y15f{bottom:686.493333pt;}
.y82{bottom:688.573333pt;}
.y5b{bottom:688.893333pt;}
.yaf{bottom:690.653333pt;}
.y18d{bottom:691.773333pt;}
.yf5{bottom:693.533333pt;}
.y19{bottom:696.253333pt;}
.yc1{bottom:697.213333pt;}
.y12b{bottom:698.013333pt;}
.y15e{bottom:700.253333pt;}
.y18c{bottom:705.533333pt;}
.yae{bottom:706.013333pt;}
.y81{bottom:706.173333pt;}
.y5a{bottom:706.493333pt;}
.y18{bottom:708.413333pt;}
.yf4{bottom:710.813333pt;}
.yc0{bottom:710.973333pt;}
.y12a{bottom:711.773333pt;}
.y15d{bottom:714.013333pt;}
.y17{bottom:715.453333pt;}
.y18b{bottom:719.453333pt;}
.yad{bottom:721.213333pt;}
.y80{bottom:723.933333pt;}
.y59{bottom:724.253333pt;}
.ybf{bottom:724.733333pt;}
.y129{bottom:725.533333pt;}
.yf3{bottom:726.333333pt;}
.y15c{bottom:727.933333pt;}
.y16{bottom:729.693333pt;}
.y18a{bottom:733.213333pt;}
.yac{bottom:736.573333pt;}
.ybe{bottom:738.013333pt;}
.y128{bottom:739.293333pt;}
.yf2{bottom:741.693333pt;}
.y58{bottom:741.853333pt;}
.y189{bottom:746.973333pt;}
.y15{bottom:749.693333pt;}
.yab{bottom:751.973333pt;}
.y127{bottom:758.533333pt;}
.yf1{bottom:759.173333pt;}
.y57{bottom:759.493333pt;}
.y15b{bottom:760.773333pt;}
.yaa{bottom:767.333333pt;}
.y14{bottom:769.413333pt;}
.y126{bottom:772.293333pt;}
.y15a{bottom:774.693333pt;}
.y56{bottom:777.093333pt;}
.y188{bottom:779.973333pt;}
.ya9{bottom:782.693333pt;}
.y125{bottom:786.213333pt;}
.y13{bottom:788.453333pt;}
.y187{bottom:793.733333pt;}
.y55{bottom:794.693333pt;}
.ya8{bottom:797.733333pt;}
.y124{bottom:799.973333pt;}
.y159{bottom:802.213333pt;}
.y186{bottom:807.493333pt;}
.y54{bottom:812.453333pt;}
.ya7{bottom:812.933333pt;}
.y123{bottom:813.733333pt;}
.y158{bottom:821.413333pt;}
.y12{bottom:822.213333pt;}
.y122{bottom:827.493333pt;}
.ya6{bottom:828.613333pt;}
.y53{bottom:830.053333pt;}
.y157{bottom:835.173333pt;}
.ya5{bottom:843.973333pt;}
.y121{bottom:846.693333pt;}
.y52{bottom:847.653333pt;}
.y156{bottom:848.933333pt;}
.y11{bottom:855.973333pt;}
.ya4{bottom:859.333333pt;}
.y120{bottom:860.453333pt;}
.y155{bottom:862.693333pt;}
.y51{bottom:865.253333pt;}
.y185{bottom:868.133333pt;}
.y11f{bottom:874.213333pt;}
.ya3{bottom:874.693333pt;}
.y154{bottom:881.893333pt;}
.y50{bottom:882.853333pt;}
.y10{bottom:887.173333pt;}
.y11e{bottom:888.133333pt;}
.ya2{bottom:890.053333pt;}
.y153{bottom:895.653333pt;}
.yf{bottom:899.973333pt;}
.y4f{bottom:900.613333pt;}
.y11d{bottom:901.893333pt;}
.ya1{bottom:905.253333pt;}
.y47{bottom:907.493333pt;}
.y6{bottom:907.813333pt;}
.y152{bottom:909.573333pt;}
.ye{bottom:912.133333pt;}
.y4e{bottom:918.213333pt;}
.ya0{bottom:920.293333pt;}
.y11c{bottom:920.773333pt;}
.y151{bottom:923.333333pt;}
.yd{bottom:926.053333pt;}
.y11b{bottom:935.493333pt;}
.y9f{bottom:935.653333pt;}
.y4d{bottom:935.813333pt;}
.y150{bottom:937.093333pt;}
.yc{bottom:940.293333pt;}
.yb{bottom:960.960000pt;}
.y4b{bottom:965.760000pt;}
.ya{bottom:983.680000pt;}
.y9e{bottom:989.920000pt;}
.y4a{bottom:997.920000pt;}
.h18{height:18.866667pt;}
.h13{height:20.728125pt;}
.h11{height:26.368125pt;}
.h14{height:26.381250pt;}
.h16{height:31.406250pt;}
.h17{height:36.431250pt;}
.h10{height:37.410000pt;}
.h24{height:40.031250pt;}
.hb{height:42.063437pt;}
.h1{height:42.084375pt;}
.h21{height:43.215000pt;}
.h1c{height:44.301250pt;}
.h12{height:46.457487pt;}
.h3{height:47.109375pt;}
.h1e{height:48.375000pt;}
.h23{height:49.336436pt;}
.h5{height:49.852500pt;}
.h1f{height:49.968750pt;}
.ha{height:52.134375pt;}
.h1d{height:52.834688pt;}
.hd{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h1a{height:55.298750pt;}
.h20{height:57.787500pt;}
.hf{height:58.238750pt;}
.he{height:58.398750pt;}
.h19{height:58.563750pt;}
.h25{height:60.288750pt;}
.h8{height:63.399375pt;}
.h22{height:75.465000pt;}
.h4{height:87.826667pt;}
.h15{height:94.218750pt;}
.h6{height:94.266667pt;}
.h2{height:96.750000pt;}
.hc{height:118.035000pt;}
.h9{height:125.562500pt;}
.h7{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w2{width:73.746667pt;}
.w1{width:676.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.598667pt;}
.x1b{left:12.800000pt;}
.x1{left:72.000000pt;}
.x3{left:72.961333pt;}
.x1e{left:96.032000pt;}
.xb{left:104.192000pt;}
.xe{left:105.152000pt;}
.xc{left:123.072000pt;}
.x22{left:140.666667pt;}
.x17{left:144.026667pt;}
.x15{left:165.146667pt;}
.x13{left:176.026667pt;}
.x10{left:178.266667pt;}
.x11{left:179.226667pt;}
.xf{left:232.986667pt;}
.x6{left:298.786667pt;}
.x1c{left:309.186667pt;}
.x8{left:310.626667pt;}
.x5{left:328.706667pt;}
.xd{left:331.266667pt;}
.x12{left:337.026667pt;}
.x9{left:350.466667pt;}
.x1f{left:369.826667pt;}
.x16{left:375.906667pt;}
.x7{left:376.866667pt;}
.x20{left:386.466667pt;}
.x1d{left:401.026667pt;}
.x2{left:401.986667pt;}
.xa{left:411.106667pt;}
.x18{left:434.626667pt;}
.x19{left:458.653333pt;}
.x14{left:646.213333pt;}
.x1a{left:677.093333pt;}
.x21{left:754.693333pt;}
}




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