
    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_b8c327195112a0643c21cae7.woff')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_1c71ded652f6966917401a65.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_100020adc1479b95e1a28045.woff')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_5097a1893eeb0a686b6522ad.woff')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_e3cfee47d421de04397125ec.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0ee3fb7061cd8bfdbc2ad346.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_083003faa5ec3f1c0a979295.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ef604efc014500e3f56e2439.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_17262d43f2feddff4d25d0ab.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_520426b7e1e725d41bbcd2e2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.420600px;}
.ls16{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.063600px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.047520px;}
.lsa{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.374760px;}
.ls13{letter-spacing:35.486640px;}
.ls15{letter-spacing:48.446640px;}
.lsf{letter-spacing:54.926640px;}
.ls12{letter-spacing:55.406640px;}
.lsb{letter-spacing:71.126640px;}
.ls5{letter-spacing:71.687520px;}
.ls4{letter-spacing:72.045360px;}
.ls11{letter-spacing:80.126640px;}
.ls14{letter-spacing:81.566640px;}
.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;}
}
.ws4{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws1{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.072800px;}
.ws5{word-spacing:-13.039800px;}
.ws8{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws7{word-spacing:-0.060120px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-3.663480px;}
._4{margin-left:-2.589000px;}
._0{margin-left:-1.020000px;}
._1{width:1.090188px;}
._5{width:2.208624px;}
._3{width:3.487200px;}
._2{width:5.410800px;}
._6{width:6.710412px;}
._c{width:7.903908px;}
._a{width:8.957880px;}
._8{width:9.979920px;}
._9{width:11.843640px;}
._d{width:14.346120px;}
._e{width:15.375252px;}
._12{width:16.778880px;}
._11{width:18.156240px;}
._7{width:19.238400px;}
._10{width:20.440800px;}
._f{width:21.462840px;}
._15{width:22.665240px;}
._18{width:28.196280px;}
._17{width:29.278440px;}
._1b{width:31.801440px;}
._1a{width:32.885640px;}
._25{width:35.230320px;}
._21{width:37.394640px;}
._14{width:40.100040px;}
._22{width:46.232280px;}
._1e{width:49.118040px;}
._24{width:50.440680px;}
._19{width:64.027800px;}
._13{width:65.651040px;}
._1f{width:83.987640px;}
._1c{width:86.392440px;}
._20{width:90.600840px;}
._26{width:93.750840px;}
._27{width:94.881960px;}
._16{width:149.398200px;}
._23{width:185.289840px;}
._1d{width:207.113400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y161{bottom:6.210000px;}
.y14d{bottom:6.300000px;}
.y150{bottom:6.330000px;}
.y153{bottom:6.390000px;}
.y126{bottom:7.830000px;}
.y124{bottom:7.920000px;}
.y167{bottom:23.850000px;}
.y151{bottom:23.880000px;}
.y168{bottom:23.940000px;}
.y14f{bottom:23.970000px;}
.y12f{bottom:25.380000px;}
.y13c{bottom:25.470000px;}
.y160{bottom:26.820000px;}
.y178{bottom:29.880000px;}
.y128{bottom:35.190000px;}
.y166{bottom:41.490000px;}
.y12e{bottom:43.020000px;}
.y18c{bottom:43.050000px;}
.y15f{bottom:44.550000px;}
.y177{bottom:47.520000px;}
.y164{bottom:59.040000px;}
.y165{bottom:59.130000px;}
.y12d{bottom:60.570000px;}
.y17c{bottom:60.660000px;}
.y15e{bottom:64.980000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y163{bottom:76.680000px;}
.y12c{bottom:78.240000px;}
.y15d{bottom:82.710000px;}
.y12b{bottom:95.790000px;}
.y15c{bottom:100.260000px;}
.y18b{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.y12a{bottom:113.340000px;}
.y57{bottom:115.320000px;}
.y15b{bottom:117.810000px;}
.y162{bottom:117.930000px;}
.y11c{bottom:122.340000px;}
.y82{bottom:128.910000px;}
.y10f{bottom:129.090000px;}
.y139{bottom:129.630000px;}
.y26{bottom:130.980000px;}
.ybe{bottom:132.870000px;}
.y15a{bottom:135.450000px;}
.ye7{bottom:136.380000px;}
.y189{bottom:139.350000px;}
.y11b{bottom:139.980000px;}
.y1ac{bottom:144.480000px;}
.y10e{bottom:146.640000px;}
.y138{bottom:147.270000px;}
.y81{bottom:147.720000px;}
.y25{bottom:148.620000px;}
.ybd{bottom:150.510000px;}
.y56{bottom:150.870000px;}
.yac{bottom:153.930000px;}
.ye6{bottom:155.280000px;}
.y159{bottom:155.970000px;}
.y1ab{bottom:162.030000px;}
.y137{bottom:164.820000px;}
.y80{bottom:165.270000px;}
.y10d{bottom:165.360000px;}
.y24{bottom:166.170000px;}
.yab{bottom:171.480000px;}
.ye5{bottom:172.830000px;}
.y157{bottom:173.520000px;}
.y158{bottom:173.610000px;}
.y11a{bottom:175.530000px;}
.y136{bottom:182.460000px;}
.y7f{bottom:182.820000px;}
.y10c{bottom:184.260000px;}
.y23{bottom:184.980000px;}
.ybc{bottom:186.060000px;}
.y55{bottom:186.510000px;}
.y1aa{bottom:188.940000px;}
.yaa{bottom:189.030000px;}
.y156{bottom:191.160000px;}
.ye4{bottom:191.550000px;}
.y7e{bottom:201.630000px;}
.y10b{bottom:201.810000px;}
.y22{bottom:202.530000px;}
.ybb{bottom:203.610000px;}
.y54{bottom:204.060000px;}
.ya9{bottom:206.670000px;}
.y119{bottom:207.750000px;}
.y155{bottom:208.710000px;}
.ye3{bottom:210.360000px;}
.y154{bottom:212.610000px;}
.y135{bottom:218.010000px;}
.y7d{bottom:219.270000px;}
.yba{bottom:221.250000px;}
.y21{bottom:221.340000px;}
.y53{bottom:221.610000px;}
.y188{bottom:229.170000px;}
.y134{bottom:235.560000px;}
.y7c{bottom:236.820000px;}
.ye2{bottom:237.000000px;}
.y1a9{bottom:237.180000px;}
.y10a{bottom:237.360000px;}
.y20{bottom:238.890000px;}
.y52{bottom:239.250000px;}
.ya8{bottom:242.220000px;}
.y1bb{bottom:248.250000px;}
.y133{bottom:253.200000px;}
.y1a8{bottom:254.820000px;}
.y7b{bottom:255.630000px;}
.y51{bottom:256.800000px;}
.ya7{bottom:259.860000px;}
.y109{bottom:264.000000px;}
.y1ba{bottom:265.800000px;}
.ye1{bottom:272.550000px;}
.y7a{bottom:273.180000px;}
.y187{bottom:274.080000px;}
.y50{bottom:274.440000px;}
.y1f{bottom:274.530000px;}
.ya6{bottom:277.410000px;}
.y132{bottom:279.750000px;}
.y1a7{bottom:281.730000px;}
.y79{bottom:290.730000px;}
.ye0{bottom:291.360000px;}
.yb9{bottom:291.990000px;}
.y1b9{bottom:292.440000px;}
.ya5{bottom:294.960000px;}
.y108{bottom:299.550000px;}
.y4f{bottom:300.990000px;}
.y78{bottom:309.540000px;}
.y1b8{bottom:309.990000px;}
.y1e{bottom:310.080000px;}
.ydf{bottom:310.170000px;}
.ya4{bottom:312.600000px;}
.y131{bottom:315.660000px;}
.y107{bottom:318.360000px;}
.y1a6{bottom:318.720000px;}
.y186{bottom:322.770000px;}
.y77{bottom:327.180000px;}
.y1d{bottom:327.630000px;}
.y106{bottom:335.910000px;}
.y1a5{bottom:336.360000px;}
.y4e{bottom:336.540000px;}
.yde{bottom:336.720000px;}
.yb8{bottom:345.180000px;}
.y1c{bottom:345.270000px;}
.ya3{bottom:348.150000px;}
.y185{bottom:349.320000px;}
.y105{bottom:353.460000px;}
.y1a4{bottom:353.910000px;}
.y4d{bottom:354.180000px;}
.y130{bottom:361.380000px;}
.y76{bottom:362.730000px;}
.y1b{bottom:362.820000px;}
.ya2{bottom:365.790000px;}
.y184{bottom:366.960000px;}
.y1a3{bottom:371.460000px;}
.ydd{bottom:372.270000px;}
.yb7{bottom:380.370000px;}
.y1a{bottom:380.460000px;}
.y1b7{bottom:380.730000px;}
.y183{bottom:384.510000px;}
.y75{bottom:389.370000px;}
.y4c{bottom:389.730000px;}
.y104{bottom:389.910000px;}
.ydc{bottom:391.080000px;}
.yb6{bottom:397.920000px;}
.y1a2{bottom:398.370000px;}
.ya1{bottom:401.340000px;}
.y182{bottom:403.320000px;}
.y129{bottom:406.290000px;}
.ydb{bottom:409.890000px;}
.y19{bottom:416.010000px;}
.y4b{bottom:416.370000px;}
.y103{bottom:416.460000px;}
.ya0{bottom:418.890000px;}
.y181{bottom:420.870000px;}
.y74{bottom:424.920000px;}
.yb5{bottom:433.470000px;}
.y18{bottom:433.560000px;}
.y1a1{bottom:435.450000px;}
.yda{bottom:436.440000px;}
.y9f{bottom:436.530000px;}
.y180{bottom:438.510000px;}
.y152{bottom:439.320000px;}
.y73{bottom:442.470000px;}
.y17{bottom:451.200000px;}
.y4a{bottom:451.920000px;}
.y102{bottom:452.010000px;}
.y1a0{bottom:453.000000px;}
.y9e{bottom:454.080000px;}
.y17f{bottom:456.060000px;}
.y72{bottom:460.110000px;}
.y14e{bottom:463.710000px;}
.yb4{bottom:469.110000px;}
.y49{bottom:469.470000px;}
.y19f{bottom:470.580000px;}
.y101{bottom:470.850000px;}
.yd9{bottom:472.110000px;}
.y71{bottom:477.690000px;}
.yb3{bottom:486.690000px;}
.y16{bottom:486.780000px;}
.y48{bottom:487.140000px;}
.y19e{bottom:488.220000px;}
.yd8{bottom:489.660000px;}
.y9d{bottom:489.750000px;}
.y17e{bottom:491.730000px;}
.yb2{bottom:504.330000px;}
.y15{bottom:504.420000px;}
.y47{bottom:504.690000px;}
.y14c{bottom:505.680000px;}
.yd7{bottom:507.210000px;}
.y9c{bottom:507.300000px;}
.y70{bottom:513.330000px;}
.y100{bottom:516.210000px;}
.y17d{bottom:518.280000px;}
.y14{bottom:521.970000px;}
.y46{bottom:522.330000px;}
.y19d{bottom:523.770000px;}
.y9b{bottom:524.850000px;}
.yd6{bottom:526.020000px;}
.y6f{bottom:530.880000px;}
.y45{bottom:539.880000px;}
.y19c{bottom:541.410000px;}
.y9a{bottom:542.490000px;}
.yd5{bottom:543.660000px;}
.y118{bottom:546.450000px;}
.y6e{bottom:548.430000px;}
.y13{bottom:548.880000px;}
.y17b{bottom:551.220000px;}
.y14b{bottom:551.310000px;}
.yff{bottom:551.850000px;}
.y127{bottom:556.710000px;}
.y44{bottom:557.430000px;}
.y99{bottom:560.040000px;}
.yd4{bottom:561.210000px;}
.y117{bottom:564.000000px;}
.yfe{bottom:569.400000px;}
.yb1{bottom:575.070000px;}
.y19b{bottom:576.960000px;}
.y98{bottom:577.680000px;}
.y14a{bottom:577.950000px;}
.y116{bottom:581.550000px;}
.y6d{bottom:584.070000px;}
.yd3{bottom:587.760000px;}
.yb0{bottom:592.620000px;}
.y43{bottom:593.070000px;}
.y19a{bottom:594.510000px;}
.y149{bottom:595.500000px;}
.yfd{bottom:596.040000px;}
.y12{bottom:597.480000px;}
.y6c{bottom:601.620000px;}
.yaf{bottom:610.260000px;}
.y42{bottom:610.620000px;}
.y125{bottom:611.430000px;}
.y199{bottom:612.150000px;}
.y148{bottom:613.050000px;}
.y97{bottom:613.230000px;}
.y115{bottom:617.190000px;}
.y1b6{bottom:619.260000px;}
.yd2{bottom:623.670000px;}
.y41{bottom:628.260000px;}
.y96{bottom:630.780000px;}
.y179{bottom:631.320000px;}
.yfc{bottom:631.590000px;}
.y147{bottom:631.860000px;}
.y11{bottom:634.470000px;}
.y1b5{bottom:636.810000px;}
.y6b{bottom:637.260000px;}
.y123{bottom:638.700000px;}
.y40{bottom:645.810000px;}
.y198{bottom:647.700000px;}
.y95{bottom:648.420000px;}
.y114{bottom:649.410000px;}
.y146{bottom:649.500000px;}
.yfb{bottom:650.310000px;}
.y10{bottom:652.110000px;}
.y1b4{bottom:654.360000px;}
.y6a{bottom:654.810000px;}
.y17a{bottom:658.680000px;}
.y3f{bottom:663.360000px;}
.y94{bottom:665.970000px;}
.y145{bottom:667.050000px;}
.yfa{bottom:669.120000px;}
.yf{bottom:669.660000px;}
.yd1{bottom:672.000000px;}
.y69{bottom:672.360000px;}
.y197{bottom:674.610000px;}
.y1b3{bottom:681.000000px;}
.y144{bottom:684.690000px;}
.y176{bottom:686.040000px;}
.yf9{bottom:686.670000px;}
.ye{bottom:687.210000px;}
.y122{bottom:687.390000px;}
.yd0{bottom:689.550000px;}
.y68{bottom:690.000000px;}
.y1b2{bottom:698.550000px;}
.y3e{bottom:699.000000px;}
.y93{bottom:701.610000px;}
.yd{bottom:704.850000px;}
.yf8{bottom:705.570000px;}
.ycf{bottom:707.190000px;}
.y121{bottom:714.030000px;}
.y3d{bottom:716.550000px;}
.y92{bottom:719.160000px;}
.y143{bottom:720.240000px;}
.yc{bottom:722.400000px;}
.y196{bottom:722.940000px;}
.yf7{bottom:723.120000px;}
.y1b1{bottom:725.190000px;}
.y3c{bottom:734.190000px;}
.y91{bottom:736.710000px;}
.y142{bottom:737.790000px;}
.yb{bottom:740.040000px;}
.y195{bottom:740.490000px;}
.yf6{bottom:740.670000px;}
.yce{bottom:742.740000px;}
.y120{bottom:749.580000px;}
.y3b{bottom:751.740000px;}
.y67{bottom:752.190000px;}
.y175{bottom:753.000000px;}
.y90{bottom:754.350000px;}
.y141{bottom:755.430000px;}
.ya{bottom:757.590000px;}
.y194{bottom:758.040000px;}
.ycd{bottom:760.290000px;}
.y11f{bottom:767.220000px;}
.yf5{bottom:767.310000px;}
.y3a{bottom:769.290000px;}
.y66{bottom:769.740000px;}
.y8f{bottom:771.900000px;}
.ycc{bottom:777.930000px;}
.y140{bottom:781.980000px;}
.y9{bottom:784.500000px;}
.y1b0{bottom:786.930000px;}
.y65{bottom:787.290000px;}
.y193{bottom:793.680000px;}
.ycb{bottom:795.480000px;}
.y174{bottom:801.690000px;}
.y11e{bottom:802.770000px;}
.yf4{bottom:802.860000px;}
.y39{bottom:804.930000px;}
.y8e{bottom:807.450000px;}
.y192{bottom:811.230000px;}
.y1af{bottom:813.480000px;}
.y13f{bottom:814.920000px;}
.yf3{bottom:821.670000px;}
.y38{bottom:822.480000px;}
.y8d{bottom:825.090000px;}
.y173{bottom:828.330000px;}
.y191{bottom:828.780000px;}
.yca{bottom:831.030000px;}
.y8{bottom:831.300000px;}
.y11d{bottom:834.990000px;}
.y64{bottom:840.030000px;}
.yae{bottom:840.480000px;}
.y8c{bottom:842.640000px;}
.y172{bottom:845.880000px;}
.yf2{bottom:848.220000px;}
.yc9{bottom:848.670000px;}
.y63{bottom:857.670000px;}
.y37{bottom:858.030000px;}
.y13e{bottom:859.920000px;}
.y8b{bottom:860.280000px;}
.y171{bottom:863.430000px;}
.y190{bottom:864.420000px;}
.yc8{bottom:866.220000px;}
.y7{bottom:866.850000px;}
.y1ae{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y8a{bottom:877.830000px;}
.yf1{bottom:880.800000px;}
.y170{bottom:880.980000px;}
.y18f{bottom:881.970000px;}
.yc7{bottom:883.860000px;}
.y1ad{bottom:892.860000px;}
.y35{bottom:893.220000px;}
.yf0{bottom:899.610000px;}
.y16f{bottom:899.880000px;}
.y6{bottom:902.490000px;}
.y89{bottom:904.740000px;}
.y62{bottom:910.860000px;}
.y18e{bottom:917.160000px;}
.y16e{bottom:917.430000px;}
.yc6{bottom:919.410000px;}
.y13d{bottom:922.380000px;}
.yef{bottom:926.160000px;}
.y61{bottom:928.410000px;}
.y34{bottom:928.860000px;}
.y16d{bottom:934.980000px;}
.yc5{bottom:936.960000px;}
.y5{bottom:938.040000px;}
.y18d{bottom:943.710000px;}
.y60{bottom:945.960000px;}
.y33{bottom:946.410000px;}
.y13b{bottom:949.740000px;}
.y88{bottom:952.980000px;}
.y16c{bottom:953.790000px;}
.yc4{bottom:954.600000px;}
.yee{bottom:958.740000px;}
.y5f{bottom:963.600000px;}
.y32{bottom:963.960000px;}
.y87{bottom:970.620000px;}
.y16b{bottom:971.430000px;}
.yc3{bottom:972.150000px;}
.y4{bottom:973.950000px;}
.y113{bottom:976.740000px;}
.yed{bottom:977.550000px;}
.y5e{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y86{bottom:988.170000px;}
.y16a{bottom:988.980000px;}
.y112{bottom:994.290000px;}
.y13a{bottom:994.650000px;}
.yec{bottom:995.190000px;}
.y30{bottom:999.150000px;}
.y169{bottom:1006.530000px;}
.y85{bottom:1006.980000px;}
.y5d{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y2f{bottom:1016.820000px;}
.y111{bottom:1020.960000px;}
.yeb{bottom:1021.770000px;}
.y84{bottom:1024.560000px;}
.yc2{bottom:1025.370000px;}
.y2e{bottom:1034.370000px;}
.y18a{bottom:1039.230000px;}
.y83{bottom:1042.110000px;}
.yc1{bottom:1042.920000px;}
.y5c{bottom:1043.370000px;}
.y2d{bottom:1051.920000px;}
.y110{bottom:1056.870000px;}
.yea{bottom:1057.320000px;}
.yc0{bottom:1060.560000px;}
.y5b{bottom:1060.920000px;}
.yad{bottom:1069.920000px;}
.ye9{bottom:1076.130000px;}
.y5a{bottom:1078.560000px;}
.ybf{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.ye8{bottom:1094.850000px;}
.y59{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h13{height:23.580000px;}
.h15{height:23.670000px;}
.hc{height:26.550000px;}
.h10{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h14{height:41.160000px;}
.hf{height:44.100000px;}
.h11{height:44.190000px;}
.h6{height:50.902383px;}
.hd{height:53.910000px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h12{height:61.740000px;}
.h1b{height:61.770000px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h18{height:66.240000px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h19{height:79.380000px;}
.h17{height:93.870000px;}
.h1a{height:114.570000px;}
.he{height:149.700000px;}
.h16{height:225.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:124.590000px;}
.w13{width:136.650000px;}
.w7{width:140.340000px;}
.wf{width:148.800000px;}
.w15{width:176.490000px;}
.w3{width:186.330000px;}
.wd{width:205.470000px;}
.w6{width:223.020000px;}
.w5{width:229.620000px;}
.w11{width:263.430000px;}
.w9{width:298.440000px;}
.wa{width:324.570000px;}
.w12{width:351.300000px;}
.we{width:433.380000px;}
.w16{width:450.390000px;}
.w4{width:453.450000px;}
.w10{width:615.450000px;}
.w8{width:623.820000px;}
.w14{width:627.600000px;}
.wc{width:639.660000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:3.960000px;}
.x1a{left:24.659987px;}
.x10{left:64.170000px;}
.x1{left:68.040000px;}
.x19{left:78.659987px;}
.x2{left:95.040000px;}
.x3{left:122.040000px;}
.xc{left:126.360000px;}
.x6{left:149.039987px;}
.x13{left:189.480000px;}
.x17{left:201.540000px;}
.x4{left:202.799987px;}
.x11{left:205.230000px;}
.x15{left:213.690000px;}
.xb{left:294.149987px;}
.xa{left:303.869987px;}
.xe{left:313.410000px;}
.x8{left:344.279987px;}
.x18{left:378.750000px;}
.x14{left:395.760000px;}
.x16{left:477.840000px;}
.x12{left:504.480000px;}
.xf{left:543.840000px;}
.x7{left:722.309987px;}
.x9{left:726.809987px;}
.x5{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.373867pt;}
.ls16{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.042240pt;}
.lsa{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls13{letter-spacing:31.543680pt;}
.ls15{letter-spacing:43.063680pt;}
.lsf{letter-spacing:48.823680pt;}
.ls12{letter-spacing:49.250347pt;}
.lsb{letter-spacing:63.223680pt;}
.ls5{letter-spacing:63.722240pt;}
.ls4{letter-spacing:64.040320pt;}
.ls11{letter-spacing:71.223680pt;}
.ls14{letter-spacing:72.503680pt;}
.ws4{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.620267pt;}
.ws5{word-spacing:-11.590933pt;}
.ws8{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws7{word-spacing:-0.053440pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-3.256427pt;}
._4{margin-left:-2.301333pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.969056pt;}
._5{width:1.963221pt;}
._3{width:3.099734pt;}
._2{width:4.809600pt;}
._6{width:5.964810pt;}
._c{width:7.025696pt;}
._a{width:7.962560pt;}
._8{width:8.871040pt;}
._9{width:10.527680pt;}
._d{width:12.752107pt;}
._e{width:13.666890pt;}
._12{width:14.914560pt;}
._11{width:16.138880pt;}
._7{width:17.100800pt;}
._10{width:18.169600pt;}
._f{width:19.078080pt;}
._15{width:20.146880pt;}
._18{width:25.063360pt;}
._17{width:26.025280pt;}
._1b{width:28.267947pt;}
._1a{width:29.231680pt;}
._25{width:31.315840pt;}
._21{width:33.239680pt;}
._14{width:35.644480pt;}
._22{width:41.095360pt;}
._1e{width:43.660480pt;}
._24{width:44.836160pt;}
._19{width:56.913600pt;}
._13{width:58.356480pt;}
._1f{width:74.655680pt;}
._1c{width:76.793280pt;}
._20{width:80.534080pt;}
._26{width:83.334080pt;}
._27{width:84.339520pt;}
._16{width:132.798400pt;}
._23{width:164.702080pt;}
._1d{width:184.100800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:5.520000pt;}
.y14d{bottom:5.600000pt;}
.y150{bottom:5.626667pt;}
.y153{bottom:5.680000pt;}
.y126{bottom:6.960000pt;}
.y124{bottom:7.040000pt;}
.y167{bottom:21.200000pt;}
.y151{bottom:21.226667pt;}
.y168{bottom:21.280000pt;}
.y14f{bottom:21.306667pt;}
.y12f{bottom:22.560000pt;}
.y13c{bottom:22.640000pt;}
.y160{bottom:23.840000pt;}
.y178{bottom:26.560000pt;}
.y128{bottom:31.280000pt;}
.y166{bottom:36.880000pt;}
.y12e{bottom:38.240000pt;}
.y18c{bottom:38.266667pt;}
.y15f{bottom:39.600000pt;}
.y177{bottom:42.240000pt;}
.y164{bottom:52.480000pt;}
.y165{bottom:52.560000pt;}
.y12d{bottom:53.840000pt;}
.y17c{bottom:53.920000pt;}
.y15e{bottom:57.760000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y163{bottom:68.160000pt;}
.y12c{bottom:69.546667pt;}
.y15d{bottom:73.520000pt;}
.y12b{bottom:85.146667pt;}
.y15c{bottom:89.120000pt;}
.y18b{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.y12a{bottom:100.746667pt;}
.y57{bottom:102.506667pt;}
.y15b{bottom:104.720000pt;}
.y162{bottom:104.826667pt;}
.y11c{bottom:108.746667pt;}
.y82{bottom:114.586667pt;}
.y10f{bottom:114.746667pt;}
.y139{bottom:115.226667pt;}
.y26{bottom:116.426667pt;}
.ybe{bottom:118.106667pt;}
.y15a{bottom:120.400000pt;}
.ye7{bottom:121.226667pt;}
.y189{bottom:123.866667pt;}
.y11b{bottom:124.426667pt;}
.y1ac{bottom:128.426667pt;}
.y10e{bottom:130.346667pt;}
.y138{bottom:130.906667pt;}
.y81{bottom:131.306667pt;}
.y25{bottom:132.106667pt;}
.ybd{bottom:133.786667pt;}
.y56{bottom:134.106667pt;}
.yac{bottom:136.826667pt;}
.ye6{bottom:138.026667pt;}
.y159{bottom:138.640000pt;}
.y1ab{bottom:144.026667pt;}
.y137{bottom:146.506667pt;}
.y80{bottom:146.906667pt;}
.y10d{bottom:146.986667pt;}
.y24{bottom:147.706667pt;}
.yab{bottom:152.426667pt;}
.ye5{bottom:153.626667pt;}
.y157{bottom:154.240000pt;}
.y158{bottom:154.320000pt;}
.y11a{bottom:156.026667pt;}
.y136{bottom:162.186667pt;}
.y7f{bottom:162.506667pt;}
.y10c{bottom:163.786667pt;}
.y23{bottom:164.426667pt;}
.ybc{bottom:165.386667pt;}
.y55{bottom:165.786667pt;}
.y1aa{bottom:167.946667pt;}
.yaa{bottom:168.026667pt;}
.y156{bottom:169.920000pt;}
.ye4{bottom:170.266667pt;}
.y7e{bottom:179.226667pt;}
.y10b{bottom:179.386667pt;}
.y22{bottom:180.026667pt;}
.ybb{bottom:180.986667pt;}
.y54{bottom:181.386667pt;}
.ya9{bottom:183.706667pt;}
.y119{bottom:184.666667pt;}
.y155{bottom:185.520000pt;}
.ye3{bottom:186.986667pt;}
.y154{bottom:188.986667pt;}
.y135{bottom:193.786667pt;}
.y7d{bottom:194.906667pt;}
.yba{bottom:196.666667pt;}
.y21{bottom:196.746667pt;}
.y53{bottom:196.986667pt;}
.y188{bottom:203.706667pt;}
.y134{bottom:209.386667pt;}
.y7c{bottom:210.506667pt;}
.ye2{bottom:210.666667pt;}
.y1a9{bottom:210.826667pt;}
.y10a{bottom:210.986667pt;}
.y20{bottom:212.346667pt;}
.y52{bottom:212.666667pt;}
.ya8{bottom:215.306667pt;}
.y1bb{bottom:220.666667pt;}
.y133{bottom:225.066667pt;}
.y1a8{bottom:226.506667pt;}
.y7b{bottom:227.226667pt;}
.y51{bottom:228.266667pt;}
.ya7{bottom:230.986667pt;}
.y109{bottom:234.666667pt;}
.y1ba{bottom:236.266667pt;}
.ye1{bottom:242.266667pt;}
.y7a{bottom:242.826667pt;}
.y187{bottom:243.626667pt;}
.y50{bottom:243.946667pt;}
.y1f{bottom:244.026667pt;}
.ya6{bottom:246.586667pt;}
.y132{bottom:248.666667pt;}
.y1a7{bottom:250.426667pt;}
.y79{bottom:258.426667pt;}
.ye0{bottom:258.986667pt;}
.yb9{bottom:259.546667pt;}
.y1b9{bottom:259.946667pt;}
.ya5{bottom:262.186667pt;}
.y108{bottom:266.266667pt;}
.y4f{bottom:267.546667pt;}
.y78{bottom:275.146667pt;}
.y1b8{bottom:275.546667pt;}
.y1e{bottom:275.626667pt;}
.ydf{bottom:275.706667pt;}
.ya4{bottom:277.866667pt;}
.y131{bottom:280.586667pt;}
.y107{bottom:282.986667pt;}
.y1a6{bottom:283.306667pt;}
.y186{bottom:286.906667pt;}
.y77{bottom:290.826667pt;}
.y1d{bottom:291.226667pt;}
.y106{bottom:298.586667pt;}
.y1a5{bottom:298.986667pt;}
.y4e{bottom:299.146667pt;}
.yde{bottom:299.306667pt;}
.yb8{bottom:306.826667pt;}
.y1c{bottom:306.906667pt;}
.ya3{bottom:309.466667pt;}
.y185{bottom:310.506667pt;}
.y105{bottom:314.186667pt;}
.y1a4{bottom:314.586667pt;}
.y4d{bottom:314.826667pt;}
.y130{bottom:321.226667pt;}
.y76{bottom:322.426667pt;}
.y1b{bottom:322.506667pt;}
.ya2{bottom:325.146667pt;}
.y184{bottom:326.186667pt;}
.y1a3{bottom:330.186667pt;}
.ydd{bottom:330.906667pt;}
.yb7{bottom:338.106667pt;}
.y1a{bottom:338.186667pt;}
.y1b7{bottom:338.426667pt;}
.y183{bottom:341.786667pt;}
.y75{bottom:346.106667pt;}
.y4c{bottom:346.426667pt;}
.y104{bottom:346.586667pt;}
.ydc{bottom:347.626667pt;}
.yb6{bottom:353.706667pt;}
.y1a2{bottom:354.106667pt;}
.ya1{bottom:356.746667pt;}
.y182{bottom:358.506667pt;}
.y129{bottom:361.146667pt;}
.ydb{bottom:364.346667pt;}
.y19{bottom:369.786667pt;}
.y4b{bottom:370.106667pt;}
.y103{bottom:370.186667pt;}
.ya0{bottom:372.346667pt;}
.y181{bottom:374.106667pt;}
.y74{bottom:377.706667pt;}
.yb5{bottom:385.306667pt;}
.y18{bottom:385.386667pt;}
.y1a1{bottom:387.066667pt;}
.yda{bottom:387.946667pt;}
.y9f{bottom:388.026667pt;}
.y180{bottom:389.786667pt;}
.y152{bottom:390.506667pt;}
.y73{bottom:393.306667pt;}
.y17{bottom:401.066667pt;}
.y4a{bottom:401.706667pt;}
.y102{bottom:401.786667pt;}
.y1a0{bottom:402.666667pt;}
.y9e{bottom:403.626667pt;}
.y17f{bottom:405.386667pt;}
.y72{bottom:408.986667pt;}
.y14e{bottom:412.186667pt;}
.yb4{bottom:416.986667pt;}
.y49{bottom:417.306667pt;}
.y19f{bottom:418.293333pt;}
.y101{bottom:418.533333pt;}
.yd9{bottom:419.653333pt;}
.y71{bottom:424.613333pt;}
.yb3{bottom:432.613333pt;}
.y16{bottom:432.693333pt;}
.y48{bottom:433.013333pt;}
.y19e{bottom:433.973333pt;}
.yd8{bottom:435.253333pt;}
.y9d{bottom:435.333333pt;}
.y17e{bottom:437.093333pt;}
.yb2{bottom:448.293333pt;}
.y15{bottom:448.373333pt;}
.y47{bottom:448.613333pt;}
.y14c{bottom:449.493333pt;}
.yd7{bottom:450.853333pt;}
.y9c{bottom:450.933333pt;}
.y70{bottom:456.293333pt;}
.y100{bottom:458.853333pt;}
.y17d{bottom:460.693333pt;}
.y14{bottom:463.973333pt;}
.y46{bottom:464.293333pt;}
.y19d{bottom:465.573333pt;}
.y9b{bottom:466.533333pt;}
.yd6{bottom:467.573333pt;}
.y6f{bottom:471.893333pt;}
.y45{bottom:479.893333pt;}
.y19c{bottom:481.253333pt;}
.y9a{bottom:482.213333pt;}
.yd5{bottom:483.253333pt;}
.y118{bottom:485.733333pt;}
.y6e{bottom:487.493333pt;}
.y13{bottom:487.893333pt;}
.y17b{bottom:489.973333pt;}
.y14b{bottom:490.053333pt;}
.yff{bottom:490.533333pt;}
.y127{bottom:494.853333pt;}
.y44{bottom:495.493333pt;}
.y99{bottom:497.813333pt;}
.yd4{bottom:498.853333pt;}
.y117{bottom:501.333333pt;}
.yfe{bottom:506.133333pt;}
.yb1{bottom:511.173333pt;}
.y19b{bottom:512.853333pt;}
.y98{bottom:513.493333pt;}
.y14a{bottom:513.733333pt;}
.y116{bottom:516.933333pt;}
.y6d{bottom:519.173333pt;}
.yd3{bottom:522.453333pt;}
.yb0{bottom:526.773333pt;}
.y43{bottom:527.173333pt;}
.y19a{bottom:528.453333pt;}
.y149{bottom:529.333333pt;}
.yfd{bottom:529.813333pt;}
.y12{bottom:531.093333pt;}
.y6c{bottom:534.773333pt;}
.yaf{bottom:542.453333pt;}
.y42{bottom:542.773333pt;}
.y125{bottom:543.493333pt;}
.y199{bottom:544.133333pt;}
.y148{bottom:544.933333pt;}
.y97{bottom:545.093333pt;}
.y115{bottom:548.613333pt;}
.y1b6{bottom:550.453333pt;}
.yd2{bottom:554.373333pt;}
.y41{bottom:558.453333pt;}
.y96{bottom:560.693333pt;}
.y179{bottom:561.173333pt;}
.yfc{bottom:561.413333pt;}
.y147{bottom:561.653333pt;}
.y11{bottom:563.973333pt;}
.y1b5{bottom:566.053333pt;}
.y6b{bottom:566.453333pt;}
.y123{bottom:567.733333pt;}
.y40{bottom:574.053333pt;}
.y198{bottom:575.733333pt;}
.y95{bottom:576.373333pt;}
.y114{bottom:577.253333pt;}
.y146{bottom:577.333333pt;}
.yfb{bottom:578.053333pt;}
.y10{bottom:579.653333pt;}
.y1b4{bottom:581.653333pt;}
.y6a{bottom:582.053333pt;}
.y17a{bottom:585.493333pt;}
.y3f{bottom:589.653333pt;}
.y94{bottom:591.973333pt;}
.y145{bottom:592.933333pt;}
.yfa{bottom:594.773333pt;}
.yf{bottom:595.253333pt;}
.yd1{bottom:597.333333pt;}
.y69{bottom:597.653333pt;}
.y197{bottom:599.653333pt;}
.y1b3{bottom:605.333333pt;}
.y144{bottom:608.613333pt;}
.y176{bottom:609.813333pt;}
.yf9{bottom:610.373333pt;}
.ye{bottom:610.853333pt;}
.y122{bottom:611.013333pt;}
.yd0{bottom:612.933333pt;}
.y68{bottom:613.333333pt;}
.y1b2{bottom:620.933333pt;}
.y3e{bottom:621.333333pt;}
.y93{bottom:623.653333pt;}
.yd{bottom:626.533333pt;}
.yf8{bottom:627.173333pt;}
.ycf{bottom:628.613333pt;}
.y121{bottom:634.693333pt;}
.y3d{bottom:636.933333pt;}
.y92{bottom:639.253333pt;}
.y143{bottom:640.213333pt;}
.yc{bottom:642.133333pt;}
.y196{bottom:642.613333pt;}
.yf7{bottom:642.773333pt;}
.y1b1{bottom:644.613333pt;}
.y3c{bottom:652.613333pt;}
.y91{bottom:654.853333pt;}
.y142{bottom:655.813333pt;}
.yb{bottom:657.813333pt;}
.y195{bottom:658.213333pt;}
.yf6{bottom:658.373333pt;}
.yce{bottom:660.213333pt;}
.y120{bottom:666.293333pt;}
.y3b{bottom:668.213333pt;}
.y67{bottom:668.613333pt;}
.y175{bottom:669.333333pt;}
.y90{bottom:670.533333pt;}
.y141{bottom:671.493333pt;}
.ya{bottom:673.413333pt;}
.y194{bottom:673.813333pt;}
.ycd{bottom:675.813333pt;}
.y11f{bottom:681.973333pt;}
.yf5{bottom:682.053333pt;}
.y3a{bottom:683.813333pt;}
.y66{bottom:684.213333pt;}
.y8f{bottom:686.133333pt;}
.ycc{bottom:691.493333pt;}
.y140{bottom:695.093333pt;}
.y9{bottom:697.333333pt;}
.y1b0{bottom:699.493333pt;}
.y65{bottom:699.813333pt;}
.y193{bottom:705.493333pt;}
.ycb{bottom:707.093333pt;}
.y174{bottom:712.613333pt;}
.y11e{bottom:713.573333pt;}
.yf4{bottom:713.653333pt;}
.y39{bottom:715.493333pt;}
.y8e{bottom:717.733333pt;}
.y192{bottom:721.093333pt;}
.y1af{bottom:723.093333pt;}
.y13f{bottom:724.373333pt;}
.yf3{bottom:730.373333pt;}
.y38{bottom:731.093333pt;}
.y8d{bottom:733.413333pt;}
.y173{bottom:736.293333pt;}
.y191{bottom:736.693333pt;}
.yca{bottom:738.693333pt;}
.y8{bottom:738.933333pt;}
.y11d{bottom:742.213333pt;}
.y64{bottom:746.693333pt;}
.yae{bottom:747.093333pt;}
.y8c{bottom:749.013333pt;}
.y172{bottom:751.893333pt;}
.yf2{bottom:753.973333pt;}
.yc9{bottom:754.373333pt;}
.y63{bottom:762.373333pt;}
.y37{bottom:762.693333pt;}
.y13e{bottom:764.373333pt;}
.y8b{bottom:764.693333pt;}
.y171{bottom:767.493333pt;}
.y190{bottom:768.373333pt;}
.yc8{bottom:769.973333pt;}
.y7{bottom:770.533333pt;}
.y1ae{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y8a{bottom:780.293333pt;}
.yf1{bottom:782.933333pt;}
.y170{bottom:783.093333pt;}
.y18f{bottom:783.973333pt;}
.yc7{bottom:785.653333pt;}
.y1ad{bottom:793.653333pt;}
.y35{bottom:793.973333pt;}
.yf0{bottom:799.653333pt;}
.y16f{bottom:799.893333pt;}
.y6{bottom:802.213333pt;}
.y89{bottom:804.213333pt;}
.y62{bottom:809.653333pt;}
.y18e{bottom:815.253333pt;}
.y16e{bottom:815.493333pt;}
.yc6{bottom:817.253333pt;}
.y13d{bottom:819.893333pt;}
.yef{bottom:823.253333pt;}
.y61{bottom:825.253333pt;}
.y34{bottom:825.653333pt;}
.y16d{bottom:831.093333pt;}
.yc5{bottom:832.853333pt;}
.y5{bottom:833.813333pt;}
.y18d{bottom:838.853333pt;}
.y60{bottom:840.853333pt;}
.y33{bottom:841.253333pt;}
.y13b{bottom:844.213333pt;}
.y88{bottom:847.093333pt;}
.y16c{bottom:847.813333pt;}
.yc4{bottom:848.533333pt;}
.yee{bottom:852.213333pt;}
.y5f{bottom:856.533333pt;}
.y32{bottom:856.853333pt;}
.y87{bottom:862.773333pt;}
.y16b{bottom:863.493333pt;}
.yc3{bottom:864.133333pt;}
.y4{bottom:865.733333pt;}
.y113{bottom:868.213333pt;}
.yed{bottom:868.933333pt;}
.y5e{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y86{bottom:878.373333pt;}
.y16a{bottom:879.093333pt;}
.y112{bottom:883.813333pt;}
.y13a{bottom:884.133333pt;}
.yec{bottom:884.613333pt;}
.y30{bottom:888.133333pt;}
.y169{bottom:894.693333pt;}
.y85{bottom:895.093333pt;}
.y5d{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y2f{bottom:903.840000pt;}
.y111{bottom:907.520000pt;}
.yeb{bottom:908.240000pt;}
.y84{bottom:910.720000pt;}
.yc2{bottom:911.440000pt;}
.y2e{bottom:919.440000pt;}
.y18a{bottom:923.760000pt;}
.y83{bottom:926.320000pt;}
.yc1{bottom:927.040000pt;}
.y5c{bottom:927.440000pt;}
.y2d{bottom:935.040000pt;}
.y110{bottom:939.440000pt;}
.yea{bottom:939.840000pt;}
.yc0{bottom:942.720000pt;}
.y5b{bottom:943.040000pt;}
.yad{bottom:951.040000pt;}
.ye9{bottom:956.560000pt;}
.y5a{bottom:958.720000pt;}
.ybf{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.ye8{bottom:973.200000pt;}
.y59{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h13{height:20.960000pt;}
.h15{height:21.040000pt;}
.hc{height:23.600000pt;}
.h10{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h14{height:36.586667pt;}
.hf{height:39.200000pt;}
.h11{height:39.280000pt;}
.h6{height:45.246562pt;}
.hd{height:47.920000pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h12{height:54.880000pt;}
.h1b{height:54.906667pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h18{height:58.880000pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h19{height:70.560000pt;}
.h17{height:83.440000pt;}
.h1a{height:101.840000pt;}
.he{height:133.066667pt;}
.h16{height:200.880000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:110.746667pt;}
.w13{width:121.466667pt;}
.w7{width:124.746667pt;}
.wf{width:132.266667pt;}
.w15{width:156.880000pt;}
.w3{width:165.626667pt;}
.wd{width:182.640000pt;}
.w6{width:198.240000pt;}
.w5{width:204.106667pt;}
.w11{width:234.160000pt;}
.w9{width:265.280000pt;}
.wa{width:288.506667pt;}
.w12{width:312.266667pt;}
.we{width:385.226667pt;}
.w16{width:400.346667pt;}
.w4{width:403.066667pt;}
.w10{width:547.066667pt;}
.w8{width:554.506667pt;}
.w14{width:557.866667pt;}
.wc{width:568.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.520000pt;}
.x1a{left:21.919988pt;}
.x10{left:57.040000pt;}
.x1{left:60.480000pt;}
.x19{left:69.919988pt;}
.x2{left:84.480000pt;}
.x3{left:108.480000pt;}
.xc{left:112.320000pt;}
.x6{left:132.479988pt;}
.x13{left:168.426667pt;}
.x17{left:179.146667pt;}
.x4{left:180.266655pt;}
.x11{left:182.426667pt;}
.x15{left:189.946667pt;}
.xb{left:261.466655pt;}
.xa{left:270.106655pt;}
.xe{left:278.586667pt;}
.x8{left:306.026655pt;}
.x18{left:336.666667pt;}
.x14{left:351.786667pt;}
.x16{left:424.746667pt;}
.x12{left:448.426667pt;}
.xf{left:483.413333pt;}
.x7{left:642.053322pt;}
.x9{left:646.053322pt;}
.x5{left:704.053322pt;}
}




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