
    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_5cd3064651f1eefa4e14df4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_ba28de7e7d7907fe5ca51c83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_828c1694190f384785a1ad75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_2266a0dfa1f114b38ade4daf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e23d5af0607bdd7ab76fd418.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d61413e9dd120ce8d224f937.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_8da1046af283dd549de613d3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d8d38abeddc8f3e6e4430cbf.woff2')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_5be9d5f883ddac92bb6ab876.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_ea49acad8c0a5bac75c442e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;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_e289b9ae17f216f13b86ede5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.ls1a{letter-spacing:-0.738000px;}
.ls10{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.lsc{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.lsd{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.269400px;}
.ls17{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.468000px;}
.lsf{letter-spacing:15.066720px;}
.ls13{letter-spacing:34.740000px;}
.ls11{letter-spacing:35.460000px;}
.lse{letter-spacing:44.562720px;}
.ls3{letter-spacing:62.100000px;}
.ls16{letter-spacing:85.860000px;}
.lsb{letter-spacing:639.696000px;}
.lsa{letter-spacing:844.176000px;}
.ls4{letter-spacing:1064.640000px;}
.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;}
}
.ws10{word-spacing:-54.468000px;}
.wsf{word-spacing:-54.270000px;}
.wse{word-spacing:-54.000000px;}
.ws8{word-spacing:-16.269240px;}
.ws2{word-spacing:-15.978240px;}
.wsa{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws16{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.680000px;}
.ws18{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.536000px;}
.wsd{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.140000px;}
.ws1{word-spacing:-13.068000px;}
.ws15{word-spacing:-12.762000px;}
.ws1a{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.329400px;}
.ws5{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.064160px;}
.wsc{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-4.334640px;}
._d{margin-left:-3.107520px;}
._2{margin-left:-2.077680px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._8{width:3.154560px;}
._a{width:4.458960px;}
._c{width:5.557680px;}
._3{width:6.657120px;}
._4{width:7.885920px;}
._b{width:8.987520px;}
._5{width:10.994400px;}
._f{width:12.473040px;}
._7{width:13.796640px;}
._9{width:14.812320px;}
._6{width:16.067280px;}
._10{width:17.197680px;}
._13{width:19.500000px;}
._12{width:21.453840px;}
._11{width:22.708800px;}
._14{width:28.159920px;}
._15{width:35.118000px;}
._17{width:84.126000px;}
._16{width:86.040000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fs9{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:1.260000px;}
.y4c{bottom:1.980000px;}
.yc9{bottom:2.880000px;}
.y186{bottom:3.060000px;}
.y3{bottom:4.320000px;}
.yb5{bottom:5.760000px;}
.yb8{bottom:5.805000px;}
.ycf{bottom:5.940000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.yc7{bottom:10.620000px;}
.y4b{bottom:12.240000px;}
.y1b9{bottom:16.380000px;}
.yc8{bottom:18.360000px;}
.y192{bottom:18.540000px;}
.y18b{bottom:18.585000px;}
.y191{bottom:34.020000px;}
.y18a{bottom:34.065000px;}
.y8{bottom:47.880000px;}
.y190{bottom:49.500000px;}
.y189{bottom:49.545000px;}
.y7{bottom:63.540000px;}
.y188{bottom:65.025000px;}
.y18f{bottom:65.160000px;}
.y6{bottom:87.840000px;}
.y1ba{bottom:99.720000px;}
.y1b8{bottom:101.160000px;}
.y47{bottom:104.220000px;}
.y182{bottom:105.660000px;}
.ye6{bottom:109.080000px;}
.y148{bottom:110.520000px;}
.y111{bottom:111.420000px;}
.yb3{bottom:116.640000px;}
.y46{bottom:121.500000px;}
.y181{bottom:122.940000px;}
.ye5{bottom:126.360000px;}
.y147{bottom:127.620000px;}
.y110{bottom:128.700000px;}
.yb2{bottom:133.740000px;}
.y45{bottom:138.780000px;}
.y180{bottom:140.220000px;}
.ye4{bottom:143.640000px;}
.y146{bottom:144.900000px;}
.y83{bottom:145.260000px;}
.y10f{bottom:145.980000px;}
.yb1{bottom:151.020000px;}
.y1b7{bottom:154.620000px;}
.y44{bottom:156.060000px;}
.y17f{bottom:157.320000px;}
.ye3{bottom:160.920000px;}
.y145{bottom:162.180000px;}
.y82{bottom:162.540000px;}
.y10e{bottom:163.260000px;}
.yb0{bottom:168.300000px;}
.y1b6{bottom:171.900000px;}
.y43{bottom:173.340000px;}
.y17e{bottom:174.600000px;}
.ye2{bottom:178.200000px;}
.y144{bottom:179.460000px;}
.y81{bottom:179.640000px;}
.y10d{bottom:180.540000px;}
.yaf{bottom:185.610000px;}
.y1b5{bottom:189.210000px;}
.y42{bottom:190.470000px;}
.y17d{bottom:191.910000px;}
.ye1{bottom:195.330000px;}
.y143{bottom:196.770000px;}
.y80{bottom:196.950000px;}
.y10c{bottom:197.670000px;}
.yae{bottom:202.890000px;}
.y1b4{bottom:206.310000px;}
.y41{bottom:207.750000px;}
.y17c{bottom:209.190000px;}
.ye0{bottom:212.610000px;}
.y142{bottom:214.050000px;}
.y7f{bottom:214.230000px;}
.y10b{bottom:214.950000px;}
.yad{bottom:220.170000px;}
.y1b3{bottom:223.590000px;}
.y40{bottom:225.030000px;}
.y17b{bottom:226.470000px;}
.ydf{bottom:229.890000px;}
.y141{bottom:231.150000px;}
.y7e{bottom:231.510000px;}
.y10a{bottom:232.230000px;}
.yac{bottom:237.270000px;}
.y1b2{bottom:240.870000px;}
.y3f{bottom:242.310000px;}
.y17a{bottom:243.750000px;}
.yde{bottom:247.170000px;}
.y140{bottom:248.430000px;}
.y7d{bottom:248.790000px;}
.y109{bottom:249.510000px;}
.yab{bottom:254.550000px;}
.y1b1{bottom:258.150000px;}
.y3e{bottom:259.590000px;}
.y179{bottom:260.850000px;}
.ydd{bottom:264.450000px;}
.y13f{bottom:265.710000px;}
.y7c{bottom:266.070000px;}
.y108{bottom:266.790000px;}
.yaa{bottom:271.830000px;}
.y1b0{bottom:275.430000px;}
.y3d{bottom:276.870000px;}
.y178{bottom:278.130000px;}
.ydc{bottom:281.730000px;}
.y13e{bottom:282.990000px;}
.y7b{bottom:283.170000px;}
.y107{bottom:284.070000px;}
.y48{bottom:287.130000px;}
.ya9{bottom:289.110000px;}
.y1af{bottom:292.710000px;}
.y3c{bottom:293.970000px;}
.y177{bottom:295.410000px;}
.ydb{bottom:298.830000px;}
.y13d{bottom:300.270000px;}
.y7a{bottom:300.450000px;}
.y106{bottom:301.170000px;}
.ya8{bottom:306.390000px;}
.y1ae{bottom:309.810000px;}
.y3b{bottom:311.250000px;}
.y176{bottom:312.690000px;}
.yda{bottom:316.110000px;}
.y13c{bottom:317.550000px;}
.y79{bottom:317.730000px;}
.y105{bottom:318.450000px;}
.ya7{bottom:323.490000px;}
.y1ad{bottom:327.090000px;}
.y3a{bottom:328.530000px;}
.y175{bottom:329.970000px;}
.yd9{bottom:333.390000px;}
.y13b{bottom:334.650000px;}
.y78{bottom:335.010000px;}
.y104{bottom:335.730000px;}
.ya6{bottom:340.770000px;}
.y1ac{bottom:344.370000px;}
.y39{bottom:345.810000px;}
.y174{bottom:347.250000px;}
.yd8{bottom:350.670000px;}
.y13a{bottom:351.930000px;}
.y77{bottom:352.290000px;}
.y103{bottom:353.010000px;}
.ya5{bottom:358.050000px;}
.y1ab{bottom:361.650000px;}
.y38{bottom:363.450000px;}
.y173{bottom:364.350000px;}
.yd7{bottom:367.950000px;}
.y139{bottom:369.210000px;}
.y76{bottom:369.570000px;}
.y102{bottom:370.290000px;}
.ya4{bottom:375.330000px;}
.y37{bottom:377.310000px;}
.y1aa{bottom:378.930000px;}
.y172{bottom:381.630000px;}
.yd6{bottom:385.230000px;}
.y138{bottom:386.490000px;}
.y75{bottom:386.670000px;}
.y101{bottom:387.570000px;}
.y36{bottom:390.990000px;}
.ya3{bottom:392.610000px;}
.y1a9{bottom:396.030000px;}
.y171{bottom:398.910000px;}
.yd5{bottom:402.330000px;}
.y137{bottom:403.770000px;}
.y74{bottom:403.950000px;}
.y100{bottom:404.670000px;}
.y35{bottom:404.850000px;}
.ya2{bottom:409.890000px;}
.y1a8{bottom:413.310000px;}
.y170{bottom:416.190000px;}
.y34{bottom:418.710000px;}
.yd4{bottom:419.610000px;}
.y136{bottom:420.870000px;}
.y73{bottom:421.230000px;}
.yff{bottom:421.950000px;}
.ya1{bottom:427.035000px;}
.y1a7{bottom:430.635000px;}
.y33{bottom:432.435000px;}
.y16f{bottom:433.515000px;}
.yd3{bottom:436.935000px;}
.y135{bottom:438.195000px;}
.yfe{bottom:439.275000px;}
.y72{bottom:443.055000px;}
.ya0{bottom:444.315000px;}
.y32{bottom:446.295000px;}
.y1a6{bottom:447.915000px;}
.y16e{bottom:450.615000px;}
.yd2{bottom:454.215000px;}
.y134{bottom:455.475000px;}
.yfd{bottom:456.555000px;}
.y31{bottom:460.155000px;}
.y9f{bottom:461.595000px;}
.y71{bottom:464.835000px;}
.y1a5{bottom:465.195000px;}
.y16d{bottom:467.895000px;}
.yd1{bottom:471.495000px;}
.y133{bottom:472.755000px;}
.y30{bottom:473.835000px;}
.y9e{bottom:478.875000px;}
.y70{bottom:481.935000px;}
.y1a4{bottom:482.475000px;}
.y16c{bottom:485.175000px;}
.y2f{bottom:487.695000px;}
.yd0{bottom:488.595000px;}
.y132{bottom:490.035000px;}
.yfc{bottom:490.935000px;}
.y9d{bottom:496.155000px;}
.y6f{bottom:499.215000px;}
.y1a3{bottom:499.575000px;}
.y2e{bottom:501.555000px;}
.y16b{bottom:502.455000px;}
.yce{bottom:503.355000px;}
.y131{bottom:507.315000px;}
.yfb{bottom:508.215000px;}
.y9c{bottom:513.435000px;}
.y2d{bottom:515.235000px;}
.y6e{bottom:516.495000px;}
.y1a2{bottom:516.855000px;}
.y16a{bottom:519.735000px;}
.y130{bottom:524.415000px;}
.ycd{bottom:525.495000px;}
.y2c{bottom:529.095000px;}
.y9b{bottom:530.535000px;}
.y6d{bottom:533.775000px;}
.y1a1{bottom:534.135000px;}
.y169{bottom:537.015000px;}
.y12f{bottom:541.695000px;}
.yfa{bottom:542.775000px;}
.y2b{bottom:542.955000px;}
.ycc{bottom:547.455000px;}
.y9a{bottom:547.815000px;}
.y6c{bottom:551.055000px;}
.y1a0{bottom:551.415000px;}
.y168{bottom:554.115000px;}
.y2a{bottom:556.635000px;}
.y12e{bottom:558.975000px;}
.yf9{bottom:560.055000px;}
.y99{bottom:565.095000px;}
.y6b{bottom:568.335000px;}
.y19f{bottom:568.695000px;}
.ycb{bottom:569.415000px;}
.y29{bottom:570.495000px;}
.y167{bottom:571.395000px;}
.y12d{bottom:576.255000px;}
.yf8{bottom:577.335000px;}
.y98{bottom:582.375000px;}
.y28{bottom:584.355000px;}
.y6a{bottom:585.435000px;}
.y19e{bottom:585.975000px;}
.y166{bottom:588.675000px;}
.yca{bottom:591.375000px;}
.y12c{bottom:593.535000px;}
.yf7{bottom:594.435000px;}
.y27{bottom:598.035000px;}
.y97{bottom:599.655000px;}
.y69{bottom:602.715000px;}
.y19d{bottom:603.075000px;}
.y165{bottom:605.955000px;}
.y12b{bottom:610.815000px;}
.yf6{bottom:611.715000px;}
.y26{bottom:611.895000px;}
.yc6{bottom:613.335000px;}
.y96{bottom:616.935000px;}
.y68{bottom:619.995000px;}
.y19c{bottom:620.355000px;}
.y164{bottom:623.235000px;}
.y25{bottom:625.755000px;}
.y12a{bottom:627.915000px;}
.yf5{bottom:628.995000px;}
.y95{bottom:634.035000px;}
.y67{bottom:637.275000px;}
.y19b{bottom:637.635000px;}
.y163{bottom:640.515000px;}
.y24{bottom:642.855000px;}
.yc5{bottom:645.195000px;}
.yf4{bottom:646.275000px;}
.y94{bottom:651.315000px;}
.y66{bottom:654.555000px;}
.y19a{bottom:654.915000px;}
.y162{bottom:657.615000px;}
.y23{bottom:660.135000px;}
.yf3{bottom:663.555000px;}
.y93{bottom:668.625000px;}
.y65{bottom:671.865000px;}
.y199{bottom:672.225000px;}
.y161{bottom:674.925000px;}
.y22{bottom:677.265000px;}
.yf2{bottom:680.865000px;}
.y129{bottom:682.665000px;}
.y92{bottom:685.905000px;}
.y64{bottom:688.965000px;}
.y198{bottom:689.325000px;}
.y160{bottom:692.205000px;}
.y21{bottom:694.545000px;}
.yf1{bottom:697.965000px;}
.yc4{bottom:702.645000px;}
.y91{bottom:703.185000px;}
.y63{bottom:706.245000px;}
.y197{bottom:706.605000px;}
.y15f{bottom:709.485000px;}
.y20{bottom:711.825000px;}
.yf0{bottom:715.245000px;}
.yc3{bottom:719.925000px;}
.y90{bottom:720.285000px;}
.y62{bottom:723.525000px;}
.y196{bottom:723.885000px;}
.y15e{bottom:726.765000px;}
.y1f{bottom:729.105000px;}
.yef{bottom:732.525000px;}
.yc2{bottom:737.025000px;}
.y128{bottom:737.385000px;}
.y8f{bottom:737.565000px;}
.y61{bottom:740.805000px;}
.y195{bottom:741.165000px;}
.y15d{bottom:744.045000px;}
.y1e{bottom:746.385000px;}
.yee{bottom:749.805000px;}
.yc1{bottom:754.305000px;}
.y127{bottom:754.665000px;}
.y8e{bottom:754.845000px;}
.y60{bottom:758.085000px;}
.y194{bottom:758.445000px;}
.y15c{bottom:761.145000px;}
.y1d{bottom:763.665000px;}
.yed{bottom:767.085000px;}
.yc0{bottom:771.585000px;}
.y126{bottom:771.765000px;}
.y8d{bottom:772.125000px;}
.y5f{bottom:775.365000px;}
.y193{bottom:775.725000px;}
.y15b{bottom:778.425000px;}
.y1c{bottom:780.765000px;}
.yec{bottom:784.365000px;}
.ybf{bottom:788.865000px;}
.y125{bottom:789.045000px;}
.y8c{bottom:789.405000px;}
.y18e{bottom:789.585000px;}
.y5e{bottom:792.465000px;}
.y15a{bottom:795.705000px;}
.y1b{bottom:798.045000px;}
.yeb{bottom:801.465000px;}
.ybe{bottom:806.145000px;}
.y124{bottom:806.325000px;}
.y8b{bottom:806.685000px;}
.y5d{bottom:809.745000px;}
.y1a{bottom:815.325000px;}
.yea{bottom:818.745000px;}
.ybd{bottom:823.425000px;}
.y123{bottom:823.605000px;}
.y8a{bottom:824.325000px;}
.y5c{bottom:827.025000px;}
.y19{bottom:832.605000px;}
.ye9{bottom:836.025000px;}
.y89{bottom:839.805000px;}
.ybc{bottom:840.525000px;}
.y122{bottom:840.885000px;}
.y5b{bottom:844.305000px;}
.y88{bottom:847.365000px;}
.y18{bottom:849.885000px;}
.y159{bottom:850.245000px;}
.ye8{bottom:853.305000px;}
.ybb{bottom:857.805000px;}
.y121{bottom:857.985000px;}
.y5a{bottom:861.585000px;}
.y17{bottom:866.985000px;}
.y18d{bottom:867.345000px;}
.y87{bottom:869.145000px;}
.ye7{bottom:870.585000px;}
.yba{bottom:875.085000px;}
.y120{bottom:875.265000px;}
.y59{bottom:878.685000px;}
.y18c{bottom:882.825000px;}
.y16{bottom:884.265000px;}
.y86{bottom:887.685000px;}
.yb9{bottom:892.365000px;}
.y11f{bottom:892.545000px;}
.y58{bottom:895.965000px;}
.y187{bottom:898.305000px;}
.y15{bottom:901.545000px;}
.y85{bottom:904.965000px;}
.y158{bottom:905.145000px;}
.yb7{bottom:907.125000px;}
.y11e{bottom:909.870000px;}
.y57{bottom:917.790000px;}
.y14{bottom:918.870000px;}
.y84{bottom:922.290000px;}
.y157{bottom:922.470000px;}
.y11d{bottom:927.150000px;}
.yb6{bottom:929.130000px;}
.y56{bottom:939.570000px;}
.y156{bottom:939.750000px;}
.y11c{bottom:944.430000px;}
.yb4{bottom:951.090000px;}
.y13{bottom:953.430000px;}
.y55{bottom:956.850000px;}
.y155{bottom:957.030000px;}
.y11b{bottom:961.530000px;}
.y12{bottom:971.250000px;}
.y54{bottom:974.130000px;}
.y154{bottom:974.310000px;}
.y185{bottom:975.930000px;}
.y11a{bottom:978.810000px;}
.y53{bottom:991.230000px;}
.y153{bottom:991.410000px;}
.y11{bottom:991.950000px;}
.y184{bottom:994.470000px;}
.y119{bottom:996.090000px;}
.y52{bottom:1008.510000px;}
.y152{bottom:1008.690000px;}
.y183{bottom:1009.950000px;}
.y10{bottom:1012.650000px;}
.y118{bottom:1013.730000px;}
.y51{bottom:1025.790000px;}
.y151{bottom:1025.970000px;}
.y117{bottom:1032.270000px;}
.yf{bottom:1033.350000px;}
.y50{bottom:1043.070000px;}
.y150{bottom:1043.250000px;}
.y116{bottom:1050.090000px;}
.ye{bottom:1054.050000px;}
.y4f{bottom:1060.350000px;}
.y14f{bottom:1060.530000px;}
.y115{bottom:1068.630000px;}
.y4e{bottom:1077.630000px;}
.y14e{bottom:1077.810000px;}
.y114{bottom:1085.730000px;}
.yd{bottom:1094.730000px;}
.y14d{bottom:1094.910000px;}
.y113{bottom:1103.010000px;}
.yc{bottom:1112.010000px;}
.y14c{bottom:1112.190000px;}
.y112{bottom:1124.790000px;}
.yb{bottom:1129.290000px;}
.y14b{bottom:1129.470000px;}
.ya{bottom:1146.570000px;}
.y14a{bottom:1146.750000px;}
.y9{bottom:1163.880000px;}
.y149{bottom:1164.060000px;}
.y4d{bottom:1187.820000px;}
.y5{bottom:1188.000000px;}
.y4a{bottom:1199.880000px;}
.y1{bottom:1200.060000px;}
.h28{height:5.653125px;}
.h24{height:15.480000px;}
.h21{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h15{height:20.520000px;}
.h1d{height:21.060000px;}
.h1a{height:21.240000px;}
.h1b{height:21.276000px;}
.h8{height:21.600000px;}
.h5{height:27.210938px;}
.h16{height:27.228516px;}
.h1e{height:30.960000px;}
.h3{height:31.585078px;}
.h12{height:33.824531px;}
.h26{height:34.740000px;}
.h10{height:39.760312px;}
.h11{height:47.321367px;}
.h6{height:47.344922px;}
.h27{height:48.616875px;}
.h9{height:50.068125px;}
.h22{height:52.971680px;}
.h4{height:52.998047px;}
.h1c{height:53.332031px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.he{height:60.226875px;}
.h20{height:61.423863px;}
.hd{height:62.261719px;}
.h18{height:64.560938px;}
.h17{height:65.010937px;}
.ha{height:65.884219px;}
.h1f{height:66.757500px;}
.h13{height:68.400000px;}
.hc{height:72.562500px;}
.h23{height:77.616000px;}
.h25{height:77.760000px;}
.h19{height:88.891172px;}
.h14{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.wd{width:66.060000px;}
.w14{width:71.856000px;}
.w13{width:76.320000px;}
.w16{width:84.096000px;}
.w19{width:84.960000px;}
.we{width:85.320000px;}
.w17{width:87.660000px;}
.wf{width:90.396000px;}
.w15{width:106.560000px;}
.w3{width:157.350000px;}
.w10{width:207.390000px;}
.w11{width:226.830000px;}
.w8{width:228.990000px;}
.w12{width:248.610000px;}
.w4{width:253.110000px;}
.w2{width:269.850000px;}
.wa{width:434.415000px;}
.w1a{width:595.545000px;}
.wc{width:678.885000px;}
.wb{width:680.325000px;}
.w18{width:682.485000px;}
.w6{width:691.125000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:1.980000px;}
.x40{left:5.220000px;}
.x2{left:8.100000px;}
.x1a{left:9.360000px;}
.x31{left:14.220000px;}
.x23{left:15.300000px;}
.x27{left:20.340000px;}
.x32{left:27.000000px;}
.x2b{left:29.520000px;}
.x35{left:33.840000px;}
.x4{left:36.180000px;}
.x25{left:38.160000px;}
.x2a{left:44.100000px;}
.x37{left:45.900000px;}
.x6{left:50.040000px;}
.x28{left:52.560000px;}
.x3b{left:55.074000px;}
.x2c{left:59.265000px;}
.x36{left:68.400000px;}
.x3e{left:74.334000px;}
.x17{left:102.636000px;}
.x18{left:104.256000px;}
.x1{left:106.416000px;}
.x1c{left:110.340000px;}
.x3d{left:114.516000px;}
.xc{left:121.175987px;}
.x9{left:126.215987px;}
.x16{left:127.655987px;}
.x39{left:133.235987px;}
.xb{left:138.635987px;}
.x3a{left:159.869987px;}
.x14{left:162.929987px;}
.x15{left:164.549987px;}
.x24{left:173.910000px;}
.x2d{left:176.070000px;}
.x3f{left:199.470000px;}
.x1d{left:246.090000px;}
.xd{left:255.629987px;}
.x26{left:259.950000px;}
.x22{left:293.799000px;}
.x1e{left:330.699000px;}
.x19{left:333.255000px;}
.x8{left:336.099000px;}
.x1f{left:337.539000px;}
.x20{left:350.174987px;}
.x1b{left:354.495000px;}
.x2e{left:356.475000px;}
.x3{left:376.275000px;}
.x38{left:418.574987px;}
.x2f{left:433.515000px;}
.xa{left:446.474987px;}
.xe{left:488.804987px;}
.x21{left:499.964987px;}
.x30{left:506.265000px;}
.x5{left:533.625000px;}
.x29{left:559.185000px;}
.xf{left:596.984987px;}
.x33{left:613.545000px;}
.x13{left:661.244987px;}
.x10{left:671.684987px;}
.x34{left:698.370000px;}
.x11{left:717.989987px;}
.x12{left:721.409987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.ls1a{letter-spacing:-0.656000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.lsc{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.lsd{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.239467pt;}
.ls17{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.416000pt;}
.lsf{letter-spacing:13.392640pt;}
.ls13{letter-spacing:30.880000pt;}
.ls11{letter-spacing:31.520000pt;}
.lse{letter-spacing:39.611307pt;}
.ls3{letter-spacing:55.200000pt;}
.ls16{letter-spacing:76.320000pt;}
.lsb{letter-spacing:568.618667pt;}
.lsa{letter-spacing:750.378667pt;}
.ls4{letter-spacing:946.346667pt;}
.ws10{word-spacing:-48.416000pt;}
.wsf{word-spacing:-48.240000pt;}
.wse{word-spacing:-48.000000pt;}
.ws8{word-spacing:-14.461547pt;}
.ws2{word-spacing:-14.202880pt;}
.wsa{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.160000pt;}
.ws18{word-spacing:-12.112000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.032000pt;}
.wsd{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws1{word-spacing:-11.616000pt;}
.ws15{word-spacing:-11.344000pt;}
.ws1a{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.959467pt;}
.ws5{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws0{word-spacing:-8.945920pt;}
.wsc{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-3.853013pt;}
._d{margin-left:-2.762240pt;}
._2{margin-left:-1.846827pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._8{width:2.804053pt;}
._a{width:3.963520pt;}
._c{width:4.940160pt;}
._3{width:5.917440pt;}
._4{width:7.009707pt;}
._b{width:7.988907pt;}
._5{width:9.772800pt;}
._f{width:11.087147pt;}
._7{width:12.263680pt;}
._9{width:13.166507pt;}
._6{width:14.282027pt;}
._10{width:15.286827pt;}
._13{width:17.333333pt;}
._12{width:19.070080pt;}
._11{width:20.185600pt;}
._14{width:25.031040pt;}
._15{width:31.216000pt;}
._17{width:74.778667pt;}
._16{width:76.480000pt;}
.fs9{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:1.120000pt;}
.y4c{bottom:1.760000pt;}
.yc9{bottom:2.560000pt;}
.y186{bottom:2.720000pt;}
.y3{bottom:3.840000pt;}
.yb5{bottom:5.120000pt;}
.yb8{bottom:5.160000pt;}
.ycf{bottom:5.280000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.yc7{bottom:9.440000pt;}
.y4b{bottom:10.880000pt;}
.y1b9{bottom:14.560000pt;}
.yc8{bottom:16.320000pt;}
.y192{bottom:16.480000pt;}
.y18b{bottom:16.520000pt;}
.y191{bottom:30.240000pt;}
.y18a{bottom:30.280000pt;}
.y8{bottom:42.560000pt;}
.y190{bottom:44.000000pt;}
.y189{bottom:44.040000pt;}
.y7{bottom:56.480000pt;}
.y188{bottom:57.800000pt;}
.y18f{bottom:57.920000pt;}
.y6{bottom:78.080000pt;}
.y1ba{bottom:88.640000pt;}
.y1b8{bottom:89.920000pt;}
.y47{bottom:92.640000pt;}
.y182{bottom:93.920000pt;}
.ye6{bottom:96.960000pt;}
.y148{bottom:98.240000pt;}
.y111{bottom:99.040000pt;}
.yb3{bottom:103.680000pt;}
.y46{bottom:108.000000pt;}
.y181{bottom:109.280000pt;}
.ye5{bottom:112.320000pt;}
.y147{bottom:113.440000pt;}
.y110{bottom:114.400000pt;}
.yb2{bottom:118.880000pt;}
.y45{bottom:123.360000pt;}
.y180{bottom:124.640000pt;}
.ye4{bottom:127.680000pt;}
.y146{bottom:128.800000pt;}
.y83{bottom:129.120000pt;}
.y10f{bottom:129.760000pt;}
.yb1{bottom:134.240000pt;}
.y1b7{bottom:137.440000pt;}
.y44{bottom:138.720000pt;}
.y17f{bottom:139.840000pt;}
.ye3{bottom:143.040000pt;}
.y145{bottom:144.160000pt;}
.y82{bottom:144.480000pt;}
.y10e{bottom:145.120000pt;}
.yb0{bottom:149.600000pt;}
.y1b6{bottom:152.800000pt;}
.y43{bottom:154.080000pt;}
.y17e{bottom:155.200000pt;}
.ye2{bottom:158.400000pt;}
.y144{bottom:159.520000pt;}
.y81{bottom:159.680000pt;}
.y10d{bottom:160.480000pt;}
.yaf{bottom:164.986667pt;}
.y1b5{bottom:168.186667pt;}
.y42{bottom:169.306667pt;}
.y17d{bottom:170.586667pt;}
.ye1{bottom:173.626667pt;}
.y143{bottom:174.906667pt;}
.y80{bottom:175.066667pt;}
.y10c{bottom:175.706667pt;}
.yae{bottom:180.346667pt;}
.y1b4{bottom:183.386667pt;}
.y41{bottom:184.666667pt;}
.y17c{bottom:185.946667pt;}
.ye0{bottom:188.986667pt;}
.y142{bottom:190.266667pt;}
.y7f{bottom:190.426667pt;}
.y10b{bottom:191.066667pt;}
.yad{bottom:195.706667pt;}
.y1b3{bottom:198.746667pt;}
.y40{bottom:200.026667pt;}
.y17b{bottom:201.306667pt;}
.ydf{bottom:204.346667pt;}
.y141{bottom:205.466667pt;}
.y7e{bottom:205.786667pt;}
.y10a{bottom:206.426667pt;}
.yac{bottom:210.906667pt;}
.y1b2{bottom:214.106667pt;}
.y3f{bottom:215.386667pt;}
.y17a{bottom:216.666667pt;}
.yde{bottom:219.706667pt;}
.y140{bottom:220.826667pt;}
.y7d{bottom:221.146667pt;}
.y109{bottom:221.786667pt;}
.yab{bottom:226.266667pt;}
.y1b1{bottom:229.466667pt;}
.y3e{bottom:230.746667pt;}
.y179{bottom:231.866667pt;}
.ydd{bottom:235.066667pt;}
.y13f{bottom:236.186667pt;}
.y7c{bottom:236.506667pt;}
.y108{bottom:237.146667pt;}
.yaa{bottom:241.626667pt;}
.y1b0{bottom:244.826667pt;}
.y3d{bottom:246.106667pt;}
.y178{bottom:247.226667pt;}
.ydc{bottom:250.426667pt;}
.y13e{bottom:251.546667pt;}
.y7b{bottom:251.706667pt;}
.y107{bottom:252.506667pt;}
.y48{bottom:255.226667pt;}
.ya9{bottom:256.986667pt;}
.y1af{bottom:260.186667pt;}
.y3c{bottom:261.306667pt;}
.y177{bottom:262.586667pt;}
.ydb{bottom:265.626667pt;}
.y13d{bottom:266.906667pt;}
.y7a{bottom:267.066667pt;}
.y106{bottom:267.706667pt;}
.ya8{bottom:272.346667pt;}
.y1ae{bottom:275.386667pt;}
.y3b{bottom:276.666667pt;}
.y176{bottom:277.946667pt;}
.yda{bottom:280.986667pt;}
.y13c{bottom:282.266667pt;}
.y79{bottom:282.426667pt;}
.y105{bottom:283.066667pt;}
.ya7{bottom:287.546667pt;}
.y1ad{bottom:290.746667pt;}
.y3a{bottom:292.026667pt;}
.y175{bottom:293.306667pt;}
.yd9{bottom:296.346667pt;}
.y13b{bottom:297.466667pt;}
.y78{bottom:297.786667pt;}
.y104{bottom:298.426667pt;}
.ya6{bottom:302.906667pt;}
.y1ac{bottom:306.106667pt;}
.y39{bottom:307.386667pt;}
.y174{bottom:308.666667pt;}
.yd8{bottom:311.706667pt;}
.y13a{bottom:312.826667pt;}
.y77{bottom:313.146667pt;}
.y103{bottom:313.786667pt;}
.ya5{bottom:318.266667pt;}
.y1ab{bottom:321.466667pt;}
.y38{bottom:323.066667pt;}
.y173{bottom:323.866667pt;}
.yd7{bottom:327.066667pt;}
.y139{bottom:328.186667pt;}
.y76{bottom:328.506667pt;}
.y102{bottom:329.146667pt;}
.ya4{bottom:333.626667pt;}
.y37{bottom:335.386667pt;}
.y1aa{bottom:336.826667pt;}
.y172{bottom:339.226667pt;}
.yd6{bottom:342.426667pt;}
.y138{bottom:343.546667pt;}
.y75{bottom:343.706667pt;}
.y101{bottom:344.506667pt;}
.y36{bottom:347.546667pt;}
.ya3{bottom:348.986667pt;}
.y1a9{bottom:352.026667pt;}
.y171{bottom:354.586667pt;}
.yd5{bottom:357.626667pt;}
.y137{bottom:358.906667pt;}
.y74{bottom:359.066667pt;}
.y100{bottom:359.706667pt;}
.y35{bottom:359.866667pt;}
.ya2{bottom:364.346667pt;}
.y1a8{bottom:367.386667pt;}
.y170{bottom:369.946667pt;}
.y34{bottom:372.186667pt;}
.yd4{bottom:372.986667pt;}
.y136{bottom:374.106667pt;}
.y73{bottom:374.426667pt;}
.yff{bottom:375.066667pt;}
.ya1{bottom:379.586667pt;}
.y1a7{bottom:382.786667pt;}
.y33{bottom:384.386667pt;}
.y16f{bottom:385.346667pt;}
.yd3{bottom:388.386667pt;}
.y135{bottom:389.506667pt;}
.yfe{bottom:390.466667pt;}
.y72{bottom:393.826667pt;}
.ya0{bottom:394.946667pt;}
.y32{bottom:396.706667pt;}
.y1a6{bottom:398.146667pt;}
.y16e{bottom:400.546667pt;}
.yd2{bottom:403.746667pt;}
.y134{bottom:404.866667pt;}
.yfd{bottom:405.826667pt;}
.y31{bottom:409.026667pt;}
.y9f{bottom:410.306667pt;}
.y71{bottom:413.186667pt;}
.y1a5{bottom:413.506667pt;}
.y16d{bottom:415.906667pt;}
.yd1{bottom:419.106667pt;}
.y133{bottom:420.226667pt;}
.y30{bottom:421.186667pt;}
.y9e{bottom:425.666667pt;}
.y70{bottom:428.386667pt;}
.y1a4{bottom:428.866667pt;}
.y16c{bottom:431.266667pt;}
.y2f{bottom:433.506667pt;}
.yd0{bottom:434.306667pt;}
.y132{bottom:435.586667pt;}
.yfc{bottom:436.386667pt;}
.y9d{bottom:441.026667pt;}
.y6f{bottom:443.746667pt;}
.y1a3{bottom:444.066667pt;}
.y2e{bottom:445.826667pt;}
.y16b{bottom:446.626667pt;}
.yce{bottom:447.426667pt;}
.y131{bottom:450.946667pt;}
.yfb{bottom:451.746667pt;}
.y9c{bottom:456.386667pt;}
.y2d{bottom:457.986667pt;}
.y6e{bottom:459.106667pt;}
.y1a2{bottom:459.426667pt;}
.y16a{bottom:461.986667pt;}
.y130{bottom:466.146667pt;}
.ycd{bottom:467.106667pt;}
.y2c{bottom:470.306667pt;}
.y9b{bottom:471.586667pt;}
.y6d{bottom:474.466667pt;}
.y1a1{bottom:474.786667pt;}
.y169{bottom:477.346667pt;}
.y12f{bottom:481.506667pt;}
.yfa{bottom:482.466667pt;}
.y2b{bottom:482.626667pt;}
.ycc{bottom:486.626667pt;}
.y9a{bottom:486.946667pt;}
.y6c{bottom:489.826667pt;}
.y1a0{bottom:490.146667pt;}
.y168{bottom:492.546667pt;}
.y2a{bottom:494.786667pt;}
.y12e{bottom:496.866667pt;}
.yf9{bottom:497.826667pt;}
.y99{bottom:502.306667pt;}
.y6b{bottom:505.186667pt;}
.y19f{bottom:505.506667pt;}
.ycb{bottom:506.146667pt;}
.y29{bottom:507.106667pt;}
.y167{bottom:507.906667pt;}
.y12d{bottom:512.226667pt;}
.yf8{bottom:513.186667pt;}
.y98{bottom:517.666667pt;}
.y28{bottom:519.426667pt;}
.y6a{bottom:520.386667pt;}
.y19e{bottom:520.866667pt;}
.y166{bottom:523.266667pt;}
.yca{bottom:525.666667pt;}
.y12c{bottom:527.586667pt;}
.yf7{bottom:528.386667pt;}
.y27{bottom:531.586667pt;}
.y97{bottom:533.026667pt;}
.y69{bottom:535.746667pt;}
.y19d{bottom:536.066667pt;}
.y165{bottom:538.626667pt;}
.y12b{bottom:542.946667pt;}
.yf6{bottom:543.746667pt;}
.y26{bottom:543.906667pt;}
.yc6{bottom:545.186667pt;}
.y96{bottom:548.386667pt;}
.y68{bottom:551.106667pt;}
.y19c{bottom:551.426667pt;}
.y164{bottom:553.986667pt;}
.y25{bottom:556.226667pt;}
.y12a{bottom:558.146667pt;}
.yf5{bottom:559.106667pt;}
.y95{bottom:563.586667pt;}
.y67{bottom:566.466667pt;}
.y19b{bottom:566.786667pt;}
.y163{bottom:569.346667pt;}
.y24{bottom:571.426667pt;}
.yc5{bottom:573.506667pt;}
.yf4{bottom:574.466667pt;}
.y94{bottom:578.946667pt;}
.y66{bottom:581.826667pt;}
.y19a{bottom:582.146667pt;}
.y162{bottom:584.546667pt;}
.y23{bottom:586.786667pt;}
.yf3{bottom:589.826667pt;}
.y93{bottom:594.333333pt;}
.y65{bottom:597.213333pt;}
.y199{bottom:597.533333pt;}
.y161{bottom:599.933333pt;}
.y22{bottom:602.013333pt;}
.yf2{bottom:605.213333pt;}
.y129{bottom:606.813333pt;}
.y92{bottom:609.693333pt;}
.y64{bottom:612.413333pt;}
.y198{bottom:612.733333pt;}
.y160{bottom:615.293333pt;}
.y21{bottom:617.373333pt;}
.yf1{bottom:620.413333pt;}
.yc4{bottom:624.573333pt;}
.y91{bottom:625.053333pt;}
.y63{bottom:627.773333pt;}
.y197{bottom:628.093333pt;}
.y15f{bottom:630.653333pt;}
.y20{bottom:632.733333pt;}
.yf0{bottom:635.773333pt;}
.yc3{bottom:639.933333pt;}
.y90{bottom:640.253333pt;}
.y62{bottom:643.133333pt;}
.y196{bottom:643.453333pt;}
.y15e{bottom:646.013333pt;}
.y1f{bottom:648.093333pt;}
.yef{bottom:651.133333pt;}
.yc2{bottom:655.133333pt;}
.y128{bottom:655.453333pt;}
.y8f{bottom:655.613333pt;}
.y61{bottom:658.493333pt;}
.y195{bottom:658.813333pt;}
.y15d{bottom:661.373333pt;}
.y1e{bottom:663.453333pt;}
.yee{bottom:666.493333pt;}
.yc1{bottom:670.493333pt;}
.y127{bottom:670.813333pt;}
.y8e{bottom:670.973333pt;}
.y60{bottom:673.853333pt;}
.y194{bottom:674.173333pt;}
.y15c{bottom:676.573333pt;}
.y1d{bottom:678.813333pt;}
.yed{bottom:681.853333pt;}
.yc0{bottom:685.853333pt;}
.y126{bottom:686.013333pt;}
.y8d{bottom:686.333333pt;}
.y5f{bottom:689.213333pt;}
.y193{bottom:689.533333pt;}
.y15b{bottom:691.933333pt;}
.y1c{bottom:694.013333pt;}
.yec{bottom:697.213333pt;}
.ybf{bottom:701.213333pt;}
.y125{bottom:701.373333pt;}
.y8c{bottom:701.693333pt;}
.y18e{bottom:701.853333pt;}
.y5e{bottom:704.413333pt;}
.y15a{bottom:707.293333pt;}
.y1b{bottom:709.373333pt;}
.yeb{bottom:712.413333pt;}
.ybe{bottom:716.573333pt;}
.y124{bottom:716.733333pt;}
.y8b{bottom:717.053333pt;}
.y5d{bottom:719.773333pt;}
.y1a{bottom:724.733333pt;}
.yea{bottom:727.773333pt;}
.ybd{bottom:731.933333pt;}
.y123{bottom:732.093333pt;}
.y8a{bottom:732.733333pt;}
.y5c{bottom:735.133333pt;}
.y19{bottom:740.093333pt;}
.ye9{bottom:743.133333pt;}
.y89{bottom:746.493333pt;}
.ybc{bottom:747.133333pt;}
.y122{bottom:747.453333pt;}
.y5b{bottom:750.493333pt;}
.y88{bottom:753.213333pt;}
.y18{bottom:755.453333pt;}
.y159{bottom:755.773333pt;}
.ye8{bottom:758.493333pt;}
.ybb{bottom:762.493333pt;}
.y121{bottom:762.653333pt;}
.y5a{bottom:765.853333pt;}
.y17{bottom:770.653333pt;}
.y18d{bottom:770.973333pt;}
.y87{bottom:772.573333pt;}
.ye7{bottom:773.853333pt;}
.yba{bottom:777.853333pt;}
.y120{bottom:778.013333pt;}
.y59{bottom:781.053333pt;}
.y18c{bottom:784.733333pt;}
.y16{bottom:786.013333pt;}
.y86{bottom:789.053333pt;}
.yb9{bottom:793.213333pt;}
.y11f{bottom:793.373333pt;}
.y58{bottom:796.413333pt;}
.y187{bottom:798.493333pt;}
.y15{bottom:801.373333pt;}
.y85{bottom:804.413333pt;}
.y158{bottom:804.573333pt;}
.yb7{bottom:806.333333pt;}
.y11e{bottom:808.773333pt;}
.y57{bottom:815.813333pt;}
.y14{bottom:816.773333pt;}
.y84{bottom:819.813333pt;}
.y157{bottom:819.973333pt;}
.y11d{bottom:824.133333pt;}
.yb6{bottom:825.893333pt;}
.y56{bottom:835.173333pt;}
.y156{bottom:835.333333pt;}
.y11c{bottom:839.493333pt;}
.yb4{bottom:845.413333pt;}
.y13{bottom:847.493333pt;}
.y55{bottom:850.533333pt;}
.y155{bottom:850.693333pt;}
.y11b{bottom:854.693333pt;}
.y12{bottom:863.333333pt;}
.y54{bottom:865.893333pt;}
.y154{bottom:866.053333pt;}
.y185{bottom:867.493333pt;}
.y11a{bottom:870.053333pt;}
.y53{bottom:881.093333pt;}
.y153{bottom:881.253333pt;}
.y11{bottom:881.733333pt;}
.y184{bottom:883.973333pt;}
.y119{bottom:885.413333pt;}
.y52{bottom:896.453333pt;}
.y152{bottom:896.613333pt;}
.y183{bottom:897.733333pt;}
.y10{bottom:900.133333pt;}
.y118{bottom:901.093333pt;}
.y51{bottom:911.813333pt;}
.y151{bottom:911.973333pt;}
.y117{bottom:917.573333pt;}
.yf{bottom:918.533333pt;}
.y50{bottom:927.173333pt;}
.y150{bottom:927.333333pt;}
.y116{bottom:933.413333pt;}
.ye{bottom:936.933333pt;}
.y4f{bottom:942.533333pt;}
.y14f{bottom:942.693333pt;}
.y115{bottom:949.893333pt;}
.y4e{bottom:957.893333pt;}
.y14e{bottom:958.053333pt;}
.y114{bottom:965.093333pt;}
.yd{bottom:973.093333pt;}
.y14d{bottom:973.253333pt;}
.y113{bottom:980.453333pt;}
.yc{bottom:988.453333pt;}
.y14c{bottom:988.613333pt;}
.y112{bottom:999.813333pt;}
.yb{bottom:1003.813333pt;}
.y14b{bottom:1003.973333pt;}
.ya{bottom:1019.173333pt;}
.y14a{bottom:1019.333333pt;}
.y9{bottom:1034.560000pt;}
.y149{bottom:1034.720000pt;}
.y4d{bottom:1055.840000pt;}
.y5{bottom:1056.000000pt;}
.y4a{bottom:1066.560000pt;}
.y1{bottom:1066.720000pt;}
.h28{height:5.025000pt;}
.h24{height:13.760000pt;}
.h21{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h15{height:18.240000pt;}
.h1d{height:18.720000pt;}
.h1a{height:18.880000pt;}
.h1b{height:18.912000pt;}
.h8{height:19.200000pt;}
.h5{height:24.187500pt;}
.h16{height:24.203125pt;}
.h1e{height:27.520000pt;}
.h3{height:28.075625pt;}
.h12{height:30.066250pt;}
.h26{height:30.880000pt;}
.h10{height:35.342500pt;}
.h11{height:42.063437pt;}
.h6{height:42.084375pt;}
.h27{height:43.215000pt;}
.h9{height:44.505000pt;}
.h22{height:47.085938pt;}
.h4{height:47.109375pt;}
.h1c{height:47.406250pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.he{height:53.535000pt;}
.h20{height:54.598989pt;}
.hd{height:55.343750pt;}
.h18{height:57.387500pt;}
.h17{height:57.787500pt;}
.ha{height:58.563750pt;}
.h1f{height:59.340000pt;}
.h13{height:60.800000pt;}
.hc{height:64.500000pt;}
.h23{height:68.992000pt;}
.h25{height:69.120000pt;}
.h19{height:79.014375pt;}
.h14{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.wd{width:58.720000pt;}
.w14{width:63.872000pt;}
.w13{width:67.840000pt;}
.w16{width:74.752000pt;}
.w19{width:75.520000pt;}
.we{width:75.840000pt;}
.w17{width:77.920000pt;}
.wf{width:80.352000pt;}
.w15{width:94.720000pt;}
.w3{width:139.866667pt;}
.w10{width:184.346667pt;}
.w11{width:201.626667pt;}
.w8{width:203.546667pt;}
.w12{width:220.986667pt;}
.w4{width:224.986667pt;}
.w2{width:239.866667pt;}
.wa{width:386.146667pt;}
.w1a{width:529.373333pt;}
.wc{width:603.453333pt;}
.wb{width:604.733333pt;}
.w18{width:606.653333pt;}
.w6{width:614.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:1.760000pt;}
.x40{left:4.640000pt;}
.x2{left:7.200000pt;}
.x1a{left:8.320000pt;}
.x31{left:12.640000pt;}
.x23{left:13.600000pt;}
.x27{left:18.080000pt;}
.x32{left:24.000000pt;}
.x2b{left:26.240000pt;}
.x35{left:30.080000pt;}
.x4{left:32.160000pt;}
.x25{left:33.920000pt;}
.x2a{left:39.200000pt;}
.x37{left:40.800000pt;}
.x6{left:44.480000pt;}
.x28{left:46.720000pt;}
.x3b{left:48.954667pt;}
.x2c{left:52.680000pt;}
.x36{left:60.800000pt;}
.x3e{left:66.074667pt;}
.x17{left:91.232000pt;}
.x18{left:92.672000pt;}
.x1{left:94.592000pt;}
.x1c{left:98.080000pt;}
.x3d{left:101.792000pt;}
.xc{left:107.711988pt;}
.x9{left:112.191988pt;}
.x16{left:113.471988pt;}
.x39{left:118.431988pt;}
.xb{left:123.231988pt;}
.x3a{left:142.106655pt;}
.x14{left:144.826655pt;}
.x15{left:146.266655pt;}
.x24{left:154.586667pt;}
.x2d{left:156.506667pt;}
.x3f{left:177.306667pt;}
.x1d{left:218.746667pt;}
.xd{left:227.226655pt;}
.x26{left:231.066667pt;}
.x22{left:261.154667pt;}
.x1e{left:293.954667pt;}
.x19{left:296.226667pt;}
.x8{left:298.754667pt;}
.x1f{left:300.034667pt;}
.x20{left:311.266655pt;}
.x1b{left:315.106667pt;}
.x2e{left:316.866667pt;}
.x3{left:334.466667pt;}
.x38{left:372.066655pt;}
.x2f{left:385.346667pt;}
.xa{left:396.866655pt;}
.xe{left:434.493322pt;}
.x21{left:444.413322pt;}
.x30{left:450.013333pt;}
.x5{left:474.333333pt;}
.x29{left:497.053333pt;}
.xf{left:530.653322pt;}
.x33{left:545.373333pt;}
.x13{left:587.773322pt;}
.x10{left:597.053322pt;}
.x34{left:620.773333pt;}
.x11{left:638.213322pt;}
.x12{left:641.253322pt;}
.x7{left:699.333322pt;}
}




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