
    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_b711c4d702d844119cc016d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.953125;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_e47e8c8e41bacb2e5eb1f4e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9808f18bfd805ba63139ed25.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061035;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_16bd6ba743075eecff894a4a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f41e83992d88dbaf91268f6f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_753e2117b1aa018cfc6a911a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62f782a78669b8fc2966c6b6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e343b826bc5ed911a5c8030.woff2')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_917927b77e5de315e80a3149.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_764b9036435ff26cc836570f.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.230469;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.vd{vertical-align:-68.400000px;}
.vc{vertical-align:-55.440000px;}
.vb{vertical-align:-25.920000px;}
.v1{vertical-align:-12.240000px;}
.v9{vertical-align:-4.320000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.v4{vertical-align:15.840000px;}
.v5{vertical-align:30.240000px;}
.v6{vertical-align:32.400000px;}
.va{vertical-align:38.160000px;}
.v3{vertical-align:47.520000px;}
.v8{vertical-align:65.520000px;}
.lsb{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.182000px;}
.ls26{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.357000px;}
.ls8{letter-spacing:-0.322800px;}
.ls25{letter-spacing:-0.249000px;}
.ls12{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.119520px;}
.lse{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.540000px;}
.ls15{letter-spacing:1.395360px;}
.ls19{letter-spacing:1.740960px;}
.ls1b{letter-spacing:2.226000px;}
.ls17{letter-spacing:2.409120px;}
.ls2a{letter-spacing:2.429280px;}
.ls1f{letter-spacing:3.548160px;}
.ls21{letter-spacing:4.154400px;}
.ls10{letter-spacing:8.586720px;}
.ls1{letter-spacing:9.360000px;}
.ls2b{letter-spacing:9.540000px;}
.lsd{letter-spacing:10.746720px;}
.ls18{letter-spacing:14.079600px;}
.ls22{letter-spacing:14.234400px;}
.ls1c{letter-spacing:15.430800px;}
.ls20{letter-spacing:16.140960px;}
.ls1d{letter-spacing:17.505120px;}
.ls14{letter-spacing:20.542080px;}
.ls5{letter-spacing:20.826720px;}
.ls16{letter-spacing:21.669120px;}
.ls28{letter-spacing:26.909280px;}
.ls2{letter-spacing:30.186720px;}
.ls24{letter-spacing:54.864000px;}
.ls23{letter-spacing:64.026720px;}
.ls2c{letter-spacing:95.940000px;}
.ls29{letter-spacing:96.084000px;}
.ls2d{letter-spacing:203.940000px;}
.ls2e{letter-spacing:690.660000px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws13{word-spacing:-59.760000px;}
.ws7{word-spacing:-54.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws8{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wse{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.647440px;}
.ws0{word-spacing:-14.613240px;}
.ws12{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.788240px;}
.ws6{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.147200px;}
.ws11{word-spacing:-12.898200px;}
.ws15{word-spacing:-12.060000px;}
.wsb{word-spacing:0.000000px;}
._24{margin-left:-9.020880px;}
._26{margin-left:-3.546000px;}
._1{margin-left:-2.544240px;}
._0{margin-left:-1.192320px;}
._4{width:1.624320px;}
._5{width:2.913600px;}
._14{width:3.983760px;}
._1c{width:5.052720px;}
._12{width:6.062640px;}
._c{width:7.140000px;}
._d{width:8.196000px;}
._b{width:9.666000px;}
._6{width:10.692000px;}
._7{width:12.096000px;}
._f{width:13.797360px;}
._2d{width:14.856480px;}
._13{width:16.046640px;}
._8{width:17.226000px;}
._9{width:18.522000px;}
._a{width:19.818000px;}
._1b{width:21.155040px;}
._25{width:22.304160px;}
._1a{width:23.425920px;}
._1f{width:25.099200px;}
._23{width:26.269920px;}
._3{width:27.684000px;}
._1d{width:28.968480px;}
._19{width:30.165120px;}
._21{width:31.294560px;}
._20{width:32.808240px;}
._18{width:33.942000px;}
._17{width:35.023680px;}
._22{width:36.330480px;}
._27{width:37.589040px;}
._29{width:38.713680px;}
._10{width:40.278240px;}
._11{width:42.127680px;}
._16{width:43.282320px;}
._15{width:44.418240px;}
._2c{width:45.474480px;}
._2b{width:47.174160px;}
._28{width:49.660560px;}
._2a{width:52.349760px;}
._e{width:54.943920px;}
._2{width:2855.212800px;}
._1e{width:2856.652800px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.y7{bottom:-14.400000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.060000px;}
.ya{bottom:3.600000px;}
.y54{bottom:19.440000px;}
.y9{bottom:21.060000px;}
.y53{bottom:34.920000px;}
.y56{bottom:35.100000px;}
.y8{bottom:41.940000px;}
.y52{bottom:50.580000px;}
.y4{bottom:57.420000px;}
.y5{bottom:59.940000px;}
.y3{bottom:74.376000px;}
.y3e{bottom:111.996000px;}
.y8e{bottom:118.476000px;}
.y117{bottom:118.836000px;}
.ye6{bottom:125.676000px;}
.y3d{bottom:129.096000px;}
.yba{bottom:132.516000px;}
.y8d{bottom:135.756000px;}
.y116{bottom:136.116000px;}
.ye5{bottom:142.956000px;}
.y50{bottom:145.296000px;}
.y3c{bottom:146.376000px;}
.yb9{bottom:149.616000px;}
.y152{bottom:149.976000px;}
.y8c{bottom:153.030000px;}
.y115{bottom:153.390000px;}
.ye4{bottom:160.230000px;}
.y3b{bottom:163.470000px;}
.y151{bottom:163.830000px;}
.yb8{bottom:166.890000px;}
.y8b{bottom:170.310000px;}
.y4f{bottom:170.670000px;}
.ye3{bottom:177.510000px;}
.y3a{bottom:180.750000px;}
.yb7{bottom:184.170000px;}
.y8a{bottom:187.590000px;}
.y150{bottom:191.370000px;}
.y114{bottom:192.090000px;}
.y4e{bottom:192.810000px;}
.ye2{bottom:194.610000px;}
.y39{bottom:198.030000px;}
.yb6{bottom:201.450000px;}
.y89{bottom:204.870000px;}
.y14f{bottom:205.230000px;}
.y113{bottom:209.190000px;}
.ye1{bottom:211.890000px;}
.y38{bottom:215.310000px;}
.yb5{bottom:218.730000px;}
.y14e{bottom:218.910000px;}
.y88{bottom:221.970000px;}
.y112{bottom:226.470000px;}
.ye0{bottom:229.170000px;}
.y37{bottom:232.590000px;}
.y14d{bottom:232.770000px;}
.yb4{bottom:236.010000px;}
.y87{bottom:239.250000px;}
.y111{bottom:243.570000px;}
.ydf{bottom:246.450000px;}
.y14c{bottom:246.630000px;}
.y36{bottom:249.690000px;}
.yb3{bottom:253.110000px;}
.y86{bottom:256.530000px;}
.y14b{bottom:260.310000px;}
.y110{bottom:260.850000px;}
.yde{bottom:263.730000px;}
.y35{bottom:266.970000px;}
.yb2{bottom:270.390000px;}
.y85{bottom:273.810000px;}
.y14a{bottom:274.170000px;}
.y10f{bottom:278.130000px;}
.ydd{bottom:281.010000px;}
.yb1{bottom:287.670000px;}
.y149{bottom:288.030000px;}
.y84{bottom:291.090000px;}
.y10e{bottom:295.410000px;}
.ydc{bottom:298.110000px;}
.y148{bottom:301.710000px;}
.yb0{bottom:304.950000px;}
.y34{bottom:305.490000px;}
.y83{bottom:308.190000px;}
.y10d{bottom:312.690000px;}
.y147{bottom:315.570000px;}
.ydb{bottom:315.750000px;}
.yaf{bottom:322.230000px;}
.y33{bottom:322.590000px;}
.y82{bottom:325.470000px;}
.y146{bottom:329.430000px;}
.yda{bottom:333.390000px;}
.y10c{bottom:334.650000px;}
.yae{bottom:339.375000px;}
.y32{bottom:339.735000px;}
.y81{bottom:342.795000px;}
.y145{bottom:343.155000px;}
.yd9{bottom:351.075000px;}
.y10b{bottom:354.675000px;}
.yad{bottom:356.655000px;}
.y31{bottom:357.015000px;}
.y80{bottom:360.075000px;}
.y144{bottom:370.875000px;}
.y10a{bottom:371.955000px;}
.yac{bottom:373.935000px;}
.y30{bottom:374.295000px;}
.y7f{bottom:377.355000px;}
.yd8{bottom:383.835000px;}
.y143{bottom:384.555000px;}
.y109{bottom:389.235000px;}
.y2f{bottom:391.575000px;}
.y7e{bottom:394.635000px;}
.yab{bottom:397.155000px;}
.y142{bottom:398.415000px;}
.y108{bottom:406.515000px;}
.y2e{bottom:408.855000px;}
.y7d{bottom:411.735000px;}
.y141{bottom:412.095000px;}
.yd7{bottom:421.815000px;}
.y107{bottom:423.795000px;}
.y140{bottom:425.955000px;}
.y2d{bottom:426.135000px;}
.yaa{bottom:426.315000px;}
.y7c{bottom:429.015000px;}
.yd6{bottom:438.195000px;}
.y13f{bottom:439.815000px;}
.y106{bottom:440.895000px;}
.ya9{bottom:442.875000px;}
.y2c{bottom:443.235000px;}
.y7b{bottom:446.295000px;}
.y4d{bottom:451.155000px;}
.y13e{bottom:453.495000px;}
.yd5{bottom:454.575000px;}
.y105{bottom:458.175000px;}
.y2b{bottom:460.515000px;}
.y7a{bottom:463.575000px;}
.y13d{bottom:467.355000px;}
.yd4{bottom:470.955000px;}
.y4c{bottom:476.535000px;}
.y104{bottom:479.595000px;}
.y79{bottom:480.855000px;}
.y13c{bottom:481.215000px;}
.yd3{bottom:487.335000px;}
.y13b{bottom:494.895000px;}
.y103{bottom:496.875000px;}
.y78{bottom:498.135000px;}
.y4b{bottom:498.495000px;}
.y2a{bottom:499.035000px;}
.yd2{bottom:503.715000px;}
.y13a{bottom:508.755000px;}
.y102{bottom:513.975000px;}
.y77{bottom:515.235000px;}
.y29{bottom:516.135000px;}
.yd1{bottom:520.095000px;}
.y139{bottom:522.615000px;}
.y101{bottom:531.255000px;}
.y76{bottom:532.515000px;}
.y28{bottom:533.235000px;}
.y138{bottom:536.295000px;}
.yd0{bottom:536.475000px;}
.y100{bottom:548.535000px;}
.y75{bottom:549.795000px;}
.y137{bottom:550.155000px;}
.y27{bottom:550.515000px;}
.ycf{bottom:552.855000px;}
.y136{bottom:564.015000px;}
.yff{bottom:565.815000px;}
.y74{bottom:567.075000px;}
.y26{bottom:567.795000px;}
.yce{bottom:569.235000px;}
.yfe{bottom:583.095000px;}
.y73{bottom:584.355000px;}
.y25{bottom:585.075000px;}
.ycd{bottom:585.615000px;}
.y135{bottom:591.555000px;}
.yfd{bottom:600.375000px;}
.y72{bottom:601.635000px;}
.y24{bottom:602.355000px;}
.y134{bottom:605.445000px;}
.ycc{bottom:611.025000px;}
.y71{bottom:618.765000px;}
.y133{bottom:619.125000px;}
.y23{bottom:619.485000px;}
.yfc{bottom:621.825000px;}
.ycb{bottom:627.405000px;}
.y132{bottom:632.985000px;}
.y70{bottom:636.045000px;}
.y22{bottom:636.765000px;}
.yfb{bottom:638.925000px;}
.y131{bottom:646.845000px;}
.yca{bottom:652.785000px;}
.y6f{bottom:653.325000px;}
.y21{bottom:654.045000px;}
.yfa{bottom:656.205000px;}
.y130{bottom:660.525000px;}
.y6e{bottom:670.605000px;}
.y20{bottom:671.325000px;}
.yf9{bottom:673.305000px;}
.y12f{bottom:674.385000px;}
.yc9{bottom:678.165000px;}
.y6d{bottom:687.885000px;}
.y12e{bottom:688.245000px;}
.y1f{bottom:688.605000px;}
.yf8{bottom:690.585000px;}
.yc8{bottom:694.545000px;}
.y12d{bottom:701.925000px;}
.y6c{bottom:704.985000px;}
.y1e{bottom:705.885000px;}
.yf7{bottom:707.865000px;}
.ya8{bottom:711.105000px;}
.y12c{bottom:715.785000px;}
.yc7{bottom:720.105000px;}
.y6b{bottom:722.265000px;}
.y1d{bottom:722.985000px;}
.yf6{bottom:725.145000px;}
.ya7{bottom:728.385000px;}
.y12b{bottom:729.645000px;}
.yc6{bottom:736.485000px;}
.y6a{bottom:739.545000px;}
.y1c{bottom:740.265000px;}
.yf5{bottom:742.425000px;}
.y12a{bottom:743.325000px;}
.ya6{bottom:745.485000px;}
.y4a{bottom:752.865000px;}
.y69{bottom:756.825000px;}
.y129{bottom:757.185000px;}
.y16b{bottom:762.045000px;}
.ya5{bottom:762.765000px;}
.yf4{bottom:763.845000px;}
.y49{bottom:769.245000px;}
.y128{bottom:771.045000px;}
.y68{bottom:774.105000px;}
.y1b{bottom:778.605000px;}
.ya4{bottom:780.045000px;}
.yf3{bottom:780.945000px;}
.y48{bottom:785.625000px;}
.yc5{bottom:785.805000px;}
.y16a{bottom:789.765000px;}
.y67{bottom:791.385000px;}
.ya3{bottom:797.325000px;}
.yf2{bottom:798.225000px;}
.y47{bottom:802.005000px;}
.yc4{bottom:802.905000px;}
.y169{bottom:803.445000px;}
.y66{bottom:808.485000px;}
.y1a{bottom:809.925000px;}
.ya2{bottom:814.605000px;}
.yf1{bottom:815.505000px;}
.y168{bottom:817.305000px;}
.y46{bottom:818.385000px;}
.yc3{bottom:820.185000px;}
.y127{bottom:820.545000px;}
.y19{bottom:825.585000px;}
.y65{bottom:825.765000px;}
.y167{bottom:831.165000px;}
.ya1{bottom:831.885000px;}
.yf0{bottom:832.785000px;}
.y45{bottom:834.945000px;}
.y126{bottom:836.925000px;}
.yc2{bottom:837.825000px;}
.y64{bottom:843.045000px;}
.ya0{bottom:848.985000px;}
.yef{bottom:849.885000px;}
.y44{bottom:851.325000px;}
.y125{bottom:853.305000px;}
.yc1{bottom:855.105000px;}
.y18{bottom:856.005000px;}
.y166{bottom:858.705000px;}
.y63{bottom:860.325000px;}
.y9f{bottom:866.265000px;}
.y124{bottom:869.685000px;}
.y17{bottom:871.710000px;}
.yc0{bottom:872.610000px;}
.y43{bottom:873.870000px;}
.y62{bottom:877.650000px;}
.y9e{bottom:883.590000px;}
.y123{bottom:886.110000px;}
.y165{bottom:886.290000px;}
.y16{bottom:887.190000px;}
.yee{bottom:888.990000px;}
.ybf{bottom:889.890000px;}
.y61{bottom:894.930000px;}
.y9d{bottom:900.870000px;}
.y122{bottom:902.490000px;}
.y15{bottom:902.850000px;}
.ybe{bottom:907.530000px;}
.y60{bottom:912.030000px;}
.y42{bottom:912.210000px;}
.y164{bottom:914.010000px;}
.yed{bottom:915.090000px;}
.y9c{bottom:918.150000px;}
.y14{bottom:918.330000px;}
.y121{bottom:918.870000px;}
.ybd{bottom:924.810000px;}
.y163{bottom:927.690000px;}
.y41{bottom:929.310000px;}
.y13{bottom:933.810000px;}
.y120{bottom:935.250000px;}
.y9b{bottom:935.430000px;}
.ybc{bottom:938.490000px;}
.yec{bottom:940.470000px;}
.y162{bottom:941.550000px;}
.ybb{bottom:946.050000px;}
.y40{bottom:946.590000px;}
.y12{bottom:949.290000px;}
.y11f{bottom:951.630000px;}
.y9a{bottom:952.530000px;}
.y161{bottom:955.410000px;}
.yeb{bottom:956.850000px;}
.y3f{bottom:963.870000px;}
.y11{bottom:964.950000px;}
.y11e{bottom:968.010000px;}
.y160{bottom:969.090000px;}
.y99{bottom:969.810000px;}
.y10{bottom:981.150000px;}
.yea{bottom:982.230000px;}
.y15f{bottom:982.950000px;}
.y11d{bottom:984.570000px;}
.y98{bottom:987.090000px;}
.y15e{bottom:996.810000px;}
.y55{bottom:996.990000px;}
.yf{bottom:998.430000px;}
.ye9{bottom:998.610000px;}
.y11c{bottom:1000.950000px;}
.y51{bottom:1002.210000px;}
.y97{bottom:1004.370000px;}
.y15d{bottom:1010.490000px;}
.ye8{bottom:1014.990000px;}
.y5f{bottom:1015.530000px;}
.y11b{bottom:1017.330000px;}
.ye{bottom:1018.230000px;}
.y96{bottom:1021.650000px;}
.y15c{bottom:1024.350000px;}
.ye7{bottom:1031.370000px;}
.y5e{bottom:1032.810000px;}
.y11a{bottom:1033.710000px;}
.y15b{bottom:1038.030000px;}
.y95{bottom:1038.750000px;}
.y5d{bottom:1050.090000px;}
.y15a{bottom:1051.890000px;}
.y94{bottom:1056.030000px;}
.yd{bottom:1056.750000px;}
.y159{bottom:1065.750000px;}
.y5c{bottom:1067.370000px;}
.y119{bottom:1068.810000px;}
.y93{bottom:1073.310000px;}
.y158{bottom:1079.430000px;}
.y5b{bottom:1084.650000px;}
.y92{bottom:1090.590000px;}
.y118{bottom:1090.770000px;}
.y157{bottom:1093.290000px;}
.yc{bottom:1098.150000px;}
.y5a{bottom:1101.750000px;}
.y91{bottom:1107.870000px;}
.y59{bottom:1119.030000px;}
.y156{bottom:1120.830000px;}
.y90{bottom:1125.150000px;}
.y155{bottom:1134.690000px;}
.y58{bottom:1136.310000px;}
.yb{bottom:1139.580000px;}
.y8f{bottom:1142.280000px;}
.y154{bottom:1148.580000px;}
.y57{bottom:1159.560000px;}
.y153{bottom:1162.260000px;}
.y2{bottom:1176.840000px;}
.y1{bottom:1194.120000px;}
.h5{height:20.556000px;}
.h19{height:33.683203px;}
.h7{height:38.556000px;}
.h17{height:47.321367px;}
.h18{height:47.344922px;}
.h16{height:49.583118px;}
.h4{height:50.364141px;}
.h2{height:51.329531px;}
.h9{height:52.998047px;}
.ha{height:54.421875px;}
.hf{height:58.621992px;}
.h3{height:58.651172px;}
.hd{height:60.226875px;}
.hc{height:61.423863px;}
.he{height:63.180000px;}
.hb{height:70.664062px;}
.h6{height:72.562500px;}
.h15{height:74.004654px;}
.h13{height:85.584023px;}
.h12{height:88.891172px;}
.h14{height:89.904023px;}
.h10{height:102.676641px;}
.h11{height:125.325703px;}
.h8{height:145.125000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:255.810000px;}
.w5{width:276.375000px;}
.w7{width:294.554973px;}
.w3{width:294.734973px;}
.w4{width:303.150000px;}
.w8{width:303.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:11.160000px;}
.x14{left:18.036000px;}
.x18{left:25.200000px;}
.x13{left:33.516000px;}
.x7{left:47.340000px;}
.x1a{left:54.000000px;}
.x15{left:62.496000px;}
.x3{left:66.959987px;}
.x1b{left:76.139987px;}
.x12{left:78.840000px;}
.x4{left:82.439973px;}
.x1c{left:83.879987px;}
.x25{left:88.379987px;}
.x1{left:90.215987px;}
.x17{left:93.960000px;}
.x23{left:115.775987px;}
.x2a{left:120.815987px;}
.x24{left:138.635987px;}
.x5{left:143.135973px;}
.x8{left:151.560000px;}
.x20{left:180.929987px;}
.x2b{left:182.909987px;}
.xc{left:185.069987px;}
.xa{left:199.829987px;}
.x2c{left:204.509987px;}
.x9{left:247.889987px;}
.x22{left:254.009987px;}
.x21{left:287.174987px;}
.x6{left:310.035000px;}
.xb{left:337.934987px;}
.x2{left:446.474987px;}
.xd{left:473.504987px;}
.x1f{left:481.424987px;}
.x10{left:495.104987px;}
.xe{left:497.984987px;}
.x28{left:500.504987px;}
.x29{left:527.504987px;}
.x26{left:544.964987px;}
.x16{left:560.625000px;}
.x27{left:602.744987px;}
.x1d{left:649.904987px;}
.x1e{left:660.749987px;}
.x11{left:817.889987px;}
.xf{left:818.969987px;}
@media print{
.vd{vertical-align:-60.800000pt;}
.vc{vertical-align:-49.280000pt;}
.vb{vertical-align:-23.040000pt;}
.v1{vertical-align:-10.880000pt;}
.v9{vertical-align:-3.840000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.v4{vertical-align:14.080000pt;}
.v5{vertical-align:26.880000pt;}
.v6{vertical-align:28.800000pt;}
.va{vertical-align:33.920000pt;}
.v3{vertical-align:42.240000pt;}
.v8{vertical-align:58.240000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.050667pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.317333pt;}
.ls8{letter-spacing:-0.286933pt;}
.ls25{letter-spacing:-0.221333pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls15{letter-spacing:1.240320pt;}
.ls19{letter-spacing:1.547520pt;}
.ls1b{letter-spacing:1.978667pt;}
.ls17{letter-spacing:2.141440pt;}
.ls2a{letter-spacing:2.159360pt;}
.ls1f{letter-spacing:3.153920pt;}
.ls21{letter-spacing:3.692800pt;}
.ls10{letter-spacing:7.632640pt;}
.ls1{letter-spacing:8.320000pt;}
.ls2b{letter-spacing:8.480000pt;}
.lsd{letter-spacing:9.552640pt;}
.ls18{letter-spacing:12.515200pt;}
.ls22{letter-spacing:12.652800pt;}
.ls1c{letter-spacing:13.716267pt;}
.ls20{letter-spacing:14.347520pt;}
.ls1d{letter-spacing:15.560107pt;}
.ls14{letter-spacing:18.259627pt;}
.ls5{letter-spacing:18.512640pt;}
.ls16{letter-spacing:19.261440pt;}
.ls28{letter-spacing:23.919360pt;}
.ls2{letter-spacing:26.832640pt;}
.ls24{letter-spacing:48.768000pt;}
.ls23{letter-spacing:56.912640pt;}
.ls2c{letter-spacing:85.280000pt;}
.ls29{letter-spacing:85.408000pt;}
.ls2d{letter-spacing:181.280000pt;}
.ls2e{letter-spacing:613.920000pt;}
.ws14{word-spacing:-64.000000pt;}
.ws13{word-spacing:-53.120000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws8{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.096533pt;}
.ws1{word-spacing:-13.019947pt;}
.ws0{word-spacing:-12.989547pt;}
.ws12{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.256213pt;}
.ws6{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.465067pt;}
.ws15{word-spacing:-10.720000pt;}
.wsb{word-spacing:0.000000pt;}
._24{margin-left:-8.018560pt;}
._26{margin-left:-3.152000pt;}
._1{margin-left:-2.261547pt;}
._0{margin-left:-1.059840pt;}
._4{width:1.443840pt;}
._5{width:2.589867pt;}
._14{width:3.541120pt;}
._1c{width:4.491307pt;}
._12{width:5.389013pt;}
._c{width:6.346667pt;}
._d{width:7.285333pt;}
._b{width:8.592000pt;}
._6{width:9.504000pt;}
._7{width:10.752000pt;}
._f{width:12.264320pt;}
._2d{width:13.205760pt;}
._13{width:14.263680pt;}
._8{width:15.312000pt;}
._9{width:16.464000pt;}
._a{width:17.616000pt;}
._1b{width:18.804480pt;}
._25{width:19.825920pt;}
._1a{width:20.823040pt;}
._1f{width:22.310400pt;}
._23{width:23.351040pt;}
._3{width:24.608000pt;}
._1d{width:25.749760pt;}
._19{width:26.813440pt;}
._21{width:27.817387pt;}
._20{width:29.162880pt;}
._18{width:30.170667pt;}
._17{width:31.132160pt;}
._22{width:32.293760pt;}
._27{width:33.412480pt;}
._29{width:34.412160pt;}
._10{width:35.802880pt;}
._11{width:37.446827pt;}
._16{width:38.473173pt;}
._15{width:39.482880pt;}
._2c{width:40.421760pt;}
._2b{width:41.932587pt;}
._28{width:44.142720pt;}
._2a{width:46.533120pt;}
._e{width:48.839040pt;}
._2{width:2537.966933pt;}
._1e{width:2539.246933pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.y7{bottom:-12.800000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.720000pt;}
.ya{bottom:3.200000pt;}
.y54{bottom:17.280000pt;}
.y9{bottom:18.720000pt;}
.y53{bottom:31.040000pt;}
.y56{bottom:31.200000pt;}
.y8{bottom:37.280000pt;}
.y52{bottom:44.960000pt;}
.y4{bottom:51.040000pt;}
.y5{bottom:53.280000pt;}
.y3{bottom:66.112000pt;}
.y3e{bottom:99.552000pt;}
.y8e{bottom:105.312000pt;}
.y117{bottom:105.632000pt;}
.ye6{bottom:111.712000pt;}
.y3d{bottom:114.752000pt;}
.yba{bottom:117.792000pt;}
.y8d{bottom:120.672000pt;}
.y116{bottom:120.992000pt;}
.ye5{bottom:127.072000pt;}
.y50{bottom:129.152000pt;}
.y3c{bottom:130.112000pt;}
.yb9{bottom:132.992000pt;}
.y152{bottom:133.312000pt;}
.y8c{bottom:136.026667pt;}
.y115{bottom:136.346667pt;}
.ye4{bottom:142.426667pt;}
.y3b{bottom:145.306667pt;}
.y151{bottom:145.626667pt;}
.yb8{bottom:148.346667pt;}
.y8b{bottom:151.386667pt;}
.y4f{bottom:151.706667pt;}
.ye3{bottom:157.786667pt;}
.y3a{bottom:160.666667pt;}
.yb7{bottom:163.706667pt;}
.y8a{bottom:166.746667pt;}
.y150{bottom:170.106667pt;}
.y114{bottom:170.746667pt;}
.y4e{bottom:171.386667pt;}
.ye2{bottom:172.986667pt;}
.y39{bottom:176.026667pt;}
.yb6{bottom:179.066667pt;}
.y89{bottom:182.106667pt;}
.y14f{bottom:182.426667pt;}
.y113{bottom:185.946667pt;}
.ye1{bottom:188.346667pt;}
.y38{bottom:191.386667pt;}
.yb5{bottom:194.426667pt;}
.y14e{bottom:194.586667pt;}
.y88{bottom:197.306667pt;}
.y112{bottom:201.306667pt;}
.ye0{bottom:203.706667pt;}
.y37{bottom:206.746667pt;}
.y14d{bottom:206.906667pt;}
.yb4{bottom:209.786667pt;}
.y87{bottom:212.666667pt;}
.y111{bottom:216.506667pt;}
.ydf{bottom:219.066667pt;}
.y14c{bottom:219.226667pt;}
.y36{bottom:221.946667pt;}
.yb3{bottom:224.986667pt;}
.y86{bottom:228.026667pt;}
.y14b{bottom:231.386667pt;}
.y110{bottom:231.866667pt;}
.yde{bottom:234.426667pt;}
.y35{bottom:237.306667pt;}
.yb2{bottom:240.346667pt;}
.y85{bottom:243.386667pt;}
.y14a{bottom:243.706667pt;}
.y10f{bottom:247.226667pt;}
.ydd{bottom:249.786667pt;}
.yb1{bottom:255.706667pt;}
.y149{bottom:256.026667pt;}
.y84{bottom:258.746667pt;}
.y10e{bottom:262.586667pt;}
.ydc{bottom:264.986667pt;}
.y148{bottom:268.186667pt;}
.yb0{bottom:271.066667pt;}
.y34{bottom:271.546667pt;}
.y83{bottom:273.946667pt;}
.y10d{bottom:277.946667pt;}
.y147{bottom:280.506667pt;}
.ydb{bottom:280.666667pt;}
.yaf{bottom:286.426667pt;}
.y33{bottom:286.746667pt;}
.y82{bottom:289.306667pt;}
.y146{bottom:292.826667pt;}
.yda{bottom:296.346667pt;}
.y10c{bottom:297.466667pt;}
.yae{bottom:301.666667pt;}
.y32{bottom:301.986667pt;}
.y81{bottom:304.706667pt;}
.y145{bottom:305.026667pt;}
.yd9{bottom:312.066667pt;}
.y10b{bottom:315.266667pt;}
.yad{bottom:317.026667pt;}
.y31{bottom:317.346667pt;}
.y80{bottom:320.066667pt;}
.y144{bottom:329.666667pt;}
.y10a{bottom:330.626667pt;}
.yac{bottom:332.386667pt;}
.y30{bottom:332.706667pt;}
.y7f{bottom:335.426667pt;}
.yd8{bottom:341.186667pt;}
.y143{bottom:341.826667pt;}
.y109{bottom:345.986667pt;}
.y2f{bottom:348.066667pt;}
.y7e{bottom:350.786667pt;}
.yab{bottom:353.026667pt;}
.y142{bottom:354.146667pt;}
.y108{bottom:361.346667pt;}
.y2e{bottom:363.426667pt;}
.y7d{bottom:365.986667pt;}
.y141{bottom:366.306667pt;}
.yd7{bottom:374.946667pt;}
.y107{bottom:376.706667pt;}
.y140{bottom:378.626667pt;}
.y2d{bottom:378.786667pt;}
.yaa{bottom:378.946667pt;}
.y7c{bottom:381.346667pt;}
.yd6{bottom:389.506667pt;}
.y13f{bottom:390.946667pt;}
.y106{bottom:391.906667pt;}
.ya9{bottom:393.666667pt;}
.y2c{bottom:393.986667pt;}
.y7b{bottom:396.706667pt;}
.y4d{bottom:401.026667pt;}
.y13e{bottom:403.106667pt;}
.yd5{bottom:404.066667pt;}
.y105{bottom:407.266667pt;}
.y2b{bottom:409.346667pt;}
.y7a{bottom:412.066667pt;}
.y13d{bottom:415.426667pt;}
.yd4{bottom:418.626667pt;}
.y4c{bottom:423.586667pt;}
.y104{bottom:426.306667pt;}
.y79{bottom:427.426667pt;}
.y13c{bottom:427.746667pt;}
.yd3{bottom:433.186667pt;}
.y13b{bottom:439.906667pt;}
.y103{bottom:441.666667pt;}
.y78{bottom:442.786667pt;}
.y4b{bottom:443.106667pt;}
.y2a{bottom:443.586667pt;}
.yd2{bottom:447.746667pt;}
.y13a{bottom:452.226667pt;}
.y102{bottom:456.866667pt;}
.y77{bottom:457.986667pt;}
.y29{bottom:458.786667pt;}
.yd1{bottom:462.306667pt;}
.y139{bottom:464.546667pt;}
.y101{bottom:472.226667pt;}
.y76{bottom:473.346667pt;}
.y28{bottom:473.986667pt;}
.y138{bottom:476.706667pt;}
.yd0{bottom:476.866667pt;}
.y100{bottom:487.586667pt;}
.y75{bottom:488.706667pt;}
.y137{bottom:489.026667pt;}
.y27{bottom:489.346667pt;}
.ycf{bottom:491.426667pt;}
.y136{bottom:501.346667pt;}
.yff{bottom:502.946667pt;}
.y74{bottom:504.066667pt;}
.y26{bottom:504.706667pt;}
.yce{bottom:505.986667pt;}
.yfe{bottom:518.306667pt;}
.y73{bottom:519.426667pt;}
.y25{bottom:520.066667pt;}
.ycd{bottom:520.546667pt;}
.y135{bottom:525.826667pt;}
.yfd{bottom:533.666667pt;}
.y72{bottom:534.786667pt;}
.y24{bottom:535.426667pt;}
.y134{bottom:538.173333pt;}
.ycc{bottom:543.133333pt;}
.y71{bottom:550.013333pt;}
.y133{bottom:550.333333pt;}
.y23{bottom:550.653333pt;}
.yfc{bottom:552.733333pt;}
.ycb{bottom:557.693333pt;}
.y132{bottom:562.653333pt;}
.y70{bottom:565.373333pt;}
.y22{bottom:566.013333pt;}
.yfb{bottom:567.933333pt;}
.y131{bottom:574.973333pt;}
.yca{bottom:580.253333pt;}
.y6f{bottom:580.733333pt;}
.y21{bottom:581.373333pt;}
.yfa{bottom:583.293333pt;}
.y130{bottom:587.133333pt;}
.y6e{bottom:596.093333pt;}
.y20{bottom:596.733333pt;}
.yf9{bottom:598.493333pt;}
.y12f{bottom:599.453333pt;}
.yc9{bottom:602.813333pt;}
.y6d{bottom:611.453333pt;}
.y12e{bottom:611.773333pt;}
.y1f{bottom:612.093333pt;}
.yf8{bottom:613.853333pt;}
.yc8{bottom:617.373333pt;}
.y12d{bottom:623.933333pt;}
.y6c{bottom:626.653333pt;}
.y1e{bottom:627.453333pt;}
.yf7{bottom:629.213333pt;}
.ya8{bottom:632.093333pt;}
.y12c{bottom:636.253333pt;}
.yc7{bottom:640.093333pt;}
.y6b{bottom:642.013333pt;}
.y1d{bottom:642.653333pt;}
.yf6{bottom:644.573333pt;}
.ya7{bottom:647.453333pt;}
.y12b{bottom:648.573333pt;}
.yc6{bottom:654.653333pt;}
.y6a{bottom:657.373333pt;}
.y1c{bottom:658.013333pt;}
.yf5{bottom:659.933333pt;}
.y12a{bottom:660.733333pt;}
.ya6{bottom:662.653333pt;}
.y4a{bottom:669.213333pt;}
.y69{bottom:672.733333pt;}
.y129{bottom:673.053333pt;}
.y16b{bottom:677.373333pt;}
.ya5{bottom:678.013333pt;}
.yf4{bottom:678.973333pt;}
.y49{bottom:683.773333pt;}
.y128{bottom:685.373333pt;}
.y68{bottom:688.093333pt;}
.y1b{bottom:692.093333pt;}
.ya4{bottom:693.373333pt;}
.yf3{bottom:694.173333pt;}
.y48{bottom:698.333333pt;}
.yc5{bottom:698.493333pt;}
.y16a{bottom:702.013333pt;}
.y67{bottom:703.453333pt;}
.ya3{bottom:708.733333pt;}
.yf2{bottom:709.533333pt;}
.y47{bottom:712.893333pt;}
.yc4{bottom:713.693333pt;}
.y169{bottom:714.173333pt;}
.y66{bottom:718.653333pt;}
.y1a{bottom:719.933333pt;}
.ya2{bottom:724.093333pt;}
.yf1{bottom:724.893333pt;}
.y168{bottom:726.493333pt;}
.y46{bottom:727.453333pt;}
.yc3{bottom:729.053333pt;}
.y127{bottom:729.373333pt;}
.y19{bottom:733.853333pt;}
.y65{bottom:734.013333pt;}
.y167{bottom:738.813333pt;}
.ya1{bottom:739.453333pt;}
.yf0{bottom:740.253333pt;}
.y45{bottom:742.173333pt;}
.y126{bottom:743.933333pt;}
.yc2{bottom:744.733333pt;}
.y64{bottom:749.373333pt;}
.ya0{bottom:754.653333pt;}
.yef{bottom:755.453333pt;}
.y44{bottom:756.733333pt;}
.y125{bottom:758.493333pt;}
.yc1{bottom:760.093333pt;}
.y18{bottom:760.893333pt;}
.y166{bottom:763.293333pt;}
.y63{bottom:764.733333pt;}
.y9f{bottom:770.013333pt;}
.y124{bottom:773.053333pt;}
.y17{bottom:774.853333pt;}
.yc0{bottom:775.653333pt;}
.y43{bottom:776.773333pt;}
.y62{bottom:780.133333pt;}
.y9e{bottom:785.413333pt;}
.y123{bottom:787.653333pt;}
.y165{bottom:787.813333pt;}
.y16{bottom:788.613333pt;}
.yee{bottom:790.213333pt;}
.ybf{bottom:791.013333pt;}
.y61{bottom:795.493333pt;}
.y9d{bottom:800.773333pt;}
.y122{bottom:802.213333pt;}
.y15{bottom:802.533333pt;}
.ybe{bottom:806.693333pt;}
.y60{bottom:810.693333pt;}
.y42{bottom:810.853333pt;}
.y164{bottom:812.453333pt;}
.yed{bottom:813.413333pt;}
.y9c{bottom:816.133333pt;}
.y14{bottom:816.293333pt;}
.y121{bottom:816.773333pt;}
.ybd{bottom:822.053333pt;}
.y163{bottom:824.613333pt;}
.y41{bottom:826.053333pt;}
.y13{bottom:830.053333pt;}
.y120{bottom:831.333333pt;}
.y9b{bottom:831.493333pt;}
.ybc{bottom:834.213333pt;}
.yec{bottom:835.973333pt;}
.y162{bottom:836.933333pt;}
.ybb{bottom:840.933333pt;}
.y40{bottom:841.413333pt;}
.y12{bottom:843.813333pt;}
.y11f{bottom:845.893333pt;}
.y9a{bottom:846.693333pt;}
.y161{bottom:849.253333pt;}
.yeb{bottom:850.533333pt;}
.y3f{bottom:856.773333pt;}
.y11{bottom:857.733333pt;}
.y11e{bottom:860.453333pt;}
.y160{bottom:861.413333pt;}
.y99{bottom:862.053333pt;}
.y10{bottom:872.133333pt;}
.yea{bottom:873.093333pt;}
.y15f{bottom:873.733333pt;}
.y11d{bottom:875.173333pt;}
.y98{bottom:877.413333pt;}
.y15e{bottom:886.053333pt;}
.y55{bottom:886.213333pt;}
.yf{bottom:887.493333pt;}
.ye9{bottom:887.653333pt;}
.y11c{bottom:889.733333pt;}
.y51{bottom:890.853333pt;}
.y97{bottom:892.773333pt;}
.y15d{bottom:898.213333pt;}
.ye8{bottom:902.213333pt;}
.y5f{bottom:902.693333pt;}
.y11b{bottom:904.293333pt;}
.ye{bottom:905.093333pt;}
.y96{bottom:908.133333pt;}
.y15c{bottom:910.533333pt;}
.ye7{bottom:916.773333pt;}
.y5e{bottom:918.053333pt;}
.y11a{bottom:918.853333pt;}
.y15b{bottom:922.693333pt;}
.y95{bottom:923.333333pt;}
.y5d{bottom:933.413333pt;}
.y15a{bottom:935.013333pt;}
.y94{bottom:938.693333pt;}
.yd{bottom:939.333333pt;}
.y159{bottom:947.333333pt;}
.y5c{bottom:948.773333pt;}
.y119{bottom:950.053333pt;}
.y93{bottom:954.053333pt;}
.y158{bottom:959.493333pt;}
.y5b{bottom:964.133333pt;}
.y92{bottom:969.413333pt;}
.y118{bottom:969.573333pt;}
.y157{bottom:971.813333pt;}
.yc{bottom:976.133333pt;}
.y5a{bottom:979.333333pt;}
.y91{bottom:984.773333pt;}
.y59{bottom:994.693333pt;}
.y156{bottom:996.293333pt;}
.y90{bottom:1000.133333pt;}
.y155{bottom:1008.613333pt;}
.y58{bottom:1010.053333pt;}
.yb{bottom:1012.960000pt;}
.y8f{bottom:1015.360000pt;}
.y154{bottom:1020.960000pt;}
.y57{bottom:1030.720000pt;}
.y153{bottom:1033.120000pt;}
.y2{bottom:1046.080000pt;}
.y1{bottom:1061.440000pt;}
.h5{height:18.272000pt;}
.h19{height:29.940625pt;}
.h7{height:34.272000pt;}
.h17{height:42.063437pt;}
.h18{height:42.084375pt;}
.h16{height:44.073883pt;}
.h4{height:44.768125pt;}
.h2{height:45.626250pt;}
.h9{height:47.109375pt;}
.ha{height:48.375000pt;}
.hf{height:52.108438pt;}
.h3{height:52.134375pt;}
.hd{height:53.535000pt;}
.hc{height:54.598989pt;}
.he{height:56.160000pt;}
.hb{height:62.812500pt;}
.h6{height:64.500000pt;}
.h15{height:65.781915pt;}
.h13{height:76.074687pt;}
.h12{height:79.014375pt;}
.h14{height:79.914687pt;}
.h10{height:91.268125pt;}
.h11{height:111.400625pt;}
.h8{height:129.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:227.386667pt;}
.w5{width:245.666667pt;}
.w7{width:261.826643pt;}
.w3{width:261.986643pt;}
.w4{width:269.466667pt;}
.w8{width:269.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.920000pt;}
.x14{left:16.032000pt;}
.x18{left:22.400000pt;}
.x13{left:29.792000pt;}
.x7{left:42.080000pt;}
.x1a{left:48.000000pt;}
.x15{left:55.552000pt;}
.x3{left:59.519988pt;}
.x1b{left:67.679988pt;}
.x12{left:70.080000pt;}
.x4{left:73.279976pt;}
.x1c{left:74.559988pt;}
.x25{left:78.559988pt;}
.x1{left:80.191988pt;}
.x17{left:83.520000pt;}
.x23{left:102.911988pt;}
.x2a{left:107.391988pt;}
.x24{left:123.231988pt;}
.x5{left:127.231976pt;}
.x8{left:134.720000pt;}
.x20{left:160.826655pt;}
.x2b{left:162.586655pt;}
.xc{left:164.506655pt;}
.xa{left:177.626655pt;}
.x2c{left:181.786655pt;}
.x9{left:220.346655pt;}
.x22{left:225.786655pt;}
.x21{left:255.266655pt;}
.x6{left:275.586667pt;}
.xb{left:300.386655pt;}
.x2{left:396.866655pt;}
.xd{left:420.893322pt;}
.x1f{left:427.933322pt;}
.x10{left:440.093322pt;}
.xe{left:442.653322pt;}
.x28{left:444.893322pt;}
.x29{left:468.893322pt;}
.x26{left:484.413322pt;}
.x16{left:498.333333pt;}
.x27{left:535.773322pt;}
.x1d{left:577.693322pt;}
.x1e{left:587.333322pt;}
.x11{left:727.013322pt;}
.xf{left:727.973322pt;}
}




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