
    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_8a934e66cf430e5766cfae6c.woff')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_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_0ec2ad30f15f04e3fc7ef46b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f0bc8f25883b472fee63cbe3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_4bb5d5826a8593fa60a36717.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_526ac3009f14f0cb1b6427e7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dfd88ae4e8ff2c677aa8d435.woff')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_b6c84e95337290143f492090.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_30d45d7b4df0397937450251.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:40.500000px;}
.v3{vertical-align:46.080000px;}
.v5{vertical-align:48.240000px;}
.ls1d{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.774000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.259800px;}
.ls1a{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.100800px;}
.lsb{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.323400px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.365760px;}
.ls9{letter-spacing:0.379920px;}
.ls20{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.513600px;}
.ls22{letter-spacing:0.540000px;}
.ls10{letter-spacing:1.594800px;}
.ls11{letter-spacing:14.079600px;}
.ls21{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.ls18{letter-spacing:46.206720px;}
.ls17{letter-spacing:49.806720px;}
.lsf{letter-spacing:66.959280px;}
.ls2{letter-spacing:100.080000px;}
.ls1e{letter-spacing:150.570720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.680200px;}
.wsb{word-spacing:-13.160160px;}
.wsf{word-spacing:-13.147200px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:4.298760px;}
.wsa{word-spacing:4.479840px;}
.wse{word-spacing:5.683680px;}
.wsc{word-spacing:6.460560px;}
._1e{margin-left:-5.980560px;}
._13{margin-left:-4.627200px;}
._9{margin-left:-3.525840px;}
._a{margin-left:-2.396160px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._6{width:3.167280px;}
._5{width:4.674240px;}
._b{width:5.677200px;}
._7{width:6.932160px;}
._8{width:8.613120px;}
._10{width:10.559280px;}
._12{width:11.720400px;}
._22{width:13.590960px;}
._17{width:14.763840px;}
._11{width:15.991920px;}
._f{width:17.622720px;}
._d{width:19.180080px;}
._e{width:20.212320px;}
._21{width:21.899760px;}
._14{width:29.519280px;}
._16{width:40.319280px;}
._15{width:42.900480px;}
._4{width:50.967360px;}
._3{width:52.380720px;}
._1f{width:94.286160px;}
._c{width:99.915600px;}
._1c{width:113.237280px;}
._1b{width:128.070720px;}
._19{width:158.057280px;}
._1d{width:169.524000px;}
._20{width:176.004000px;}
._1a{width:201.036000px;}
._18{width:229.024080px;}
._1{width:1100.028000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y3c{bottom:5.760000px;}
.yec{bottom:5.805000px;}
.yce{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y3a{bottom:10.980000px;}
.y48{bottom:25.560000px;}
.yd2{bottom:25.740000px;}
.yda{bottom:27.360000px;}
.y39{bottom:30.960000px;}
.y6{bottom:36.000000px;}
.y47{bottom:45.540000px;}
.y38{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.yd1{bottom:65.340000px;}
.y46{bottom:65.370000px;}
.y37{bottom:70.590000px;}
.y110{bottom:78.300000px;}
.yfa{bottom:78.660000px;}
.y80{bottom:80.100000px;}
.y2b{bottom:81.540000px;}
.y4{bottom:81.720000px;}
.yd0{bottom:85.140000px;}
.y45{bottom:85.170000px;}
.yab{bottom:90.180000px;}
.y36{bottom:90.390000px;}
.y10f{bottom:98.100000px;}
.yf9{bottom:98.460000px;}
.y7f{bottom:99.900000px;}
.ycb{bottom:100.080000px;}
.y2a{bottom:101.340000px;}
.y44{bottom:104.970000px;}
.y9{bottom:108.570000px;}
.yaa{bottom:109.980000px;}
.y35{bottom:110.190000px;}
.y10e{bottom:117.900000px;}
.y3{bottom:118.110000px;}
.yf8{bottom:118.260000px;}
.y7e{bottom:119.700000px;}
.yca{bottom:119.880000px;}
.y29{bottom:121.140000px;}
.y43{bottom:124.770000px;}
.ya9{bottom:129.780000px;}
.y34{bottom:130.170000px;}
.y8{bottom:130.530000px;}
.y10d{bottom:137.700000px;}
.yf7{bottom:138.060000px;}
.y7d{bottom:139.680000px;}
.y28{bottom:141.120000px;}
.y42{bottom:144.750000px;}
.ya8{bottom:149.580000px;}
.y33{bottom:149.970000px;}
.y10c{bottom:157.710000px;}
.yf6{bottom:157.890000px;}
.y7c{bottom:159.510000px;}
.y27{bottom:160.950000px;}
.y41{bottom:164.550000px;}
.ya7{bottom:169.410000px;}
.y32{bottom:169.770000px;}
.y10b{bottom:177.510000px;}
.yf5{bottom:177.870000px;}
.y7b{bottom:179.310000px;}
.y26{bottom:180.750000px;}
.y40{bottom:184.350000px;}
.ya6{bottom:189.390000px;}
.y31{bottom:189.570000px;}
.y10a{bottom:197.310000px;}
.yf4{bottom:197.670000px;}
.y7a{bottom:199.110000px;}
.yc9{bottom:199.290000px;}
.y25{bottom:200.550000px;}
.y3f{bottom:204.150000px;}
.y30{bottom:209.370000px;}
.yf3{bottom:212.430000px;}
.y109{bottom:217.110000px;}
.ya5{bottom:218.190000px;}
.y79{bottom:218.910000px;}
.yc8{bottom:219.090000px;}
.y24{bottom:220.350000px;}
.y3e{bottom:223.950000px;}
.y2f{bottom:229.350000px;}
.y108{bottom:236.910000px;}
.ya4{bottom:237.990000px;}
.y78{bottom:238.890000px;}
.y23{bottom:240.330000px;}
.y3d{bottom:243.930000px;}
.y2e{bottom:249.150000px;}
.y107{bottom:256.890000px;}
.ya3{bottom:257.790000px;}
.yc7{bottom:258.690000px;}
.y22{bottom:260.130000px;}
.y77{bottom:267.690000px;}
.y2d{bottom:268.950000px;}
.yf2{bottom:272.730000px;}
.y106{bottom:276.690000px;}
.ya2{bottom:277.590000px;}
.yc6{bottom:278.490000px;}
.y21{bottom:279.930000px;}
.y76{bottom:287.490000px;}
.yf1{bottom:293.250000px;}
.y105{bottom:296.490000px;}
.yc5{bottom:298.470000px;}
.y20{bottom:299.730000px;}
.ya1{bottom:304.950000px;}
.y75{bottom:307.290000px;}
.yf0{bottom:313.770000px;}
.y104{bottom:316.290000px;}
.yc4{bottom:318.270000px;}
.y1f{bottom:319.530000px;}
.ya0{bottom:324.750000px;}
.y74{bottom:327.090000px;}
.yef{bottom:334.470000px;}
.y103{bottom:336.090000px;}
.yc3{bottom:338.070000px;}
.y1e{bottom:339.330000px;}
.y9f{bottom:344.730000px;}
.y73{bottom:347.070000px;}
.yee{bottom:354.990000px;}
.y102{bottom:356.070000px;}
.y1d{bottom:359.310000px;}
.y9e{bottom:364.530000px;}
.y72{bottom:366.870000px;}
.yed{bottom:375.690000px;}
.y101{bottom:375.870000px;}
.y1c{bottom:379.110000px;}
.y9d{bottom:384.330000px;}
.y71{bottom:386.670000px;}
.y100{bottom:395.670000px;}
.yeb{bottom:396.210000px;}
.y1b{bottom:398.910000px;}
.y9c{bottom:404.175000px;}
.y70{bottom:406.515000px;}
.yc2{bottom:406.695000px;}
.yff{bottom:415.515000px;}
.y1a{bottom:418.755000px;}
.yea{bottom:422.715000px;}
.y6f{bottom:426.315000px;}
.y9b{bottom:431.535000px;}
.yfe{bottom:435.315000px;}
.yc1{bottom:435.495000px;}
.y19{bottom:438.555000px;}
.ye9{bottom:442.515000px;}
.yc0{bottom:445.575000px;}
.y6e{bottom:446.295000px;}
.y9a{bottom:451.335000px;}
.yfd{bottom:455.295000px;}
.y18{bottom:458.535000px;}
.y6d{bottom:466.095000px;}
.y99{bottom:471.315000px;}
.yfc{bottom:475.095000px;}
.y17{bottom:478.335000px;}
.ybf{bottom:485.175000px;}
.y6c{bottom:485.895000px;}
.y98{bottom:491.115000px;}
.yfb{bottom:494.895000px;}
.y16{bottom:498.135000px;}
.ybe{bottom:504.975000px;}
.y97{bottom:510.915000px;}
.y6b{bottom:514.695000px;}
.y15{bottom:517.935000px;}
.ye8{bottom:519.915000px;}
.ybd{bottom:528.015000px;}
.y6a{bottom:534.495000px;}
.y14{bottom:537.735000px;}
.ybc{bottom:538.095000px;}
.y96{bottom:538.275000px;}
.ye7{bottom:539.895000px;}
.y69{bottom:554.475000px;}
.y13{bottom:557.715000px;}
.y95{bottom:558.075000px;}
.ye6{bottom:559.695000px;}
.y68{bottom:574.275000px;}
.ybb{bottom:577.155000px;}
.y12{bottom:577.515000px;}
.y94{bottom:577.875000px;}
.ye5{bottom:579.495000px;}
.y67{bottom:594.075000px;}
.y2c{bottom:596.775000px;}
.yba{bottom:596.955000px;}
.y93{bottom:597.675000px;}
.ye4{bottom:599.295000px;}
.y66{bottom:613.875000px;}
.yb9{bottom:616.755000px;}
.y92{bottom:617.655000px;}
.ye3{bottom:619.095000px;}
.y65{bottom:633.675000px;}
.yb8{bottom:636.555000px;}
.y91{bottom:637.455000px;}
.ye2{bottom:639.075000px;}
.y64{bottom:653.685000px;}
.y90{bottom:657.285000px;}
.ye1{bottom:658.905000px;}
.yb7{bottom:662.325000px;}
.yb6{bottom:672.405000px;}
.y63{bottom:673.485000px;}
.ye0{bottom:673.665000px;}
.y8f{bottom:686.085000px;}
.y62{bottom:693.285000px;}
.ydf{bottom:694.185000px;}
.y8e{bottom:705.885000px;}
.yb5{bottom:710.925000px;}
.y61{bottom:713.085000px;}
.yde{bottom:714.885000px;}
.y8d{bottom:725.865000px;}
.yb4{bottom:730.725000px;}
.y60{bottom:732.885000px;}
.ydd{bottom:735.405000px;}
.y8c{bottom:745.665000px;}
.yb3{bottom:750.525000px;}
.y5f{bottom:752.865000px;}
.ydc{bottom:755.925000px;}
.y8b{bottom:765.465000px;}
.y5e{bottom:772.665000px;}
.ydb{bottom:776.625000px;}
.yb2{bottom:779.325000px;}
.yb1{bottom:789.405000px;}
.y5d{bottom:792.465000px;}
.y8a{bottom:794.265000px;}
.yd9{bottom:797.145000px;}
.y5c{bottom:812.265000px;}
.y89{bottom:814.065000px;}
.yb0{bottom:828.285000px;}
.y5b{bottom:832.065000px;}
.y88{bottom:834.045000px;}
.yaf{bottom:848.085000px;}
.y5a{bottom:852.045000px;}
.y87{bottom:853.845000px;}
.y3b{bottom:859.965000px;}
.yd8{bottom:860.685000px;}
.yae{bottom:867.885000px;}
.y59{bottom:871.845000px;}
.y86{bottom:873.645000px;}
.yd7{bottom:887.145000px;}
.y58{bottom:891.645000px;}
.y11{bottom:893.445000px;}
.yad{bottom:893.625000px;}
.yac{bottom:903.750000px;}
.yd6{bottom:906.990000px;}
.y57{bottom:911.490000px;}
.y10{bottom:918.510000px;}
.y85{bottom:922.290000px;}
.yd5{bottom:926.790000px;}
.y56{bottom:931.290000px;}
.yf{bottom:933.630000px;}
.yd4{bottom:941.730000px;}
.y84{bottom:942.270000px;}
.y55{bottom:951.270000px;}
.ye{bottom:954.870000px;}
.y83{bottom:962.070000px;}
.yd3{bottom:962.250000px;}
.y54{bottom:971.070000px;}
.yd{bottom:978.450000px;}
.y82{bottom:981.870000px;}
.ycf{bottom:982.770000px;}
.y53{bottom:990.870000px;}
.y81{bottom:1001.670000px;}
.yc{bottom:1010.130000px;}
.y52{bottom:1010.670000px;}
.y51{bottom:1030.470000px;}
.ya{bottom:1036.050000px;}
.y50{bottom:1050.450000px;}
.y1{bottom:1052.250000px;}
.y4f{bottom:1070.250000px;}
.ycd{bottom:1082.670000px;}
.y4e{bottom:1090.050000px;}
.ycc{bottom:1103.370000px;}
.y4d{bottom:1109.850000px;}
.y4c{bottom:1129.650000px;}
.y4b{bottom:1149.660000px;}
.y4a{bottom:1169.460000px;}
.y49{bottom:1195.740000px;}
.hc{height:19.800000px;}
.h18{height:19.836000px;}
.h15{height:19.980000px;}
.h9{height:27.147656px;}
.h7{height:41.726953px;}
.ha{height:42.164648px;}
.h10{height:43.506914px;}
.h5{height:46.251562px;}
.hf{height:49.255313px;}
.h8{height:53.224453px;}
.h19{height:59.580000px;}
.h17{height:62.820000px;}
.he{height:65.884219px;}
.h6{height:67.565039px;}
.h3{height:73.722656px;}
.h13{height:90.684141px;}
.h12{height:90.864141px;}
.h11{height:96.444141px;}
.h14{height:98.604141px;}
.h16{height:99.180000px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.hd{height:257.970000px;}
.hb{height:282.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:64.260000px;}
.w19{width:77.220000px;}
.w8{width:78.300000px;}
.wc{width:83.880000px;}
.w10{width:84.240000px;}
.w15{width:84.600000px;}
.wd{width:95.256000px;}
.w12{width:95.436000px;}
.wa{width:96.660000px;}
.we{width:126.900000px;}
.w13{width:127.260000px;}
.w2{width:127.656000px;}
.wf{width:137.556000px;}
.w14{width:137.916000px;}
.w4{width:157.170000px;}
.w17{width:169.020000px;}
.w1b{width:175.710000px;}
.w11{width:184.350000px;}
.w16{width:184.710000px;}
.w18{width:219.855000px;}
.w6{width:285.555000px;}
.w1c{width:331.050000px;}
.w1d{width:377.355000px;}
.w9{width:460.725000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.wb{width:715.605000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.x16{left:61.785000px;}
.x1e{left:64.439987px;}
.x17{left:80.999987px;}
.x18{left:88.776000px;}
.x1f{left:92.016000px;}
.xc{left:108.035987px;}
.x7{left:110.385000px;}
.x2{left:115.950000px;}
.x13{left:128.016000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x19{left:173.550000px;}
.x3{left:181.650000px;}
.x14{left:207.030000px;}
.xb{left:242.309987px;}
.x20{left:261.750000px;}
.x11{left:266.474987px;}
.x1a{left:269.175000px;}
.xf{left:336.314987px;}
.xa{left:342.795000px;}
.xd{left:352.334987px;}
.x10{left:374.834987px;}
.x1b{left:396.795000px;}
.xe{left:401.294987px;}
.x24{left:423.795000px;}
.x12{left:433.154987px;}
.x21{left:482.325000px;}
.x1c{left:535.065000px;}
.x22{left:560.445000px;}
.x1d{left:620.025000px;}
.x23{left:625.425000px;}
.x25{left:654.809987px;}
.x15{left:668.490000px;}
.x9{left:681.450000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:36.000000pt;}
.v3{vertical-align:40.960000pt;}
.v5{vertical-align:42.880000pt;}
.ls1d{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.089600pt;}
.lsb{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.287467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.325120pt;}
.ls9{letter-spacing:0.337707pt;}
.ls20{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.456533pt;}
.ls22{letter-spacing:0.480000pt;}
.ls10{letter-spacing:1.417600pt;}
.ls11{letter-spacing:12.515200pt;}
.ls21{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls18{letter-spacing:41.072640pt;}
.ls17{letter-spacing:44.272640pt;}
.lsf{letter-spacing:59.519360pt;}
.ls2{letter-spacing:88.960000pt;}
.ls1e{letter-spacing:133.840640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.049067pt;}
.wsb{word-spacing:-11.697920pt;}
.wsf{word-spacing:-11.686400pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:3.821120pt;}
.wsa{word-spacing:3.982080pt;}
.wse{word-spacing:5.052160pt;}
.wsc{word-spacing:5.742720pt;}
._1e{margin-left:-5.316053pt;}
._13{margin-left:-4.113067pt;}
._9{margin-left:-3.134080pt;}
._a{margin-left:-2.129920pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._6{width:2.815360pt;}
._5{width:4.154880pt;}
._b{width:5.046400pt;}
._7{width:6.161920pt;}
._8{width:7.656107pt;}
._10{width:9.386027pt;}
._12{width:10.418133pt;}
._22{width:12.080853pt;}
._17{width:13.123413pt;}
._11{width:14.215040pt;}
._f{width:15.664640pt;}
._d{width:17.048960pt;}
._e{width:17.966507pt;}
._21{width:19.466453pt;}
._14{width:26.239360pt;}
._16{width:35.839360pt;}
._15{width:38.133760pt;}
._4{width:45.304320pt;}
._3{width:46.560640pt;}
._1f{width:83.809920pt;}
._c{width:88.813867pt;}
._1c{width:100.655360pt;}
._1b{width:113.840640pt;}
._19{width:140.495360pt;}
._1d{width:150.688000pt;}
._20{width:156.448000pt;}
._1a{width:178.698667pt;}
._18{width:203.576960pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y3c{bottom:5.120000pt;}
.yec{bottom:5.160000pt;}
.yce{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y3a{bottom:9.760000pt;}
.y48{bottom:22.720000pt;}
.yd2{bottom:22.880000pt;}
.yda{bottom:24.320000pt;}
.y39{bottom:27.520000pt;}
.y6{bottom:32.000000pt;}
.y47{bottom:40.480000pt;}
.y38{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.yd1{bottom:58.080000pt;}
.y46{bottom:58.106667pt;}
.y37{bottom:62.746667pt;}
.y110{bottom:69.600000pt;}
.yfa{bottom:69.920000pt;}
.y80{bottom:71.200000pt;}
.y2b{bottom:72.480000pt;}
.y4{bottom:72.640000pt;}
.yd0{bottom:75.680000pt;}
.y45{bottom:75.706667pt;}
.yab{bottom:80.160000pt;}
.y36{bottom:80.346667pt;}
.y10f{bottom:87.200000pt;}
.yf9{bottom:87.520000pt;}
.y7f{bottom:88.800000pt;}
.ycb{bottom:88.960000pt;}
.y2a{bottom:90.080000pt;}
.y44{bottom:93.306667pt;}
.y9{bottom:96.506667pt;}
.yaa{bottom:97.760000pt;}
.y35{bottom:97.946667pt;}
.y10e{bottom:104.800000pt;}
.y3{bottom:104.986667pt;}
.yf8{bottom:105.120000pt;}
.y7e{bottom:106.400000pt;}
.yca{bottom:106.560000pt;}
.y29{bottom:107.680000pt;}
.y43{bottom:110.906667pt;}
.ya9{bottom:115.360000pt;}
.y34{bottom:115.706667pt;}
.y8{bottom:116.026667pt;}
.y10d{bottom:122.400000pt;}
.yf7{bottom:122.720000pt;}
.y7d{bottom:124.160000pt;}
.y28{bottom:125.440000pt;}
.y42{bottom:128.666667pt;}
.ya8{bottom:132.960000pt;}
.y33{bottom:133.306667pt;}
.y10c{bottom:140.186667pt;}
.yf6{bottom:140.346667pt;}
.y7c{bottom:141.786667pt;}
.y27{bottom:143.066667pt;}
.y41{bottom:146.266667pt;}
.ya7{bottom:150.586667pt;}
.y32{bottom:150.906667pt;}
.y10b{bottom:157.786667pt;}
.yf5{bottom:158.106667pt;}
.y7b{bottom:159.386667pt;}
.y26{bottom:160.666667pt;}
.y40{bottom:163.866667pt;}
.ya6{bottom:168.346667pt;}
.y31{bottom:168.506667pt;}
.y10a{bottom:175.386667pt;}
.yf4{bottom:175.706667pt;}
.y7a{bottom:176.986667pt;}
.yc9{bottom:177.146667pt;}
.y25{bottom:178.266667pt;}
.y3f{bottom:181.466667pt;}
.y30{bottom:186.106667pt;}
.yf3{bottom:188.826667pt;}
.y109{bottom:192.986667pt;}
.ya5{bottom:193.946667pt;}
.y79{bottom:194.586667pt;}
.yc8{bottom:194.746667pt;}
.y24{bottom:195.866667pt;}
.y3e{bottom:199.066667pt;}
.y2f{bottom:203.866667pt;}
.y108{bottom:210.586667pt;}
.ya4{bottom:211.546667pt;}
.y78{bottom:212.346667pt;}
.y23{bottom:213.626667pt;}
.y3d{bottom:216.826667pt;}
.y2e{bottom:221.466667pt;}
.y107{bottom:228.346667pt;}
.ya3{bottom:229.146667pt;}
.yc7{bottom:229.946667pt;}
.y22{bottom:231.226667pt;}
.y77{bottom:237.946667pt;}
.y2d{bottom:239.066667pt;}
.yf2{bottom:242.426667pt;}
.y106{bottom:245.946667pt;}
.ya2{bottom:246.746667pt;}
.yc6{bottom:247.546667pt;}
.y21{bottom:248.826667pt;}
.y76{bottom:255.546667pt;}
.yf1{bottom:260.666667pt;}
.y105{bottom:263.546667pt;}
.yc5{bottom:265.306667pt;}
.y20{bottom:266.426667pt;}
.ya1{bottom:271.066667pt;}
.y75{bottom:273.146667pt;}
.yf0{bottom:278.906667pt;}
.y104{bottom:281.146667pt;}
.yc4{bottom:282.906667pt;}
.y1f{bottom:284.026667pt;}
.ya0{bottom:288.666667pt;}
.y74{bottom:290.746667pt;}
.yef{bottom:297.306667pt;}
.y103{bottom:298.746667pt;}
.yc3{bottom:300.506667pt;}
.y1e{bottom:301.626667pt;}
.y9f{bottom:306.426667pt;}
.y73{bottom:308.506667pt;}
.yee{bottom:315.546667pt;}
.y102{bottom:316.506667pt;}
.y1d{bottom:319.386667pt;}
.y9e{bottom:324.026667pt;}
.y72{bottom:326.106667pt;}
.yed{bottom:333.946667pt;}
.y101{bottom:334.106667pt;}
.y1c{bottom:336.986667pt;}
.y9d{bottom:341.626667pt;}
.y71{bottom:343.706667pt;}
.y100{bottom:351.706667pt;}
.yeb{bottom:352.186667pt;}
.y1b{bottom:354.586667pt;}
.y9c{bottom:359.266667pt;}
.y70{bottom:361.346667pt;}
.yc2{bottom:361.506667pt;}
.yff{bottom:369.346667pt;}
.y1a{bottom:372.226667pt;}
.yea{bottom:375.746667pt;}
.y6f{bottom:378.946667pt;}
.y9b{bottom:383.586667pt;}
.yfe{bottom:386.946667pt;}
.yc1{bottom:387.106667pt;}
.y19{bottom:389.826667pt;}
.ye9{bottom:393.346667pt;}
.yc0{bottom:396.066667pt;}
.y6e{bottom:396.706667pt;}
.y9a{bottom:401.186667pt;}
.yfd{bottom:404.706667pt;}
.y18{bottom:407.586667pt;}
.y6d{bottom:414.306667pt;}
.y99{bottom:418.946667pt;}
.yfc{bottom:422.306667pt;}
.y17{bottom:425.186667pt;}
.ybf{bottom:431.266667pt;}
.y6c{bottom:431.906667pt;}
.y98{bottom:436.546667pt;}
.yfb{bottom:439.906667pt;}
.y16{bottom:442.786667pt;}
.ybe{bottom:448.866667pt;}
.y97{bottom:454.146667pt;}
.y6b{bottom:457.506667pt;}
.y15{bottom:460.386667pt;}
.ye8{bottom:462.146667pt;}
.ybd{bottom:469.346667pt;}
.y6a{bottom:475.106667pt;}
.y14{bottom:477.986667pt;}
.ybc{bottom:478.306667pt;}
.y96{bottom:478.466667pt;}
.ye7{bottom:479.906667pt;}
.y69{bottom:492.866667pt;}
.y13{bottom:495.746667pt;}
.y95{bottom:496.066667pt;}
.ye6{bottom:497.506667pt;}
.y68{bottom:510.466667pt;}
.ybb{bottom:513.026667pt;}
.y12{bottom:513.346667pt;}
.y94{bottom:513.666667pt;}
.ye5{bottom:515.106667pt;}
.y67{bottom:528.066667pt;}
.y2c{bottom:530.466667pt;}
.yba{bottom:530.626667pt;}
.y93{bottom:531.266667pt;}
.ye4{bottom:532.706667pt;}
.y66{bottom:545.666667pt;}
.yb9{bottom:548.226667pt;}
.y92{bottom:549.026667pt;}
.ye3{bottom:550.306667pt;}
.y65{bottom:563.266667pt;}
.yb8{bottom:565.826667pt;}
.y91{bottom:566.626667pt;}
.ye2{bottom:568.066667pt;}
.y64{bottom:581.053333pt;}
.y90{bottom:584.253333pt;}
.ye1{bottom:585.693333pt;}
.yb7{bottom:588.733333pt;}
.yb6{bottom:597.693333pt;}
.y63{bottom:598.653333pt;}
.ye0{bottom:598.813333pt;}
.y8f{bottom:609.853333pt;}
.y62{bottom:616.253333pt;}
.ydf{bottom:617.053333pt;}
.y8e{bottom:627.453333pt;}
.yb5{bottom:631.933333pt;}
.y61{bottom:633.853333pt;}
.yde{bottom:635.453333pt;}
.y8d{bottom:645.213333pt;}
.yb4{bottom:649.533333pt;}
.y60{bottom:651.453333pt;}
.ydd{bottom:653.693333pt;}
.y8c{bottom:662.813333pt;}
.yb3{bottom:667.133333pt;}
.y5f{bottom:669.213333pt;}
.ydc{bottom:671.933333pt;}
.y8b{bottom:680.413333pt;}
.y5e{bottom:686.813333pt;}
.ydb{bottom:690.333333pt;}
.yb2{bottom:692.733333pt;}
.yb1{bottom:701.693333pt;}
.y5d{bottom:704.413333pt;}
.y8a{bottom:706.013333pt;}
.yd9{bottom:708.573333pt;}
.y5c{bottom:722.013333pt;}
.y89{bottom:723.613333pt;}
.yb0{bottom:736.253333pt;}
.y5b{bottom:739.613333pt;}
.y88{bottom:741.373333pt;}
.yaf{bottom:753.853333pt;}
.y5a{bottom:757.373333pt;}
.y87{bottom:758.973333pt;}
.y3b{bottom:764.413333pt;}
.yd8{bottom:765.053333pt;}
.yae{bottom:771.453333pt;}
.y59{bottom:774.973333pt;}
.y86{bottom:776.573333pt;}
.yd7{bottom:788.573333pt;}
.y58{bottom:792.573333pt;}
.y11{bottom:794.173333pt;}
.yad{bottom:794.333333pt;}
.yac{bottom:803.333333pt;}
.yd6{bottom:806.213333pt;}
.y57{bottom:810.213333pt;}
.y10{bottom:816.453333pt;}
.y85{bottom:819.813333pt;}
.yd5{bottom:823.813333pt;}
.y56{bottom:827.813333pt;}
.yf{bottom:829.893333pt;}
.yd4{bottom:837.093333pt;}
.y84{bottom:837.573333pt;}
.y55{bottom:845.573333pt;}
.ye{bottom:848.773333pt;}
.y83{bottom:855.173333pt;}
.yd3{bottom:855.333333pt;}
.y54{bottom:863.173333pt;}
.yd{bottom:869.733333pt;}
.y82{bottom:872.773333pt;}
.ycf{bottom:873.573333pt;}
.y53{bottom:880.773333pt;}
.y81{bottom:890.373333pt;}
.yc{bottom:897.893333pt;}
.y52{bottom:898.373333pt;}
.y51{bottom:915.973333pt;}
.ya{bottom:920.933333pt;}
.y50{bottom:933.733333pt;}
.y1{bottom:935.333333pt;}
.y4f{bottom:951.333333pt;}
.ycd{bottom:962.373333pt;}
.y4e{bottom:968.933333pt;}
.ycc{bottom:980.773333pt;}
.y4d{bottom:986.533333pt;}
.y4c{bottom:1004.133333pt;}
.y4b{bottom:1021.920000pt;}
.y4a{bottom:1039.520000pt;}
.y49{bottom:1062.880000pt;}
.hc{height:17.600000pt;}
.h18{height:17.632000pt;}
.h15{height:17.760000pt;}
.h9{height:24.131250pt;}
.h7{height:37.090625pt;}
.ha{height:37.479688pt;}
.h10{height:38.672812pt;}
.h5{height:41.112500pt;}
.hf{height:43.782500pt;}
.h8{height:47.310625pt;}
.h19{height:52.960000pt;}
.h17{height:55.840000pt;}
.he{height:58.563750pt;}
.h6{height:60.057813pt;}
.h3{height:65.531250pt;}
.h13{height:80.608125pt;}
.h12{height:80.768125pt;}
.h11{height:85.728125pt;}
.h14{height:87.648125pt;}
.h16{height:88.160000pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.hd{height:229.306667pt;}
.hb{height:251.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:57.120000pt;}
.w19{width:68.640000pt;}
.w8{width:69.600000pt;}
.wc{width:74.560000pt;}
.w10{width:74.880000pt;}
.w15{width:75.200000pt;}
.wd{width:84.672000pt;}
.w12{width:84.832000pt;}
.wa{width:85.920000pt;}
.we{width:112.800000pt;}
.w13{width:113.120000pt;}
.w2{width:113.472000pt;}
.wf{width:122.272000pt;}
.w14{width:122.592000pt;}
.w4{width:139.706667pt;}
.w17{width:150.240000pt;}
.w1b{width:156.186667pt;}
.w11{width:163.866667pt;}
.w16{width:164.186667pt;}
.w18{width:195.426667pt;}
.w6{width:253.826667pt;}
.w1c{width:294.266667pt;}
.w1d{width:335.426667pt;}
.w9{width:409.533333pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.wb{width:636.093333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.x16{left:54.920000pt;}
.x1e{left:57.279988pt;}
.x17{left:71.999988pt;}
.x18{left:78.912000pt;}
.x1f{left:81.792000pt;}
.xc{left:96.031988pt;}
.x7{left:98.120000pt;}
.x2{left:103.066667pt;}
.x13{left:113.792000pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x19{left:154.266667pt;}
.x3{left:161.466667pt;}
.x14{left:184.026667pt;}
.xb{left:215.386655pt;}
.x20{left:232.666667pt;}
.x11{left:236.866655pt;}
.x1a{left:239.266667pt;}
.xf{left:298.946655pt;}
.xa{left:304.706667pt;}
.xd{left:313.186655pt;}
.x10{left:333.186655pt;}
.x1b{left:352.706667pt;}
.xe{left:356.706655pt;}
.x24{left:376.706667pt;}
.x12{left:385.026655pt;}
.x21{left:428.733333pt;}
.x1c{left:475.613333pt;}
.x22{left:498.173333pt;}
.x1d{left:551.133333pt;}
.x23{left:555.933333pt;}
.x25{left:582.053322pt;}
.x15{left:594.213333pt;}
.x9{left:605.733333pt;}
}




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