
    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_00ebef3c8208a79e4a1474a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c09eacb900adc7800aa71792.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ed3e7af26d2a7871d6c2e2ed.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_02d67c0c33a9aaf226c7fb63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d4091901ada3e877cdaa99bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_48b962ae7aef74ae809ad6e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_13b29befde257e3cec311e61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f8d6c6ead7ad60fc5fdb5264.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_100f8412009240b7367cd5d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_eb017b2918f5f26ae4f514af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_f5f94bb61515d716a8f9c2f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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.000000,-0.250378,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250378,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250378,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,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);}
.v6{vertical-align:-13.084682px;}
.v1{vertical-align:-11.880000px;}
.v3{vertical-align:-9.000000px;}
.v8{vertical-align:-5.469322px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:7.986277px;}
.v2{vertical-align:33.120000px;}
.v5{vertical-align:34.220114px;}
.v4{vertical-align:42.120000px;}
.ls21{letter-spacing:-1.306494px;}
.ls15{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.186701px;}
.ls8{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.114773px;}
.ls13{letter-spacing:-0.103800px;}
.ls17{letter-spacing:-0.096565px;}
.lsc{letter-spacing:-0.090000px;}
.ls20{letter-spacing:-0.086992px;}
.ls28{letter-spacing:-0.075559px;}
.ls18{letter-spacing:-0.063572px;}
.ls1f{letter-spacing:-0.054006px;}
.ls2a{letter-spacing:-0.043518px;}
.ls1b{letter-spacing:-0.036614px;}
.ls27{letter-spacing:-0.024150px;}
.ls2b{letter-spacing:-0.022324px;}
.ls19{letter-spacing:-0.020319px;}
.ls26{letter-spacing:-0.018125px;}
.ls10{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.009174px;}
.ls29{letter-spacing:0.010903px;}
.ls24{letter-spacing:0.024701px;}
.ls1c{letter-spacing:0.027561px;}
.ls12{letter-spacing:0.030000px;}
.ls7{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.090000px;}
.ls22{letter-spacing:0.090873px;}
.lsf{letter-spacing:0.104040px;}
.ls14{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.224040px;}
.ls5{letter-spacing:0.255960px;}
.ls6{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.375960px;}
.ls1e{letter-spacing:14.433739px;}
.ls1d{letter-spacing:67.908368px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.ws1{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws16{word-spacing:-14.847108px;}
.ws0{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.226200px;}
.ws7{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.970000px;}
.wsc{word-spacing:-11.960640px;}
.wsb{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.790000px;}
.ws11{word-spacing:-0.048282px;}
.ws1d{word-spacing:-0.022324px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:0.057386px;}
.ws15{word-spacing:14.580593px;}
.wsf{word-spacing:588.561816px;}
.ws14{word-spacing:633.270143px;}
.ws12{word-spacing:637.667201px;}
.ws13{word-spacing:641.209878px;}
.ws1a{word-spacing:655.145063px;}
.ws17{word-spacing:685.935147px;}
.ws1b{word-spacing:703.055650px;}
.ws18{word-spacing:920.597800px;}
.ws10{word-spacing:999.263535px;}
.ws1c{word-spacing:1209.015847px;}
._a{margin-left:-1506.570578px;}
._3{margin-left:-1.152000px;}
._2{width:1.161840px;}
._9{width:2.496000px;}
._b{width:4.320000px;}
._8{width:6.168000px;}
._7{width:7.272000px;}
._f{width:8.496000px;}
._e{width:9.576000px;}
._10{width:11.088000px;}
._11{width:12.302160px;}
._12{width:14.472000px;}
._d{width:20.856000px;}
._c{width:22.032000px;}
._6{width:35.598362px;}
._5{width:46.600079px;}
._4{width:1265.280000px;}
._1{width:1283.280000px;}
._0{width:1343.040000px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:14.845303px;}
.fs16{font-size:22.323764px;}
.fsa{font-size:27.147005px;}
.fsb{font-size:27.188018px;}
.fs12{font-size:35.515565px;}
.fs9{font-size:38.522180px;}
.fs4{font-size:38.880000px;}
.fsd{font-size:40.785907px;}
.fsc{font-size:42.338892px;}
.fse{font-size:43.049635px;}
.fs3{font-size:47.880000px;}
.fs6{font-size:48.282348px;}
.fs11{font-size:53.406864px;}
.fs10{font-size:53.460271px;}
.fs2{font-size:54.000000px;}
.fs13{font-size:57.386424px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:82.562814px;}
.fs7{font-size:82.611097px;}
.fs1{font-size:83.880000px;}
.fs18{font-size:96.120000px;}
.fs15{font-size:98.130785px;}
.fs14{font-size:98.188172px;}
.fsf{font-size:106.867135px;}
.y0{bottom:0.000000px;}
.yeb{bottom:8.399905px;}
.ycb{bottom:14.012945px;}
.y100{bottom:14.063858px;}
.ye7{bottom:21.164904px;}
.y135{bottom:28.688362px;}
.y136{bottom:47.631006px;}
.y2{bottom:57.150000px;}
.yea{bottom:69.316012px;}
.y29{bottom:88.470000px;}
.y41{bottom:91.260000px;}
.y81{bottom:98.100000px;}
.ye8{bottom:99.692005px;}
.y8f{bottom:103.680000px;}
.y5b{bottom:105.030000px;}
.y28{bottom:105.750000px;}
.yed{bottom:110.113238px;}
.ycf{bottom:112.221252px;}
.y27{bottom:112.500000px;}
.yab{bottom:112.680000px;}
.y12d{bottom:114.030000px;}
.y6b{bottom:115.380000px;}
.y26{bottom:123.660000px;}
.y40{bottom:132.660000px;}
.y12c{bottom:134.730000px;}
.y80{bottom:139.500000px;}
.y8e{bottom:145.080000px;}
.y5a{bottom:146.430000px;}
.yca{bottom:148.070895px;}
.ycc{bottom:150.917542px;}
.y58{bottom:151.470000px;}
.yee{bottom:151.963098px;}
.yaa{bottom:154.080000px;}
.y12b{bottom:155.430000px;}
.y6a{bottom:156.780000px;}
.yec{bottom:161.334931px;}
.y9e{bottom:161.730000px;}
.yf0{bottom:164.654474px;}
.y3f{bottom:174.060000px;}
.y12a{bottom:176.130000px;}
.y25{bottom:177.480000px;}
.y7f{bottom:180.900000px;}
.ye9{bottom:184.360276px;}
.y57{bottom:184.770000px;}
.y59{bottom:187.830000px;}
.yce{bottom:189.387508px;}
.y102{bottom:192.107033px;}
.y8d{bottom:195.480000px;}
.y129{bottom:196.830000px;}
.yf1{bottom:197.855741px;}
.y69{bottom:198.180000px;}
.yf3{bottom:199.124154px;}
.y9d{bottom:203.130000px;}
.yb1{bottom:211.230000px;}
.y3e{bottom:215.490000px;}
.y128{bottom:217.560000px;}
.y24{bottom:218.910000px;}
.y7e{bottom:222.330000px;}
.yac{bottom:226.200000px;}
.yc9{bottom:226.248063px;}
.y56{bottom:229.260000px;}
.yff{bottom:234.411588px;}
.y8c{bottom:236.910000px;}
.y127{bottom:238.260000px;}
.y68{bottom:239.610000px;}
.y9c{bottom:244.560000px;}
.yb0{bottom:252.660000px;}
.y3d{bottom:256.890000px;}
.y126{bottom:258.960000px;}
.y23{bottom:260.310000px;}
.y7d{bottom:263.730000px;}
.y55{bottom:270.660000px;}
.y8b{bottom:278.310000px;}
.y125{bottom:279.660000px;}
.y67{bottom:281.010000px;}
.y9b{bottom:285.960000px;}
.yaf{bottom:294.060000px;}
.y3c{bottom:298.290000px;}
.y124{bottom:300.360000px;}
.y22{bottom:301.710000px;}
.y7c{bottom:305.130000px;}
.yef{bottom:307.100594px;}
.yf2{bottom:308.674984px;}
.y54{bottom:312.060000px;}
.ycd{bottom:317.602288px;}
.y8a{bottom:319.710000px;}
.y123{bottom:321.060000px;}
.y66{bottom:322.410000px;}
.y118{bottom:322.500000px;}
.y9a{bottom:327.360000px;}
.yae{bottom:335.460000px;}
.y3b{bottom:339.690000px;}
.y122{bottom:341.760000px;}
.y21{bottom:343.110000px;}
.y117{bottom:343.200000px;}
.y7b{bottom:346.530000px;}
.ye5{bottom:350.850000px;}
.y53{bottom:353.460000px;}
.y89{bottom:361.110000px;}
.y101{bottom:361.594250px;}
.y121{bottom:362.550000px;}
.y65{bottom:363.810000px;}
.y116{bottom:363.900000px;}
.y99{bottom:368.760000px;}
.ye4{bottom:371.550000px;}
.yad{bottom:376.860000px;}
.y3a{bottom:381.090000px;}
.y20{bottom:384.510000px;}
.y115{bottom:384.600000px;}
.y7a{bottom:387.930000px;}
.ye3{bottom:392.250000px;}
.y52{bottom:394.860000px;}
.y120{bottom:401.340000px;}
.y88{bottom:402.510000px;}
.y64{bottom:405.210000px;}
.y98{bottom:410.160000px;}
.y114{bottom:410.250000px;}
.ye2{bottom:412.950000px;}
.yc7{bottom:416.730000px;}
.y11f{bottom:422.040000px;}
.y39{bottom:422.490000px;}
.y1f{bottom:425.910000px;}
.y79{bottom:429.330000px;}
.ye1{bottom:433.650000px;}
.y51{bottom:436.260000px;}
.yc6{bottom:437.430000px;}
.y11e{bottom:442.740000px;}
.y87{bottom:443.910000px;}
.y63{bottom:446.610000px;}
.yfd{bottom:451.470000px;}
.y97{bottom:451.560000px;}
.ye0{bottom:454.350000px;}
.yc5{bottom:458.130000px;}
.y11d{bottom:463.440000px;}
.y38{bottom:463.800000px;}
.y10c{bottom:466.320000px;}
.y1e{bottom:467.310000px;}
.y78{bottom:470.730000px;}
.ydf{bottom:475.050000px;}
.y50{bottom:477.660000px;}
.yc4{bottom:478.830000px;}
.y11c{bottom:484.140000px;}
.y86{bottom:485.310000px;}
.y62{bottom:488.010000px;}
.yfc{bottom:490.170000px;}
.y96{bottom:492.960000px;}
.yde{bottom:495.750000px;}
.yc3{bottom:499.530000px;}
.y11b{bottom:504.840000px;}
.y10b{bottom:505.020000px;}
.y37{bottom:505.200000px;}
.y1d{bottom:508.710000px;}
.y77{bottom:512.130000px;}
.ydd{bottom:516.450000px;}
.y4f{bottom:519.060000px;}
.yc2{bottom:520.230000px;}
.y11a{bottom:525.540000px;}
.ya9{bottom:526.620000px;}
.y85{bottom:526.710000px;}
.yfb{bottom:528.870000px;}
.y61{bottom:529.410000px;}
.y95{bottom:534.270000px;}
.ydc{bottom:537.150000px;}
.yc1{bottom:540.930000px;}
.y10a{bottom:543.720000px;}
.y36{bottom:546.600000px;}
.y1c{bottom:550.110000px;}
.y119{bottom:551.100000px;}
.y76{bottom:553.530000px;}
.ydb{bottom:557.850000px;}
.y82{bottom:560.280000px;}
.y4e{bottom:560.460000px;}
.yc0{bottom:561.630000px;}
.yfa{bottom:567.570000px;}
.ya8{bottom:568.020000px;}
.y84{bottom:568.110000px;}
.y60{bottom:570.810000px;}
.y94{bottom:577.020000px;}
.yda{bottom:578.550000px;}
.ybf{bottom:582.330000px;}
.y109{bottom:582.420000px;}
.y35{bottom:588.000000px;}
.y113{bottom:591.240000px;}
.y1b{bottom:591.510000px;}
.y75{bottom:594.930000px;}
.yd9{bottom:599.160000px;}
.y4d{bottom:601.860000px;}
.ybe{bottom:603.030000px;}
.yf9{bottom:606.270000px;}
.ya7{bottom:609.420000px;}
.y83{bottom:610.770000px;}
.y5f{bottom:612.210000px;}
.yd8{bottom:619.860000px;}
.y93{bottom:621.120000px;}
.ybd{bottom:623.640000px;}
.y34{bottom:629.400000px;}
.y1a{bottom:632.940000px;}
.y112{bottom:633.390000px;}
.y74{bottom:636.360000px;}
.yd7{bottom:640.590000px;}
.y4c{bottom:643.290000px;}
.ybc{bottom:644.370000px;}
.yf8{bottom:645.000000px;}
.ya6{bottom:650.850000px;}
.y5e{bottom:653.640000px;}
.y108{bottom:659.940000px;}
.yd6{bottom:661.290000px;}
.y92{bottom:663.990000px;}
.ybb{bottom:665.070000px;}
.y33{bottom:670.830000px;}
.y19{bottom:674.340000px;}
.y111{bottom:675.510000px;}
.y73{bottom:677.760000px;}
.y107{bottom:680.640000px;}
.yd5{bottom:681.990000px;}
.yf7{bottom:683.700000px;}
.y4b{bottom:684.690000px;}
.yba{bottom:685.770000px;}
.ya5{bottom:692.250000px;}
.y5d{bottom:695.040000px;}
.y146{bottom:698.460000px;}
.y106{bottom:701.340000px;}
.yd4{bottom:702.690000px;}
.y91{bottom:705.300000px;}
.yb9{bottom:706.470000px;}
.y32{bottom:712.230000px;}
.y18{bottom:715.740000px;}
.y110{bottom:717.270000px;}
.y72{bottom:719.160000px;}
.y105{bottom:722.040000px;}
.yf6{bottom:722.400000px;}
.ya4{bottom:723.120000px;}
.yd3{bottom:723.480000px;}
.y13b{bottom:723.570000px;}
.y4a{bottom:726.090000px;}
.yb8{bottom:727.170000px;}
.y17{bottom:736.440000px;}
.y10f{bottom:737.970000px;}
.y145{bottom:739.860000px;}
.y104{bottom:742.740000px;}
.yd2{bottom:744.180000px;}
.y13a{bottom:744.270000px;}
.yb7{bottom:747.870000px;}
.y31{bottom:753.630000px;}
.y90{bottom:757.050000px;}
.y16{bottom:757.140000px;}
.y10e{bottom:758.670000px;}
.y71{bottom:760.560000px;}
.yf5{bottom:761.100000px;}
.ya3{bottom:764.700000px;}
.yd1{bottom:764.880000px;}
.y139{bottom:764.970000px;}
.y49{bottom:767.490000px;}
.yfe{bottom:768.285000px;}
.y103{bottom:768.300000px;}
.yb6{bottom:768.570000px;}
.y15{bottom:777.840000px;}
.y144{bottom:781.260000px;}
.yf4{bottom:781.800000px;}
.y10d{bottom:784.320000px;}
.yd0{bottom:785.580000px;}
.y138{bottom:785.670000px;}
.yb5{bottom:789.270000px;}
.y30{bottom:795.030000px;}
.y14{bottom:798.450000px;}
.y70{bottom:801.960000px;}
.y134{bottom:802.185000px;}
.y137{bottom:802.230000px;}
.ya2{bottom:807.360000px;}
.y48{bottom:808.800000px;}
.yb4{bottom:809.970000px;}
.ye6{bottom:816.360000px;}
.yc8{bottom:817.260000px;}
.y13{bottom:819.150000px;}
.y143{bottom:822.660000px;}
.yb3{bottom:830.670000px;}
.y2f{bottom:836.430000px;}
.y12{bottom:839.850000px;}
.y6f{bottom:843.360000px;}
.yb2{bottom:847.230000px;}
.y47{bottom:850.200000px;}
.y11{bottom:860.550000px;}
.y142{bottom:864.060000px;}
.y2e{bottom:877.830000px;}
.y10{bottom:881.250000px;}
.y6e{bottom:884.760000px;}
.y46{bottom:891.600000px;}
.yf{bottom:901.950000px;}
.y141{bottom:905.460000px;}
.y133{bottom:912.120000px;}
.y2d{bottom:919.230000px;}
.ye{bottom:922.650000px;}
.y6d{bottom:925.980000px;}
.y140{bottom:926.160000px;}
.y5c{bottom:932.820000px;}
.y45{bottom:933.000000px;}
.ya1{bottom:943.260000px;}
.yd{bottom:943.350000px;}
.y13f{bottom:946.860000px;}
.y132{bottom:953.700000px;}
.y2c{bottom:960.630000px;}
.yc{bottom:963.960000px;}
.y13e{bottom:967.560000px;}
.y6c{bottom:971.340000px;}
.y44{bottom:974.400000px;}
.yb{bottom:984.750000px;}
.y13d{bottom:988.260000px;}
.ya0{bottom:995.100000px;}
.ya{bottom:1005.450000px;}
.y2b{bottom:1005.900000px;}
.y13c{bottom:1010.040000px;}
.y43{bottom:1015.800000px;}
.y9{bottom:1026.600000px;}
.y131{bottom:1036.500000px;}
.y9f{bottom:1046.760000px;}
.y7{bottom:1050.720000px;}
.y2a{bottom:1054.170000px;}
.y42{bottom:1057.230000px;}
.y8{bottom:1060.470000px;}
.y6{bottom:1074.870000px;}
.y130{bottom:1077.930000px;}
.y5{bottom:1098.630000px;}
.y4{bottom:1119.150000px;}
.y12f{bottom:1119.330000px;}
.y12e{bottom:1139.850000px;}
.y3{bottom:1140.030000px;}
.y1{bottom:1193.220000px;}
.h23{height:15.521992px;}
.h14{height:19.432378px;}
.h15{height:19.461735px;}
.h13{height:28.045200px;}
.h17{height:29.693256px;}
.h16{height:30.823871px;}
.h18{height:31.341312px;}
.he{height:33.571320px;}
.h9{height:38.158594px;}
.h1f{height:39.901498px;}
.h1e{height:47.887775px;}
.h1b{height:53.877929px;}
.h6{height:54.421875px;}
.h1c{height:55.701690px;}
.hb{height:59.004492px;}
.ha{height:60.589687px;}
.hc{height:64.546875px;}
.hf{height:67.791434px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h1a{height:74.306055px;}
.h7{height:80.111602px;}
.h4{height:84.535312px;}
.h22{height:85.274452px;}
.h11{height:86.110435px;}
.h10{height:86.160792px;}
.h24{height:94.336523px;}
.h21{height:102.347343px;}
.h20{height:102.407195px;}
.h12{height:200.275091px;}
.hd{height:339.389697px;}
.h19{height:340.201724px;}
.h1d{height:388.266982px;}
.h5{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:283.424684px;}
.w5{width:283.425468px;}
.w7{width:290.326173px;}
.w3{width:664.866505px;}
.w6{width:665.098094px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:4.413418px;}
.x1e{left:6.619103px;}
.x17{left:18.142968px;}
.x13{left:39.912284px;}
.x10{left:48.072821px;}
.x15{left:64.150105px;}
.x1a{left:68.686954px;}
.x1{left:106.290000px;}
.x5{left:110.610000px;}
.x8{left:114.045000px;}
.x14{left:123.372727px;}
.x6{left:127.650000px;}
.xc{left:134.658479px;}
.x1c{left:138.799395px;}
.x9{left:144.064123px;}
.x12{left:146.478777px;}
.x18{left:174.927003px;}
.x19{left:185.139932px;}
.x23{left:211.744930px;}
.x22{left:216.363391px;}
.x16{left:220.406350px;}
.x11{left:254.743734px;}
.xf{left:304.770000px;}
.x2{left:306.388125px;}
.x3{left:313.140000px;}
.x4{left:322.320000px;}
.xa{left:326.398969px;}
.x24{left:396.690000px;}
.x7{left:549.330000px;}
.x1b{left:588.210000px;}
.xb{left:596.208316px;}
.x1f{left:606.660000px;}
.x1d{left:611.693966px;}
.x21{left:630.360000px;}
.x20{left:693.270000px;}
.xe{left:778.950000px;}
@media print{
.v6{vertical-align:-11.630828pt;}
.v1{vertical-align:-10.560000pt;}
.v3{vertical-align:-8.000000pt;}
.v8{vertical-align:-4.861620pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.098913pt;}
.v2{vertical-align:29.440000pt;}
.v5{vertical-align:30.417879pt;}
.v4{vertical-align:37.440000pt;}
.ls21{letter-spacing:-1.161328pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.165957pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.102020pt;}
.ls13{letter-spacing:-0.092267pt;}
.ls17{letter-spacing:-0.085835pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls20{letter-spacing:-0.077326pt;}
.ls28{letter-spacing:-0.067163pt;}
.ls18{letter-spacing:-0.056508pt;}
.ls1f{letter-spacing:-0.048005pt;}
.ls2a{letter-spacing:-0.038683pt;}
.ls1b{letter-spacing:-0.032546pt;}
.ls27{letter-spacing:-0.021467pt;}
.ls2b{letter-spacing:-0.019843pt;}
.ls19{letter-spacing:-0.018061pt;}
.ls26{letter-spacing:-0.016111pt;}
.ls10{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.008154pt;}
.ls29{letter-spacing:0.009692pt;}
.ls24{letter-spacing:0.021956pt;}
.ls1c{letter-spacing:0.024499pt;}
.ls12{letter-spacing:0.026667pt;}
.ls7{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.080000pt;}
.ls22{letter-spacing:0.080776pt;}
.lsf{letter-spacing:0.092480pt;}
.ls14{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.199147pt;}
.ls5{letter-spacing:0.227520pt;}
.ls6{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.334187pt;}
.ls1e{letter-spacing:12.829990pt;}
.ls1d{letter-spacing:60.362994pt;}
.wsa{word-spacing:-64.000000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws16{word-spacing:-13.197430pt;}
.ws0{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.867733pt;}
.ws7{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.640000pt;}
.wsc{word-spacing:-10.631680pt;}
.wsb{word-spacing:-10.560000pt;}
.ws6{word-spacing:-10.480000pt;}
.ws11{word-spacing:-0.042918pt;}
.ws1d{word-spacing:-0.019843pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:0.051010pt;}
.ws15{word-spacing:12.960527pt;}
.wsf{word-spacing:523.166059pt;}
.ws14{word-spacing:562.906794pt;}
.ws12{word-spacing:566.815290pt;}
.ws13{word-spacing:569.964336pt;}
.ws1a{word-spacing:582.351167pt;}
.ws17{word-spacing:609.720130pt;}
.ws1b{word-spacing:624.938356pt;}
.ws18{word-spacing:818.309155pt;}
.ws10{word-spacing:888.234253pt;}
.ws1c{word-spacing:1074.680753pt;}
._a{margin-left:-1339.173847pt;}
._3{margin-left:-1.024000pt;}
._2{width:1.032747pt;}
._9{width:2.218667pt;}
._b{width:3.840000pt;}
._8{width:5.482667pt;}
._7{width:6.464000pt;}
._f{width:7.552000pt;}
._e{width:8.512000pt;}
._10{width:9.856000pt;}
._11{width:10.935253pt;}
._12{width:12.864000pt;}
._d{width:18.538667pt;}
._c{width:19.584000pt;}
._6{width:31.642988pt;}
._5{width:41.422292pt;}
._4{width:1124.693333pt;}
._1{width:1140.693333pt;}
._0{width:1193.813333pt;}
.fs17{font-size:13.195825pt;}
.fs16{font-size:19.843346pt;}
.fsa{font-size:24.130671pt;}
.fsb{font-size:24.167127pt;}
.fs12{font-size:31.569391pt;}
.fs9{font-size:34.241937pt;}
.fs4{font-size:34.560000pt;}
.fsd{font-size:36.254140pt;}
.fsc{font-size:37.634570pt;}
.fse{font-size:38.266342pt;}
.fs3{font-size:42.560000pt;}
.fs6{font-size:42.917642pt;}
.fs11{font-size:47.472768pt;}
.fs10{font-size:47.520241pt;}
.fs2{font-size:48.000000pt;}
.fs13{font-size:51.010155pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:73.389168pt;}
.fs7{font-size:73.432086pt;}
.fs1{font-size:74.560000pt;}
.fs18{font-size:85.440000pt;}
.fs15{font-size:87.227365pt;}
.fs14{font-size:87.278375pt;}
.fsf{font-size:94.993009pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:7.466582pt;}
.ycb{bottom:12.455952pt;}
.y100{bottom:12.501207pt;}
.ye7{bottom:18.813248pt;}
.y135{bottom:25.500766pt;}
.y136{bottom:42.338672pt;}
.y2{bottom:50.800000pt;}
.yea{bottom:61.614233pt;}
.y29{bottom:78.640000pt;}
.y41{bottom:81.120000pt;}
.y81{bottom:87.200000pt;}
.ye8{bottom:88.615116pt;}
.y8f{bottom:92.160000pt;}
.y5b{bottom:93.360000pt;}
.y28{bottom:94.000000pt;}
.yed{bottom:97.878434pt;}
.ycf{bottom:99.752224pt;}
.y27{bottom:100.000000pt;}
.yab{bottom:100.160000pt;}
.y12d{bottom:101.360000pt;}
.y6b{bottom:102.560000pt;}
.y26{bottom:109.920000pt;}
.y40{bottom:117.920000pt;}
.y12c{bottom:119.760000pt;}
.y80{bottom:124.000000pt;}
.y8e{bottom:128.960000pt;}
.y5a{bottom:130.160000pt;}
.yca{bottom:131.618573pt;}
.ycc{bottom:134.148926pt;}
.y58{bottom:134.640000pt;}
.yee{bottom:135.078309pt;}
.yaa{bottom:136.960000pt;}
.y12b{bottom:138.160000pt;}
.y6a{bottom:139.360000pt;}
.yec{bottom:143.408827pt;}
.y9e{bottom:143.760000pt;}
.yf0{bottom:146.359533pt;}
.y3f{bottom:154.720000pt;}
.y12a{bottom:156.560000pt;}
.y25{bottom:157.760000pt;}
.y7f{bottom:160.800000pt;}
.ye9{bottom:163.875801pt;}
.y57{bottom:164.240000pt;}
.y59{bottom:166.960000pt;}
.yce{bottom:168.344452pt;}
.y102{bottom:170.761807pt;}
.y8d{bottom:173.760000pt;}
.y129{bottom:174.960000pt;}
.yf1{bottom:175.871770pt;}
.y69{bottom:176.160000pt;}
.yf3{bottom:176.999248pt;}
.y9d{bottom:180.560000pt;}
.yb1{bottom:187.760000pt;}
.y3e{bottom:191.546667pt;}
.y128{bottom:193.386667pt;}
.y24{bottom:194.586667pt;}
.y7e{bottom:197.626667pt;}
.yac{bottom:201.066667pt;}
.yc9{bottom:201.109389pt;}
.y56{bottom:203.786667pt;}
.yff{bottom:208.365856pt;}
.y8c{bottom:210.586667pt;}
.y127{bottom:211.786667pt;}
.y68{bottom:212.986667pt;}
.y9c{bottom:217.386667pt;}
.yb0{bottom:224.586667pt;}
.y3d{bottom:228.346667pt;}
.y126{bottom:230.186667pt;}
.y23{bottom:231.386667pt;}
.y7d{bottom:234.426667pt;}
.y55{bottom:240.586667pt;}
.y8b{bottom:247.386667pt;}
.y125{bottom:248.586667pt;}
.y67{bottom:249.786667pt;}
.y9b{bottom:254.186667pt;}
.yaf{bottom:261.386667pt;}
.y3c{bottom:265.146667pt;}
.y124{bottom:266.986667pt;}
.y22{bottom:268.186667pt;}
.y7c{bottom:271.226667pt;}
.yef{bottom:272.978306pt;}
.yf2{bottom:274.377764pt;}
.y54{bottom:277.386667pt;}
.ycd{bottom:282.313145pt;}
.y8a{bottom:284.186667pt;}
.y123{bottom:285.386667pt;}
.y66{bottom:286.586667pt;}
.y118{bottom:286.666667pt;}
.y9a{bottom:290.986667pt;}
.yae{bottom:298.186667pt;}
.y3b{bottom:301.946667pt;}
.y122{bottom:303.786667pt;}
.y21{bottom:304.986667pt;}
.y117{bottom:305.066667pt;}
.y7b{bottom:308.026667pt;}
.ye5{bottom:311.866667pt;}
.y53{bottom:314.186667pt;}
.y89{bottom:320.986667pt;}
.y101{bottom:321.417111pt;}
.y121{bottom:322.266667pt;}
.y65{bottom:323.386667pt;}
.y116{bottom:323.466667pt;}
.y99{bottom:327.786667pt;}
.ye4{bottom:330.266667pt;}
.yad{bottom:334.986667pt;}
.y3a{bottom:338.746667pt;}
.y20{bottom:341.786667pt;}
.y115{bottom:341.866667pt;}
.y7a{bottom:344.826667pt;}
.ye3{bottom:348.666667pt;}
.y52{bottom:350.986667pt;}
.y120{bottom:356.746667pt;}
.y88{bottom:357.786667pt;}
.y64{bottom:360.186667pt;}
.y98{bottom:364.586667pt;}
.y114{bottom:364.666667pt;}
.ye2{bottom:367.066667pt;}
.yc7{bottom:370.426667pt;}
.y11f{bottom:375.146667pt;}
.y39{bottom:375.546667pt;}
.y1f{bottom:378.586667pt;}
.y79{bottom:381.626667pt;}
.ye1{bottom:385.466667pt;}
.y51{bottom:387.786667pt;}
.yc6{bottom:388.826667pt;}
.y11e{bottom:393.546667pt;}
.y87{bottom:394.586667pt;}
.y63{bottom:396.986667pt;}
.yfd{bottom:401.306667pt;}
.y97{bottom:401.386667pt;}
.ye0{bottom:403.866667pt;}
.yc5{bottom:407.226667pt;}
.y11d{bottom:411.946667pt;}
.y38{bottom:412.266667pt;}
.y10c{bottom:414.506667pt;}
.y1e{bottom:415.386667pt;}
.y78{bottom:418.426667pt;}
.ydf{bottom:422.266667pt;}
.y50{bottom:424.586667pt;}
.yc4{bottom:425.626667pt;}
.y11c{bottom:430.346667pt;}
.y86{bottom:431.386667pt;}
.y62{bottom:433.786667pt;}
.yfc{bottom:435.706667pt;}
.y96{bottom:438.186667pt;}
.yde{bottom:440.666667pt;}
.yc3{bottom:444.026667pt;}
.y11b{bottom:448.746667pt;}
.y10b{bottom:448.906667pt;}
.y37{bottom:449.066667pt;}
.y1d{bottom:452.186667pt;}
.y77{bottom:455.226667pt;}
.ydd{bottom:459.066667pt;}
.y4f{bottom:461.386667pt;}
.yc2{bottom:462.426667pt;}
.y11a{bottom:467.146667pt;}
.ya9{bottom:468.106667pt;}
.y85{bottom:468.186667pt;}
.yfb{bottom:470.106667pt;}
.y61{bottom:470.586667pt;}
.y95{bottom:474.906667pt;}
.ydc{bottom:477.466667pt;}
.yc1{bottom:480.826667pt;}
.y10a{bottom:483.306667pt;}
.y36{bottom:485.866667pt;}
.y1c{bottom:488.986667pt;}
.y119{bottom:489.866667pt;}
.y76{bottom:492.026667pt;}
.ydb{bottom:495.866667pt;}
.y82{bottom:498.026667pt;}
.y4e{bottom:498.186667pt;}
.yc0{bottom:499.226667pt;}
.yfa{bottom:504.506667pt;}
.ya8{bottom:504.906667pt;}
.y84{bottom:504.986667pt;}
.y60{bottom:507.386667pt;}
.y94{bottom:512.906667pt;}
.yda{bottom:514.266667pt;}
.ybf{bottom:517.626667pt;}
.y109{bottom:517.706667pt;}
.y35{bottom:522.666667pt;}
.y113{bottom:525.546667pt;}
.y1b{bottom:525.786667pt;}
.y75{bottom:528.826667pt;}
.yd9{bottom:532.586667pt;}
.y4d{bottom:534.986667pt;}
.ybe{bottom:536.026667pt;}
.yf9{bottom:538.906667pt;}
.ya7{bottom:541.706667pt;}
.y83{bottom:542.906667pt;}
.y5f{bottom:544.186667pt;}
.yd8{bottom:550.986667pt;}
.y93{bottom:552.106667pt;}
.ybd{bottom:554.346667pt;}
.y34{bottom:559.466667pt;}
.y1a{bottom:562.613333pt;}
.y112{bottom:563.013333pt;}
.y74{bottom:565.653333pt;}
.yd7{bottom:569.413333pt;}
.y4c{bottom:571.813333pt;}
.ybc{bottom:572.773333pt;}
.yf8{bottom:573.333333pt;}
.ya6{bottom:578.533333pt;}
.y5e{bottom:581.013333pt;}
.y108{bottom:586.613333pt;}
.yd6{bottom:587.813333pt;}
.y92{bottom:590.213333pt;}
.ybb{bottom:591.173333pt;}
.y33{bottom:596.293333pt;}
.y19{bottom:599.413333pt;}
.y111{bottom:600.453333pt;}
.y73{bottom:602.453333pt;}
.y107{bottom:605.013333pt;}
.yd5{bottom:606.213333pt;}
.yf7{bottom:607.733333pt;}
.y4b{bottom:608.613333pt;}
.yba{bottom:609.573333pt;}
.ya5{bottom:615.333333pt;}
.y5d{bottom:617.813333pt;}
.y146{bottom:620.853333pt;}
.y106{bottom:623.413333pt;}
.yd4{bottom:624.613333pt;}
.y91{bottom:626.933333pt;}
.yb9{bottom:627.973333pt;}
.y32{bottom:633.093333pt;}
.y18{bottom:636.213333pt;}
.y110{bottom:637.573333pt;}
.y72{bottom:639.253333pt;}
.y105{bottom:641.813333pt;}
.yf6{bottom:642.133333pt;}
.ya4{bottom:642.773333pt;}
.yd3{bottom:643.093333pt;}
.y13b{bottom:643.173333pt;}
.y4a{bottom:645.413333pt;}
.yb8{bottom:646.373333pt;}
.y17{bottom:654.613333pt;}
.y10f{bottom:655.973333pt;}
.y145{bottom:657.653333pt;}
.y104{bottom:660.213333pt;}
.yd2{bottom:661.493333pt;}
.y13a{bottom:661.573333pt;}
.yb7{bottom:664.773333pt;}
.y31{bottom:669.893333pt;}
.y90{bottom:672.933333pt;}
.y16{bottom:673.013333pt;}
.y10e{bottom:674.373333pt;}
.y71{bottom:676.053333pt;}
.yf5{bottom:676.533333pt;}
.ya3{bottom:679.733333pt;}
.yd1{bottom:679.893333pt;}
.y139{bottom:679.973333pt;}
.y49{bottom:682.213333pt;}
.yfe{bottom:682.920000pt;}
.y103{bottom:682.933333pt;}
.yb6{bottom:683.173333pt;}
.y15{bottom:691.413333pt;}
.y144{bottom:694.453333pt;}
.yf4{bottom:694.933333pt;}
.y10d{bottom:697.173333pt;}
.yd0{bottom:698.293333pt;}
.y138{bottom:698.373333pt;}
.yb5{bottom:701.573333pt;}
.y30{bottom:706.693333pt;}
.y14{bottom:709.733333pt;}
.y70{bottom:712.853333pt;}
.y134{bottom:713.053333pt;}
.y137{bottom:713.093333pt;}
.ya2{bottom:717.653333pt;}
.y48{bottom:718.933333pt;}
.yb4{bottom:719.973333pt;}
.ye6{bottom:725.653333pt;}
.yc8{bottom:726.453333pt;}
.y13{bottom:728.133333pt;}
.y143{bottom:731.253333pt;}
.yb3{bottom:738.373333pt;}
.y2f{bottom:743.493333pt;}
.y12{bottom:746.533333pt;}
.y6f{bottom:749.653333pt;}
.yb2{bottom:753.093333pt;}
.y47{bottom:755.733333pt;}
.y11{bottom:764.933333pt;}
.y142{bottom:768.053333pt;}
.y2e{bottom:780.293333pt;}
.y10{bottom:783.333333pt;}
.y6e{bottom:786.453333pt;}
.y46{bottom:792.533333pt;}
.yf{bottom:801.733333pt;}
.y141{bottom:804.853333pt;}
.y133{bottom:810.773333pt;}
.y2d{bottom:817.093333pt;}
.ye{bottom:820.133333pt;}
.y6d{bottom:823.093333pt;}
.y140{bottom:823.253333pt;}
.y5c{bottom:829.173333pt;}
.y45{bottom:829.333333pt;}
.ya1{bottom:838.453333pt;}
.yd{bottom:838.533333pt;}
.y13f{bottom:841.653333pt;}
.y132{bottom:847.733333pt;}
.y2c{bottom:853.893333pt;}
.yc{bottom:856.853333pt;}
.y13e{bottom:860.053333pt;}
.y6c{bottom:863.413333pt;}
.y44{bottom:866.133333pt;}
.yb{bottom:875.333333pt;}
.y13d{bottom:878.453333pt;}
.ya0{bottom:884.533333pt;}
.ya{bottom:893.733333pt;}
.y2b{bottom:894.133333pt;}
.y13c{bottom:897.813333pt;}
.y43{bottom:902.933333pt;}
.y9{bottom:912.533333pt;}
.y131{bottom:921.333333pt;}
.y9f{bottom:930.453333pt;}
.y7{bottom:933.973333pt;}
.y2a{bottom:937.040000pt;}
.y42{bottom:939.760000pt;}
.y8{bottom:942.640000pt;}
.y6{bottom:955.440000pt;}
.y130{bottom:958.160000pt;}
.y5{bottom:976.560000pt;}
.y4{bottom:994.800000pt;}
.y12f{bottom:994.960000pt;}
.y12e{bottom:1013.200000pt;}
.y3{bottom:1013.360000pt;}
.y1{bottom:1060.640000pt;}
.h23{height:13.797326pt;}
.h14{height:17.273225pt;}
.h15{height:17.299320pt;}
.h13{height:24.929067pt;}
.h17{height:26.394005pt;}
.h16{height:27.398996pt;}
.h18{height:27.858944pt;}
.he{height:29.841173pt;}
.h9{height:33.918750pt;}
.h1f{height:35.467998pt;}
.h1e{height:42.566912pt;}
.h1b{height:47.891493pt;}
.h6{height:48.375000pt;}
.h1c{height:49.512613pt;}
.hb{height:52.448437pt;}
.ha{height:53.857500pt;}
.hc{height:57.375000pt;}
.hf{height:60.259052pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h1a{height:66.049826pt;}
.h7{height:71.210312pt;}
.h4{height:75.142500pt;}
.h22{height:75.799513pt;}
.h11{height:76.542609pt;}
.h10{height:76.587371pt;}
.h24{height:83.854687pt;}
.h21{height:90.975416pt;}
.h20{height:91.028618pt;}
.h12{height:178.022304pt;}
.hd{height:301.679731pt;}
.h19{height:302.401532pt;}
.h1d{height:345.126206pt;}
.h5{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:251.933052pt;}
.w5{width:251.933749pt;}
.w7{width:258.067709pt;}
.w3{width:590.992449pt;}
.w6{width:591.198306pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.923038pt;}
.x1e{left:5.883647pt;}
.x17{left:16.127083pt;}
.x13{left:35.477586pt;}
.x10{left:42.731397pt;}
.x15{left:57.022315pt;}
.x1a{left:61.055070pt;}
.x1{left:94.480000pt;}
.x5{left:98.320000pt;}
.x8{left:101.373333pt;}
.x14{left:109.664647pt;}
.x6{left:113.466667pt;}
.xc{left:119.696426pt;}
.x1c{left:123.377240pt;}
.x9{left:128.056998pt;}
.x12{left:130.203357pt;}
.x18{left:155.490670pt;}
.x19{left:164.568829pt;}
.x23{left:188.217716pt;}
.x22{left:192.323014pt;}
.x16{left:195.916756pt;}
.x11{left:226.438874pt;}
.xf{left:270.906667pt;}
.x2{left:272.345000pt;}
.x3{left:278.346667pt;}
.x4{left:286.506667pt;}
.xa{left:290.132417pt;}
.x24{left:352.613333pt;}
.x7{left:488.293333pt;}
.x1b{left:522.853333pt;}
.xb{left:529.962948pt;}
.x1f{left:539.253333pt;}
.x1d{left:543.727969pt;}
.x21{left:560.320000pt;}
.x20{left:616.240000pt;}
.xe{left:692.400000pt;}
}




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