
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_7c7b569d0be8d2f822fd0f74.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6c7e41e2991642ba823f6688.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f8f96bc7cc0d6d39de226b93.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d82b5b14a03f90643d615ea.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8e22301530aa21f0e3995615.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_9e1097007edab04d1240dddf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_c31c577e3b6e6b2ffd5a8fc7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_bc3a5840e08afe8826c6401e.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4f914674da637d4626674d94.woff')format("woff");}.ffe{font-family:ffe;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fd4bb28d829d0bdd3c981f41.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2f61a1d908610e89c2f1a01b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.104004;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.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-77.760000px;}
.v6{vertical-align:-70.560000px;}
.v5{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls15{letter-spacing:-2.880000px;}
.lsd{letter-spacing:-1.938000px;}
.ls1e{letter-spacing:-1.926000px;}
.ls18{letter-spacing:-1.458000px;}
.ls5{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.422000px;}
.lsa{letter-spacing:-0.972000px;}
.ls7{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.630000px;}
.ls1d{letter-spacing:-0.486600px;}
.ls4{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.313800px;}
.ls6{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.466800px;}
.ls14{letter-spacing:0.486600px;}
.ls2{letter-spacing:0.498240px;}
.ls8{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls16{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.458000px;}
.ls1b{letter-spacing:13.800000px;}
.ls12{letter-spacing:30.384000px;}
.ls19{letter-spacing:46.546560px;}
.ls1a{letter-spacing:54.864000px;}
.ls13{letter-spacing:63.826560px;}
.ls1c{letter-spacing:93.024000px;}
.ls0{letter-spacing:201.060000px;}
.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;}
}
.ws17{word-spacing:-72.000000px;}
.ws14{word-spacing:-60.946800px;}
.ws12{word-spacing:-60.480000px;}
.wsf{word-spacing:-54.720000px;}
.ws11{word-spacing:-16.578000px;}
.ws0{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.586800px;}
.ws3{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.653200px;}
.ws18{word-spacing:-14.633400px;}
.ws7{word-spacing:-14.310000px;}
.ws9{word-spacing:-14.148000px;}
.ws15{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws16{word-spacing:-13.662000px;}
.ws19{word-spacing:-13.194000px;}
.wse{word-spacing:-13.050000px;}
.ws8{word-spacing:-12.240000px;}
.wsd{word-spacing:-11.742000px;}
.ws5{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.000000px;}
.wsb{word-spacing:-8.928000px;}
.ws10{word-spacing:0.000000px;}
._7{margin-left:-5.717760px;}
._8{margin-left:-4.086720px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._e{width:4.965120px;}
._12{width:6.770880px;}
._16{width:8.098560px;}
._11{width:10.045920px;}
._17{width:11.254080px;}
._9{width:12.285600px;}
._19{width:13.475040px;}
._14{width:14.801760px;}
._f{width:16.416480px;}
._10{width:17.553600px;}
._15{width:18.871200px;}
._a{width:20.168640px;}
._c{width:22.083360px;}
._b{width:23.179680px;}
._d{width:24.627840px;}
._1a{width:25.945920px;}
._18{width:26.974080px;}
._13{width:28.928160px;}
._1b{width:30.334560px;}
._5{width:980.525760px;}
._6{width:1296.261120px;}
.fc5{color:rgb(4,97,193);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(68,112,196);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y10c{bottom:-15.495000px;}
.y10b{bottom:-13.335000px;}
.yde{bottom:-5.415000px;}
.yda{bottom:-5.055000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.875500px;}
.ydc{bottom:3.585000px;}
.y114{bottom:3.595500px;}
.yc4{bottom:3.600000px;}
.yd5{bottom:3.945000px;}
.y110{bottom:3.955500px;}
.y3f{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y5a{bottom:5.370000px;}
.y58{bottom:5.395500px;}
.yca{bottom:6.840000px;}
.y2{bottom:10.080000px;}
.y49{bottom:10.795500px;}
.y103{bottom:12.225000px;}
.y115{bottom:12.235500px;}
.y107{bottom:12.585000px;}
.y116{bottom:12.595500px;}
.y111{bottom:12.631500px;}
.yd9{bottom:13.305000px;}
.yea{bottom:14.040000px;}
.y113{bottom:20.875500px;}
.y104{bottom:20.895000px;}
.y106{bottom:21.225000px;}
.y3e{bottom:21.240000px;}
.y10f{bottom:21.274500px;}
.y57{bottom:21.991500px;}
.y4{bottom:23.400000px;}
.yc9{bottom:24.120000px;}
.ye9{bottom:31.350000px;}
.ye2{bottom:33.465000px;}
.yd3{bottom:34.545000px;}
.y56{bottom:37.474500px;}
.y3d{bottom:38.520000px;}
.y48{bottom:40.354500px;}
.yc8{bottom:41.400000px;}
.yf2{bottom:41.430000px;}
.y3{bottom:47.880000px;}
.ye1{bottom:50.745000px;}
.yd2{bottom:51.825000px;}
.y47{bottom:52.234500px;}
.y55{bottom:54.754500px;}
.y3c{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.yc7{bottom:58.680000px;}
.yf1{bottom:58.710000px;}
.y46{bottom:65.194500px;}
.ye0{bottom:68.025000px;}
.yd1{bottom:68.745000px;}
.y54{bottom:70.594500px;}
.y3b{bottom:73.125000px;}
.yc6{bottom:75.960000px;}
.yf0{bottom:75.990000px;}
.y45{bottom:78.154500px;}
.yd0{bottom:86.025000px;}
.y53{bottom:86.434500px;}
.y3a{bottom:90.405000px;}
.y44{bottom:91.114500px;}
.y112{bottom:92.920500px;}
.y52{bottom:101.914500px;}
.y94{bottom:105.516000px;}
.y39{bottom:107.685000px;}
.y43{bottom:110.914500px;}
.y51{bottom:114.514500px;}
.y50{bottom:120.994500px;}
.y93{bottom:122.796000px;}
.y40{bottom:123.160500px;}
.yc1{bottom:123.516000px;}
.y38{bottom:124.965000px;}
.y10e{bottom:128.920500px;}
.y4f{bottom:136.834500px;}
.y92{bottom:140.076000px;}
.y37{bottom:142.245000px;}
.y4e{bottom:152.344500px;}
.y91{bottom:157.395000px;}
.y36{bottom:159.165000px;}
.y10d{bottom:164.970000px;}
.y4d{bottom:167.824500px;}
.y42{bottom:172.864500px;}
.y90{bottom:174.675000px;}
.y35{bottom:176.445000px;}
.y4c{bottom:183.304500px;}
.y41{bottom:183.664500px;}
.y10a{bottom:183.690000px;}
.y109{bottom:186.930000px;}
.yc0{bottom:190.875000px;}
.y8f{bottom:191.955000px;}
.y34{bottom:193.725000px;}
.y4b{bottom:198.424500px;}
.y108{bottom:205.650000px;}
.y8e{bottom:209.235000px;}
.y33{bottom:211.035000px;}
.y105{bottom:224.370000px;}
.ybf{bottom:224.715000px;}
.y8d{bottom:226.515000px;}
.y32{bottom:228.315000px;}
.y8c{bottom:243.075000px;}
.y31{bottom:245.595000px;}
.y13f{bottom:251.715000px;}
.ybe{bottom:258.555000px;}
.y8b{bottom:260.355000px;}
.y102{bottom:260.370000px;}
.y30{bottom:262.875000px;}
.y1d{bottom:268.995000px;}
.y8a{bottom:278.025000px;}
.y2f{bottom:280.155000px;}
.y13e{bottom:286.305000px;}
.ybd{bottom:292.065000px;}
.y1c{bottom:293.115000px;}
.y89{bottom:295.305000px;}
.y2e{bottom:297.435000px;}
.y101{bottom:298.545000px;}
.y13d{bottom:303.585000px;}
.y100{bottom:305.745000px;}
.y88{bottom:312.585000px;}
.y2d{bottom:314.715000px;}
.y1b{bottom:317.595000px;}
.y13c{bottom:320.865000px;}
.yff{bottom:323.745000px;}
.y87{bottom:329.865000px;}
.y2c{bottom:331.995000px;}
.yf{bottom:336.345000px;}
.y13b{bottom:338.145000px;}
.ybc{bottom:339.225000px;}
.y1a{bottom:341.745000px;}
.y86{bottom:347.145000px;}
.y2b{bottom:348.945000px;}
.y13a{bottom:355.425000px;}
.ybb{bottom:356.505000px;}
.yfe{bottom:359.745000px;}
.y85{bottom:364.425000px;}
.y19{bottom:365.865000px;}
.y2a{bottom:367.305000px;}
.y139{bottom:372.345000px;}
.yba{bottom:373.785000px;}
.yfd{bottom:377.745000px;}
.y84{bottom:381.705000px;}
.y138{bottom:389.625000px;}
.y18{bottom:389.985000px;}
.yb9{bottom:391.065000px;}
.y29{bottom:394.305000px;}
.yfc{bottom:395.745000px;}
.y83{bottom:398.985000px;}
.y137{bottom:406.950000px;}
.yb8{bottom:409.110000px;}
.y28{bottom:409.425000px;}
.y17{bottom:414.105000px;}
.y82{bottom:416.310000px;}
.yfb{bottom:417.750000px;}
.y136{bottom:424.230000px;}
.y27{bottom:424.905000px;}
.y81{bottom:433.230000px;}
.yb7{bottom:435.750000px;}
.yfa{bottom:436.110000px;}
.y16{bottom:438.225000px;}
.y26{bottom:440.385000px;}
.y135{bottom:441.510000px;}
.y80{bottom:450.510000px;}
.yf9{bottom:453.750000px;}
.yb6{bottom:454.110000px;}
.y25{bottom:455.865000px;}
.y134{bottom:458.790000px;}
.y15{bottom:462.345000px;}
.y7f{bottom:467.430000px;}
.y24{bottom:471.750000px;}
.yf8{bottom:472.110000px;}
.yb5{bottom:473.190000px;}
.y133{bottom:476.790000px;}
.y7e{bottom:485.070000px;}
.y14{bottom:486.510000px;}
.y23{bottom:487.230000px;}
.yb4{bottom:490.830000px;}
.yf7{bottom:491.550000px;}
.y7d{bottom:502.350000px;}
.y22{bottom:502.710000px;}
.y132{bottom:503.430000px;}
.yef{bottom:506.670000px;}
.yb3{bottom:509.190000px;}
.y13{bottom:510.630000px;}
.y21{bottom:518.190000px;}
.y7c{bottom:519.630000px;}
.y131{bottom:520.710000px;}
.yf6{bottom:525.390000px;}
.yb2{bottom:527.190000px;}
.y20{bottom:533.670000px;}
.y12{bottom:534.750000px;}
.y7b{bottom:536.910000px;}
.y130{bottom:538.020000px;}
.yf5{bottom:544.140000px;}
.yb1{bottom:546.300000px;}
.y1f{bottom:549.150000px;}
.y7a{bottom:554.220000px;}
.y12f{bottom:555.300000px;}
.y11{bottom:558.870000px;}
.yf4{bottom:562.860000px;}
.y79{bottom:571.500000px;}
.y12e{bottom:572.580000px;}
.yb0{bottom:572.940000px;}
.y1e{bottom:579.750000px;}
.yf3{bottom:581.580000px;}
.y10{bottom:582.990000px;}
.y78{bottom:588.780000px;}
.yaf{bottom:590.220000px;}
.y12d{bottom:590.580000px;}
.yee{bottom:600.660000px;}
.y77{bottom:606.060000px;}
.yae{bottom:607.500000px;}
.y12c{bottom:616.860000px;}
.yed{bottom:619.380000px;}
.y76{bottom:623.340000px;}
.yad{bottom:624.780000px;}
.ye8{bottom:638.100000px;}
.y12b{bottom:638.460000px;}
.y75{bottom:640.260000px;}
.yac{bottom:642.780000px;}
.y12a{bottom:655.380000px;}
.yec{bottom:656.820000px;}
.y74{bottom:657.180000px;}
.yab{bottom:669.450000px;}
.y73{bottom:674.850000px;}
.yeb{bottom:675.585000px;}
.y129{bottom:676.650000px;}
.yaa{bottom:686.730000px;}
.y72{bottom:692.130000px;}
.ydf{bottom:694.305000px;}
.y128{bottom:698.250000px;}
.ya9{bottom:704.010000px;}
.y71{bottom:709.410000px;}
.ye7{bottom:713.025000px;}
.y127{bottom:715.170000px;}
.ya8{bottom:721.290000px;}
.y70{bottom:726.690000px;}
.ye6{bottom:731.745000px;}
.y126{bottom:736.770000px;}
.ya7{bottom:738.570000px;}
.y6f{bottom:743.970000px;}
.ye5{bottom:750.465000px;}
.y125{bottom:754.050000px;}
.ya6{bottom:755.850000px;}
.y6e{bottom:761.250000px;}
.ye4{bottom:769.185000px;}
.ya5{bottom:773.490000px;}
.y124{bottom:776.370000px;}
.y6d{bottom:778.530000px;}
.ye3{bottom:787.905000px;}
.y6c{bottom:795.810000px;}
.ya4{bottom:800.130000px;}
.y123{bottom:803.055000px;}
.ycf{bottom:806.670000px;}
.y6b{bottom:813.135000px;}
.ya3{bottom:818.535000px;}
.y122{bottom:819.975000px;}
.ydd{bottom:825.390000px;}
.y6a{bottom:830.055000px;}
.ya2{bottom:836.895000px;}
.y121{bottom:837.255000px;}
.ydb{bottom:844.470000px;}
.y69{bottom:847.335000px;}
.y120{bottom:854.535000px;}
.ya1{bottom:855.255000px;}
.yd8{bottom:863.190000px;}
.y68{bottom:864.615000px;}
.y11f{bottom:871.815000px;}
.ya0{bottom:873.615000px;}
.y67{bottom:881.535000px;}
.yd7{bottom:881.910000px;}
.y11e{bottom:889.095000px;}
.y9f{bottom:891.975000px;}
.y66{bottom:899.175000px;}
.yd6{bottom:900.630000px;}
.y11d{bottom:906.375000px;}
.y9e{bottom:911.415000px;}
.y65{bottom:916.455000px;}
.yd4{bottom:919.350000px;}
.y11c{bottom:923.655000px;}
.y9d{bottom:929.775000px;}
.ye{bottom:931.575000px;}
.y64{bottom:933.765000px;}
.yd{bottom:937.005000px;}
.yc5{bottom:938.085000px;}
.y11b{bottom:940.965000px;}
.y9c{bottom:949.965000px;}
.y63{bottom:951.045000px;}
.yce{bottom:956.805000px;}
.y11a{bottom:958.245000px;}
.yc{bottom:960.405000px;}
.y62{bottom:968.325000px;}
.ycd{bottom:975.525000px;}
.y119{bottom:976.245000px;}
.y9b{bottom:976.605000px;}
.yb{bottom:983.445000px;}
.y61{bottom:985.605000px;}
.y9a{bottom:993.885000px;}
.ycc{bottom:994.245000px;}
.y60{bottom:1002.885000px;}
.y99{bottom:1011.165000px;}
.ycb{bottom:1012.965000px;}
.ya{bottom:1019.805000px;}
.y5f{bottom:1020.165000px;}
.y98{bottom:1028.085000px;}
.yc3{bottom:1031.685000px;}
.y5e{bottom:1037.085000px;}
.y118{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y97{bottom:1046.085000px;}
.y5d{bottom:1054.365000px;}
.y117{bottom:1055.445000px;}
.y5c{bottom:1071.330000px;}
.yc2{bottom:1071.690000px;}
.y8{bottom:1072.050000px;}
.y96{bottom:1072.770000px;}
.y59{bottom:1075.320000px;}
.y5b{bottom:1089.690000px;}
.y95{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h2b{height:1.785000px;}
.ha{height:4.165313px;}
.h14{height:5.650313px;}
.h20{height:16.905000px;}
.h25{height:16.920000px;}
.h1b{height:17.265000px;}
.h1e{height:17.280000px;}
.h22{height:17.301000px;}
.h27{height:17.310000px;}
.h24{height:17.316000px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h28{height:30.476250px;}
.h2a{height:34.545000px;}
.h2d{height:34.555500px;}
.h29{height:34.560000px;}
.h2c{height:34.591500px;}
.h1f{height:35.985000px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.he{height:53.677969px;}
.hf{height:54.219375px;}
.h23{height:54.756000px;}
.h13{height:55.147500px;}
.h15{height:59.328281px;}
.h6{height:59.357813px;}
.h9{height:60.952500px;}
.h1a{height:62.163910px;}
.h18{height:62.960625px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h11{height:70.664062px;}
.h19{height:74.004654px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h1c{height:92.145000px;}
.h26{height:92.190000px;}
.h21{height:110.901000px;}
.h4{height:116.640000px;}
.h1d{height:129.960000px;}
.h10{height:212.445000px;}
.hb{height:592.350000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:70.950000px;}
.w17{width:71.280000px;}
.w16{width:71.301000px;}
.w14{width:71.310000px;}
.w15{width:71.316000px;}
.w19{width:71.670000px;}
.w1d{width:72.000000px;}
.w1c{width:72.021000px;}
.w1a{width:72.030000px;}
.w1b{width:72.036000px;}
.w12{width:84.945000px;}
.w18{width:86.385000px;}
.w11{width:86.781000px;}
.w9{width:102.240000px;}
.w2{width:103.702500px;}
.we{width:106.200000px;}
.wf{width:112.710000px;}
.wd{width:120.621000px;}
.wc{width:122.421000px;}
.w8{width:123.141000px;}
.w10{width:127.872000px;}
.w4{width:132.502500px;}
.wa{width:154.485000px;}
.w6{width:163.080000px;}
.wb{width:175.035000px;}
.w7{width:330.255000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:4.710000px;}
.x21{left:6.876000px;}
.x19{left:8.295000px;}
.x28{left:10.065000px;}
.x4{left:13.305000px;}
.x17{left:16.546500px;}
.x14{left:17.626500px;}
.x16{left:19.786500px;}
.x3e{left:20.865000px;}
.x36{left:22.320000px;}
.x2a{left:23.745000px;}
.x15{left:26.266500px;}
.x2e{left:28.065000px;}
.x1d{left:29.146500px;}
.x38{left:30.945000px;}
.x2f{left:32.040000px;}
.x30{left:33.480000px;}
.x6{left:35.265000px;}
.x2c{left:38.505000px;}
.x47{left:42.825000px;}
.xf{left:43.906500px;}
.x46{left:45.030000px;}
.x1c{left:47.542500px;}
.x45{left:49.710000px;}
.x10{left:50.782500px;}
.x2d{left:52.200000px;}
.x31{left:53.985000px;}
.xe{left:55.102500px;}
.x1f{left:57.262500px;}
.x35{left:58.305000px;}
.x3d{left:60.150000px;}
.x1a{left:62.295000px;}
.x33{left:63.720000px;}
.x1e{left:66.265500px;}
.x34{left:69.840000px;}
.x13{left:73.105500px;}
.x32{left:74.880000px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x12{left:92.905500px;}
.x2{left:95.425500px;}
.x24{left:99.756000px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x22{left:113.436000px;}
.x11{left:124.585500px;}
.x23{left:140.472000px;}
.x5{left:141.540000px;}
.x26{left:143.700000px;}
.x25{left:167.490000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x3f{left:224.385000px;}
.x39{left:282.345000px;}
.x40{left:310.065000px;}
.x2b{left:322.710000px;}
.xb{left:336.390000px;}
.xa{left:352.950000px;}
.x4a{left:367.350000px;}
.x48{left:376.710000px;}
.x41{left:381.750000px;}
.x3a{left:395.790000px;}
.x49{left:429.660000px;}
.x42{left:453.780000px;}
.x27{left:498.465000px;}
.x3c{left:524.385000px;}
.x43{left:525.825000px;}
.xc{left:554.610000px;}
.x44{left:597.870000px;}
.x37{left:619.830000px;}
.x29{left:622.350000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v6{vertical-align:-62.720000pt;}
.v5{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls15{letter-spacing:-2.560000pt;}
.lsd{letter-spacing:-1.722667pt;}
.ls1e{letter-spacing:-1.712000pt;}
.ls18{letter-spacing:-1.296000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.264000pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.560000pt;}
.ls1d{letter-spacing:-0.432533pt;}
.ls4{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.278933pt;}
.ls6{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.414933pt;}
.ls14{letter-spacing:0.432533pt;}
.ls2{letter-spacing:0.442880pt;}
.ls8{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.296000pt;}
.ls1b{letter-spacing:12.266667pt;}
.ls12{letter-spacing:27.008000pt;}
.ls19{letter-spacing:41.374720pt;}
.ls1a{letter-spacing:48.768000pt;}
.ls13{letter-spacing:56.734720pt;}
.ls1c{letter-spacing:82.688000pt;}
.ls0{letter-spacing:178.720000pt;}
.ws17{word-spacing:-64.000000pt;}
.ws14{word-spacing:-54.174933pt;}
.ws12{word-spacing:-53.760000pt;}
.wsf{word-spacing:-48.640000pt;}
.ws11{word-spacing:-14.736000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.854933pt;}
.ws3{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.025067pt;}
.ws18{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.720000pt;}
.ws9{word-spacing:-12.576000pt;}
.ws15{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws16{word-spacing:-12.144000pt;}
.ws19{word-spacing:-11.728000pt;}
.wse{word-spacing:-11.600000pt;}
.ws8{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.437333pt;}
.ws5{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.000000pt;}
.wsb{word-spacing:-7.936000pt;}
.ws10{word-spacing:0.000000pt;}
._7{margin-left:-5.082453pt;}
._8{margin-left:-3.632640pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._e{width:4.413440pt;}
._12{width:6.018560pt;}
._16{width:7.198720pt;}
._11{width:8.929707pt;}
._17{width:10.003627pt;}
._9{width:10.920533pt;}
._19{width:11.977813pt;}
._14{width:13.157120pt;}
._f{width:14.592427pt;}
._10{width:15.603200pt;}
._15{width:16.774400pt;}
._a{width:17.927680pt;}
._c{width:19.629653pt;}
._b{width:20.604160pt;}
._d{width:21.891413pt;}
._1a{width:23.063040pt;}
._18{width:23.976960pt;}
._13{width:25.713920pt;}
._1b{width:26.964053pt;}
._5{width:871.578453pt;}
._6{width:1152.232107pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y10c{bottom:-13.773333pt;}
.y10b{bottom:-11.853333pt;}
.yde{bottom:-4.813333pt;}
.yda{bottom:-4.493333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.556000pt;}
.ydc{bottom:3.186667pt;}
.y114{bottom:3.196000pt;}
.yc4{bottom:3.200000pt;}
.yd5{bottom:3.506667pt;}
.y110{bottom:3.516000pt;}
.y3f{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y5a{bottom:4.773333pt;}
.y58{bottom:4.796000pt;}
.yca{bottom:6.080000pt;}
.y2{bottom:8.960000pt;}
.y49{bottom:9.596000pt;}
.y103{bottom:10.866667pt;}
.y115{bottom:10.876000pt;}
.y107{bottom:11.186667pt;}
.y116{bottom:11.196000pt;}
.y111{bottom:11.228000pt;}
.yd9{bottom:11.826667pt;}
.yea{bottom:12.480000pt;}
.y113{bottom:18.556000pt;}
.y104{bottom:18.573333pt;}
.y106{bottom:18.866667pt;}
.y3e{bottom:18.880000pt;}
.y10f{bottom:18.910667pt;}
.y57{bottom:19.548000pt;}
.y4{bottom:20.800000pt;}
.yc9{bottom:21.440000pt;}
.ye9{bottom:27.866667pt;}
.ye2{bottom:29.746667pt;}
.yd3{bottom:30.706667pt;}
.y56{bottom:33.310667pt;}
.y3d{bottom:34.240000pt;}
.y48{bottom:35.870667pt;}
.yc8{bottom:36.800000pt;}
.yf2{bottom:36.826667pt;}
.y3{bottom:42.560000pt;}
.ye1{bottom:45.106667pt;}
.yd2{bottom:46.066667pt;}
.y47{bottom:46.430667pt;}
.y55{bottom:48.670667pt;}
.y3c{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.yc7{bottom:52.160000pt;}
.yf1{bottom:52.186667pt;}
.y46{bottom:57.950667pt;}
.ye0{bottom:60.466667pt;}
.yd1{bottom:61.106667pt;}
.y54{bottom:62.750667pt;}
.y3b{bottom:65.000000pt;}
.yc6{bottom:67.520000pt;}
.yf0{bottom:67.546667pt;}
.y45{bottom:69.470667pt;}
.yd0{bottom:76.466667pt;}
.y53{bottom:76.830667pt;}
.y3a{bottom:80.360000pt;}
.y44{bottom:80.990667pt;}
.y112{bottom:82.596000pt;}
.y52{bottom:90.590667pt;}
.y94{bottom:93.792000pt;}
.y39{bottom:95.720000pt;}
.y43{bottom:98.590667pt;}
.y51{bottom:101.790667pt;}
.y50{bottom:107.550667pt;}
.y93{bottom:109.152000pt;}
.y40{bottom:109.476000pt;}
.yc1{bottom:109.792000pt;}
.y38{bottom:111.080000pt;}
.y10e{bottom:114.596000pt;}
.y4f{bottom:121.630667pt;}
.y92{bottom:124.512000pt;}
.y37{bottom:126.440000pt;}
.y4e{bottom:135.417333pt;}
.y91{bottom:139.906667pt;}
.y36{bottom:141.480000pt;}
.y10d{bottom:146.640000pt;}
.y4d{bottom:149.177333pt;}
.y42{bottom:153.657333pt;}
.y90{bottom:155.266667pt;}
.y35{bottom:156.840000pt;}
.y4c{bottom:162.937333pt;}
.y41{bottom:163.257333pt;}
.y10a{bottom:163.280000pt;}
.y109{bottom:166.160000pt;}
.yc0{bottom:169.666667pt;}
.y8f{bottom:170.626667pt;}
.y34{bottom:172.200000pt;}
.y4b{bottom:176.377333pt;}
.y108{bottom:182.800000pt;}
.y8e{bottom:185.986667pt;}
.y33{bottom:187.586667pt;}
.y105{bottom:199.440000pt;}
.ybf{bottom:199.746667pt;}
.y8d{bottom:201.346667pt;}
.y32{bottom:202.946667pt;}
.y8c{bottom:216.066667pt;}
.y31{bottom:218.306667pt;}
.y13f{bottom:223.746667pt;}
.ybe{bottom:229.826667pt;}
.y8b{bottom:231.426667pt;}
.y102{bottom:231.440000pt;}
.y30{bottom:233.666667pt;}
.y1d{bottom:239.106667pt;}
.y8a{bottom:247.133333pt;}
.y2f{bottom:249.026667pt;}
.y13e{bottom:254.493333pt;}
.ybd{bottom:259.613333pt;}
.y1c{bottom:260.546667pt;}
.y89{bottom:262.493333pt;}
.y2e{bottom:264.386667pt;}
.y101{bottom:265.373333pt;}
.y13d{bottom:269.853333pt;}
.y100{bottom:271.773333pt;}
.y88{bottom:277.853333pt;}
.y2d{bottom:279.746667pt;}
.y1b{bottom:282.306667pt;}
.y13c{bottom:285.213333pt;}
.yff{bottom:287.773333pt;}
.y87{bottom:293.213333pt;}
.y2c{bottom:295.106667pt;}
.yf{bottom:298.973333pt;}
.y13b{bottom:300.573333pt;}
.ybc{bottom:301.533333pt;}
.y1a{bottom:303.773333pt;}
.y86{bottom:308.573333pt;}
.y2b{bottom:310.173333pt;}
.y13a{bottom:315.933333pt;}
.ybb{bottom:316.893333pt;}
.yfe{bottom:319.773333pt;}
.y85{bottom:323.933333pt;}
.y19{bottom:325.213333pt;}
.y2a{bottom:326.493333pt;}
.y139{bottom:330.973333pt;}
.yba{bottom:332.253333pt;}
.yfd{bottom:335.773333pt;}
.y84{bottom:339.293333pt;}
.y138{bottom:346.333333pt;}
.y18{bottom:346.653333pt;}
.yb9{bottom:347.613333pt;}
.y29{bottom:350.493333pt;}
.yfc{bottom:351.773333pt;}
.y83{bottom:354.653333pt;}
.y137{bottom:361.733333pt;}
.yb8{bottom:363.653333pt;}
.y28{bottom:363.933333pt;}
.y17{bottom:368.093333pt;}
.y82{bottom:370.053333pt;}
.yfb{bottom:371.333333pt;}
.y136{bottom:377.093333pt;}
.y27{bottom:377.693333pt;}
.y81{bottom:385.093333pt;}
.yb7{bottom:387.333333pt;}
.yfa{bottom:387.653333pt;}
.y16{bottom:389.533333pt;}
.y26{bottom:391.453333pt;}
.y135{bottom:392.453333pt;}
.y80{bottom:400.453333pt;}
.yf9{bottom:403.333333pt;}
.yb6{bottom:403.653333pt;}
.y25{bottom:405.213333pt;}
.y134{bottom:407.813333pt;}
.y15{bottom:410.973333pt;}
.y7f{bottom:415.493333pt;}
.y24{bottom:419.333333pt;}
.yf8{bottom:419.653333pt;}
.yb5{bottom:420.613333pt;}
.y133{bottom:423.813333pt;}
.y7e{bottom:431.173333pt;}
.y14{bottom:432.453333pt;}
.y23{bottom:433.093333pt;}
.yb4{bottom:436.293333pt;}
.yf7{bottom:436.933333pt;}
.y7d{bottom:446.533333pt;}
.y22{bottom:446.853333pt;}
.y132{bottom:447.493333pt;}
.yef{bottom:450.373333pt;}
.yb3{bottom:452.613333pt;}
.y13{bottom:453.893333pt;}
.y21{bottom:460.613333pt;}
.y7c{bottom:461.893333pt;}
.y131{bottom:462.853333pt;}
.yf6{bottom:467.013333pt;}
.yb2{bottom:468.613333pt;}
.y20{bottom:474.373333pt;}
.y12{bottom:475.333333pt;}
.y7b{bottom:477.253333pt;}
.y130{bottom:478.240000pt;}
.yf5{bottom:483.680000pt;}
.yb1{bottom:485.600000pt;}
.y1f{bottom:488.133333pt;}
.y7a{bottom:492.640000pt;}
.y12f{bottom:493.600000pt;}
.y11{bottom:496.773333pt;}
.yf4{bottom:500.320000pt;}
.y79{bottom:508.000000pt;}
.y12e{bottom:508.960000pt;}
.yb0{bottom:509.280000pt;}
.y1e{bottom:515.333333pt;}
.yf3{bottom:516.960000pt;}
.y10{bottom:518.213333pt;}
.y78{bottom:523.360000pt;}
.yaf{bottom:524.640000pt;}
.y12d{bottom:524.960000pt;}
.yee{bottom:533.920000pt;}
.y77{bottom:538.720000pt;}
.yae{bottom:540.000000pt;}
.y12c{bottom:548.320000pt;}
.yed{bottom:550.560000pt;}
.y76{bottom:554.080000pt;}
.yad{bottom:555.360000pt;}
.ye8{bottom:567.200000pt;}
.y12b{bottom:567.520000pt;}
.y75{bottom:569.120000pt;}
.yac{bottom:571.360000pt;}
.y12a{bottom:582.560000pt;}
.yec{bottom:583.840000pt;}
.y74{bottom:584.160000pt;}
.yab{bottom:595.066667pt;}
.y73{bottom:599.866667pt;}
.yeb{bottom:600.520000pt;}
.y129{bottom:601.466667pt;}
.yaa{bottom:610.426667pt;}
.y72{bottom:615.226667pt;}
.ydf{bottom:617.160000pt;}
.y128{bottom:620.666667pt;}
.ya9{bottom:625.786667pt;}
.y71{bottom:630.586667pt;}
.ye7{bottom:633.800000pt;}
.y127{bottom:635.706667pt;}
.ya8{bottom:641.146667pt;}
.y70{bottom:645.946667pt;}
.ye6{bottom:650.440000pt;}
.y126{bottom:654.906667pt;}
.ya7{bottom:656.506667pt;}
.y6f{bottom:661.306667pt;}
.ye5{bottom:667.080000pt;}
.y125{bottom:670.266667pt;}
.ya6{bottom:671.866667pt;}
.y6e{bottom:676.666667pt;}
.ye4{bottom:683.720000pt;}
.ya5{bottom:687.546667pt;}
.y124{bottom:690.106667pt;}
.y6d{bottom:692.026667pt;}
.ye3{bottom:700.360000pt;}
.y6c{bottom:707.386667pt;}
.ya4{bottom:711.226667pt;}
.y123{bottom:713.826667pt;}
.ycf{bottom:717.040000pt;}
.y6b{bottom:722.786667pt;}
.ya3{bottom:727.586667pt;}
.y122{bottom:728.866667pt;}
.ydd{bottom:733.680000pt;}
.y6a{bottom:737.826667pt;}
.ya2{bottom:743.906667pt;}
.y121{bottom:744.226667pt;}
.ydb{bottom:750.640000pt;}
.y69{bottom:753.186667pt;}
.y120{bottom:759.586667pt;}
.ya1{bottom:760.226667pt;}
.yd8{bottom:767.280000pt;}
.y68{bottom:768.546667pt;}
.y11f{bottom:774.946667pt;}
.ya0{bottom:776.546667pt;}
.y67{bottom:783.586667pt;}
.yd7{bottom:783.920000pt;}
.y11e{bottom:790.306667pt;}
.y9f{bottom:792.866667pt;}
.y66{bottom:799.266667pt;}
.yd6{bottom:800.560000pt;}
.y11d{bottom:805.666667pt;}
.y9e{bottom:810.146667pt;}
.y65{bottom:814.626667pt;}
.yd4{bottom:817.200000pt;}
.y11c{bottom:821.026667pt;}
.y9d{bottom:826.466667pt;}
.ye{bottom:828.066667pt;}
.y64{bottom:830.013333pt;}
.yd{bottom:832.893333pt;}
.yc5{bottom:833.853333pt;}
.y11b{bottom:836.413333pt;}
.y9c{bottom:844.413333pt;}
.y63{bottom:845.373333pt;}
.yce{bottom:850.493333pt;}
.y11a{bottom:851.773333pt;}
.yc{bottom:853.693333pt;}
.y62{bottom:860.733333pt;}
.ycd{bottom:867.133333pt;}
.y119{bottom:867.773333pt;}
.y9b{bottom:868.093333pt;}
.yb{bottom:874.173333pt;}
.y61{bottom:876.093333pt;}
.y9a{bottom:883.453333pt;}
.ycc{bottom:883.773333pt;}
.y60{bottom:891.453333pt;}
.y99{bottom:898.813333pt;}
.ycb{bottom:900.413333pt;}
.ya{bottom:906.493333pt;}
.y5f{bottom:906.813333pt;}
.y98{bottom:913.853333pt;}
.yc3{bottom:917.053333pt;}
.y5e{bottom:921.853333pt;}
.y118{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y97{bottom:929.853333pt;}
.y5d{bottom:937.213333pt;}
.y117{bottom:938.173333pt;}
.y5c{bottom:952.293333pt;}
.yc2{bottom:952.613333pt;}
.y8{bottom:952.933333pt;}
.y96{bottom:953.573333pt;}
.y59{bottom:955.840000pt;}
.y5b{bottom:968.613333pt;}
.y95{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h2b{height:1.586667pt;}
.ha{height:3.702500pt;}
.h14{height:5.022500pt;}
.h20{height:15.026667pt;}
.h25{height:15.040000pt;}
.h1b{height:15.346667pt;}
.h1e{height:15.360000pt;}
.h22{height:15.378667pt;}
.h27{height:15.386667pt;}
.h24{height:15.392000pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h28{height:27.090000pt;}
.h2a{height:30.706667pt;}
.h2d{height:30.716000pt;}
.h29{height:30.720000pt;}
.h2c{height:30.748000pt;}
.h1f{height:31.986667pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.he{height:47.713750pt;}
.hf{height:48.195000pt;}
.h23{height:48.672000pt;}
.h13{height:49.020000pt;}
.h15{height:52.736250pt;}
.h6{height:52.762500pt;}
.h9{height:54.180000pt;}
.h1a{height:55.256809pt;}
.h18{height:55.965000pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h11{height:62.812500pt;}
.h19{height:65.781915pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h1c{height:81.906667pt;}
.h26{height:81.946667pt;}
.h21{height:98.578667pt;}
.h4{height:103.680000pt;}
.h1d{height:115.520000pt;}
.h10{height:188.840000pt;}
.hb{height:526.533333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:63.066667pt;}
.w17{width:63.360000pt;}
.w16{width:63.378667pt;}
.w14{width:63.386667pt;}
.w15{width:63.392000pt;}
.w19{width:63.706667pt;}
.w1d{width:64.000000pt;}
.w1c{width:64.018667pt;}
.w1a{width:64.026667pt;}
.w1b{width:64.032000pt;}
.w12{width:75.506667pt;}
.w18{width:76.786667pt;}
.w11{width:77.138667pt;}
.w9{width:90.880000pt;}
.w2{width:92.180000pt;}
.we{width:94.400000pt;}
.wf{width:100.186667pt;}
.wd{width:107.218667pt;}
.wc{width:108.818667pt;}
.w8{width:109.458667pt;}
.w10{width:113.664000pt;}
.w4{width:117.780000pt;}
.wa{width:137.320000pt;}
.w6{width:144.960000pt;}
.wb{width:155.586667pt;}
.w7{width:293.560000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:4.186667pt;}
.x21{left:6.112000pt;}
.x19{left:7.373333pt;}
.x28{left:8.946667pt;}
.x4{left:11.826667pt;}
.x17{left:14.708000pt;}
.x14{left:15.668000pt;}
.x16{left:17.588000pt;}
.x3e{left:18.546667pt;}
.x36{left:19.840000pt;}
.x2a{left:21.106667pt;}
.x15{left:23.348000pt;}
.x2e{left:24.946667pt;}
.x1d{left:25.908000pt;}
.x38{left:27.506667pt;}
.x2f{left:28.480000pt;}
.x30{left:29.760000pt;}
.x6{left:31.346667pt;}
.x2c{left:34.226667pt;}
.x47{left:38.066667pt;}
.xf{left:39.028000pt;}
.x46{left:40.026667pt;}
.x1c{left:42.260000pt;}
.x45{left:44.186667pt;}
.x10{left:45.140000pt;}
.x2d{left:46.400000pt;}
.x31{left:47.986667pt;}
.xe{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x35{left:51.826667pt;}
.x3d{left:53.466667pt;}
.x1a{left:55.373333pt;}
.x33{left:56.640000pt;}
.x1e{left:58.902667pt;}
.x34{left:62.080000pt;}
.x13{left:64.982667pt;}
.x32{left:66.560000pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x12{left:82.582667pt;}
.x2{left:84.822667pt;}
.x24{left:88.672000pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x22{left:100.832000pt;}
.x11{left:110.742667pt;}
.x23{left:124.864000pt;}
.x5{left:125.813333pt;}
.x26{left:127.733333pt;}
.x25{left:148.880000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x3f{left:199.453333pt;}
.x39{left:250.973333pt;}
.x40{left:275.613333pt;}
.x2b{left:286.853333pt;}
.xb{left:299.013333pt;}
.xa{left:313.733333pt;}
.x4a{left:326.533333pt;}
.x48{left:334.853333pt;}
.x41{left:339.333333pt;}
.x3a{left:351.813333pt;}
.x49{left:381.920000pt;}
.x42{left:403.360000pt;}
.x27{left:443.080000pt;}
.x3c{left:466.120000pt;}
.x43{left:467.400000pt;}
.xc{left:492.986667pt;}
.x44{left:531.440000pt;}
.x37{left:550.960000pt;}
.x29{left:553.200000pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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