
    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_a3f4449d82fab0e034caf561.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8401781560604cc815f8339e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_03ba3eeddea50aa974c55a6c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0eba667ab7d1e0fe4cb1e978.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d96cd82126245166cae3116c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2f2e9343087c856231e015c9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b2cf52ac04f48d72a4cfc8a3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_0af377274411a4f58e5648cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_991c07a61db38cf8b98d7839.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_7fa8f957560c55a1cd28246b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.666000px;}
.ls18{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.100200px;}
.ls7{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.149760px;}
.lse{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.460080px;}
.ls14{letter-spacing:0.460200px;}
.lsf{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.828000px;}
.ls1a{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.080000px;}
.lsb{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.ls10{letter-spacing:46.170720px;}
.ls12{letter-spacing:64.002720px;}
.lsc{letter-spacing:64.170720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsf{word-spacing:-16.020000px;}
.wsc{word-spacing:-15.400200px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.040200px;}
.ws5{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.274000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._13{margin-left:-2.200320px;}
._2{margin-left:-1.152000px;}
._0{width:1.185840px;}
._6{width:3.078480px;}
._9{width:4.643520px;}
._b{width:6.334560px;}
._4{width:7.624080px;}
._3{width:8.809920px;}
._5{width:10.752240px;}
._a{width:12.430080px;}
._12{width:13.744800px;}
._f{width:16.684560px;}
._7{width:17.873280px;}
._10{width:19.416960px;}
._8{width:21.565680px;}
._17{width:22.608720px;}
._11{width:23.724720px;}
._1a{width:27.922080px;}
._1b{width:29.065680px;}
._14{width:30.417840px;}
._1e{width:32.726160px;}
._18{width:35.040240px;}
._19{width:36.313200px;}
._16{width:38.545200px;}
._15{width:40.278240px;}
._c{width:56.406720px;}
._1c{width:65.821680px;}
._1d{width:67.307040px;}
._e{width:79.421040px;}
._d{width:104.400720px;}
._1{width:1099.908000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.yab{bottom:5.760000px;}
.y3b{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.yd0{bottom:8.280000px;}
.yec{bottom:10.080000px;}
.yea{bottom:10.305000px;}
.y39{bottom:11.160000px;}
.ye7{bottom:14.220000px;}
.y49{bottom:25.740000px;}
.y38{bottom:30.960000px;}
.y6{bottom:36.000000px;}
.y48{bottom:45.540000px;}
.y37{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y47{bottom:65.340000px;}
.y36{bottom:70.560000px;}
.yc3{bottom:79.416000px;}
.y4{bottom:81.720000px;}
.y46{bottom:85.170000px;}
.ya8{bottom:86.976000px;}
.yf7{bottom:88.596000px;}
.y28{bottom:89.496000px;}
.y35{bottom:90.390000px;}
.yc2{bottom:93.456000px;}
.y126{bottom:95.616000px;}
.y80{bottom:97.416000px;}
.y45{bottom:105.150000px;}
.ya7{bottom:106.776000px;}
.yf6{bottom:108.396000px;}
.y9{bottom:108.570000px;}
.y27{bottom:109.296000px;}
.y34{bottom:110.370000px;}
.yc1{bottom:113.256000px;}
.y125{bottom:115.416000px;}
.y7f{bottom:117.216000px;}
.y3{bottom:118.110000px;}
.y44{bottom:124.950000px;}
.ya6{bottom:126.756000px;}
.yf5{bottom:128.196000px;}
.y26{bottom:129.096000px;}
.y33{bottom:130.170000px;}
.y8{bottom:130.530000px;}
.yc0{bottom:133.056000px;}
.y124{bottom:135.216000px;}
.y7e{bottom:137.016000px;}
.y43{bottom:144.750000px;}
.ya5{bottom:146.556000px;}
.yf4{bottom:147.996000px;}
.y25{bottom:149.076000px;}
.y32{bottom:149.970000px;}
.ybf{bottom:152.850000px;}
.y123{bottom:155.010000px;}
.y7d{bottom:156.810000px;}
.y42{bottom:164.550000px;}
.ya4{bottom:167.430000px;}
.yf3{bottom:167.970000px;}
.y24{bottom:168.870000px;}
.y31{bottom:169.770000px;}
.ybe{bottom:172.830000px;}
.y122{bottom:174.810000px;}
.y7c{bottom:176.790000px;}
.y41{bottom:184.350000px;}
.yf2{bottom:187.770000px;}
.ya3{bottom:188.310000px;}
.y23{bottom:188.670000px;}
.y30{bottom:189.570000px;}
.ybd{bottom:192.630000px;}
.y121{bottom:194.790000px;}
.y113{bottom:196.590000px;}
.y40{bottom:204.330000px;}
.y7b{bottom:205.590000px;}
.yf1{bottom:207.570000px;}
.y22{bottom:208.470000px;}
.ya2{bottom:209.190000px;}
.y2f{bottom:209.550000px;}
.ybc{bottom:212.430000px;}
.y120{bottom:214.590000px;}
.y112{bottom:216.390000px;}
.y3f{bottom:224.130000px;}
.y7a{bottom:225.390000px;}
.y21{bottom:228.270000px;}
.y2e{bottom:229.350000px;}
.ya1{bottom:230.070000px;}
.ybb{bottom:232.230000px;}
.y11f{bottom:234.390000px;}
.y111{bottom:236.190000px;}
.yf0{bottom:236.370000px;}
.y3e{bottom:243.930000px;}
.y79{bottom:245.190000px;}
.y20{bottom:248.250000px;}
.y2d{bottom:249.150000px;}
.ya0{bottom:251.130000px;}
.yba{bottom:252.030000px;}
.y11e{bottom:254.190000px;}
.y110{bottom:255.990000px;}
.yef{bottom:256.170000px;}
.y3d{bottom:263.730000px;}
.y78{bottom:264.990000px;}
.y1f{bottom:268.050000px;}
.y2c{bottom:268.950000px;}
.y9f{bottom:272.010000px;}
.y11d{bottom:273.990000px;}
.y10f{bottom:275.970000px;}
.yee{bottom:276.150000px;}
.y3c{bottom:283.530000px;}
.y77{bottom:284.970000px;}
.y1e{bottom:287.850000px;}
.y2b{bottom:288.750000px;}
.yed{bottom:290.190000px;}
.y9e{bottom:292.890000px;}
.y11c{bottom:293.970000px;}
.y10e{bottom:295.770000px;}
.yb9{bottom:297.570000px;}
.y76{bottom:304.770000px;}
.y1d{bottom:307.650000px;}
.y2a{bottom:308.730000px;}
.yeb{bottom:309.990000px;}
.y9d{bottom:312.690000px;}
.y11b{bottom:313.770000px;}
.y10d{bottom:315.570000px;}
.y75{bottom:324.570000px;}
.yb8{bottom:326.370000px;}
.y1c{bottom:327.450000px;}
.y9c{bottom:332.490000px;}
.y11a{bottom:333.570000px;}
.ye9{bottom:334.110000px;}
.y10c{bottom:335.370000px;}
.y74{bottom:344.415000px;}
.yb7{bottom:346.215000px;}
.y1b{bottom:347.475000px;}
.y9b{bottom:352.515000px;}
.y119{bottom:353.415000px;}
.y10b{bottom:355.215000px;}
.ye8{bottom:358.455000px;}
.y73{bottom:364.215000px;}
.yb6{bottom:366.195000px;}
.y1a{bottom:367.275000px;}
.y9a{bottom:372.315000px;}
.y118{bottom:373.215000px;}
.y10a{bottom:375.195000px;}
.ye6{bottom:378.255000px;}
.y72{bottom:384.195000px;}
.yb5{bottom:385.995000px;}
.y19{bottom:387.075000px;}
.y99{bottom:392.115000px;}
.y117{bottom:393.195000px;}
.y109{bottom:394.995000px;}
.y71{bottom:403.995000px;}
.y18{bottom:406.875000px;}
.y98{bottom:411.915000px;}
.ye5{bottom:412.275000px;}
.y116{bottom:412.995000px;}
.y108{bottom:414.795000px;}
.yb4{bottom:418.035000px;}
.y70{bottom:423.795000px;}
.y17{bottom:426.675000px;}
.y97{bottom:431.715000px;}
.ye4{bottom:432.075000px;}
.y115{bottom:432.795000px;}
.y107{bottom:434.595000px;}
.yb3{bottom:437.835000px;}
.y6f{bottom:443.595000px;}
.y16{bottom:446.655000px;}
.y96{bottom:451.695000px;}
.ye3{bottom:451.875000px;}
.y114{bottom:452.595000px;}
.yb2{bottom:457.635000px;}
.y106{bottom:463.395000px;}
.y15{bottom:466.455000px;}
.y95{bottom:471.495000px;}
.ye2{bottom:471.855000px;}
.y6e{bottom:472.395000px;}
.yb1{bottom:477.435000px;}
.y105{bottom:483.375000px;}
.y14{bottom:486.255000px;}
.y94{bottom:491.295000px;}
.ye1{bottom:491.655000px;}
.y6d{bottom:492.375000px;}
.yb0{bottom:497.415000px;}
.y104{bottom:503.175000px;}
.y13{bottom:506.055000px;}
.y93{bottom:511.095000px;}
.ye0{bottom:511.455000px;}
.y6c{bottom:512.175000px;}
.yaf{bottom:517.215000px;}
.y103{bottom:522.975000px;}
.y29{bottom:525.315000px;}
.y6b{bottom:531.975000px;}
.yae{bottom:537.015000px;}
.y92{bottom:539.895000px;}
.ydf{bottom:540.255000px;}
.y102{bottom:542.775000px;}
.y6a{bottom:551.775000px;}
.yad{bottom:556.815000px;}
.yde{bottom:560.055000px;}
.y91{bottom:560.955000px;}
.y101{bottom:562.575000px;}
.y69{bottom:571.575000px;}
.yac{bottom:576.615000px;}
.ydd{bottom:580.035000px;}
.y90{bottom:581.835000px;}
.y100{bottom:582.555000px;}
.y68{bottom:591.555000px;}
.yaa{bottom:596.595000px;}
.ydc{bottom:599.835000px;}
.yff{bottom:602.355000px;}
.y8f{bottom:602.715000px;}
.y67{bottom:611.385000px;}
.ydb{bottom:619.665000px;}
.ya9{bottom:622.185000px;}
.y8e{bottom:623.625000px;}
.y66{bottom:631.185000px;}
.yfe{bottom:641.985000px;}
.y8d{bottom:643.425000px;}
.yda{bottom:648.465000px;}
.y65{bottom:650.985000px;}
.yfd{bottom:661.785000px;}
.y8c{bottom:663.405000px;}
.yd9{bottom:668.265000px;}
.y64{bottom:670.785000px;}
.yfc{bottom:681.765000px;}
.y8b{bottom:683.205000px;}
.yd8{bottom:688.245000px;}
.y63{bottom:690.765000px;}
.yfb{bottom:701.565000px;}
.y8a{bottom:703.005000px;}
.yd7{bottom:708.045000px;}
.y62{bottom:710.565000px;}
.yfa{bottom:721.365000px;}
.y89{bottom:723.885000px;}
.yd6{bottom:727.845000px;}
.y61{bottom:730.365000px;}
.yf9{bottom:741.165000px;}
.y88{bottom:744.765000px;}
.yd5{bottom:747.645000px;}
.y60{bottom:750.165000px;}
.yf8{bottom:760.965000px;}
.y87{bottom:765.645000px;}
.yd4{bottom:767.445000px;}
.y5f{bottom:769.965000px;}
.y86{bottom:786.705000px;}
.yd3{bottom:787.425000px;}
.y5e{bottom:789.945000px;}
.yd2{bottom:807.225000px;}
.y85{bottom:807.585000px;}
.y5d{bottom:809.745000px;}
.yd1{bottom:827.025000px;}
.y84{bottom:827.385000px;}
.y3a{bottom:828.105000px;}
.y5c{bottom:829.545000px;}
.ycf{bottom:841.065000px;}
.y83{bottom:847.185000px;}
.y5b{bottom:849.345000px;}
.y12{bottom:861.585000px;}
.yce{bottom:863.385000px;}
.y82{bottom:866.985000px;}
.y5a{bottom:869.145000px;}
.ycd{bottom:883.230000px;}
.y11{bottom:886.830000px;}
.y81{bottom:888.090000px;}
.y59{bottom:889.170000px;}
.y10{bottom:901.950000px;}
.ycc{bottom:903.210000px;}
.y58{bottom:908.970000px;}
.ycb{bottom:923.010000px;}
.yf{bottom:923.190000px;}
.y57{bottom:928.770000px;}
.yca{bottom:942.810000px;}
.ye{bottom:946.590000px;}
.y56{bottom:948.570000px;}
.yc9{bottom:962.610000px;}
.y55{bottom:968.370000px;}
.yd{bottom:978.450000px;}
.yc8{bottom:982.410000px;}
.y54{bottom:988.350000px;}
.yc7{bottom:1002.390000px;}
.y53{bottom:1008.150000px;}
.yc{bottom:1010.130000px;}
.yc6{bottom:1022.190000px;}
.y52{bottom:1027.950000px;}
.ya{bottom:1036.050000px;}
.yc5{bottom:1041.990000px;}
.y51{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.yc4{bottom:1061.790000px;}
.y50{bottom:1067.550000px;}
.y4f{bottom:1087.530000px;}
.y4e{bottom:1107.330000px;}
.y4d{bottom:1127.130000px;}
.y4c{bottom:1146.960000px;}
.y4b{bottom:1166.760000px;}
.y4a{bottom:1195.740000px;}
.h13{height:19.800000px;}
.h12{height:19.836000px;}
.he{height:19.980000px;}
.h14{height:22.320000px;}
.h17{height:24.120000px;}
.h16{height:24.336000px;}
.h15{height:28.260000px;}
.ha{height:38.158594px;}
.h8{height:58.651172px;}
.hb{height:60.226875px;}
.hc{height:61.423863px;}
.h11{height:62.211094px;}
.h5{height:65.010937px;}
.h10{height:65.884219px;}
.h9{height:66.757500px;}
.h6{height:70.664062px;}
.h3{height:73.722656px;}
.h7{height:96.508125px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.hf{height:297.570000px;}
.hd{height:322.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:52.920000px;}
.wc{width:61.560000px;}
.w9{width:65.160000px;}
.wa{width:91.476000px;}
.w16{width:110.880000px;}
.w10{width:114.876000px;}
.w15{width:115.416000px;}
.w18{width:123.120000px;}
.wd{width:124.776000px;}
.w14{width:126.936000px;}
.w2{width:127.656000px;}
.w12{width:131.400000px;}
.wf{width:131.760000px;}
.w11{width:148.536000px;}
.w4{width:157.140000px;}
.we{width:189.390000px;}
.w13{width:210.630000px;}
.w17{width:236.235000px;}
.w8{width:270.390000px;}
.w6{width:285.555000px;}
.w7{width:494.535000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:45.900000px;}
.xa{left:53.999987px;}
.x11{left:58.319987px;}
.xf{left:66.779987px;}
.x26{left:75.239987px;}
.xe{left:80.999987px;}
.x19{left:88.596000px;}
.x10{left:93.815987px;}
.x1d{left:98.676000px;}
.x27{left:102.275987px;}
.xb{left:108.035987px;}
.x7{left:110.385000px;}
.x13{left:113.436000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x12{left:135.035987px;}
.xd{left:157.529987px;}
.x22{left:162.029987px;}
.x3{left:173.550000px;}
.x24{left:266.790000px;}
.x23{left:270.029987px;}
.x1a{left:277.995000px;}
.x1e{left:309.315000px;}
.xc{left:343.515000px;}
.x14{left:383.835000px;}
.x1b{left:409.755000px;}
.x1f{left:441.075000px;}
.x15{left:448.995000px;}
.x25{left:503.025000px;}
.x1c{left:524.625000px;}
.x16{left:540.465000px;}
.x20{left:568.005000px;}
.x17{left:593.385000px;}
.x18{left:654.945000px;}
.x9{left:673.350000px;}
.x21{left:683.430000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.592000pt;}
.ls18{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.089067pt;}
.ls7{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.408960pt;}
.ls14{letter-spacing:0.409067pt;}
.lsf{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.960000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls10{letter-spacing:41.040640pt;}
.ls12{letter-spacing:56.891307pt;}
.lsc{letter-spacing:57.040640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.240000pt;}
.wsc{word-spacing:-13.689067pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.369067pt;}
.ws5{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.688000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._13{margin-left:-1.955840pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.054080pt;}
._6{width:2.736427pt;}
._9{width:4.127573pt;}
._b{width:5.630720pt;}
._4{width:6.776960pt;}
._3{width:7.831040pt;}
._5{width:9.557547pt;}
._a{width:11.048960pt;}
._12{width:12.217600pt;}
._f{width:14.830720pt;}
._7{width:15.887360pt;}
._10{width:17.259520pt;}
._8{width:19.169493pt;}
._17{width:20.096640pt;}
._11{width:21.088640pt;}
._1a{width:24.819627pt;}
._1b{width:25.836160pt;}
._14{width:27.038080pt;}
._1e{width:29.089920pt;}
._18{width:31.146880pt;}
._19{width:32.278400pt;}
._16{width:34.262400pt;}
._15{width:35.802880pt;}
._c{width:50.139307pt;}
._1c{width:58.508160pt;}
._1d{width:59.828480pt;}
._e{width:70.596480pt;}
._d{width:92.800640pt;}
._1{width:977.696000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.yab{bottom:5.120000pt;}
.y3b{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.yd0{bottom:7.360000pt;}
.yec{bottom:8.960000pt;}
.yea{bottom:9.160000pt;}
.y39{bottom:9.920000pt;}
.ye7{bottom:12.640000pt;}
.y49{bottom:22.880000pt;}
.y38{bottom:27.520000pt;}
.y6{bottom:32.000000pt;}
.y48{bottom:40.480000pt;}
.y37{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y47{bottom:58.080000pt;}
.y36{bottom:62.720000pt;}
.yc3{bottom:70.592000pt;}
.y4{bottom:72.640000pt;}
.y46{bottom:75.706667pt;}
.ya8{bottom:77.312000pt;}
.yf7{bottom:78.752000pt;}
.y28{bottom:79.552000pt;}
.y35{bottom:80.346667pt;}
.yc2{bottom:83.072000pt;}
.y126{bottom:84.992000pt;}
.y80{bottom:86.592000pt;}
.y45{bottom:93.466667pt;}
.ya7{bottom:94.912000pt;}
.yf6{bottom:96.352000pt;}
.y9{bottom:96.506667pt;}
.y27{bottom:97.152000pt;}
.y34{bottom:98.106667pt;}
.yc1{bottom:100.672000pt;}
.y125{bottom:102.592000pt;}
.y7f{bottom:104.192000pt;}
.y3{bottom:104.986667pt;}
.y44{bottom:111.066667pt;}
.ya6{bottom:112.672000pt;}
.yf5{bottom:113.952000pt;}
.y26{bottom:114.752000pt;}
.y33{bottom:115.706667pt;}
.y8{bottom:116.026667pt;}
.yc0{bottom:118.272000pt;}
.y124{bottom:120.192000pt;}
.y7e{bottom:121.792000pt;}
.y43{bottom:128.666667pt;}
.ya5{bottom:130.272000pt;}
.yf4{bottom:131.552000pt;}
.y25{bottom:132.512000pt;}
.y32{bottom:133.306667pt;}
.ybf{bottom:135.866667pt;}
.y123{bottom:137.786667pt;}
.y7d{bottom:139.386667pt;}
.y42{bottom:146.266667pt;}
.ya4{bottom:148.826667pt;}
.yf3{bottom:149.306667pt;}
.y24{bottom:150.106667pt;}
.y31{bottom:150.906667pt;}
.ybe{bottom:153.626667pt;}
.y122{bottom:155.386667pt;}
.y7c{bottom:157.146667pt;}
.y41{bottom:163.866667pt;}
.yf2{bottom:166.906667pt;}
.ya3{bottom:167.386667pt;}
.y23{bottom:167.706667pt;}
.y30{bottom:168.506667pt;}
.ybd{bottom:171.226667pt;}
.y121{bottom:173.146667pt;}
.y113{bottom:174.746667pt;}
.y40{bottom:181.626667pt;}
.y7b{bottom:182.746667pt;}
.yf1{bottom:184.506667pt;}
.y22{bottom:185.306667pt;}
.ya2{bottom:185.946667pt;}
.y2f{bottom:186.266667pt;}
.ybc{bottom:188.826667pt;}
.y120{bottom:190.746667pt;}
.y112{bottom:192.346667pt;}
.y3f{bottom:199.226667pt;}
.y7a{bottom:200.346667pt;}
.y21{bottom:202.906667pt;}
.y2e{bottom:203.866667pt;}
.ya1{bottom:204.506667pt;}
.ybb{bottom:206.426667pt;}
.y11f{bottom:208.346667pt;}
.y111{bottom:209.946667pt;}
.yf0{bottom:210.106667pt;}
.y3e{bottom:216.826667pt;}
.y79{bottom:217.946667pt;}
.y20{bottom:220.666667pt;}
.y2d{bottom:221.466667pt;}
.ya0{bottom:223.226667pt;}
.yba{bottom:224.026667pt;}
.y11e{bottom:225.946667pt;}
.y110{bottom:227.546667pt;}
.yef{bottom:227.706667pt;}
.y3d{bottom:234.426667pt;}
.y78{bottom:235.546667pt;}
.y1f{bottom:238.266667pt;}
.y2c{bottom:239.066667pt;}
.y9f{bottom:241.786667pt;}
.y11d{bottom:243.546667pt;}
.y10f{bottom:245.306667pt;}
.yee{bottom:245.466667pt;}
.y3c{bottom:252.026667pt;}
.y77{bottom:253.306667pt;}
.y1e{bottom:255.866667pt;}
.y2b{bottom:256.666667pt;}
.yed{bottom:257.946667pt;}
.y9e{bottom:260.346667pt;}
.y11c{bottom:261.306667pt;}
.y10e{bottom:262.906667pt;}
.yb9{bottom:264.506667pt;}
.y76{bottom:270.906667pt;}
.y1d{bottom:273.466667pt;}
.y2a{bottom:274.426667pt;}
.yeb{bottom:275.546667pt;}
.y9d{bottom:277.946667pt;}
.y11b{bottom:278.906667pt;}
.y10d{bottom:280.506667pt;}
.y75{bottom:288.506667pt;}
.yb8{bottom:290.106667pt;}
.y1c{bottom:291.066667pt;}
.y9c{bottom:295.546667pt;}
.y11a{bottom:296.506667pt;}
.ye9{bottom:296.986667pt;}
.y10c{bottom:298.106667pt;}
.y74{bottom:306.146667pt;}
.yb7{bottom:307.746667pt;}
.y1b{bottom:308.866667pt;}
.y9b{bottom:313.346667pt;}
.y119{bottom:314.146667pt;}
.y10b{bottom:315.746667pt;}
.ye8{bottom:318.626667pt;}
.y73{bottom:323.746667pt;}
.yb6{bottom:325.506667pt;}
.y1a{bottom:326.466667pt;}
.y9a{bottom:330.946667pt;}
.y118{bottom:331.746667pt;}
.y10a{bottom:333.506667pt;}
.ye6{bottom:336.226667pt;}
.y72{bottom:341.506667pt;}
.yb5{bottom:343.106667pt;}
.y19{bottom:344.066667pt;}
.y99{bottom:348.546667pt;}
.y117{bottom:349.506667pt;}
.y109{bottom:351.106667pt;}
.y71{bottom:359.106667pt;}
.y18{bottom:361.666667pt;}
.y98{bottom:366.146667pt;}
.ye5{bottom:366.466667pt;}
.y116{bottom:367.106667pt;}
.y108{bottom:368.706667pt;}
.yb4{bottom:371.586667pt;}
.y70{bottom:376.706667pt;}
.y17{bottom:379.266667pt;}
.y97{bottom:383.746667pt;}
.ye4{bottom:384.066667pt;}
.y115{bottom:384.706667pt;}
.y107{bottom:386.306667pt;}
.yb3{bottom:389.186667pt;}
.y6f{bottom:394.306667pt;}
.y16{bottom:397.026667pt;}
.y96{bottom:401.506667pt;}
.ye3{bottom:401.666667pt;}
.y114{bottom:402.306667pt;}
.yb2{bottom:406.786667pt;}
.y106{bottom:411.906667pt;}
.y15{bottom:414.626667pt;}
.y95{bottom:419.106667pt;}
.ye2{bottom:419.426667pt;}
.y6e{bottom:419.906667pt;}
.yb1{bottom:424.386667pt;}
.y105{bottom:429.666667pt;}
.y14{bottom:432.226667pt;}
.y94{bottom:436.706667pt;}
.ye1{bottom:437.026667pt;}
.y6d{bottom:437.666667pt;}
.yb0{bottom:442.146667pt;}
.y104{bottom:447.266667pt;}
.y13{bottom:449.826667pt;}
.y93{bottom:454.306667pt;}
.ye0{bottom:454.626667pt;}
.y6c{bottom:455.266667pt;}
.yaf{bottom:459.746667pt;}
.y103{bottom:464.866667pt;}
.y29{bottom:466.946667pt;}
.y6b{bottom:472.866667pt;}
.yae{bottom:477.346667pt;}
.y92{bottom:479.906667pt;}
.ydf{bottom:480.226667pt;}
.y102{bottom:482.466667pt;}
.y6a{bottom:490.466667pt;}
.yad{bottom:494.946667pt;}
.yde{bottom:497.826667pt;}
.y91{bottom:498.626667pt;}
.y101{bottom:500.066667pt;}
.y69{bottom:508.066667pt;}
.yac{bottom:512.546667pt;}
.ydd{bottom:515.586667pt;}
.y90{bottom:517.186667pt;}
.y100{bottom:517.826667pt;}
.y68{bottom:525.826667pt;}
.yaa{bottom:530.306667pt;}
.ydc{bottom:533.186667pt;}
.yff{bottom:535.426667pt;}
.y8f{bottom:535.746667pt;}
.y67{bottom:543.453333pt;}
.ydb{bottom:550.813333pt;}
.ya9{bottom:553.053333pt;}
.y8e{bottom:554.333333pt;}
.y66{bottom:561.053333pt;}
.yfe{bottom:570.653333pt;}
.y8d{bottom:571.933333pt;}
.yda{bottom:576.413333pt;}
.y65{bottom:578.653333pt;}
.yfd{bottom:588.253333pt;}
.y8c{bottom:589.693333pt;}
.yd9{bottom:594.013333pt;}
.y64{bottom:596.253333pt;}
.yfc{bottom:606.013333pt;}
.y8b{bottom:607.293333pt;}
.yd8{bottom:611.773333pt;}
.y63{bottom:614.013333pt;}
.yfb{bottom:623.613333pt;}
.y8a{bottom:624.893333pt;}
.yd7{bottom:629.373333pt;}
.y62{bottom:631.613333pt;}
.yfa{bottom:641.213333pt;}
.y89{bottom:643.453333pt;}
.yd6{bottom:646.973333pt;}
.y61{bottom:649.213333pt;}
.yf9{bottom:658.813333pt;}
.y88{bottom:662.013333pt;}
.yd5{bottom:664.573333pt;}
.y60{bottom:666.813333pt;}
.yf8{bottom:676.413333pt;}
.y87{bottom:680.573333pt;}
.yd4{bottom:682.173333pt;}
.y5f{bottom:684.413333pt;}
.y86{bottom:699.293333pt;}
.yd3{bottom:699.933333pt;}
.y5e{bottom:702.173333pt;}
.yd2{bottom:717.533333pt;}
.y85{bottom:717.853333pt;}
.y5d{bottom:719.773333pt;}
.yd1{bottom:735.133333pt;}
.y84{bottom:735.453333pt;}
.y3a{bottom:736.093333pt;}
.y5c{bottom:737.373333pt;}
.ycf{bottom:747.613333pt;}
.y83{bottom:753.053333pt;}
.y5b{bottom:754.973333pt;}
.y12{bottom:765.853333pt;}
.yce{bottom:767.453333pt;}
.y82{bottom:770.653333pt;}
.y5a{bottom:772.573333pt;}
.ycd{bottom:785.093333pt;}
.y11{bottom:788.293333pt;}
.y81{bottom:789.413333pt;}
.y59{bottom:790.373333pt;}
.y10{bottom:801.733333pt;}
.ycc{bottom:802.853333pt;}
.y58{bottom:807.973333pt;}
.ycb{bottom:820.453333pt;}
.yf{bottom:820.613333pt;}
.y57{bottom:825.573333pt;}
.yca{bottom:838.053333pt;}
.ye{bottom:841.413333pt;}
.y56{bottom:843.173333pt;}
.yc9{bottom:855.653333pt;}
.y55{bottom:860.773333pt;}
.yd{bottom:869.733333pt;}
.yc8{bottom:873.253333pt;}
.y54{bottom:878.533333pt;}
.yc7{bottom:891.013333pt;}
.y53{bottom:896.133333pt;}
.yc{bottom:897.893333pt;}
.yc6{bottom:908.613333pt;}
.y52{bottom:913.733333pt;}
.ya{bottom:920.933333pt;}
.yc5{bottom:926.213333pt;}
.y51{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.yc4{bottom:943.813333pt;}
.y50{bottom:948.933333pt;}
.y4f{bottom:966.693333pt;}
.y4e{bottom:984.293333pt;}
.y4d{bottom:1001.893333pt;}
.y4c{bottom:1019.520000pt;}
.y4b{bottom:1037.120000pt;}
.y4a{bottom:1062.880000pt;}
.h13{height:17.600000pt;}
.h12{height:17.632000pt;}
.he{height:17.760000pt;}
.h14{height:19.840000pt;}
.h17{height:21.440000pt;}
.h16{height:21.632000pt;}
.h15{height:25.120000pt;}
.ha{height:33.918750pt;}
.h8{height:52.134375pt;}
.hb{height:53.535000pt;}
.hc{height:54.598989pt;}
.h11{height:55.298750pt;}
.h5{height:57.787500pt;}
.h10{height:58.563750pt;}
.h9{height:59.340000pt;}
.h6{height:62.812500pt;}
.h3{height:65.531250pt;}
.h7{height:85.785000pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.hf{height:264.506667pt;}
.hd{height:286.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:47.040000pt;}
.wc{width:54.720000pt;}
.w9{width:57.920000pt;}
.wa{width:81.312000pt;}
.w16{width:98.560000pt;}
.w10{width:102.112000pt;}
.w15{width:102.592000pt;}
.w18{width:109.440000pt;}
.wd{width:110.912000pt;}
.w14{width:112.832000pt;}
.w2{width:113.472000pt;}
.w12{width:116.800000pt;}
.wf{width:117.120000pt;}
.w11{width:132.032000pt;}
.w4{width:139.680000pt;}
.we{width:168.346667pt;}
.w13{width:187.226667pt;}
.w17{width:209.986667pt;}
.w8{width:240.346667pt;}
.w6{width:253.826667pt;}
.w7{width:439.586667pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:40.800000pt;}
.xa{left:47.999988pt;}
.x11{left:51.839988pt;}
.xf{left:59.359988pt;}
.x26{left:66.879988pt;}
.xe{left:71.999988pt;}
.x19{left:78.752000pt;}
.x10{left:83.391988pt;}
.x1d{left:87.712000pt;}
.x27{left:90.911988pt;}
.xb{left:96.031988pt;}
.x7{left:98.120000pt;}
.x13{left:100.832000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x12{left:120.031988pt;}
.xd{left:140.026655pt;}
.x22{left:144.026655pt;}
.x3{left:154.266667pt;}
.x24{left:237.146667pt;}
.x23{left:240.026655pt;}
.x1a{left:247.106667pt;}
.x1e{left:274.946667pt;}
.xc{left:305.346667pt;}
.x14{left:341.186667pt;}
.x1b{left:364.226667pt;}
.x1f{left:392.066667pt;}
.x15{left:399.106667pt;}
.x25{left:447.133333pt;}
.x1c{left:466.333333pt;}
.x16{left:480.413333pt;}
.x20{left:504.893333pt;}
.x17{left:527.453333pt;}
.x18{left:582.173333pt;}
.x9{left:598.533333pt;}
.x21{left:607.493333pt;}
}




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