
    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_c016727d7dad32f16b2ca0ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c17af115431724e49ffb010b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e5db6c82b5de238ea2828cb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ecffaac68eb6ecdb0c48f50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_6f4c0fb31b340db067d1653b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_dc6e5446c8a9465d16a464fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_44a079d5a5d3f5798ab0a369.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_4890fdeeedd98a7a430070f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_dabcb6117f85857c7e7744da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_013ff248326aed35cbc6bba2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b64ffe921a2b65443cb79e16.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c307ab7e289255e77f1e47f8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_6bb55c088cd9f312fa4accfb.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_eb6c8f5916dbe8d79c801389.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-2.220000px;}
.lse{letter-spacing:-1.986000px;}
.ls11{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.127200px;}
.lsc{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.lsa{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls18{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.800000px;}
.ls17{letter-spacing:2.340000px;}
.ls9{letter-spacing:3.960000px;}
.ls8{letter-spacing:5.400000px;}
.ls19{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.367200px;}
.ws10{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-9.732960px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._13{margin-left:-6.947520px;}
._3{margin-left:-5.079600px;}
._4{margin-left:-3.406320px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.050000px;}
._1{width:1.238640px;}
._7{width:2.603760px;}
._8{width:3.636960px;}
._6{width:4.840560px;}
._5{width:5.976000px;}
._c{width:7.187520px;}
._b{width:8.681520px;}
._18{width:9.816960px;}
._d{width:11.813280px;}
._e{width:13.087440px;}
._12{width:16.135200px;}
._11{width:17.580240px;}
._9{width:18.900480px;}
._a{width:19.959840px;}
._1a{width:21.334320px;}
._1b{width:22.517760px;}
._19{width:24.262560px;}
._10{width:25.577280px;}
._f{width:26.866320px;}
._15{width:29.342160px;}
._1c{width:30.537360px;}
._14{width:53.664480px;}
._17{width:58.863600px;}
._16{width:82.900080px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.180000px;}
.y38{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y3d{bottom:3.960000px;}
.y16{bottom:4.860000px;}
.y7f{bottom:5.940000px;}
.y94{bottom:6.120000px;}
.ye3{bottom:7.740000px;}
.y83{bottom:8.280000px;}
.ye1{bottom:8.460000px;}
.y78{bottom:9.180000px;}
.y81{bottom:9.360000px;}
.ye{bottom:9.540000px;}
.ya0{bottom:9.720000px;}
.yb7{bottom:10.440000px;}
.y3b{bottom:10.620000px;}
.y19{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y7d{bottom:14.580000px;}
.y4{bottom:17.280000px;}
.yb0{bottom:19.800000px;}
.y2{bottom:19.980000px;}
.yb3{bottom:20.340000px;}
.y7a{bottom:20.520000px;}
.y37{bottom:20.550000px;}
.yad{bottom:21.060000px;}
.y95{bottom:21.240000px;}
.y5{bottom:21.420000px;}
.y3c{bottom:22.140000px;}
.y3a{bottom:25.200000px;}
.ye0{bottom:25.740000px;}
.y9a{bottom:26.460000px;}
.y9c{bottom:26.640000px;}
.y9f{bottom:27.000000px;}
.y28{bottom:27.030000px;}
.yb6{bottom:27.720000px;}
.y15{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.yea{bottom:30.960000px;}
.y7c{bottom:31.860000px;}
.ya3{bottom:32.040000px;}
.ya7{bottom:32.580000px;}
.y98{bottom:37.305000px;}
.yb5{bottom:37.800000px;}
.y36{bottom:37.830000px;}
.yac{bottom:39.060000px;}
.yb9{bottom:39.420000px;}
.y92{bottom:42.120000px;}
.y27{bottom:42.330000px;}
.y1{bottom:43.920000px;}
.y9e{bottom:44.100000px;}
.y14{bottom:45.720000px;}
.ya{bottom:46.620000px;}
.ye9{bottom:48.240000px;}
.ya2{bottom:49.320000px;}
.ya6{bottom:49.860000px;}
.y35{bottom:55.110000px;}
.y13{bottom:58.860000px;}
.y26{bottom:59.970000px;}
.y76{bottom:62.460000px;}
.ya5{bottom:67.170000px;}
.y34{bottom:72.390000px;}
.y9{bottom:73.470000px;}
.y12{bottom:77.040000px;}
.y25{bottom:77.250000px;}
.y33{bottom:89.490000px;}
.ybe{bottom:89.676000px;}
.y8{bottom:93.090000px;}
.y24{bottom:94.530000px;}
.y11a{bottom:95.436000px;}
.ydf{bottom:95.616000px;}
.y11{bottom:96.120000px;}
.y32{bottom:106.770000px;}
.ybd{bottom:106.956000px;}
.y7{bottom:111.450000px;}
.y23{bottom:112.350000px;}
.y119{bottom:112.716000px;}
.y57{bottom:118.296000px;}
.y10{bottom:120.420000px;}
.y31{bottom:124.050000px;}
.ybc{bottom:124.056000px;}
.y22{bottom:129.630000px;}
.y118{bottom:129.996000px;}
.y56{bottom:135.576000px;}
.yde{bottom:139.356000px;}
.y30{bottom:141.330000px;}
.ybb{bottom:141.336000px;}
.y21{bottom:147.090000px;}
.y117{bottom:149.976000px;}
.y55{bottom:152.850000px;}
.ydd{bottom:156.630000px;}
.y2f{bottom:158.610000px;}
.y20{bottom:164.550000px;}
.y116{bottom:167.250000px;}
.y8c{bottom:167.790000px;}
.ydc{bottom:173.910000px;}
.y54{bottom:175.350000px;}
.y2e{bottom:175.710000px;}
.yba{bottom:175.890000px;}
.y1f{bottom:181.830000px;}
.y115{bottom:187.230000px;}
.y53{bottom:187.410000px;}
.yb8{bottom:190.650000px;}
.ydb{bottom:191.010000px;}
.y2d{bottom:192.990000px;}
.y1e{bottom:199.290000px;}
.y52{bottom:204.510000px;}
.yda{bottom:208.290000px;}
.y2c{bottom:210.270000px;}
.y1d{bottom:219.450000px;}
.y51{bottom:221.790000px;}
.y114{bottom:224.490000px;}
.yd9{bottom:225.570000px;}
.y2b{bottom:227.550000px;}
.y50{bottom:239.070000px;}
.y113{bottom:241.950000px;}
.yd8{bottom:242.850000px;}
.y2a{bottom:244.830000px;}
.y1c{bottom:246.990000px;}
.y4f{bottom:256.350000px;}
.yd7{bottom:260.130000px;}
.y112{bottom:261.930000px;}
.y29{bottom:262.110000px;}
.y1b{bottom:264.630000px;}
.y4e{bottom:273.630000px;}
.yd6{bottom:277.410000px;}
.y111{bottom:279.030000px;}
.yb4{bottom:287.310000px;}
.y4d{bottom:290.910000px;}
.yd5{bottom:294.510000px;}
.y110{bottom:296.490000px;}
.yd4{bottom:311.790000px;}
.y4c{bottom:313.230000px;}
.y10f{bottom:316.470000px;}
.y4b{bottom:325.290000px;}
.yd3{bottom:329.070000px;}
.y10e{bottom:333.750000px;}
.yb2{bottom:339.915000px;}
.y4a{bottom:342.615000px;}
.yd2{bottom:346.395000px;}
.y10d{bottom:353.775000px;}
.y8b{bottom:353.955000px;}
.y49{bottom:359.895000px;}
.yd1{bottom:363.675000px;}
.y10c{bottom:371.055000px;}
.y8a{bottom:371.235000px;}
.yb1{bottom:375.015000px;}
.y48{bottom:377.175000px;}
.yd0{bottom:380.775000px;}
.y89{bottom:388.335000px;}
.y47{bottom:394.455000px;}
.ycf{bottom:398.055000px;}
.y88{bottom:405.615000px;}
.y10b{bottom:408.315000px;}
.yaf{bottom:410.295000px;}
.y46{bottom:411.555000px;}
.yce{bottom:415.335000px;}
.y87{bottom:422.895000px;}
.y10a{bottom:425.595000px;}
.y45{bottom:428.835000px;}
.ycd{bottom:432.615000px;}
.y86{bottom:440.175000px;}
.yab{bottom:444.855000px;}
.y109{bottom:445.575000px;}
.y44{bottom:446.115000px;}
.ycc{bottom:449.895000px;}
.y85{bottom:457.455000px;}
.yae{bottom:462.675000px;}
.y108{bottom:462.855000px;}
.y43{bottom:463.395000px;}
.ycb{bottom:467.175000px;}
.y84{bottom:472.215000px;}
.y141{bottom:473.655000px;}
.y107{bottom:480.135000px;}
.y42{bottom:480.675000px;}
.yca{bottom:484.275000px;}
.y140{bottom:490.755000px;}
.y82{bottom:496.335000px;}
.y41{bottom:497.775000px;}
.y106{bottom:500.115000px;}
.yc9{bottom:501.555000px;}
.yaa{bottom:501.915000px;}
.y13f{bottom:508.035000px;}
.y40{bottom:515.055000px;}
.y105{bottom:517.395000px;}
.yc8{bottom:518.835000px;}
.ya9{bottom:519.195000px;}
.y80{bottom:519.375000px;}
.y13e{bottom:525.315000px;}
.y3f{bottom:532.335000px;}
.yc7{bottom:536.115000px;}
.ya8{bottom:536.475000px;}
.y104{bottom:537.375000px;}
.y13d{bottom:542.595000px;}
.y7e{bottom:543.495000px;}
.y3e{bottom:549.615000px;}
.ya4{bottom:551.235000px;}
.yc6{bottom:553.395000px;}
.y103{bottom:554.655000px;}
.y13c{bottom:559.875000px;}
.y39{bottom:563.655000px;}
.y7b{bottom:564.195000px;}
.yc5{bottom:570.675000px;}
.y102{bottom:571.935000px;}
.y13b{bottom:577.155000px;}
.yc4{bottom:587.775000px;}
.y101{bottom:591.915000px;}
.y13a{bottom:594.255000px;}
.y1a{bottom:600.195000px;}
.yc3{bottom:605.085000px;}
.y100{bottom:609.225000px;}
.y75{bottom:610.845000px;}
.y139{bottom:611.565000px;}
.yc2{bottom:622.365000px;}
.yff{bottom:626.505000px;}
.y138{bottom:628.845000px;}
.ya1{bottom:633.165000px;}
.yc1{bottom:639.645000px;}
.y79{bottom:646.125000px;}
.yfe{bottom:646.485000px;}
.yc0{bottom:656.925000px;}
.y137{bottom:663.405000px;}
.yfd{bottom:663.945000px;}
.y77{bottom:664.125000px;}
.ybf{bottom:674.025000px;}
.y136{bottom:680.685000px;}
.yfc{bottom:683.925000px;}
.y74{bottom:691.305000px;}
.y9d{bottom:697.245000px;}
.y135{bottom:697.785000px;}
.yfb{bottom:701.025000px;}
.y73{bottom:708.585000px;}
.y134{bottom:715.065000px;}
.yfa{bottom:718.305000px;}
.y72{bottom:725.865000px;}
.y133{bottom:732.345000px;}
.yf9{bottom:735.585000px;}
.y71{bottom:743.145000px;}
.y132{bottom:749.625000px;}
.yf8{bottom:752.865000px;}
.y9b{bottom:756.105000px;}
.y70{bottom:760.425000px;}
.y131{bottom:766.905000px;}
.yf7{bottom:770.145000px;}
.y6f{bottom:777.525000px;}
.y130{bottom:786.885000px;}
.yf6{bottom:787.245000px;}
.y6e{bottom:794.805000px;}
.y99{bottom:797.505000px;}
.y12f{bottom:804.165000px;}
.yf5{bottom:804.525000px;}
.y6d{bottom:812.085000px;}
.yf4{bottom:821.805000px;}
.y12e{bottom:824.145000px;}
.y6c{bottom:829.365000px;}
.y97{bottom:838.725000px;}
.yf3{bottom:839.085000px;}
.y12d{bottom:841.425000px;}
.y6b{bottom:846.645000px;}
.yf2{bottom:856.365000px;}
.y12c{bottom:861.405000px;}
.y6a{bottom:863.925000px;}
.yf1{bottom:873.690000px;}
.y17{bottom:876.210000px;}
.y12b{bottom:878.910000px;}
.y69{bottom:881.070000px;}
.y91{bottom:890.790000px;}
.y68{bottom:898.350000px;}
.y12a{bottom:898.890000px;}
.yf{bottom:905.910000px;}
.yf0{bottom:908.070000px;}
.y96{bottom:908.790000px;}
.y67{bottom:915.630000px;}
.y129{bottom:916.170000px;}
.yef{bottom:922.830000px;}
.y93{bottom:926.790000px;}
.y66{bottom:932.910000px;}
.y128{bottom:936.150000px;}
.yee{bottom:945.330000px;}
.y65{bottom:950.190000px;}
.y90{bottom:950.910000px;}
.y127{bottom:953.430000px;}
.y64{bottom:967.470000px;}
.yed{bottom:967.830000px;}
.y8f{bottom:968.190000px;}
.y126{bottom:970.710000px;}
.y63{bottom:984.570000px;}
.y8e{bottom:985.290000px;}
.yec{bottom:990.330000px;}
.y125{bottom:990.690000px;}
.y8d{bottom:999.330000px;}
.y62{bottom:1001.850000px;}
.y124{bottom:1007.970000px;}
.ye8{bottom:1012.830000px;}
.y61{bottom:1019.130000px;}
.y123{bottom:1027.950000px;}
.yeb{bottom:1035.330000px;}
.y60{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y122{bottom:1045.230000px;}
.y5f{bottom:1053.690000px;}
.y121{bottom:1062.510000px;}
.y6{bottom:1066.830000px;}
.y5e{bottom:1070.790000px;}
.ye7{bottom:1075.830000px;}
.y120{bottom:1082.490000px;}
.y5d{bottom:1088.070000px;}
.ye6{bottom:1098.330000px;}
.y11f{bottom:1099.770000px;}
.y5c{bottom:1105.350000px;}
.y11e{bottom:1117.050000px;}
.ye5{bottom:1120.830000px;}
.y5b{bottom:1122.630000px;}
.y11d{bottom:1137.030000px;}
.y5a{bottom:1139.940000px;}
.ye4{bottom:1143.360000px;}
.y11c{bottom:1154.340000px;}
.y59{bottom:1157.220000px;}
.ye2{bottom:1165.860000px;}
.y11b{bottom:1171.620000px;}
.y58{bottom:1174.320000px;}
.h22{height:17.100000px;}
.h30{height:17.280000px;}
.h25{height:19.980000px;}
.h28{height:20.160000px;}
.h37{height:21.780000px;}
.h38{height:21.816000px;}
.h26{height:22.320000px;}
.h21{height:23.220000px;}
.hb{height:25.020000px;}
.h1f{height:27.147656px;}
.h11{height:28.968750px;}
.h12{height:29.700000px;}
.h2{height:32.976000px;}
.h31{height:33.660000px;}
.h23{height:34.380000px;}
.h32{height:34.560000px;}
.h29{height:35.100000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h36{height:39.780000px;}
.h2b{height:40.500000px;}
.h1a{height:41.726953px;}
.h34{height:41.760000px;}
.h1d{height:42.164648px;}
.h18{height:42.281367px;}
.h4{height:43.453125px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h24{height:45.936000px;}
.h15{height:47.980898px;}
.h1e{height:48.027656px;}
.h1c{height:48.088125px;}
.h2a{height:51.156000px;}
.h33{height:51.696000px;}
.h3a{height:52.417969px;}
.h2f{height:53.100000px;}
.h35{height:53.460000px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h27{height:56.160000px;}
.h16{height:56.574492px;}
.h2c{height:58.140000px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.h39{height:62.280000px;}
.he{height:63.180000px;}
.h2d{height:63.360000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h20{height:76.500000px;}
.h2e{height:81.216000px;}
.h7{height:121.536000px;}
.hc{height:135.540000px;}
.h14{height:276.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:67.680000px;}
.w3{width:73.080000px;}
.w13{width:73.296000px;}
.w28{width:76.860000px;}
.w24{width:78.516000px;}
.w2e{width:79.236000px;}
.w2f{width:79.740000px;}
.w1c{width:80.820000px;}
.w1e{width:81.000000px;}
.w31{width:84.960000px;}
.w1a{width:84.996000px;}
.w15{width:85.140000px;}
.w14{width:85.320000px;}
.w23{width:89.640000px;}
.w25{width:89.820000px;}
.w12{width:91.116000px;}
.w2a{width:91.620000px;}
.w26{width:91.800000px;}
.w29{width:91.836000px;}
.w18{width:103.716000px;}
.wa{width:109.296000px;}
.w1b{width:111.240000px;}
.w21{width:111.456000px;}
.w30{width:133.596000px;}
.w1d{width:138.096000px;}
.w27{width:145.476000px;}
.we{width:146.376000px;}
.w5{width:151.950000px;}
.wf{width:158.400000px;}
.w10{width:158.430000px;}
.wd{width:158.610000px;}
.w2b{width:158.970000px;}
.w2d{width:169.950000px;}
.w8{width:216.075000px;}
.w2c{width:218.730000px;}
.w22{width:257.970000px;}
.w19{width:281.370000px;}
.w16{width:299.910000px;}
.wb{width:304.995000px;}
.w1f{width:314.130000px;}
.wc{width:316.830000px;}
.w20{width:369.435000px;}
.w17{width:385.095000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x10{left:12.600000px;}
.x21{left:14.400000px;}
.x1c{left:16.560000px;}
.x1e{left:19.260000px;}
.x27{left:20.520000px;}
.x25{left:23.220000px;}
.x24{left:24.300000px;}
.x12{left:26.136000px;}
.x28{left:27.180000px;}
.x26{left:29.160000px;}
.x23{left:30.456000px;}
.x17{left:31.680000px;}
.x29{left:32.760000px;}
.x19{left:40.320000px;}
.xd{left:44.676000px;}
.x1b{left:46.485000px;}
.xc{left:71.130000px;}
.x14{left:79.380000px;}
.x1{left:81.000000px;}
.x16{left:90.720000px;}
.x4{left:98.130000px;}
.x2e{left:104.076000px;}
.x44{left:108.035987px;}
.x3c{left:135.035987px;}
.x3e{left:172.830000px;}
.x33{left:184.890000px;}
.x13{left:190.290000px;}
.x3a{left:196.590000px;}
.xb{left:209.055000px;}
.xe{left:215.175000px;}
.x5{left:232.950000px;}
.x1d{left:257.790000px;}
.x3f{left:264.450000px;}
.x8{left:272.235000px;}
.xf{left:297.075000px;}
.x2d{left:310.934987px;}
.x35{left:314.174987px;}
.x3d{left:317.954987px;}
.x2c{left:321.014987px;}
.x34{left:322.995000px;}
.x6{left:331.995000px;}
.x3b{left:342.075000px;}
.x42{left:343.695000px;}
.x18{left:348.915000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x11{left:385.994987px;}
.x2f{left:403.995000px;}
.x36{left:418.935000px;}
.x1f{left:421.995000px;}
.x40{left:423.435000px;}
.x9{left:439.500000px;}
.x15{left:495.285000px;}
.x30{left:507.705000px;}
.x37{left:530.385000px;}
.x43{left:557.025000px;}
.x20{left:568.365000px;}
.x31{left:592.845000px;}
.x38{left:620.025000px;}
.x41{left:642.165000px;}
.x1a{left:653.685000px;}
.x32{left:677.850000px;}
.x39{left:698.550000px;}
.x2a{left:723.389987px;}
.x22{left:726.990000px;}
.x2b{left:730.049987px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-1.973333pt;}
.lse{letter-spacing:-1.765333pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.113067pt;}
.lsc{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.lsa{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls18{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.600000pt;}
.ls17{letter-spacing:2.080000pt;}
.ls9{letter-spacing:3.520000pt;}
.ls8{letter-spacing:4.800000pt;}
.ls19{letter-spacing:30.208000pt;}
.ws3{word-spacing:-18.993067pt;}
.ws10{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-8.651520pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._13{margin-left:-6.175573pt;}
._3{margin-left:-4.515200pt;}
._4{margin-left:-3.027840pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.101013pt;}
._7{width:2.314453pt;}
._8{width:3.232853pt;}
._6{width:4.302720pt;}
._5{width:5.312000pt;}
._c{width:6.388907pt;}
._b{width:7.716907pt;}
._18{width:8.726187pt;}
._d{width:10.500693pt;}
._e{width:11.633280pt;}
._12{width:14.342400pt;}
._11{width:15.626880pt;}
._9{width:16.800427pt;}
._a{width:17.742080pt;}
._1a{width:18.963840pt;}
._1b{width:20.015787pt;}
._19{width:21.566720pt;}
._10{width:22.735360pt;}
._f{width:23.881173pt;}
._15{width:26.081920pt;}
._1c{width:27.144320pt;}
._14{width:47.701760pt;}
._17{width:52.323200pt;}
._16{width:73.688960pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.160000pt;}
.y38{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y3d{bottom:3.520000pt;}
.y16{bottom:4.320000pt;}
.y7f{bottom:5.280000pt;}
.y94{bottom:5.440000pt;}
.ye3{bottom:6.880000pt;}
.y83{bottom:7.360000pt;}
.ye1{bottom:7.520000pt;}
.y78{bottom:8.160000pt;}
.y81{bottom:8.320000pt;}
.ye{bottom:8.480000pt;}
.ya0{bottom:8.640000pt;}
.yb7{bottom:9.280000pt;}
.y3b{bottom:9.440000pt;}
.y19{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y7d{bottom:12.960000pt;}
.y4{bottom:15.360000pt;}
.yb0{bottom:17.600000pt;}
.y2{bottom:17.760000pt;}
.yb3{bottom:18.080000pt;}
.y7a{bottom:18.240000pt;}
.y37{bottom:18.266667pt;}
.yad{bottom:18.720000pt;}
.y95{bottom:18.880000pt;}
.y5{bottom:19.040000pt;}
.y3c{bottom:19.680000pt;}
.y3a{bottom:22.400000pt;}
.ye0{bottom:22.880000pt;}
.y9a{bottom:23.520000pt;}
.y9c{bottom:23.680000pt;}
.y9f{bottom:24.000000pt;}
.y28{bottom:24.026667pt;}
.yb6{bottom:24.640000pt;}
.y15{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.yea{bottom:27.520000pt;}
.y7c{bottom:28.320000pt;}
.ya3{bottom:28.480000pt;}
.ya7{bottom:28.960000pt;}
.y98{bottom:33.160000pt;}
.yb5{bottom:33.600000pt;}
.y36{bottom:33.626667pt;}
.yac{bottom:34.720000pt;}
.yb9{bottom:35.040000pt;}
.y92{bottom:37.440000pt;}
.y27{bottom:37.626667pt;}
.y1{bottom:39.040000pt;}
.y9e{bottom:39.200000pt;}
.y14{bottom:40.640000pt;}
.ya{bottom:41.440000pt;}
.ye9{bottom:42.880000pt;}
.ya2{bottom:43.840000pt;}
.ya6{bottom:44.320000pt;}
.y35{bottom:48.986667pt;}
.y13{bottom:52.320000pt;}
.y26{bottom:53.306667pt;}
.y76{bottom:55.520000pt;}
.ya5{bottom:59.706667pt;}
.y34{bottom:64.346667pt;}
.y9{bottom:65.306667pt;}
.y12{bottom:68.480000pt;}
.y25{bottom:68.666667pt;}
.y33{bottom:79.546667pt;}
.ybe{bottom:79.712000pt;}
.y8{bottom:82.746667pt;}
.y24{bottom:84.026667pt;}
.y11a{bottom:84.832000pt;}
.ydf{bottom:84.992000pt;}
.y11{bottom:85.440000pt;}
.y32{bottom:94.906667pt;}
.ybd{bottom:95.072000pt;}
.y7{bottom:99.066667pt;}
.y23{bottom:99.866667pt;}
.y119{bottom:100.192000pt;}
.y57{bottom:105.152000pt;}
.y10{bottom:107.040000pt;}
.y31{bottom:110.266667pt;}
.ybc{bottom:110.272000pt;}
.y22{bottom:115.226667pt;}
.y118{bottom:115.552000pt;}
.y56{bottom:120.512000pt;}
.yde{bottom:123.872000pt;}
.y30{bottom:125.626667pt;}
.ybb{bottom:125.632000pt;}
.y21{bottom:130.746667pt;}
.y117{bottom:133.312000pt;}
.y55{bottom:135.866667pt;}
.ydd{bottom:139.226667pt;}
.y2f{bottom:140.986667pt;}
.y20{bottom:146.266667pt;}
.y116{bottom:148.666667pt;}
.y8c{bottom:149.146667pt;}
.ydc{bottom:154.586667pt;}
.y54{bottom:155.866667pt;}
.y2e{bottom:156.186667pt;}
.yba{bottom:156.346667pt;}
.y1f{bottom:161.626667pt;}
.y115{bottom:166.426667pt;}
.y53{bottom:166.586667pt;}
.yb8{bottom:169.466667pt;}
.ydb{bottom:169.786667pt;}
.y2d{bottom:171.546667pt;}
.y1e{bottom:177.146667pt;}
.y52{bottom:181.786667pt;}
.yda{bottom:185.146667pt;}
.y2c{bottom:186.906667pt;}
.y1d{bottom:195.066667pt;}
.y51{bottom:197.146667pt;}
.y114{bottom:199.546667pt;}
.yd9{bottom:200.506667pt;}
.y2b{bottom:202.266667pt;}
.y50{bottom:212.506667pt;}
.y113{bottom:215.066667pt;}
.yd8{bottom:215.866667pt;}
.y2a{bottom:217.626667pt;}
.y1c{bottom:219.546667pt;}
.y4f{bottom:227.866667pt;}
.yd7{bottom:231.226667pt;}
.y112{bottom:232.826667pt;}
.y29{bottom:232.986667pt;}
.y1b{bottom:235.226667pt;}
.y4e{bottom:243.226667pt;}
.yd6{bottom:246.586667pt;}
.y111{bottom:248.026667pt;}
.yb4{bottom:255.386667pt;}
.y4d{bottom:258.586667pt;}
.yd5{bottom:261.786667pt;}
.y110{bottom:263.546667pt;}
.yd4{bottom:277.146667pt;}
.y4c{bottom:278.426667pt;}
.y10f{bottom:281.306667pt;}
.y4b{bottom:289.146667pt;}
.yd3{bottom:292.506667pt;}
.y10e{bottom:296.666667pt;}
.yb2{bottom:302.146667pt;}
.y4a{bottom:304.546667pt;}
.yd2{bottom:307.906667pt;}
.y10d{bottom:314.466667pt;}
.y8b{bottom:314.626667pt;}
.y49{bottom:319.906667pt;}
.yd1{bottom:323.266667pt;}
.y10c{bottom:329.826667pt;}
.y8a{bottom:329.986667pt;}
.yb1{bottom:333.346667pt;}
.y48{bottom:335.266667pt;}
.yd0{bottom:338.466667pt;}
.y89{bottom:345.186667pt;}
.y47{bottom:350.626667pt;}
.ycf{bottom:353.826667pt;}
.y88{bottom:360.546667pt;}
.y10b{bottom:362.946667pt;}
.yaf{bottom:364.706667pt;}
.y46{bottom:365.826667pt;}
.yce{bottom:369.186667pt;}
.y87{bottom:375.906667pt;}
.y10a{bottom:378.306667pt;}
.y45{bottom:381.186667pt;}
.ycd{bottom:384.546667pt;}
.y86{bottom:391.266667pt;}
.yab{bottom:395.426667pt;}
.y109{bottom:396.066667pt;}
.y44{bottom:396.546667pt;}
.ycc{bottom:399.906667pt;}
.y85{bottom:406.626667pt;}
.yae{bottom:411.266667pt;}
.y108{bottom:411.426667pt;}
.y43{bottom:411.906667pt;}
.ycb{bottom:415.266667pt;}
.y84{bottom:419.746667pt;}
.y141{bottom:421.026667pt;}
.y107{bottom:426.786667pt;}
.y42{bottom:427.266667pt;}
.yca{bottom:430.466667pt;}
.y140{bottom:436.226667pt;}
.y82{bottom:441.186667pt;}
.y41{bottom:442.466667pt;}
.y106{bottom:444.546667pt;}
.yc9{bottom:445.826667pt;}
.yaa{bottom:446.146667pt;}
.y13f{bottom:451.586667pt;}
.y40{bottom:457.826667pt;}
.y105{bottom:459.906667pt;}
.yc8{bottom:461.186667pt;}
.ya9{bottom:461.506667pt;}
.y80{bottom:461.666667pt;}
.y13e{bottom:466.946667pt;}
.y3f{bottom:473.186667pt;}
.yc7{bottom:476.546667pt;}
.ya8{bottom:476.866667pt;}
.y104{bottom:477.666667pt;}
.y13d{bottom:482.306667pt;}
.y7e{bottom:483.106667pt;}
.y3e{bottom:488.546667pt;}
.ya4{bottom:489.986667pt;}
.yc6{bottom:491.906667pt;}
.y103{bottom:493.026667pt;}
.y13c{bottom:497.666667pt;}
.y39{bottom:501.026667pt;}
.y7b{bottom:501.506667pt;}
.yc5{bottom:507.266667pt;}
.y102{bottom:508.386667pt;}
.y13b{bottom:513.026667pt;}
.yc4{bottom:522.466667pt;}
.y101{bottom:526.146667pt;}
.y13a{bottom:528.226667pt;}
.y1a{bottom:533.506667pt;}
.yc3{bottom:537.853333pt;}
.y100{bottom:541.533333pt;}
.y75{bottom:542.973333pt;}
.y139{bottom:543.613333pt;}
.yc2{bottom:553.213333pt;}
.yff{bottom:556.893333pt;}
.y138{bottom:558.973333pt;}
.ya1{bottom:562.813333pt;}
.yc1{bottom:568.573333pt;}
.y79{bottom:574.333333pt;}
.yfe{bottom:574.653333pt;}
.yc0{bottom:583.933333pt;}
.y137{bottom:589.693333pt;}
.yfd{bottom:590.173333pt;}
.y77{bottom:590.333333pt;}
.ybf{bottom:599.133333pt;}
.y136{bottom:605.053333pt;}
.yfc{bottom:607.933333pt;}
.y74{bottom:614.493333pt;}
.y9d{bottom:619.773333pt;}
.y135{bottom:620.253333pt;}
.yfb{bottom:623.133333pt;}
.y73{bottom:629.853333pt;}
.y134{bottom:635.613333pt;}
.yfa{bottom:638.493333pt;}
.y72{bottom:645.213333pt;}
.y133{bottom:650.973333pt;}
.yf9{bottom:653.853333pt;}
.y71{bottom:660.573333pt;}
.y132{bottom:666.333333pt;}
.yf8{bottom:669.213333pt;}
.y9b{bottom:672.093333pt;}
.y70{bottom:675.933333pt;}
.y131{bottom:681.693333pt;}
.yf7{bottom:684.573333pt;}
.y6f{bottom:691.133333pt;}
.y130{bottom:699.453333pt;}
.yf6{bottom:699.773333pt;}
.y6e{bottom:706.493333pt;}
.y99{bottom:708.893333pt;}
.y12f{bottom:714.813333pt;}
.yf5{bottom:715.133333pt;}
.y6d{bottom:721.853333pt;}
.yf4{bottom:730.493333pt;}
.y12e{bottom:732.573333pt;}
.y6c{bottom:737.213333pt;}
.y97{bottom:745.533333pt;}
.yf3{bottom:745.853333pt;}
.y12d{bottom:747.933333pt;}
.y6b{bottom:752.573333pt;}
.yf2{bottom:761.213333pt;}
.y12c{bottom:765.693333pt;}
.y6a{bottom:767.933333pt;}
.yf1{bottom:776.613333pt;}
.y17{bottom:778.853333pt;}
.y12b{bottom:781.253333pt;}
.y69{bottom:783.173333pt;}
.y91{bottom:791.813333pt;}
.y68{bottom:798.533333pt;}
.y12a{bottom:799.013333pt;}
.yf{bottom:805.253333pt;}
.yf0{bottom:807.173333pt;}
.y96{bottom:807.813333pt;}
.y67{bottom:813.893333pt;}
.y129{bottom:814.373333pt;}
.yef{bottom:820.293333pt;}
.y93{bottom:823.813333pt;}
.y66{bottom:829.253333pt;}
.y128{bottom:832.133333pt;}
.yee{bottom:840.293333pt;}
.y65{bottom:844.613333pt;}
.y90{bottom:845.253333pt;}
.y127{bottom:847.493333pt;}
.y64{bottom:859.973333pt;}
.yed{bottom:860.293333pt;}
.y8f{bottom:860.613333pt;}
.y126{bottom:862.853333pt;}
.y63{bottom:875.173333pt;}
.y8e{bottom:875.813333pt;}
.yec{bottom:880.293333pt;}
.y125{bottom:880.613333pt;}
.y8d{bottom:888.293333pt;}
.y62{bottom:890.533333pt;}
.y124{bottom:895.973333pt;}
.ye8{bottom:900.293333pt;}
.y61{bottom:905.893333pt;}
.y123{bottom:913.733333pt;}
.yeb{bottom:920.293333pt;}
.y60{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y122{bottom:929.093333pt;}
.y5f{bottom:936.613333pt;}
.y121{bottom:944.453333pt;}
.y6{bottom:948.293333pt;}
.y5e{bottom:951.813333pt;}
.ye7{bottom:956.293333pt;}
.y120{bottom:962.213333pt;}
.y5d{bottom:967.173333pt;}
.ye6{bottom:976.293333pt;}
.y11f{bottom:977.573333pt;}
.y5c{bottom:982.533333pt;}
.y11e{bottom:992.933333pt;}
.ye5{bottom:996.293333pt;}
.y5b{bottom:997.893333pt;}
.y11d{bottom:1010.693333pt;}
.y5a{bottom:1013.280000pt;}
.ye4{bottom:1016.320000pt;}
.y11c{bottom:1026.080000pt;}
.y59{bottom:1028.640000pt;}
.ye2{bottom:1036.320000pt;}
.y11b{bottom:1041.440000pt;}
.y58{bottom:1043.840000pt;}
.h22{height:15.200000pt;}
.h30{height:15.360000pt;}
.h25{height:17.760000pt;}
.h28{height:17.920000pt;}
.h37{height:19.360000pt;}
.h38{height:19.392000pt;}
.h26{height:19.840000pt;}
.h21{height:20.640000pt;}
.hb{height:22.240000pt;}
.h1f{height:24.131250pt;}
.h11{height:25.750000pt;}
.h12{height:26.400000pt;}
.h2{height:29.312000pt;}
.h31{height:29.920000pt;}
.h23{height:30.560000pt;}
.h32{height:30.720000pt;}
.h29{height:31.200000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h36{height:35.360000pt;}
.h2b{height:36.000000pt;}
.h1a{height:37.090625pt;}
.h34{height:37.120000pt;}
.h1d{height:37.479688pt;}
.h18{height:37.583438pt;}
.h4{height:38.625000pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h24{height:40.832000pt;}
.h15{height:42.649687pt;}
.h1e{height:42.691250pt;}
.h1c{height:42.745000pt;}
.h2a{height:45.472000pt;}
.h33{height:45.952000pt;}
.h3a{height:46.593750pt;}
.h2f{height:47.200000pt;}
.h35{height:47.520000pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h27{height:49.920000pt;}
.h16{height:50.288438pt;}
.h2c{height:51.680000pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.h39{height:55.360000pt;}
.he{height:56.160000pt;}
.h2d{height:56.320000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h20{height:68.000000pt;}
.h2e{height:72.192000pt;}
.h7{height:108.032000pt;}
.hc{height:120.480000pt;}
.h14{height:245.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:60.160000pt;}
.w3{width:64.960000pt;}
.w13{width:65.152000pt;}
.w28{width:68.320000pt;}
.w24{width:69.792000pt;}
.w2e{width:70.432000pt;}
.w2f{width:70.880000pt;}
.w1c{width:71.840000pt;}
.w1e{width:72.000000pt;}
.w31{width:75.520000pt;}
.w1a{width:75.552000pt;}
.w15{width:75.680000pt;}
.w14{width:75.840000pt;}
.w23{width:79.680000pt;}
.w25{width:79.840000pt;}
.w12{width:80.992000pt;}
.w2a{width:81.440000pt;}
.w26{width:81.600000pt;}
.w29{width:81.632000pt;}
.w18{width:92.192000pt;}
.wa{width:97.152000pt;}
.w1b{width:98.880000pt;}
.w21{width:99.072000pt;}
.w30{width:118.752000pt;}
.w1d{width:122.752000pt;}
.w27{width:129.312000pt;}
.we{width:130.112000pt;}
.w5{width:135.066667pt;}
.wf{width:140.800000pt;}
.w10{width:140.826667pt;}
.wd{width:140.986667pt;}
.w2b{width:141.306667pt;}
.w2d{width:151.066667pt;}
.w8{width:192.066667pt;}
.w2c{width:194.426667pt;}
.w22{width:229.306667pt;}
.w19{width:250.106667pt;}
.w16{width:266.586667pt;}
.wb{width:271.106667pt;}
.w1f{width:279.226667pt;}
.wc{width:281.626667pt;}
.w20{width:328.386667pt;}
.w17{width:342.306667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x10{left:11.200000pt;}
.x21{left:12.800000pt;}
.x1c{left:14.720000pt;}
.x1e{left:17.120000pt;}
.x27{left:18.240000pt;}
.x25{left:20.640000pt;}
.x24{left:21.600000pt;}
.x12{left:23.232000pt;}
.x28{left:24.160000pt;}
.x26{left:25.920000pt;}
.x23{left:27.072000pt;}
.x17{left:28.160000pt;}
.x29{left:29.120000pt;}
.x19{left:35.840000pt;}
.xd{left:39.712000pt;}
.x1b{left:41.320000pt;}
.xc{left:63.226667pt;}
.x14{left:70.560000pt;}
.x1{left:72.000000pt;}
.x16{left:80.640000pt;}
.x4{left:87.226667pt;}
.x2e{left:92.512000pt;}
.x44{left:96.031988pt;}
.x3c{left:120.031988pt;}
.x3e{left:153.626667pt;}
.x33{left:164.346667pt;}
.x13{left:169.146667pt;}
.x3a{left:174.746667pt;}
.xb{left:185.826667pt;}
.xe{left:191.266667pt;}
.x5{left:207.066667pt;}
.x1d{left:229.146667pt;}
.x3f{left:235.066667pt;}
.x8{left:241.986667pt;}
.xf{left:264.066667pt;}
.x2d{left:276.386655pt;}
.x35{left:279.266655pt;}
.x3d{left:282.626655pt;}
.x2c{left:285.346655pt;}
.x34{left:287.106667pt;}
.x6{left:295.106667pt;}
.x3b{left:304.066667pt;}
.x42{left:305.506667pt;}
.x18{left:310.146667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x11{left:343.106655pt;}
.x2f{left:359.106667pt;}
.x36{left:372.386667pt;}
.x1f{left:375.106667pt;}
.x40{left:376.386667pt;}
.x9{left:390.666667pt;}
.x15{left:440.253333pt;}
.x30{left:451.293333pt;}
.x37{left:471.453333pt;}
.x43{left:495.133333pt;}
.x20{left:505.213333pt;}
.x31{left:526.973333pt;}
.x38{left:551.133333pt;}
.x41{left:570.813333pt;}
.x1a{left:581.053333pt;}
.x32{left:602.533333pt;}
.x39{left:620.933333pt;}
.x2a{left:643.013322pt;}
.x22{left:646.213333pt;}
.x2b{left:648.933322pt;}
.x3{left:656.933333pt;}
}




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