
    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_ed0fb572e599ab2b6c371a04.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_f06c93279058f7d19508c8d2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_904b255366517398a5898832.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f9c419709d63f1d1f724a26e.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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f47deb207993537f9262cb6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_61ff59b442c704a91169434f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d03926a02c27496aa6f0ecf9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_34b85c123f5560cca69074fa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_25424124a6fa6c52d6ce3d11.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_81a611eb231f152e383208bc.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_db2a64714dd780e412293941.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_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff10{font-family:ff10;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;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-1.800000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.080640px;}
.ls3{letter-spacing:0.132600px;}
.ls10{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.213120px;}
.ls4{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.312000px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.540000px;}
.ls13{letter-spacing:20.907360px;}
.lsb{letter-spacing:46.026720px;}
.ls11{letter-spacing:49.707360px;}
.lsc{letter-spacing:64.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.252000px;}
.wse{word-spacing:-15.075600px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.348000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._19{margin-left:-7.310160px;}
._0{margin-left:-5.796720px;}
._15{margin-left:-4.305600px;}
._5{margin-left:-3.246480px;}
._3{margin-left:-2.160000px;}
._2{margin-left:-1.152000px;}
._1{width:1.344000px;}
._4{width:2.592000px;}
._11{width:4.512480px;}
._f{width:6.245520px;}
._8{width:7.642320px;}
._9{width:8.840160px;}
._10{width:10.498320px;}
._7{width:11.610720px;}
._6{width:12.662880px;}
._c{width:13.752240px;}
._14{width:16.116960px;}
._12{width:17.210880px;}
._13{width:18.250320px;}
._17{width:20.846160px;}
._1a{width:22.104960px;}
._18{width:23.574720px;}
._e{width:24.651600px;}
._d{width:25.696800px;}
._16{width:28.920000px;}
._a{width:30.013200px;}
._b{width:31.254480px;}
.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;}
.ya3{bottom:3.240000px;}
.y52{bottom:3.780000px;}
.y4f{bottom:3.960000px;}
.yd{bottom:4.500000px;}
.y51{bottom:6.120000px;}
.y18{bottom:9.180000px;}
.yf5{bottom:11.880000px;}
.y5{bottom:13.860000px;}
.y1a{bottom:14.805000px;}
.y3{bottom:18.180000px;}
.yf8{bottom:20.340000px;}
.yf4{bottom:20.520000px;}
.y4e{bottom:21.600000px;}
.y17{bottom:27.900000px;}
.yb{bottom:30.240000px;}
.y1{bottom:36.360000px;}
.y4{bottom:36.756000px;}
.y2{bottom:38.016000px;}
.y4d{bottom:38.880000px;}
.y35{bottom:39.600000px;}
.y16{bottom:44.460000px;}
.ya{bottom:46.440000px;}
.y34{bottom:54.180000px;}
.y4c{bottom:55.980000px;}
.y15{bottom:60.840000px;}
.y33{bottom:68.940000px;}
.y4b{bottom:73.260000px;}
.y9{bottom:73.470000px;}
.y14{bottom:73.620000px;}
.y32{bottom:83.520000px;}
.y13{bottom:90.540000px;}
.y8{bottom:93.090000px;}
.y31{bottom:98.280000px;}
.yd4{bottom:98.856000px;}
.ya1{bottom:99.396000px;}
.y125{bottom:103.536000px;}
.y4a{bottom:107.820000px;}
.yf2{bottom:108.036000px;}
.y7{bottom:111.270000px;}
.y12{bottom:112.500000px;}
.y30{bottom:112.860000px;}
.ya0{bottom:116.676000px;}
.yd3{bottom:116.856000px;}
.y124{bottom:120.816000px;}
.y61{bottom:122.796000px;}
.y49{bottom:125.100000px;}
.y11{bottom:126.900000px;}
.y2f{bottom:127.440000px;}
.y9f{bottom:133.956000px;}
.yd2{bottom:134.856000px;}
.y123{bottom:137.916000px;}
.y60{bottom:140.076000px;}
.y2e{bottom:142.200000px;}
.y48{bottom:142.380000px;}
.y9e{bottom:151.230000px;}
.y10{bottom:152.640000px;}
.yd1{bottom:152.850000px;}
.y122{bottom:155.190000px;}
.y2d{bottom:156.780000px;}
.y5f{bottom:157.350000px;}
.y47{bottom:159.480000px;}
.y9d{bottom:168.510000px;}
.y2c{bottom:171.360000px;}
.y121{bottom:172.470000px;}
.yf{bottom:174.060000px;}
.yd0{bottom:174.090000px;}
.y5e{bottom:174.630000px;}
.y46{bottom:176.760000px;}
.y9c{bottom:185.610000px;}
.y2b{bottom:186.120000px;}
.y120{bottom:189.750000px;}
.ycf{bottom:191.370000px;}
.y5d{bottom:191.730000px;}
.y45{bottom:194.040000px;}
.y2a{bottom:200.700000px;}
.y9b{bottom:202.890000px;}
.y11f{bottom:207.030000px;}
.yce{bottom:208.470000px;}
.y5c{bottom:209.010000px;}
.y44{bottom:211.350000px;}
.y29{bottom:218.010000px;}
.y9a{bottom:220.170000px;}
.y11e{bottom:224.310000px;}
.ycd{bottom:225.750000px;}
.y5b{bottom:226.290000px;}
.y43{bottom:228.630000px;}
.y28{bottom:235.290000px;}
.y99{bottom:237.450000px;}
.y11d{bottom:241.410000px;}
.ycc{bottom:243.030000px;}
.y5a{bottom:243.570000px;}
.y42{bottom:245.910000px;}
.y27{bottom:252.390000px;}
.y98{bottom:254.730000px;}
.y11c{bottom:258.690000px;}
.ycb{bottom:260.310000px;}
.y59{bottom:260.850000px;}
.y41{bottom:263.010000px;}
.y26{bottom:269.670000px;}
.y97{bottom:272.010000px;}
.y11b{bottom:275.970000px;}
.yca{bottom:277.590000px;}
.y58{bottom:277.950000px;}
.y40{bottom:280.290000px;}
.y25{bottom:287.490000px;}
.y96{bottom:289.110000px;}
.y11a{bottom:293.250000px;}
.yc9{bottom:294.870000px;}
.y57{bottom:295.230000px;}
.y3f{bottom:297.570000px;}
.y24{bottom:304.950000px;}
.y95{bottom:306.390000px;}
.y119{bottom:310.530000px;}
.yc8{bottom:311.970000px;}
.y56{bottom:312.510000px;}
.y3e{bottom:314.850000px;}
.y23{bottom:322.230000px;}
.y94{bottom:323.670000px;}
.y118{bottom:327.630000px;}
.yc7{bottom:329.250000px;}
.y55{bottom:329.790000px;}
.y3d{bottom:332.130000px;}
.y22{bottom:339.690000px;}
.y93{bottom:342.075000px;}
.yc6{bottom:344.055000px;}
.y117{bottom:344.955000px;}
.y54{bottom:347.115000px;}
.y3c{bottom:349.230000px;}
.y14c{bottom:350.895000px;}
.y21{bottom:357.150000px;}
.y92{bottom:360.435000px;}
.yc5{bottom:362.055000px;}
.y116{bottom:362.235000px;}
.y53{bottom:364.395000px;}
.y3b{bottom:366.510000px;}
.y14b{bottom:368.355000px;}
.y20{bottom:374.430000px;}
.y91{bottom:377.715000px;}
.y50{bottom:378.255000px;}
.y115{bottom:379.515000px;}
.yc4{bottom:380.055000px;}
.y3a{bottom:383.790000px;}
.y14a{bottom:384.735000px;}
.y1f{bottom:392.070000px;}
.y1b{bottom:395.715000px;}
.y90{bottom:395.895000px;}
.y114{bottom:396.795000px;}
.yc3{bottom:398.055000px;}
.yf1{bottom:400.575000px;}
.y39{bottom:401.070000px;}
.y149{bottom:401.115000px;}
.y1e{bottom:410.430000px;}
.y8f{bottom:413.175000px;}
.y113{bottom:414.075000px;}
.yc2{bottom:416.055000px;}
.y148{bottom:417.495000px;}
.yf0{bottom:417.855000px;}
.y38{bottom:418.350000px;}
.y8e{bottom:430.455000px;}
.y112{bottom:431.175000px;}
.yef{bottom:432.615000px;}
.y147{bottom:433.875000px;}
.yc1{bottom:434.055000px;}
.y37{bottom:435.630000px;}
.y1d{bottom:437.790000px;}
.y8d{bottom:447.735000px;}
.y111{bottom:448.455000px;}
.y146{bottom:450.255000px;}
.yee{bottom:450.615000px;}
.yc0{bottom:452.055000px;}
.y36{bottom:452.730000px;}
.y1c{bottom:455.430000px;}
.y8c{bottom:465.015000px;}
.y110{bottom:465.735000px;}
.y145{bottom:466.635000px;}
.yed{bottom:468.615000px;}
.ybf{bottom:470.055000px;}
.y10f{bottom:483.015000px;}
.y8b{bottom:483.195000px;}
.yec{bottom:486.615000px;}
.ybe{bottom:488.055000px;}
.y144{bottom:499.395000px;}
.y10e{bottom:500.295000px;}
.y8a{bottom:501.555000px;}
.yeb{bottom:504.615000px;}
.ybd{bottom:506.055000px;}
.y143{bottom:515.775000px;}
.y10d{bottom:517.575000px;}
.y89{bottom:519.915000px;}
.yea{bottom:522.615000px;}
.ybc{bottom:527.295000px;}
.y142{bottom:532.335000px;}
.y10c{bottom:534.675000px;}
.y88{bottom:537.195000px;}
.ye9{bottom:540.615000px;}
.ybb{bottom:544.575000px;}
.y141{bottom:548.715000px;}
.y10b{bottom:551.955000px;}
.y87{bottom:554.475000px;}
.ye8{bottom:558.615000px;}
.yba{bottom:561.855000px;}
.y140{bottom:565.095000px;}
.y10a{bottom:569.235000px;}
.y86{bottom:572.655000px;}
.ye7{bottom:576.615000px;}
.yb9{bottom:579.135000px;}
.y13f{bottom:581.475000px;}
.y109{bottom:586.515000px;}
.y85{bottom:589.935000px;}
.ye6{bottom:594.615000px;}
.yb8{bottom:596.235000px;}
.y13e{bottom:597.855000px;}
.y108{bottom:603.825000px;}
.y84{bottom:608.325000px;}
.ye5{bottom:612.645000px;}
.yb7{bottom:613.545000px;}
.y13d{bottom:614.265000px;}
.y107{bottom:621.105000px;}
.y83{bottom:625.605000px;}
.ye4{bottom:630.645000px;}
.yb6{bottom:630.825000px;}
.y106{bottom:638.205000px;}
.y82{bottom:642.885000px;}
.y13c{bottom:647.025000px;}
.yb5{bottom:648.105000px;}
.ye3{bottom:648.645000px;}
.y105{bottom:655.485000px;}
.y81{bottom:660.165000px;}
.y13b{bottom:663.405000px;}
.yb4{bottom:665.385000px;}
.ye2{bottom:669.885000px;}
.y104{bottom:672.765000px;}
.y80{bottom:677.265000px;}
.y13a{bottom:679.785000px;}
.yb3{bottom:682.665000px;}
.ye1{bottom:686.985000px;}
.y103{bottom:690.045000px;}
.y7f{bottom:694.545000px;}
.y139{bottom:696.165000px;}
.yb2{bottom:699.765000px;}
.ye0{bottom:704.265000px;}
.y102{bottom:707.325000px;}
.y7e{bottom:711.825000px;}
.y138{bottom:712.545000px;}
.yb1{bottom:714.525000px;}
.ydf{bottom:721.545000px;}
.y101{bottom:724.425000px;}
.y137{bottom:728.925000px;}
.y7d{bottom:729.105000px;}
.yb0{bottom:732.525000px;}
.yde{bottom:738.825000px;}
.y100{bottom:741.705000px;}
.y136{bottom:745.305000px;}
.y7c{bottom:746.385000px;}
.yaf{bottom:750.525000px;}
.ydd{bottom:756.105000px;}
.yff{bottom:758.985000px;}
.y135{bottom:761.685000px;}
.y7b{bottom:763.665000px;}
.yae{bottom:768.525000px;}
.ydc{bottom:773.385000px;}
.yfe{bottom:776.265000px;}
.y134{bottom:778.065000px;}
.y7a{bottom:780.765000px;}
.yad{bottom:786.525000px;}
.ydb{bottom:790.485000px;}
.yfd{bottom:793.545000px;}
.y133{bottom:794.445000px;}
.y79{bottom:798.045000px;}
.yac{bottom:804.525000px;}
.yda{bottom:807.765000px;}
.yfc{bottom:810.825000px;}
.y78{bottom:815.325000px;}
.yd9{bottom:821.805000px;}
.yab{bottom:822.525000px;}
.y132{bottom:827.205000px;}
.yfb{bottom:827.925000px;}
.y77{bottom:832.605000px;}
.yaa{bottom:840.525000px;}
.y131{bottom:843.585000px;}
.yfa{bottom:845.205000px;}
.y76{bottom:849.885000px;}
.ya9{bottom:858.525000px;}
.yf9{bottom:859.965000px;}
.y19{bottom:862.485000px;}
.y75{bottom:866.985000px;}
.y130{bottom:876.390000px;}
.ya8{bottom:876.570000px;}
.yf7{bottom:878.190000px;}
.y74{bottom:884.310000px;}
.ye{bottom:891.510000px;}
.y12f{bottom:892.770000px;}
.ya7{bottom:894.570000px;}
.y73{bottom:901.590000px;}
.y12e{bottom:909.150000px;}
.ya6{bottom:912.570000px;}
.yf6{bottom:913.290000px;}
.y72{bottom:918.870000px;}
.y12d{bottom:925.530000px;}
.ya5{bottom:930.570000px;}
.yf3{bottom:931.290000px;}
.y71{bottom:936.150000px;}
.y12c{bottom:941.910000px;}
.ya4{bottom:948.570000px;}
.y70{bottom:953.430000px;}
.y12b{bottom:958.290000px;}
.ya2{bottom:966.570000px;}
.y6f{bottom:970.530000px;}
.y12a{bottom:974.670000px;}
.y6e{bottom:987.810000px;}
.y129{bottom:991.050000px;}
.y6d{bottom:1005.090000px;}
.y128{bottom:1007.610000px;}
.y6c{bottom:1022.370000px;}
.y127{bottom:1023.990000px;}
.y6b{bottom:1039.650000px;}
.y126{bottom:1040.370000px;}
.y6a{bottom:1056.930000px;}
.yc{bottom:1067.010000px;}
.y69{bottom:1074.030000px;}
.y6{bottom:1087.350000px;}
.y68{bottom:1091.310000px;}
.y67{bottom:1108.590000px;}
.y66{bottom:1125.870000px;}
.yd8{bottom:1140.120000px;}
.y65{bottom:1143.180000px;}
.yd7{bottom:1154.880000px;}
.y64{bottom:1160.460000px;}
.yd6{bottom:1172.880000px;}
.y63{bottom:1177.560000px;}
.yd5{bottom:1190.880000px;}
.y62{bottom:1194.840000px;}
.hd{height:4.241250px;}
.h22{height:17.100000px;}
.h23{height:17.136000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.h1e{height:17.460000px;}
.hb{height:19.980000px;}
.hf{height:27.000000px;}
.h11{height:28.968750px;}
.h13{height:29.016000px;}
.h25{height:34.380000px;}
.h24{height:34.560000px;}
.h8{height:36.180000px;}
.h1a{height:36.462656px;}
.h12{height:38.818125px;}
.h28{height:39.716016px;}
.h27{height:40.132617px;}
.h26{height:41.410195px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h1f{height:43.506914px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h2{height:52.416000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h10{height:55.291992px;}
.h29{height:56.900391px;}
.h1d{height:59.439023px;}
.h17{height:61.189805px;}
.he{height:63.180000px;}
.h3{height:64.875938px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:175.500000px;}
.h15{height:466.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w10{width:128.340000px;}
.we{width:142.776000px;}
.w5{width:143.856000px;}
.wf{width:154.440000px;}
.w11{width:168.510000px;}
.w16{width:173.190000px;}
.w18{width:185.970000px;}
.w19{width:186.150000px;}
.w17{width:195.150000px;}
.w13{width:199.830000px;}
.w9{width:203.970000px;}
.w14{width:218.190000px;}
.wd{width:223.590000px;}
.wc{width:223.635000px;}
.w12{width:326.955000px;}
.w15{width:376.815000px;}
.wa{width:486.465000px;}
.wb{width:548.385000px;}
.w6{width:595.905000px;}
.w2{width:673.530000px;}
.w8{width:690.450000px;}
.w7{width:739.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.560000px;}
.x2{left:8.640000px;}
.xd{left:46.836000px;}
.x12{left:54.936000px;}
.x1{left:72.360000px;}
.x10{left:75.996000px;}
.x11{left:79.230000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x15{left:108.035987px;}
.x16{left:135.035987px;}
.xf{left:136.290000px;}
.xe{left:140.790000px;}
.x27{left:155.909987px;}
.x13{left:191.550000px;}
.x6{left:216.750000px;}
.x17{left:220.889987px;}
.x1b{left:246.089987px;}
.x22{left:257.969987px;}
.x28{left:260.130000px;}
.x1e{left:272.009987px;}
.x14{left:276.870000px;}
.x26{left:284.834987px;}
.x9{left:288.975000px;}
.x18{left:297.615000px;}
.xc{left:345.135000px;}
.x7{left:348.735000px;}
.x8{left:367.995000px;}
.x2b{left:393.554987px;}
.x1f{left:401.115000px;}
.xb{left:432.975000px;}
.x29{left:446.835000px;}
.x23{left:450.795000px;}
.xa{left:456.240000px;}
.x19{left:521.925000px;}
.x20{left:601.665000px;}
.x21{left:611.924987px;}
.x24{left:624.705000px;}
.x2a{left:633.705000px;}
.x1d{left:651.345000px;}
.x1a{left:665.430000px;}
.x25{left:689.009987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-1.600000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.071680pt;}
.ls3{letter-spacing:0.117867pt;}
.ls10{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.189440pt;}
.ls4{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.277333pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls13{letter-spacing:18.584320pt;}
.lsb{letter-spacing:40.912640pt;}
.ls11{letter-spacing:44.184320pt;}
.lsc{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.557333pt;}
.wse{word-spacing:-13.400533pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.680000pt;}
.ws5{word-spacing:-10.976000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._19{margin-left:-6.497920pt;}
._0{margin-left:-5.152640pt;}
._15{margin-left:-3.827200pt;}
._5{margin-left:-2.885760pt;}
._3{margin-left:-1.920000pt;}
._2{margin-left:-1.024000pt;}
._1{width:1.194667pt;}
._4{width:2.304000pt;}
._11{width:4.011093pt;}
._f{width:5.551573pt;}
._8{width:6.793173pt;}
._9{width:7.857920pt;}
._10{width:9.331840pt;}
._7{width:10.320640pt;}
._6{width:11.255893pt;}
._c{width:12.224213pt;}
._14{width:14.326187pt;}
._12{width:15.298560pt;}
._13{width:16.222507pt;}
._17{width:18.529920pt;}
._1a{width:19.648853pt;}
._18{width:20.955307pt;}
._e{width:21.912533pt;}
._d{width:22.841600pt;}
._16{width:25.706667pt;}
._a{width:26.678400pt;}
._b{width:27.781760pt;}
.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;}
.ya3{bottom:2.880000pt;}
.y52{bottom:3.360000pt;}
.y4f{bottom:3.520000pt;}
.yd{bottom:4.000000pt;}
.y51{bottom:5.440000pt;}
.y18{bottom:8.160000pt;}
.yf5{bottom:10.560000pt;}
.y5{bottom:12.320000pt;}
.y1a{bottom:13.160000pt;}
.y3{bottom:16.160000pt;}
.yf8{bottom:18.080000pt;}
.yf4{bottom:18.240000pt;}
.y4e{bottom:19.200000pt;}
.y17{bottom:24.800000pt;}
.yb{bottom:26.880000pt;}
.y1{bottom:32.320000pt;}
.y4{bottom:32.672000pt;}
.y2{bottom:33.792000pt;}
.y4d{bottom:34.560000pt;}
.y35{bottom:35.200000pt;}
.y16{bottom:39.520000pt;}
.ya{bottom:41.280000pt;}
.y34{bottom:48.160000pt;}
.y4c{bottom:49.760000pt;}
.y15{bottom:54.080000pt;}
.y33{bottom:61.280000pt;}
.y4b{bottom:65.120000pt;}
.y9{bottom:65.306667pt;}
.y14{bottom:65.440000pt;}
.y32{bottom:74.240000pt;}
.y13{bottom:80.480000pt;}
.y8{bottom:82.746667pt;}
.y31{bottom:87.360000pt;}
.yd4{bottom:87.872000pt;}
.ya1{bottom:88.352000pt;}
.y125{bottom:92.032000pt;}
.y4a{bottom:95.840000pt;}
.yf2{bottom:96.032000pt;}
.y7{bottom:98.906667pt;}
.y12{bottom:100.000000pt;}
.y30{bottom:100.320000pt;}
.ya0{bottom:103.712000pt;}
.yd3{bottom:103.872000pt;}
.y124{bottom:107.392000pt;}
.y61{bottom:109.152000pt;}
.y49{bottom:111.200000pt;}
.y11{bottom:112.800000pt;}
.y2f{bottom:113.280000pt;}
.y9f{bottom:119.072000pt;}
.yd2{bottom:119.872000pt;}
.y123{bottom:122.592000pt;}
.y60{bottom:124.512000pt;}
.y2e{bottom:126.400000pt;}
.y48{bottom:126.560000pt;}
.y9e{bottom:134.426667pt;}
.y10{bottom:135.680000pt;}
.yd1{bottom:135.866667pt;}
.y122{bottom:137.946667pt;}
.y2d{bottom:139.360000pt;}
.y5f{bottom:139.866667pt;}
.y47{bottom:141.760000pt;}
.y9d{bottom:149.786667pt;}
.y2c{bottom:152.320000pt;}
.y121{bottom:153.306667pt;}
.yf{bottom:154.720000pt;}
.yd0{bottom:154.746667pt;}
.y5e{bottom:155.226667pt;}
.y46{bottom:157.120000pt;}
.y9c{bottom:164.986667pt;}
.y2b{bottom:165.440000pt;}
.y120{bottom:168.666667pt;}
.ycf{bottom:170.106667pt;}
.y5d{bottom:170.426667pt;}
.y45{bottom:172.480000pt;}
.y2a{bottom:178.400000pt;}
.y9b{bottom:180.346667pt;}
.y11f{bottom:184.026667pt;}
.yce{bottom:185.306667pt;}
.y5c{bottom:185.786667pt;}
.y44{bottom:187.866667pt;}
.y29{bottom:193.786667pt;}
.y9a{bottom:195.706667pt;}
.y11e{bottom:199.386667pt;}
.ycd{bottom:200.666667pt;}
.y5b{bottom:201.146667pt;}
.y43{bottom:203.226667pt;}
.y28{bottom:209.146667pt;}
.y99{bottom:211.066667pt;}
.y11d{bottom:214.586667pt;}
.ycc{bottom:216.026667pt;}
.y5a{bottom:216.506667pt;}
.y42{bottom:218.586667pt;}
.y27{bottom:224.346667pt;}
.y98{bottom:226.426667pt;}
.y11c{bottom:229.946667pt;}
.ycb{bottom:231.386667pt;}
.y59{bottom:231.866667pt;}
.y41{bottom:233.786667pt;}
.y26{bottom:239.706667pt;}
.y97{bottom:241.786667pt;}
.y11b{bottom:245.306667pt;}
.yca{bottom:246.746667pt;}
.y58{bottom:247.066667pt;}
.y40{bottom:249.146667pt;}
.y25{bottom:255.546667pt;}
.y96{bottom:256.986667pt;}
.y11a{bottom:260.666667pt;}
.yc9{bottom:262.106667pt;}
.y57{bottom:262.426667pt;}
.y3f{bottom:264.506667pt;}
.y24{bottom:271.066667pt;}
.y95{bottom:272.346667pt;}
.y119{bottom:276.026667pt;}
.yc8{bottom:277.306667pt;}
.y56{bottom:277.786667pt;}
.y3e{bottom:279.866667pt;}
.y23{bottom:286.426667pt;}
.y94{bottom:287.706667pt;}
.y118{bottom:291.226667pt;}
.yc7{bottom:292.666667pt;}
.y55{bottom:293.146667pt;}
.y3d{bottom:295.226667pt;}
.y22{bottom:301.946667pt;}
.y93{bottom:304.066667pt;}
.yc6{bottom:305.826667pt;}
.y117{bottom:306.626667pt;}
.y54{bottom:308.546667pt;}
.y3c{bottom:310.426667pt;}
.y14c{bottom:311.906667pt;}
.y21{bottom:317.466667pt;}
.y92{bottom:320.386667pt;}
.yc5{bottom:321.826667pt;}
.y116{bottom:321.986667pt;}
.y53{bottom:323.906667pt;}
.y3b{bottom:325.786667pt;}
.y14b{bottom:327.426667pt;}
.y20{bottom:332.826667pt;}
.y91{bottom:335.746667pt;}
.y50{bottom:336.226667pt;}
.y115{bottom:337.346667pt;}
.yc4{bottom:337.826667pt;}
.y3a{bottom:341.146667pt;}
.y14a{bottom:341.986667pt;}
.y1f{bottom:348.506667pt;}
.y1b{bottom:351.746667pt;}
.y90{bottom:351.906667pt;}
.y114{bottom:352.706667pt;}
.yc3{bottom:353.826667pt;}
.yf1{bottom:356.066667pt;}
.y39{bottom:356.506667pt;}
.y149{bottom:356.546667pt;}
.y1e{bottom:364.826667pt;}
.y8f{bottom:367.266667pt;}
.y113{bottom:368.066667pt;}
.yc2{bottom:369.826667pt;}
.y148{bottom:371.106667pt;}
.yf0{bottom:371.426667pt;}
.y38{bottom:371.866667pt;}
.y8e{bottom:382.626667pt;}
.y112{bottom:383.266667pt;}
.yef{bottom:384.546667pt;}
.y147{bottom:385.666667pt;}
.yc1{bottom:385.826667pt;}
.y37{bottom:387.226667pt;}
.y1d{bottom:389.146667pt;}
.y8d{bottom:397.986667pt;}
.y111{bottom:398.626667pt;}
.y146{bottom:400.226667pt;}
.yee{bottom:400.546667pt;}
.yc0{bottom:401.826667pt;}
.y36{bottom:402.426667pt;}
.y1c{bottom:404.826667pt;}
.y8c{bottom:413.346667pt;}
.y110{bottom:413.986667pt;}
.y145{bottom:414.786667pt;}
.yed{bottom:416.546667pt;}
.ybf{bottom:417.826667pt;}
.y10f{bottom:429.346667pt;}
.y8b{bottom:429.506667pt;}
.yec{bottom:432.546667pt;}
.ybe{bottom:433.826667pt;}
.y144{bottom:443.906667pt;}
.y10e{bottom:444.706667pt;}
.y8a{bottom:445.826667pt;}
.yeb{bottom:448.546667pt;}
.ybd{bottom:449.826667pt;}
.y143{bottom:458.466667pt;}
.y10d{bottom:460.066667pt;}
.y89{bottom:462.146667pt;}
.yea{bottom:464.546667pt;}
.ybc{bottom:468.706667pt;}
.y142{bottom:473.186667pt;}
.y10c{bottom:475.266667pt;}
.y88{bottom:477.506667pt;}
.ye9{bottom:480.546667pt;}
.ybb{bottom:484.066667pt;}
.y141{bottom:487.746667pt;}
.y10b{bottom:490.626667pt;}
.y87{bottom:492.866667pt;}
.ye8{bottom:496.546667pt;}
.yba{bottom:499.426667pt;}
.y140{bottom:502.306667pt;}
.y10a{bottom:505.986667pt;}
.y86{bottom:509.026667pt;}
.ye7{bottom:512.546667pt;}
.yb9{bottom:514.786667pt;}
.y13f{bottom:516.866667pt;}
.y109{bottom:521.346667pt;}
.y85{bottom:524.386667pt;}
.ye6{bottom:528.546667pt;}
.yb8{bottom:529.986667pt;}
.y13e{bottom:531.426667pt;}
.y108{bottom:536.733333pt;}
.y84{bottom:540.733333pt;}
.ye5{bottom:544.573333pt;}
.yb7{bottom:545.373333pt;}
.y13d{bottom:546.013333pt;}
.y107{bottom:552.093333pt;}
.y83{bottom:556.093333pt;}
.ye4{bottom:560.573333pt;}
.yb6{bottom:560.733333pt;}
.y106{bottom:567.293333pt;}
.y82{bottom:571.453333pt;}
.y13c{bottom:575.133333pt;}
.yb5{bottom:576.093333pt;}
.ye3{bottom:576.573333pt;}
.y105{bottom:582.653333pt;}
.y81{bottom:586.813333pt;}
.y13b{bottom:589.693333pt;}
.yb4{bottom:591.453333pt;}
.ye2{bottom:595.453333pt;}
.y104{bottom:598.013333pt;}
.y80{bottom:602.013333pt;}
.y13a{bottom:604.253333pt;}
.yb3{bottom:606.813333pt;}
.ye1{bottom:610.653333pt;}
.y103{bottom:613.373333pt;}
.y7f{bottom:617.373333pt;}
.y139{bottom:618.813333pt;}
.yb2{bottom:622.013333pt;}
.ye0{bottom:626.013333pt;}
.y102{bottom:628.733333pt;}
.y7e{bottom:632.733333pt;}
.y138{bottom:633.373333pt;}
.yb1{bottom:635.133333pt;}
.ydf{bottom:641.373333pt;}
.y101{bottom:643.933333pt;}
.y137{bottom:647.933333pt;}
.y7d{bottom:648.093333pt;}
.yb0{bottom:651.133333pt;}
.yde{bottom:656.733333pt;}
.y100{bottom:659.293333pt;}
.y136{bottom:662.493333pt;}
.y7c{bottom:663.453333pt;}
.yaf{bottom:667.133333pt;}
.ydd{bottom:672.093333pt;}
.yff{bottom:674.653333pt;}
.y135{bottom:677.053333pt;}
.y7b{bottom:678.813333pt;}
.yae{bottom:683.133333pt;}
.ydc{bottom:687.453333pt;}
.yfe{bottom:690.013333pt;}
.y134{bottom:691.613333pt;}
.y7a{bottom:694.013333pt;}
.yad{bottom:699.133333pt;}
.ydb{bottom:702.653333pt;}
.yfd{bottom:705.373333pt;}
.y133{bottom:706.173333pt;}
.y79{bottom:709.373333pt;}
.yac{bottom:715.133333pt;}
.yda{bottom:718.013333pt;}
.yfc{bottom:720.733333pt;}
.y78{bottom:724.733333pt;}
.yd9{bottom:730.493333pt;}
.yab{bottom:731.133333pt;}
.y132{bottom:735.293333pt;}
.yfb{bottom:735.933333pt;}
.y77{bottom:740.093333pt;}
.yaa{bottom:747.133333pt;}
.y131{bottom:749.853333pt;}
.yfa{bottom:751.293333pt;}
.y76{bottom:755.453333pt;}
.ya9{bottom:763.133333pt;}
.yf9{bottom:764.413333pt;}
.y19{bottom:766.653333pt;}
.y75{bottom:770.653333pt;}
.y130{bottom:779.013333pt;}
.ya8{bottom:779.173333pt;}
.yf7{bottom:780.613333pt;}
.y74{bottom:786.053333pt;}
.ye{bottom:792.453333pt;}
.y12f{bottom:793.573333pt;}
.ya7{bottom:795.173333pt;}
.y73{bottom:801.413333pt;}
.y12e{bottom:808.133333pt;}
.ya6{bottom:811.173333pt;}
.yf6{bottom:811.813333pt;}
.y72{bottom:816.773333pt;}
.y12d{bottom:822.693333pt;}
.ya5{bottom:827.173333pt;}
.yf3{bottom:827.813333pt;}
.y71{bottom:832.133333pt;}
.y12c{bottom:837.253333pt;}
.ya4{bottom:843.173333pt;}
.y70{bottom:847.493333pt;}
.y12b{bottom:851.813333pt;}
.ya2{bottom:859.173333pt;}
.y6f{bottom:862.693333pt;}
.y12a{bottom:866.373333pt;}
.y6e{bottom:878.053333pt;}
.y129{bottom:880.933333pt;}
.y6d{bottom:893.413333pt;}
.y128{bottom:895.653333pt;}
.y6c{bottom:908.773333pt;}
.y127{bottom:910.213333pt;}
.y6b{bottom:924.133333pt;}
.y126{bottom:924.773333pt;}
.y6a{bottom:939.493333pt;}
.yc{bottom:948.453333pt;}
.y69{bottom:954.693333pt;}
.y6{bottom:966.533333pt;}
.y68{bottom:970.053333pt;}
.y67{bottom:985.413333pt;}
.y66{bottom:1000.773333pt;}
.yd8{bottom:1013.440000pt;}
.y65{bottom:1016.160000pt;}
.yd7{bottom:1026.560000pt;}
.y64{bottom:1031.520000pt;}
.yd6{bottom:1042.560000pt;}
.y63{bottom:1046.720000pt;}
.yd5{bottom:1058.560000pt;}
.y62{bottom:1062.080000pt;}
.hd{height:3.770000pt;}
.h22{height:15.200000pt;}
.h23{height:15.232000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.h1e{height:15.520000pt;}
.hb{height:17.760000pt;}
.hf{height:24.000000pt;}
.h11{height:25.750000pt;}
.h13{height:25.792000pt;}
.h25{height:30.560000pt;}
.h24{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1a{height:32.411250pt;}
.h12{height:34.505000pt;}
.h28{height:35.303125pt;}
.h27{height:35.673437pt;}
.h26{height:36.809062pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h1f{height:38.672812pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h2{height:46.592000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h10{height:49.148438pt;}
.h29{height:50.578125pt;}
.h1d{height:52.834688pt;}
.h17{height:54.390938pt;}
.he{height:56.160000pt;}
.h3{height:57.667500pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:156.000000pt;}
.h15{height:414.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w10{width:114.080000pt;}
.we{width:126.912000pt;}
.w5{width:127.872000pt;}
.wf{width:137.280000pt;}
.w11{width:149.786667pt;}
.w16{width:153.946667pt;}
.w18{width:165.306667pt;}
.w19{width:165.466667pt;}
.w17{width:173.466667pt;}
.w13{width:177.626667pt;}
.w9{width:181.306667pt;}
.w14{width:193.946667pt;}
.wd{width:198.746667pt;}
.wc{width:198.786667pt;}
.w12{width:290.626667pt;}
.w15{width:334.946667pt;}
.wa{width:432.413333pt;}
.wb{width:487.453333pt;}
.w6{width:529.693333pt;}
.w2{width:598.693333pt;}
.w8{width:613.733333pt;}
.w7{width:657.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.720000pt;}
.x2{left:7.680000pt;}
.xd{left:41.632000pt;}
.x12{left:48.832000pt;}
.x1{left:64.320000pt;}
.x10{left:67.552000pt;}
.x11{left:70.426667pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x15{left:96.031988pt;}
.x16{left:120.031988pt;}
.xf{left:121.146667pt;}
.xe{left:125.146667pt;}
.x27{left:138.586655pt;}
.x13{left:170.266667pt;}
.x6{left:192.666667pt;}
.x17{left:196.346655pt;}
.x1b{left:218.746655pt;}
.x22{left:229.306655pt;}
.x28{left:231.226667pt;}
.x1e{left:241.786655pt;}
.x14{left:246.106667pt;}
.x26{left:253.186655pt;}
.x9{left:256.866667pt;}
.x18{left:264.546667pt;}
.xc{left:306.786667pt;}
.x7{left:309.986667pt;}
.x8{left:327.106667pt;}
.x2b{left:349.826655pt;}
.x1f{left:356.546667pt;}
.xb{left:384.866667pt;}
.x29{left:397.186667pt;}
.x23{left:400.706667pt;}
.xa{left:405.546667pt;}
.x19{left:463.933333pt;}
.x20{left:534.813333pt;}
.x21{left:543.933322pt;}
.x24{left:555.293333pt;}
.x2a{left:563.293333pt;}
.x1d{left:578.973333pt;}
.x1a{left:591.493333pt;}
.x25{left:612.453322pt;}
.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; }
  