
    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_e43f0b82a2d8ef4b6ad2e482.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_a1700f3ef06c1d8d8cbd3b0c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c2d3b8831c248c65df67a2c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_eaea34492edd433da4ff35a3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f1856f1275d32ac9de8788ac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_36779ea61ab0cab8c6036451.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3847c0d31a76d71c9fe616da.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_96866a8345496106c3dcc452.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_6ecf8f0b7576bd81535126bf.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6266d1f75f0ddf29f5fb61c8.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_89b00cd2c635824db624007a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ca055b8b6ec03744cca27da.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884766;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_626667c7b1e80c3464d2f562.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c1ec4575c58e410623c42324.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4a60e9ffce0c7d572968a5e6.woff')format("woff");}.ff10{font-family:ff10;line-height:1.064941;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_23e9994f008c4877d4190630.woff')format("woff");}.ff11{font-family:ff11;line-height:0.800293;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ff12{font-family:ff12;line-height:0.688477;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:ff13;src:url('chunks/assets/font_d7a43d927bbc7d85ccd9efa5.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_90cd9f277149e02234100c02.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_43fda0f1cb4bea497b975e6d.woff')format("woff");}.ff15{font-family:ff15;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.100800px;}
.ls0{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.252600px;}
.lsb{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.466800px;}
.ls6{letter-spacing:0.483600px;}
.ls8{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.582000px;}
.ls3{letter-spacing:0.636000px;}
.lse{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.440000px;}
.ls9{letter-spacing:33.960000px;}
.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:-18.504000px;}
.ws8{word-spacing:-18.000000px;}
.wse{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.238800px;}
.wsb{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.348960px;}
.ws1{word-spacing:-12.294960px;}
.ws7{word-spacing:-11.880000px;}
.ws9{word-spacing:-10.865400px;}
.ws5{word-spacing:-10.421040px;}
.ws4{word-spacing:-9.937440px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-13.950240px;}
._10{margin-left:-2.382480px;}
._0{margin-left:-1.134000px;}
._1{width:1.374480px;}
._c{width:2.697120px;}
._d{width:3.768000px;}
._11{width:5.400000px;}
._13{width:6.598560px;}
._9{width:7.920000px;}
._a{width:9.000000px;}
._b{width:10.080000px;}
._12{width:11.448000px;}
._16{width:12.672000px;}
._e{width:13.752000px;}
._f{width:14.976000px;}
._18{width:16.830000px;}
._1a{width:19.224000px;}
._22{width:20.232000px;}
._19{width:21.528000px;}
._7{width:22.896000px;}
._8{width:24.480000px;}
._17{width:25.668000px;}
._14{width:26.856000px;}
._15{width:28.229520px;}
._6{width:29.448000px;}
._3{width:30.870000px;}
._21{width:32.040000px;}
._1f{width:33.408000px;}
._20{width:34.763040px;}
._1c{width:37.584000px;}
._1b{width:38.790000px;}
._1d{width:45.864000px;}
._1e{width:47.160000px;}
._4{width:1091.557200px;}
._2{width:2098.266000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs6{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.yce{bottom:-3.795000px;}
.yd3{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y34{bottom:1.590000px;}
.y32{bottom:2.670000px;}
.y36{bottom:2.850000px;}
.y3{bottom:4.500000px;}
.yb2{bottom:4.680000px;}
.y8b{bottom:4.860000px;}
.y69{bottom:4.860150px;}
.y4{bottom:5.040000px;}
.y3a{bottom:6.660000px;}
.yd4{bottom:10.260000px;}
.y109{bottom:12.405000px;}
.yee{bottom:12.420000px;}
.y10b{bottom:12.765000px;}
.yf0{bottom:12.780000px;}
.yf5{bottom:12.825000px;}
.y68{bottom:13.139850px;}
.y12b{bottom:13.860000px;}
.yb1{bottom:14.220000px;}
.y113{bottom:14.580000px;}
.ycb{bottom:14.745000px;}
.yd1{bottom:14.760000px;}
.yd7{bottom:14.940000px;}
.ycd{bottom:15.105000px;}
.yd2{bottom:15.120000px;}
.yd8{bottom:15.300000px;}
.yfc{bottom:15.480000px;}
.y8a{bottom:15.660000px;}
.yfd{bottom:18.360000px;}
.y107{bottom:20.865000px;}
.y146{bottom:21.765000px;}
.y130{bottom:21.780000px;}
.y141{bottom:21.945000px;}
.y134{bottom:21.960000px;}
.y13a{bottom:21.990000px;}
.y3e{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.ydc{bottom:24.840000px;}
.ydb{bottom:25.200000px;}
.y39{bottom:26.460000px;}
.y108{bottom:29.505000px;}
.y5{bottom:33.840000px;}
.yda{bottom:34.740000px;}
.y38{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y145{bottom:43.545000px;}
.y12f{bottom:43.560000px;}
.y140{bottom:43.725000px;}
.y132{bottom:43.740000px;}
.y139{bottom:43.770000px;}
.y6{bottom:62.640000px;}
.y143{bottom:65.505000px;}
.y13b{bottom:65.520000px;}
.y13e{bottom:65.550000px;}
.yb0{bottom:113.580000px;}
.y112{bottom:117.360000px;}
.y67{bottom:123.120000px;}
.y30{bottom:124.560000px;}
.yec{bottom:129.240000px;}
.y89{bottom:131.580000px;}
.y149{bottom:133.380000px;}
.yaf{bottom:146.340000px;}
.y66{bottom:147.060000px;}
.y2f{bottom:148.320000px;}
.y111{bottom:150.120000px;}
.y88{bottom:155.340000px;}
.yeb{bottom:162.000000px;}
.y65{bottom:170.820000px;}
.y148{bottom:171.540000px;}
.y2e{bottom:172.080000px;}
.yd0{bottom:173.340000px;}
.yae{bottom:179.280000px;}
.y110{bottom:182.880000px;}
.y87{bottom:187.920000px;}
.y64{bottom:194.580000px;}
.yea{bottom:194.760000px;}
.y2d{bottom:195.840000px;}
.y147{bottom:209.730000px;}
.yad{bottom:212.070000px;}
.y10f{bottom:215.850000px;}
.y63{bottom:218.370000px;}
.y12a{bottom:219.630000px;}
.y86{bottom:221.070000px;}
.ycf{bottom:223.605000px;}
.ye9{bottom:228.090000px;}
.y144{bottom:228.825000px;}
.y2c{bottom:234.390000px;}
.yac{bottom:235.830000px;}
.y10e{bottom:241.965000px;}
.y62{bottom:242.310000px;}
.y129{bottom:243.570000px;}
.y85{bottom:244.830000px;}
.ye8{bottom:251.850000px;}
.y2b{bottom:258.870000px;}
.y61{bottom:266.070000px;}
.y128{bottom:267.330000px;}
.yab{bottom:268.590000px;}
.ycc{bottom:273.825000px;}
.ye7{bottom:275.610000px;}
.y84{bottom:277.590000px;}
.y10d{bottom:277.965000px;}
.y2a{bottom:283.170000px;}
.y127{bottom:291.090000px;}
.y142{bottom:291.825000px;}
.yaa{bottom:292.530000px;}
.y60{bottom:298.470000px;}
.ye6{bottom:299.370000px;}
.y29{bottom:307.470000px;}
.y83{bottom:310.530000px;}
.y10c{bottom:313.965000px;}
.y126{bottom:314.850000px;}
.ya9{bottom:316.290000px;}
.ye5{bottom:323.310000px;}
.yca{bottom:329.625000px;}
.y5f{bottom:331.230000px;}
.y28{bottom:331.770000px;}
.y82{bottom:334.290000px;}
.y125{bottom:338.790000px;}
.ya8{bottom:340.050000px;}
.ye4{bottom:347.070000px;}
.y10a{bottom:349.965000px;}
.y27{bottom:355.530000px;}
.y81{bottom:358.050000px;}
.y124{bottom:362.550000px;}
.ya7{bottom:363.810000px;}
.y5e{bottom:364.530000px;}
.ye3{bottom:370.830000px;}
.y13f{bottom:376.785000px;}
.y26{bottom:379.470000px;}
.y80{bottom:381.810000px;}
.y106{bottom:385.965000px;}
.ya6{bottom:387.750000px;}
.y5d{bottom:388.290000px;}
.ye2{bottom:394.590000px;}
.y123{bottom:394.950000px;}
.yc9{bottom:395.850000px;}
.y7f{bottom:405.750000px;}
.y25{bottom:411.690000px;}
.y5c{bottom:412.050000px;}
.ye1{bottom:418.530000px;}
.ya5{bottom:420.150000px;}
.y122{bottom:425.190000px;}
.yc8{bottom:429.150000px;}
.y24{bottom:434.370000px;}
.y5b{bottom:435.810000px;}
.y7e{bottom:438.150000px;}
.y13d{bottom:439.965000px;}
.y121{bottom:445.935000px;}
.y23{bottom:451.335000px;}
.yc7{bottom:452.955000px;}
.ya4{bottom:453.315000px;}
.y105{bottom:455.295000px;}
.y5a{bottom:459.795000px;}
.y120{bottom:466.635000px;}
.y7d{bottom:470.955000px;}
.y22{bottom:475.275000px;}
.yc6{bottom:476.715000px;}
.ya3{bottom:477.075000px;}
.y59{bottom:483.555000px;}
.ye0{bottom:483.735000px;}
.y104{bottom:488.415000px;}
.y11f{bottom:496.335000px;}
.y21{bottom:499.035000px;}
.y7c{bottom:504.075000px;}
.y58{bottom:507.315000px;}
.yc5{bottom:509.475000px;}
.ya2{bottom:510.015000px;}
.y103{bottom:512.175000px;}
.ydf{bottom:512.535000px;}
.y11e{bottom:517.035000px;}
.y20{bottom:522.795000px;}
.y13c{bottom:524.955000px;}
.y7b{bottom:528.015000px;}
.y57{bottom:531.075000px;}
.yc4{bottom:533.235000px;}
.y11d{bottom:537.735000px;}
.ya1{bottom:542.775000px;}
.y102{bottom:544.575000px;}
.y1f{bottom:546.555000px;}
.yc3{bottom:557.175000px;}
.y7a{bottom:560.775000px;}
.y56{bottom:564.015000px;}
.ya0{bottom:566.535000px;}
.y11c{bottom:567.435000px;}
.y1e{bottom:570.495000px;}
.y101{bottom:577.875000px;}
.yc2{bottom:580.935000px;}
.y79{bottom:584.535000px;}
.y55{bottom:587.775000px;}
.y11b{bottom:588.135000px;}
.y9f{bottom:590.295000px;}
.y1d{bottom:594.255000px;}
.y100{bottom:601.635000px;}
.yc1{bottom:604.695000px;}
.y78{bottom:608.295000px;}
.y54{bottom:611.535000px;}
.y9e{bottom:614.055000px;}
.y11a{bottom:617.835000px;}
.y1c{bottom:618.015000px;}
.yff{bottom:625.395000px;}
.yc0{bottom:628.455000px;}
.y53{bottom:635.295000px;}
.y9d{bottom:637.995000px;}
.y119{bottom:638.535000px;}
.y77{bottom:641.055000px;}
.y1b{bottom:650.415000px;}
.ybf{bottom:652.395000px;}
.yfe{bottom:658.155000px;}
.y52{bottom:659.055000px;}
.y76{bottom:664.995000px;}
.y118{bottom:668.235000px;}
.y9c{bottom:670.395000px;}
.y138{bottom:673.095000px;}
.y1a{bottom:675.615000px;}
.y51{bottom:683.025000px;}
.yfb{bottom:684.465000px;}
.ybe{bottom:684.825000px;}
.y75{bottom:688.785000px;}
.y117{bottom:688.965000px;}
.y19{bottom:697.425000px;}
.y9b{bottom:703.545000px;}
.y50{bottom:706.785000px;}
.y18{bottom:720.645000px;}
.y74{bottom:721.185000px;}
.y116{bottom:721.545000px;}
.ybd{bottom:723.165000px;}
.yfa{bottom:726.045000px;}
.y9a{bottom:727.305000px;}
.y4f{bottom:730.545000px;}
.y137{bottom:736.305000px;}
.y17{bottom:743.865000px;}
.y115{bottom:745.305000px;}
.y73{bottom:754.305000px;}
.ybc{bottom:758.265000px;}
.y99{bottom:760.245000px;}
.yf9{bottom:762.045000px;}
.y4e{bottom:763.305000px;}
.y16{bottom:766.905000px;}
.y114{bottom:777.885000px;}
.y72{bottom:778.245000px;}
.ybb{bottom:778.965000px;}
.y4d{bottom:787.245000px;}
.y15{bottom:790.125000px;}
.y98{bottom:793.005000px;}
.yf8{bottom:798.045000px;}
.y136{bottom:799.305000px;}
.yba{bottom:799.665000px;}
.y71{bottom:802.005000px;}
.y4c{bottom:811.005000px;}
.y97{bottom:816.765000px;}
.y14{bottom:821.445000px;}
.y70{bottom:825.765000px;}
.yb9{bottom:829.365000px;}
.yf7{bottom:834.045000px;}
.y4b{bottom:834.765000px;}
.y96{bottom:840.525000px;}
.y13{bottom:841.425000px;}
.y6f{bottom:849.525000px;}
.yb8{bottom:850.065000px;}
.y12{bottom:855.825000px;}
.y4a{bottom:858.525000px;}
.y135{bottom:862.485000px;}
.y95{bottom:864.465000px;}
.yf6{bottom:870.045000px;}
.yb7{bottom:870.765000px;}
.y11{bottom:872.565000px;}
.y6e{bottom:873.465000px;}
.y49{bottom:882.465000px;}
.y94{bottom:888.225000px;}
.y6d{bottom:897.225000px;}
.yb6{bottom:900.465000px;}
.y10{bottom:904.965000px;}
.yf4{bottom:906.045000px;}
.y93{bottom:912.030000px;}
.y48{bottom:915.270000px;}
.yb5{bottom:921.210000px;}
.y133{bottom:925.710000px;}
.y6c{bottom:929.670000px;}
.yde{bottom:933.630000px;}
.y92{bottom:935.790000px;}
.yf{bottom:937.410000px;}
.y47{bottom:939.030000px;}
.yf3{bottom:942.090000px;}
.yb4{bottom:953.790000px;}
.ye{bottom:962.070000px;}
.y46{bottom:962.790000px;}
.ydd{bottom:966.930000px;}
.y91{bottom:968.370000px;}
.yd{bottom:973.590000px;}
.yb3{bottom:977.730000px;}
.yf2{bottom:978.090000px;}
.y45{bottom:986.730000px;}
.y31{bottom:986.760000px;}
.y35{bottom:987.120000px;}
.y33{bottom:988.380000px;}
.y131{bottom:988.890000px;}
.yc{bottom:993.390000px;}
.yd9{bottom:998.970000px;}
.y90{bottom:1001.490000px;}
.y44{bottom:1010.490000px;}
.yf1{bottom:1014.090000px;}
.y8f{bottom:1025.250000px;}
.yb{bottom:1027.590000px;}
.y43{bottom:1034.250000px;}
.yef{bottom:1050.090000px;}
.y12e{bottom:1052.070000px;}
.y42{bottom:1058.010000px;}
.ya{bottom:1062.870000px;}
.yd6{bottom:1068.990000px;}
.y41{bottom:1081.950000px;}
.yed{bottom:1086.090000px;}
.y8e{bottom:1090.950000px;}
.y9{bottom:1101.030000px;}
.y40{bottom:1105.710000px;}
.y8d{bottom:1114.710000px;}
.y12d{bottom:1118.670000px;}
.yd5{bottom:1119.210000px;}
.y3f{bottom:1138.110000px;}
.y12c{bottom:1138.290000px;}
.y8c{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y3d{bottom:1164.600000px;}
.y3c{bottom:1180.440000px;}
.y6b{bottom:1183.500000px;}
.y3b{bottom:1196.280000px;}
.y6a{bottom:1197.540000px;}
.y37{bottom:1207.980000px;}
.h19{height:13.500000px;}
.h17{height:14.580000px;}
.h1b{height:14.760000px;}
.h23{height:18.000000px;}
.h21{height:18.180000px;}
.h1c{height:24.380859px;}
.h6{height:24.840000px;}
.hc{height:25.603594px;}
.h2b{height:28.830000px;}
.h2e{height:35.265000px;}
.h30{height:35.280000px;}
.h2f{height:35.302500px;}
.ha{height:36.281250px;}
.h26{height:37.785000px;}
.h2a{height:37.798500px;}
.h29{height:37.836000px;}
.h2c{height:37.965000px;}
.h2{height:38.405391px;}
.h18{height:38.464805px;}
.h8{height:38.469727px;}
.h1f{height:40.843828px;}
.h31{height:40.860000px;}
.h15{height:40.985156px;}
.h9{height:42.573164px;}
.h1d{height:43.057617px;}
.h1e{height:45.720703px;}
.h3d{height:46.251562px;}
.h1a{height:47.650430px;}
.h4{height:49.680000px;}
.h14{height:50.273438px;}
.h32{height:52.365000px;}
.h5{height:52.817344px;}
.h10{height:53.302500px;}
.h7{height:53.709961px;}
.hd{height:54.421875px;}
.h25{height:56.084062px;}
.h2d{height:57.765000px;}
.he{height:57.937500px;}
.h34{height:58.485000px;}
.h39{height:58.500000px;}
.h28{height:58.651172px;}
.h36{height:58.665000px;}
.h38{height:58.680000px;}
.h37{height:58.702500px;}
.h3a{height:58.710000px;}
.h11{height:59.439023px;}
.h27{height:60.226875px;}
.h16{height:60.960938px;}
.h35{height:65.010937px;}
.h12{height:65.837812px;}
.h3{height:65.884219px;}
.hf{height:67.824844px;}
.h22{height:70.628906px;}
.h13{height:70.664062px;}
.h20{height:72.562500px;}
.h33{height:73.722656px;}
.h24{height:74.004654px;}
.h3b{height:80.445000px;}
.h3c{height:80.481000px;}
.hb{height:81.078047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:29.689500px;}
.wc{width:46.245000px;}
.wb{width:53.269500px;}
.wd{width:59.565000px;}
.w13{width:59.745000px;}
.we{width:59.781000px;}
.w10{width:59.796000px;}
.w11{width:66.405000px;}
.w12{width:66.441000px;}
.w23{width:67.860000px;}
.w1f{width:70.020000px;}
.wa{width:70.920000px;}
.w9{width:71.640000px;}
.w20{width:73.800000px;}
.w14{width:75.420000px;}
.w8{width:76.860000px;}
.wf{width:86.580000px;}
.w15{width:88.369500px;}
.w2{width:90.000000px;}
.w1c{width:92.016000px;}
.w1d{width:94.845000px;}
.w7{width:107.100000px;}
.w4{width:109.800000px;}
.w17{width:120.636000px;}
.w18{width:127.425000px;}
.w1b{width:140.940000px;}
.w16{width:140.961000px;}
.w5{width:143.280000px;}
.w19{width:147.801000px;}
.w1e{width:158.775000px;}
.w1a{width:189.559500px;}
.w6{width:221.400000px;}
.w3{width:626.400000px;}
.w22{width:647.370000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:1.069500px;}
.x2c{left:5.029500px;}
.x3f{left:7.560000px;}
.x32{left:8.629500px;}
.x14{left:10.836000px;}
.x25{left:12.420000px;}
.x3{left:14.730000px;}
.x12{left:20.130000px;}
.x46{left:21.780000px;}
.x49{left:25.365000px;}
.x43{left:27.360000px;}
.x34{left:30.045000px;}
.x36{left:31.860000px;}
.x4a{left:38.370000px;}
.x38{left:39.405000px;}
.x3b{left:40.860000px;}
.x44{left:41.940000px;}
.x3d{left:43.050000px;}
.x3c{left:46.605000px;}
.x16{left:51.015000px;}
.x3e{left:52.185000px;}
.x3a{left:53.490000px;}
.x40{left:56.910000px;}
.x4{left:93.960000px;}
.x41{left:100.306500px;}
.x20{left:102.646500px;}
.x4c{left:106.966500px;}
.x1{left:108.036000px;}
.x10{left:109.116000px;}
.x7{left:111.456000px;}
.x6{left:113.976000px;}
.x1f{left:119.736000px;}
.x13{left:122.400000px;}
.x31{left:132.346500px;}
.x1d{left:135.036000px;}
.x4e{left:139.006500px;}
.x21{left:157.005000px;}
.x1e{left:162.030000px;}
.x17{left:186.870000px;}
.xf{left:199.290000px;}
.x22{left:204.345000px;}
.x33{left:221.445000px;}
.x19{left:222.870000px;}
.x1b{left:252.210000px;}
.x23{left:265.005000px;}
.xc{left:282.315000px;}
.x30{left:287.895000px;}
.x42{left:290.775000px;}
.x8{left:321.915000px;}
.x2d{left:322.995000px;}
.x24{left:325.875000px;}
.x15{left:347.220000px;}
.x35{left:363.315000px;}
.xb{left:365.475000px;}
.xe{left:376.995000px;}
.x18{left:381.315000px;}
.x26{left:413.535000px;}
.x45{left:432.435000px;}
.xa{left:435.135000px;}
.xd{left:440.715000px;}
.x9{left:446.475000px;}
.x5{left:454.965000px;}
.x27{left:474.420000px;}
.x37{left:484.860000px;}
.x47{left:525.360000px;}
.x28{left:541.920000px;}
.x29{left:602.580000px;}
.x39{left:613.020000px;}
.x48{left:620.940000px;}
.x2a{left:670.110000px;}
.x11{left:683.460000px;}
.x2e{left:720.330000px;}
.x2b{left:730.950000px;}
.x2{left:802.980000px;}
.x1a{left:816.120000px;}
.x2f{left:817.560000px;}
.x4b{left:820.080000px;}
.x1c{left:821.340000px;}
.x4f{left:825.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.089600pt;}
.ls0{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.224533pt;}
.lsb{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.414933pt;}
.ls6{letter-spacing:0.429867pt;}
.ls8{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.517333pt;}
.ls3{letter-spacing:0.565333pt;}
.lse{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls9{letter-spacing:30.186667pt;}
.wsa{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.976853pt;}
.ws1{word-spacing:-10.928853pt;}
.ws7{word-spacing:-10.560000pt;}
.ws9{word-spacing:-9.658133pt;}
.ws5{word-spacing:-9.263147pt;}
.ws4{word-spacing:-8.833280pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-12.400213pt;}
._10{margin-left:-2.117760pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.221760pt;}
._c{width:2.397440pt;}
._d{width:3.349333pt;}
._11{width:4.800000pt;}
._13{width:5.865387pt;}
._9{width:7.040000pt;}
._a{width:8.000000pt;}
._b{width:8.960000pt;}
._12{width:10.176000pt;}
._16{width:11.264000pt;}
._e{width:12.224000pt;}
._f{width:13.312000pt;}
._18{width:14.960000pt;}
._1a{width:17.088000pt;}
._22{width:17.984000pt;}
._19{width:19.136000pt;}
._7{width:20.352000pt;}
._8{width:21.760000pt;}
._17{width:22.816000pt;}
._14{width:23.872000pt;}
._15{width:25.092907pt;}
._6{width:26.176000pt;}
._3{width:27.440000pt;}
._21{width:28.480000pt;}
._1f{width:29.696000pt;}
._20{width:30.900480pt;}
._1c{width:33.408000pt;}
._1b{width:34.480000pt;}
._1d{width:40.768000pt;}
._1e{width:41.920000pt;}
._4{width:970.273067pt;}
._2{width:1865.125333pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.yce{bottom:-3.373333pt;}
.yd3{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y34{bottom:1.413333pt;}
.y32{bottom:2.373333pt;}
.y36{bottom:2.533333pt;}
.y3{bottom:4.000000pt;}
.yb2{bottom:4.160000pt;}
.y8b{bottom:4.320000pt;}
.y69{bottom:4.320133pt;}
.y4{bottom:4.480000pt;}
.y3a{bottom:5.920000pt;}
.yd4{bottom:9.120000pt;}
.y109{bottom:11.026667pt;}
.yee{bottom:11.040000pt;}
.y10b{bottom:11.346667pt;}
.yf0{bottom:11.360000pt;}
.yf5{bottom:11.400000pt;}
.y68{bottom:11.679867pt;}
.y12b{bottom:12.320000pt;}
.yb1{bottom:12.640000pt;}
.y113{bottom:12.960000pt;}
.ycb{bottom:13.106667pt;}
.yd1{bottom:13.120000pt;}
.yd7{bottom:13.280000pt;}
.ycd{bottom:13.426667pt;}
.yd2{bottom:13.440000pt;}
.yd8{bottom:13.600000pt;}
.yfc{bottom:13.760000pt;}
.y8a{bottom:13.920000pt;}
.yfd{bottom:16.320000pt;}
.y107{bottom:18.546667pt;}
.y146{bottom:19.346667pt;}
.y130{bottom:19.360000pt;}
.y141{bottom:19.506667pt;}
.y134{bottom:19.520000pt;}
.y13a{bottom:19.546667pt;}
.y3e{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.ydc{bottom:22.080000pt;}
.ydb{bottom:22.400000pt;}
.y39{bottom:23.520000pt;}
.y108{bottom:26.226667pt;}
.y5{bottom:30.080000pt;}
.yda{bottom:30.880000pt;}
.y38{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y145{bottom:38.706667pt;}
.y12f{bottom:38.720000pt;}
.y140{bottom:38.866667pt;}
.y132{bottom:38.880000pt;}
.y139{bottom:38.906667pt;}
.y6{bottom:55.680000pt;}
.y143{bottom:58.226667pt;}
.y13b{bottom:58.240000pt;}
.y13e{bottom:58.266667pt;}
.yb0{bottom:100.960000pt;}
.y112{bottom:104.320000pt;}
.y67{bottom:109.440000pt;}
.y30{bottom:110.720000pt;}
.yec{bottom:114.880000pt;}
.y89{bottom:116.960000pt;}
.y149{bottom:118.560000pt;}
.yaf{bottom:130.080000pt;}
.y66{bottom:130.720000pt;}
.y2f{bottom:131.840000pt;}
.y111{bottom:133.440000pt;}
.y88{bottom:138.080000pt;}
.yeb{bottom:144.000000pt;}
.y65{bottom:151.840000pt;}
.y148{bottom:152.480000pt;}
.y2e{bottom:152.960000pt;}
.yd0{bottom:154.080000pt;}
.yae{bottom:159.360000pt;}
.y110{bottom:162.560000pt;}
.y87{bottom:167.040000pt;}
.y64{bottom:172.960000pt;}
.yea{bottom:173.120000pt;}
.y2d{bottom:174.080000pt;}
.y147{bottom:186.426667pt;}
.yad{bottom:188.506667pt;}
.y10f{bottom:191.866667pt;}
.y63{bottom:194.106667pt;}
.y12a{bottom:195.226667pt;}
.y86{bottom:196.506667pt;}
.ycf{bottom:198.760000pt;}
.ye9{bottom:202.746667pt;}
.y144{bottom:203.400000pt;}
.y2c{bottom:208.346667pt;}
.yac{bottom:209.626667pt;}
.y10e{bottom:215.080000pt;}
.y62{bottom:215.386667pt;}
.y129{bottom:216.506667pt;}
.y85{bottom:217.626667pt;}
.ye8{bottom:223.866667pt;}
.y2b{bottom:230.106667pt;}
.y61{bottom:236.506667pt;}
.y128{bottom:237.626667pt;}
.yab{bottom:238.746667pt;}
.ycc{bottom:243.400000pt;}
.ye7{bottom:244.986667pt;}
.y84{bottom:246.746667pt;}
.y10d{bottom:247.080000pt;}
.y2a{bottom:251.706667pt;}
.y127{bottom:258.746667pt;}
.y142{bottom:259.400000pt;}
.yaa{bottom:260.026667pt;}
.y60{bottom:265.306667pt;}
.ye6{bottom:266.106667pt;}
.y29{bottom:273.306667pt;}
.y83{bottom:276.026667pt;}
.y10c{bottom:279.080000pt;}
.y126{bottom:279.866667pt;}
.ya9{bottom:281.146667pt;}
.ye5{bottom:287.386667pt;}
.yca{bottom:293.000000pt;}
.y5f{bottom:294.426667pt;}
.y28{bottom:294.906667pt;}
.y82{bottom:297.146667pt;}
.y125{bottom:301.146667pt;}
.ya8{bottom:302.266667pt;}
.ye4{bottom:308.506667pt;}
.y10a{bottom:311.080000pt;}
.y27{bottom:316.026667pt;}
.y81{bottom:318.266667pt;}
.y124{bottom:322.266667pt;}
.ya7{bottom:323.386667pt;}
.y5e{bottom:324.026667pt;}
.ye3{bottom:329.626667pt;}
.y13f{bottom:334.920000pt;}
.y26{bottom:337.306667pt;}
.y80{bottom:339.386667pt;}
.y106{bottom:343.080000pt;}
.ya6{bottom:344.666667pt;}
.y5d{bottom:345.146667pt;}
.ye2{bottom:350.746667pt;}
.y123{bottom:351.066667pt;}
.yc9{bottom:351.866667pt;}
.y7f{bottom:360.666667pt;}
.y25{bottom:365.946667pt;}
.y5c{bottom:366.266667pt;}
.ye1{bottom:372.026667pt;}
.ya5{bottom:373.466667pt;}
.y122{bottom:377.946667pt;}
.yc8{bottom:381.466667pt;}
.y24{bottom:386.106667pt;}
.y5b{bottom:387.386667pt;}
.y7e{bottom:389.466667pt;}
.y13d{bottom:391.080000pt;}
.y121{bottom:396.386667pt;}
.y23{bottom:401.186667pt;}
.yc7{bottom:402.626667pt;}
.ya4{bottom:402.946667pt;}
.y105{bottom:404.706667pt;}
.y5a{bottom:408.706667pt;}
.y120{bottom:414.786667pt;}
.y7d{bottom:418.626667pt;}
.y22{bottom:422.466667pt;}
.yc6{bottom:423.746667pt;}
.ya3{bottom:424.066667pt;}
.y59{bottom:429.826667pt;}
.ye0{bottom:429.986667pt;}
.y104{bottom:434.146667pt;}
.y11f{bottom:441.186667pt;}
.y21{bottom:443.586667pt;}
.y7c{bottom:448.066667pt;}
.y58{bottom:450.946667pt;}
.yc5{bottom:452.866667pt;}
.ya2{bottom:453.346667pt;}
.y103{bottom:455.266667pt;}
.ydf{bottom:455.586667pt;}
.y11e{bottom:459.586667pt;}
.y20{bottom:464.706667pt;}
.y13c{bottom:466.626667pt;}
.y7b{bottom:469.346667pt;}
.y57{bottom:472.066667pt;}
.yc4{bottom:473.986667pt;}
.y11d{bottom:477.986667pt;}
.ya1{bottom:482.466667pt;}
.y102{bottom:484.066667pt;}
.y1f{bottom:485.826667pt;}
.yc3{bottom:495.266667pt;}
.y7a{bottom:498.466667pt;}
.y56{bottom:501.346667pt;}
.ya0{bottom:503.586667pt;}
.y11c{bottom:504.386667pt;}
.y1e{bottom:507.106667pt;}
.y101{bottom:513.666667pt;}
.yc2{bottom:516.386667pt;}
.y79{bottom:519.586667pt;}
.y55{bottom:522.466667pt;}
.y11b{bottom:522.786667pt;}
.y9f{bottom:524.706667pt;}
.y1d{bottom:528.226667pt;}
.y100{bottom:534.786667pt;}
.yc1{bottom:537.506667pt;}
.y78{bottom:540.706667pt;}
.y54{bottom:543.586667pt;}
.y9e{bottom:545.826667pt;}
.y11a{bottom:549.186667pt;}
.y1c{bottom:549.346667pt;}
.yff{bottom:555.906667pt;}
.yc0{bottom:558.626667pt;}
.y53{bottom:564.706667pt;}
.y9d{bottom:567.106667pt;}
.y119{bottom:567.586667pt;}
.y77{bottom:569.826667pt;}
.y1b{bottom:578.146667pt;}
.ybf{bottom:579.906667pt;}
.yfe{bottom:585.026667pt;}
.y52{bottom:585.826667pt;}
.y76{bottom:591.106667pt;}
.y118{bottom:593.986667pt;}
.y9c{bottom:595.906667pt;}
.y138{bottom:598.306667pt;}
.y1a{bottom:600.546667pt;}
.y51{bottom:607.133333pt;}
.yfb{bottom:608.413333pt;}
.ybe{bottom:608.733333pt;}
.y75{bottom:612.253333pt;}
.y117{bottom:612.413333pt;}
.y19{bottom:619.933333pt;}
.y9b{bottom:625.373333pt;}
.y50{bottom:628.253333pt;}
.y18{bottom:640.573333pt;}
.y74{bottom:641.053333pt;}
.y116{bottom:641.373333pt;}
.ybd{bottom:642.813333pt;}
.yfa{bottom:645.373333pt;}
.y9a{bottom:646.493333pt;}
.y4f{bottom:649.373333pt;}
.y137{bottom:654.493333pt;}
.y17{bottom:661.213333pt;}
.y115{bottom:662.493333pt;}
.y73{bottom:670.493333pt;}
.ybc{bottom:674.013333pt;}
.y99{bottom:675.773333pt;}
.yf9{bottom:677.373333pt;}
.y4e{bottom:678.493333pt;}
.y16{bottom:681.693333pt;}
.y114{bottom:691.453333pt;}
.y72{bottom:691.773333pt;}
.ybb{bottom:692.413333pt;}
.y4d{bottom:699.773333pt;}
.y15{bottom:702.333333pt;}
.y98{bottom:704.893333pt;}
.yf8{bottom:709.373333pt;}
.y136{bottom:710.493333pt;}
.yba{bottom:710.813333pt;}
.y71{bottom:712.893333pt;}
.y4c{bottom:720.893333pt;}
.y97{bottom:726.013333pt;}
.y14{bottom:730.173333pt;}
.y70{bottom:734.013333pt;}
.yb9{bottom:737.213333pt;}
.yf7{bottom:741.373333pt;}
.y4b{bottom:742.013333pt;}
.y96{bottom:747.133333pt;}
.y13{bottom:747.933333pt;}
.y6f{bottom:755.133333pt;}
.yb8{bottom:755.613333pt;}
.y12{bottom:760.733333pt;}
.y4a{bottom:763.133333pt;}
.y135{bottom:766.653333pt;}
.y95{bottom:768.413333pt;}
.yf6{bottom:773.373333pt;}
.yb7{bottom:774.013333pt;}
.y11{bottom:775.613333pt;}
.y6e{bottom:776.413333pt;}
.y49{bottom:784.413333pt;}
.y94{bottom:789.533333pt;}
.y6d{bottom:797.533333pt;}
.yb6{bottom:800.413333pt;}
.y10{bottom:804.413333pt;}
.yf4{bottom:805.373333pt;}
.y93{bottom:810.693333pt;}
.y48{bottom:813.573333pt;}
.yb5{bottom:818.853333pt;}
.y133{bottom:822.853333pt;}
.y6c{bottom:826.373333pt;}
.yde{bottom:829.893333pt;}
.y92{bottom:831.813333pt;}
.yf{bottom:833.253333pt;}
.y47{bottom:834.693333pt;}
.yf3{bottom:837.413333pt;}
.yb4{bottom:847.813333pt;}
.ye{bottom:855.173333pt;}
.y46{bottom:855.813333pt;}
.ydd{bottom:859.493333pt;}
.y91{bottom:860.773333pt;}
.yd{bottom:865.413333pt;}
.yb3{bottom:869.093333pt;}
.yf2{bottom:869.413333pt;}
.y45{bottom:877.093333pt;}
.y31{bottom:877.120000pt;}
.y35{bottom:877.440000pt;}
.y33{bottom:878.560000pt;}
.y131{bottom:879.013333pt;}
.yc{bottom:883.013333pt;}
.yd9{bottom:887.973333pt;}
.y90{bottom:890.213333pt;}
.y44{bottom:898.213333pt;}
.yf1{bottom:901.413333pt;}
.y8f{bottom:911.333333pt;}
.yb{bottom:913.413333pt;}
.y43{bottom:919.333333pt;}
.yef{bottom:933.413333pt;}
.y12e{bottom:935.173333pt;}
.y42{bottom:940.453333pt;}
.ya{bottom:944.773333pt;}
.yd6{bottom:950.213333pt;}
.y41{bottom:961.733333pt;}
.yed{bottom:965.413333pt;}
.y8e{bottom:969.733333pt;}
.y9{bottom:978.693333pt;}
.y40{bottom:982.853333pt;}
.y8d{bottom:990.853333pt;}
.y12d{bottom:994.373333pt;}
.yd5{bottom:994.853333pt;}
.y3f{bottom:1011.653333pt;}
.y12c{bottom:1011.813333pt;}
.y8c{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y3d{bottom:1035.200000pt;}
.y3c{bottom:1049.280000pt;}
.y6b{bottom:1052.000000pt;}
.y3b{bottom:1063.360000pt;}
.y6a{bottom:1064.480000pt;}
.y37{bottom:1073.760000pt;}
.h19{height:12.000000pt;}
.h17{height:12.960000pt;}
.h1b{height:13.120000pt;}
.h23{height:16.000000pt;}
.h21{height:16.160000pt;}
.h1c{height:21.671875pt;}
.h6{height:22.080000pt;}
.hc{height:22.758750pt;}
.h2b{height:25.626667pt;}
.h2e{height:31.346667pt;}
.h30{height:31.360000pt;}
.h2f{height:31.380000pt;}
.ha{height:32.250000pt;}
.h26{height:33.586667pt;}
.h2a{height:33.598667pt;}
.h29{height:33.632000pt;}
.h2c{height:33.746667pt;}
.h2{height:34.138125pt;}
.h18{height:34.190937pt;}
.h8{height:34.195312pt;}
.h1f{height:36.305625pt;}
.h31{height:36.320000pt;}
.h15{height:36.431250pt;}
.h9{height:37.842813pt;}
.h1d{height:38.273438pt;}
.h1e{height:40.640625pt;}
.h3d{height:41.112500pt;}
.h1a{height:42.355937pt;}
.h4{height:44.160000pt;}
.h14{height:44.687500pt;}
.h32{height:46.546667pt;}
.h5{height:46.948750pt;}
.h10{height:47.380000pt;}
.h7{height:47.742188pt;}
.hd{height:48.375000pt;}
.h25{height:49.852500pt;}
.h2d{height:51.346667pt;}
.he{height:51.500000pt;}
.h34{height:51.986667pt;}
.h39{height:52.000000pt;}
.h28{height:52.134375pt;}
.h36{height:52.146667pt;}
.h38{height:52.160000pt;}
.h37{height:52.180000pt;}
.h3a{height:52.186667pt;}
.h11{height:52.834688pt;}
.h27{height:53.535000pt;}
.h16{height:54.187500pt;}
.h35{height:57.787500pt;}
.h12{height:58.522500pt;}
.h3{height:58.563750pt;}
.hf{height:60.288750pt;}
.h22{height:62.781250pt;}
.h13{height:62.812500pt;}
.h20{height:64.500000pt;}
.h33{height:65.531250pt;}
.h24{height:65.781915pt;}
.h3b{height:71.506667pt;}
.h3c{height:71.538667pt;}
.hb{height:72.069375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:26.390667pt;}
.wc{width:41.106667pt;}
.wb{width:47.350667pt;}
.wd{width:52.946667pt;}
.w13{width:53.106667pt;}
.we{width:53.138667pt;}
.w10{width:53.152000pt;}
.w11{width:59.026667pt;}
.w12{width:59.058667pt;}
.w23{width:60.320000pt;}
.w1f{width:62.240000pt;}
.wa{width:63.040000pt;}
.w9{width:63.680000pt;}
.w20{width:65.600000pt;}
.w14{width:67.040000pt;}
.w8{width:68.320000pt;}
.wf{width:76.960000pt;}
.w15{width:78.550667pt;}
.w2{width:80.000000pt;}
.w1c{width:81.792000pt;}
.w1d{width:84.306667pt;}
.w7{width:95.200000pt;}
.w4{width:97.600000pt;}
.w17{width:107.232000pt;}
.w18{width:113.266667pt;}
.w1b{width:125.280000pt;}
.w16{width:125.298667pt;}
.w5{width:127.360000pt;}
.w19{width:131.378667pt;}
.w1e{width:141.133333pt;}
.w1a{width:168.497333pt;}
.w6{width:196.800000pt;}
.w3{width:556.800000pt;}
.w22{width:575.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:0.950667pt;}
.x2c{left:4.470667pt;}
.x3f{left:6.720000pt;}
.x32{left:7.670667pt;}
.x14{left:9.632000pt;}
.x25{left:11.040000pt;}
.x3{left:13.093333pt;}
.x12{left:17.893333pt;}
.x46{left:19.360000pt;}
.x49{left:22.546667pt;}
.x43{left:24.320000pt;}
.x34{left:26.706667pt;}
.x36{left:28.320000pt;}
.x4a{left:34.106667pt;}
.x38{left:35.026667pt;}
.x3b{left:36.320000pt;}
.x44{left:37.280000pt;}
.x3d{left:38.266667pt;}
.x3c{left:41.426667pt;}
.x16{left:45.346667pt;}
.x3e{left:46.386667pt;}
.x3a{left:47.546667pt;}
.x40{left:50.586667pt;}
.x4{left:83.520000pt;}
.x41{left:89.161333pt;}
.x20{left:91.241333pt;}
.x4c{left:95.081333pt;}
.x1{left:96.032000pt;}
.x10{left:96.992000pt;}
.x7{left:99.072000pt;}
.x6{left:101.312000pt;}
.x1f{left:106.432000pt;}
.x13{left:108.800000pt;}
.x31{left:117.641333pt;}
.x1d{left:120.032000pt;}
.x4e{left:123.561333pt;}
.x21{left:139.560000pt;}
.x1e{left:144.026667pt;}
.x17{left:166.106667pt;}
.xf{left:177.146667pt;}
.x22{left:181.640000pt;}
.x33{left:196.840000pt;}
.x19{left:198.106667pt;}
.x1b{left:224.186667pt;}
.x23{left:235.560000pt;}
.xc{left:250.946667pt;}
.x30{left:255.906667pt;}
.x42{left:258.466667pt;}
.x8{left:286.146667pt;}
.x2d{left:287.106667pt;}
.x24{left:289.666667pt;}
.x15{left:308.640000pt;}
.x35{left:322.946667pt;}
.xb{left:324.866667pt;}
.xe{left:335.106667pt;}
.x18{left:338.946667pt;}
.x26{left:367.586667pt;}
.x45{left:384.386667pt;}
.xa{left:386.786667pt;}
.xd{left:391.746667pt;}
.x9{left:396.866667pt;}
.x5{left:404.413333pt;}
.x27{left:421.706667pt;}
.x37{left:430.986667pt;}
.x47{left:466.986667pt;}
.x28{left:481.706667pt;}
.x29{left:535.626667pt;}
.x39{left:544.906667pt;}
.x48{left:551.946667pt;}
.x2a{left:595.653333pt;}
.x11{left:607.520000pt;}
.x2e{left:640.293333pt;}
.x2b{left:649.733333pt;}
.x2{left:713.760000pt;}
.x1a{left:725.440000pt;}
.x2f{left:726.720000pt;}
.x4b{left:728.960000pt;}
.x1c{left:730.080000pt;}
.x4f{left:733.440000pt;}
}




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