
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e57cdfb24e52fbc38887458e.woff2')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_f5b36724447a01feea0914d2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83cfb9a8c0ed19d720d0eb58.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f90e69c84b7b7ec1f85df6c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0eb6ad30d149cc9defa1c3bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bf3730464c3fe954ab61b162.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_f3012b919a827094fc23d27a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854492;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_59a27992cc393d6c537f99e4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_174561ea03f0ec7921ef470c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.273600px;}
.ls6{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.121200px;}
.ls14{letter-spacing:-0.117600px;}
.ls5{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.070800px;}
.lsc{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.011160px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.041760px;}
.lsb{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.095400px;}
.lsf{letter-spacing:0.098400px;}
.ls18{letter-spacing:0.108600px;}
.ls1c{letter-spacing:0.113400px;}
.lse{letter-spacing:0.118200px;}
.ls15{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.127200px;}
.lsa{letter-spacing:0.173400px;}
.ls2{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.199200px;}
.ls17{letter-spacing:0.213600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:1.533600px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-60.120000px;}
.ws3{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws15{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.353600px;}
.ws9{word-spacing:-13.344600px;}
.ws14{word-spacing:-13.339800px;}
.ws12{word-spacing:-13.335000px;}
.wsa{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.321800px;}
.wsb{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.215240px;}
.ws8{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.155600px;}
.ws10{word-spacing:-13.108800px;}
.ws1{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-3.667200px;}
._2{margin-left:-2.404800px;}
._0{margin-left:-1.134000px;}
._1{width:1.169868px;}
._3{width:2.175035px;}
._b{width:3.457333px;}
._6{width:4.689600px;}
._7{width:5.710799px;}
._f{width:6.853199px;}
._a{width:8.536800px;}
._9{width:9.566520px;}
._8{width:10.821600px;}
._5{width:12.144000px;}
._c{width:14.368800px;}
._11{width:16.011720px;}
._10{width:17.013960px;}
._12{width:18.250560px;}
._14{width:21.328920px;}
._13{width:23.266440px;}
._d{width:25.370640px;}
._e{width:26.452800px;}
._15{width:30.360600px;}
._16{width:36.552960px;}
._17{width:37.916520px;}
._1c{width:41.272200px;}
._1d{width:42.865920px;}
._18{width:45.721080px;}
._1e{width:58.196160px;}
._1f{width:59.403120px;}
._1b{width:79.685760px;}
._19{width:86.422320px;}
._1a{width:87.655680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs3{font-size:45.000000px;}
.fs6{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.830000px;}
.yac{bottom:7.860000px;}
.y6a{bottom:7.920000px;}
.yfd{bottom:13.050000px;}
.ye4{bottom:13.140000px;}
.ye3{bottom:35.190000px;}
.y138{bottom:35.220000px;}
.ye0{bottom:35.280000px;}
.y123{bottom:40.410000px;}
.y104{bottom:40.500000px;}
.y117{bottom:44.910000px;}
.y2{bottom:55.380000px;}
.y2b{bottom:56.190000px;}
.y133{bottom:62.460000px;}
.ydd{bottom:62.550000px;}
.y1{bottom:83.640000px;}
.y121{bottom:111.450000px;}
.y16e{bottom:116.310000px;}
.y146{bottom:119.190000px;}
.yf6{bottom:120.720000px;}
.y29{bottom:125.130000px;}
.y120{bottom:129.000000px;}
.y16d{bottom:133.860000px;}
.y145{bottom:136.740000px;}
.yf5{bottom:138.270000px;}
.y28{bottom:142.680000px;}
.y11f{bottom:146.640000px;}
.y82{bottom:150.240000px;}
.y144{bottom:154.380000px;}
.yf4{bottom:155.820000px;}
.y27{bottom:160.230000px;}
.y16c{bottom:160.770000px;}
.y11e{bottom:164.190000px;}
.y143{bottom:171.930000px;}
.y11d{bottom:181.830000px;}
.y81{bottom:185.790000px;}
.yf3{bottom:191.460000px;}
.y16b{bottom:198.120000px;}
.y142{bottom:198.570000px;}
.y26{bottom:198.930000px;}
.y11c{bottom:199.380000px;}
.y59{bottom:201.810000px;}
.y80{bottom:203.430000px;}
.yf2{bottom:209.010000px;}
.ya6{bottom:209.460000px;}
.ycd{bottom:210.270000px;}
.y11b{bottom:216.210000px;}
.y25{bottom:216.480000px;}
.y58{bottom:219.450000px;}
.y7f{bottom:220.980000px;}
.yf1{bottom:226.650000px;}
.ya5{bottom:227.010000px;}
.ycc{bottom:227.910000px;}
.y11a{bottom:228.450000px;}
.y24{bottom:234.030000px;}
.y141{bottom:234.120000px;}
.y57{bottom:237.090000px;}
.y7e{bottom:238.530000px;}
.yf0{bottom:244.200000px;}
.ya4{bottom:244.650000px;}
.ycb{bottom:245.460000px;}
.y16a{bottom:249.330000px;}
.y23{bottom:251.670000px;}
.y119{bottom:255.720000px;}
.y7d{bottom:256.170000px;}
.yef{bottom:261.750000px;}
.yca{bottom:263.010000px;}
.y169{bottom:266.970000px;}
.y22{bottom:269.220000px;}
.y140{bottom:269.310000px;}
.y7c{bottom:273.720000px;}
.y194{bottom:275.430000px;}
.y56{bottom:275.520000px;}
.ya3{bottom:279.480000px;}
.y118{bottom:283.080000px;}
.y168{bottom:284.610000px;}
.y21{bottom:286.770000px;}
.y7b{bottom:291.360000px;}
.ya2{bottom:291.630000px;}
.y55{bottom:293.250000px;}
.yee{bottom:297.390000px;}
.yc9{bottom:297.930000px;}
.y193{bottom:302.070000px;}
.y167{bottom:302.160000px;}
.y20{bottom:304.410000px;}
.y13f{bottom:304.860000px;}
.y7a{bottom:308.910000px;}
.yc8{bottom:310.080000px;}
.y114{bottom:310.440000px;}
.y54{bottom:310.800000px;}
.ya1{bottom:318.990000px;}
.y13e{bottom:322.410000px;}
.y53{bottom:328.440000px;}
.y192{bottom:328.620000px;}
.y1f{bottom:331.320000px;}
.yed{bottom:332.940000px;}
.yc7{bottom:337.440000px;}
.y116{bottom:337.800000px;}
.y13d{bottom:340.050000px;}
.y166{bottom:340.770000px;}
.y79{bottom:341.850000px;}
.y52{bottom:345.990000px;}
.ya0{bottom:346.350000px;}
.yec{bottom:350.580000px;}
.y191{bottom:355.260000px;}
.y13c{bottom:357.600000px;}
.y165{bottom:358.320000px;}
.y51{bottom:363.540000px;}
.yc6{bottom:364.800000px;}
.y115{bottom:365.070000px;}
.yeb{bottom:368.130000px;}
.y78{bottom:369.210000px;}
.y190{bottom:372.810000px;}
.y9f{bottom:373.710000px;}
.y13b{bottom:375.240000px;}
.y164{bottom:375.870000px;}
.y1e{bottom:379.560000px;}
.yea{bottom:385.680000px;}
.yc5{bottom:392.070000px;}
.y163{bottom:393.510000px;}
.y77{bottom:396.570000px;}
.y1d{bottom:397.200000px;}
.y18f{bottom:399.360000px;}
.y50{bottom:402.060000px;}
.ye9{bottom:403.320000px;}
.y13a{bottom:410.070000px;}
.y162{bottom:411.060000px;}
.y113{bottom:413.760000px;}
.y4f{bottom:419.790000px;}
.ye8{bottom:420.870000px;}
.y139{bottom:422.220000px;}
.y9e{bottom:422.400000px;}
.y76{bottom:423.840000px;}
.y18e{bottom:426.000000px;}
.y161{bottom:428.700000px;}
.y112{bottom:431.400000px;}
.y1c{bottom:432.750000px;}
.y4e{bottom:437.340000px;}
.ye7{bottom:438.510000px;}
.y9d{bottom:439.950000px;}
.yc4{bottom:440.760000px;}
.y18d{bottom:443.550000px;}
.y137{bottom:449.580000px;}
.y1b{bottom:450.300000px;}
.y75{bottom:451.200000px;}
.y4d{bottom:454.890000px;}
.y160{bottom:455.610000px;}
.ye6{bottom:456.060000px;}
.y111{bottom:457.950000px;}
.yc3{bottom:458.400000px;}
.y18c{bottom:461.190000px;}
.y9c{bottom:466.590000px;}
.y1a{bottom:467.940000px;}
.y4c{bottom:472.560000px;}
.yc2{bottom:475.980000px;}
.y136{bottom:476.970000px;}
.y74{bottom:478.590000px;}
.y19{bottom:485.520000px;}
.y18b{bottom:487.770000px;}
.y4b{bottom:490.110000px;}
.ye5{bottom:490.920000px;}
.y110{bottom:493.620000px;}
.y9b{bottom:502.170000px;}
.yc1{bottom:502.620000px;}
.y18{bottom:503.160000px;}
.y15f{bottom:503.880000px;}
.y132{bottom:504.330000px;}
.y18a{bottom:505.320000px;}
.y73{bottom:505.950000px;}
.y10f{bottom:511.170000px;}
.y9a{bottom:519.720000px;}
.y17{bottom:520.710000px;}
.y15e{bottom:521.430000px;}
.y4a{bottom:528.630000px;}
.y10e{bottom:528.720000px;}
.ye2{bottom:530.430000px;}
.y135{bottom:531.600000px;}
.y189{bottom:531.960000px;}
.y72{bottom:533.220000px;}
.y99{bottom:537.360000px;}
.yc0{bottom:538.170000px;}
.y16{bottom:538.260000px;}
.y15d{bottom:539.070000px;}
.y49{bottom:546.270000px;}
.y10d{bottom:546.360000px;}
.y188{bottom:549.510000px;}
.y98{bottom:554.910000px;}
.ybf{bottom:555.720000px;}
.y15{bottom:555.900000px;}
.y15c{bottom:556.620000px;}
.ye1{bottom:557.790000px;}
.y134{bottom:558.960000px;}
.y71{bottom:560.580000px;}
.y48{bottom:563.910000px;}
.y187{bottom:567.150000px;}
.ybe{bottom:573.360000px;}
.y14{bottom:573.450000px;}
.y47{bottom:581.460000px;}
.y10c{bottom:581.550000px;}
.ydc{bottom:585.150000px;}
.y70{bottom:587.940000px;}
.y97{bottom:589.740000px;}
.ybd{bottom:590.910000px;}
.y13{bottom:591.090000px;}
.y15b{bottom:592.260000px;}
.y186{bottom:593.700000px;}
.y46{bottom:599.010000px;}
.y10b{bottom:599.100000px;}
.y96{bottom:601.980000px;}
.y131{bottom:607.650000px;}
.y12{bottom:608.640000px;}
.y15a{bottom:609.810000px;}
.y185{bottom:611.250000px;}
.ydf{bottom:612.420000px;}
.y6f{bottom:615.300000px;}
.y45{bottom:616.650000px;}
.y130{bottom:625.200000px;}
.ybc{bottom:625.740000px;}
.y11{bottom:626.190000px;}
.y159{bottom:627.360000px;}
.y95{bottom:629.340000px;}
.y184{bottom:637.890000px;}
.ybb{bottom:637.980000px;}
.yde{bottom:639.780000px;}
.y6e{bottom:642.570000px;}
.y10{bottom:643.830000px;}
.y158{bottom:645.000000px;}
.y10a{bottom:651.570000px;}
.y12f{bottom:651.840000px;}
.y44{bottom:655.170000px;}
.y183{bottom:655.440000px;}
.y94{bottom:656.610000px;}
.yf{bottom:661.380000px;}
.y157{bottom:662.550000px;}
.y109{bottom:663.720000px;}
.yba{bottom:665.340000px;}
.y6d{bottom:669.930000px;}
.y43{bottom:672.810000px;}
.y182{bottom:673.080000px;}
.ye{bottom:679.020000px;}
.y156{bottom:680.190000px;}
.y93{bottom:683.970000px;}
.y12e{bottom:687.390000px;}
.ydb{bottom:688.470000px;}
.y42{bottom:690.360000px;}
.y108{bottom:691.080000px;}
.yb9{bottom:692.610000px;}
.yd{bottom:696.570000px;}
.y6b{bottom:697.290000px;}
.y181{bottom:699.630000px;}
.y12d{bottom:705.030000px;}
.yda{bottom:706.110000px;}
.y41{bottom:708.000000px;}
.yc{bottom:714.120000px;}
.y155{bottom:715.740000px;}
.y180{bottom:717.180000px;}
.y107{bottom:718.350000px;}
.yb8{bottom:719.970000px;}
.y12c{bottom:722.580000px;}
.y69{bottom:724.560000px;}
.y40{bottom:725.550000px;}
.yb{bottom:731.760000px;}
.y92{bottom:732.660000px;}
.y154{bottom:733.290000px;}
.y12b{bottom:740.130000px;}
.y3f{bottom:743.190000px;}
.y17f{bottom:743.820000px;}
.y103{bottom:745.710000px;}
.y91{bottom:750.300000px;}
.y153{bottom:750.930000px;}
.y12a{bottom:757.770000px;}
.ya{bottom:758.670000px;}
.y17e{bottom:761.370000px;}
.yd9{bottom:768.300000px;}
.y152{bottom:768.480000px;}
.yb7{bottom:768.660000px;}
.y106{bottom:773.070000px;}
.y68{bottom:773.340000px;}
.y129{bottom:775.320000px;}
.y90{bottom:776.850000px;}
.y17d{bottom:778.920000px;}
.y3e{bottom:781.620000px;}
.yd8{bottom:785.850000px;}
.y151{bottom:786.030000px;}
.yb6{bottom:786.300000px;}
.y128{bottom:792.960000px;}
.y3d{bottom:799.350000px;}
.y67{bottom:799.890000px;}
.y105{bottom:800.430000px;}
.yd7{bottom:803.400000px;}
.y150{bottom:803.670000px;}
.yb5{bottom:803.850000px;}
.y9{bottom:805.380000px;}
.y17c{bottom:805.560000px;}
.y127{bottom:810.510000px;}
.y8f{bottom:812.400000px;}
.y3c{bottom:816.900000px;}
.y14f{bottom:821.220000px;}
.y17b{bottom:823.110000px;}
.y8e{bottom:830.040000px;}
.yb4{bottom:830.400000px;}
.y66{bottom:832.830000px;}
.y3b{bottom:834.450000px;}
.y14e{bottom:836.250000px;}
.y17a{bottom:840.750000px;}
.y8{bottom:841.200000px;}
.y126{bottom:845.340000px;}
.y8d{bottom:847.590000px;}
.y102{bottom:849.120000px;}
.y3a{bottom:852.090000px;}
.y125{bottom:857.580000px;}
.y14d{bottom:863.520000px;}
.y8c{bottom:865.140000px;}
.yd6{bottom:865.590000px;}
.yb3{bottom:866.040000px;}
.y101{bottom:866.670000px;}
.y179{bottom:867.300000px;}
.y39{bottom:869.640000px;}
.y65{bottom:870.090000px;}
.y7{bottom:877.200000px;}
.yd5{bottom:883.140000px;}
.yb2{bottom:883.590000px;}
.y124{bottom:884.850000px;}
.y38{bottom:887.280000px;}
.y14c{bottom:890.880000px;}
.y100{bottom:893.220000px;}
.y8b{bottom:900.060000px;}
.yd4{bottom:900.780000px;}
.yb1{bottom:901.140000px;}
.y37{bottom:904.830000px;}
.y178{bottom:911.760000px;}
.y8a{bottom:912.210000px;}
.y6{bottom:913.200000px;}
.y14b{bottom:918.240000px;}
.yd3{bottom:918.330000px;}
.yb0{bottom:918.780000px;}
.y64{bottom:921.300000px;}
.yff{bottom:925.170000px;}
.yaf{bottom:935.610000px;}
.yfe{bottom:937.320000px;}
.y63{bottom:939.030000px;}
.y89{bottom:939.570000px;}
.y36{bottom:943.350000px;}
.y14a{bottom:945.600000px;}
.yae{bottom:947.850000px;}
.y5{bottom:949.290000px;}
.yd2{bottom:953.250000px;}
.y62{bottom:956.580000px;}
.y177{bottom:960.090000px;}
.y35{bottom:960.990000px;}
.yfc{bottom:964.680000px;}
.yd1{bottom:965.400000px;}
.y88{bottom:966.930000px;}
.y149{bottom:972.870000px;}
.y61{bottom:974.130000px;}
.yad{bottom:975.120000px;}
.y176{bottom:977.640000px;}
.y34{bottom:978.630000px;}
.y4{bottom:987.630000px;}
.yfb{bottom:991.950000px;}
.yd0{bottom:992.760000px;}
.y87{bottom:994.200000px;}
.y175{bottom:995.280000px;}
.y33{bottom:996.180000px;}
.y148{bottom:1000.230000px;}
.yab{bottom:1002.480000px;}
.y3{bottom:1012.320000px;}
.y60{bottom:1012.770000px;}
.y174{bottom:1012.860000px;}
.y32{bottom:1013.760000px;}
.yf8{bottom:1019.340000px;}
.ycf{bottom:1020.060000px;}
.yaa{bottom:1029.870000px;}
.y5f{bottom:1030.320000px;}
.y173{bottom:1030.410000px;}
.y31{bottom:1031.400000px;}
.y86{bottom:1042.920000px;}
.yfa{bottom:1046.700000px;}
.yce{bottom:1047.420000px;}
.y5e{bottom:1047.960000px;}
.y172{bottom:1048.050000px;}
.y30{bottom:1048.950000px;}
.y85{bottom:1060.560000px;}
.y5d{bottom:1065.510000px;}
.y2f{bottom:1066.500000px;}
.yf9{bottom:1073.970000px;}
.y171{bottom:1074.960000px;}
.y84{bottom:1078.110000px;}
.ya9{bottom:1078.560000px;}
.y5c{bottom:1083.150000px;}
.y2e{bottom:1084.140000px;}
.y122{bottom:1087.110000px;}
.ya8{bottom:1096.110000px;}
.y5b{bottom:1100.700000px;}
.y83{bottom:1104.750000px;}
.y147{bottom:1105.020000px;}
.y170{bottom:1111.950000px;}
.ya7{bottom:1113.750000px;}
.y2d{bottom:1122.660000px;}
.yf7{bottom:1122.750000px;}
.y5a{bottom:1127.610000px;}
.y16f{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hd{height:26.580000px;}
.h9{height:26.640000px;}
.hb{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:40.539023px;}
.h6{height:50.902383px;}
.h11{height:53.910000px;}
.h12{height:53.940000px;}
.h10{height:54.000000px;}
.h5{height:55.779258px;}
.h8{height:59.973223px;}
.h15{height:61.793886px;}
.he{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:81.180000px;}
.hf{height:81.270000px;}
.h13{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2e{width:32.040000px;}
.w26{width:32.130000px;}
.w2b{width:32.160000px;}
.w11{width:37.710000px;}
.w9{width:40.320000px;}
.w23{width:45.450000px;}
.w27{width:51.750000px;}
.w15{width:58.050000px;}
.wd{width:59.040000px;}
.w34{width:61.920000px;}
.w28{width:62.010000px;}
.w12{width:62.100000px;}
.w3f{width:69.390000px;}
.w3d{width:70.110000px;}
.w3e{width:70.140000px;}
.w3c{width:70.200000px;}
.w40{width:71.010000px;}
.w39{width:72.990000px;}
.w25{width:73.020000px;}
.w24{width:73.080000px;}
.w3a{width:73.110000px;}
.w35{width:81.540000px;}
.w36{width:81.570000px;}
.w1f{width:84.600000px;}
.w2a{width:84.630000px;}
.w13{width:88.470000px;}
.w1b{width:88.500000px;}
.w5{width:88.860000px;}
.w17{width:100.830000px;}
.wf{width:106.410000px;}
.wb{width:106.500000px;}
.w32{width:110.070000px;}
.w3{width:112.230000px;}
.w7{width:112.590000px;}
.w20{width:115.290000px;}
.w2d{width:115.380000px;}
.w21{width:119.250000px;}
.w22{width:119.280000px;}
.w1a{width:121.050000px;}
.w1c{width:123.030000px;}
.w14{width:123.060000px;}
.w6{width:123.480000px;}
.wc{width:126.000000px;}
.w18{width:135.720000px;}
.w2c{width:141.690000px;}
.w31{width:144.180000px;}
.w33{width:144.210000px;}
.w10{width:147.150000px;}
.w37{width:147.360000px;}
.w2f{width:150.600000px;}
.w3b{width:158.400000px;}
.w16{width:160.560000px;}
.w19{width:160.650000px;}
.w1d{width:175.080000px;}
.we{width:182.880000px;}
.w8{width:191.070000px;}
.w4{width:191.430000px;}
.wa{width:200.250000px;}
.w29{width:239.220000px;}
.w1e{width:239.250000px;}
.w38{width:239.340000px;}
.w30{width:289.110000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x36{left:98.550000px;}
.x4f{left:111.239987px;}
.x1f{left:138.330000px;}
.x3c{left:152.190000px;}
.x2e{left:155.070000px;}
.x4{left:164.280000px;}
.x42{left:165.360000px;}
.x27{left:194.880000px;}
.xc{left:197.760000px;}
.x2{left:209.819987px;}
.x17{left:214.590000px;}
.x14{left:217.920000px;}
.x9{left:250.050000px;}
.xd{left:257.520000px;}
.x1b{left:260.310000px;}
.x18{left:274.350000px;}
.x6{left:276.870000px;}
.x43{left:287.130000px;}
.x10{left:289.830000px;}
.x2f{left:297.480000px;}
.x1c{left:298.830000px;}
.x3d{left:300.270000px;}
.x2b{left:303.870000px;}
.x39{left:312.510000px;}
.x20{left:314.220000px;}
.x4a{left:322.950000px;}
.x26{left:326.729987px;}
.x11{left:328.260000px;}
.x47{left:333.390000px;}
.x33{left:343.650000px;}
.x3f{left:346.530000px;}
.xb{left:348.869987px;}
.x24{left:360.390000px;}
.x2a{left:377.670000px;}
.x12{left:391.080000px;}
.x38{left:394.770000px;}
.x46{left:407.190000px;}
.x32{left:417.450000px;}
.x1d{left:420.600000px;}
.x2c{left:423.840000px;}
.x23{left:434.190000px;}
.x19{left:435.720000px;}
.x15{left:438.060000px;}
.xe{left:441.120000px;}
.xa{left:451.020000px;}
.x48{left:453.360000px;}
.x3a{left:457.410000px;}
.x34{left:463.710000px;}
.x4b{left:464.790000px;}
.x40{left:466.500000px;}
.x7{left:468.660000px;}
.x13{left:480.360000px;}
.x28{left:497.640000px;}
.x1e{left:509.910000px;}
.x44{left:527.190000px;}
.x2d{left:530.520000px;}
.x4c{left:535.650000px;}
.x30{left:537.540000px;}
.x16{left:539.610000px;}
.x1a{left:542.940000px;}
.xf{left:548.340000px;}
.x21{left:554.190000px;}
.x8{left:557.880000px;}
.x49{left:560.040000px;}
.x35{left:570.390000px;}
.x41{left:573.180000px;}
.x29{left:583.080000px;}
.x25{left:587.040000px;}
.x4d{left:588.210000px;}
.x3b{left:602.340000px;}
.x45{left:612.510000px;}
.x31{left:622.860000px;}
.x3e{left:625.650000px;}
.x22{left:639.600000px;}
.x4e{left:658.410000px;}
.x37{left:684.600000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.243200pt;}
.ls6{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls14{letter-spacing:-0.104533pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.062933pt;}
.lsc{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.009920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.037120pt;}
.lsb{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.084800pt;}
.lsf{letter-spacing:0.087467pt;}
.ls18{letter-spacing:0.096533pt;}
.ls1c{letter-spacing:0.100800pt;}
.lse{letter-spacing:0.105067pt;}
.ls15{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.113067pt;}
.lsa{letter-spacing:0.154133pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.177067pt;}
.ls17{letter-spacing:0.189867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:1.363200pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.wse{word-spacing:-53.440000pt;}
.ws3{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws15{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.869867pt;}
.ws9{word-spacing:-11.861867pt;}
.ws14{word-spacing:-11.857600pt;}
.ws12{word-spacing:-11.853333pt;}
.wsa{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.841600pt;}
.wsb{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.746880pt;}
.ws8{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.693867pt;}
.ws10{word-spacing:-11.652267pt;}
.ws1{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-3.259733pt;}
._2{margin-left:-2.137600pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.039883pt;}
._3{width:1.933365pt;}
._b{width:3.073185pt;}
._6{width:4.168534pt;}
._7{width:5.076266pt;}
._f{width:6.091732pt;}
._a{width:7.588266pt;}
._9{width:8.503574pt;}
._8{width:9.619200pt;}
._5{width:10.794666pt;}
._c{width:12.772267pt;}
._11{width:14.232640pt;}
._10{width:15.123520pt;}
._12{width:16.222720pt;}
._14{width:18.959040pt;}
._13{width:20.681280pt;}
._d{width:22.551680pt;}
._e{width:23.513600pt;}
._15{width:26.987200pt;}
._16{width:32.491520pt;}
._17{width:33.703573pt;}
._1c{width:36.686400pt;}
._1d{width:38.103040pt;}
._18{width:40.640960pt;}
._1e{width:51.729920pt;}
._1f{width:52.802773pt;}
._1b{width:70.831787pt;}
._19{width:76.819840pt;}
._1a{width:77.916160pt;}
.fs0{font-size:34.560000pt;}
.fs3{font-size:40.000000pt;}
.fs6{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.960000pt;}
.yac{bottom:6.986667pt;}
.y6a{bottom:7.040000pt;}
.yfd{bottom:11.600000pt;}
.ye4{bottom:11.680000pt;}
.ye3{bottom:31.280000pt;}
.y138{bottom:31.306667pt;}
.ye0{bottom:31.360000pt;}
.y123{bottom:35.920000pt;}
.y104{bottom:36.000000pt;}
.y117{bottom:39.920000pt;}
.y2{bottom:49.226667pt;}
.y2b{bottom:49.946667pt;}
.y133{bottom:55.520000pt;}
.ydd{bottom:55.600000pt;}
.y1{bottom:74.346667pt;}
.y121{bottom:99.066667pt;}
.y16e{bottom:103.386667pt;}
.y146{bottom:105.946667pt;}
.yf6{bottom:107.306667pt;}
.y29{bottom:111.226667pt;}
.y120{bottom:114.666667pt;}
.y16d{bottom:118.986667pt;}
.y145{bottom:121.546667pt;}
.yf5{bottom:122.906667pt;}
.y28{bottom:126.826667pt;}
.y11f{bottom:130.346667pt;}
.y82{bottom:133.546667pt;}
.y144{bottom:137.226667pt;}
.yf4{bottom:138.506667pt;}
.y27{bottom:142.426667pt;}
.y16c{bottom:142.906667pt;}
.y11e{bottom:145.946667pt;}
.y143{bottom:152.826667pt;}
.y11d{bottom:161.626667pt;}
.y81{bottom:165.146667pt;}
.yf3{bottom:170.186667pt;}
.y16b{bottom:176.106667pt;}
.y142{bottom:176.506667pt;}
.y26{bottom:176.826667pt;}
.y11c{bottom:177.226667pt;}
.y59{bottom:179.386667pt;}
.y80{bottom:180.826667pt;}
.yf2{bottom:185.786667pt;}
.ya6{bottom:186.186667pt;}
.ycd{bottom:186.906667pt;}
.y11b{bottom:192.186667pt;}
.y25{bottom:192.426667pt;}
.y58{bottom:195.066667pt;}
.y7f{bottom:196.426667pt;}
.yf1{bottom:201.466667pt;}
.ya5{bottom:201.786667pt;}
.ycc{bottom:202.586667pt;}
.y11a{bottom:203.066667pt;}
.y24{bottom:208.026667pt;}
.y141{bottom:208.106667pt;}
.y57{bottom:210.746667pt;}
.y7e{bottom:212.026667pt;}
.yf0{bottom:217.066667pt;}
.ya4{bottom:217.466667pt;}
.ycb{bottom:218.186667pt;}
.y16a{bottom:221.626667pt;}
.y23{bottom:223.706667pt;}
.y119{bottom:227.306667pt;}
.y7d{bottom:227.706667pt;}
.yef{bottom:232.666667pt;}
.yca{bottom:233.786667pt;}
.y169{bottom:237.306667pt;}
.y22{bottom:239.306667pt;}
.y140{bottom:239.386667pt;}
.y7c{bottom:243.306667pt;}
.y194{bottom:244.826667pt;}
.y56{bottom:244.906667pt;}
.ya3{bottom:248.426667pt;}
.y118{bottom:251.626667pt;}
.y168{bottom:252.986667pt;}
.y21{bottom:254.906667pt;}
.y7b{bottom:258.986667pt;}
.ya2{bottom:259.226667pt;}
.y55{bottom:260.666667pt;}
.yee{bottom:264.346667pt;}
.yc9{bottom:264.826667pt;}
.y193{bottom:268.506667pt;}
.y167{bottom:268.586667pt;}
.y20{bottom:270.586667pt;}
.y13f{bottom:270.986667pt;}
.y7a{bottom:274.586667pt;}
.yc8{bottom:275.626667pt;}
.y114{bottom:275.946667pt;}
.y54{bottom:276.266667pt;}
.ya1{bottom:283.546667pt;}
.y13e{bottom:286.586667pt;}
.y53{bottom:291.946667pt;}
.y192{bottom:292.106667pt;}
.y1f{bottom:294.506667pt;}
.yed{bottom:295.946667pt;}
.yc7{bottom:299.946667pt;}
.y116{bottom:300.266667pt;}
.y13d{bottom:302.266667pt;}
.y166{bottom:302.906667pt;}
.y79{bottom:303.866667pt;}
.y52{bottom:307.546667pt;}
.ya0{bottom:307.866667pt;}
.yec{bottom:311.626667pt;}
.y191{bottom:315.786667pt;}
.y13c{bottom:317.866667pt;}
.y165{bottom:318.506667pt;}
.y51{bottom:323.146667pt;}
.yc6{bottom:324.266667pt;}
.y115{bottom:324.506667pt;}
.yeb{bottom:327.226667pt;}
.y78{bottom:328.186667pt;}
.y190{bottom:331.386667pt;}
.y9f{bottom:332.186667pt;}
.y13b{bottom:333.546667pt;}
.y164{bottom:334.106667pt;}
.y1e{bottom:337.386667pt;}
.yea{bottom:342.826667pt;}
.yc5{bottom:348.506667pt;}
.y163{bottom:349.786667pt;}
.y77{bottom:352.506667pt;}
.y1d{bottom:353.066667pt;}
.y18f{bottom:354.986667pt;}
.y50{bottom:357.386667pt;}
.ye9{bottom:358.506667pt;}
.y13a{bottom:364.506667pt;}
.y162{bottom:365.386667pt;}
.y113{bottom:367.786667pt;}
.y4f{bottom:373.146667pt;}
.ye8{bottom:374.106667pt;}
.y139{bottom:375.306667pt;}
.y9e{bottom:375.466667pt;}
.y76{bottom:376.746667pt;}
.y18e{bottom:378.666667pt;}
.y161{bottom:381.066667pt;}
.y112{bottom:383.466667pt;}
.y1c{bottom:384.666667pt;}
.y4e{bottom:388.746667pt;}
.ye7{bottom:389.786667pt;}
.y9d{bottom:391.066667pt;}
.yc4{bottom:391.786667pt;}
.y18d{bottom:394.266667pt;}
.y137{bottom:399.626667pt;}
.y1b{bottom:400.266667pt;}
.y75{bottom:401.066667pt;}
.y4d{bottom:404.346667pt;}
.y160{bottom:404.986667pt;}
.ye6{bottom:405.386667pt;}
.y111{bottom:407.066667pt;}
.yc3{bottom:407.466667pt;}
.y18c{bottom:409.946667pt;}
.y9c{bottom:414.746667pt;}
.y1a{bottom:415.946667pt;}
.y4c{bottom:420.053333pt;}
.yc2{bottom:423.093333pt;}
.y136{bottom:423.973333pt;}
.y74{bottom:425.413333pt;}
.y19{bottom:431.573333pt;}
.y18b{bottom:433.573333pt;}
.y4b{bottom:435.653333pt;}
.ye5{bottom:436.373333pt;}
.y110{bottom:438.773333pt;}
.y9b{bottom:446.373333pt;}
.yc1{bottom:446.773333pt;}
.y18{bottom:447.253333pt;}
.y15f{bottom:447.893333pt;}
.y132{bottom:448.293333pt;}
.y18a{bottom:449.173333pt;}
.y73{bottom:449.733333pt;}
.y10f{bottom:454.373333pt;}
.y9a{bottom:461.973333pt;}
.y17{bottom:462.853333pt;}
.y15e{bottom:463.493333pt;}
.y4a{bottom:469.893333pt;}
.y10e{bottom:469.973333pt;}
.ye2{bottom:471.493333pt;}
.y135{bottom:472.533333pt;}
.y189{bottom:472.853333pt;}
.y72{bottom:473.973333pt;}
.y99{bottom:477.653333pt;}
.yc0{bottom:478.373333pt;}
.y16{bottom:478.453333pt;}
.y15d{bottom:479.173333pt;}
.y49{bottom:485.573333pt;}
.y10d{bottom:485.653333pt;}
.y188{bottom:488.453333pt;}
.y98{bottom:493.253333pt;}
.ybf{bottom:493.973333pt;}
.y15{bottom:494.133333pt;}
.y15c{bottom:494.773333pt;}
.ye1{bottom:495.813333pt;}
.y134{bottom:496.853333pt;}
.y71{bottom:498.293333pt;}
.y48{bottom:501.253333pt;}
.y187{bottom:504.133333pt;}
.ybe{bottom:509.653333pt;}
.y14{bottom:509.733333pt;}
.y47{bottom:516.853333pt;}
.y10c{bottom:516.933333pt;}
.ydc{bottom:520.133333pt;}
.y70{bottom:522.613333pt;}
.y97{bottom:524.213333pt;}
.ybd{bottom:525.253333pt;}
.y13{bottom:525.413333pt;}
.y15b{bottom:526.453333pt;}
.y186{bottom:527.733333pt;}
.y46{bottom:532.453333pt;}
.y10b{bottom:532.533333pt;}
.y96{bottom:535.093333pt;}
.y131{bottom:540.133333pt;}
.y12{bottom:541.013333pt;}
.y15a{bottom:542.053333pt;}
.y185{bottom:543.333333pt;}
.ydf{bottom:544.373333pt;}
.y6f{bottom:546.933333pt;}
.y45{bottom:548.133333pt;}
.y130{bottom:555.733333pt;}
.ybc{bottom:556.213333pt;}
.y11{bottom:556.613333pt;}
.y159{bottom:557.653333pt;}
.y95{bottom:559.413333pt;}
.y184{bottom:567.013333pt;}
.ybb{bottom:567.093333pt;}
.yde{bottom:568.693333pt;}
.y6e{bottom:571.173333pt;}
.y10{bottom:572.293333pt;}
.y158{bottom:573.333333pt;}
.y10a{bottom:579.173333pt;}
.y12f{bottom:579.413333pt;}
.y44{bottom:582.373333pt;}
.y183{bottom:582.613333pt;}
.y94{bottom:583.653333pt;}
.yf{bottom:587.893333pt;}
.y157{bottom:588.933333pt;}
.y109{bottom:589.973333pt;}
.yba{bottom:591.413333pt;}
.y6d{bottom:595.493333pt;}
.y43{bottom:598.053333pt;}
.y182{bottom:598.293333pt;}
.ye{bottom:603.573333pt;}
.y156{bottom:604.613333pt;}
.y93{bottom:607.973333pt;}
.y12e{bottom:611.013333pt;}
.ydb{bottom:611.973333pt;}
.y42{bottom:613.653333pt;}
.y108{bottom:614.293333pt;}
.yb9{bottom:615.653333pt;}
.yd{bottom:619.173333pt;}
.y6b{bottom:619.813333pt;}
.y181{bottom:621.893333pt;}
.y12d{bottom:626.693333pt;}
.yda{bottom:627.653333pt;}
.y41{bottom:629.333333pt;}
.yc{bottom:634.773333pt;}
.y155{bottom:636.213333pt;}
.y180{bottom:637.493333pt;}
.y107{bottom:638.533333pt;}
.yb8{bottom:639.973333pt;}
.y12c{bottom:642.293333pt;}
.y69{bottom:644.053333pt;}
.y40{bottom:644.933333pt;}
.yb{bottom:650.453333pt;}
.y92{bottom:651.253333pt;}
.y154{bottom:651.813333pt;}
.y12b{bottom:657.893333pt;}
.y3f{bottom:660.613333pt;}
.y17f{bottom:661.173333pt;}
.y103{bottom:662.853333pt;}
.y91{bottom:666.933333pt;}
.y153{bottom:667.493333pt;}
.y12a{bottom:673.573333pt;}
.ya{bottom:674.373333pt;}
.y17e{bottom:676.773333pt;}
.yd9{bottom:682.933333pt;}
.y152{bottom:683.093333pt;}
.yb7{bottom:683.253333pt;}
.y106{bottom:687.173333pt;}
.y68{bottom:687.413333pt;}
.y129{bottom:689.173333pt;}
.y90{bottom:690.533333pt;}
.y17d{bottom:692.373333pt;}
.y3e{bottom:694.773333pt;}
.yd8{bottom:698.533333pt;}
.y151{bottom:698.693333pt;}
.yb6{bottom:698.933333pt;}
.y128{bottom:704.853333pt;}
.y3d{bottom:710.533333pt;}
.y67{bottom:711.013333pt;}
.y105{bottom:711.493333pt;}
.yd7{bottom:714.133333pt;}
.y150{bottom:714.373333pt;}
.yb5{bottom:714.533333pt;}
.y9{bottom:715.893333pt;}
.y17c{bottom:716.053333pt;}
.y127{bottom:720.453333pt;}
.y8f{bottom:722.133333pt;}
.y3c{bottom:726.133333pt;}
.y14f{bottom:729.973333pt;}
.y17b{bottom:731.653333pt;}
.y8e{bottom:737.813333pt;}
.yb4{bottom:738.133333pt;}
.y66{bottom:740.293333pt;}
.y3b{bottom:741.733333pt;}
.y14e{bottom:743.333333pt;}
.y17a{bottom:747.333333pt;}
.y8{bottom:747.733333pt;}
.y126{bottom:751.413333pt;}
.y8d{bottom:753.413333pt;}
.y102{bottom:754.773333pt;}
.y3a{bottom:757.413333pt;}
.y125{bottom:762.293333pt;}
.y14d{bottom:767.573333pt;}
.y8c{bottom:769.013333pt;}
.yd6{bottom:769.413333pt;}
.yb3{bottom:769.813333pt;}
.y101{bottom:770.373333pt;}
.y179{bottom:770.933333pt;}
.y39{bottom:773.013333pt;}
.y65{bottom:773.413333pt;}
.y7{bottom:779.733333pt;}
.yd5{bottom:785.013333pt;}
.yb2{bottom:785.413333pt;}
.y124{bottom:786.533333pt;}
.y38{bottom:788.693333pt;}
.y14c{bottom:791.893333pt;}
.y100{bottom:793.973333pt;}
.y8b{bottom:800.053333pt;}
.yd4{bottom:800.693333pt;}
.yb1{bottom:801.013333pt;}
.y37{bottom:804.293333pt;}
.y178{bottom:810.453333pt;}
.y8a{bottom:810.853333pt;}
.y6{bottom:811.733333pt;}
.y14b{bottom:816.213333pt;}
.yd3{bottom:816.293333pt;}
.yb0{bottom:816.693333pt;}
.y64{bottom:818.933333pt;}
.yff{bottom:822.373333pt;}
.yaf{bottom:831.653333pt;}
.yfe{bottom:833.173333pt;}
.y63{bottom:834.693333pt;}
.y89{bottom:835.173333pt;}
.y36{bottom:838.533333pt;}
.y14a{bottom:840.533333pt;}
.yae{bottom:842.533333pt;}
.y5{bottom:843.813333pt;}
.yd2{bottom:847.333333pt;}
.y62{bottom:850.293333pt;}
.y177{bottom:853.413333pt;}
.y35{bottom:854.213333pt;}
.yfc{bottom:857.493333pt;}
.yd1{bottom:858.133333pt;}
.y88{bottom:859.493333pt;}
.y149{bottom:864.773333pt;}
.y61{bottom:865.893333pt;}
.yad{bottom:866.773333pt;}
.y176{bottom:869.013333pt;}
.y34{bottom:869.893333pt;}
.y4{bottom:877.893333pt;}
.yfb{bottom:881.733333pt;}
.yd0{bottom:882.453333pt;}
.y87{bottom:883.733333pt;}
.y175{bottom:884.693333pt;}
.y33{bottom:885.493333pt;}
.y148{bottom:889.093333pt;}
.yab{bottom:891.093333pt;}
.y3{bottom:899.840000pt;}
.y60{bottom:900.240000pt;}
.y174{bottom:900.320000pt;}
.y32{bottom:901.120000pt;}
.yf8{bottom:906.080000pt;}
.ycf{bottom:906.720000pt;}
.yaa{bottom:915.440000pt;}
.y5f{bottom:915.840000pt;}
.y173{bottom:915.920000pt;}
.y31{bottom:916.800000pt;}
.y86{bottom:927.040000pt;}
.yfa{bottom:930.400000pt;}
.yce{bottom:931.040000pt;}
.y5e{bottom:931.520000pt;}
.y172{bottom:931.600000pt;}
.y30{bottom:932.400000pt;}
.y85{bottom:942.720000pt;}
.y5d{bottom:947.120000pt;}
.y2f{bottom:948.000000pt;}
.yf9{bottom:954.640000pt;}
.y171{bottom:955.520000pt;}
.y84{bottom:958.320000pt;}
.ya9{bottom:958.720000pt;}
.y5c{bottom:962.800000pt;}
.y2e{bottom:963.680000pt;}
.y122{bottom:966.320000pt;}
.ya8{bottom:974.320000pt;}
.y5b{bottom:978.400000pt;}
.y83{bottom:982.000000pt;}
.y147{bottom:982.240000pt;}
.y170{bottom:988.400000pt;}
.ya7{bottom:990.000000pt;}
.y2d{bottom:997.920000pt;}
.yf7{bottom:998.000000pt;}
.y5a{bottom:1002.320000pt;}
.y16f{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hd{height:23.626667pt;}
.h9{height:23.680000pt;}
.hb{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:36.034687pt;}
.h6{height:45.246562pt;}
.h11{height:47.920000pt;}
.h12{height:47.946667pt;}
.h10{height:48.000000pt;}
.h5{height:49.581562pt;}
.h8{height:53.309531pt;}
.h15{height:54.927899pt;}
.he{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:72.160000pt;}
.hf{height:72.240000pt;}
.h13{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2e{width:28.480000pt;}
.w26{width:28.560000pt;}
.w2b{width:28.586667pt;}
.w11{width:33.520000pt;}
.w9{width:35.840000pt;}
.w23{width:40.400000pt;}
.w27{width:46.000000pt;}
.w15{width:51.600000pt;}
.wd{width:52.480000pt;}
.w34{width:55.040000pt;}
.w28{width:55.120000pt;}
.w12{width:55.200000pt;}
.w3f{width:61.680000pt;}
.w3d{width:62.320000pt;}
.w3e{width:62.346667pt;}
.w3c{width:62.400000pt;}
.w40{width:63.120000pt;}
.w39{width:64.880000pt;}
.w25{width:64.906667pt;}
.w24{width:64.960000pt;}
.w3a{width:64.986667pt;}
.w35{width:72.480000pt;}
.w36{width:72.506667pt;}
.w1f{width:75.200000pt;}
.w2a{width:75.226667pt;}
.w13{width:78.640000pt;}
.w1b{width:78.666667pt;}
.w5{width:78.986667pt;}
.w17{width:89.626667pt;}
.wf{width:94.586667pt;}
.wb{width:94.666667pt;}
.w32{width:97.840000pt;}
.w3{width:99.760000pt;}
.w7{width:100.080000pt;}
.w20{width:102.480000pt;}
.w2d{width:102.560000pt;}
.w21{width:106.000000pt;}
.w22{width:106.026667pt;}
.w1a{width:107.600000pt;}
.w1c{width:109.360000pt;}
.w14{width:109.386667pt;}
.w6{width:109.760000pt;}
.wc{width:112.000000pt;}
.w18{width:120.640000pt;}
.w2c{width:125.946667pt;}
.w31{width:128.160000pt;}
.w33{width:128.186667pt;}
.w10{width:130.800000pt;}
.w37{width:130.986667pt;}
.w2f{width:133.866667pt;}
.w3b{width:140.800000pt;}
.w16{width:142.720000pt;}
.w19{width:142.800000pt;}
.w1d{width:155.626667pt;}
.we{width:162.560000pt;}
.w8{width:169.840000pt;}
.w4{width:170.160000pt;}
.wa{width:178.000000pt;}
.w29{width:212.640000pt;}
.w1e{width:212.666667pt;}
.w38{width:212.746667pt;}
.w30{width:256.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x36{left:87.600000pt;}
.x4f{left:98.879988pt;}
.x1f{left:122.960000pt;}
.x3c{left:135.280000pt;}
.x2e{left:137.840000pt;}
.x4{left:146.026667pt;}
.x42{left:146.986667pt;}
.x27{left:173.226667pt;}
.xc{left:175.786667pt;}
.x2{left:186.506655pt;}
.x17{left:190.746667pt;}
.x14{left:193.706667pt;}
.x9{left:222.266667pt;}
.xd{left:228.906667pt;}
.x1b{left:231.386667pt;}
.x18{left:243.866667pt;}
.x6{left:246.106667pt;}
.x43{left:255.226667pt;}
.x10{left:257.626667pt;}
.x2f{left:264.426667pt;}
.x1c{left:265.626667pt;}
.x3d{left:266.906667pt;}
.x2b{left:270.106667pt;}
.x39{left:277.786667pt;}
.x20{left:279.306667pt;}
.x4a{left:287.066667pt;}
.x26{left:290.426655pt;}
.x11{left:291.786667pt;}
.x47{left:296.346667pt;}
.x33{left:305.466667pt;}
.x3f{left:308.026667pt;}
.xb{left:310.106655pt;}
.x24{left:320.346667pt;}
.x2a{left:335.706667pt;}
.x12{left:347.626667pt;}
.x38{left:350.906667pt;}
.x46{left:361.946667pt;}
.x32{left:371.066667pt;}
.x1d{left:373.866667pt;}
.x2c{left:376.746667pt;}
.x23{left:385.946667pt;}
.x19{left:387.306667pt;}
.x15{left:389.386667pt;}
.xe{left:392.106667pt;}
.xa{left:400.906667pt;}
.x48{left:402.986667pt;}
.x3a{left:406.586667pt;}
.x34{left:412.186667pt;}
.x4b{left:413.146667pt;}
.x40{left:414.666667pt;}
.x7{left:416.586667pt;}
.x13{left:426.986667pt;}
.x28{left:442.346667pt;}
.x1e{left:453.253333pt;}
.x44{left:468.613333pt;}
.x2d{left:471.573333pt;}
.x4c{left:476.133333pt;}
.x30{left:477.813333pt;}
.x16{left:479.653333pt;}
.x1a{left:482.613333pt;}
.xf{left:487.413333pt;}
.x21{left:492.613333pt;}
.x8{left:495.893333pt;}
.x49{left:497.813333pt;}
.x35{left:507.013333pt;}
.x41{left:509.493333pt;}
.x29{left:518.293333pt;}
.x25{left:521.813333pt;}
.x4d{left:522.853333pt;}
.x3b{left:535.413333pt;}
.x45{left:544.453333pt;}
.x31{left:553.653333pt;}
.x3e{left:556.133333pt;}
.x22{left:568.533333pt;}
.x4e{left:585.253333pt;}
.x37{left:608.533333pt;}
.x3{left:711.413322pt;}
}




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