
    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_0720b663da9d960698cd6cec.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fdd5d99a32bd6b118c4605c1.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_10483be175a6f82b7fbab5cf.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_61852e92ffd3c1b66b7ef101.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_677feee704f59ea85707ce17.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff8{font-family:ff8;line-height:0.730469;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_8ac6d81b617d54e86dccbaa3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2661f97793afc9d2d35153cc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_2f4c3617284949288936ada1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.985840;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b140c88b413326114080f139.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5ee03b64c6ec9aee6c9001de.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_6f0584a8fdc8928ca9902b4c.woff')format("woff");}.fff{font-family:fff;line-height:1.401855;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;}
.m4{transform:matrix(0.000000,-0.247167,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247167,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247167,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252087,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252866,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253211,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254445,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;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.017280px;}
.lsc{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.025920px;}
.ls11{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.172349px;}
.ls5{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.513600px;}
.ls8{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.720000px;}
.lse{letter-spacing:54.864000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-19.457280px;}
.wsa{word-spacing:-19.431360px;}
.ws6{word-spacing:-19.422720px;}
.ws19{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws11{word-spacing:-12.889576px;}
.ws16{word-spacing:-10.591211px;}
.ws10{word-spacing:-10.135406px;}
.wsd{word-spacing:-9.498735px;}
.ws12{word-spacing:-9.146760px;}
.ws14{word-spacing:-8.970086px;}
.ws17{word-spacing:-0.210862px;}
.ws18{word-spacing:-0.038513px;}
.wse{word-spacing:-0.034541px;}
.ws13{word-spacing:-0.033261px;}
.ws15{word-spacing:-0.032618px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-460.176032px;}
._14{margin-left:-450.875706px;}
._15{margin-left:-444.800071px;}
._17{margin-left:-7.101541px;}
._13{margin-left:-4.942320px;}
._b{margin-left:-3.600000px;}
._3{margin-left:-2.165760px;}
._6{margin-left:-1.082160px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._c{width:3.880080px;}
._5{width:5.174160px;}
._10{width:6.623760px;}
._7{width:8.208000px;}
._8{width:9.432000px;}
._e{width:11.376000px;}
._f{width:12.379680px;}
._9{width:13.538160px;}
._a{width:15.254640px;}
._d{width:16.929360px;}
._11{width:18.704880px;}
._12{width:19.878240px;}
._1d{width:20.905200px;}
._18{width:21.960000px;}
._19{width:22.960080px;}
._1a{width:24.343920px;}
._1b{width:27.432000px;}
._1c{width:28.452000px;}
._2{width:532.260000px;}
._4{width:1523.640000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:32.618493px;}
.fse{font-size:33.260947px;}
.fs8{font-size:34.540856px;}
.fsa{font-size:36.856022px;}
.fs12{font-size:38.513494px;}
.fs7{font-size:38.880000px;}
.fsb{font-size:46.871186px;}
.fsc{font-size:47.408497px;}
.fs14{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs11{font-size:55.358187px;}
.fsf{font-size:56.448522px;}
.fsd{font-size:56.884157px;}
.fs9{font-size:58.620709px;}
.fs13{font-size:59.442324px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y15a{bottom:0.255000px;}
.y161{bottom:2.085000px;}
.y15c{bottom:2.265000px;}
.y163{bottom:2.445000px;}
.yc8{bottom:3.705000px;}
.ycc{bottom:4.245000px;}
.y126{bottom:4.500000px;}
.yc1{bottom:4.650000px;}
.ye3{bottom:4.681200px;}
.y4c{bottom:4.942962px;}
.ybe{bottom:5.325000px;}
.yda{bottom:5.630165px;}
.y14d{bottom:5.685000px;}
.y14b{bottom:6.195000px;}
.y14f{bottom:6.915000px;}
.yc5{bottom:7.305000px;}
.y152{bottom:7.455000px;}
.y15f{bottom:8.025000px;}
.y158{bottom:8.895000px;}
.y155{bottom:9.795000px;}
.y103{bottom:13.762184px;}
.y72{bottom:16.007899px;}
.ye2{bottom:16.177479px;}
.y4b{bottom:17.130895px;}
.yd9{bottom:17.352875px;}
.ycb{bottom:24.045000px;}
.yc0{bottom:24.450000px;}
.y102{bottom:26.994503px;}
.yc4{bottom:27.105000px;}
.ye1{bottom:27.687096px;}
.ydb{bottom:28.246020px;}
.y151{bottom:29.235000px;}
.y4a{bottom:29.304705px;}
.y15e{bottom:29.805000px;}
.y157{bottom:30.675000px;}
.y154{bottom:31.575000px;}
.y6a{bottom:33.749595px;}
.y108{bottom:34.386671px;}
.ye4{bottom:38.369833px;}
.y7{bottom:39.276000px;}
.y101{bottom:39.338938px;}
.yde{bottom:39.345673px;}
.y4d{bottom:40.617028px;}
.y71{bottom:43.008276px;}
.y149{bottom:49.965000px;}
.y100{bottom:52.571257px;}
.ye6{bottom:54.182993px;}
.ybc{bottom:57.210000px;}
.y6{bottom:58.536000px;}
.y104{bottom:65.803575px;}
.y70{bottom:81.827315px;}
.y51{bottom:84.326726px;}
.y73{bottom:95.327503px;}
.y6f{bottom:120.646353px;}
.y107{bottom:124.310587px;}
.y30{bottom:131.436000px;}
.y2f{bottom:136.656000px;}
.y68{bottom:140.796000px;}
.yba{bottom:147.456000px;}
.y2e{bottom:150.330000px;}
.y124{bottom:152.130000px;}
.y9b{bottom:156.090000px;}
.y6e{bottom:160.308210px;}
.y67{bottom:161.490000px;}
.y50{bottom:162.603478px;}
.yd7{bottom:162.750000px;}
.ye5{bottom:163.719103px;}
.yfe{bottom:167.070000px;}
.yb9{bottom:168.150000px;}
.y147{bottom:168.510000px;}
.y66{bottom:182.190000px;}
.yfd{bottom:187.770000px;}
.y109{bottom:188.697846px;}
.y146{bottom:189.210000px;}
.y123{bottom:190.830000px;}
.y2d{bottom:192.810000px;}
.y9a{bottom:194.790000px;}
.y6d{bottom:199.119026px;}
.y48{bottom:199.290000px;}
.yb8{bottom:207.030000px;}
.yfc{bottom:208.470000px;}
.y145{bottom:209.910000px;}
.y2c{bottom:210.090000px;}
.y99{bottom:215.490000px;}
.ye7{bottom:218.423751px;}
.y65{bottom:220.890000px;}
.y2b{bottom:227.190000px;}
.y122{bottom:229.530000px;}
.y144{bottom:230.610000px;}
.y47{bottom:237.810000px;}
.y6c{bottom:237.943546px;}
.y64{bottom:241.590000px;}
.ydd{bottom:246.184874px;}
.yb7{bottom:246.990000px;}
.yfb{bottom:247.170000px;}
.ye8{bottom:247.191123px;}
.y4f{bottom:249.585492px;}
.y121{bottom:250.230000px;}
.y143{bottom:251.310000px;}
.y98{bottom:254.190000px;}
.y106{bottom:254.830797px;}
.y63{bottom:262.290000px;}
.y2a{bottom:263.190000px;}
.yfa{bottom:267.870000px;}
.y120{bottom:270.930000px;}
.y142{bottom:272.010000px;}
.y97{bottom:274.935000px;}
.y46{bottom:276.555000px;}
.y6b{bottom:276.768066px;}
.y62{bottom:283.035000px;}
.y29{bottom:283.935000px;}
.y17b{bottom:286.275000px;}
.yb6{bottom:287.715000px;}
.yf9{bottom:288.615000px;}
.ye9{bottom:289.068522px;}
.y11f{bottom:291.675000px;}
.ydf{bottom:294.762045px;}
.y96{bottom:295.635000px;}
.y74{bottom:297.023145px;}
.y45{bottom:297.255000px;}
.y61{bottom:303.735000px;}
.y52{bottom:306.104736px;}
.yb5{bottom:308.415000px;}
.y10a{bottom:310.380757px;}
.y141{bottom:310.755000px;}
.y95{bottom:316.335000px;}
.y28{bottom:324.435000px;}
.y17a{bottom:325.155000px;}
.yf8{bottom:327.315000px;}
.yb4{bottom:329.115000px;}
.y11e{bottom:330.375000px;}
.y140{bottom:331.455000px;}
.y44{bottom:335.955000px;}
.y27{bottom:345.135000px;}
.yf7{bottom:348.015000px;}
.yb3{bottom:349.815000px;}
.y94{bottom:354.675000px;}
.y43{bottom:356.655000px;}
.y179{bottom:363.135000px;}
.y12d{bottom:364.935000px;}
.y26{bottom:365.835000px;}
.yf6{bottom:368.715000px;}
.y11d{bottom:368.895000px;}
.y13f{bottom:369.975000px;}
.yb2{bottom:370.515000px;}
.y42{bottom:377.355000px;}
.y178{bottom:383.835000px;}
.y12c{bottom:386.355000px;}
.y25{bottom:386.535000px;}
.yf5{bottom:389.415000px;}
.yb1{bottom:391.215000px;}
.ye0{bottom:391.425233px;}
.y93{bottom:395.355000px;}
.y41{bottom:398.055000px;}
.y13e{bottom:405.795000px;}
.y24{bottom:407.235000px;}
.y11c{bottom:407.595000px;}
.y12b{bottom:407.775000px;}
.yb0{bottom:411.915000px;}
.y14e{bottom:415.260000px;}
.y92{bottom:416.055000px;}
.y40{bottom:418.755000px;}
.y177{bottom:422.535000px;}
.y23{bottom:427.935000px;}
.yf4{bottom:428.115000px;}
.y12a{bottom:429.195000px;}
.y91{bottom:436.755000px;}
.y3f{bottom:439.455000px;}
.y176{bottom:443.235000px;}
.y13d{bottom:444.495000px;}
.y11b{bottom:446.295000px;}
.y22{bottom:448.635000px;}
.yf3{bottom:448.815000px;}
.y156{bottom:450.540000px;}
.yaf{bottom:450.615000px;}
.y159{bottom:457.380000px;}
.y90{bottom:457.455000px;}
.y60{bottom:466.455000px;}
.y21{bottom:469.335000px;}
.yf2{bottom:469.515000px;}
.yae{bottom:471.315000px;}
.y129{bottom:472.035000px;}
.y3e{bottom:477.975000px;}
.y175{bottom:481.935000px;}
.y13c{bottom:483.015000px;}
.y153{bottom:483.480000px;}
.y11a{bottom:484.995000px;}
.y20{bottom:490.035000px;}
.yf1{bottom:490.215000px;}
.yad{bottom:492.015000px;}
.y128{bottom:493.635000px;}
.y8f{bottom:496.155000px;}
.y174{bottom:502.635000px;}
.y150{bottom:502.740000px;}
.y5f{bottom:506.955000px;}
.y1f{bottom:510.735000px;}
.yd6{bottom:511.455000px;}
.y3d{bottom:512.355000px;}
.y4e{bottom:514.587349px;}
.y127{bottom:515.055000px;}
.y8e{bottom:516.855000px;}
.y13b{bottom:521.715000px;}
.y173{bottom:523.335000px;}
.y119{bottom:523.695000px;}
.y5e{bottom:529.095000px;}
.yac{bottom:530.535000px;}
.y1e{bottom:531.435000px;}
.yd5{bottom:532.155000px;}
.y148{bottom:533.880000px;}
.y125{bottom:536.475000px;}
.y8d{bottom:537.555000px;}
.yf0{bottom:549.435000px;}
.y5d{bottom:549.615000px;}
.y1d{bottom:552.135000px;}
.yab{bottom:552.495000px;}
.yd4{bottom:552.855000px;}
.y8c{bottom:558.285000px;}
.y172{bottom:561.885000px;}
.y14a{bottom:562.035000px;}
.y13a{bottom:562.245000px;}
.y1c{bottom:572.865000px;}
.yd3{bottom:573.585000px;}
.yaa{bottom:574.485000px;}
.y118{bottom:577.365000px;}
.y8b{bottom:578.985000px;}
.y171{bottom:582.585000px;}
.yef{bottom:583.845000px;}
.y105{bottom:584.799462px;}
.y5c{bottom:589.785000px;}
.y1b{bottom:593.565000px;}
.yd2{bottom:594.285000px;}
.y139{bottom:602.565000px;}
.y5b{bottom:610.485000px;}
.y162{bottom:612.720000px;}
.y1a{bottom:614.265000px;}
.ya9{bottom:614.625000px;}
.yd1{bottom:614.985000px;}
.y117{bottom:616.245000px;}
.y8a{bottom:617.685000px;}
.y160{bottom:620.640000px;}
.y170{bottom:621.285000px;}
.y5a{bottom:631.185000px;}
.y19{bottom:634.965000px;}
.ya8{bottom:635.325000px;}
.y116{bottom:636.945000px;}
.y89{bottom:638.385000px;}
.y16f{bottom:641.985000px;}
.y138{bottom:643.065000px;}
.y15d{bottom:645.120000px;}
.y15b{bottom:650.880000px;}
.yd0{bottom:653.685000px;}
.y18{bottom:655.665000px;}
.y115{bottom:657.645000px;}
.y88{bottom:659.085000px;}
.y16e{bottom:662.685000px;}
.y59{bottom:669.885000px;}
.ya7{bottom:674.025000px;}
.y17{bottom:676.365000px;}
.y87{bottom:679.785000px;}
.y137{bottom:683.385000px;}
.ycf{bottom:687.885000px;}
.ydc{bottom:689.875209px;}
.y58{bottom:690.585000px;}
.y114{bottom:696.345000px;}
.y86{bottom:700.485000px;}
.y16d{bottom:701.385000px;}
.yca{bottom:704.700000px;}
.y14c{bottom:705.060000px;}
.y57{bottom:711.285000px;}
.ya6{bottom:712.725000px;}
.y16{bottom:714.705000px;}
.y113{bottom:716.865000px;}
.y85{bottom:721.185000px;}
.y16c{bottom:722.085000px;}
.y136{bottom:723.885000px;}
.y56{bottom:731.985000px;}
.y112{bottom:738.825000px;}
.ya5{bottom:751.425000px;}
.y55{bottom:752.685000px;}
.y15{bottom:755.205000px;}
.y49{bottom:755.713314px;}
.y84{bottom:759.885000px;}
.yc9{bottom:760.680000px;}
.y111{bottom:760.785000px;}
.y135{bottom:764.745000px;}
.y83{bottom:780.585000px;}
.y16b{bottom:781.485000px;}
.y110{bottom:782.925000px;}
.ya4{bottom:789.945000px;}
.y54{bottom:791.205000px;}
.yc3{bottom:794.880000px;}
.y14{bottom:796.425000px;}
.y82{bottom:801.285000px;}
.yc7{bottom:801.720000px;}
.y10f{bottom:803.445000px;}
.yff{bottom:804.687773px;}
.y134{bottom:804.885000px;}
.y16a{bottom:820.005000px;}
.y13{bottom:820.545000px;}
.y81{bottom:821.985000px;}
.y53{bottom:825.585000px;}
.y69{bottom:827.581641px;}
.ya3{bottom:828.825000px;}
.ybb{bottom:831.420000px;}
.y3c{bottom:840.930000px;}
.yc6{bottom:840.960000px;}
.y80{bottom:842.730000px;}
.y10e{bottom:843.630000px;}
.y12{bottom:844.710000px;}
.y133{bottom:846.330000px;}
.y169{bottom:860.730000px;}
.y3b{bottom:861.630000px;}
.ybd{bottom:862.890000px;}
.y7f{bottom:863.430000px;}
.y10d{bottom:864.330000px;}
.ya2{bottom:867.570000px;}
.y10{bottom:869.010000px;}
.y11{bottom:876.570000px;}
.yc2{bottom:880.380000px;}
.y168{bottom:881.430000px;}
.y3a{bottom:882.330000px;}
.y7e{bottom:884.130000px;}
.y10c{bottom:885.030000px;}
.yf{bottom:893.130000px;}
.y167{bottom:902.130000px;}
.y39{bottom:903.030000px;}
.y7d{bottom:904.830000px;}
.y132{bottom:905.730000px;}
.ya1{bottom:906.270000px;}
.yee{bottom:907.350000px;}
.ye{bottom:917.250000px;}
.y166{bottom:922.830000px;}
.y38{bottom:923.730000px;}
.y10b{bottom:924.090000px;}
.y7c{bottom:925.530000px;}
.yd8{bottom:932.932213px;}
.yd{bottom:941.370000px;}
.y131{bottom:944.430000px;}
.yed{bottom:944.790000px;}
.ya0{bottom:944.970000px;}
.ybf{bottom:945.000000px;}
.y165{bottom:961.530000px;}
.y37{bottom:962.430000px;}
.y7b{bottom:964.230000px;}
.y130{bottom:965.130000px;}
.yc{bottom:965.490000px;}
.y164{bottom:982.230000px;}
.y36{bottom:983.130000px;}
.y9f{bottom:983.670000px;}
.y7a{bottom:984.930000px;}
.y12f{bottom:985.830000px;}
.yb{bottom:991.230000px;}
.yce{bottom:1002.930000px;}
.y35{bottom:1003.830000px;}
.y79{bottom:1005.630000px;}
.y9e{bottom:1022.370000px;}
.ycd{bottom:1023.630000px;}
.y12e{bottom:1024.350000px;}
.y34{bottom:1024.530000px;}
.ya{bottom:1025.790000px;}
.y78{bottom:1026.330000px;}
.y9d{bottom:1044.330000px;}
.y33{bottom:1045.230000px;}
.yec{bottom:1047.030000px;}
.y9{bottom:1060.170000px;}
.y77{bottom:1065.030000px;}
.y32{bottom:1065.930000px;}
.y9c{bottom:1066.290000px;}
.yeb{bottom:1067.730000px;}
.y76{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y31{bottom:1104.450000px;}
.yea{bottom:1106.250000px;}
.y75{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h3f{height:15.300000px;}
.h42{height:17.100000px;}
.h23{height:17.460000px;}
.h22{height:19.080000px;}
.h37{height:20.685000px;}
.h3a{height:20.700000px;}
.h36{height:20.730000px;}
.h3b{height:21.960000px;}
.h10{height:27.945000px;}
.h2d{height:27.967809px;}
.h2b{height:28.206714px;}
.h28{height:28.518663px;}
.h26{height:28.762274px;}
.h15{height:29.616086px;}
.h13{height:29.869070px;}
.h1a{height:31.871101px;}
.h33{height:33.022312px;}
.h31{height:33.304393px;}
.hb{height:37.494141px;}
.h24{height:37.800000px;}
.h20{height:38.160000px;}
.h40{height:39.060000px;}
.h25{height:39.256120px;}
.h1b{height:40.531675px;}
.h21{height:40.860000px;}
.h1c{height:40.996312px;}
.h11{height:41.493516px;}
.h6{height:41.756133px;}
.h3c{height:44.280000px;}
.h41{height:44.820000px;}
.h4{height:45.184219px;}
.h3e{height:45.720000px;}
.h3d{height:46.620000px;}
.h2e{height:47.870776px;}
.h29{height:48.813639px;}
.h2a{height:49.145928px;}
.h1d{height:49.190353px;}
.hf{height:50.027344px;}
.h16{height:50.692029px;}
.h34{height:51.402518px;}
.h12{height:52.042332px;}
.hc{height:52.998047px;}
.h5{height:53.640000px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h38{height:64.980000px;}
.h39{height:65.010937px;}
.h2f{height:66.757500px;}
.he{height:70.664062px;}
.h1f{height:70.740000px;}
.h17{height:72.562500px;}
.h18{height:74.004654px;}
.h35{height:74.704922px;}
.h1e{height:76.279219px;}
.h30{height:77.399039px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.h9{height:83.238047px;}
.h7{height:121.179375px;}
.h2c{height:284.840772px;}
.h27{height:290.587019px;}
.h19{height:295.077123px;}
.h32{height:302.780538px;}
.h14{height:303.873342px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:69.105000px;}
.w9{width:73.800000px;}
.w1c{width:75.420000px;}
.w7{width:77.940000px;}
.w4{width:83.161274px;}
.w10{width:87.201104px;}
.w19{width:89.280000px;}
.we{width:94.338163px;}
.w17{width:96.516000px;}
.w23{width:109.080000px;}
.w1b{width:109.440000px;}
.w22{width:111.420000px;}
.w1e{width:117.000000px;}
.wc{width:119.880000px;}
.w20{width:121.500000px;}
.w2{width:125.460000px;}
.wa{width:130.680000px;}
.w1f{width:131.760000px;}
.w8{width:141.840000px;}
.wd{width:144.180000px;}
.w1a{width:144.360000px;}
.wb{width:151.380000px;}
.w1d{width:155.340000px;}
.w16{width:166.350000px;}
.w12{width:178.524502px;}
.w21{width:192.420000px;}
.w15{width:249.855000px;}
.w14{width:416.940000px;}
.w11{width:473.848272px;}
.wf{width:485.168879px;}
.w6{width:486.247032px;}
.w5{width:504.219844px;}
.w13{width:506.548655px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:7.770000px;}
.x2c{left:10.830000px;}
.x53{left:12.270000px;}
.x4d{left:14.205000px;}
.x31{left:16.095000px;}
.x3b{left:17.965683px;}
.x16{left:19.131578px;}
.x30{left:20.415000px;}
.x40{left:21.631457px;}
.x2e{left:23.655000px;}
.x27{left:25.359580px;}
.x4e{left:27.930000px;}
.x51{left:29.550000px;}
.x58{left:31.245000px;}
.x22{left:32.990327px;}
.x23{left:34.678656px;}
.x24{left:38.055314px;}
.x2f{left:44.715000px;}
.x5c{left:47.415000px;}
.x2{left:50.399998px;}
.x25{left:53.283541px;}
.x47{left:62.850000px;}
.x19{left:77.173126px;}
.x42{left:91.634773px;}
.x4c{left:92.910000px;}
.x48{left:96.330000px;}
.x1b{left:112.258226px;}
.x3c{left:114.545407px;}
.x3d{left:125.272136px;}
.x1{left:127.656000px;}
.x39{left:131.634156px;}
.x12{left:133.056000px;}
.x18{left:135.052257px;}
.x37{left:136.687912px;}
.x5{left:141.876000px;}
.xd{left:148.356000px;}
.x4a{left:151.950000px;}
.x4{left:156.630000px;}
.x10{left:159.510000px;}
.x8{left:168.510000px;}
.x28{left:171.674484px;}
.x29{left:175.890000px;}
.xc{left:176.970000px;}
.xf{left:180.750000px;}
.x49{left:184.890000px;}
.x41{left:192.240008px;}
.x14{left:197.670000px;}
.x44{left:202.890000px;}
.x17{left:204.120008px;}
.x1e{left:208.650000px;}
.x20{left:213.120007px;}
.x38{left:233.725837px;}
.x1f{left:235.650000px;}
.x46{left:238.185000px;}
.x50{left:243.900000px;}
.x26{left:245.251247px;}
.x52{left:260.490000px;}
.x2b{left:265.500000px;}
.x5b{left:271.080000px;}
.x43{left:274.869676px;}
.x2d{left:276.330000px;}
.x34{left:282.810000px;}
.x45{left:291.090000px;}
.x1a{left:299.910111px;}
.x59{left:306.000000px;}
.x7{left:312.555000px;}
.x5e{left:313.920000px;}
.x4f{left:316.335000px;}
.x3e{left:320.115000px;}
.x1d{left:324.615000px;}
.x56{left:340.920000px;}
.x11{left:343.695000px;}
.x2a{left:350.175000px;}
.x9{left:382.935000px;}
.x21{left:405.074169px;}
.xe{left:420.375000px;}
.x54{left:437.400000px;}
.x55{left:445.320000px;}
.x3{left:446.655000px;}
.x6{left:457.275000px;}
.x3f{left:475.412813px;}
.x57{left:486.000000px;}
.x32{left:488.880000px;}
.x5d{left:496.080000px;}
.x5a{left:523.080000px;}
.xa{left:524.602500px;}
.xb{left:531.465000px;}
.x36{left:583.455380px;}
.x3a{left:585.115561px;}
.x15{left:613.788741px;}
.x35{left:683.925000px;}
.x33{left:689.730000px;}
.x1c{left:701.430000px;}
.x13{left:710.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.023040pt;}
.ls11{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.153199pt;}
.ls5{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.456533pt;}
.ls8{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.640000pt;}
.lse{letter-spacing:48.768000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-17.295360pt;}
.wsa{word-spacing:-17.272320pt;}
.ws6{word-spacing:-17.264640pt;}
.ws19{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws11{word-spacing:-11.457401pt;}
.ws16{word-spacing:-9.414410pt;}
.ws10{word-spacing:-9.009250pt;}
.wsd{word-spacing:-8.443320pt;}
.ws12{word-spacing:-8.130454pt;}
.ws14{word-spacing:-7.973409pt;}
.ws17{word-spacing:-0.187433pt;}
.ws18{word-spacing:-0.034234pt;}
.wse{word-spacing:-0.030703pt;}
.ws13{word-spacing:-0.029565pt;}
.ws15{word-spacing:-0.028994pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-409.045362pt;}
._14{margin-left:-400.778405pt;}
._15{margin-left:-395.377841pt;}
._17{margin-left:-6.312480pt;}
._13{margin-left:-4.393173pt;}
._b{margin-left:-3.200000pt;}
._3{margin-left:-1.925120pt;}
._6{margin-left:-0.961920pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._c{width:3.448960pt;}
._5{width:4.599253pt;}
._10{width:5.887787pt;}
._7{width:7.296000pt;}
._8{width:8.384000pt;}
._e{width:10.112000pt;}
._f{width:11.004160pt;}
._9{width:12.033920pt;}
._a{width:13.559680pt;}
._d{width:15.048320pt;}
._11{width:16.626560pt;}
._12{width:17.669547pt;}
._1d{width:18.582400pt;}
._18{width:19.520000pt;}
._19{width:20.408960pt;}
._1a{width:21.639040pt;}
._1b{width:24.384000pt;}
._1c{width:25.290667pt;}
._2{width:473.120000pt;}
._4{width:1354.346667pt;}
.fs10{font-size:28.994216pt;}
.fse{font-size:29.565286pt;}
.fs8{font-size:30.702983pt;}
.fsa{font-size:32.760909pt;}
.fs12{font-size:34.234217pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:41.663276pt;}
.fsc{font-size:42.140886pt;}
.fs14{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs11{font-size:49.207277pt;}
.fsf{font-size:50.176464pt;}
.fsd{font-size:50.563695pt;}
.fs9{font-size:52.107297pt;}
.fs13{font-size:52.837622pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y15a{bottom:0.226667pt;}
.y161{bottom:1.853333pt;}
.y15c{bottom:2.013333pt;}
.y163{bottom:2.173333pt;}
.yc8{bottom:3.293333pt;}
.ycc{bottom:3.773333pt;}
.y126{bottom:4.000000pt;}
.yc1{bottom:4.133333pt;}
.ye3{bottom:4.161066pt;}
.y4c{bottom:4.393744pt;}
.ybe{bottom:4.733333pt;}
.yda{bottom:5.004591pt;}
.y14d{bottom:5.053333pt;}
.y14b{bottom:5.506667pt;}
.y14f{bottom:6.146667pt;}
.yc5{bottom:6.493333pt;}
.y152{bottom:6.626667pt;}
.y15f{bottom:7.133333pt;}
.y158{bottom:7.906667pt;}
.y155{bottom:8.706667pt;}
.y103{bottom:12.233053pt;}
.y72{bottom:14.229244pt;}
.ye2{bottom:14.379982pt;}
.y4b{bottom:15.227462pt;}
.yd9{bottom:15.424778pt;}
.ycb{bottom:21.373333pt;}
.yc0{bottom:21.733333pt;}
.y102{bottom:23.995113pt;}
.yc4{bottom:24.093333pt;}
.ye1{bottom:24.610752pt;}
.ydb{bottom:25.107574pt;}
.y151{bottom:25.986667pt;}
.y4a{bottom:26.048627pt;}
.y15e{bottom:26.493333pt;}
.y157{bottom:27.266667pt;}
.y154{bottom:28.066667pt;}
.y6a{bottom:29.999640pt;}
.y108{bottom:30.565930pt;}
.ye4{bottom:34.106519pt;}
.y7{bottom:34.912000pt;}
.y101{bottom:34.967945pt;}
.yde{bottom:34.973931pt;}
.y4d{bottom:36.104025pt;}
.y71{bottom:38.229579pt;}
.y149{bottom:44.413333pt;}
.y100{bottom:46.730006pt;}
.ye6{bottom:48.162660pt;}
.ybc{bottom:50.853333pt;}
.y6{bottom:52.032000pt;}
.y104{bottom:58.492067pt;}
.y70{bottom:72.735391pt;}
.y51{bottom:74.957090pt;}
.y73{bottom:84.735558pt;}
.y6f{bottom:107.241202pt;}
.y107{bottom:110.498299pt;}
.y30{bottom:116.832000pt;}
.y2f{bottom:121.472000pt;}
.y68{bottom:125.152000pt;}
.yba{bottom:131.072000pt;}
.y2e{bottom:133.626667pt;}
.y124{bottom:135.226667pt;}
.y9b{bottom:138.746667pt;}
.y6e{bottom:142.496187pt;}
.y67{bottom:143.546667pt;}
.y50{bottom:144.536425pt;}
.yd7{bottom:144.666667pt;}
.ye5{bottom:145.528092pt;}
.yfe{bottom:148.506667pt;}
.yb9{bottom:149.466667pt;}
.y147{bottom:149.786667pt;}
.y66{bottom:161.946667pt;}
.yfd{bottom:166.906667pt;}
.y109{bottom:167.731418pt;}
.y146{bottom:168.186667pt;}
.y123{bottom:169.626667pt;}
.y2d{bottom:171.386667pt;}
.y9a{bottom:173.146667pt;}
.y6d{bottom:176.994690pt;}
.y48{bottom:177.146667pt;}
.yb8{bottom:184.026667pt;}
.yfc{bottom:185.306667pt;}
.y145{bottom:186.586667pt;}
.y2c{bottom:186.746667pt;}
.y99{bottom:191.546667pt;}
.ye7{bottom:194.154445pt;}
.y65{bottom:196.346667pt;}
.y2b{bottom:201.946667pt;}
.y122{bottom:204.026667pt;}
.y144{bottom:204.986667pt;}
.y47{bottom:211.386667pt;}
.y6c{bottom:211.505374pt;}
.y64{bottom:214.746667pt;}
.ydd{bottom:218.830999pt;}
.yb7{bottom:219.546667pt;}
.yfb{bottom:219.706667pt;}
.ye8{bottom:219.725443pt;}
.y4f{bottom:221.853771pt;}
.y121{bottom:222.426667pt;}
.y143{bottom:223.386667pt;}
.y98{bottom:225.946667pt;}
.y106{bottom:226.516264pt;}
.y63{bottom:233.146667pt;}
.y2a{bottom:233.946667pt;}
.yfa{bottom:238.106667pt;}
.y120{bottom:240.826667pt;}
.y142{bottom:241.786667pt;}
.y97{bottom:244.386667pt;}
.y46{bottom:245.826667pt;}
.y6b{bottom:246.016058pt;}
.y62{bottom:251.586667pt;}
.y29{bottom:252.386667pt;}
.y17b{bottom:254.466667pt;}
.yb6{bottom:255.746667pt;}
.yf9{bottom:256.546667pt;}
.ye9{bottom:256.949797pt;}
.y11f{bottom:259.266667pt;}
.ydf{bottom:262.010707pt;}
.y96{bottom:262.786667pt;}
.y74{bottom:264.020574pt;}
.y45{bottom:264.226667pt;}
.y61{bottom:269.986667pt;}
.y52{bottom:272.093099pt;}
.yb5{bottom:274.146667pt;}
.y10a{bottom:275.894006pt;}
.y141{bottom:276.226667pt;}
.y95{bottom:281.186667pt;}
.y28{bottom:288.386667pt;}
.y17a{bottom:289.026667pt;}
.yf8{bottom:290.946667pt;}
.yb4{bottom:292.546667pt;}
.y11e{bottom:293.666667pt;}
.y140{bottom:294.626667pt;}
.y44{bottom:298.626667pt;}
.y27{bottom:306.786667pt;}
.yf7{bottom:309.346667pt;}
.yb3{bottom:310.946667pt;}
.y94{bottom:315.266667pt;}
.y43{bottom:317.026667pt;}
.y179{bottom:322.786667pt;}
.y12d{bottom:324.386667pt;}
.y26{bottom:325.186667pt;}
.yf6{bottom:327.746667pt;}
.y11d{bottom:327.906667pt;}
.y13f{bottom:328.866667pt;}
.yb2{bottom:329.346667pt;}
.y42{bottom:335.426667pt;}
.y178{bottom:341.186667pt;}
.y12c{bottom:343.426667pt;}
.y25{bottom:343.586667pt;}
.yf5{bottom:346.146667pt;}
.yb1{bottom:347.746667pt;}
.ye0{bottom:347.933540pt;}
.y93{bottom:351.426667pt;}
.y41{bottom:353.826667pt;}
.y13e{bottom:360.706667pt;}
.y24{bottom:361.986667pt;}
.y11c{bottom:362.306667pt;}
.y12b{bottom:362.466667pt;}
.yb0{bottom:366.146667pt;}
.y14e{bottom:369.120000pt;}
.y92{bottom:369.826667pt;}
.y40{bottom:372.226667pt;}
.y177{bottom:375.586667pt;}
.y23{bottom:380.386667pt;}
.yf4{bottom:380.546667pt;}
.y12a{bottom:381.506667pt;}
.y91{bottom:388.226667pt;}
.y3f{bottom:390.626667pt;}
.y176{bottom:393.986667pt;}
.y13d{bottom:395.106667pt;}
.y11b{bottom:396.706667pt;}
.y22{bottom:398.786667pt;}
.yf3{bottom:398.946667pt;}
.y156{bottom:400.480000pt;}
.yaf{bottom:400.546667pt;}
.y159{bottom:406.560000pt;}
.y90{bottom:406.626667pt;}
.y60{bottom:414.626667pt;}
.y21{bottom:417.186667pt;}
.yf2{bottom:417.346667pt;}
.yae{bottom:418.946667pt;}
.y129{bottom:419.586667pt;}
.y3e{bottom:424.866667pt;}
.y175{bottom:428.386667pt;}
.y13c{bottom:429.346667pt;}
.y153{bottom:429.760000pt;}
.y11a{bottom:431.106667pt;}
.y20{bottom:435.586667pt;}
.yf1{bottom:435.746667pt;}
.yad{bottom:437.346667pt;}
.y128{bottom:438.786667pt;}
.y8f{bottom:441.026667pt;}
.y174{bottom:446.786667pt;}
.y150{bottom:446.880000pt;}
.y5f{bottom:450.626667pt;}
.y1f{bottom:453.986667pt;}
.yd6{bottom:454.626667pt;}
.y3d{bottom:455.426667pt;}
.y4e{bottom:457.410977pt;}
.y127{bottom:457.826667pt;}
.y8e{bottom:459.426667pt;}
.y13b{bottom:463.746667pt;}
.y173{bottom:465.186667pt;}
.y119{bottom:465.506667pt;}
.y5e{bottom:470.306667pt;}
.yac{bottom:471.586667pt;}
.y1e{bottom:472.386667pt;}
.yd5{bottom:473.026667pt;}
.y148{bottom:474.560000pt;}
.y125{bottom:476.866667pt;}
.y8d{bottom:477.826667pt;}
.yf0{bottom:488.386667pt;}
.y5d{bottom:488.546667pt;}
.y1d{bottom:490.786667pt;}
.yab{bottom:491.106667pt;}
.yd4{bottom:491.426667pt;}
.y8c{bottom:496.253333pt;}
.y172{bottom:499.453333pt;}
.y14a{bottom:499.586667pt;}
.y13a{bottom:499.773333pt;}
.y1c{bottom:509.213333pt;}
.yd3{bottom:509.853333pt;}
.yaa{bottom:510.653333pt;}
.y118{bottom:513.213333pt;}
.y8b{bottom:514.653333pt;}
.y171{bottom:517.853333pt;}
.yef{bottom:518.973333pt;}
.y105{bottom:519.821744pt;}
.y5c{bottom:524.253333pt;}
.y1b{bottom:527.613333pt;}
.yd2{bottom:528.253333pt;}
.y139{bottom:535.613333pt;}
.y5b{bottom:542.653333pt;}
.y162{bottom:544.640000pt;}
.y1a{bottom:546.013333pt;}
.ya9{bottom:546.333333pt;}
.yd1{bottom:546.653333pt;}
.y117{bottom:547.773333pt;}
.y8a{bottom:549.053333pt;}
.y160{bottom:551.680000pt;}
.y170{bottom:552.253333pt;}
.y5a{bottom:561.053333pt;}
.y19{bottom:564.413333pt;}
.ya8{bottom:564.733333pt;}
.y116{bottom:566.173333pt;}
.y89{bottom:567.453333pt;}
.y16f{bottom:570.653333pt;}
.y138{bottom:571.613333pt;}
.y15d{bottom:573.440000pt;}
.y15b{bottom:578.560000pt;}
.yd0{bottom:581.053333pt;}
.y18{bottom:582.813333pt;}
.y115{bottom:584.573333pt;}
.y88{bottom:585.853333pt;}
.y16e{bottom:589.053333pt;}
.y59{bottom:595.453333pt;}
.ya7{bottom:599.133333pt;}
.y17{bottom:601.213333pt;}
.y87{bottom:604.253333pt;}
.y137{bottom:607.453333pt;}
.ycf{bottom:611.453333pt;}
.ydc{bottom:613.222408pt;}
.y58{bottom:613.853333pt;}
.y114{bottom:618.973333pt;}
.y86{bottom:622.653333pt;}
.y16d{bottom:623.453333pt;}
.yca{bottom:626.400000pt;}
.y14c{bottom:626.720000pt;}
.y57{bottom:632.253333pt;}
.ya6{bottom:633.533333pt;}
.y16{bottom:635.293333pt;}
.y113{bottom:637.213333pt;}
.y85{bottom:641.053333pt;}
.y16c{bottom:641.853333pt;}
.y136{bottom:643.453333pt;}
.y56{bottom:650.653333pt;}
.y112{bottom:656.733333pt;}
.ya5{bottom:667.933333pt;}
.y55{bottom:669.053333pt;}
.y15{bottom:671.293333pt;}
.y49{bottom:671.745168pt;}
.y84{bottom:675.453333pt;}
.yc9{bottom:676.160000pt;}
.y111{bottom:676.253333pt;}
.y135{bottom:679.773333pt;}
.y83{bottom:693.853333pt;}
.y16b{bottom:694.653333pt;}
.y110{bottom:695.933333pt;}
.ya4{bottom:702.173333pt;}
.y54{bottom:703.293333pt;}
.yc3{bottom:706.560000pt;}
.y14{bottom:707.933333pt;}
.y82{bottom:712.253333pt;}
.yc7{bottom:712.640000pt;}
.y10f{bottom:714.173333pt;}
.yff{bottom:715.278020pt;}
.y134{bottom:715.453333pt;}
.y16a{bottom:728.893333pt;}
.y13{bottom:729.373333pt;}
.y81{bottom:730.653333pt;}
.y53{bottom:733.853333pt;}
.y69{bottom:735.628125pt;}
.ya3{bottom:736.733333pt;}
.ybb{bottom:739.040000pt;}
.y3c{bottom:747.493333pt;}
.yc6{bottom:747.520000pt;}
.y80{bottom:749.093333pt;}
.y10e{bottom:749.893333pt;}
.y12{bottom:750.853333pt;}
.y133{bottom:752.293333pt;}
.y169{bottom:765.093333pt;}
.y3b{bottom:765.893333pt;}
.ybd{bottom:767.013333pt;}
.y7f{bottom:767.493333pt;}
.y10d{bottom:768.293333pt;}
.ya2{bottom:771.173333pt;}
.y10{bottom:772.453333pt;}
.y11{bottom:779.173333pt;}
.yc2{bottom:782.560000pt;}
.y168{bottom:783.493333pt;}
.y3a{bottom:784.293333pt;}
.y7e{bottom:785.893333pt;}
.y10c{bottom:786.693333pt;}
.yf{bottom:793.893333pt;}
.y167{bottom:801.893333pt;}
.y39{bottom:802.693333pt;}
.y7d{bottom:804.293333pt;}
.y132{bottom:805.093333pt;}
.ya1{bottom:805.573333pt;}
.yee{bottom:806.533333pt;}
.ye{bottom:815.333333pt;}
.y166{bottom:820.293333pt;}
.y38{bottom:821.093333pt;}
.y10b{bottom:821.413333pt;}
.y7c{bottom:822.693333pt;}
.yd8{bottom:829.273079pt;}
.yd{bottom:836.773333pt;}
.y131{bottom:839.493333pt;}
.yed{bottom:839.813333pt;}
.ya0{bottom:839.973333pt;}
.ybf{bottom:840.000000pt;}
.y165{bottom:854.693333pt;}
.y37{bottom:855.493333pt;}
.y7b{bottom:857.093333pt;}
.y130{bottom:857.893333pt;}
.yc{bottom:858.213333pt;}
.y164{bottom:873.093333pt;}
.y36{bottom:873.893333pt;}
.y9f{bottom:874.373333pt;}
.y7a{bottom:875.493333pt;}
.y12f{bottom:876.293333pt;}
.yb{bottom:881.093333pt;}
.yce{bottom:891.493333pt;}
.y35{bottom:892.293333pt;}
.y79{bottom:893.893333pt;}
.y9e{bottom:908.773333pt;}
.ycd{bottom:909.893333pt;}
.y12e{bottom:910.533333pt;}
.y34{bottom:910.693333pt;}
.ya{bottom:911.813333pt;}
.y78{bottom:912.293333pt;}
.y9d{bottom:928.293333pt;}
.y33{bottom:929.093333pt;}
.yec{bottom:930.693333pt;}
.y9{bottom:942.373333pt;}
.y77{bottom:946.693333pt;}
.y32{bottom:947.493333pt;}
.y9c{bottom:947.813333pt;}
.yeb{bottom:949.093333pt;}
.y76{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y31{bottom:981.733333pt;}
.yea{bottom:983.333333pt;}
.y75{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h3f{height:13.600000pt;}
.h42{height:15.200000pt;}
.h23{height:15.520000pt;}
.h22{height:16.960000pt;}
.h37{height:18.386667pt;}
.h3a{height:18.400000pt;}
.h36{height:18.426667pt;}
.h3b{height:19.520000pt;}
.h10{height:24.840000pt;}
.h2d{height:24.860275pt;}
.h2b{height:25.072635pt;}
.h28{height:25.349923pt;}
.h26{height:25.566466pt;}
.h15{height:26.325409pt;}
.h13{height:26.550285pt;}
.h1a{height:28.329868pt;}
.h33{height:29.353166pt;}
.h31{height:29.603905pt;}
.hb{height:33.328125pt;}
.h24{height:33.600000pt;}
.h20{height:33.920000pt;}
.h40{height:34.720000pt;}
.h25{height:34.894329pt;}
.h1b{height:36.028156pt;}
.h21{height:36.320000pt;}
.h1c{height:36.441166pt;}
.h11{height:36.883125pt;}
.h6{height:37.116563pt;}
.h3c{height:39.360000pt;}
.h41{height:39.840000pt;}
.h4{height:40.163750pt;}
.h3e{height:40.640000pt;}
.h3d{height:41.440000pt;}
.h2e{height:42.551801pt;}
.h29{height:43.389902pt;}
.h2a{height:43.685270pt;}
.h1d{height:43.724758pt;}
.hf{height:44.468750pt;}
.h16{height:45.059581pt;}
.h34{height:45.691127pt;}
.h12{height:46.259851pt;}
.hc{height:47.109375pt;}
.h5{height:47.680000pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h38{height:57.760000pt;}
.h39{height:57.787500pt;}
.h2f{height:59.340000pt;}
.he{height:62.812500pt;}
.h1f{height:62.880000pt;}
.h17{height:64.500000pt;}
.h18{height:65.781915pt;}
.h35{height:66.404375pt;}
.h1e{height:67.803750pt;}
.h30{height:68.799146pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.h9{height:73.989375pt;}
.h7{height:107.715000pt;}
.h2c{height:253.191797pt;}
.h27{height:258.299573pt;}
.h19{height:262.290776pt;}
.h32{height:269.138256pt;}
.h14{height:270.109637pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:61.426667pt;}
.w9{width:65.600000pt;}
.w1c{width:67.040000pt;}
.w7{width:69.280000pt;}
.w4{width:73.921132pt;}
.w10{width:77.512092pt;}
.w19{width:79.360000pt;}
.we{width:83.856145pt;}
.w17{width:85.792000pt;}
.w23{width:96.960000pt;}
.w1b{width:97.280000pt;}
.w22{width:99.040000pt;}
.w1e{width:104.000000pt;}
.wc{width:106.560000pt;}
.w20{width:108.000000pt;}
.w2{width:111.520000pt;}
.wa{width:116.160000pt;}
.w1f{width:117.120000pt;}
.w8{width:126.080000pt;}
.wd{width:128.160000pt;}
.w1a{width:128.320000pt;}
.wb{width:134.560000pt;}
.w1d{width:138.080000pt;}
.w16{width:147.866667pt;}
.w12{width:158.688446pt;}
.w21{width:171.040000pt;}
.w15{width:222.093333pt;}
.w14{width:370.613333pt;}
.w11{width:421.198464pt;}
.wf{width:431.261226pt;}
.w6{width:432.219584pt;}
.w5{width:448.195417pt;}
.w13{width:450.265471pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:6.906667pt;}
.x2c{left:9.626667pt;}
.x53{left:10.906667pt;}
.x4d{left:12.626667pt;}
.x31{left:14.306667pt;}
.x3b{left:15.969496pt;}
.x16{left:17.005847pt;}
.x30{left:18.146667pt;}
.x40{left:19.227962pt;}
.x2e{left:21.026667pt;}
.x27{left:22.541848pt;}
.x4e{left:24.826667pt;}
.x51{left:26.266667pt;}
.x58{left:27.773333pt;}
.x22{left:29.324735pt;}
.x23{left:30.825472pt;}
.x24{left:33.826945pt;}
.x2f{left:39.746667pt;}
.x5c{left:42.146667pt;}
.x2{left:44.799998pt;}
.x25{left:47.363148pt;}
.x47{left:55.866667pt;}
.x19{left:68.598334pt;}
.x42{left:81.453131pt;}
.x4c{left:82.586667pt;}
.x48{left:85.626667pt;}
.x1b{left:99.785089pt;}
.x3c{left:101.818139pt;}
.x3d{left:111.353009pt;}
.x1{left:113.472000pt;}
.x39{left:117.008139pt;}
.x12{left:118.272000pt;}
.x18{left:120.046451pt;}
.x37{left:121.500366pt;}
.x5{left:126.112000pt;}
.xd{left:131.872000pt;}
.x4a{left:135.066667pt;}
.x4{left:139.226667pt;}
.x10{left:141.786667pt;}
.x8{left:149.786667pt;}
.x28{left:152.599542pt;}
.x29{left:156.346667pt;}
.xc{left:157.306667pt;}
.xf{left:160.666667pt;}
.x49{left:164.346667pt;}
.x41{left:170.880007pt;}
.x14{left:175.706667pt;}
.x44{left:180.346667pt;}
.x17{left:181.440007pt;}
.x1e{left:185.466667pt;}
.x20{left:189.440006pt;}
.x38{left:207.756300pt;}
.x1f{left:209.466667pt;}
.x46{left:211.720000pt;}
.x50{left:216.800000pt;}
.x26{left:218.001108pt;}
.x52{left:231.546667pt;}
.x2b{left:236.000000pt;}
.x5b{left:240.960000pt;}
.x43{left:244.328601pt;}
.x2d{left:245.626667pt;}
.x34{left:251.386667pt;}
.x45{left:258.746667pt;}
.x1a{left:266.586765pt;}
.x59{left:272.000000pt;}
.x7{left:277.826667pt;}
.x5e{left:279.040000pt;}
.x4f{left:281.186667pt;}
.x3e{left:284.546667pt;}
.x1d{left:288.546667pt;}
.x56{left:303.040000pt;}
.x11{left:305.506667pt;}
.x2a{left:311.266667pt;}
.x9{left:340.386667pt;}
.x21{left:360.065928pt;}
.xe{left:373.666667pt;}
.x54{left:388.800000pt;}
.x55{left:395.840000pt;}
.x3{left:397.026667pt;}
.x6{left:406.466667pt;}
.x3f{left:422.589167pt;}
.x57{left:432.000000pt;}
.x32{left:434.560000pt;}
.x5d{left:440.960000pt;}
.x5a{left:464.960000pt;}
.xa{left:466.313333pt;}
.xb{left:472.413333pt;}
.x36{left:518.627004pt;}
.x3a{left:520.102720pt;}
.x15{left:545.589992pt;}
.x35{left:607.933333pt;}
.x33{left:613.093333pt;}
.x1c{left:623.493333pt;}
.x13{left:631.493333pt;}
}




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