
    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_2750cd26874e99f1181cbb3a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_e7f3fd13a49665fde9090643.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_29723895c59c060d12bba295.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_35c859e94c2e7024d797e8d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_68d46cf6900e833e0f64cd1d.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_9879fc3a830a0ab3f556ffd8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_7393c4b6350702385c70f722.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b46f7e36b2d2408a76d0305c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_33de437ba5dc12c244ecd704.woff')format("woff");}.ff9{font-family:ff9;line-height:0.800293;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_e67ea27eb039e5f85c03b1e5.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f3af768ab0a0e9a067e6f7f6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.060059;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_b050b5f02665b35c0a133761.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_059d75a9cfa1ea17b70a4c29.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-77.760000px;}
.v5{vertical-align:-33.120000px;}
.v3{vertical-align:-30.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.ls11{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.594000px;}
.lsf{letter-spacing:-0.590400px;}
.ls10{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.193200px;}
.ls5{letter-spacing:-0.169800px;}
.lsa{letter-spacing:-0.140400px;}
.lsb{letter-spacing:-0.085200px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.022320px;}
.ls12{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.075000px;}
.ls0{letter-spacing:0.100800px;}
.ls13{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.150000px;}
.lse{letter-spacing:0.172800px;}
.ls16{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.187200px;}
.ls14{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.858000px;}
.ls17{letter-spacing:0.864000px;}
.ls1{letter-spacing:92.304000px;}
.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;}
}
.ws13{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.107200px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-13.841040px;}
.ws1{word-spacing:-12.813240px;}
.wsd{word-spacing:-12.060000px;}
.wse{word-spacing:-10.924560px;}
.ws9{word-spacing:-10.527600px;}
.ws8{word-spacing:-10.472400px;}
.ws3{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.311840px;}
.wsa{word-spacing:-10.308240px;}
.ws0{word-spacing:-9.979200px;}
.ws6{word-spacing:-9.937440px;}
.ws5{word-spacing:-7.695480px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.622880px;}
._1{width:1.307760px;}
._2{width:2.394240px;}
._3{width:4.229760px;}
._4{width:5.481600px;}
._5{width:7.416000px;}
._6{width:8.462880px;}
._11{width:9.544800px;}
._12{width:10.822560px;}
._b{width:12.744000px;}
._c{width:13.851120px;}
._13{width:14.932800px;}
._10{width:16.858080px;}
._f{width:17.984160px;}
._14{width:19.539120px;}
._9{width:21.312000px;}
._a{width:22.608000px;}
._d{width:24.602880px;}
._8{width:25.632000px;}
._e{width:27.622080px;}
._1a{width:28.739520px;}
._15{width:30.312000px;}
._19{width:32.256000px;}
._16{width:33.840000px;}
._17{width:35.424000px;}
._18{width:36.648000px;}
._1b{width:44.568000px;}
._7{width:45.720000px;}
._1c{width:46.764240px;}
._1f{width:53.064000px;}
._20{width:54.864000px;}
._27{width:81.936000px;}
._23{width:84.744000px;}
._24{width:117.288000px;}
._1d{width:123.408000px;}
._1e{width:124.476240px;}
._22{width:161.667120px;}
._26{width:356.544000px;}
._21{width:397.512000px;}
._25{width:1918.512000px;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(38,38,38);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:102.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:0.870000px;}
.y38{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y4{bottom:5.220000px;}
.y69{bottom:7.380000px;}
.y3f{bottom:22.320000px;}
.y2{bottom:24.660000px;}
.y68{bottom:26.280000px;}
.y5{bottom:32.400000px;}
.y32{bottom:34.740000px;}
.y3e{bottom:41.220000px;}
.y1{bottom:42.660000px;}
.y30{bottom:111.060000px;}
.y118{bottom:113.760000px;}
.yb7{bottom:121.140000px;}
.y154{bottom:122.940000px;}
.ydd{bottom:123.660000px;}
.y2f{bottom:125.820000px;}
.y67{bottom:132.660000px;}
.yce{bottom:133.020000px;}
.y8e{bottom:135.360000px;}
.y117{bottom:137.520000px;}
.yf9{bottom:139.680000px;}
.y2e{bottom:140.400000px;}
.y135{bottom:143.100000px;}
.yb6{bottom:144.720000px;}
.y2d{bottom:146.340000px;}
.y153{bottom:146.700000px;}
.ydc{bottom:147.600000px;}
.y2c{bottom:156.420000px;}
.ycd{bottom:156.960000px;}
.y8d{bottom:159.120000px;}
.y116{bottom:161.280000px;}
.yf8{bottom:163.620000px;}
.y134{bottom:166.860000px;}
.yb5{bottom:168.480000px;}
.y176{bottom:170.280000px;}
.y66{bottom:180.180000px;}
.y8c{bottom:182.880000px;}
.y115{bottom:185.220000px;}
.y152{bottom:185.580000px;}
.yf7{bottom:187.380000px;}
.yb4{bottom:192.420000px;}
.y175{bottom:194.040000px;}
.ycc{bottom:201.780000px;}
.y65{bottom:204.120000px;}
.y133{bottom:205.560000px;}
.y8b{bottom:206.670000px;}
.y2b{bottom:207.030000px;}
.y151{bottom:209.370000px;}
.yf6{bottom:211.170000px;}
.yb3{bottom:216.210000px;}
.y174{bottom:217.830000px;}
.y18d{bottom:224.310000px;}
.ycb{bottom:225.570000px;}
.y64{bottom:227.910000px;}
.y132{bottom:229.530000px;}
.y114{bottom:229.890000px;}
.y8a{bottom:230.610000px;}
.yf5{bottom:234.930000px;}
.yb2{bottom:239.970000px;}
.y173{bottom:241.590000px;}
.y2a{bottom:243.930000px;}
.y150{bottom:248.250000px;}
.yca{bottom:249.330000px;}
.y63{bottom:251.670000px;}
.y113{bottom:253.650000px;}
.y89{bottom:254.370000px;}
.y18c{bottom:263.190000px;}
.yb1{bottom:263.730000px;}
.y172{bottom:265.530000px;}
.yf4{bottom:265.710000px;}
.y131{bottom:268.230000px;}
.y14f{bottom:272.010000px;}
.yc9{bottom:273.090000px;}
.y62{bottom:275.610000px;}
.y112{bottom:277.590000px;}
.y88{bottom:278.130000px;}
.y29{bottom:278.670000px;}
.yb0{bottom:287.490000px;}
.y130{bottom:291.990000px;}
.y14e{bottom:295.770000px;}
.yc8{bottom:297.030000px;}
.y111{bottom:301.350000px;}
.y28{bottom:301.890000px;}
.y18b{bottom:302.070000px;}
.y171{bottom:304.230000px;}
.yf3{bottom:311.070000px;}
.yaf{bottom:311.430000px;}
.y12f{bottom:315.930000px;}
.y61{bottom:320.250000px;}
.yc7{bottom:320.790000px;}
.y110{bottom:325.110000px;}
.y18a{bottom:325.830000px;}
.y170{bottom:327.990000px;}
.y27{bottom:331.230000px;}
.y87{bottom:332.670000px;}
.yf2{bottom:334.650000px;}
.yae{bottom:335.190000px;}
.y60{bottom:344.010000px;}
.yc6{bottom:344.550000px;}
.y26{bottom:345.450000px;}
.y10f{bottom:348.870000px;}
.y16f{bottom:351.930000px;}
.y12e{bottom:354.630000px;}
.yf1{bottom:358.410000px;}
.yad{bottom:358.950000px;}
.y189{bottom:364.530000px;}
.y5f{bottom:367.950000px;}
.yc5{bottom:368.310000px;}
.y10e{bottom:372.810000px;}
.y25{bottom:374.970000px;}
.y86{bottom:378.030000px;}
.y12d{bottom:378.390000px;}
.y14d{bottom:382.170000px;}
.yf0{bottom:382.350000px;}
.yac{bottom:382.710000px;}
.y188{bottom:388.470000px;}
.y24{bottom:389.190000px;}
.y16e{bottom:390.630000px;}
.y5e{bottom:391.710000px;}
.yc4{bottom:392.250000px;}
.y85{bottom:401.610000px;}
.y12c{bottom:402.330000px;}
.y10d{bottom:403.410000px;}
.y14c{bottom:405.930000px;}
.yab{bottom:406.650000px;}
.y187{bottom:412.230000px;}
.y16d{bottom:414.390000px;}
.y5d{bottom:415.470000px;}
.yc3{bottom:416.010000px;}
.y23{bottom:418.530000px;}
.y84{bottom:425.370000px;}
.yef{bottom:427.170000px;}
.ydb{bottom:430.050000px;}
.yaa{bottom:430.410000px;}
.y22{bottom:432.750000px;}
.y186{bottom:435.990000px;}
.y16c{bottom:438.330000px;}
.y5c{bottom:439.230000px;}
.yc2{bottom:439.770000px;}
.y12b{bottom:441.075000px;}
.y14b{bottom:444.855000px;}
.y10c{bottom:448.815000px;}
.y83{bottom:449.355000px;}
.yee{bottom:450.975000px;}
.yda{bottom:453.855000px;}
.ya9{bottom:454.215000px;}
.y16b{bottom:462.135000px;}
.y21{bottom:462.315000px;}
.y5b{bottom:463.215000px;}
.yc1{bottom:463.575000px;}
.y12a{bottom:465.015000px;}
.y14a{bottom:468.615000px;}
.y10b{bottom:472.395000px;}
.y82{bottom:473.115000px;}
.yed{bottom:474.735000px;}
.y185{bottom:474.915000px;}
.ya8{bottom:477.975000px;}
.y20{bottom:484.095000px;}
.y16a{bottom:485.895000px;}
.y5a{bottom:486.975000px;}
.yc0{bottom:487.515000px;}
.y129{bottom:488.775000px;}
.y149{bottom:492.375000px;}
.y10a{bottom:496.155000px;}
.y81{bottom:496.875000px;}
.y1f{bottom:498.315000px;}
.yec{bottom:498.495000px;}
.y184{bottom:498.675000px;}
.yd9{bottom:499.215000px;}
.y169{bottom:509.655000px;}
.y59{bottom:510.735000px;}
.ybf{bottom:511.275000px;}
.y109{bottom:520.095000px;}
.y80{bottom:520.815000px;}
.yeb{bottom:522.255000px;}
.yd8{bottom:522.795000px;}
.ya7{bottom:522.975000px;}
.y128{bottom:527.475000px;}
.y1e{bottom:527.655000px;}
.y148{bottom:531.255000px;}
.ybe{bottom:535.035000px;}
.y183{bottom:537.375000px;}
.y58{bottom:541.515000px;}
.y1d{bottom:541.875000px;}
.y108{bottom:543.855000px;}
.yea{bottom:546.195000px;}
.ya6{bottom:546.735000px;}
.y168{bottom:548.535000px;}
.y127{bottom:551.415000px;}
.ybd{bottom:558.795000px;}
.y182{bottom:561.315000px;}
.y7f{bottom:565.455000px;}
.y107{bottom:567.615000px;}
.ye9{bottom:569.955000px;}
.y147{bottom:570.135000px;}
.ya5{bottom:570.495000px;}
.y1c{bottom:571.395000px;}
.y167{bottom:572.295000px;}
.y57{bottom:579.675000px;}
.y181{bottom:585.075000px;}
.y1b{bottom:585.615000px;}
.y7e{bottom:589.215000px;}
.ybc{bottom:589.575000px;}
.y126{bottom:590.115000px;}
.y106{bottom:591.375000px;}
.ye8{bottom:593.715000px;}
.y146{bottom:593.895000px;}
.ya4{bottom:594.255000px;}
.y166{bottom:596.055000px;}
.y56{bottom:601.995000px;}
.y180{bottom:608.835000px;}
.y7d{bottom:613.155000px;}
.y125{bottom:613.875000px;}
.y1a{bottom:614.955000px;}
.y105{bottom:615.315000px;}
.ye7{bottom:617.475000px;}
.ya3{bottom:618.015000px;}
.y165{bottom:619.995000px;}
.y55{bottom:624.315000px;}
.y145{bottom:632.595000px;}
.ybb{bottom:634.935000px;}
.y19{bottom:636.735000px;}
.y7c{bottom:636.915000px;}
.y104{bottom:639.075000px;}
.ye6{bottom:641.415000px;}
.ya2{bottom:641.775000px;}
.y54{bottom:646.455000px;}
.y18{bottom:651.135000px;}
.y124{bottom:652.755000px;}
.y144{bottom:656.535000px;}
.yba{bottom:658.515000px;}
.y164{bottom:658.695000px;}
.y7b{bottom:660.675000px;}
.y103{bottom:662.835000px;}
.ye5{bottom:665.175000px;}
.ya1{bottom:665.715000px;}
.y53{bottom:668.775000px;}
.y17f{bottom:671.475000px;}
.y123{bottom:676.545000px;}
.y143{bottom:680.325000px;}
.y17{bottom:680.505000px;}
.yb9{bottom:682.305000px;}
.y163{bottom:682.665000px;}
.y7a{bottom:684.465000px;}
.y102{bottom:686.625000px;}
.ye4{bottom:688.965000px;}
.ya0{bottom:689.505000px;}
.y52{bottom:690.945000px;}
.y16{bottom:694.725000px;}
.y17e{bottom:695.265000px;}
.y122{bottom:700.305000px;}
.y162{bottom:706.425000px;}
.y101{bottom:710.565000px;}
.y51{bottom:711.105000px;}
.ye3{bottom:712.725000px;}
.y9f{bottom:713.265000px;}
.y79{bottom:715.245000px;}
.y15{bottom:716.145000px;}
.y142{bottom:719.025000px;}
.yb8{bottom:722.985000px;}
.y50{bottom:731.805000px;}
.y100{bottom:734.325000px;}
.ye2{bottom:736.665000px;}
.y9e{bottom:737.025000px;}
.y14{bottom:737.925000px;}
.y121{bottom:739.185000px;}
.y141{bottom:742.965000px;}
.y161{bottom:745.125000px;}
.y17d{bottom:757.905000px;}
.yff{bottom:758.085000px;}
.yd7{bottom:758.265000px;}
.y13{bottom:759.885000px;}
.ye1{bottom:760.425000px;}
.y78{bottom:760.605000px;}
.y9d{bottom:760.965000px;}
.y120{bottom:762.945000px;}
.y4f{bottom:764.025000px;}
.y160{bottom:769.065000px;}
.y12{bottom:781.665000px;}
.yd6{bottom:781.845000px;}
.y77{bottom:784.185000px;}
.y11f{bottom:786.705000px;}
.y11{bottom:789.225000px;}
.y4e{bottom:789.765000px;}
.y10{bottom:801.105000px;}
.y140{bottom:805.605000px;}
.yd5{bottom:805.785000px;}
.y9c{bottom:805.965000px;}
.y15f{bottom:807.765000px;}
.y76{bottom:807.945000px;}
.y4d{bottom:813.525000px;}
.yf{bottom:821.625000px;}
.y11e{bottom:825.585000px;}
.y13f{bottom:829.365000px;}
.y9b{bottom:829.545000px;}
.yfe{bottom:829.725000px;}
.y15e{bottom:831.525000px;}
.y75{bottom:831.705000px;}
.y4c{bottom:837.465000px;}
.y17c{bottom:844.305000px;}
.ye{bottom:844.485000px;}
.y11d{bottom:849.345000px;}
.y13e{bottom:853.125000px;}
.y9a{bottom:853.305000px;}
.y15d{bottom:855.465000px;}
.y74{bottom:855.645000px;}
.y4b{bottom:861.225000px;}
.y17b{bottom:868.065000px;}
.yfd{bottom:874.365000px;}
.yd{bottom:874.725000px;}
.y13d{bottom:876.885000px;}
.y99{bottom:877.065000px;}
.y73{bottom:879.405000px;}
.y4a{bottom:884.985000px;}
.y11c{bottom:888.225000px;}
.y17a{bottom:892.005000px;}
.y15c{bottom:894.165000px;}
.yfc{bottom:898.125000px;}
.y13c{bottom:900.645000px;}
.y98{bottom:901.005000px;}
.y72{bottom:903.165000px;}
.yc{bottom:906.405000px;}
.y49{bottom:908.745000px;}
.y11b{bottom:912.030000px;}
.y179{bottom:915.810000px;}
.y15b{bottom:917.970000px;}
.yfb{bottom:921.930000px;}
.y97{bottom:924.810000px;}
.y71{bottom:926.970000px;}
.y48{bottom:932.730000px;}
.yb{bottom:938.130000px;}
.y13b{bottom:939.570000px;}
.yfa{bottom:945.690000px;}
.yd4{bottom:945.870000px;}
.ye0{bottom:948.210000px;}
.y96{bottom:948.570000px;}
.y11a{bottom:950.550000px;}
.y47{bottom:956.490000px;}
.y15a{bottom:956.850000px;}
.y13a{bottom:963.330000px;}
.yd3{bottom:969.630000px;}
.ydf{bottom:971.790000px;}
.y70{bottom:971.970000px;}
.y95{bottom:972.330000px;}
.y178{bottom:978.450000px;}
.y46{bottom:980.250000px;}
.y159{bottom:980.610000px;}
.ya{bottom:986.910000px;}
.y139{bottom:987.270000px;}
.y39{bottom:989.640000px;}
.y37{bottom:990.180000px;}
.y35{bottom:992.340000px;}
.yd2{bottom:993.390000px;}
.y6f{bottom:995.730000px;}
.y119{bottom:995.910000px;}
.y94{bottom:996.270000px;}
.y177{bottom:1002.210000px;}
.y45{bottom:1004.010000px;}
.y158{bottom:1004.370000px;}
.yd1{bottom:1017.150000px;}
.y6e{bottom:1019.490000px;}
.y93{bottom:1020.030000px;}
.y138{bottom:1025.970000px;}
.y9{bottom:1027.590000px;}
.y44{bottom:1027.770000px;}
.y157{bottom:1028.310000px;}
.yd0{bottom:1040.910000px;}
.y6d{bottom:1043.250000px;}
.y92{bottom:1043.970000px;}
.y137{bottom:1049.730000px;}
.y43{bottom:1051.710000px;}
.y156{bottom:1052.070000px;}
.y8{bottom:1062.870000px;}
.ycf{bottom:1064.850000px;}
.y6c{bottom:1067.010000px;}
.y136{bottom:1073.670000px;}
.y42{bottom:1075.470000px;}
.y155{bottom:1075.830000px;}
.y91{bottom:1088.610000px;}
.yde{bottom:1090.950000px;}
.y41{bottom:1099.230000px;}
.y7{bottom:1101.030000px;}
.y90{bottom:1112.370000px;}
.y6b{bottom:1114.710000px;}
.y40{bottom:1132.530000px;}
.y8f{bottom:1136.130000px;}
.y6a{bottom:1138.470000px;}
.y6{bottom:1139.190000px;}
.y3d{bottom:1155.420000px;}
.y3c{bottom:1169.460000px;}
.y3b{bottom:1183.500000px;}
.y3a{bottom:1197.540000px;}
.y31{bottom:1215.720000px;}
.y34{bottom:1224.180000px;}
.y33{bottom:1238.400000px;}
.h1a{height:12.780000px;}
.h1b{height:14.400000px;}
.h18{height:21.815859px;}
.h14{height:30.077578px;}
.h19{height:31.001484px;}
.h2{height:38.405391px;}
.h1c{height:38.464805px;}
.h1d{height:40.843828px;}
.h10{height:40.985156px;}
.h17{height:41.220000px;}
.hd{height:42.086250px;}
.h23{height:47.344922px;}
.h15{height:47.980898px;}
.h4{height:49.680000px;}
.h25{height:50.273438px;}
.h5{height:52.817344px;}
.h6{height:53.709961px;}
.h20{height:56.084062px;}
.h16{height:59.439023px;}
.ha{height:60.960938px;}
.hf{height:65.010937px;}
.h3{height:65.884219px;}
.h1f{height:70.628906px;}
.h12{height:70.664062px;}
.h11{height:71.225156px;}
.h13{height:71.324297px;}
.he{height:72.326250px;}
.h21{height:72.562500px;}
.hb{height:74.004654px;}
.h1e{height:76.279219px;}
.h22{height:80.464922px;}
.h24{height:80.644922px;}
.h7{height:84.898125px;}
.h9{height:86.564531px;}
.h8{height:91.441406px;}
.hc{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:82.260000px;}
.w2{width:102.240000px;}
.w7{width:123.300000px;}
.w5{width:135.720000px;}
.w6{width:153.720000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:10.836000px;}
.x1a{left:13.320000px;}
.x1d{left:14.655000px;}
.x3{left:19.230000px;}
.x1f{left:28.590000px;}
.x19{left:41.040000px;}
.x1{left:108.036000px;}
.x18{left:111.816000px;}
.x27{left:112.896000px;}
.xe{left:113.976000px;}
.x10{left:116.496000px;}
.x20{left:118.116000px;}
.x16{left:120.096000px;}
.x14{left:122.076000px;}
.x4{left:124.416000px;}
.x28{left:125.856000px;}
.xc{left:132.336000px;}
.xb{left:142.236000px;}
.x5{left:150.510000px;}
.x21{left:154.290000px;}
.x24{left:162.030000px;}
.x12{left:198.030000px;}
.xd{left:202.350000px;}
.x23{left:207.210000px;}
.x25{left:215.850000px;}
.x29{left:240.150000px;}
.x13{left:244.110000px;}
.x22{left:292.755000px;}
.x6{left:318.135000px;}
.x17{left:324.075000px;}
.x15{left:343.875000px;}
.x11{left:360.795000px;}
.x9{left:381.673125px;}
.x1c{left:383.040000px;}
.xa{left:386.895000px;}
.xf{left:419.655000px;}
.x8{left:434.595000px;}
.x7{left:446.475000px;}
.x26{left:595.005000px;}
.x1e{left:675.540000px;}
.x2{left:790.740000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v5{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.986667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.528000pt;}
.lsf{letter-spacing:-0.524800pt;}
.ls10{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.171733pt;}
.ls5{letter-spacing:-0.150933pt;}
.lsa{letter-spacing:-0.124800pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.019840pt;}
.ls12{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.066667pt;}
.ls0{letter-spacing:0.089600pt;}
.ls13{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133333pt;}
.lse{letter-spacing:0.153600pt;}
.ls16{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.166400pt;}
.ls14{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.762667pt;}
.ls17{letter-spacing:0.768000pt;}
.ls1{letter-spacing:82.048000pt;}
.ws13{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.206400pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-12.303147pt;}
.ws1{word-spacing:-11.389547pt;}
.wsd{word-spacing:-10.720000pt;}
.wse{word-spacing:-9.710720pt;}
.ws9{word-spacing:-9.357867pt;}
.ws8{word-spacing:-9.308800pt;}
.ws3{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.166080pt;}
.wsa{word-spacing:-9.162880pt;}
.ws0{word-spacing:-8.870400pt;}
.ws6{word-spacing:-8.833280pt;}
.ws5{word-spacing:-6.840427pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.442560pt;}
._1{width:1.162453pt;}
._2{width:2.128213pt;}
._3{width:3.759787pt;}
._4{width:4.872533pt;}
._5{width:6.592000pt;}
._6{width:7.522560pt;}
._11{width:8.484267pt;}
._12{width:9.620053pt;}
._b{width:11.328000pt;}
._c{width:12.312107pt;}
._13{width:13.273600pt;}
._10{width:14.984960pt;}
._f{width:15.985920pt;}
._14{width:17.368107pt;}
._9{width:18.944000pt;}
._a{width:20.096000pt;}
._d{width:21.869227pt;}
._8{width:22.784000pt;}
._e{width:24.552960pt;}
._1a{width:25.546240pt;}
._15{width:26.944000pt;}
._19{width:28.672000pt;}
._16{width:30.080000pt;}
._17{width:31.488000pt;}
._18{width:32.576000pt;}
._1b{width:39.616000pt;}
._7{width:40.640000pt;}
._1c{width:41.568213pt;}
._1f{width:47.168000pt;}
._20{width:48.768000pt;}
._27{width:72.832000pt;}
._23{width:75.328000pt;}
._24{width:104.256000pt;}
._1d{width:109.696000pt;}
._1e{width:110.645547pt;}
._22{width:143.704107pt;}
._26{width:316.928000pt;}
._21{width:353.344000pt;}
._25{width:1705.344000pt;}
.fsb{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:90.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:0.773333pt;}
.y38{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y4{bottom:4.640000pt;}
.y69{bottom:6.560000pt;}
.y3f{bottom:19.840000pt;}
.y2{bottom:21.920000pt;}
.y68{bottom:23.360000pt;}
.y5{bottom:28.800000pt;}
.y32{bottom:30.880000pt;}
.y3e{bottom:36.640000pt;}
.y1{bottom:37.920000pt;}
.y30{bottom:98.720000pt;}
.y118{bottom:101.120000pt;}
.yb7{bottom:107.680000pt;}
.y154{bottom:109.280000pt;}
.ydd{bottom:109.920000pt;}
.y2f{bottom:111.840000pt;}
.y67{bottom:117.920000pt;}
.yce{bottom:118.240000pt;}
.y8e{bottom:120.320000pt;}
.y117{bottom:122.240000pt;}
.yf9{bottom:124.160000pt;}
.y2e{bottom:124.800000pt;}
.y135{bottom:127.200000pt;}
.yb6{bottom:128.640000pt;}
.y2d{bottom:130.080000pt;}
.y153{bottom:130.400000pt;}
.ydc{bottom:131.200000pt;}
.y2c{bottom:139.040000pt;}
.ycd{bottom:139.520000pt;}
.y8d{bottom:141.440000pt;}
.y116{bottom:143.360000pt;}
.yf8{bottom:145.440000pt;}
.y134{bottom:148.320000pt;}
.yb5{bottom:149.760000pt;}
.y176{bottom:151.360000pt;}
.y66{bottom:160.160000pt;}
.y8c{bottom:162.560000pt;}
.y115{bottom:164.640000pt;}
.y152{bottom:164.960000pt;}
.yf7{bottom:166.560000pt;}
.yb4{bottom:171.040000pt;}
.y175{bottom:172.480000pt;}
.ycc{bottom:179.360000pt;}
.y65{bottom:181.440000pt;}
.y133{bottom:182.720000pt;}
.y8b{bottom:183.706667pt;}
.y2b{bottom:184.026667pt;}
.y151{bottom:186.106667pt;}
.yf6{bottom:187.706667pt;}
.yb3{bottom:192.186667pt;}
.y174{bottom:193.626667pt;}
.y18d{bottom:199.386667pt;}
.ycb{bottom:200.506667pt;}
.y64{bottom:202.586667pt;}
.y132{bottom:204.026667pt;}
.y114{bottom:204.346667pt;}
.y8a{bottom:204.986667pt;}
.yf5{bottom:208.826667pt;}
.yb2{bottom:213.306667pt;}
.y173{bottom:214.746667pt;}
.y2a{bottom:216.826667pt;}
.y150{bottom:220.666667pt;}
.yca{bottom:221.626667pt;}
.y63{bottom:223.706667pt;}
.y113{bottom:225.466667pt;}
.y89{bottom:226.106667pt;}
.y18c{bottom:233.946667pt;}
.yb1{bottom:234.426667pt;}
.y172{bottom:236.026667pt;}
.yf4{bottom:236.186667pt;}
.y131{bottom:238.426667pt;}
.y14f{bottom:241.786667pt;}
.yc9{bottom:242.746667pt;}
.y62{bottom:244.986667pt;}
.y112{bottom:246.746667pt;}
.y88{bottom:247.226667pt;}
.y29{bottom:247.706667pt;}
.yb0{bottom:255.546667pt;}
.y130{bottom:259.546667pt;}
.y14e{bottom:262.906667pt;}
.yc8{bottom:264.026667pt;}
.y111{bottom:267.866667pt;}
.y28{bottom:268.346667pt;}
.y18b{bottom:268.506667pt;}
.y171{bottom:270.426667pt;}
.yf3{bottom:276.506667pt;}
.yaf{bottom:276.826667pt;}
.y12f{bottom:280.826667pt;}
.y61{bottom:284.666667pt;}
.yc7{bottom:285.146667pt;}
.y110{bottom:288.986667pt;}
.y18a{bottom:289.626667pt;}
.y170{bottom:291.546667pt;}
.y27{bottom:294.426667pt;}
.y87{bottom:295.706667pt;}
.yf2{bottom:297.466667pt;}
.yae{bottom:297.946667pt;}
.y60{bottom:305.786667pt;}
.yc6{bottom:306.266667pt;}
.y26{bottom:307.066667pt;}
.y10f{bottom:310.106667pt;}
.y16f{bottom:312.826667pt;}
.y12e{bottom:315.226667pt;}
.yf1{bottom:318.586667pt;}
.yad{bottom:319.066667pt;}
.y189{bottom:324.026667pt;}
.y5f{bottom:327.066667pt;}
.yc5{bottom:327.386667pt;}
.y10e{bottom:331.386667pt;}
.y25{bottom:333.306667pt;}
.y86{bottom:336.026667pt;}
.y12d{bottom:336.346667pt;}
.y14d{bottom:339.706667pt;}
.yf0{bottom:339.866667pt;}
.yac{bottom:340.186667pt;}
.y188{bottom:345.306667pt;}
.y24{bottom:345.946667pt;}
.y16e{bottom:347.226667pt;}
.y5e{bottom:348.186667pt;}
.yc4{bottom:348.666667pt;}
.y85{bottom:356.986667pt;}
.y12c{bottom:357.626667pt;}
.y10d{bottom:358.586667pt;}
.y14c{bottom:360.826667pt;}
.yab{bottom:361.466667pt;}
.y187{bottom:366.426667pt;}
.y16d{bottom:368.346667pt;}
.y5d{bottom:369.306667pt;}
.yc3{bottom:369.786667pt;}
.y23{bottom:372.026667pt;}
.y84{bottom:378.106667pt;}
.yef{bottom:379.706667pt;}
.ydb{bottom:382.266667pt;}
.yaa{bottom:382.586667pt;}
.y22{bottom:384.666667pt;}
.y186{bottom:387.546667pt;}
.y16c{bottom:389.626667pt;}
.y5c{bottom:390.426667pt;}
.yc2{bottom:390.906667pt;}
.y12b{bottom:392.066667pt;}
.y14b{bottom:395.426667pt;}
.y10c{bottom:398.946667pt;}
.y83{bottom:399.426667pt;}
.yee{bottom:400.866667pt;}
.yda{bottom:403.426667pt;}
.ya9{bottom:403.746667pt;}
.y16b{bottom:410.786667pt;}
.y21{bottom:410.946667pt;}
.y5b{bottom:411.746667pt;}
.yc1{bottom:412.066667pt;}
.y12a{bottom:413.346667pt;}
.y14a{bottom:416.546667pt;}
.y10b{bottom:419.906667pt;}
.y82{bottom:420.546667pt;}
.yed{bottom:421.986667pt;}
.y185{bottom:422.146667pt;}
.ya8{bottom:424.866667pt;}
.y20{bottom:430.306667pt;}
.y16a{bottom:431.906667pt;}
.y5a{bottom:432.866667pt;}
.yc0{bottom:433.346667pt;}
.y129{bottom:434.466667pt;}
.y149{bottom:437.666667pt;}
.y10a{bottom:441.026667pt;}
.y81{bottom:441.666667pt;}
.y1f{bottom:442.946667pt;}
.yec{bottom:443.106667pt;}
.y184{bottom:443.266667pt;}
.yd9{bottom:443.746667pt;}
.y169{bottom:453.026667pt;}
.y59{bottom:453.986667pt;}
.ybf{bottom:454.466667pt;}
.y109{bottom:462.306667pt;}
.y80{bottom:462.946667pt;}
.yeb{bottom:464.226667pt;}
.yd8{bottom:464.706667pt;}
.ya7{bottom:464.866667pt;}
.y128{bottom:468.866667pt;}
.y1e{bottom:469.026667pt;}
.y148{bottom:472.226667pt;}
.ybe{bottom:475.586667pt;}
.y183{bottom:477.666667pt;}
.y58{bottom:481.346667pt;}
.y1d{bottom:481.666667pt;}
.y108{bottom:483.426667pt;}
.yea{bottom:485.506667pt;}
.ya6{bottom:485.986667pt;}
.y168{bottom:487.586667pt;}
.y127{bottom:490.146667pt;}
.ybd{bottom:496.706667pt;}
.y182{bottom:498.946667pt;}
.y7f{bottom:502.626667pt;}
.y107{bottom:504.546667pt;}
.ye9{bottom:506.626667pt;}
.y147{bottom:506.786667pt;}
.ya5{bottom:507.106667pt;}
.y1c{bottom:507.906667pt;}
.y167{bottom:508.706667pt;}
.y57{bottom:515.266667pt;}
.y181{bottom:520.066667pt;}
.y1b{bottom:520.546667pt;}
.y7e{bottom:523.746667pt;}
.ybc{bottom:524.066667pt;}
.y126{bottom:524.546667pt;}
.y106{bottom:525.666667pt;}
.ye8{bottom:527.746667pt;}
.y146{bottom:527.906667pt;}
.ya4{bottom:528.226667pt;}
.y166{bottom:529.826667pt;}
.y56{bottom:535.106667pt;}
.y180{bottom:541.186667pt;}
.y7d{bottom:545.026667pt;}
.y125{bottom:545.666667pt;}
.y1a{bottom:546.626667pt;}
.y105{bottom:546.946667pt;}
.ye7{bottom:548.866667pt;}
.ya3{bottom:549.346667pt;}
.y165{bottom:551.106667pt;}
.y55{bottom:554.946667pt;}
.y145{bottom:562.306667pt;}
.ybb{bottom:564.386667pt;}
.y19{bottom:565.986667pt;}
.y7c{bottom:566.146667pt;}
.y104{bottom:568.066667pt;}
.ye6{bottom:570.146667pt;}
.ya2{bottom:570.466667pt;}
.y54{bottom:574.626667pt;}
.y18{bottom:578.786667pt;}
.y124{bottom:580.226667pt;}
.y144{bottom:583.586667pt;}
.yba{bottom:585.346667pt;}
.y164{bottom:585.506667pt;}
.y7b{bottom:587.266667pt;}
.y103{bottom:589.186667pt;}
.ye5{bottom:591.266667pt;}
.ya1{bottom:591.746667pt;}
.y53{bottom:594.466667pt;}
.y17f{bottom:596.866667pt;}
.y123{bottom:601.373333pt;}
.y143{bottom:604.733333pt;}
.y17{bottom:604.893333pt;}
.yb9{bottom:606.493333pt;}
.y163{bottom:606.813333pt;}
.y7a{bottom:608.413333pt;}
.y102{bottom:610.333333pt;}
.ye4{bottom:612.413333pt;}
.ya0{bottom:612.893333pt;}
.y52{bottom:614.173333pt;}
.y16{bottom:617.533333pt;}
.y17e{bottom:618.013333pt;}
.y122{bottom:622.493333pt;}
.y162{bottom:627.933333pt;}
.y101{bottom:631.613333pt;}
.y51{bottom:632.093333pt;}
.ye3{bottom:633.533333pt;}
.y9f{bottom:634.013333pt;}
.y79{bottom:635.773333pt;}
.y15{bottom:636.573333pt;}
.y142{bottom:639.133333pt;}
.yb8{bottom:642.653333pt;}
.y50{bottom:650.493333pt;}
.y100{bottom:652.733333pt;}
.ye2{bottom:654.813333pt;}
.y9e{bottom:655.133333pt;}
.y14{bottom:655.933333pt;}
.y121{bottom:657.053333pt;}
.y141{bottom:660.413333pt;}
.y161{bottom:662.333333pt;}
.y17d{bottom:673.693333pt;}
.yff{bottom:673.853333pt;}
.yd7{bottom:674.013333pt;}
.y13{bottom:675.453333pt;}
.ye1{bottom:675.933333pt;}
.y78{bottom:676.093333pt;}
.y9d{bottom:676.413333pt;}
.y120{bottom:678.173333pt;}
.y4f{bottom:679.133333pt;}
.y160{bottom:683.613333pt;}
.y12{bottom:694.813333pt;}
.yd6{bottom:694.973333pt;}
.y77{bottom:697.053333pt;}
.y11f{bottom:699.293333pt;}
.y11{bottom:701.533333pt;}
.y4e{bottom:702.013333pt;}
.y10{bottom:712.093333pt;}
.y140{bottom:716.093333pt;}
.yd5{bottom:716.253333pt;}
.y9c{bottom:716.413333pt;}
.y15f{bottom:718.013333pt;}
.y76{bottom:718.173333pt;}
.y4d{bottom:723.133333pt;}
.yf{bottom:730.333333pt;}
.y11e{bottom:733.853333pt;}
.y13f{bottom:737.213333pt;}
.y9b{bottom:737.373333pt;}
.yfe{bottom:737.533333pt;}
.y15e{bottom:739.133333pt;}
.y75{bottom:739.293333pt;}
.y4c{bottom:744.413333pt;}
.y17c{bottom:750.493333pt;}
.ye{bottom:750.653333pt;}
.y11d{bottom:754.973333pt;}
.y13e{bottom:758.333333pt;}
.y9a{bottom:758.493333pt;}
.y15d{bottom:760.413333pt;}
.y74{bottom:760.573333pt;}
.y4b{bottom:765.533333pt;}
.y17b{bottom:771.613333pt;}
.yfd{bottom:777.213333pt;}
.yd{bottom:777.533333pt;}
.y13d{bottom:779.453333pt;}
.y99{bottom:779.613333pt;}
.y73{bottom:781.693333pt;}
.y4a{bottom:786.653333pt;}
.y11c{bottom:789.533333pt;}
.y17a{bottom:792.893333pt;}
.y15c{bottom:794.813333pt;}
.yfc{bottom:798.333333pt;}
.y13c{bottom:800.573333pt;}
.y98{bottom:800.893333pt;}
.y72{bottom:802.813333pt;}
.yc{bottom:805.693333pt;}
.y49{bottom:807.773333pt;}
.y11b{bottom:810.693333pt;}
.y179{bottom:814.053333pt;}
.y15b{bottom:815.973333pt;}
.yfb{bottom:819.493333pt;}
.y97{bottom:822.053333pt;}
.y71{bottom:823.973333pt;}
.y48{bottom:829.093333pt;}
.yb{bottom:833.893333pt;}
.y13b{bottom:835.173333pt;}
.yfa{bottom:840.613333pt;}
.yd4{bottom:840.773333pt;}
.ye0{bottom:842.853333pt;}
.y96{bottom:843.173333pt;}
.y11a{bottom:844.933333pt;}
.y47{bottom:850.213333pt;}
.y15a{bottom:850.533333pt;}
.y13a{bottom:856.293333pt;}
.yd3{bottom:861.893333pt;}
.ydf{bottom:863.813333pt;}
.y70{bottom:863.973333pt;}
.y95{bottom:864.293333pt;}
.y178{bottom:869.733333pt;}
.y46{bottom:871.333333pt;}
.y159{bottom:871.653333pt;}
.ya{bottom:877.253333pt;}
.y139{bottom:877.573333pt;}
.y39{bottom:879.680000pt;}
.y37{bottom:880.160000pt;}
.y35{bottom:882.080000pt;}
.yd2{bottom:883.013333pt;}
.y6f{bottom:885.093333pt;}
.y119{bottom:885.253333pt;}
.y94{bottom:885.573333pt;}
.y177{bottom:890.853333pt;}
.y45{bottom:892.453333pt;}
.y158{bottom:892.773333pt;}
.yd1{bottom:904.133333pt;}
.y6e{bottom:906.213333pt;}
.y93{bottom:906.693333pt;}
.y138{bottom:911.973333pt;}
.y9{bottom:913.413333pt;}
.y44{bottom:913.573333pt;}
.y157{bottom:914.053333pt;}
.yd0{bottom:925.253333pt;}
.y6d{bottom:927.333333pt;}
.y92{bottom:927.973333pt;}
.y137{bottom:933.093333pt;}
.y43{bottom:934.853333pt;}
.y156{bottom:935.173333pt;}
.y8{bottom:944.773333pt;}
.ycf{bottom:946.533333pt;}
.y6c{bottom:948.453333pt;}
.y136{bottom:954.373333pt;}
.y42{bottom:955.973333pt;}
.y155{bottom:956.293333pt;}
.y91{bottom:967.653333pt;}
.yde{bottom:969.733333pt;}
.y41{bottom:977.093333pt;}
.y7{bottom:978.693333pt;}
.y90{bottom:988.773333pt;}
.y6b{bottom:990.853333pt;}
.y40{bottom:1006.693333pt;}
.y8f{bottom:1009.893333pt;}
.y6a{bottom:1011.973333pt;}
.y6{bottom:1012.613333pt;}
.y3d{bottom:1027.040000pt;}
.y3c{bottom:1039.520000pt;}
.y3b{bottom:1052.000000pt;}
.y3a{bottom:1064.480000pt;}
.y31{bottom:1080.640000pt;}
.y34{bottom:1088.160000pt;}
.y33{bottom:1100.800000pt;}
.h1a{height:11.360000pt;}
.h1b{height:12.800000pt;}
.h18{height:19.391875pt;}
.h14{height:26.735625pt;}
.h19{height:27.556875pt;}
.h2{height:34.138125pt;}
.h1c{height:34.190937pt;}
.h1d{height:36.305625pt;}
.h10{height:36.431250pt;}
.h17{height:36.640000pt;}
.hd{height:37.410000pt;}
.h23{height:42.084375pt;}
.h15{height:42.649687pt;}
.h4{height:44.160000pt;}
.h25{height:44.687500pt;}
.h5{height:46.948750pt;}
.h6{height:47.742188pt;}
.h20{height:49.852500pt;}
.h16{height:52.834688pt;}
.ha{height:54.187500pt;}
.hf{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1f{height:62.781250pt;}
.h12{height:62.812500pt;}
.h11{height:63.311250pt;}
.h13{height:63.399375pt;}
.he{height:64.290000pt;}
.h21{height:64.500000pt;}
.hb{height:65.781915pt;}
.h1e{height:67.803750pt;}
.h22{height:71.524375pt;}
.h24{height:71.684375pt;}
.h7{height:75.465000pt;}
.h9{height:76.946250pt;}
.h8{height:81.281250pt;}
.hc{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:73.120000pt;}
.w2{width:90.880000pt;}
.w7{width:109.600000pt;}
.w5{width:120.640000pt;}
.w6{width:136.640000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:9.632000pt;}
.x1a{left:11.840000pt;}
.x1d{left:13.026667pt;}
.x3{left:17.093333pt;}
.x1f{left:25.413333pt;}
.x19{left:36.480000pt;}
.x1{left:96.032000pt;}
.x18{left:99.392000pt;}
.x27{left:100.352000pt;}
.xe{left:101.312000pt;}
.x10{left:103.552000pt;}
.x20{left:104.992000pt;}
.x16{left:106.752000pt;}
.x14{left:108.512000pt;}
.x4{left:110.592000pt;}
.x28{left:111.872000pt;}
.xc{left:117.632000pt;}
.xb{left:126.432000pt;}
.x5{left:133.786667pt;}
.x21{left:137.146667pt;}
.x24{left:144.026667pt;}
.x12{left:176.026667pt;}
.xd{left:179.866667pt;}
.x23{left:184.186667pt;}
.x25{left:191.866667pt;}
.x29{left:213.466667pt;}
.x13{left:216.986667pt;}
.x22{left:260.226667pt;}
.x6{left:282.786667pt;}
.x17{left:288.066667pt;}
.x15{left:305.666667pt;}
.x11{left:320.706667pt;}
.x9{left:339.265000pt;}
.x1c{left:340.480000pt;}
.xa{left:343.906667pt;}
.xf{left:373.026667pt;}
.x8{left:386.306667pt;}
.x7{left:396.866667pt;}
.x26{left:528.893333pt;}
.x1e{left:600.480000pt;}
.x2{left:702.880000pt;}
}




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