
    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_1c73e71140f07f8a59e771f0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_53fb7fd4c9265f919c30c60b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f73d2a3cf5a3766e990b6dc6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.139160;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_3d575349241f3ce8cd9ba88f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_ab0730852bb0222d7e1b020c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.145508;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_66619764286f13335b116948.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_54e0cd418a1f6869b6c8547c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_0622a537b1b7bdd4b78b82ee.woff')format("woff");}.ff8{font-family:ff8;line-height:1.139160;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_436575828ef78d4fc3d11629.woff')format("woff");}.ff9{font-family:ff9;line-height:1.145508;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_ac16599858732cedaa6e3f68.woff')format("woff");}.ffa{font-family:ffa;line-height:0.968750;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fa3502788601605f55fe5125.woff')format("woff");}.ffc{font-family:ffc;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;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:33.600000px;}
.ls1f{letter-spacing:-4.224000px;}
.ls27{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.528000px;}
.lsb{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.350400px;}
.ls20{letter-spacing:-0.336000px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.276000px;}
.ls13{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.222000px;}
.ls26{letter-spacing:-0.192000px;}
.ls1d{letter-spacing:-0.048000px;}
.lsa{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.168000px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.264000px;}
.ls17{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.408000px;}
.ls1{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.780000px;}
.ls10{letter-spacing:0.840000px;}
.ls1e{letter-spacing:1.116000px;}
.ls1a{letter-spacing:1.128000px;}
.ls7{letter-spacing:1.176000px;}
.ls21{letter-spacing:1.356000px;}
.ls25{letter-spacing:43.128000px;}
.ls19{letter-spacing:50.964000px;}
.lsf{letter-spacing:75.933600px;}
.lsd{letter-spacing:75.993600px;}
.lse{letter-spacing:77.073600px;}
.lsc{letter-spacing:77.133600px;}
.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;}
}
.ws5{word-spacing:-66.000000px;}
.wsb{word-spacing:-28.896000px;}
.ws1{word-spacing:-26.112000px;}
.wsd{word-spacing:-25.284000px;}
.ws15{word-spacing:-22.272000px;}
.ws16{word-spacing:-22.056000px;}
.wsf{word-spacing:-21.960000px;}
.ws10{word-spacing:-21.936000px;}
.ws14{word-spacing:-21.840000px;}
.ws9{word-spacing:-21.672000px;}
.wsa{word-spacing:-21.648000px;}
.ws11{word-spacing:-21.624000px;}
.ws17{word-spacing:-21.480000px;}
.ws13{word-spacing:-21.336000px;}
.ws8{word-spacing:-21.168000px;}
.wse{word-spacing:-21.144000px;}
.ws7{word-spacing:-20.082000px;}
.ws4{word-spacing:-19.866000px;}
.ws3{word-spacing:-19.590000px;}
.ws6{word-spacing:-18.060000px;}
.wsc{word-spacing:-17.820000px;}
.ws0{word-spacing:-16.920000px;}
.ws12{word-spacing:-11.616000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-4.818000px;}
._2{margin-left:-2.784000px;}
._0{margin-left:-1.080000px;}
._1{width:1.620000px;}
._11{width:2.724000px;}
._6{width:3.846000px;}
._5{width:4.884000px;}
._8{width:6.102000px;}
._7{width:7.260000px;}
._9{width:8.400000px;}
._13{width:10.080000px;}
._14{width:11.448000px;}
._c{width:12.456000px;}
._b{width:13.464000px;}
._18{width:14.688000px;}
._d{width:16.218000px;}
._10{width:17.230800px;}
._4{width:18.858000px;}
._22{width:20.064000px;}
._17{width:23.004000px;}
._1c{width:24.120000px;}
._16{width:25.560000px;}
._1f{width:27.216000px;}
._1e{width:28.800000px;}
._20{width:30.126000px;}
._21{width:31.482000px;}
._f{width:32.569200px;}
._e{width:34.030800px;}
._24{width:35.064000px;}
._25{width:36.360000px;}
._2c{width:37.398000px;}
._28{width:38.622000px;}
._27{width:40.032000px;}
._23{width:41.040000px;}
._19{width:42.516000px;}
._1a{width:44.280000px;}
._a{width:45.792000px;}
._1b{width:46.908000px;}
._26{width:50.976000px;}
._1d{width:52.632000px;}
._15{width:70.632000px;}
._12{width:78.460800px;}
._2a{width:87.552000px;}
._2b{width:88.578000px;}
._29{width:123.480000px;}
._2d{width:147.996000px;}
._2e{width:149.076000px;}
._2f{width:190.878000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(46,116,181);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:39.600000px;}
.fsa{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:63.600000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.115000px;}
.y46{bottom:3.300000px;}
.y28{bottom:3.585000px;}
.y2a{bottom:3.600000px;}
.y35{bottom:3.615000px;}
.y16{bottom:3.900000px;}
.yae{bottom:3.915000px;}
.yf0{bottom:3.930000px;}
.yeb{bottom:5.685000px;}
.y30{bottom:7.800000px;}
.yac{bottom:17.700000px;}
.yd0{bottom:17.715000px;}
.y18{bottom:18.000000px;}
.y45{bottom:21.300000px;}
.y27{bottom:22.785000px;}
.y33{bottom:22.800000px;}
.y2d{bottom:22.845000px;}
.yf2{bottom:24.600000px;}
.yef{bottom:24.630000px;}
.yed{bottom:24.900000px;}
.yd2{bottom:24.937500px;}
.y2f{bottom:26.100000px;}
.y17{bottom:35.100000px;}
.y37{bottom:41.700000px;}
.y26{bottom:42.000000px;}
.y3c{bottom:42.030000px;}
.y2c{bottom:42.045000px;}
.y25{bottom:60.900000px;}
.y32{bottom:61.200000px;}
.y3b{bottom:61.245000px;}
.y15{bottom:63.000000px;}
.y14{bottom:67.200000px;}
.y3a{bottom:80.430000px;}
.yd1{bottom:112.800000px;}
.y11{bottom:119.137500px;}
.y74{bottom:120.637500px;}
.yfc{bottom:129.937500px;}
.y11c{bottom:135.037500px;}
.y4a{bottom:138.037500px;}
.y9e{bottom:139.837500px;}
.y100{bottom:140.137500px;}
.y73{bottom:140.737500px;}
.y137{bottom:141.037500px;}
.y10{bottom:143.737500px;}
.yfb{bottom:150.930000px;}
.ycf{bottom:154.830000px;}
.y11b{bottom:156.045000px;}
.yff{bottom:157.830000px;}
.y49{bottom:159.045000px;}
.y9d{bottom:160.830000px;}
.y136{bottom:161.730000px;}
.y72{bottom:163.830000px;}
.yf{bottom:168.030000px;}
.yfa{bottom:171.930000px;}
.y161{bottom:174.930000px;}
.y71{bottom:175.845000px;}
.y11a{bottom:177.045000px;}
.yfe{bottom:178.830000px;}
.y48{bottom:179.745000px;}
.y9c{bottom:181.830000px;}
.y135{bottom:182.745000px;}
.ye{bottom:187.830000px;}
.yf9{bottom:192.645000px;}
.y160{bottom:194.130000px;}
.y119{bottom:197.745000px;}
.y70{bottom:198.630000px;}
.y47{bottom:198.945000px;}
.y9b{bottom:202.545000px;}
.y134{bottom:203.745000px;}
.y162{bottom:205.830000px;}
.y6f{bottom:210.630000px;}
.y15f{bottom:213.345000px;}
.yf8{bottom:213.630000px;}
.y43{bottom:214.530000px;}
.y118{bottom:218.730000px;}
.yaf{bottom:222.945000px;}
.y9a{bottom:223.545000px;}
.y133{bottom:224.445000px;}
.y6e{bottom:228.045000px;}
.y15e{bottom:232.230000px;}
.yf7{bottom:234.630000px;}
.y117{bottom:239.730000px;}
.yad{bottom:243.330000px;}
.y99{bottom:244.545000px;}
.y6d{bottom:245.445000px;}
.yce{bottom:250.545000px;}
.y15d{bottom:251.445000px;}
.y42{bottom:254.445000px;}
.yf6{bottom:255.330000px;}
.y116{bottom:260.475000px;}
.y6c{bottom:262.875000px;}
.yab{bottom:264.375000px;}
.y98{bottom:265.275000px;}
.y132{bottom:266.475000px;}
.y15c{bottom:270.975000px;}
.ycd{bottom:271.575000px;}
.y41{bottom:274.875000px;}
.yf5{bottom:276.375000px;}
.y115{bottom:281.475000px;}
.y6b{bottom:285.675000px;}
.y97{bottom:286.275000px;}
.y131{bottom:287.175000px;}
.y15b{bottom:291.975000px;}
.ycc{bottom:292.575000px;}
.y40{bottom:294.075000px;}
.yf4{bottom:297.375000px;}
.y6a{bottom:297.675000px;}
.y114{bottom:302.475000px;}
.y96{bottom:307.275000px;}
.y130{bottom:308.175000px;}
.y15a{bottom:312.675000px;}
.y3f{bottom:313.275000px;}
.yf3{bottom:315.075000px;}
.y69{bottom:320.475000px;}
.y113{bottom:323.175000px;}
.y95{bottom:327.975000px;}
.y12f{bottom:329.175000px;}
.y3e{bottom:332.475000px;}
.y159{bottom:333.675000px;}
.ycb{bottom:334.275000px;}
.y112{bottom:344.175000px;}
.y3d{bottom:348.075000px;}
.y94{bottom:348.975000px;}
.y12e{bottom:349.875000px;}
.y158{bottom:354.675000px;}
.y68{bottom:355.275000px;}
.yf1{bottom:357.675000px;}
.y111{bottom:365.175000px;}
.y39{bottom:366.975000px;}
.y67{bottom:367.875000px;}
.y93{bottom:369.975000px;}
.y12d{bottom:370.875000px;}
.y157{bottom:375.375000px;}
.yca{bottom:375.975000px;}
.y110{bottom:385.875000px;}
.y66{bottom:388.875000px;}
.y92{bottom:390.675000px;}
.y12c{bottom:391.875000px;}
.y156{bottom:396.375000px;}
.yc9{bottom:396.975000px;}
.yee{bottom:400.275000px;}
.y10f{bottom:406.620000px;}
.y65{bottom:409.905000px;}
.y91{bottom:411.705000px;}
.y12b{bottom:412.620000px;}
.y155{bottom:417.420000px;}
.yc8{bottom:418.005000px;}
.y10e{bottom:426.720000px;}
.y64{bottom:430.605000px;}
.y90{bottom:432.705000px;}
.y12a{bottom:433.620000px;}
.y154{bottom:438.120000px;}
.yc7{bottom:438.720000px;}
.yec{bottom:442.605000px;}
.y10d{bottom:450.405000px;}
.y63{bottom:451.620000px;}
.y8f{bottom:453.420000px;}
.y129{bottom:454.605000px;}
.y153{bottom:459.120000px;}
.yc6{bottom:459.705000px;}
.y38{bottom:463.005000px;}
.y10c{bottom:471.405000px;}
.y62{bottom:472.620000px;}
.y8e{bottom:474.405000px;}
.y128{bottom:475.320000px;}
.y152{bottom:480.120000px;}
.y36{bottom:482.220000px;}
.yea{bottom:485.220000px;}
.y10b{bottom:492.120000px;}
.y61{bottom:493.320000px;}
.y8d{bottom:495.420000px;}
.y127{bottom:496.320000px;}
.yc5{bottom:498.405000px;}
.y151{bottom:500.820000px;}
.ye9{bottom:512.520000px;}
.y10a{bottom:513.120000px;}
.y60{bottom:514.320000px;}
.y8c{bottom:516.120000px;}
.y126{bottom:517.320000px;}
.yc4{bottom:519.405000px;}
.y150{bottom:521.820000px;}
.ye8{bottom:533.220000px;}
.y5f{bottom:535.320000px;}
.y8b{bottom:537.105000px;}
.y125{bottom:538.020000px;}
.y34{bottom:539.505000px;}
.yc3{bottom:540.405000px;}
.y14f{bottom:542.820000px;}
.y109{bottom:552.750000px;}
.ye7{bottom:554.250000px;}
.y5e{bottom:556.050000px;}
.y8a{bottom:558.150000px;}
.y31{bottom:558.750000px;}
.y124{bottom:559.050000px;}
.yc2{bottom:561.450000px;}
.y14e{bottom:563.550000px;}
.ye6{bottom:575.250000px;}
.y108{bottom:576.450000px;}
.y5d{bottom:577.050000px;}
.y89{bottom:578.850000px;}
.y123{bottom:580.050000px;}
.yc1{bottom:582.150000px;}
.y14d{bottom:584.550000px;}
.ye5{bottom:595.950000px;}
.y107{bottom:597.450000px;}
.y88{bottom:599.850000px;}
.y122{bottom:600.750000px;}
.yc0{bottom:603.150000px;}
.y14c{bottom:605.550000px;}
.y5c{bottom:615.750000px;}
.ye4{bottom:616.950000px;}
.y106{bottom:618.150000px;}
.y87{bottom:620.850000px;}
.y121{bottom:621.750000px;}
.ybf{bottom:624.150000px;}
.y14b{bottom:626.250000px;}
.y2e{bottom:635.550000px;}
.ye3{bottom:637.950000px;}
.y105{bottom:639.150000px;}
.y86{bottom:641.550000px;}
.y120{bottom:642.750000px;}
.y14a{bottom:647.250000px;}
.y5b{bottom:654.750000px;}
.ye2{bottom:658.650000px;}
.y104{bottom:660.150000px;}
.y85{bottom:662.550000px;}
.y11f{bottom:663.450000px;}
.ybe{bottom:663.750000px;}
.y149{bottom:668.250000px;}
.y2b{bottom:676.950000px;}
.ye1{bottom:679.650000px;}
.y103{bottom:680.850000px;}
.yd{bottom:683.250000px;}
.y84{bottom:683.550000px;}
.y11e{bottom:684.450000px;}
.y148{bottom:688.980000px;}
.y5a{bottom:692.580000px;}
.ye0{bottom:700.695000px;}
.y102{bottom:701.880000px;}
.y83{bottom:704.280000px;}
.ybd{bottom:705.195000px;}
.y11d{bottom:705.495000px;}
.y147{bottom:709.995000px;}
.yc{bottom:711.195000px;}
.y59{bottom:713.595000px;}
.ydf{bottom:721.380000px;}
.y101{bottom:723.495000px;}
.ybc{bottom:726.195000px;}
.y146{bottom:730.980000px;}
.y58{bottom:734.280000px;}
.y29{bottom:734.595000px;}
.yde{bottom:742.380000px;}
.y82{bottom:743.295000px;}
.ybb{bottom:747.195000px;}
.y145{bottom:751.995000px;}
.y24{bottom:753.795000px;}
.y57{bottom:755.295000px;}
.yb{bottom:757.095000px;}
.ydd{bottom:763.380000px;}
.y81{bottom:764.880000px;}
.yaa{bottom:766.380000px;}
.yba{bottom:768.195000px;}
.y144{bottom:772.695000px;}
.y56{bottom:776.295000px;}
.ya{bottom:784.995000px;}
.ydc{bottom:785.295000px;}
.ya9{bottom:787.395000px;}
.yb9{bottom:788.880000px;}
.y143{bottom:793.695000px;}
.y55{bottom:796.995000px;}
.ydb{bottom:806.295000px;}
.y80{bottom:806.580000px;}
.ya8{bottom:808.080000px;}
.yb8{bottom:809.880000px;}
.y9{bottom:811.380000px;}
.y142{bottom:814.695000px;}
.y54{bottom:817.695000px;}
.yda{bottom:827.295000px;}
.y7f{bottom:827.580000px;}
.ya7{bottom:829.080000px;}
.yb7{bottom:830.880000px;}
.y8{bottom:833.325000px;}
.y141{bottom:835.425000px;}
.y23{bottom:836.325000px;}
.y53{bottom:837.825000px;}
.yd9{bottom:848.025000px;}
.y7e{bottom:848.325000px;}
.ya6{bottom:850.125000px;}
.yb6{bottom:851.625000px;}
.y140{bottom:856.425000px;}
.y52{bottom:861.525000px;}
.y7{bottom:863.925000px;}
.y22{bottom:865.425000px;}
.y7d{bottom:869.325000px;}
.yd8{bottom:870.225000px;}
.ya5{bottom:870.825000px;}
.yb5{bottom:872.625000px;}
.y13f{bottom:877.425000px;}
.y51{bottom:884.025000px;}
.y21{bottom:887.025000px;}
.y7c{bottom:890.325000px;}
.yd7{bottom:891.225000px;}
.ya4{bottom:891.825000px;}
.yb4{bottom:893.625000px;}
.y13e{bottom:898.125000px;}
.y6{bottom:909.825000px;}
.y7b{bottom:911.025000px;}
.y50{bottom:911.925000px;}
.ya3{bottom:912.825000px;}
.yb3{bottom:914.325000px;}
.y20{bottom:915.825000px;}
.y13d{bottom:919.125000px;}
.y7a{bottom:932.025000px;}
.yd6{bottom:932.925000px;}
.ya2{bottom:933.525000px;}
.y1f{bottom:935.025000px;}
.yb2{bottom:935.325000px;}
.y4f{bottom:939.825000px;}
.y13c{bottom:940.125000px;}
.y79{bottom:953.025000px;}
.yd5{bottom:953.925000px;}
.y1e{bottom:954.225000px;}
.yb1{bottom:956.325000px;}
.y5{bottom:958.725000px;}
.y13b{bottom:960.825000px;}
.ya1{bottom:974.370000px;}
.y1d{bottom:975.870000px;}
.yb0{bottom:977.070000px;}
.y78{bottom:978.255000px;}
.y13a{bottom:981.870000px;}
.y4e{bottom:985.755000px;}
.yd4{bottom:996.870000px;}
.ya0{bottom:998.070000px;}
.y77{bottom:999.255000px;}
.y139{bottom:1002.870000px;}
.y1c{bottom:1004.670000px;}
.y4{bottom:1006.455000px;}
.y4d{bottom:1013.370000px;}
.yd3{bottom:1017.870000px;}
.yfd{bottom:1018.755000px;}
.y9f{bottom:1019.070000px;}
.y138{bottom:1023.255000px;}
.y1b{bottom:1023.870000px;}
.y76{bottom:1037.955000px;}
.y4c{bottom:1039.755000px;}
.y1a{bottom:1043.070000px;}
.y3{bottom:1046.955000px;}
.y75{bottom:1058.070000px;}
.y4b{bottom:1060.755000px;}
.y19{bottom:1062.255000px;}
.y2{bottom:1067.070000px;}
.y13{bottom:1081.755000px;}
.y12{bottom:1112.070000px;}
.y1{bottom:1118.100000px;}
.h1c{height:18.900000px;}
.h14{height:19.185000px;}
.h1a{height:19.200000px;}
.h18{height:19.237500px;}
.hc{height:21.000000px;}
.h27{height:21.037500px;}
.h2a{height:22.500000px;}
.h1e{height:36.000000px;}
.h21{height:37.086328px;}
.h16{height:41.400000px;}
.h2d{height:41.700000px;}
.h2c{height:41.737500px;}
.h2b{height:42.000000px;}
.h29{height:42.037500px;}
.he{height:48.900000px;}
.h2f{height:54.808594px;}
.h1f{height:56.191406px;}
.h19{height:57.300000px;}
.h15{height:57.637500px;}
.h13{height:60.521484px;}
.h10{height:61.810547px;}
.h2{height:62.578125px;}
.hd{height:63.210938px;}
.hf{height:63.615234px;}
.h24{height:66.023438px;}
.h1d{height:67.429688px;}
.h25{height:68.953125px;}
.h23{height:69.398438px;}
.h1{height:74.004654px;}
.h3{height:75.093750px;}
.h12{height:76.485000px;}
.h17{height:76.800000px;}
.ha{height:77.027344px;}
.h22{height:78.667969px;}
.hb{height:83.531250px;}
.h8{height:88.031250px;}
.h9{height:89.906250px;}
.h7{height:92.531250px;}
.h20{height:93.162891px;}
.h1b{height:96.037500px;}
.h6{height:100.125000px;}
.h11{height:101.144531px;}
.h5{height:154.054688px;}
.h4{height:162.703125px;}
.h26{height:497.205000px;}
.h2e{height:817.425000px;}
.h28{height:922.125000px;}
.h0{height:1188.000000px;}
.w7{width:24.600000px;}
.w3{width:87.037500px;}
.we{width:89.400000px;}
.wf{width:89.437500px;}
.wc{width:147.975000px;}
.w9{width:203.475000px;}
.wd{width:238.275000px;}
.w8{width:242.475000px;}
.w6{width:257.175000px;}
.w5{width:261.975000px;}
.w4{width:262.275000px;}
.w2{width:284.775000px;}
.wa{width:453.120000px;}
.wb{width:655.380000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x28{left:12.300000px;}
.x22{left:17.100000px;}
.x24{left:27.000000px;}
.x2a{left:31.200000px;}
.x18{left:33.000000px;}
.x2d{left:34.800000px;}
.x25{left:36.000000px;}
.x1a{left:39.300000px;}
.x1e{left:43.800000px;}
.x3d{left:45.607500px;}
.x1d{left:47.400000px;}
.x16{left:56.100000px;}
.x29{left:61.500000px;}
.x14{left:63.900000px;}
.x2f{left:69.900000px;}
.x26{left:72.600000px;}
.x19{left:73.800000px;}
.x15{left:77.100000px;}
.x2b{left:80.745000px;}
.x3a{left:84.037500px;}
.x23{left:85.230000px;}
.x1f{left:90.300000px;}
.x17{left:94.200000px;}
.x2e{left:96.030000px;}
.x2c{left:103.800000px;}
.x1b{left:105.630000px;}
.xe{left:119.437500px;}
.x27{left:120.945000px;}
.x1{left:127.537486px;}
.x1c{left:130.845000px;}
.x6{left:135.937486px;}
.x33{left:139.237486px;}
.x9{left:144.037486px;}
.xd{left:150.929986px;}
.x40{left:154.529986px;}
.x41{left:164.145000px;}
.x8{left:166.844986px;}
.x7{left:173.744986px;}
.x30{left:180.674986px;}
.x13{left:185.475000px;}
.x31{left:195.382500px;}
.x4{left:211.574986px;}
.x3e{left:221.167500px;}
.xb{left:241.874986px;}
.x47{left:248.774986px;}
.x3c{left:266.474986px;}
.x5{left:271.874986px;}
.x3f{left:279.082500px;}
.x48{left:280.574986px;}
.x46{left:299.774986px;}
.x42{left:313.020000px;}
.x32{left:322.920000px;}
.x38{left:338.819986px;}
.xc{left:340.319986px;}
.x4a{left:344.504986px;}
.x49{left:349.319986px;}
.x45{left:355.619986px;}
.x4b{left:365.219986px;}
.x37{left:373.319986px;}
.x12{left:381.704986px;}
.x3b{left:384.119986px;}
.x36{left:397.004986px;}
.x35{left:401.819986px;}
.x34{left:403.004986px;}
.x10{left:404.220000px;}
.x20{left:442.650000px;}
.x3{left:447.449986px;}
.x21{left:467.250000px;}
.x11{left:491.250000px;}
.x43{left:551.895000px;}
.x44{left:641.895000px;}
.x39{left:646.987500px;}
.x2{left:656.594986px;}
.xa{left:659.294986px;}
.x4c{left:830.069986px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:29.866667pt;}
.ls1f{letter-spacing:-3.754667pt;}
.ls27{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.469333pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.311467pt;}
.ls20{letter-spacing:-0.298667pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.245333pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.197333pt;}
.ls26{letter-spacing:-0.170667pt;}
.ls1d{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.149333pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls17{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.362667pt;}
.ls1{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.693333pt;}
.ls10{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.992000pt;}
.ls1a{letter-spacing:1.002667pt;}
.ls7{letter-spacing:1.045333pt;}
.ls21{letter-spacing:1.205333pt;}
.ls25{letter-spacing:38.336000pt;}
.ls19{letter-spacing:45.301333pt;}
.lsf{letter-spacing:67.496533pt;}
.lsd{letter-spacing:67.549867pt;}
.lse{letter-spacing:68.509867pt;}
.lsc{letter-spacing:68.563200pt;}
.ws5{word-spacing:-58.666667pt;}
.wsb{word-spacing:-25.685333pt;}
.ws1{word-spacing:-23.210667pt;}
.wsd{word-spacing:-22.474667pt;}
.ws15{word-spacing:-19.797333pt;}
.ws16{word-spacing:-19.605333pt;}
.wsf{word-spacing:-19.520000pt;}
.ws10{word-spacing:-19.498667pt;}
.ws14{word-spacing:-19.413333pt;}
.ws9{word-spacing:-19.264000pt;}
.wsa{word-spacing:-19.242667pt;}
.ws11{word-spacing:-19.221333pt;}
.ws17{word-spacing:-19.093333pt;}
.ws13{word-spacing:-18.965333pt;}
.ws8{word-spacing:-18.816000pt;}
.wse{word-spacing:-18.794667pt;}
.ws7{word-spacing:-17.850667pt;}
.ws4{word-spacing:-17.658667pt;}
.ws3{word-spacing:-17.413333pt;}
.ws6{word-spacing:-16.053333pt;}
.wsc{word-spacing:-15.840000pt;}
.ws0{word-spacing:-15.040000pt;}
.ws12{word-spacing:-10.325333pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-4.282667pt;}
._2{margin-left:-2.474667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.440000pt;}
._11{width:2.421333pt;}
._6{width:3.418667pt;}
._5{width:4.341333pt;}
._8{width:5.424000pt;}
._7{width:6.453333pt;}
._9{width:7.466667pt;}
._13{width:8.960000pt;}
._14{width:10.176000pt;}
._c{width:11.072000pt;}
._b{width:11.968000pt;}
._18{width:13.056000pt;}
._d{width:14.416000pt;}
._10{width:15.316267pt;}
._4{width:16.762667pt;}
._22{width:17.834667pt;}
._17{width:20.448000pt;}
._1c{width:21.440000pt;}
._16{width:22.720000pt;}
._1f{width:24.192000pt;}
._1e{width:25.600000pt;}
._20{width:26.778667pt;}
._21{width:27.984000pt;}
._f{width:28.950400pt;}
._e{width:30.249600pt;}
._24{width:31.168000pt;}
._25{width:32.320000pt;}
._2c{width:33.242667pt;}
._28{width:34.330667pt;}
._27{width:35.584000pt;}
._23{width:36.480000pt;}
._19{width:37.792000pt;}
._1a{width:39.360000pt;}
._a{width:40.704000pt;}
._1b{width:41.696000pt;}
._26{width:45.312000pt;}
._1d{width:46.784000pt;}
._15{width:62.784000pt;}
._12{width:69.742933pt;}
._2a{width:77.824000pt;}
._2b{width:78.736000pt;}
._29{width:109.760000pt;}
._2d{width:131.552000pt;}
._2e{width:132.512000pt;}
._2f{width:169.669333pt;}
.fs9{font-size:35.200000pt;}
.fsa{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:56.533333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:1.880000pt;}
.y46{bottom:2.933333pt;}
.y28{bottom:3.186667pt;}
.y2a{bottom:3.200000pt;}
.y35{bottom:3.213333pt;}
.y16{bottom:3.466667pt;}
.yae{bottom:3.480000pt;}
.yf0{bottom:3.493333pt;}
.yeb{bottom:5.053333pt;}
.y30{bottom:6.933333pt;}
.yac{bottom:15.733333pt;}
.yd0{bottom:15.746667pt;}
.y18{bottom:16.000000pt;}
.y45{bottom:18.933333pt;}
.y27{bottom:20.253333pt;}
.y33{bottom:20.266667pt;}
.y2d{bottom:20.306667pt;}
.yf2{bottom:21.866667pt;}
.yef{bottom:21.893333pt;}
.yed{bottom:22.133333pt;}
.yd2{bottom:22.166667pt;}
.y2f{bottom:23.200000pt;}
.y17{bottom:31.200000pt;}
.y37{bottom:37.066667pt;}
.y26{bottom:37.333333pt;}
.y3c{bottom:37.360000pt;}
.y2c{bottom:37.373333pt;}
.y25{bottom:54.133333pt;}
.y32{bottom:54.400000pt;}
.y3b{bottom:54.440000pt;}
.y15{bottom:56.000000pt;}
.y14{bottom:59.733333pt;}
.y3a{bottom:71.493333pt;}
.yd1{bottom:100.266667pt;}
.y11{bottom:105.900000pt;}
.y74{bottom:107.233333pt;}
.yfc{bottom:115.500000pt;}
.y11c{bottom:120.033333pt;}
.y4a{bottom:122.700000pt;}
.y9e{bottom:124.300000pt;}
.y100{bottom:124.566667pt;}
.y73{bottom:125.100000pt;}
.y137{bottom:125.366667pt;}
.y10{bottom:127.766667pt;}
.yfb{bottom:134.160000pt;}
.ycf{bottom:137.626667pt;}
.y11b{bottom:138.706667pt;}
.yff{bottom:140.293333pt;}
.y49{bottom:141.373333pt;}
.y9d{bottom:142.960000pt;}
.y136{bottom:143.760000pt;}
.y72{bottom:145.626667pt;}
.yf{bottom:149.360000pt;}
.yfa{bottom:152.826667pt;}
.y161{bottom:155.493333pt;}
.y71{bottom:156.306667pt;}
.y11a{bottom:157.373333pt;}
.yfe{bottom:158.960000pt;}
.y48{bottom:159.773333pt;}
.y9c{bottom:161.626667pt;}
.y135{bottom:162.440000pt;}
.ye{bottom:166.960000pt;}
.yf9{bottom:171.240000pt;}
.y160{bottom:172.560000pt;}
.y119{bottom:175.773333pt;}
.y70{bottom:176.560000pt;}
.y47{bottom:176.840000pt;}
.y9b{bottom:180.040000pt;}
.y134{bottom:181.106667pt;}
.y162{bottom:182.960000pt;}
.y6f{bottom:187.226667pt;}
.y15f{bottom:189.640000pt;}
.yf8{bottom:189.893333pt;}
.y43{bottom:190.693333pt;}
.y118{bottom:194.426667pt;}
.yaf{bottom:198.173333pt;}
.y9a{bottom:198.706667pt;}
.y133{bottom:199.506667pt;}
.y6e{bottom:202.706667pt;}
.y15e{bottom:206.426667pt;}
.yf7{bottom:208.560000pt;}
.y117{bottom:213.093333pt;}
.yad{bottom:216.293333pt;}
.y99{bottom:217.373333pt;}
.y6d{bottom:218.173333pt;}
.yce{bottom:222.706667pt;}
.y15d{bottom:223.506667pt;}
.y42{bottom:226.173333pt;}
.yf6{bottom:226.960000pt;}
.y116{bottom:231.533333pt;}
.y6c{bottom:233.666667pt;}
.yab{bottom:235.000000pt;}
.y98{bottom:235.800000pt;}
.y132{bottom:236.866667pt;}
.y15c{bottom:240.866667pt;}
.ycd{bottom:241.400000pt;}
.y41{bottom:244.333333pt;}
.yf5{bottom:245.666667pt;}
.y115{bottom:250.200000pt;}
.y6b{bottom:253.933333pt;}
.y97{bottom:254.466667pt;}
.y131{bottom:255.266667pt;}
.y15b{bottom:259.533333pt;}
.ycc{bottom:260.066667pt;}
.y40{bottom:261.400000pt;}
.yf4{bottom:264.333333pt;}
.y6a{bottom:264.600000pt;}
.y114{bottom:268.866667pt;}
.y96{bottom:273.133333pt;}
.y130{bottom:273.933333pt;}
.y15a{bottom:277.933333pt;}
.y3f{bottom:278.466667pt;}
.yf3{bottom:280.066667pt;}
.y69{bottom:284.866667pt;}
.y113{bottom:287.266667pt;}
.y95{bottom:291.533333pt;}
.y12f{bottom:292.600000pt;}
.y3e{bottom:295.533333pt;}
.y159{bottom:296.600000pt;}
.ycb{bottom:297.133333pt;}
.y112{bottom:305.933333pt;}
.y3d{bottom:309.400000pt;}
.y94{bottom:310.200000pt;}
.y12e{bottom:311.000000pt;}
.y158{bottom:315.266667pt;}
.y68{bottom:315.800000pt;}
.yf1{bottom:317.933333pt;}
.y111{bottom:324.600000pt;}
.y39{bottom:326.200000pt;}
.y67{bottom:327.000000pt;}
.y93{bottom:328.866667pt;}
.y12d{bottom:329.666667pt;}
.y157{bottom:333.666667pt;}
.yca{bottom:334.200000pt;}
.y110{bottom:343.000000pt;}
.y66{bottom:345.666667pt;}
.y92{bottom:347.266667pt;}
.y12c{bottom:348.333333pt;}
.y156{bottom:352.333333pt;}
.yc9{bottom:352.866667pt;}
.yee{bottom:355.800000pt;}
.y10f{bottom:361.440000pt;}
.y65{bottom:364.360000pt;}
.y91{bottom:365.960000pt;}
.y12b{bottom:366.773333pt;}
.y155{bottom:371.040000pt;}
.yc8{bottom:371.560000pt;}
.y10e{bottom:379.306667pt;}
.y64{bottom:382.760000pt;}
.y90{bottom:384.626667pt;}
.y12a{bottom:385.440000pt;}
.y154{bottom:389.440000pt;}
.yc7{bottom:389.973333pt;}
.yec{bottom:393.426667pt;}
.y10d{bottom:400.360000pt;}
.y63{bottom:401.440000pt;}
.y8f{bottom:403.040000pt;}
.y129{bottom:404.093333pt;}
.y153{bottom:408.106667pt;}
.yc6{bottom:408.626667pt;}
.y38{bottom:411.560000pt;}
.y10c{bottom:419.026667pt;}
.y62{bottom:420.106667pt;}
.y8e{bottom:421.693333pt;}
.y128{bottom:422.506667pt;}
.y152{bottom:426.773333pt;}
.y36{bottom:428.640000pt;}
.yea{bottom:431.306667pt;}
.y10b{bottom:437.440000pt;}
.y61{bottom:438.506667pt;}
.y8d{bottom:440.373333pt;}
.y127{bottom:441.173333pt;}
.yc5{bottom:443.026667pt;}
.y151{bottom:445.173333pt;}
.ye9{bottom:455.573333pt;}
.y10a{bottom:456.106667pt;}
.y60{bottom:457.173333pt;}
.y8c{bottom:458.773333pt;}
.y126{bottom:459.840000pt;}
.yc4{bottom:461.693333pt;}
.y150{bottom:463.840000pt;}
.ye8{bottom:473.973333pt;}
.y5f{bottom:475.840000pt;}
.y8b{bottom:477.426667pt;}
.y125{bottom:478.240000pt;}
.y34{bottom:479.560000pt;}
.yc3{bottom:480.360000pt;}
.y14f{bottom:482.506667pt;}
.y109{bottom:491.333333pt;}
.ye7{bottom:492.666667pt;}
.y5e{bottom:494.266667pt;}
.y8a{bottom:496.133333pt;}
.y31{bottom:496.666667pt;}
.y124{bottom:496.933333pt;}
.yc2{bottom:499.066667pt;}
.y14e{bottom:500.933333pt;}
.ye6{bottom:511.333333pt;}
.y108{bottom:512.400000pt;}
.y5d{bottom:512.933333pt;}
.y89{bottom:514.533333pt;}
.y123{bottom:515.600000pt;}
.yc1{bottom:517.466667pt;}
.y14d{bottom:519.600000pt;}
.ye5{bottom:529.733333pt;}
.y107{bottom:531.066667pt;}
.y88{bottom:533.200000pt;}
.y122{bottom:534.000000pt;}
.yc0{bottom:536.133333pt;}
.y14c{bottom:538.266667pt;}
.y5c{bottom:547.333333pt;}
.ye4{bottom:548.400000pt;}
.y106{bottom:549.466667pt;}
.y87{bottom:551.866667pt;}
.y121{bottom:552.666667pt;}
.ybf{bottom:554.800000pt;}
.y14b{bottom:556.666667pt;}
.y2e{bottom:564.933333pt;}
.ye3{bottom:567.066667pt;}
.y105{bottom:568.133333pt;}
.y86{bottom:570.266667pt;}
.y120{bottom:571.333333pt;}
.y14a{bottom:575.333333pt;}
.y5b{bottom:582.000000pt;}
.ye2{bottom:585.466667pt;}
.y104{bottom:586.800000pt;}
.y85{bottom:588.933333pt;}
.y11f{bottom:589.733333pt;}
.ybe{bottom:590.000000pt;}
.y149{bottom:594.000000pt;}
.y2b{bottom:601.733333pt;}
.ye1{bottom:604.133333pt;}
.y103{bottom:605.200000pt;}
.yd{bottom:607.333333pt;}
.y84{bottom:607.600000pt;}
.y11e{bottom:608.400000pt;}
.y148{bottom:612.426667pt;}
.y5a{bottom:615.626667pt;}
.ye0{bottom:622.840000pt;}
.y102{bottom:623.893333pt;}
.y83{bottom:626.026667pt;}
.ybd{bottom:626.840000pt;}
.y11d{bottom:627.106667pt;}
.y147{bottom:631.106667pt;}
.yc{bottom:632.173333pt;}
.y59{bottom:634.306667pt;}
.ydf{bottom:641.226667pt;}
.y101{bottom:643.106667pt;}
.ybc{bottom:645.506667pt;}
.y146{bottom:649.760000pt;}
.y58{bottom:652.693333pt;}
.y29{bottom:652.973333pt;}
.yde{bottom:659.893333pt;}
.y82{bottom:660.706667pt;}
.ybb{bottom:664.173333pt;}
.y145{bottom:668.440000pt;}
.y24{bottom:670.040000pt;}
.y57{bottom:671.373333pt;}
.yb{bottom:672.973333pt;}
.ydd{bottom:678.560000pt;}
.y81{bottom:679.893333pt;}
.yaa{bottom:681.226667pt;}
.yba{bottom:682.840000pt;}
.y144{bottom:686.840000pt;}
.y56{bottom:690.040000pt;}
.ya{bottom:697.773333pt;}
.ydc{bottom:698.040000pt;}
.ya9{bottom:699.906667pt;}
.yb9{bottom:701.226667pt;}
.y143{bottom:705.506667pt;}
.y55{bottom:708.440000pt;}
.ydb{bottom:716.706667pt;}
.y80{bottom:716.960000pt;}
.ya8{bottom:718.293333pt;}
.yb8{bottom:719.893333pt;}
.y9{bottom:721.226667pt;}
.y142{bottom:724.173333pt;}
.y54{bottom:726.840000pt;}
.yda{bottom:735.373333pt;}
.y7f{bottom:735.626667pt;}
.ya7{bottom:736.960000pt;}
.yb7{bottom:738.560000pt;}
.y8{bottom:740.733333pt;}
.y141{bottom:742.600000pt;}
.y23{bottom:743.400000pt;}
.y53{bottom:744.733333pt;}
.yd9{bottom:753.800000pt;}
.y7e{bottom:754.066667pt;}
.ya6{bottom:755.666667pt;}
.yb6{bottom:757.000000pt;}
.y140{bottom:761.266667pt;}
.y52{bottom:765.800000pt;}
.y7{bottom:767.933333pt;}
.y22{bottom:769.266667pt;}
.y7d{bottom:772.733333pt;}
.yd8{bottom:773.533333pt;}
.ya5{bottom:774.066667pt;}
.yb5{bottom:775.666667pt;}
.y13f{bottom:779.933333pt;}
.y51{bottom:785.800000pt;}
.y21{bottom:788.466667pt;}
.y7c{bottom:791.400000pt;}
.yd7{bottom:792.200000pt;}
.ya4{bottom:792.733333pt;}
.yb4{bottom:794.333333pt;}
.y13e{bottom:798.333333pt;}
.y6{bottom:808.733333pt;}
.y7b{bottom:809.800000pt;}
.y50{bottom:810.600000pt;}
.ya3{bottom:811.400000pt;}
.yb3{bottom:812.733333pt;}
.y20{bottom:814.066667pt;}
.y13d{bottom:817.000000pt;}
.y7a{bottom:828.466667pt;}
.yd6{bottom:829.266667pt;}
.ya2{bottom:829.800000pt;}
.y1f{bottom:831.133333pt;}
.yb2{bottom:831.400000pt;}
.y4f{bottom:835.400000pt;}
.y13c{bottom:835.666667pt;}
.y79{bottom:847.133333pt;}
.yd5{bottom:847.933333pt;}
.y1e{bottom:848.200000pt;}
.yb1{bottom:850.066667pt;}
.y5{bottom:852.200000pt;}
.y13b{bottom:854.066667pt;}
.ya1{bottom:866.106667pt;}
.y1d{bottom:867.440000pt;}
.yb0{bottom:868.506667pt;}
.y78{bottom:869.560000pt;}
.y13a{bottom:872.773333pt;}
.y4e{bottom:876.226667pt;}
.yd4{bottom:886.106667pt;}
.ya0{bottom:887.173333pt;}
.y77{bottom:888.226667pt;}
.y139{bottom:891.440000pt;}
.y1c{bottom:893.040000pt;}
.y4{bottom:894.626667pt;}
.y4d{bottom:900.773333pt;}
.yd3{bottom:904.773333pt;}
.yfd{bottom:905.560000pt;}
.y9f{bottom:905.840000pt;}
.y138{bottom:909.560000pt;}
.y1b{bottom:910.106667pt;}
.y76{bottom:922.626667pt;}
.y4c{bottom:924.226667pt;}
.y1a{bottom:927.173333pt;}
.y3{bottom:930.626667pt;}
.y75{bottom:940.506667pt;}
.y4b{bottom:942.893333pt;}
.y19{bottom:944.226667pt;}
.y2{bottom:948.506667pt;}
.y13{bottom:961.560000pt;}
.y12{bottom:988.506667pt;}
.y1{bottom:993.866667pt;}
.h1c{height:16.800000pt;}
.h14{height:17.053333pt;}
.h1a{height:17.066667pt;}
.h18{height:17.100000pt;}
.hc{height:18.666667pt;}
.h27{height:18.700000pt;}
.h2a{height:20.000000pt;}
.h1e{height:32.000000pt;}
.h21{height:32.965625pt;}
.h16{height:36.800000pt;}
.h2d{height:37.066667pt;}
.h2c{height:37.100000pt;}
.h2b{height:37.333333pt;}
.h29{height:37.366667pt;}
.he{height:43.466667pt;}
.h2f{height:48.718750pt;}
.h1f{height:49.947917pt;}
.h19{height:50.933333pt;}
.h15{height:51.233333pt;}
.h13{height:53.796875pt;}
.h10{height:54.942708pt;}
.h2{height:55.625000pt;}
.hd{height:56.187500pt;}
.hf{height:56.546875pt;}
.h24{height:58.687500pt;}
.h1d{height:59.937500pt;}
.h25{height:61.291667pt;}
.h23{height:61.687500pt;}
.h1{height:65.781915pt;}
.h3{height:66.750000pt;}
.h12{height:67.986667pt;}
.h17{height:68.266667pt;}
.ha{height:68.468750pt;}
.h22{height:69.927083pt;}
.hb{height:74.250000pt;}
.h8{height:78.250000pt;}
.h9{height:79.916667pt;}
.h7{height:82.250000pt;}
.h20{height:82.811458pt;}
.h1b{height:85.366667pt;}
.h6{height:89.000000pt;}
.h11{height:89.906250pt;}
.h5{height:136.937500pt;}
.h4{height:144.625000pt;}
.h26{height:441.960000pt;}
.h2e{height:726.600000pt;}
.h28{height:819.666667pt;}
.h0{height:1056.000000pt;}
.w7{width:21.866667pt;}
.w3{width:77.366667pt;}
.we{width:79.466667pt;}
.wf{width:79.500000pt;}
.wc{width:131.533333pt;}
.w9{width:180.866667pt;}
.wd{width:211.800000pt;}
.w8{width:215.533333pt;}
.w6{width:228.600000pt;}
.w5{width:232.866667pt;}
.w4{width:233.133333pt;}
.w2{width:253.133333pt;}
.wa{width:402.773333pt;}
.wb{width:582.560000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x28{left:10.933333pt;}
.x22{left:15.200000pt;}
.x24{left:24.000000pt;}
.x2a{left:27.733333pt;}
.x18{left:29.333333pt;}
.x2d{left:30.933333pt;}
.x25{left:32.000000pt;}
.x1a{left:34.933333pt;}
.x1e{left:38.933333pt;}
.x3d{left:40.540000pt;}
.x1d{left:42.133333pt;}
.x16{left:49.866667pt;}
.x29{left:54.666667pt;}
.x14{left:56.800000pt;}
.x2f{left:62.133333pt;}
.x26{left:64.533333pt;}
.x19{left:65.600000pt;}
.x15{left:68.533333pt;}
.x2b{left:71.773333pt;}
.x3a{left:74.700000pt;}
.x23{left:75.760000pt;}
.x1f{left:80.266667pt;}
.x17{left:83.733333pt;}
.x2e{left:85.360000pt;}
.x2c{left:92.266667pt;}
.x1b{left:93.893333pt;}
.xe{left:106.166667pt;}
.x27{left:107.506667pt;}
.x1{left:113.366655pt;}
.x1c{left:116.306667pt;}
.x6{left:120.833321pt;}
.x33{left:123.766655pt;}
.x9{left:128.033321pt;}
.xd{left:134.159988pt;}
.x40{left:137.359988pt;}
.x41{left:145.906667pt;}
.x8{left:148.306655pt;}
.x7{left:154.439988pt;}
.x30{left:160.599988pt;}
.x13{left:164.866667pt;}
.x31{left:173.673333pt;}
.x4{left:188.066655pt;}
.x3e{left:196.593333pt;}
.xb{left:214.999988pt;}
.x47{left:221.133321pt;}
.x3c{left:236.866655pt;}
.x5{left:241.666655pt;}
.x3f{left:248.073333pt;}
.x48{left:249.399988pt;}
.x46{left:266.466655pt;}
.x42{left:278.240000pt;}
.x32{left:287.040000pt;}
.x38{left:301.173321pt;}
.xc{left:302.506655pt;}
.x4a{left:306.226655pt;}
.x49{left:310.506655pt;}
.x45{left:316.106655pt;}
.x4b{left:324.639988pt;}
.x37{left:331.839988pt;}
.x12{left:339.293321pt;}
.x3b{left:341.439988pt;}
.x36{left:352.893321pt;}
.x35{left:357.173321pt;}
.x34{left:358.226655pt;}
.x10{left:359.306667pt;}
.x20{left:393.466667pt;}
.x3{left:397.733321pt;}
.x21{left:415.333333pt;}
.x11{left:436.666667pt;}
.x43{left:490.573333pt;}
.x44{left:570.573333pt;}
.x39{left:575.100000pt;}
.x2{left:583.639988pt;}
.xa{left:586.039988pt;}
.x4c{left:737.839988pt;}
}




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