
    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_fbd39ee8152a9c781b660b89.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b153de38633227e27ec88dea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8fd07cc39e02478c927fb9c6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_082781b68ed620dea4a01f65.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f47deb207993537f9262cb6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_38ece5c029819c44595320d1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_08cb3a278e6db4f80686dabf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e8d14785c33a0fd965572c22.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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_aaaddf6891e80a77a6db9b84.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_62ded0b62fc1f37beb70eced.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.fff{font-family:fff;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lse{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.080640px;}
.ls3{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.540000px;}
.ls11{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.075600px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.186000px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._1a{margin-left:-7.888320px;}
._4{margin-left:-6.454080px;}
._a{margin-left:-4.840560px;}
._2{margin-left:-3.449760px;}
._0{margin-left:-2.031840px;}
._3{margin-left:-1.015920px;}
._1{width:1.015920px;}
._5{width:2.463840px;}
._13{width:4.173840px;}
._7{width:5.222160px;}
._6{width:6.806880px;}
._1c{width:7.809840px;}
._e{width:8.813520px;}
._9{width:10.130400px;}
._14{width:11.144160px;}
._16{width:12.643920px;}
._19{width:13.864320px;}
._d{width:16.135200px;}
._10{width:17.293680px;}
._f{width:18.340560px;}
._11{width:19.656000px;}
._12{width:20.975760px;}
._b{width:22.093200px;}
._8{width:24.143040px;}
._c{width:25.278480px;}
._1b{width:26.593200px;}
._18{width:27.668880px;}
._17{width:28.684800px;}
._15{width:35.966880px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.180000px;}
.y1a{bottom:3.240000px;}
.ye6{bottom:3.420000px;}
.y53{bottom:3.780000px;}
.ye{bottom:4.500000px;}
.y52{bottom:6.120000px;}
.y110{bottom:11.025000px;}
.ye0{bottom:11.730000px;}
.yb8{bottom:11.880000px;}
.yfe{bottom:11.910000px;}
.y38{bottom:12.780000px;}
.yc{bottom:13.860000px;}
.y1d{bottom:14.760000px;}
.y3{bottom:18.180000px;}
.y50{bottom:20.340000px;}
.yb9{bottom:20.520000px;}
.yfd{bottom:20.550000px;}
.y19{bottom:24.525000px;}
.y5{bottom:26.280000px;}
.y37{bottom:27.540000px;}
.yb{bottom:30.240000px;}
.y4f{bottom:37.620000px;}
.y4{bottom:37.656000px;}
.ycd{bottom:37.800000px;}
.y2{bottom:38.916000px;}
.y18{bottom:40.905000px;}
.y36{bottom:42.120000px;}
.ya{bottom:46.440000px;}
.y1{bottom:48.780000px;}
.y4e{bottom:54.900000px;}
.y35{bottom:56.700000px;}
.y17{bottom:57.465000px;}
.y34{bottom:71.460000px;}
.y4d{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y16{bottom:73.845000px;}
.y33{bottom:86.040000px;}
.y15{bottom:86.625000px;}
.y4c{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y32{bottom:100.800000px;}
.y14{bottom:103.545000px;}
.y4b{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y9d{bottom:113.976000px;}
.y31{bottom:115.380000px;}
.y104{bottom:118.656000px;}
.y136{bottom:120.456000px;}
.yc5{bottom:123.156000px;}
.y61{bottom:123.516000px;}
.y4a{bottom:123.840000px;}
.y13{bottom:125.505000px;}
.y30{bottom:129.960000px;}
.y9c{bottom:131.256000px;}
.y160{bottom:135.576000px;}
.y103{bottom:135.936000px;}
.yde{bottom:136.296000px;}
.y135{bottom:137.736000px;}
.y12{bottom:139.905000px;}
.yc4{bottom:140.436000px;}
.y60{bottom:140.796000px;}
.y49{bottom:141.120000px;}
.y2f{bottom:144.720000px;}
.y9b{bottom:148.536000px;}
.y15f{bottom:152.850000px;}
.ydd{bottom:153.570000px;}
.y134{bottom:155.010000px;}
.yc3{bottom:157.710000px;}
.y5f{bottom:157.890000px;}
.y48{bottom:158.400000px;}
.y2e{bottom:159.300000px;}
.y102{bottom:164.550000px;}
.y11{bottom:165.645000px;}
.y9a{bottom:165.810000px;}
.y15e{bottom:170.130000px;}
.ydc{bottom:170.850000px;}
.y133{bottom:172.290000px;}
.y2d{bottom:174.060000px;}
.yc2{bottom:174.990000px;}
.y5e{bottom:175.170000px;}
.y47{bottom:175.680000px;}
.y10{bottom:187.065000px;}
.y15d{bottom:187.410000px;}
.y2c{bottom:188.640000px;}
.y132{bottom:189.570000px;}
.yc1{bottom:192.270000px;}
.y5d{bottom:192.450000px;}
.y46{bottom:192.960000px;}
.y99{bottom:194.970000px;}
.ydb{bottom:200.010000px;}
.y2b{bottom:203.220000px;}
.y15c{bottom:204.690000px;}
.y131{bottom:206.670000px;}
.y45{bottom:210.240000px;}
.y98{bottom:212.250000px;}
.yda{bottom:217.290000px;}
.y2a{bottom:217.830000px;}
.yc0{bottom:220.890000px;}
.y5c{bottom:221.610000px;}
.y15b{bottom:221.790000px;}
.y44{bottom:227.370000px;}
.y97{bottom:229.530000px;}
.yd9{bottom:234.570000px;}
.y29{bottom:235.110000px;}
.y130{bottom:236.010000px;}
.y5b{bottom:238.890000px;}
.y15a{bottom:239.070000px;}
.y43{bottom:244.650000px;}
.y96{bottom:246.810000px;}
.yd8{bottom:251.850000px;}
.y28{bottom:252.390000px;}
.y12f{bottom:253.290000px;}
.y5a{bottom:256.170000px;}
.y159{bottom:256.350000px;}
.y42{bottom:261.930000px;}
.y95{bottom:264.090000px;}
.yd7{bottom:268.950000px;}
.y27{bottom:270.210000px;}
.y12e{bottom:270.570000px;}
.y59{bottom:273.450000px;}
.y158{bottom:273.630000px;}
.y41{bottom:279.210000px;}
.y94{bottom:281.370000px;}
.yd6{bottom:286.230000px;}
.y26{bottom:287.490000px;}
.y12d{bottom:287.670000px;}
.y58{bottom:290.730000px;}
.y157{bottom:290.910000px;}
.y40{bottom:296.490000px;}
.y93{bottom:298.470000px;}
.yd5{bottom:303.510000px;}
.y25{bottom:304.950000px;}
.y57{bottom:308.010000px;}
.y156{bottom:308.190000px;}
.y3f{bottom:313.770000px;}
.y92{bottom:315.750000px;}
.yd4{bottom:320.790000px;}
.y12c{bottom:322.230000px;}
.y24{bottom:322.410000px;}
.y56{bottom:325.290000px;}
.y3e{bottom:330.870000px;}
.y91{bottom:333.030000px;}
.yd3{bottom:338.115000px;}
.y23{bottom:339.690000px;}
.y55{bottom:342.435000px;}
.y155{bottom:342.615000px;}
.y3d{bottom:348.150000px;}
.y90{bottom:350.355000px;}
.y12b{bottom:351.435000px;}
.y22{bottom:357.150000px;}
.yd2{bottom:357.915000px;}
.y54{bottom:359.715000px;}
.y154{bottom:359.895000px;}
.y3c{bottom:365.430000px;}
.y8f{bottom:367.635000px;}
.y12a{bottom:368.715000px;}
.y51{bottom:373.755000px;}
.y21{bottom:374.790000px;}
.y153{bottom:377.175000px;}
.yd1{bottom:377.715000px;}
.y3b{bottom:382.710000px;}
.y8e{bottom:384.915000px;}
.y129{bottom:385.995000px;}
.y1e{bottom:391.215000px;}
.y152{bottom:394.455000px;}
.y3a{bottom:399.990000px;}
.y8d{bottom:402.015000px;}
.y20{bottom:402.150000px;}
.y128{bottom:403.275000px;}
.yd0{bottom:406.335000px;}
.y151{bottom:411.555000px;}
.y39{bottom:417.090000px;}
.y8c{bottom:419.295000px;}
.y1f{bottom:419.790000px;}
.y127{bottom:420.555000px;}
.y150{bottom:428.835000px;}
.y8b{bottom:436.575000px;}
.y126{bottom:437.835000px;}
.y14f{bottom:446.115000px;}
.y8a{bottom:453.855000px;}
.y125{bottom:454.935000px;}
.y14e{bottom:463.395000px;}
.y89{bottom:471.135000px;}
.y14d{bottom:480.675000px;}
.y124{bottom:484.275000px;}
.y88{bottom:488.235000px;}
.y14c{bottom:497.955000px;}
.y123{bottom:501.555000px;}
.y87{bottom:505.515000px;}
.y14b{bottom:515.055000px;}
.y122{bottom:518.835000px;}
.y86{bottom:522.795000px;}
.y101{bottom:524.595000px;}
.ybf{bottom:530.175000px;}
.y14a{bottom:532.335000px;}
.y121{bottom:535.935000px;}
.y85{bottom:540.075000px;}
.y100{bottom:540.975000px;}
.y149{bottom:549.615000px;}
.y120{bottom:553.215000px;}
.y84{bottom:557.355000px;}
.ybe{bottom:561.855000px;}
.y148{bottom:569.415000px;}
.y11f{bottom:570.495000px;}
.y83{bottom:574.635000px;}
.yff{bottom:576.255000px;}
.ybd{bottom:576.615000px;}
.y179{bottom:579.855000px;}
.y11e{bottom:587.775000px;}
.y147{bottom:589.215000px;}
.y82{bottom:591.735000px;}
.yfc{bottom:594.255000px;}
.ybc{bottom:594.615000px;}
.y178{bottom:598.215000px;}
.y11d{bottom:605.085000px;}
.y81{bottom:609.045000px;}
.ybb{bottom:612.645000px;}
.y177{bottom:615.885000px;}
.y11c{bottom:622.365000px;}
.y80{bottom:626.325000px;}
.y146{bottom:629.025000px;}
.yfb{bottom:629.565000px;}
.yba{bottom:630.645000px;}
.y176{bottom:633.165000px;}
.y11b{bottom:639.465000px;}
.y7f{bottom:643.605000px;}
.yfa{bottom:647.565000px;}
.yb7{bottom:648.645000px;}
.y145{bottom:648.825000px;}
.y175{bottom:650.265000px;}
.y11a{bottom:656.745000px;}
.y7e{bottom:660.885000px;}
.yf9{bottom:665.565000px;}
.y144{bottom:666.105000px;}
.y174{bottom:667.545000px;}
.y119{bottom:674.025000px;}
.y7d{bottom:678.165000px;}
.y143{bottom:683.385000px;}
.yb6{bottom:683.925000px;}
.y173{bottom:684.825000px;}
.y118{bottom:691.305000px;}
.y7c{bottom:695.265000px;}
.yf8{bottom:700.665000px;}
.yb5{bottom:701.925000px;}
.y172{bottom:702.105000px;}
.y117{bottom:708.585000px;}
.y7b{bottom:712.545000px;}
.y142{bottom:717.765000px;}
.y171{bottom:719.385000px;}
.yb4{bottom:719.925000px;}
.yf7{bottom:721.905000px;}
.y116{bottom:725.865000px;}
.y7a{bottom:729.825000px;}
.y141{bottom:735.045000px;}
.y170{bottom:736.665000px;}
.yb3{bottom:737.925000px;}
.y115{bottom:740.625000px;}
.y79{bottom:747.105000px;}
.yf6{bottom:751.245000px;}
.y140{bottom:752.325000px;}
.y16f{bottom:753.765000px;}
.yb2{bottom:755.925000px;}
.y114{bottom:758.625000px;}
.y78{bottom:764.385000px;}
.yf5{bottom:768.525000px;}
.y13f{bottom:769.605000px;}
.y16e{bottom:771.045000px;}
.yb1{bottom:773.925000px;}
.y113{bottom:776.445000px;}
.y77{bottom:781.665000px;}
.y13e{bottom:786.885000px;}
.y16d{bottom:788.325000px;}
.yb0{bottom:791.925000px;}
.ycf{bottom:794.265000px;}
.y112{bottom:794.445000px;}
.yf4{bottom:797.685000px;}
.y76{bottom:798.765000px;}
.y13d{bottom:803.985000px;}
.y16c{bottom:805.605000px;}
.yce{bottom:809.025000px;}
.yaf{bottom:813.165000px;}
.yf3{bottom:814.965000px;}
.y75{bottom:816.045000px;}
.y13c{bottom:821.265000px;}
.y1b{bottom:822.345000px;}
.y16b{bottom:822.885000px;}
.ycc{bottom:827.025000px;}
.y111{bottom:829.725000px;}
.yf2{bottom:832.245000px;}
.y74{bottom:833.325000px;}
.y13b{bottom:838.545000px;}
.y16a{bottom:839.985000px;}
.yae{bottom:842.325000px;}
.yf1{bottom:849.525000px;}
.y73{bottom:850.605000px;}
.yf{bottom:851.505000px;}
.y13a{bottom:855.825000px;}
.y169{bottom:857.265000px;}
.yad{bottom:859.605000px;}
.y10f{bottom:865.005000px;}
.yf0{bottom:866.805000px;}
.y72{bottom:867.885000px;}
.y139{bottom:873.150000px;}
.y168{bottom:874.590000px;}
.ycb{bottom:879.630000px;}
.yef{bottom:883.950000px;}
.y71{bottom:885.030000px;}
.yac{bottom:888.990000px;}
.y167{bottom:891.870000px;}
.y10e{bottom:898.350000px;}
.yee{bottom:901.230000px;}
.y70{bottom:902.310000px;}
.yab{bottom:906.270000px;}
.y166{bottom:909.150000px;}
.yca{bottom:914.910000px;}
.yed{bottom:918.510000px;}
.y6f{bottom:919.590000px;}
.yaa{bottom:923.550000px;}
.y165{bottom:926.430000px;}
.yec{bottom:935.790000px;}
.y6e{bottom:936.870000px;}
.ya9{bottom:940.650000px;}
.y164{bottom:943.530000px;}
.y10d{bottom:948.750000px;}
.yeb{bottom:953.070000px;}
.y6d{bottom:954.150000px;}
.ya8{bottom:957.930000px;}
.y163{bottom:960.810000px;}
.y10c{bottom:966.030000px;}
.yc9{bottom:967.290000px;}
.yea{bottom:970.350000px;}
.y6c{bottom:971.430000px;}
.ya7{bottom:975.210000px;}
.y162{bottom:978.090000px;}
.y10b{bottom:983.310000px;}
.ye9{bottom:987.450000px;}
.y6b{bottom:988.530000px;}
.ya6{bottom:992.490000px;}
.y161{bottom:995.370000px;}
.y138{bottom:1000.590000px;}
.ye8{bottom:1004.730000px;}
.y6a{bottom:1005.810000px;}
.ya5{bottom:1009.770000px;}
.y10a{bottom:1012.650000px;}
.y137{bottom:1017.870000px;}
.y69{bottom:1023.090000px;}
.ye7{bottom:1023.270000px;}
.ya4{bottom:1027.050000px;}
.y109{bottom:1029.930000px;}
.yc8{bottom:1035.150000px;}
.ye5{bottom:1039.650000px;}
.yd{bottom:1040.010000px;}
.y68{bottom:1040.370000px;}
.ya3{bottom:1044.150000px;}
.y108{bottom:1047.030000px;}
.yc7{bottom:1052.430000px;}
.y67{bottom:1057.650000px;}
.ye4{bottom:1057.830000px;}
.y6{bottom:1060.350000px;}
.ya2{bottom:1061.430000px;}
.y107{bottom:1064.310000px;}
.yc6{bottom:1069.530000px;}
.ye3{bottom:1075.830000px;}
.ya1{bottom:1078.710000px;}
.y106{bottom:1081.590000px;}
.y66{bottom:1086.810000px;}
.ye2{bottom:1093.830000px;}
.ya0{bottom:1097.250000px;}
.y105{bottom:1098.870000px;}
.y65{bottom:1104.090000px;}
.ye1{bottom:1111.830000px;}
.y9f{bottom:1116.150000px;}
.ydf{bottom:1129.830000px;}
.y64{bottom:1133.250000px;}
.y9e{bottom:1133.430000px;}
.y63{bottom:1150.560000px;}
.y62{bottom:1167.840000px;}
.hd{height:4.241250px;}
.h27{height:17.100000px;}
.h20{height:17.280000px;}
.h22{height:17.316000px;}
.h1d{height:17.460000px;}
.hb{height:19.980000px;}
.hf{height:27.000000px;}
.h11{height:28.968750px;}
.h13{height:29.160000px;}
.h29{height:32.616000px;}
.h25{height:34.056000px;}
.h26{height:34.380000px;}
.h28{height:34.416000px;}
.h21{height:34.560000px;}
.h8{height:36.180000px;}
.h1a{height:36.462656px;}
.h12{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h4{height:43.453125px;}
.h1e{height:43.506914px;}
.ha{height:44.820000px;}
.h19{height:45.461953px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h23{height:51.660000px;}
.h24{height:51.876000px;}
.h2{height:53.316000px;}
.h9{height:54.000000px;}
.h10{height:55.291992px;}
.h2b{height:56.900391px;}
.h2a{height:59.439023px;}
.h17{height:61.189805px;}
.he{height:63.180000px;}
.h3{height:64.875938px;}
.h1f{height:65.884219px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:188.490000px;}
.h15{height:431.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w15{width:110.736000px;}
.w17{width:119.916000px;}
.w16{width:121.860000px;}
.wf{width:122.796000px;}
.w12{width:122.976000px;}
.w13{width:123.120000px;}
.w11{width:123.156000px;}
.w10{width:123.480000px;}
.w19{width:126.000000px;}
.we{width:127.296000px;}
.w18{width:128.196000px;}
.w14{width:136.116000px;}
.w5{width:143.856000px;}
.w1e{width:151.950000px;}
.w1b{width:152.130000px;}
.w1a{width:152.670000px;}
.w1d{width:164.550000px;}
.wc{width:185.970000px;}
.wd{width:186.150000px;}
.w9{width:197.310000px;}
.w1f{width:241.770000px;}
.w1c{width:253.470000px;}
.wa{width:546.765000px;}
.wb{width:555.045000px;}
.w6{width:595.905000px;}
.w2{width:673.530000px;}
.w7{width:739.770000px;}
.w8{width:744.090000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.560000px;}
.x2{left:8.640000px;}
.xe{left:23.076000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x2d{left:86.759987px;}
.x5{left:98.130000px;}
.xf{left:108.570000px;}
.x10{left:111.450000px;}
.x14{left:135.035987px;}
.x15{left:185.069987px;}
.x12{left:188.130000px;}
.x29{left:194.249987px;}
.x1c{left:201.270000px;}
.x23{left:210.270000px;}
.x6{left:216.750000px;}
.x2f{left:231.149987px;}
.x1b{left:239.429987px;}
.x16{left:260.130000px;}
.x19{left:263.189987px;}
.x11{left:264.495000px;}
.xd{left:268.275000px;}
.x13{left:270.210000px;}
.x22{left:281.234987px;}
.x9{left:288.975000px;}
.x25{left:321.735000px;}
.x1d{left:324.795000px;}
.x7{left:348.735000px;}
.x8{left:367.995000px;}
.xc{left:371.955000px;}
.x2e{left:379.334987px;}
.x2a{left:413.535000px;}
.x30{left:425.415000px;}
.xb{left:432.975000px;}
.x26{left:444.315000px;}
.x17{left:446.835000px;}
.x1e{left:448.995000px;}
.xa{left:456.240000px;}
.x27{left:564.945000px;}
.x2b{left:566.385000px;}
.x1f{left:572.865000px;}
.x31{left:578.085000px;}
.x18{left:633.705000px;}
.x1a{left:637.844987px;}
.x2c{left:645.584987px;}
.x21{left:673.529987px;}
.x28{left:693.870000px;}
.x20{left:696.750000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lse{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.071680pt;}
.ls3{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.400533pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._1a{margin-left:-7.011840pt;}
._4{margin-left:-5.736960pt;}
._a{margin-left:-4.302720pt;}
._2{margin-left:-3.066453pt;}
._0{margin-left:-1.806080pt;}
._3{margin-left:-0.903040pt;}
._1{width:0.903040pt;}
._5{width:2.190080pt;}
._13{width:3.710080pt;}
._7{width:4.641920pt;}
._6{width:6.050560pt;}
._1c{width:6.942080pt;}
._e{width:7.834240pt;}
._9{width:9.004800pt;}
._14{width:9.905920pt;}
._16{width:11.239040pt;}
._19{width:12.323840pt;}
._d{width:14.342400pt;}
._10{width:15.372160pt;}
._f{width:16.302720pt;}
._11{width:17.472000pt;}
._12{width:18.645120pt;}
._b{width:19.638400pt;}
._8{width:21.460480pt;}
._c{width:22.469760pt;}
._1b{width:23.638400pt;}
._18{width:24.594560pt;}
._17{width:25.497600pt;}
._15{width:31.970560pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.160000pt;}
.y1a{bottom:2.880000pt;}
.ye6{bottom:3.040000pt;}
.y53{bottom:3.360000pt;}
.ye{bottom:4.000000pt;}
.y52{bottom:5.440000pt;}
.y110{bottom:9.800000pt;}
.ye0{bottom:10.426667pt;}
.yb8{bottom:10.560000pt;}
.yfe{bottom:10.586667pt;}
.y38{bottom:11.360000pt;}
.yc{bottom:12.320000pt;}
.y1d{bottom:13.120000pt;}
.y3{bottom:16.160000pt;}
.y50{bottom:18.080000pt;}
.yb9{bottom:18.240000pt;}
.yfd{bottom:18.266667pt;}
.y19{bottom:21.800000pt;}
.y5{bottom:23.360000pt;}
.y37{bottom:24.480000pt;}
.yb{bottom:26.880000pt;}
.y4f{bottom:33.440000pt;}
.y4{bottom:33.472000pt;}
.ycd{bottom:33.600000pt;}
.y2{bottom:34.592000pt;}
.y18{bottom:36.360000pt;}
.y36{bottom:37.440000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:43.360000pt;}
.y4e{bottom:48.800000pt;}
.y35{bottom:50.400000pt;}
.y17{bottom:51.080000pt;}
.y34{bottom:63.520000pt;}
.y4d{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:65.640000pt;}
.y33{bottom:76.480000pt;}
.y15{bottom:77.000000pt;}
.y4c{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y32{bottom:89.600000pt;}
.y14{bottom:92.040000pt;}
.y4b{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y9d{bottom:101.312000pt;}
.y31{bottom:102.560000pt;}
.y104{bottom:105.472000pt;}
.y136{bottom:107.072000pt;}
.yc5{bottom:109.472000pt;}
.y61{bottom:109.792000pt;}
.y4a{bottom:110.080000pt;}
.y13{bottom:111.560000pt;}
.y30{bottom:115.520000pt;}
.y9c{bottom:116.672000pt;}
.y160{bottom:120.512000pt;}
.y103{bottom:120.832000pt;}
.yde{bottom:121.152000pt;}
.y135{bottom:122.432000pt;}
.y12{bottom:124.360000pt;}
.yc4{bottom:124.832000pt;}
.y60{bottom:125.152000pt;}
.y49{bottom:125.440000pt;}
.y2f{bottom:128.640000pt;}
.y9b{bottom:132.032000pt;}
.y15f{bottom:135.866667pt;}
.ydd{bottom:136.506667pt;}
.y134{bottom:137.786667pt;}
.yc3{bottom:140.186667pt;}
.y5f{bottom:140.346667pt;}
.y48{bottom:140.800000pt;}
.y2e{bottom:141.600000pt;}
.y102{bottom:146.266667pt;}
.y11{bottom:147.240000pt;}
.y9a{bottom:147.386667pt;}
.y15e{bottom:151.226667pt;}
.ydc{bottom:151.866667pt;}
.y133{bottom:153.146667pt;}
.y2d{bottom:154.720000pt;}
.yc2{bottom:155.546667pt;}
.y5e{bottom:155.706667pt;}
.y47{bottom:156.160000pt;}
.y10{bottom:166.280000pt;}
.y15d{bottom:166.586667pt;}
.y2c{bottom:167.680000pt;}
.y132{bottom:168.506667pt;}
.yc1{bottom:170.906667pt;}
.y5d{bottom:171.066667pt;}
.y46{bottom:171.520000pt;}
.y99{bottom:173.306667pt;}
.ydb{bottom:177.786667pt;}
.y2b{bottom:180.640000pt;}
.y15c{bottom:181.946667pt;}
.y131{bottom:183.706667pt;}
.y45{bottom:186.880000pt;}
.y98{bottom:188.666667pt;}
.yda{bottom:193.146667pt;}
.y2a{bottom:193.626667pt;}
.yc0{bottom:196.346667pt;}
.y5c{bottom:196.986667pt;}
.y15b{bottom:197.146667pt;}
.y44{bottom:202.106667pt;}
.y97{bottom:204.026667pt;}
.yd9{bottom:208.506667pt;}
.y29{bottom:208.986667pt;}
.y130{bottom:209.786667pt;}
.y5b{bottom:212.346667pt;}
.y15a{bottom:212.506667pt;}
.y43{bottom:217.466667pt;}
.y96{bottom:219.386667pt;}
.yd8{bottom:223.866667pt;}
.y28{bottom:224.346667pt;}
.y12f{bottom:225.146667pt;}
.y5a{bottom:227.706667pt;}
.y159{bottom:227.866667pt;}
.y42{bottom:232.826667pt;}
.y95{bottom:234.746667pt;}
.yd7{bottom:239.066667pt;}
.y27{bottom:240.186667pt;}
.y12e{bottom:240.506667pt;}
.y59{bottom:243.066667pt;}
.y158{bottom:243.226667pt;}
.y41{bottom:248.186667pt;}
.y94{bottom:250.106667pt;}
.yd6{bottom:254.426667pt;}
.y26{bottom:255.546667pt;}
.y12d{bottom:255.706667pt;}
.y58{bottom:258.426667pt;}
.y157{bottom:258.586667pt;}
.y40{bottom:263.546667pt;}
.y93{bottom:265.306667pt;}
.yd5{bottom:269.786667pt;}
.y25{bottom:271.066667pt;}
.y57{bottom:273.786667pt;}
.y156{bottom:273.946667pt;}
.y3f{bottom:278.906667pt;}
.y92{bottom:280.666667pt;}
.yd4{bottom:285.146667pt;}
.y12c{bottom:286.426667pt;}
.y24{bottom:286.586667pt;}
.y56{bottom:289.146667pt;}
.y3e{bottom:294.106667pt;}
.y91{bottom:296.026667pt;}
.yd3{bottom:300.546667pt;}
.y23{bottom:301.946667pt;}
.y55{bottom:304.386667pt;}
.y155{bottom:304.546667pt;}
.y3d{bottom:309.466667pt;}
.y90{bottom:311.426667pt;}
.y12b{bottom:312.386667pt;}
.y22{bottom:317.466667pt;}
.yd2{bottom:318.146667pt;}
.y54{bottom:319.746667pt;}
.y154{bottom:319.906667pt;}
.y3c{bottom:324.826667pt;}
.y8f{bottom:326.786667pt;}
.y12a{bottom:327.746667pt;}
.y51{bottom:332.226667pt;}
.y21{bottom:333.146667pt;}
.y153{bottom:335.266667pt;}
.yd1{bottom:335.746667pt;}
.y3b{bottom:340.186667pt;}
.y8e{bottom:342.146667pt;}
.y129{bottom:343.106667pt;}
.y1e{bottom:347.746667pt;}
.y152{bottom:350.626667pt;}
.y3a{bottom:355.546667pt;}
.y8d{bottom:357.346667pt;}
.y20{bottom:357.466667pt;}
.y128{bottom:358.466667pt;}
.yd0{bottom:361.186667pt;}
.y151{bottom:365.826667pt;}
.y39{bottom:370.746667pt;}
.y8c{bottom:372.706667pt;}
.y1f{bottom:373.146667pt;}
.y127{bottom:373.826667pt;}
.y150{bottom:381.186667pt;}
.y8b{bottom:388.066667pt;}
.y126{bottom:389.186667pt;}
.y14f{bottom:396.546667pt;}
.y8a{bottom:403.426667pt;}
.y125{bottom:404.386667pt;}
.y14e{bottom:411.906667pt;}
.y89{bottom:418.786667pt;}
.y14d{bottom:427.266667pt;}
.y124{bottom:430.466667pt;}
.y88{bottom:433.986667pt;}
.y14c{bottom:442.626667pt;}
.y123{bottom:445.826667pt;}
.y87{bottom:449.346667pt;}
.y14b{bottom:457.826667pt;}
.y122{bottom:461.186667pt;}
.y86{bottom:464.706667pt;}
.y101{bottom:466.306667pt;}
.ybf{bottom:471.266667pt;}
.y14a{bottom:473.186667pt;}
.y121{bottom:476.386667pt;}
.y85{bottom:480.066667pt;}
.y100{bottom:480.866667pt;}
.y149{bottom:488.546667pt;}
.y120{bottom:491.746667pt;}
.y84{bottom:495.426667pt;}
.ybe{bottom:499.426667pt;}
.y148{bottom:506.146667pt;}
.y11f{bottom:507.106667pt;}
.y83{bottom:510.786667pt;}
.yff{bottom:512.226667pt;}
.ybd{bottom:512.546667pt;}
.y179{bottom:515.426667pt;}
.y11e{bottom:522.466667pt;}
.y147{bottom:523.746667pt;}
.y82{bottom:525.986667pt;}
.yfc{bottom:528.226667pt;}
.ybc{bottom:528.546667pt;}
.y178{bottom:531.746667pt;}
.y11d{bottom:537.853333pt;}
.y81{bottom:541.373333pt;}
.ybb{bottom:544.573333pt;}
.y177{bottom:547.453333pt;}
.y11c{bottom:553.213333pt;}
.y80{bottom:556.733333pt;}
.y146{bottom:559.133333pt;}
.yfb{bottom:559.613333pt;}
.yba{bottom:560.573333pt;}
.y176{bottom:562.813333pt;}
.y11b{bottom:568.413333pt;}
.y7f{bottom:572.093333pt;}
.yfa{bottom:575.613333pt;}
.yb7{bottom:576.573333pt;}
.y145{bottom:576.733333pt;}
.y175{bottom:578.013333pt;}
.y11a{bottom:583.773333pt;}
.y7e{bottom:587.453333pt;}
.yf9{bottom:591.613333pt;}
.y144{bottom:592.093333pt;}
.y174{bottom:593.373333pt;}
.y119{bottom:599.133333pt;}
.y7d{bottom:602.813333pt;}
.y143{bottom:607.453333pt;}
.yb6{bottom:607.933333pt;}
.y173{bottom:608.733333pt;}
.y118{bottom:614.493333pt;}
.y7c{bottom:618.013333pt;}
.yf8{bottom:622.813333pt;}
.yb5{bottom:623.933333pt;}
.y172{bottom:624.093333pt;}
.y117{bottom:629.853333pt;}
.y7b{bottom:633.373333pt;}
.y142{bottom:638.013333pt;}
.y171{bottom:639.453333pt;}
.yb4{bottom:639.933333pt;}
.yf7{bottom:641.693333pt;}
.y116{bottom:645.213333pt;}
.y7a{bottom:648.733333pt;}
.y141{bottom:653.373333pt;}
.y170{bottom:654.813333pt;}
.yb3{bottom:655.933333pt;}
.y115{bottom:658.333333pt;}
.y79{bottom:664.093333pt;}
.yf6{bottom:667.773333pt;}
.y140{bottom:668.733333pt;}
.y16f{bottom:670.013333pt;}
.yb2{bottom:671.933333pt;}
.y114{bottom:674.333333pt;}
.y78{bottom:679.453333pt;}
.yf5{bottom:683.133333pt;}
.y13f{bottom:684.093333pt;}
.y16e{bottom:685.373333pt;}
.yb1{bottom:687.933333pt;}
.y113{bottom:690.173333pt;}
.y77{bottom:694.813333pt;}
.y13e{bottom:699.453333pt;}
.y16d{bottom:700.733333pt;}
.yb0{bottom:703.933333pt;}
.ycf{bottom:706.013333pt;}
.y112{bottom:706.173333pt;}
.yf4{bottom:709.053333pt;}
.y76{bottom:710.013333pt;}
.y13d{bottom:714.653333pt;}
.y16c{bottom:716.093333pt;}
.yce{bottom:719.133333pt;}
.yaf{bottom:722.813333pt;}
.yf3{bottom:724.413333pt;}
.y75{bottom:725.373333pt;}
.y13c{bottom:730.013333pt;}
.y1b{bottom:730.973333pt;}
.y16b{bottom:731.453333pt;}
.ycc{bottom:735.133333pt;}
.y111{bottom:737.533333pt;}
.yf2{bottom:739.773333pt;}
.y74{bottom:740.733333pt;}
.y13b{bottom:745.373333pt;}
.y16a{bottom:746.653333pt;}
.yae{bottom:748.733333pt;}
.yf1{bottom:755.133333pt;}
.y73{bottom:756.093333pt;}
.yf{bottom:756.893333pt;}
.y13a{bottom:760.733333pt;}
.y169{bottom:762.013333pt;}
.yad{bottom:764.093333pt;}
.y10f{bottom:768.893333pt;}
.yf0{bottom:770.493333pt;}
.y72{bottom:771.453333pt;}
.y139{bottom:776.133333pt;}
.y168{bottom:777.413333pt;}
.ycb{bottom:781.893333pt;}
.yef{bottom:785.733333pt;}
.y71{bottom:786.693333pt;}
.yac{bottom:790.213333pt;}
.y167{bottom:792.773333pt;}
.y10e{bottom:798.533333pt;}
.yee{bottom:801.093333pt;}
.y70{bottom:802.053333pt;}
.yab{bottom:805.573333pt;}
.y166{bottom:808.133333pt;}
.yca{bottom:813.253333pt;}
.yed{bottom:816.453333pt;}
.y6f{bottom:817.413333pt;}
.yaa{bottom:820.933333pt;}
.y165{bottom:823.493333pt;}
.yec{bottom:831.813333pt;}
.y6e{bottom:832.773333pt;}
.ya9{bottom:836.133333pt;}
.y164{bottom:838.693333pt;}
.y10d{bottom:843.333333pt;}
.yeb{bottom:847.173333pt;}
.y6d{bottom:848.133333pt;}
.ya8{bottom:851.493333pt;}
.y163{bottom:854.053333pt;}
.y10c{bottom:858.693333pt;}
.yc9{bottom:859.813333pt;}
.yea{bottom:862.533333pt;}
.y6c{bottom:863.493333pt;}
.ya7{bottom:866.853333pt;}
.y162{bottom:869.413333pt;}
.y10b{bottom:874.053333pt;}
.ye9{bottom:877.733333pt;}
.y6b{bottom:878.693333pt;}
.ya6{bottom:882.213333pt;}
.y161{bottom:884.773333pt;}
.y138{bottom:889.413333pt;}
.ye8{bottom:893.093333pt;}
.y6a{bottom:894.053333pt;}
.ya5{bottom:897.573333pt;}
.y10a{bottom:900.133333pt;}
.y137{bottom:904.773333pt;}
.y69{bottom:909.413333pt;}
.ye7{bottom:909.573333pt;}
.ya4{bottom:912.933333pt;}
.y109{bottom:915.493333pt;}
.yc8{bottom:920.133333pt;}
.ye5{bottom:924.133333pt;}
.yd{bottom:924.453333pt;}
.y68{bottom:924.773333pt;}
.ya3{bottom:928.133333pt;}
.y108{bottom:930.693333pt;}
.yc7{bottom:935.493333pt;}
.y67{bottom:940.133333pt;}
.ye4{bottom:940.293333pt;}
.y6{bottom:942.533333pt;}
.ya2{bottom:943.493333pt;}
.y107{bottom:946.053333pt;}
.yc6{bottom:950.693333pt;}
.ye3{bottom:956.293333pt;}
.ya1{bottom:958.853333pt;}
.y106{bottom:961.413333pt;}
.y66{bottom:966.053333pt;}
.ye2{bottom:972.293333pt;}
.ya0{bottom:975.333333pt;}
.y105{bottom:976.773333pt;}
.y65{bottom:981.413333pt;}
.ye1{bottom:988.293333pt;}
.y9f{bottom:992.133333pt;}
.ydf{bottom:1004.293333pt;}
.y64{bottom:1007.333333pt;}
.y9e{bottom:1007.493333pt;}
.y63{bottom:1022.720000pt;}
.y62{bottom:1038.080000pt;}
.hd{height:3.770000pt;}
.h27{height:15.200000pt;}
.h20{height:15.360000pt;}
.h22{height:15.392000pt;}
.h1d{height:15.520000pt;}
.hb{height:17.760000pt;}
.hf{height:24.000000pt;}
.h11{height:25.750000pt;}
.h13{height:25.920000pt;}
.h29{height:28.992000pt;}
.h25{height:30.272000pt;}
.h26{height:30.560000pt;}
.h28{height:30.592000pt;}
.h21{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1a{height:32.411250pt;}
.h12{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h4{height:38.625000pt;}
.h1e{height:38.672812pt;}
.ha{height:39.840000pt;}
.h19{height:40.410625pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h23{height:45.920000pt;}
.h24{height:46.112000pt;}
.h2{height:47.392000pt;}
.h9{height:48.000000pt;}
.h10{height:49.148438pt;}
.h2b{height:50.578125pt;}
.h2a{height:52.834688pt;}
.h17{height:54.390938pt;}
.he{height:56.160000pt;}
.h3{height:57.667500pt;}
.h1f{height:58.563750pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:167.546667pt;}
.h15{height:383.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w15{width:98.432000pt;}
.w17{width:106.592000pt;}
.w16{width:108.320000pt;}
.wf{width:109.152000pt;}
.w12{width:109.312000pt;}
.w13{width:109.440000pt;}
.w11{width:109.472000pt;}
.w10{width:109.760000pt;}
.w19{width:112.000000pt;}
.we{width:113.152000pt;}
.w18{width:113.952000pt;}
.w14{width:120.992000pt;}
.w5{width:127.872000pt;}
.w1e{width:135.066667pt;}
.w1b{width:135.226667pt;}
.w1a{width:135.706667pt;}
.w1d{width:146.266667pt;}
.wc{width:165.306667pt;}
.wd{width:165.466667pt;}
.w9{width:175.386667pt;}
.w1f{width:214.906667pt;}
.w1c{width:225.306667pt;}
.wa{width:486.013333pt;}
.wb{width:493.373333pt;}
.w6{width:529.693333pt;}
.w2{width:598.693333pt;}
.w7{width:657.573333pt;}
.w8{width:661.413333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.720000pt;}
.x2{left:7.680000pt;}
.xe{left:20.512000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x2d{left:77.119988pt;}
.x5{left:87.226667pt;}
.xf{left:96.506667pt;}
.x10{left:99.066667pt;}
.x14{left:120.031988pt;}
.x15{left:164.506655pt;}
.x12{left:167.226667pt;}
.x29{left:172.666655pt;}
.x1c{left:178.906667pt;}
.x23{left:186.906667pt;}
.x6{left:192.666667pt;}
.x2f{left:205.466655pt;}
.x1b{left:212.826655pt;}
.x16{left:231.226667pt;}
.x19{left:233.946655pt;}
.x11{left:235.106667pt;}
.xd{left:238.466667pt;}
.x13{left:240.186667pt;}
.x22{left:249.986655pt;}
.x9{left:256.866667pt;}
.x25{left:285.986667pt;}
.x1d{left:288.706667pt;}
.x7{left:309.986667pt;}
.x8{left:327.106667pt;}
.xc{left:330.626667pt;}
.x2e{left:337.186655pt;}
.x2a{left:367.586667pt;}
.x30{left:378.146667pt;}
.xb{left:384.866667pt;}
.x26{left:394.946667pt;}
.x17{left:397.186667pt;}
.x1e{left:399.106667pt;}
.xa{left:405.546667pt;}
.x27{left:502.173333pt;}
.x2b{left:503.453333pt;}
.x1f{left:509.213333pt;}
.x31{left:513.853333pt;}
.x18{left:563.293333pt;}
.x1a{left:566.973322pt;}
.x2c{left:573.853322pt;}
.x21{left:598.693322pt;}
.x28{left:616.773333pt;}
.x20{left:619.333333pt;}
.x3{left:663.013333pt;}
}




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