
    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_b195385c9e175edd8968b052.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9ace71801f25b8c4a6675a31.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_af95dfa4e9a3db53deaa7e6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_d9e33dcf53c3612bc55fac0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759500;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_548193ac837987d114c39568.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734863;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_ba220afb46ee9c7cf4c5ed26.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ef65f863aad959b0adb4f38e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_da088a928d8a34cfee53c000.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_d5539fdf113014305b6e6951.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ccc2735f37a6b9d04c35d6f3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4bd7f355718205e0ca03001b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_32d6e6b153dda841ac40ed76.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_eb1035747760b62d0120749f.woff2')format("woff");}.fff{font-family:fff;line-height:0.923500;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_c788c7923646b9f64f7fbd55.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.913000;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_21bc2820e86e7f91d32faf8f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.744500;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;}
.m3{transform:matrix(0.223117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223117,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,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);}
.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;}
.v1{vertical-align:27.000000px;}
.ls17{letter-spacing:-1.800000px;}
.lse{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.800000px;}
.ls8{letter-spacing:1.920000px;}
.lsb{letter-spacing:1.944000px;}
.ls13{letter-spacing:2.880000px;}
.lsf{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.400000px;}
.lsa{letter-spacing:19.080000px;}
.ls14{letter-spacing:22.320000px;}
.ls1{letter-spacing:846.120000px;}
.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;}
}
.wsc{word-spacing:-24.030000px;}
.ws6{word-spacing:-19.944000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.640000px;}
.wse{word-spacing:-17.352000px;}
.ws10{word-spacing:-17.280000px;}
.wsf{word-spacing:-16.920000px;}
.ws9{word-spacing:-16.704000px;}
.wsd{word-spacing:-16.200000px;}
.ws8{word-spacing:-15.030000px;}
.ws3{word-spacing:-11.970000px;}
.ws1{word-spacing:-10.422000px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-7.350000px;}
._1e{margin-left:-5.440200px;}
._2{margin-left:-4.350600px;}
._0{margin-left:-2.867400px;}
._1{margin-left:-1.620000px;}
._3{width:1.169400px;}
._e{width:2.755800px;}
._c{width:3.960000px;}
._17{width:4.968000px;}
._d{width:5.976000px;}
._14{width:7.272000px;}
._10{width:9.048000px;}
._1b{width:10.080000px;}
._a{width:11.088000px;}
._5{width:12.096000px;}
._6{width:13.248000px;}
._b{width:14.328000px;}
._13{width:15.984000px;}
._1d{width:16.992000px;}
._18{width:19.021200px;}
._19{width:20.880000px;}
._1c{width:22.224000px;}
._4{width:23.328000px;}
._7{width:24.696000px;}
._25{width:26.136000px;}
._11{width:27.792000px;}
._12{width:28.992000px;}
._f{width:30.960000px;}
._21{width:33.264000px;}
._22{width:34.488000px;}
._24{width:36.144000px;}
._23{width:39.744000px;}
._20{width:41.088000px;}
._1f{width:42.096000px;}
._8{width:43.560000px;}
._9{width:44.784000px;}
._15{width:76.607640px;}
._16{width:77.622360px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,82,155);}
.fc3{color:rgb(32,30,31);}
.fc2{color:rgb(252,254,254);}
.fc1{color:rgb(144,181,224);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:36.338400px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:42.120000px;}
.fsb{font-size:47.880000px;}
.fs10{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:83.880000px;}
.fse{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:119.880000px;}
.fs7{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fs8{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.870000px;}
.yc9{bottom:14.220000px;}
.yd0{bottom:24.480000px;}
.yca{bottom:24.570000px;}
.ycd{bottom:34.830000px;}
.yda{bottom:34.920000px;}
.ydf{bottom:42.390000px;}
.ycf{bottom:45.180000px;}
.yd6{bottom:45.270000px;}
.y21{bottom:45.273450px;}
.y1d0{bottom:50.709660px;}
.y1c7{bottom:50.871150px;}
.yd5{bottom:52.740000px;}
.y28{bottom:53.820000px;}
.ycc{bottom:55.530000px;}
.yd9{bottom:55.620000px;}
.y27{bottom:57.780000px;}
.y1cf{bottom:61.611180px;}
.yde{bottom:63.090000px;}
.yce{bottom:65.880000px;}
.yd7{bottom:65.970000px;}
.y1c6{bottom:67.071150px;}
.y1ce{bottom:72.512700px;}
.yd4{bottom:73.440000px;}
.ydd{bottom:83.790000px;}
.yab{bottom:88.110000px;}
.y152{bottom:90.720000px;}
.y102{bottom:91.980000px;}
.yd3{bottom:94.140000px;}
.y16f{bottom:95.490000px;}
.y68{bottom:95.760000px;}
.y4{bottom:97.125005px;}
.y1c5{bottom:99.471150px;}
.y127{bottom:103.410000px;}
.ydc{bottom:104.490000px;}
.y1c0{bottom:104.760000px;}
.yaa{bottom:105.390000px;}
.ye8{bottom:105.570000px;}
.y89{bottom:107.460000px;}
.y1a8{bottom:108.270000px;}
.yd2{bottom:114.840000px;}
.yc7{bottom:115.110000px;}
.y1c4{bottom:115.671150px;}
.y18e{bottom:116.100000px;}
.y20{bottom:117.754650px;}
.y17b{bottom:117.810000px;}
.y151{bottom:121.770000px;}
.ya9{bottom:122.670000px;}
.y101{bottom:123.030000px;}
.y1bf{bottom:125.460000px;}
.y16e{bottom:126.540000px;}
.y67{bottom:126.810000px;}
.y1a7{bottom:128.970000px;}
.y1c3{bottom:131.871150px;}
.y126{bottom:134.460000px;}
.y13d{bottom:135.990000px;}
.ye7{bottom:136.620000px;}
.y88{bottom:138.510000px;}
.y1f{bottom:139.264499px;}
.ya8{bottom:139.860000px;}
.y118{bottom:143.820000px;}
.yc6{bottom:146.160000px;}
.y18d{bottom:147.150000px;}
.y17a{bottom:148.860000px;}
.y1a6{bottom:149.670000px;}
.y150{bottom:152.820000px;}
.y100{bottom:154.080000px;}
.ya7{bottom:157.140000px;}
.y16d{bottom:157.590000px;}
.y66{bottom:157.860000px;}
.y1c2{bottom:164.271150px;}
.y125{bottom:165.510000px;}
.y1be{bottom:166.860000px;}
.y13c{bottom:167.040000px;}
.ye6{bottom:167.670000px;}
.y87{bottom:169.560000px;}
.y1a5{bottom:170.370000px;}
.ya6{bottom:174.420000px;}
.y117{bottom:174.870000px;}
.yc5{bottom:177.210000px;}
.y18c{bottom:178.200000px;}
.y179{bottom:179.910000px;}
.y1c1{bottom:180.471150px;}
.y14f{bottom:183.870000px;}
.yff{bottom:185.130000px;}
.y1bd{bottom:187.560000px;}
.y16c{bottom:188.550000px;}
.y65{bottom:188.910000px;}
.y1a4{bottom:190.260000px;}
.ya5{bottom:191.970000px;}
.y124{bottom:196.560000px;}
.y16{bottom:196.933500px;}
.y13b{bottom:198.090000px;}
.ya4{bottom:198.720000px;}
.y86{bottom:200.610000px;}
.y116{bottom:205.920000px;}
.yc4{bottom:208.260000px;}
.y18b{bottom:209.250000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y178{bottom:210.960000px;}
.ya3{bottom:211.230000px;}
.y14e{bottom:214.920000px;}
.yfe{bottom:216.180000px;}
.y16b{bottom:219.600000px;}
.y64{bottom:219.960000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y123{bottom:227.640000px;}
.y1bc{bottom:228.990000px;}
.y13a{bottom:229.170000px;}
.ye5{bottom:229.800000px;}
.y1a3{bottom:230.160000px;}
.y85{bottom:231.690000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y115{bottom:237.000000px;}
.y18a{bottom:237.990000px;}
.yc3{bottom:239.340000px;}
.y177{bottom:242.040000px;}
.y14d{bottom:246.000000px;}
.yfd{bottom:247.170000px;}
.y1bb{bottom:249.690000px;}
.y16a{bottom:250.680000px;}
.y63{bottom:251.040000px;}
.y122{bottom:258.690000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.ya2{bottom:260.040000px;}
.y139{bottom:260.220000px;}
.ye4{bottom:260.850000px;}
.y84{bottom:262.740000px;}
.y189{bottom:263.820000px;}
.y114{bottom:268.050000px;}
.yc2{bottom:270.390000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y176{bottom:273.090000px;}
.y1a2{bottom:275.790000px;}
.y14c{bottom:277.050000px;}
.yfc{bottom:278.220000px;}
.y169{bottom:281.730000px;}
.y62{bottom:282.090000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y188{bottom:288.210000px;}
.y121{bottom:289.740000px;}
.ya1{bottom:291.090000px;}
.y138{bottom:291.270000px;}
.ye3{bottom:291.900000px;}
.y83{bottom:293.790000px;}
.y113{bottom:299.100000px;}
.yc1{bottom:301.440000px;}
.y175{bottom:304.140000px;}
.y1a1{bottom:306.840000px;}
.y14b{bottom:308.100000px;}
.yfb{bottom:309.270000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y1ba{bottom:311.790000px;}
.y168{bottom:312.780000px;}
.y61{bottom:313.140000px;}
.y120{bottom:320.790000px;}
.ya0{bottom:322.140000px;}
.y137{bottom:322.320000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y82{bottom:324.840000px;}
.y112{bottom:330.150000px;}
.yc0{bottom:332.490000px;}
.y174{bottom:335.190000px;}
.ye2{bottom:336.720000px;}
.y1a0{bottom:337.890000px;}
.y14a{bottom:339.150000px;}
.y46{bottom:339.330000px;}
.yfa{bottom:340.320000px;}
.y167{bottom:343.830000px;}
.y60{bottom:344.190000px;}
.yd{bottom:348.133500px;}
.y11f{bottom:351.840000px;}
.y9f{bottom:353.190000px;}
.y136{bottom:353.370000px;}
.y81{bottom:355.890000px;}
.y111{bottom:361.200000px;}
.ybf{bottom:363.540000px;}
.y173{bottom:366.240000px;}
.y149{bottom:370.200000px;}
.yf9{bottom:371.370000px;}
.y1b9{bottom:373.890000px;}
.y166{bottom:374.880000px;}
.y5f{bottom:375.240000px;}
.ye1{bottom:378.120000px;}
.y19f{bottom:382.710000px;}
.y119{bottom:382.800000px;}
.y11e{bottom:382.890000px;}
.y9e{bottom:384.240000px;}
.y135{bottom:384.420000px;}
.y45{bottom:386.580000px;}
.yc{bottom:386.785499px;}
.y80{bottom:386.940000px;}
.y110{bottom:392.250000px;}
.ybe{bottom:394.590000px;}
.y172{bottom:397.290000px;}
.y148{bottom:401.250000px;}
.yf8{bottom:402.420000px;}
.y165{bottom:405.930000px;}
.y5e{bottom:406.290000px;}
.y44{bottom:407.280000px;}
.yb{bottom:408.044999px;}
.y11d{bottom:413.940000px;}
.y9d{bottom:415.290000px;}
.y134{bottom:415.470000px;}
.y7f{bottom:417.990000px;}
.y10f{bottom:423.300000px;}
.ybd{bottom:425.640000px;}
.y43{bottom:427.980000px;}
.y171{bottom:428.340000px;}
.y147{bottom:432.300000px;}
.yf7{bottom:433.470000px;}
.y1b8{bottom:435.990000px;}
.y164{bottom:436.980000px;}
.y5d{bottom:437.340000px;}
.y11c{bottom:442.650000px;}
.ye0{bottom:443.100000px;}
.y9c{bottom:446.340000px;}
.y133{bottom:446.430000px;}
.y42{bottom:448.680000px;}
.y7e{bottom:449.040000px;}
.y10e{bottom:454.350000px;}
.ybc{bottom:456.690000px;}
.y19e{bottom:459.390000px;}
.y146{bottom:463.350000px;}
.yf6{bottom:464.520000px;}
.y5c{bottom:468.390000px;}
.y11b{bottom:468.480000px;}
.y170{bottom:473.160000px;}
.y9b{bottom:477.390000px;}
.y132{bottom:477.480000px;}
.y163{bottom:479.460000px;}
.y7d{bottom:480.090000px;}
.y10d{bottom:485.400000px;}
.ydb{bottom:486.570000px;}
.ybb{bottom:487.740000px;}
.y19d{bottom:490.440000px;}
.y41{bottom:492.960000px;}
.y11a{bottom:494.400000px;}
.yf5{bottom:495.570000px;}
.y1b7{bottom:498.090000px;}
.y5b{bottom:499.440000px;}
.y9a{bottom:508.440000px;}
.y131{bottom:508.530000px;}
.y7c{bottom:511.140000px;}
.y10c{bottom:516.450000px;}
.yba{bottom:518.790000px;}
.ya{bottom:520.864502px;}
.y19c{bottom:521.490000px;}
.y145{bottom:525.450000px;}
.yf4{bottom:526.620000px;}
.y5a{bottom:530.490000px;}
.y187{bottom:533.280000px;}
.y40{bottom:534.630000px;}
.y9{bottom:538.864499px;}
.y99{bottom:539.490000px;}
.y130{bottom:539.580000px;}
.y162{bottom:539.670000px;}
.y7b{bottom:542.190000px;}
.y10b{bottom:547.500000px;}
.yb9{bottom:549.840000px;}
.y19b{bottom:552.540000px;}
.y3f{bottom:555.330000px;}
.y144{bottom:556.500000px;}
.y8{bottom:556.864499px;}
.yf3{bottom:557.670000px;}
.y1b6{bottom:560.190000px;}
.y59{bottom:561.540000px;}
.yd8{bottom:563.610000px;}
.y186{bottom:564.330000px;}
.y98{bottom:570.540000px;}
.y12f{bottom:570.630000px;}
.y7a{bottom:573.240000px;}
.y3e{bottom:576.030000px;}
.y10a{bottom:578.550000px;}
.yb8{bottom:580.890000px;}
.y19a{bottom:583.590000px;}
.y143{bottom:587.550000px;}
.yf2{bottom:588.720000px;}
.y161{bottom:589.620000px;}
.y58{bottom:592.590000px;}
.y185{bottom:595.380000px;}
.y3d{bottom:596.730000px;}
.y97{bottom:601.590000px;}
.y12e{bottom:601.680000px;}
.y79{bottom:604.290000px;}
.y109{bottom:609.600000px;}
.yb7{bottom:611.940000px;}
.y199{bottom:614.640000px;}
.y3c{bottom:617.430000px;}
.y142{bottom:618.600000px;}
.yf1{bottom:619.770000px;}
.y1b5{bottom:622.290000px;}
.y57{bottom:623.640000px;}
.y184{bottom:626.430000px;}
.y160{bottom:630.840000px;}
.y96{bottom:632.640000px;}
.y12d{bottom:632.730000px;}
.y78{bottom:635.340000px;}
.y3b{bottom:638.130000px;}
.y108{bottom:640.650000px;}
.yb6{bottom:642.990000px;}
.y7{bottom:645.510000px;}
.y198{bottom:645.720000px;}
.y141{bottom:649.680000px;}
.yf0{bottom:650.850000px;}
.y56{bottom:654.720000px;}
.y183{bottom:657.510000px;}
.y3a{bottom:658.860000px;}
.yd1{bottom:661.470000px;}
.y15f{bottom:661.920000px;}
.y95{bottom:663.720000px;}
.y12c{bottom:663.810000px;}
.y77{bottom:666.420000px;}
.y6{bottom:666.771000px;}
.yb5{bottom:674.070000px;}
.y197{bottom:676.770000px;}
.y39{bottom:679.560000px;}
.y140{bottom:680.730000px;}
.yef{bottom:681.900000px;}
.y1b4{bottom:684.420000px;}
.y55{bottom:685.770000px;}
.y182{bottom:688.560000px;}
.y15e{bottom:692.970000px;}
.y94{bottom:694.770000px;}
.y12b{bottom:694.860000px;}
.y76{bottom:697.470000px;}
.y38{bottom:700.260000px;}
.yb4{bottom:705.120000px;}
.y196{bottom:707.820000px;}
.y13f{bottom:711.780000px;}
.yee{bottom:712.950000px;}
.y54{bottom:716.820000px;}
.y181{bottom:719.610000px;}
.y37{bottom:720.960000px;}
.y15d{bottom:724.020000px;}
.y93{bottom:725.820000px;}
.y12a{bottom:725.910000px;}
.y5{bottom:726.298500px;}
.y75{bottom:728.520000px;}
.yb3{bottom:736.170000px;}
.y195{bottom:738.870000px;}
.y36{bottom:741.660000px;}
.yed{bottom:744.000000px;}
.y1b3{bottom:746.520000px;}
.y53{bottom:747.870000px;}
.y180{bottom:750.660000px;}
.y3{bottom:752.599495px;}
.y15c{bottom:755.070000px;}
.y13e{bottom:755.430000px;}
.y92{bottom:756.870000px;}
.y129{bottom:756.960000px;}
.ycb{bottom:759.300000px;}
.y74{bottom:759.570000px;}
.y35{bottom:762.360000px;}
.yb2{bottom:767.220000px;}
.y194{bottom:769.830000px;}
.yec{bottom:775.050000px;}
.y52{bottom:778.830000px;}
.y17f{bottom:781.710000px;}
.y25{bottom:782.491950px;}
.y34{bottom:783.060000px;}
.y15b{bottom:786.120000px;}
.y91{bottom:787.830000px;}
.y1b2{bottom:787.920000px;}
.y128{bottom:788.010000px;}
.y73{bottom:790.530000px;}
.yb1{bottom:798.180000px;}
.y193{bottom:800.880000px;}
.y33{bottom:803.760000px;}
.yeb{bottom:806.100000px;}
.y1b1{bottom:808.530000px;}
.y51{bottom:809.880000px;}
.y17e{bottom:810.330000px;}
.y15a{bottom:817.170000px;}
.y90{bottom:818.880000px;}
.y72{bottom:821.580000px;}
.y32{bottom:824.460000px;}
.yb0{bottom:829.230000px;}
.y192{bottom:831.930000px;}
.y17d{bottom:836.250000px;}
.y24{bottom:836.491950px;}
.yea{bottom:837.150000px;}
.y50{bottom:840.930000px;}
.y159{bottom:848.220000px;}
.y8e{bottom:849.930000px;}
.y71{bottom:852.630000px;}
.y8f{bottom:856.680000px;}
.yc8{bottom:858.210000px;}
.yaf{bottom:860.280000px;}
.y17c{bottom:860.640000px;}
.y191{bottom:862.980000px;}
.y31{bottom:865.860000px;}
.y107{bottom:868.200000px;}
.y1b0{bottom:870.630000px;}
.y4f{bottom:871.980000px;}
.y158{bottom:879.270000px;}
.y2{bottom:879.369000px;}
.ye9{bottom:879.540000px;}
.y8d{bottom:880.980000px;}
.y70{bottom:883.680000px;}
.yae{bottom:891.330000px;}
.y30{bottom:893.850000px;}
.y190{bottom:894.030000px;}
.y23{bottom:897.096300px;}
.y106{bottom:899.250000px;}
.y4e{bottom:903.030000px;}
.y157{bottom:910.320000px;}
.y8c{bottom:912.030000px;}
.y2f{bottom:922.110000px;}
.yad{bottom:922.380000px;}
.y6f{bottom:928.500000px;}
.y105{bottom:930.300000px;}
.y1af{bottom:932.730000px;}
.y4d{bottom:934.080000px;}
.y22{bottom:934.896300px;}
.y18f{bottom:938.850000px;}
.y156{bottom:941.370000px;}
.y2e{bottom:942.180000px;}
.y8b{bottom:943.080000px;}
.yac{bottom:953.430000px;}
.y2d{bottom:959.460000px;}
.y104{bottom:961.350000px;}
.y4c{bottom:965.130000px;}
.y1cd{bottom:965.341950px;}
.y1{bottom:966.726000px;}
.y6e{bottom:969.900000px;}
.y155{bottom:972.420000px;}
.y1ae{bottom:974.130000px;}
.y2c{bottom:976.650000px;}
.y8a{bottom:984.480000px;}
.y1ad{bottom:994.830000px;}
.y4b{bottom:996.180000px;}
.y1cc{bottom:997.741950px;}
.y154{bottom:1003.470000px;}
.y103{bottom:1003.740000px;}
.y6d{bottom:1015.530000px;}
.y4a{bottom:1027.230000px;}
.y1cb{bottom:1030.141950px;}
.y2b{bottom:1033.260000px;}
.y1ac{bottom:1036.230000px;}
.y153{bottom:1036.410000px;}
.y1ca{bottom:1046.341950px;}
.y6c{bottom:1046.580000px;}
.y1ab{bottom:1056.930000px;}
.y49{bottom:1058.280000px;}
.y1c9{bottom:1062.541950px;}
.y2a{bottom:1074.600000px;}
.y6b{bottom:1077.660000px;}
.y48{bottom:1089.360000px;}
.y1aa{bottom:1098.360000px;}
.y1c8{bottom:1101.522150px;}
.y6a{bottom:1108.710000px;}
.y1a9{bottom:1119.060000px;}
.y47{bottom:1134.180000px;}
.y69{bottom:1139.760000px;}
.y26{bottom:1192.050000px;}
.h10{height:20.700000px;}
.h27{height:26.763232px;}
.h7{height:32.130000px;}
.h26{height:39.285000px;}
.h9{height:39.771000px;}
.h25{height:40.122000px;}
.h18{height:41.338477px;}
.h19{height:41.400000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h24{height:50.171484px;}
.h17{height:52.066406px;}
.h2{height:55.080000px;}
.h13{height:59.004492px;}
.h20{height:62.100000px;}
.h22{height:64.657617px;}
.h14{height:66.394687px;}
.h15{height:70.628906px;}
.hf{height:70.664062px;}
.h1a{height:72.562500px;}
.h5{height:78.030000px;}
.h21{height:82.282676px;}
.h12{height:82.323633px;}
.h1b{height:82.710000px;}
.h1d{height:82.800000px;}
.h1e{height:82.830000px;}
.hb{height:92.799000px;}
.h23{height:94.289590px;}
.hd{height:95.712891px;}
.h16{height:96.870938px;}
.ha{height:100.998047px;}
.h4{height:119.055004px;}
.h11{height:120.816562px;}
.hc{height:135.270000px;}
.h1f{height:159.870000px;}
.h1c{height:180.540000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:9.000000px;}
.wc{width:18.000000px;}
.w8{width:108.120000px;}
.wa{width:144.750000px;}
.w9{width:202.320000px;}
.wb{width:225.360000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w7{width:893.069973px;}
.w5{width:893.069987px;}
.w4{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.470000px;}
.x1e{left:11.970000px;}
.x1b{left:33.300000px;}
.x1c{left:44.370000px;}
.x7{left:54.963300px;}
.x1a{left:57.870000px;}
.x13{left:85.049987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x17{left:111.599987px;}
.x22{left:127.619987px;}
.xa{left:144.539987px;}
.xd{left:174.089987px;}
.x6{left:185.359650px;}
.x11{left:191.369987px;}
.x23{left:194.427750px;}
.x4{left:203.484001px;}
.x19{left:214.410000px;}
.x1f{left:229.619987px;}
.xc{left:240.599987px;}
.xb{left:246.089987px;}
.xe{left:255.899987px;}
.x16{left:322.319987px;}
.x10{left:415.829987px;}
.x20{left:437.520000px;}
.x9{left:442.020000px;}
.xf{left:446.519987px;}
.x3{left:454.959000px;}
.x5{left:467.729550px;}
.x1d{left:561.480000px;}
.x8{left:649.921350px;}
.x24{left:707.437050px;}
.x21{left:765.509987px;}
.x14{left:771.809973px;}
.x15{left:777.119987px;}
.x12{left:786.839987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls17{letter-spacing:-1.600000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.600000pt;}
.ls8{letter-spacing:1.706667pt;}
.lsb{letter-spacing:1.728000pt;}
.ls13{letter-spacing:2.560000pt;}
.lsf{letter-spacing:4.480000pt;}
.lsd{letter-spacing:4.800000pt;}
.lsa{letter-spacing:16.960000pt;}
.ls14{letter-spacing:19.840000pt;}
.ls1{letter-spacing:752.106667pt;}
.wsc{word-spacing:-21.360000pt;}
.ws6{word-spacing:-17.728000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.680000pt;}
.wse{word-spacing:-15.424000pt;}
.ws10{word-spacing:-15.360000pt;}
.wsf{word-spacing:-15.040000pt;}
.ws9{word-spacing:-14.848000pt;}
.wsd{word-spacing:-14.400000pt;}
.ws8{word-spacing:-13.360000pt;}
.ws3{word-spacing:-10.640000pt;}
.ws1{word-spacing:-9.264000pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-6.533333pt;}
._1e{margin-left:-4.835733pt;}
._2{margin-left:-3.867200pt;}
._0{margin-left:-2.548800pt;}
._1{margin-left:-1.440000pt;}
._3{width:1.039467pt;}
._e{width:2.449600pt;}
._c{width:3.520000pt;}
._17{width:4.416000pt;}
._d{width:5.312000pt;}
._14{width:6.464000pt;}
._10{width:8.042667pt;}
._1b{width:8.960000pt;}
._a{width:9.856000pt;}
._5{width:10.752000pt;}
._6{width:11.776000pt;}
._b{width:12.736000pt;}
._13{width:14.208000pt;}
._1d{width:15.104000pt;}
._18{width:16.907733pt;}
._19{width:18.560000pt;}
._1c{width:19.754667pt;}
._4{width:20.736000pt;}
._7{width:21.952000pt;}
._25{width:23.232000pt;}
._11{width:24.704000pt;}
._12{width:25.770667pt;}
._f{width:27.520000pt;}
._21{width:29.568000pt;}
._22{width:30.656000pt;}
._24{width:32.128000pt;}
._23{width:35.328000pt;}
._20{width:36.522667pt;}
._1f{width:37.418667pt;}
._8{width:38.720000pt;}
._9{width:39.808000pt;}
._15{width:68.095680pt;}
._16{width:68.997653pt;}
.fs11{font-size:32.300800pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:37.440000pt;}
.fsb{font-size:42.560000pt;}
.fs10{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.560000pt;}
.fse{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:106.560000pt;}
.fs7{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fs8{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.440000pt;}
.yc9{bottom:12.640000pt;}
.yd0{bottom:21.760000pt;}
.yca{bottom:21.840000pt;}
.ycd{bottom:30.960000pt;}
.yda{bottom:31.040000pt;}
.ydf{bottom:37.680000pt;}
.ycf{bottom:40.160000pt;}
.yd6{bottom:40.240000pt;}
.y21{bottom:40.243067pt;}
.y1d0{bottom:45.075253pt;}
.y1c7{bottom:45.218800pt;}
.yd5{bottom:46.880000pt;}
.y28{bottom:47.840000pt;}
.ycc{bottom:49.360000pt;}
.yd9{bottom:49.440000pt;}
.y27{bottom:51.360000pt;}
.y1cf{bottom:54.765493pt;}
.yde{bottom:56.080000pt;}
.yce{bottom:58.560000pt;}
.yd7{bottom:58.640000pt;}
.y1c6{bottom:59.618800pt;}
.y1ce{bottom:64.455733pt;}
.yd4{bottom:65.280000pt;}
.ydd{bottom:74.480000pt;}
.yab{bottom:78.320000pt;}
.y152{bottom:80.640000pt;}
.y102{bottom:81.760000pt;}
.yd3{bottom:83.680000pt;}
.y16f{bottom:84.880000pt;}
.y68{bottom:85.120000pt;}
.y4{bottom:86.333337pt;}
.y1c5{bottom:88.418800pt;}
.y127{bottom:91.920000pt;}
.ydc{bottom:92.880000pt;}
.y1c0{bottom:93.120000pt;}
.yaa{bottom:93.680000pt;}
.ye8{bottom:93.840000pt;}
.y89{bottom:95.520000pt;}
.y1a8{bottom:96.240000pt;}
.yd2{bottom:102.080000pt;}
.yc7{bottom:102.320000pt;}
.y1c4{bottom:102.818800pt;}
.y18e{bottom:103.200000pt;}
.y20{bottom:104.670800pt;}
.y17b{bottom:104.720000pt;}
.y151{bottom:108.240000pt;}
.ya9{bottom:109.040000pt;}
.y101{bottom:109.360000pt;}
.y1bf{bottom:111.520000pt;}
.y16e{bottom:112.480000pt;}
.y67{bottom:112.720000pt;}
.y1a7{bottom:114.640000pt;}
.y1c3{bottom:117.218800pt;}
.y126{bottom:119.520000pt;}
.y13d{bottom:120.880000pt;}
.ye7{bottom:121.440000pt;}
.y88{bottom:123.120000pt;}
.y1f{bottom:123.790666pt;}
.ya8{bottom:124.320000pt;}
.y118{bottom:127.840000pt;}
.yc6{bottom:129.920000pt;}
.y18d{bottom:130.800000pt;}
.y17a{bottom:132.320000pt;}
.y1a6{bottom:133.040000pt;}
.y150{bottom:135.840000pt;}
.y100{bottom:136.960000pt;}
.ya7{bottom:139.680000pt;}
.y16d{bottom:140.080000pt;}
.y66{bottom:140.320000pt;}
.y1c2{bottom:146.018800pt;}
.y125{bottom:147.120000pt;}
.y1be{bottom:148.320000pt;}
.y13c{bottom:148.480000pt;}
.ye6{bottom:149.040000pt;}
.y87{bottom:150.720000pt;}
.y1a5{bottom:151.440000pt;}
.ya6{bottom:155.040000pt;}
.y117{bottom:155.440000pt;}
.yc5{bottom:157.520000pt;}
.y18c{bottom:158.400000pt;}
.y179{bottom:159.920000pt;}
.y1c1{bottom:160.418800pt;}
.y14f{bottom:163.440000pt;}
.yff{bottom:164.560000pt;}
.y1bd{bottom:166.720000pt;}
.y16c{bottom:167.600000pt;}
.y65{bottom:167.920000pt;}
.y1a4{bottom:169.120000pt;}
.ya5{bottom:170.640000pt;}
.y124{bottom:174.720000pt;}
.y16{bottom:175.052000pt;}
.y13b{bottom:176.080000pt;}
.ya4{bottom:176.640000pt;}
.y86{bottom:178.320000pt;}
.y116{bottom:183.040000pt;}
.yc4{bottom:185.120000pt;}
.y18b{bottom:186.000000pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y178{bottom:187.520000pt;}
.ya3{bottom:187.760000pt;}
.y14e{bottom:191.040000pt;}
.yfe{bottom:192.160000pt;}
.y16b{bottom:195.200000pt;}
.y64{bottom:195.520000pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y123{bottom:202.346667pt;}
.y1bc{bottom:203.546667pt;}
.y13a{bottom:203.706667pt;}
.ye5{bottom:204.266667pt;}
.y1a3{bottom:204.586667pt;}
.y85{bottom:205.946667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y115{bottom:210.666667pt;}
.y18a{bottom:211.546667pt;}
.yc3{bottom:212.746667pt;}
.y177{bottom:215.146667pt;}
.y14d{bottom:218.666667pt;}
.yfd{bottom:219.706667pt;}
.y1bb{bottom:221.946667pt;}
.y16a{bottom:222.826667pt;}
.y63{bottom:223.146667pt;}
.y122{bottom:229.946667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.ya2{bottom:231.146667pt;}
.y139{bottom:231.306667pt;}
.ye4{bottom:231.866667pt;}
.y84{bottom:233.546667pt;}
.y189{bottom:234.506667pt;}
.y114{bottom:238.266667pt;}
.yc2{bottom:240.346667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y176{bottom:242.746667pt;}
.y1a2{bottom:245.146667pt;}
.y14c{bottom:246.266667pt;}
.yfc{bottom:247.306667pt;}
.y169{bottom:250.426667pt;}
.y62{bottom:250.746667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y188{bottom:256.186667pt;}
.y121{bottom:257.546667pt;}
.ya1{bottom:258.746667pt;}
.y138{bottom:258.906667pt;}
.ye3{bottom:259.466667pt;}
.y83{bottom:261.146667pt;}
.y113{bottom:265.866667pt;}
.yc1{bottom:267.946667pt;}
.y175{bottom:270.346667pt;}
.y1a1{bottom:272.746667pt;}
.y14b{bottom:273.866667pt;}
.yfb{bottom:274.906667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y1ba{bottom:277.146667pt;}
.y168{bottom:278.026667pt;}
.y61{bottom:278.346667pt;}
.y120{bottom:285.146667pt;}
.ya0{bottom:286.346667pt;}
.y137{bottom:286.506667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y82{bottom:288.746667pt;}
.y112{bottom:293.466667pt;}
.yc0{bottom:295.546667pt;}
.y174{bottom:297.946667pt;}
.ye2{bottom:299.306667pt;}
.y1a0{bottom:300.346667pt;}
.y14a{bottom:301.466667pt;}
.y46{bottom:301.626667pt;}
.yfa{bottom:302.506667pt;}
.y167{bottom:305.626667pt;}
.y60{bottom:305.946667pt;}
.yd{bottom:309.452000pt;}
.y11f{bottom:312.746667pt;}
.y9f{bottom:313.946667pt;}
.y136{bottom:314.106667pt;}
.y81{bottom:316.346667pt;}
.y111{bottom:321.066667pt;}
.ybf{bottom:323.146667pt;}
.y173{bottom:325.546667pt;}
.y149{bottom:329.066667pt;}
.yf9{bottom:330.106667pt;}
.y1b9{bottom:332.346667pt;}
.y166{bottom:333.226667pt;}
.y5f{bottom:333.546667pt;}
.ye1{bottom:336.106667pt;}
.y19f{bottom:340.186667pt;}
.y119{bottom:340.266667pt;}
.y11e{bottom:340.346667pt;}
.y9e{bottom:341.546667pt;}
.y135{bottom:341.706667pt;}
.y45{bottom:343.626667pt;}
.yc{bottom:343.809333pt;}
.y80{bottom:343.946667pt;}
.y110{bottom:348.666667pt;}
.ybe{bottom:350.746667pt;}
.y172{bottom:353.146667pt;}
.y148{bottom:356.666667pt;}
.yf8{bottom:357.706667pt;}
.y165{bottom:360.826667pt;}
.y5e{bottom:361.146667pt;}
.y44{bottom:362.026667pt;}
.yb{bottom:362.706666pt;}
.y11d{bottom:367.946667pt;}
.y9d{bottom:369.146667pt;}
.y134{bottom:369.306667pt;}
.y7f{bottom:371.546667pt;}
.y10f{bottom:376.266667pt;}
.ybd{bottom:378.346667pt;}
.y43{bottom:380.426667pt;}
.y171{bottom:380.746667pt;}
.y147{bottom:384.266667pt;}
.yf7{bottom:385.306667pt;}
.y1b8{bottom:387.546667pt;}
.y164{bottom:388.426667pt;}
.y5d{bottom:388.746667pt;}
.y11c{bottom:393.466667pt;}
.ye0{bottom:393.866667pt;}
.y9c{bottom:396.746667pt;}
.y133{bottom:396.826667pt;}
.y42{bottom:398.826667pt;}
.y7e{bottom:399.146667pt;}
.y10e{bottom:403.866667pt;}
.ybc{bottom:405.946667pt;}
.y19e{bottom:408.346667pt;}
.y146{bottom:411.866667pt;}
.yf6{bottom:412.906667pt;}
.y5c{bottom:416.346667pt;}
.y11b{bottom:416.426667pt;}
.y170{bottom:420.586667pt;}
.y9b{bottom:424.346667pt;}
.y132{bottom:424.426667pt;}
.y163{bottom:426.186667pt;}
.y7d{bottom:426.746667pt;}
.y10d{bottom:431.466667pt;}
.ydb{bottom:432.506667pt;}
.ybb{bottom:433.546667pt;}
.y19d{bottom:435.946667pt;}
.y41{bottom:438.186667pt;}
.y11a{bottom:439.466667pt;}
.yf5{bottom:440.506667pt;}
.y1b7{bottom:442.746667pt;}
.y5b{bottom:443.946667pt;}
.y9a{bottom:451.946667pt;}
.y131{bottom:452.026667pt;}
.y7c{bottom:454.346667pt;}
.y10c{bottom:459.066667pt;}
.yba{bottom:461.146667pt;}
.ya{bottom:462.990669pt;}
.y19c{bottom:463.546667pt;}
.y145{bottom:467.066667pt;}
.yf4{bottom:468.106667pt;}
.y5a{bottom:471.546667pt;}
.y187{bottom:474.026667pt;}
.y40{bottom:475.226667pt;}
.y9{bottom:478.990666pt;}
.y99{bottom:479.546667pt;}
.y130{bottom:479.626667pt;}
.y162{bottom:479.706667pt;}
.y7b{bottom:481.946667pt;}
.y10b{bottom:486.666667pt;}
.yb9{bottom:488.746667pt;}
.y19b{bottom:491.146667pt;}
.y3f{bottom:493.626667pt;}
.y144{bottom:494.666667pt;}
.y8{bottom:494.990666pt;}
.yf3{bottom:495.706667pt;}
.y1b6{bottom:497.946667pt;}
.y59{bottom:499.146667pt;}
.yd8{bottom:500.986667pt;}
.y186{bottom:501.626667pt;}
.y98{bottom:507.146667pt;}
.y12f{bottom:507.226667pt;}
.y7a{bottom:509.546667pt;}
.y3e{bottom:512.026667pt;}
.y10a{bottom:514.266667pt;}
.yb8{bottom:516.346667pt;}
.y19a{bottom:518.746667pt;}
.y143{bottom:522.266667pt;}
.yf2{bottom:523.306667pt;}
.y161{bottom:524.106667pt;}
.y58{bottom:526.746667pt;}
.y185{bottom:529.226667pt;}
.y3d{bottom:530.426667pt;}
.y97{bottom:534.746667pt;}
.y12e{bottom:534.826667pt;}
.y79{bottom:537.146667pt;}
.y109{bottom:541.866667pt;}
.yb7{bottom:543.946667pt;}
.y199{bottom:546.346667pt;}
.y3c{bottom:548.826667pt;}
.y142{bottom:549.866667pt;}
.yf1{bottom:550.906667pt;}
.y1b5{bottom:553.146667pt;}
.y57{bottom:554.346667pt;}
.y184{bottom:556.826667pt;}
.y160{bottom:560.746667pt;}
.y96{bottom:562.346667pt;}
.y12d{bottom:562.426667pt;}
.y78{bottom:564.746667pt;}
.y3b{bottom:567.226667pt;}
.y108{bottom:569.466667pt;}
.yb6{bottom:571.546667pt;}
.y7{bottom:573.786667pt;}
.y198{bottom:573.973333pt;}
.y141{bottom:577.493333pt;}
.yf0{bottom:578.533333pt;}
.y56{bottom:581.973333pt;}
.y183{bottom:584.453333pt;}
.y3a{bottom:585.653333pt;}
.yd1{bottom:587.973333pt;}
.y15f{bottom:588.373333pt;}
.y95{bottom:589.973333pt;}
.y12c{bottom:590.053333pt;}
.y77{bottom:592.373333pt;}
.y6{bottom:592.685334pt;}
.yb5{bottom:599.173333pt;}
.y197{bottom:601.573333pt;}
.y39{bottom:604.053333pt;}
.y140{bottom:605.093333pt;}
.yef{bottom:606.133333pt;}
.y1b4{bottom:608.373333pt;}
.y55{bottom:609.573333pt;}
.y182{bottom:612.053333pt;}
.y15e{bottom:615.973333pt;}
.y94{bottom:617.573333pt;}
.y12b{bottom:617.653333pt;}
.y76{bottom:619.973333pt;}
.y38{bottom:622.453333pt;}
.yb4{bottom:626.773333pt;}
.y196{bottom:629.173333pt;}
.y13f{bottom:632.693333pt;}
.yee{bottom:633.733333pt;}
.y54{bottom:637.173333pt;}
.y181{bottom:639.653333pt;}
.y37{bottom:640.853333pt;}
.y15d{bottom:643.573333pt;}
.y93{bottom:645.173333pt;}
.y12a{bottom:645.253333pt;}
.y5{bottom:645.598667pt;}
.y75{bottom:647.573333pt;}
.yb3{bottom:654.373333pt;}
.y195{bottom:656.773333pt;}
.y36{bottom:659.253333pt;}
.yed{bottom:661.333333pt;}
.y1b3{bottom:663.573333pt;}
.y53{bottom:664.773333pt;}
.y180{bottom:667.253333pt;}
.y3{bottom:668.977329pt;}
.y15c{bottom:671.173333pt;}
.y13e{bottom:671.493333pt;}
.y92{bottom:672.773333pt;}
.y129{bottom:672.853333pt;}
.ycb{bottom:674.933333pt;}
.y74{bottom:675.173333pt;}
.y35{bottom:677.653333pt;}
.yb2{bottom:681.973333pt;}
.y194{bottom:684.293333pt;}
.yec{bottom:688.933333pt;}
.y52{bottom:692.293333pt;}
.y17f{bottom:694.853333pt;}
.y25{bottom:695.548400pt;}
.y34{bottom:696.053333pt;}
.y15b{bottom:698.773333pt;}
.y91{bottom:700.293333pt;}
.y1b2{bottom:700.373333pt;}
.y128{bottom:700.453333pt;}
.y73{bottom:702.693333pt;}
.yb1{bottom:709.493333pt;}
.y193{bottom:711.893333pt;}
.y33{bottom:714.453333pt;}
.yeb{bottom:716.533333pt;}
.y1b1{bottom:718.693333pt;}
.y51{bottom:719.893333pt;}
.y17e{bottom:720.293333pt;}
.y15a{bottom:726.373333pt;}
.y90{bottom:727.893333pt;}
.y72{bottom:730.293333pt;}
.y32{bottom:732.853333pt;}
.yb0{bottom:737.093333pt;}
.y192{bottom:739.493333pt;}
.y17d{bottom:743.333333pt;}
.y24{bottom:743.548400pt;}
.yea{bottom:744.133333pt;}
.y50{bottom:747.493333pt;}
.y159{bottom:753.973333pt;}
.y8e{bottom:755.493333pt;}
.y71{bottom:757.893333pt;}
.y8f{bottom:761.493333pt;}
.yc8{bottom:762.853333pt;}
.yaf{bottom:764.693333pt;}
.y17c{bottom:765.013333pt;}
.y191{bottom:767.093333pt;}
.y31{bottom:769.653333pt;}
.y107{bottom:771.733333pt;}
.y1b0{bottom:773.893333pt;}
.y4f{bottom:775.093333pt;}
.y158{bottom:781.573333pt;}
.y2{bottom:781.661334pt;}
.ye9{bottom:781.813333pt;}
.y8d{bottom:783.093333pt;}
.y70{bottom:785.493333pt;}
.yae{bottom:792.293333pt;}
.y30{bottom:794.533333pt;}
.y190{bottom:794.693333pt;}
.y23{bottom:797.418933pt;}
.y106{bottom:799.333333pt;}
.y4e{bottom:802.693333pt;}
.y157{bottom:809.173333pt;}
.y8c{bottom:810.693333pt;}
.y2f{bottom:819.653333pt;}
.yad{bottom:819.893333pt;}
.y6f{bottom:825.333333pt;}
.y105{bottom:826.933333pt;}
.y1af{bottom:829.093333pt;}
.y4d{bottom:830.293333pt;}
.y22{bottom:831.018933pt;}
.y18f{bottom:834.533333pt;}
.y156{bottom:836.773333pt;}
.y2e{bottom:837.493333pt;}
.y8b{bottom:838.293333pt;}
.yac{bottom:847.493333pt;}
.y2d{bottom:852.853333pt;}
.y104{bottom:854.533333pt;}
.y4c{bottom:857.893333pt;}
.y1cd{bottom:858.081733pt;}
.y1{bottom:859.312000pt;}
.y6e{bottom:862.133333pt;}
.y155{bottom:864.373333pt;}
.y1ae{bottom:865.893333pt;}
.y2c{bottom:868.133333pt;}
.y8a{bottom:875.093333pt;}
.y1ad{bottom:884.293333pt;}
.y4b{bottom:885.493333pt;}
.y1cc{bottom:886.881733pt;}
.y154{bottom:891.973333pt;}
.y103{bottom:892.213333pt;}
.y6d{bottom:902.693333pt;}
.y4a{bottom:913.093333pt;}
.y1cb{bottom:915.681733pt;}
.y2b{bottom:918.453333pt;}
.y1ac{bottom:921.093333pt;}
.y153{bottom:921.253333pt;}
.y1ca{bottom:930.081733pt;}
.y6c{bottom:930.293333pt;}
.y1ab{bottom:939.493333pt;}
.y49{bottom:940.693333pt;}
.y1c9{bottom:944.481733pt;}
.y2a{bottom:955.200000pt;}
.y6b{bottom:957.920000pt;}
.y48{bottom:968.320000pt;}
.y1aa{bottom:976.320000pt;}
.y1c8{bottom:979.130800pt;}
.y6a{bottom:985.520000pt;}
.y1a9{bottom:994.720000pt;}
.y47{bottom:1008.160000pt;}
.y69{bottom:1013.120000pt;}
.y26{bottom:1059.600000pt;}
.h10{height:18.400000pt;}
.h27{height:23.789539pt;}
.h7{height:28.560000pt;}
.h26{height:34.920000pt;}
.h9{height:35.352000pt;}
.h25{height:35.664000pt;}
.h18{height:36.745312pt;}
.h19{height:36.800000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h24{height:44.596875pt;}
.h17{height:46.281250pt;}
.h2{height:48.960000pt;}
.h13{height:52.448437pt;}
.h20{height:55.200000pt;}
.h22{height:57.473437pt;}
.h14{height:59.017500pt;}
.h15{height:62.781250pt;}
.hf{height:62.812500pt;}
.h1a{height:64.500000pt;}
.h5{height:69.360000pt;}
.h21{height:73.140156pt;}
.h12{height:73.176562pt;}
.h1b{height:73.520000pt;}
.h1d{height:73.600000pt;}
.h1e{height:73.626667pt;}
.hb{height:82.488000pt;}
.h23{height:83.812969pt;}
.hd{height:85.078125pt;}
.h16{height:86.107500pt;}
.ha{height:89.776042pt;}
.h4{height:105.826671pt;}
.h11{height:107.392500pt;}
.hc{height:120.240000pt;}
.h1f{height:142.106667pt;}
.h1c{height:160.480000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:8.000000pt;}
.wc{width:16.000000pt;}
.w8{width:96.106667pt;}
.wa{width:128.666667pt;}
.w9{width:179.840000pt;}
.wb{width:200.320000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w7{width:793.839976pt;}
.w5{width:793.839988pt;}
.w4{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.640000pt;}
.x1e{left:10.640000pt;}
.x1b{left:29.600000pt;}
.x1c{left:39.440000pt;}
.x7{left:48.856267pt;}
.x1a{left:51.440000pt;}
.x13{left:75.599988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x17{left:99.199988pt;}
.x22{left:113.439988pt;}
.xa{left:128.479988pt;}
.xd{left:154.746655pt;}
.x6{left:164.764133pt;}
.x11{left:170.106655pt;}
.x23{left:172.824667pt;}
.x4{left:180.874667pt;}
.x19{left:190.586667pt;}
.x1f{left:204.106655pt;}
.xc{left:213.866655pt;}
.xb{left:218.746655pt;}
.xe{left:227.466655pt;}
.x16{left:286.506655pt;}
.x10{left:369.626655pt;}
.x20{left:388.906667pt;}
.x9{left:392.906667pt;}
.xf{left:396.906655pt;}
.x3{left:404.408000pt;}
.x5{left:415.759600pt;}
.x1d{left:499.093333pt;}
.x8{left:577.707867pt;}
.x24{left:628.832933pt;}
.x21{left:680.453322pt;}
.x14{left:686.053310pt;}
.x15{left:690.773322pt;}
.x12{left:699.413322pt;}
}




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