
    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_82176100c7391aca7216f518.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928223;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_6fa082f2ee0889dfa79f4398.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_d6d0a9a95890a692bb449ac5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_eccfbe13dfb9c21cffdf8c54.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_007acfc9634a4e4795e1d375.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_edc3c7a9b2e0827bdd581104.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783203;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9a036e06c94f5035d888f893.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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);}
.v1{vertical-align:-105.120000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.567600px;}
.ls3{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.152400px;}
.ls1b{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.109200px;}
.ls1c{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.378600px;}
.lsc{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls6{letter-spacing:1.584000px;}
.ls1d{letter-spacing:5.040000px;}
.ls1a{letter-spacing:19.440000px;}
.ls7{letter-spacing:26.784000px;}
.ls5{letter-spacing:33.960000px;}
.ls8{letter-spacing:77.184000px;}
.lsb{letter-spacing:96.624000px;}
.ls19{letter-spacing:106.560000px;}
.ls0{letter-spacing:832.476000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-24.192000px;}
.ws9{word-spacing:-23.940000px;}
.ws8{word-spacing:-21.438600px;}
.wse{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.648000px;}
.wsd{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.wsb{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.407600px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-4.680000px;}
._5{margin-left:-3.011520px;}
._1{margin-left:-1.803600px;}
._0{width:1.042320px;}
._4{width:2.614080px;}
._9{width:3.888000px;}
._a{width:4.969680px;}
._b{width:6.120000px;}
._6{width:7.344000px;}
._7{width:8.876400px;}
._8{width:10.563600px;}
._13{width:12.116400px;}
._c{width:13.320000px;}
._17{width:14.508000px;}
._15{width:15.840000px;}
._10{width:16.848000px;}
._1f{width:19.356000px;}
._18{width:20.520000px;}
._19{width:21.528000px;}
._14{width:22.680000px;}
._11{width:23.832000px;}
._12{width:24.840000px;}
._1c{width:25.889280px;}
._2{width:27.864000px;}
._3{width:29.604000px;}
._20{width:30.624000px;}
._1d{width:31.944000px;}
._1e{width:32.952000px;}
._1a{width:34.776000px;}
._2d{width:36.003600px;}
._35{width:37.155600px;}
._2e{width:38.736000px;}
._d{width:39.960000px;}
._e{width:40.968000px;}
._1b{width:42.768000px;}
._30{width:43.813680px;}
._21{width:50.904000px;}
._33{width:54.360000px;}
._27{width:59.832000px;}
._28{width:61.201680px;}
._2b{width:65.160000px;}
._2a{width:70.920000px;}
._3a{width:77.256000px;}
._3b{width:78.553680px;}
._32{width:85.248000px;}
._38{width:91.517280px;}
._36{width:92.844000px;}
._22{width:96.336000px;}
._23{width:97.681680px;}
._2c{width:106.344000px;}
._31{width:111.528000px;}
._41{width:119.520000px;}
._42{width:120.888000px;}
._16{width:126.648000px;}
._37{width:132.984000px;}
._29{width:141.048000px;}
._25{width:187.056000px;}
._24{width:188.352000px;}
._43{width:200.628000px;}
._3e{width:201.888000px;}
._3f{width:202.968000px;}
._3c{width:234.648000px;}
._3d{width:235.740000px;}
._39{width:260.424000px;}
._26{width:461.412000px;}
._2f{width:651.240000px;}
._40{width:795.108000px;}
._34{width:1905.552000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:7.740000px;}
.yf7{bottom:8.820000px;}
.yf0{bottom:19.080000px;}
.yf5{bottom:19.620000px;}
.yee{bottom:25.740000px;}
.yfa{bottom:27.000000px;}
.yfb{bottom:42.120000px;}
.yf9{bottom:51.330000px;}
.y104{bottom:58.500000px;}
.y1{bottom:58.680000px;}
.yf3{bottom:58.710000px;}
.y2a{bottom:82.440000px;}
.y103{bottom:83.880000px;}
.yf8{bottom:90.390000px;}
.yf4{bottom:97.950000px;}
.ye2{bottom:116.136000px;}
.y15f{bottom:117.216000px;}
.y188{bottom:120.456000px;}
.yea{bottom:124.956000px;}
.y82{bottom:127.296000px;}
.ya3{bottom:127.476000px;}
.y10f{bottom:127.656000px;}
.y190{bottom:129.636000px;}
.y6c{bottom:130.896000px;}
.yb4{bottom:131.076000px;}
.yd8{bottom:132.876000px;}
.y16c{bottom:135.396000px;}
.y99{bottom:142.596000px;}
.ye4{bottom:146.196000px;}
.y15e{bottom:148.356000px;}
.y182{bottom:150.330000px;}
.y142{bottom:151.410000px;}
.ye9{bottom:156.090000px;}
.y57{bottom:157.530000px;}
.y16b{bottom:166.350000px;}
.y81{bottom:168.690000px;}
.ya2{bottom:168.870000px;}
.y10e{bottom:169.050000px;}
.y128{bottom:171.030000px;}
.y6b{bottom:172.110000px;}
.y8e{bottom:172.470000px;}
.y15d{bottom:179.310000px;}
.y13{bottom:181.110000px;}
.y181{bottom:181.470000px;}
.y40{bottom:182.010000px;}
.y141{bottom:182.550000px;}
.y98{bottom:183.990000px;}
.y29{bottom:186.510000px;}
.ye8{bottom:187.050000px;}
.ye3{bottom:187.590000px;}
.yd7{bottom:189.390000px;}
.y16a{bottom:197.490000px;}
.y56{bottom:198.930000px;}
.y127{bottom:202.170000px;}
.y12{bottom:208.830000px;}
.y80{bottom:209.910000px;}
.yb7{bottom:210.270000px;}
.y10d{bottom:210.450000px;}
.y178{bottom:212.430000px;}
.y140{bottom:213.510000px;}
.y8d{bottom:213.870000px;}
.ye7{bottom:218.190000px;}
.yc3{bottom:219.270000px;}
.y3f{bottom:223.410000px;}
.ya1{bottom:225.390000px;}
.y28{bottom:227.910000px;}
.y169{bottom:228.450000px;}
.y6a{bottom:228.630000px;}
.yb3{bottom:228.990000px;}
.yd6{bottom:230.790000px;}
.y126{bottom:233.130000px;}
.y55{bottom:240.330000px;}
.y15c{bottom:241.410000px;}
.y177{bottom:243.570000px;}
.y14a{bottom:244.650000px;}
.ye6{bottom:249.150000px;}
.y7f{bottom:251.310000px;}
.yb6{bottom:251.670000px;}
.y10c{bottom:251.850000px;}
.y8c{bottom:255.270000px;}
.y184{bottom:258.510000px;}
.y13f{bottom:259.590000px;}
.yc2{bottom:260.670000px;}
.y11{bottom:262.650000px;}
.y3e{bottom:264.810000px;}
.ya0{bottom:266.790000px;}
.y27{bottom:269.310000px;}
.yb2{bottom:270.390000px;}
.yd5{bottom:272.190000px;}
.y15b{bottom:272.550000px;}
.y168{bottom:274.530000px;}
.ye5{bottom:276.150000px;}
.y125{bottom:279.210000px;}
.y54{bottom:281.730000px;}
.y10{bottom:283.350000px;}
.y69{bottom:285.150000px;}
.y180{bottom:289.650000px;}
.y13e{bottom:290.550000px;}
.y7e{bottom:292.710000px;}
.y10b{bottom:293.250000px;}
.y8b{bottom:296.670000px;}
.yc1{bottom:302.070000px;}
.y15a{bottom:303.510000px;}
.y167{bottom:305.670000px;}
.y3d{bottom:306.210000px;}
.yf{bottom:306.570000px;}
.y9f{bottom:308.190000px;}
.y124{bottom:310.350000px;}
.y26{bottom:310.710000px;}
.yb1{bottom:311.790000px;}
.yd4{bottom:313.590000px;}
.y179{bottom:320.610000px;}
.y13d{bottom:321.690000px;}
.y97{bottom:323.130000px;}
.y7d{bottom:334.290000px;}
.y159{bottom:334.650000px;}
.y166{bottom:336.630000px;}
.y53{bottom:338.070000px;}
.ye{bottom:341.130000px;}
.y123{bottom:341.310000px;}
.y68{bottom:341.490000px;}
.yc0{bottom:343.470000px;}
.y9e{bottom:349.590000px;}
.y176{bottom:351.750000px;}
.y25{bottom:352.110000px;}
.y101{bottom:352.695000px;}
.yb0{bottom:353.190000px;}
.yd3{bottom:354.810000px;}
.y3c{bottom:362.550000px;}
.y96{bottom:364.530000px;}
.y158{bottom:365.610000px;}
.y17f{bottom:366.735000px;}
.y13c{bottom:367.815000px;}
.y122{bottom:372.495000px;}
.yd{bottom:375.555000px;}
.y7c{bottom:375.735000px;}
.y52{bottom:379.515000px;}
.y100{bottom:381.135000px;}
.y175{bottom:382.755000px;}
.y9d{bottom:390.855000px;}
.y10a{bottom:391.035000px;}
.y24{bottom:393.555000px;}
.ybf{bottom:393.915000px;}
.yaf{bottom:394.635000px;}
.yd2{bottom:396.255000px;}
.y157{bottom:396.795000px;}
.y17e{bottom:397.695000px;}
.y67{bottom:398.055000px;}
.y13b{bottom:398.775000px;}
.y3b{bottom:403.995000px;}
.y95{bottom:405.975000px;}
.yff{bottom:409.575000px;}
.yc{bottom:410.115000px;}
.y165{bottom:413.895000px;}
.y7b{bottom:417.135000px;}
.y121{bottom:418.395000px;}
.y51{bottom:420.915000px;}
.yf2{bottom:425.775000px;}
.y156{bottom:427.755000px;}
.y174{bottom:428.835000px;}
.y18f{bottom:429.915000px;}
.yab{bottom:432.255000px;}
.y109{bottom:432.435000px;}
.ybe{bottom:435.315000px;}
.yae{bottom:435.855000px;}
.y18b{bottom:443.775000px;}
.y13a{bottom:444.855000px;}
.y3a{bottom:445.395000px;}
.yb{bottom:447.195000px;}
.y9c{bottom:447.375000px;}
.y120{bottom:449.535000px;}
.y23{bottom:449.895000px;}
.yd1{bottom:452.775000px;}
.y66{bottom:454.575000px;}
.y7a{bottom:458.535000px;}
.y155{bottom:458.895000px;}
.yfd{bottom:459.075000px;}
.y173{bottom:459.795000px;}
.y50{bottom:462.315000px;}
.yaa{bottom:473.655000px;}
.y108{bottom:473.835000px;}
.y17d{bottom:474.915000px;}
.y139{bottom:475.995000px;}
.yad{bottom:477.255000px;}
.y11f{bottom:480.495000px;}
.ybd{bottom:485.715000px;}
.y39{bottom:486.795000px;}
.y9b{bottom:488.775000px;}
.y154{bottom:489.855000px;}
.y164{bottom:490.935000px;}
.y22{bottom:491.295000px;}
.yfc{bottom:492.405000px;}
.yd0{bottom:494.175000px;}
.ya{bottom:495.435000px;}
.y79{bottom:499.935000px;}
.y4f{bottom:503.715000px;}
.y17c{bottom:505.875000px;}
.y138{bottom:506.955000px;}
.y65{bottom:511.095000px;}
.ya9{bottom:515.055000px;}
.y107{bottom:515.235000px;}
.y8a{bottom:518.655000px;}
.y153{bottom:520.995000px;}
.y163{bottom:521.895000px;}
.yf6{bottom:525.705000px;}
.y11e{bottom:526.575000px;}
.ybc{bottom:527.115000px;}
.y38{bottom:528.195000px;}
.y9a{bottom:530.175000px;}
.y21{bottom:532.695000px;}
.ycf{bottom:535.575000px;}
.y172{bottom:537.015000px;}
.y137{bottom:537.915000px;}
.y78{bottom:541.335000px;}
.y9{bottom:543.675000px;}
.y4e{bottom:545.115000px;}
.y152{bottom:551.955000px;}
.y64{bottom:552.495000px;}
.y149{bottom:553.035000px;}
.ya8{bottom:556.455000px;}
.y106{bottom:556.635000px;}
.y11d{bottom:557.715000px;}
.yf1{bottom:559.005000px;}
.y89{bottom:560.055000px;}
.y162{bottom:567.975000px;}
.ybb{bottom:568.515000px;}
.y18e{bottom:569.055000px;}
.y37{bottom:569.595000px;}
.yb5{bottom:571.575000px;}
.y20{bottom:574.095000px;}
.yce{bottom:576.975000px;}
.y77{bottom:582.735000px;}
.y151{bottom:582.915000px;}
.y136{bottom:583.995000px;}
.y4d{bottom:586.515000px;}
.y8{bottom:592.095000px;}
.ya7{bottom:597.855000px;}
.y161{bottom:599.115000px;}
.y88{bottom:601.455000px;}
.y11c{bottom:603.615000px;}
.y63{bottom:609.015000px;}
.yba{bottom:609.915000px;}
.yef{bottom:610.845000px;}
.ye1{bottom:612.975000px;}
.y150{bottom:614.055000px;}
.y135{bottom:615.135000px;}
.y1f{bottom:615.495000px;}
.y76{bottom:624.135000px;}
.y36{bottom:626.145000px;}
.y4c{bottom:627.945000px;}
.y160{bottom:630.105000px;}
.ycd{bottom:633.345000px;}
.y11b{bottom:634.785000px;}
.ya6{bottom:639.285000px;}
.y7{bottom:640.365000px;}
.y87{bottom:642.885000px;}
.y14f{bottom:645.045000px;}
.y18d{bottom:646.125000px;}
.y62{bottom:650.265000px;}
.ye0{bottom:654.405000px;}
.y1e{bottom:656.925000px;}
.y17b{bottom:660.165000px;}
.yb9{bottom:660.345000px;}
.y134{bottom:661.245000px;}
.yed{bottom:662.550000px;}
.y75{bottom:665.385000px;}
.y11a{bottom:665.745000px;}
.y35{bottom:667.545000px;}
.y4b{bottom:669.345000px;}
.y14e{bottom:676.185000px;}
.y18c{bottom:677.265000px;}
.y86{bottom:684.285000px;}
.y6{bottom:685.185000px;}
.ycc{bottom:689.685000px;}
.y17a{bottom:691.125000px;}
.y61{bottom:691.665000px;}
.y133{bottom:692.205000px;}
.ya5{bottom:695.805000px;}
.y119{bottom:696.885000px;}
.y1d{bottom:698.325000px;}
.yb8{bottom:701.745000px;}
.y14d{bottom:707.145000px;}
.y34{bottom:708.945000px;}
.y5{bottom:710.565000px;}
.y4a{bottom:710.745000px;}
.y74{bottom:721.905000px;}
.y171{bottom:722.265000px;}
.y132{bottom:723.345000px;}
.y85{bottom:725.505000px;}
.yac{bottom:725.685000px;}
.y4{bottom:730.365000px;}
.ycb{bottom:731.085000px;}
.y60{bottom:733.065000px;}
.ya4{bottom:737.205000px;}
.y148{bottom:738.285000px;}
.y1c{bottom:739.725000px;}
.y118{bottom:742.965000px;}
.yec{bottom:748.590000px;}
.y33{bottom:750.345000px;}
.y49{bottom:752.145000px;}
.y14c{bottom:753.225000px;}
.y187{bottom:754.305000px;}
.y73{bottom:763.305000px;}
.y84{bottom:767.085000px;}
.y183{bottom:768.345000px;}
.y131{bottom:769.245000px;}
.yca{bottom:772.485000px;}
.y117{bottom:773.925000px;}
.ydf{bottom:778.605000px;}
.y1b{bottom:781.125000px;}
.y14b{bottom:784.365000px;}
.y5f{bottom:789.585000px;}
.y32{bottom:791.745000px;}
.y48{bottom:793.545000px;}
.y170{bottom:799.305000px;}
.y130{bottom:800.385000px;}
.y72{bottom:804.705000px;}
.y116{bottom:805.065000px;}
.y83{bottom:808.485000px;}
.y147{bottom:815.325000px;}
.yde{bottom:820.005000px;}
.yeb{bottom:820.080000px;}
.y1a{bottom:822.525000px;}
.yc9{bottom:822.885000px;}
.y16f{bottom:830.445000px;}
.y5e{bottom:830.805000px;}
.y186{bottom:831.345000px;}
.y94{bottom:834.945000px;}
.y115{bottom:836.025000px;}
.y12f{bottom:846.465000px;}
.y31{bottom:848.085000px;}
.y47{bottom:849.885000px;}
.y71{bottom:861.225000px;}
.ydd{bottom:861.405000px;}
.yc8{bottom:864.285000px;}
.y93{bottom:876.345000px;}
.y146{bottom:877.425000px;}
.y19{bottom:878.865000px;}
.y114{bottom:882.105000px;}
.y3{bottom:884.670000px;}
.y5d{bottom:887.550000px;}
.y30{bottom:889.530000px;}
.y46{bottom:891.330000px;}
.y12e{bottom:892.590000px;}
.y70{bottom:902.670000px;}
.ydc{bottom:902.850000px;}
.y16e{bottom:907.530000px;}
.y185{bottom:908.610000px;}
.y113{bottom:913.290000px;}
.yc7{bottom:914.730000px;}
.y92{bottom:917.790000px;}
.y18{bottom:920.310000px;}
.y12d{bottom:923.550000px;}
.y5c{bottom:928.770000px;}
.y2f{bottom:930.930000px;}
.y45{bottom:932.730000px;}
.y16d{bottom:938.490000px;}
.y6f{bottom:944.070000px;}
.ydb{bottom:944.250000px;}
.y145{bottom:954.510000px;}
.yc6{bottom:956.130000px;}
.y91{bottom:959.190000px;}
.y17{bottom:961.710000px;}
.y12c{bottom:969.630000px;}
.y2e{bottom:972.330000px;}
.y44{bottom:974.130000px;}
.y18a{bottom:984.570000px;}
.y5b{bottom:985.290000px;}
.y6e{bottom:985.470000px;}
.yda{bottom:985.650000px;}
.y112{bottom:990.330000px;}
.y90{bottom:1000.590000px;}
.yc5{bottom:1006.530000px;}
.y2d{bottom:1013.730000px;}
.y43{bottom:1015.530000px;}
.y189{bottom:1015.710000px;}
.y16{bottom:1018.230000px;}
.y111{bottom:1021.290000px;}
.y5a{bottom:1026.690000px;}
.y144{bottom:1031.730000px;}
.y6d{bottom:1041.810000px;}
.y8f{bottom:1041.990000px;}
.y12b{bottom:1046.670000px;}
.yc4{bottom:1047.930000px;}
.y110{bottom:1052.430000px;}
.y2c{bottom:1055.130000px;}
.y42{bottom:1056.930000px;}
.y15{bottom:1059.630000px;}
.y143{bottom:1062.690000px;}
.y2b{bottom:1076.910000px;}
.y12a{bottom:1077.810000px;}
.y59{bottom:1083.030000px;}
.yd9{bottom:1083.390000px;}
.y41{bottom:1098.330000px;}
.y14{bottom:1101.030000px;}
.y129{bottom:1108.770000px;}
.y58{bottom:1139.550000px;}
.y2{bottom:1139.730000px;}
.y105{bottom:1139.910000px;}
.y102{bottom:1189.980000px;}
.h15{height:32.580000px;}
.h17{height:32.616000px;}
.h11{height:50.976000px;}
.h12{height:51.120000px;}
.h2{height:52.417969px;}
.hf{height:63.360000px;}
.hb{height:64.546875px;}
.h19{height:64.978594px;}
.hc{height:70.628906px;}
.h3{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:73.830586px;}
.ha{height:75.093750px;}
.h14{height:82.676953px;}
.h10{height:84.898125px;}
.h4{height:87.538008px;}
.h7{height:93.983203px;}
.h18{height:96.508125px;}
.h16{height:99.216000px;}
.h6{height:118.008984px;}
.h13{height:132.516000px;}
.h5{height:164.647266px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:157.500000px;}
.wc{width:158.610000px;}
.w9{width:171.210000px;}
.wa{width:231.510000px;}
.wb{width:316.830000px;}
.w8{width:383.475000px;}
.w7{width:721.005000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w6{width:1105.200000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x28{left:7.740000px;}
.x21{left:8.820000px;}
.x23{left:11.520000px;}
.x27{left:18.360000px;}
.x20{left:34.560000px;}
.x25{left:86.940000px;}
.x1a{left:106.379981px;}
.x26{left:120.465000px;}
.xa{left:127.655987px;}
.x8{left:142.415987px;}
.x13{left:154.649987px;}
.x11{left:170.129987px;}
.x6{left:175.169987px;}
.x10{left:180.749987px;}
.x1c{left:187.409981px;}
.xd{left:191.549987px;}
.x14{left:208.649987px;}
.x15{left:219.449987px;}
.x12{left:223.409987px;}
.x7{left:258.734987px;}
.x18{left:271.334987px;}
.x22{left:279.030000px;}
.x1e{left:282.675000px;}
.x9{left:290.774987px;}
.x5{left:295.634987px;}
.xb{left:340.274987px;}
.xf{left:349.814987px;}
.x1d{left:350.895000px;}
.xc{left:357.734987px;}
.x2b{left:372.854987px;}
.x17{left:392.474987px;}
.x2a{left:434.624987px;}
.x16{left:437.504987px;}
.xe{left:442.004987px;}
.x2{left:446.504987px;}
.x24{left:511.275000px;}
.x4{left:582.584987px;}
.x3{left:634.469987px;}
.x29{left:670.605000px;}
.x19{left:762.269987px;}
.x1{left:765.509987px;}
.x1f{left:828.825000px;}
.x1b{left:1156.679981px;}
@media print{
.v1{vertical-align:-93.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.504533pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.135467pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.097067pt;}
.ls1c{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.336533pt;}
.lsc{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls6{letter-spacing:1.408000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:17.280000pt;}
.ls7{letter-spacing:23.808000pt;}
.ls5{letter-spacing:30.186667pt;}
.ls8{letter-spacing:68.608000pt;}
.lsb{letter-spacing:85.888000pt;}
.ls19{letter-spacing:94.720000pt;}
.ls0{letter-spacing:739.978667pt;}
.wsc{word-spacing:-21.504000pt;}
.ws9{word-spacing:-21.280000pt;}
.ws8{word-spacing:-19.056533pt;}
.wse{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.576000pt;}
.wsd{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsb{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.584533pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-4.160000pt;}
._5{margin-left:-2.676907pt;}
._1{margin-left:-1.603200pt;}
._0{width:0.926507pt;}
._4{width:2.323627pt;}
._9{width:3.456000pt;}
._a{width:4.417493pt;}
._b{width:5.440000pt;}
._6{width:6.528000pt;}
._7{width:7.890133pt;}
._8{width:9.389867pt;}
._13{width:10.770133pt;}
._c{width:11.840000pt;}
._17{width:12.896000pt;}
._15{width:14.080000pt;}
._10{width:14.976000pt;}
._1f{width:17.205333pt;}
._18{width:18.240000pt;}
._19{width:19.136000pt;}
._14{width:20.160000pt;}
._11{width:21.184000pt;}
._12{width:22.080000pt;}
._1c{width:23.012693pt;}
._2{width:24.768000pt;}
._3{width:26.314667pt;}
._20{width:27.221333pt;}
._1d{width:28.394667pt;}
._1e{width:29.290667pt;}
._1a{width:30.912000pt;}
._2d{width:32.003200pt;}
._35{width:33.027200pt;}
._2e{width:34.432000pt;}
._d{width:35.520000pt;}
._e{width:36.416000pt;}
._1b{width:38.016000pt;}
._30{width:38.945493pt;}
._21{width:45.248000pt;}
._33{width:48.320000pt;}
._27{width:53.184000pt;}
._28{width:54.401493pt;}
._2b{width:57.920000pt;}
._2a{width:63.040000pt;}
._3a{width:68.672000pt;}
._3b{width:69.825493pt;}
._32{width:75.776000pt;}
._38{width:81.348693pt;}
._36{width:82.528000pt;}
._22{width:85.632000pt;}
._23{width:86.828160pt;}
._2c{width:94.528000pt;}
._31{width:99.136000pt;}
._41{width:106.240000pt;}
._42{width:107.456000pt;}
._16{width:112.576000pt;}
._37{width:118.208000pt;}
._29{width:125.376000pt;}
._25{width:166.272000pt;}
._24{width:167.424000pt;}
._43{width:178.336000pt;}
._3e{width:179.456000pt;}
._3f{width:180.416000pt;}
._3c{width:208.576000pt;}
._3d{width:209.546667pt;}
._39{width:231.488000pt;}
._26{width:410.144000pt;}
._2f{width:578.880000pt;}
._40{width:706.762667pt;}
._34{width:1693.824000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:6.880000pt;}
.yf7{bottom:7.840000pt;}
.yf0{bottom:16.960000pt;}
.yf5{bottom:17.440000pt;}
.yee{bottom:22.880000pt;}
.yfa{bottom:24.000000pt;}
.yfb{bottom:37.440000pt;}
.yf9{bottom:45.626667pt;}
.y104{bottom:52.000000pt;}
.y1{bottom:52.160000pt;}
.yf3{bottom:52.186667pt;}
.y2a{bottom:73.280000pt;}
.y103{bottom:74.560000pt;}
.yf8{bottom:80.346667pt;}
.yf4{bottom:87.066667pt;}
.ye2{bottom:103.232000pt;}
.y15f{bottom:104.192000pt;}
.y188{bottom:107.072000pt;}
.yea{bottom:111.072000pt;}
.y82{bottom:113.152000pt;}
.ya3{bottom:113.312000pt;}
.y10f{bottom:113.472000pt;}
.y190{bottom:115.232000pt;}
.y6c{bottom:116.352000pt;}
.yb4{bottom:116.512000pt;}
.yd8{bottom:118.112000pt;}
.y16c{bottom:120.352000pt;}
.y99{bottom:126.752000pt;}
.ye4{bottom:129.952000pt;}
.y15e{bottom:131.872000pt;}
.y182{bottom:133.626667pt;}
.y142{bottom:134.586667pt;}
.ye9{bottom:138.746667pt;}
.y57{bottom:140.026667pt;}
.y16b{bottom:147.866667pt;}
.y81{bottom:149.946667pt;}
.ya2{bottom:150.106667pt;}
.y10e{bottom:150.266667pt;}
.y128{bottom:152.026667pt;}
.y6b{bottom:152.986667pt;}
.y8e{bottom:153.306667pt;}
.y15d{bottom:159.386667pt;}
.y13{bottom:160.986667pt;}
.y181{bottom:161.306667pt;}
.y40{bottom:161.786667pt;}
.y141{bottom:162.266667pt;}
.y98{bottom:163.546667pt;}
.y29{bottom:165.786667pt;}
.ye8{bottom:166.266667pt;}
.ye3{bottom:166.746667pt;}
.yd7{bottom:168.346667pt;}
.y16a{bottom:175.546667pt;}
.y56{bottom:176.826667pt;}
.y127{bottom:179.706667pt;}
.y12{bottom:185.626667pt;}
.y80{bottom:186.586667pt;}
.yb7{bottom:186.906667pt;}
.y10d{bottom:187.066667pt;}
.y178{bottom:188.826667pt;}
.y140{bottom:189.786667pt;}
.y8d{bottom:190.106667pt;}
.ye7{bottom:193.946667pt;}
.yc3{bottom:194.906667pt;}
.y3f{bottom:198.586667pt;}
.ya1{bottom:200.346667pt;}
.y28{bottom:202.586667pt;}
.y169{bottom:203.066667pt;}
.y6a{bottom:203.226667pt;}
.yb3{bottom:203.546667pt;}
.yd6{bottom:205.146667pt;}
.y126{bottom:207.226667pt;}
.y55{bottom:213.626667pt;}
.y15c{bottom:214.586667pt;}
.y177{bottom:216.506667pt;}
.y14a{bottom:217.466667pt;}
.ye6{bottom:221.466667pt;}
.y7f{bottom:223.386667pt;}
.yb6{bottom:223.706667pt;}
.y10c{bottom:223.866667pt;}
.y8c{bottom:226.906667pt;}
.y184{bottom:229.786667pt;}
.y13f{bottom:230.746667pt;}
.yc2{bottom:231.706667pt;}
.y11{bottom:233.466667pt;}
.y3e{bottom:235.386667pt;}
.ya0{bottom:237.146667pt;}
.y27{bottom:239.386667pt;}
.yb2{bottom:240.346667pt;}
.yd5{bottom:241.946667pt;}
.y15b{bottom:242.266667pt;}
.y168{bottom:244.026667pt;}
.ye5{bottom:245.466667pt;}
.y125{bottom:248.186667pt;}
.y54{bottom:250.426667pt;}
.y10{bottom:251.866667pt;}
.y69{bottom:253.466667pt;}
.y180{bottom:257.466667pt;}
.y13e{bottom:258.266667pt;}
.y7e{bottom:260.186667pt;}
.y10b{bottom:260.666667pt;}
.y8b{bottom:263.706667pt;}
.yc1{bottom:268.506667pt;}
.y15a{bottom:269.786667pt;}
.y167{bottom:271.706667pt;}
.y3d{bottom:272.186667pt;}
.yf{bottom:272.506667pt;}
.y9f{bottom:273.946667pt;}
.y124{bottom:275.866667pt;}
.y26{bottom:276.186667pt;}
.yb1{bottom:277.146667pt;}
.yd4{bottom:278.746667pt;}
.y179{bottom:284.986667pt;}
.y13d{bottom:285.946667pt;}
.y97{bottom:287.226667pt;}
.y7d{bottom:297.146667pt;}
.y159{bottom:297.466667pt;}
.y166{bottom:299.226667pt;}
.y53{bottom:300.506667pt;}
.ye{bottom:303.226667pt;}
.y123{bottom:303.386667pt;}
.y68{bottom:303.546667pt;}
.yc0{bottom:305.306667pt;}
.y9e{bottom:310.746667pt;}
.y176{bottom:312.666667pt;}
.y25{bottom:312.986667pt;}
.y101{bottom:313.506667pt;}
.yb0{bottom:313.946667pt;}
.yd3{bottom:315.386667pt;}
.y3c{bottom:322.266667pt;}
.y96{bottom:324.026667pt;}
.y158{bottom:324.986667pt;}
.y17f{bottom:325.986667pt;}
.y13c{bottom:326.946667pt;}
.y122{bottom:331.106667pt;}
.yd{bottom:333.826667pt;}
.y7c{bottom:333.986667pt;}
.y52{bottom:337.346667pt;}
.y100{bottom:338.786667pt;}
.y175{bottom:340.226667pt;}
.y9d{bottom:347.426667pt;}
.y10a{bottom:347.586667pt;}
.y24{bottom:349.826667pt;}
.ybf{bottom:350.146667pt;}
.yaf{bottom:350.786667pt;}
.yd2{bottom:352.226667pt;}
.y157{bottom:352.706667pt;}
.y17e{bottom:353.506667pt;}
.y67{bottom:353.826667pt;}
.y13b{bottom:354.466667pt;}
.y3b{bottom:359.106667pt;}
.y95{bottom:360.866667pt;}
.yff{bottom:364.066667pt;}
.yc{bottom:364.546667pt;}
.y165{bottom:367.906667pt;}
.y7b{bottom:370.786667pt;}
.y121{bottom:371.906667pt;}
.y51{bottom:374.146667pt;}
.yf2{bottom:378.466667pt;}
.y156{bottom:380.226667pt;}
.y174{bottom:381.186667pt;}
.y18f{bottom:382.146667pt;}
.yab{bottom:384.226667pt;}
.y109{bottom:384.386667pt;}
.ybe{bottom:386.946667pt;}
.yae{bottom:387.426667pt;}
.y18b{bottom:394.466667pt;}
.y13a{bottom:395.426667pt;}
.y3a{bottom:395.906667pt;}
.yb{bottom:397.506667pt;}
.y9c{bottom:397.666667pt;}
.y120{bottom:399.586667pt;}
.y23{bottom:399.906667pt;}
.yd1{bottom:402.466667pt;}
.y66{bottom:404.066667pt;}
.y7a{bottom:407.586667pt;}
.y155{bottom:407.906667pt;}
.yfd{bottom:408.066667pt;}
.y173{bottom:408.706667pt;}
.y50{bottom:410.946667pt;}
.yaa{bottom:421.026667pt;}
.y108{bottom:421.186667pt;}
.y17d{bottom:422.146667pt;}
.y139{bottom:423.106667pt;}
.yad{bottom:424.226667pt;}
.y11f{bottom:427.106667pt;}
.ybd{bottom:431.746667pt;}
.y39{bottom:432.706667pt;}
.y9b{bottom:434.466667pt;}
.y154{bottom:435.426667pt;}
.y164{bottom:436.386667pt;}
.y22{bottom:436.706667pt;}
.yfc{bottom:437.693333pt;}
.yd0{bottom:439.266667pt;}
.ya{bottom:440.386667pt;}
.y79{bottom:444.386667pt;}
.y4f{bottom:447.746667pt;}
.y17c{bottom:449.666667pt;}
.y138{bottom:450.626667pt;}
.y65{bottom:454.306667pt;}
.ya9{bottom:457.826667pt;}
.y107{bottom:457.986667pt;}
.y8a{bottom:461.026667pt;}
.y153{bottom:463.106667pt;}
.y163{bottom:463.906667pt;}
.yf6{bottom:467.293333pt;}
.y11e{bottom:468.066667pt;}
.ybc{bottom:468.546667pt;}
.y38{bottom:469.506667pt;}
.y9a{bottom:471.266667pt;}
.y21{bottom:473.506667pt;}
.ycf{bottom:476.066667pt;}
.y172{bottom:477.346667pt;}
.y137{bottom:478.146667pt;}
.y78{bottom:481.186667pt;}
.y9{bottom:483.266667pt;}
.y4e{bottom:484.546667pt;}
.y152{bottom:490.626667pt;}
.y64{bottom:491.106667pt;}
.y149{bottom:491.586667pt;}
.ya8{bottom:494.626667pt;}
.y106{bottom:494.786667pt;}
.y11d{bottom:495.746667pt;}
.yf1{bottom:496.893333pt;}
.y89{bottom:497.826667pt;}
.y162{bottom:504.866667pt;}
.ybb{bottom:505.346667pt;}
.y18e{bottom:505.826667pt;}
.y37{bottom:506.306667pt;}
.yb5{bottom:508.066667pt;}
.y20{bottom:510.306667pt;}
.yce{bottom:512.866667pt;}
.y77{bottom:517.986667pt;}
.y151{bottom:518.146667pt;}
.y136{bottom:519.106667pt;}
.y4d{bottom:521.346667pt;}
.y8{bottom:526.306667pt;}
.ya7{bottom:531.426667pt;}
.y161{bottom:532.546667pt;}
.y88{bottom:534.626667pt;}
.y11c{bottom:536.546667pt;}
.y63{bottom:541.346667pt;}
.yba{bottom:542.146667pt;}
.yef{bottom:542.973333pt;}
.ye1{bottom:544.866667pt;}
.y150{bottom:545.826667pt;}
.y135{bottom:546.786667pt;}
.y1f{bottom:547.106667pt;}
.y76{bottom:554.786667pt;}
.y36{bottom:556.573333pt;}
.y4c{bottom:558.173333pt;}
.y160{bottom:560.093333pt;}
.ycd{bottom:562.973333pt;}
.y11b{bottom:564.253333pt;}
.ya6{bottom:568.253333pt;}
.y7{bottom:569.213333pt;}
.y87{bottom:571.453333pt;}
.y14f{bottom:573.373333pt;}
.y18d{bottom:574.333333pt;}
.y62{bottom:578.013333pt;}
.ye0{bottom:581.693333pt;}
.y1e{bottom:583.933333pt;}
.y17b{bottom:586.813333pt;}
.yb9{bottom:586.973333pt;}
.y134{bottom:587.773333pt;}
.yed{bottom:588.933333pt;}
.y75{bottom:591.453333pt;}
.y11a{bottom:591.773333pt;}
.y35{bottom:593.373333pt;}
.y4b{bottom:594.973333pt;}
.y14e{bottom:601.053333pt;}
.y18c{bottom:602.013333pt;}
.y86{bottom:608.253333pt;}
.y6{bottom:609.053333pt;}
.ycc{bottom:613.053333pt;}
.y17a{bottom:614.333333pt;}
.y61{bottom:614.813333pt;}
.y133{bottom:615.293333pt;}
.ya5{bottom:618.493333pt;}
.y119{bottom:619.453333pt;}
.y1d{bottom:620.733333pt;}
.yb8{bottom:623.773333pt;}
.y14d{bottom:628.573333pt;}
.y34{bottom:630.173333pt;}
.y5{bottom:631.613333pt;}
.y4a{bottom:631.773333pt;}
.y74{bottom:641.693333pt;}
.y171{bottom:642.013333pt;}
.y132{bottom:642.973333pt;}
.y85{bottom:644.893333pt;}
.yac{bottom:645.053333pt;}
.y4{bottom:649.213333pt;}
.ycb{bottom:649.853333pt;}
.y60{bottom:651.613333pt;}
.ya4{bottom:655.293333pt;}
.y148{bottom:656.253333pt;}
.y1c{bottom:657.533333pt;}
.y118{bottom:660.413333pt;}
.yec{bottom:665.413333pt;}
.y33{bottom:666.973333pt;}
.y49{bottom:668.573333pt;}
.y14c{bottom:669.533333pt;}
.y187{bottom:670.493333pt;}
.y73{bottom:678.493333pt;}
.y84{bottom:681.853333pt;}
.y183{bottom:682.973333pt;}
.y131{bottom:683.773333pt;}
.yca{bottom:686.653333pt;}
.y117{bottom:687.933333pt;}
.ydf{bottom:692.093333pt;}
.y1b{bottom:694.333333pt;}
.y14b{bottom:697.213333pt;}
.y5f{bottom:701.853333pt;}
.y32{bottom:703.773333pt;}
.y48{bottom:705.373333pt;}
.y170{bottom:710.493333pt;}
.y130{bottom:711.453333pt;}
.y72{bottom:715.293333pt;}
.y116{bottom:715.613333pt;}
.y83{bottom:718.653333pt;}
.y147{bottom:724.733333pt;}
.yde{bottom:728.893333pt;}
.yeb{bottom:728.960000pt;}
.y1a{bottom:731.133333pt;}
.yc9{bottom:731.453333pt;}
.y16f{bottom:738.173333pt;}
.y5e{bottom:738.493333pt;}
.y186{bottom:738.973333pt;}
.y94{bottom:742.173333pt;}
.y115{bottom:743.133333pt;}
.y12f{bottom:752.413333pt;}
.y31{bottom:753.853333pt;}
.y47{bottom:755.453333pt;}
.y71{bottom:765.533333pt;}
.ydd{bottom:765.693333pt;}
.yc8{bottom:768.253333pt;}
.y93{bottom:778.973333pt;}
.y146{bottom:779.933333pt;}
.y19{bottom:781.213333pt;}
.y114{bottom:784.093333pt;}
.y3{bottom:786.373333pt;}
.y5d{bottom:788.933333pt;}
.y30{bottom:790.693333pt;}
.y46{bottom:792.293333pt;}
.y12e{bottom:793.413333pt;}
.y70{bottom:802.373333pt;}
.ydc{bottom:802.533333pt;}
.y16e{bottom:806.693333pt;}
.y185{bottom:807.653333pt;}
.y113{bottom:811.813333pt;}
.yc7{bottom:813.093333pt;}
.y92{bottom:815.813333pt;}
.y18{bottom:818.053333pt;}
.y12d{bottom:820.933333pt;}
.y5c{bottom:825.573333pt;}
.y2f{bottom:827.493333pt;}
.y45{bottom:829.093333pt;}
.y16d{bottom:834.213333pt;}
.y6f{bottom:839.173333pt;}
.ydb{bottom:839.333333pt;}
.y145{bottom:848.453333pt;}
.yc6{bottom:849.893333pt;}
.y91{bottom:852.613333pt;}
.y17{bottom:854.853333pt;}
.y12c{bottom:861.893333pt;}
.y2e{bottom:864.293333pt;}
.y44{bottom:865.893333pt;}
.y18a{bottom:875.173333pt;}
.y5b{bottom:875.813333pt;}
.y6e{bottom:875.973333pt;}
.yda{bottom:876.133333pt;}
.y112{bottom:880.293333pt;}
.y90{bottom:889.413333pt;}
.yc5{bottom:894.693333pt;}
.y2d{bottom:901.093333pt;}
.y43{bottom:902.693333pt;}
.y189{bottom:902.853333pt;}
.y16{bottom:905.093333pt;}
.y111{bottom:907.813333pt;}
.y5a{bottom:912.613333pt;}
.y144{bottom:917.093333pt;}
.y6d{bottom:926.053333pt;}
.y8f{bottom:926.213333pt;}
.y12b{bottom:930.373333pt;}
.yc4{bottom:931.493333pt;}
.y110{bottom:935.493333pt;}
.y2c{bottom:937.893333pt;}
.y42{bottom:939.493333pt;}
.y15{bottom:941.893333pt;}
.y143{bottom:944.613333pt;}
.y2b{bottom:957.253333pt;}
.y12a{bottom:958.053333pt;}
.y59{bottom:962.693333pt;}
.yd9{bottom:963.013333pt;}
.y41{bottom:976.293333pt;}
.y14{bottom:978.693333pt;}
.y129{bottom:985.573333pt;}
.y58{bottom:1012.933333pt;}
.y2{bottom:1013.093333pt;}
.y105{bottom:1013.253333pt;}
.y102{bottom:1057.760000pt;}
.h15{height:28.960000pt;}
.h17{height:28.992000pt;}
.h11{height:45.312000pt;}
.h12{height:45.440000pt;}
.h2{height:46.593750pt;}
.hf{height:56.320000pt;}
.hb{height:57.375000pt;}
.h19{height:57.758750pt;}
.hc{height:62.781250pt;}
.h3{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:65.627188pt;}
.ha{height:66.750000pt;}
.h14{height:73.490625pt;}
.h10{height:75.465000pt;}
.h4{height:77.811562pt;}
.h7{height:83.540625pt;}
.h18{height:85.785000pt;}
.h16{height:88.192000pt;}
.h6{height:104.896875pt;}
.h13{height:117.792000pt;}
.h5{height:146.353125pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:140.000000pt;}
.wc{width:140.986667pt;}
.w9{width:152.186667pt;}
.wa{width:205.786667pt;}
.wb{width:281.626667pt;}
.w8{width:340.866667pt;}
.w7{width:640.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w6{width:982.400000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x28{left:6.880000pt;}
.x21{left:7.840000pt;}
.x23{left:10.240000pt;}
.x27{left:16.320000pt;}
.x20{left:30.720000pt;}
.x25{left:77.280000pt;}
.x1a{left:94.559983pt;}
.x26{left:107.080000pt;}
.xa{left:113.471988pt;}
.x8{left:126.591988pt;}
.x13{left:137.466655pt;}
.x11{left:151.226655pt;}
.x6{left:155.706655pt;}
.x10{left:160.666655pt;}
.x1c{left:166.586650pt;}
.xd{left:170.266655pt;}
.x14{left:185.466655pt;}
.x15{left:195.066655pt;}
.x12{left:198.586655pt;}
.x7{left:229.986655pt;}
.x18{left:241.186655pt;}
.x22{left:248.026667pt;}
.x1e{left:251.266667pt;}
.x9{left:258.466655pt;}
.x5{left:262.786655pt;}
.xb{left:302.466655pt;}
.xf{left:310.946655pt;}
.x1d{left:311.906667pt;}
.xc{left:317.986655pt;}
.x2b{left:331.426655pt;}
.x17{left:348.866655pt;}
.x2a{left:386.333322pt;}
.x16{left:388.893322pt;}
.xe{left:392.893322pt;}
.x2{left:396.893322pt;}
.x24{left:454.466667pt;}
.x4{left:517.853322pt;}
.x3{left:563.973322pt;}
.x29{left:596.093333pt;}
.x19{left:677.573322pt;}
.x1{left:680.453322pt;}
.x1f{left:736.733333pt;}
.x1b{left:1028.159983pt;}
}




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