
    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_b45f2ac76888442f750b087f.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_e0a18c43455e3420ad95289a.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_659090478683ef180ebe6e56.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6909114aae7e4576ca2e3084.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_86eb5482a507dbf35da3ca9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d4407a325e7e6e3d48237e02.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_7dae5b3ddf883b9c3087113d.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_b5045a9979647d7755f8634d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_594306078977b133cdc6d3b0.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsb{letter-spacing:-2.604000px;}
.ls1d{letter-spacing:-1.926000px;}
.ls1c{letter-spacing:-0.444600px;}
.lse{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.160800px;}
.ls22{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls1f{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.051600px;}
.ls15{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.095400px;}
.ls18{letter-spacing:0.098400px;}
.ls17{letter-spacing:0.115800px;}
.ls1b{letter-spacing:0.116400px;}
.lsd{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.ls8{letter-spacing:0.255000px;}
.ls21{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:9.453600px;}
.ls12{letter-spacing:22.526640px;}
.ls16{letter-spacing:63.566640px;}
.ls20{letter-spacing:90.926640px;}
.ls1e{letter-spacing:124.046640px;}
.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;}
}
.ws1{word-spacing:-18.505200px;}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.324800px;}
.wse{word-spacing:-13.321800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.218840px;}
.wsb{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.wsf{word-spacing:-11.300400px;}
.ws0{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._d{margin-left:-4.895157px;}
._c{margin-left:-3.426600px;}
._1{margin-left:-2.288880px;}
._0{margin-left:-1.155000px;}
._2{width:1.180668px;}
._3{width:2.585400px;}
._7{width:3.607200px;}
._a{width:4.689600px;}
._5{width:5.918402px;}
._4{width:7.033800px;}
._6{width:8.152562px;}
._e{width:9.739200px;}
._11{width:10.821841px;}
._b{width:12.217200px;}
._14{width:14.248440px;}
._19{width:15.510960px;}
._15{width:16.593120px;}
._8{width:17.675400px;}
._9{width:18.838931px;}
._13{width:20.058709px;}
._12{width:21.943800px;}
._1b{width:23.747400px;}
._10{width:25.112520px;}
._f{width:26.392680px;}
._16{width:38.386440px;}
._20{width:54.709200px;}
._21{width:56.091960px;}
._1a{width:73.647000px;}
._1d{width:96.239280px;}
._1c{width:97.310640px;}
._18{width:101.783160px;}
._1e{width:103.108440px;}
._1f{width:110.453160px;}
._17{width:168.228480px;}
.fc2{color:transparent;}
.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;}
.y90{bottom:7.830000px;}
.yd7{bottom:7.860000px;}
.y8e{bottom:7.920000px;}
.y79{bottom:10.350000px;}
.y6f{bottom:10.440000px;}
.yd8{bottom:16.680000px;}
.ydb{bottom:21.510000px;}
.yc4{bottom:21.600000px;}
.yd6{bottom:25.500000px;}
.yf7{bottom:26.370000px;}
.y93{bottom:26.640000px;}
.yc8{bottom:27.360000px;}
.yd4{bottom:30.360000px;}
.y73{bottom:35.100000px;}
.y81{bottom:35.190000px;}
.yd2{bottom:35.220000px;}
.yc7{bottom:35.280000px;}
.yf6{bottom:44.010000px;}
.yd5{bottom:44.040000px;}
.yd1{bottom:52.860000px;}
.y2{bottom:55.380000px;}
.y2b{bottom:56.190000px;}
.y72{bottom:59.850000px;}
.y2a{bottom:73.830000px;}
.y1{bottom:83.640000px;}
.y78{bottom:84.510000px;}
.y71{bottom:84.600000px;}
.y80{bottom:109.350000px;}
.y1a4{bottom:116.130000px;}
.y143{bottom:116.580000px;}
.yfb{bottom:121.080000px;}
.y176{bottom:123.780000px;}
.y125{bottom:123.960000px;}
.y152{bottom:125.130000px;}
.y89{bottom:125.220000px;}
.y28{bottom:125.580000px;}
.y1a3{bottom:133.680000px;}
.y142{bottom:134.130000px;}
.y175{bottom:141.330000px;}
.y124{bottom:141.600000px;}
.y151{bottom:142.680000px;}
.y88{bottom:142.770000px;}
.y27{bottom:143.130000px;}
.yfa{bottom:148.350000px;}
.y18a{bottom:151.680000px;}
.y174{bottom:158.970000px;}
.y150{bottom:160.320000px;}
.y141{bottom:160.680000px;}
.y189{bottom:169.320000px;}
.ycf{bottom:170.400000px;}
.y7f{bottom:175.710000px;}
.y123{bottom:177.150000px;}
.y14f{bottom:177.870000px;}
.y140{bottom:178.320000px;}
.y26{bottom:178.680000px;}
.y173{bottom:185.520000px;}
.y5a{bottom:187.320000px;}
.yce{bottom:188.040000px;}
.y122{bottom:194.700000px;}
.y14e{bottom:195.510000px;}
.y13f{bottom:195.870000px;}
.y25{bottom:196.320000px;}
.y87{bottom:201.180000px;}
.yf5{bottom:203.070000px;}
.y1a2{bottom:204.510000px;}
.ycd{bottom:205.590000px;}
.y121{bottom:212.340000px;}
.y13e{bottom:213.510000px;}
.y24{bottom:213.870000px;}
.ya8{bottom:214.410000px;}
.y172{bottom:220.710000px;}
.y1a1{bottom:222.060000px;}
.y59{bottom:222.870000px;}
.ycc{bottom:223.140000px;}
.y86{bottom:226.650000px;}
.y120{bottom:229.890000px;}
.yf9{bottom:230.340000px;}
.y13d{bottom:231.060000px;}
.y23{bottom:231.510000px;}
.y188{bottom:240.060000px;}
.y58{bottom:240.510000px;}
.ycb{bottom:240.780000px;}
.y171{bottom:247.260000px;}
.y11f{bottom:247.440000px;}
.y14d{bottom:248.610000px;}
.y22{bottom:249.060000px;}
.ya7{bottom:250.050000px;}
.y85{bottom:252.120000px;}
.y187{bottom:257.610000px;}
.yf8{bottom:257.700000px;}
.y57{bottom:258.060000px;}
.yca{bottom:258.330000px;}
.y170{bottom:264.900000px;}
.y11e{bottom:265.080000px;}
.y14c{bottom:266.250000px;}
.y21{bottom:266.610000px;}
.y84{bottom:277.590000px;}
.y16f{bottom:282.450000px;}
.y11d{bottom:282.630000px;}
.y14b{bottom:283.800000px;}
.y20{bottom:284.250000px;}
.ya6{bottom:285.600000px;}
.yc6{bottom:291.270000px;}
.y56{bottom:293.610000px;}
.y11c{bottom:300.270000px;}
.y13c{bottom:301.800000px;}
.y83{bottom:303.150000px;}
.yf4{bottom:306.390000px;}
.y16e{bottom:309.000000px;}
.y1a0{bottom:310.440000px;}
.y55{bottom:311.250000px;}
.y11b{bottom:317.820000px;}
.yc9{bottom:318.630000px;}
.y13b{bottom:319.440000px;}
.y1f{bottom:319.800000px;}
.yf3{bottom:324.030000px;}
.y16d{bottom:326.640000px;}
.y186{bottom:328.440000px;}
.y82{bottom:328.620000px;}
.y54{bottom:328.800000px;}
.ya5{bottom:336.180000px;}
.y13a{bottom:336.990000px;}
.y1e{bottom:337.440000px;}
.y11a{bottom:344.370000px;}
.yc5{bottom:345.990000px;}
.y53{bottom:346.440000px;}
.yf2{bottom:350.580000px;}
.y16c{bottom:353.190000px;}
.y77{bottom:354.090000px;}
.y14a{bottom:354.540000px;}
.y1d{bottom:354.990000px;}
.ya4{bottom:363.450000px;}
.y52{bottom:363.990000px;}
.y16b{bottom:370.830000px;}
.y149{bottom:372.180000px;}
.y1c{bottom:372.540000px;}
.yc1{bottom:373.350000px;}
.y7e{bottom:379.560000px;}
.y119{bottom:380.280000px;}
.y51{bottom:381.540000px;}
.yf1{bottom:386.220000px;}
.y148{bottom:389.730000px;}
.y1b{bottom:390.180000px;}
.ya3{bottom:390.810000px;}
.y16a{bottom:397.380000px;}
.y19f{bottom:398.730000px;}
.y50{bottom:399.180000px;}
.yc3{bottom:400.620000px;}
.yf0{bottom:403.770000px;}
.y7d{bottom:405.030000px;}
.y139{bottom:407.730000px;}
.y19e{bottom:416.370000px;}
.y1a{bottom:417.090000px;}
.ya2{bottom:418.170000px;}
.yef{bottom:421.320000px;}
.y169{bottom:423.930000px;}
.y138{bottom:425.370000px;}
.yc2{bottom:427.980000px;}
.y118{bottom:428.610000px;}
.y7c{bottom:430.500000px;}
.y185{bottom:434.370000px;}
.y4f{bottom:434.730000px;}
.yee{bottom:438.960000px;}
.y168{bottom:441.570000px;}
.y137{bottom:442.920000px;}
.y117{bottom:446.160000px;}
.y184{bottom:451.920000px;}
.y4e{bottom:452.370000px;}
.y7b{bottom:455.970000px;}
.yed{bottom:456.510000px;}
.y167{bottom:459.120000px;}
.y136{bottom:460.470000px;}
.y116{bottom:463.800000px;}
.y19{bottom:465.690000px;}
.ya1{bottom:466.860000px;}
.y183{bottom:469.470000px;}
.y4d{bottom:469.950000px;}
.yc0{bottom:476.700000px;}
.y147{bottom:478.140000px;}
.y115{bottom:481.380000px;}
.y7a{bottom:481.470000px;}
.ya0{bottom:484.440000px;}
.y166{bottom:485.790000px;}
.y182{bottom:487.140000px;}
.y4c{bottom:487.500000px;}
.yec{bottom:489.480000px;}
.ybf{bottom:494.340000px;}
.y146{bottom:495.690000px;}
.y135{bottom:496.140000px;}
.y114{bottom:498.930000px;}
.y18{bottom:502.710000px;}
.y165{bottom:503.340000px;}
.y19d{bottom:504.690000px;}
.y4b{bottom:505.140000px;}
.y70{bottom:506.940000px;}
.y9f{bottom:511.080000px;}
.y134{bottom:513.690000px;}
.y113{bottom:516.570000px;}
.yeb{bottom:516.840000px;}
.y17{bottom:520.260000px;}
.ybe{bottom:520.890000px;}
.y19c{bottom:522.330000px;}
.y4a{bottom:522.690000px;}
.y164{bottom:530.250000px;}
.y133{bottom:531.330000px;}
.y76{bottom:532.410000px;}
.y16{bottom:537.900000px;}
.y19b{bottom:539.880000px;}
.y49{bottom:540.330000px;}
.yea{bottom:544.200000px;}
.y9e{bottom:546.630000px;}
.y132{bottom:548.880000px;}
.y112{bottom:552.120000px;}
.y15{bottom:555.450000px;}
.ybd{bottom:556.440000px;}
.y19a{bottom:557.430000px;}
.y48{bottom:557.880000px;}
.y9d{bottom:564.270000px;}
.y131{bottom:566.430000px;}
.y111{bottom:569.760000px;}
.ye7{bottom:571.560000px;}
.y14{bottom:573.090000px;}
.ybc{bottom:574.080000px;}
.y199{bottom:575.070000px;}
.y181{bottom:575.430000px;}
.y163{bottom:578.490000px;}
.y75{bottom:583.350000px;}
.y130{bottom:584.070000px;}
.y110{bottom:587.310000px;}
.y13{bottom:590.640000px;}
.ybb{bottom:591.630000px;}
.y180{bottom:593.070000px;}
.y47{bottom:593.430000px;}
.y162{bottom:596.130000px;}
.y9c{bottom:597.210000px;}
.ye9{bottom:598.830000px;}
.y12f{bottom:601.620000px;}
.y10f{bottom:604.860000px;}
.y12{bottom:608.190000px;}
.y74{bottom:608.820000px;}
.y17f{bottom:610.620000px;}
.y46{bottom:611.070000px;}
.yba{bottom:618.270000px;}
.y145{bottom:619.260000px;}
.y10e{bottom:622.500000px;}
.y161{bottom:623.040000px;}
.y9b{bottom:624.570000px;}
.y11{bottom:625.830000px;}
.ye8{bottom:626.190000px;}
.y17e{bottom:628.260000px;}
.y45{bottom:628.620000px;}
.y6e{bottom:634.290000px;}
.y12e{bottom:637.260000px;}
.y10{bottom:643.380000px;}
.y198{bottom:645.810000px;}
.y44{bottom:646.260000px;}
.y9a{bottom:651.840000px;}
.yb9{bottom:653.820000px;}
.y12d{bottom:654.810000px;}
.y10d{bottom:655.440000px;}
.y160{bottom:660.030000px;}
.yf{bottom:661.020000px;}
.y43{bottom:663.810000px;}
.yb8{bottom:671.370000px;}
.y12c{bottom:672.360000px;}
.ye6{bottom:674.880000px;}
.y15f{bottom:677.580000px;}
.ye{bottom:678.570000px;}
.y99{bottom:679.200000px;}
.y6d{bottom:681.090000px;}
.y42{bottom:681.360000px;}
.y10c{bottom:682.800000px;}
.y12b{bottom:690.000000px;}
.ye5{bottom:692.520000px;}
.y15e{bottom:695.220000px;}
.yd{bottom:696.120000px;}
.y6c{bottom:698.730000px;}
.y41{bottom:699.000000px;}
.yb7{bottom:704.400000px;}
.y12a{bottom:707.550000px;}
.y10b{bottom:710.160000px;}
.yc{bottom:713.760000px;}
.y40{bottom:716.550000px;}
.ye4{bottom:719.070000px;}
.y15d{bottom:722.130000px;}
.y129{bottom:725.190000px;}
.y6b{bottom:725.280000px;}
.y98{bottom:727.890000px;}
.yb6{bottom:731.670000px;}
.y197{bottom:734.190000px;}
.y10a{bottom:737.430000px;}
.yb{bottom:740.670000px;}
.y17d{bottom:743.190000px;}
.y97{bottom:745.530000px;}
.y128{bottom:751.740000px;}
.y6a{bottom:751.920000px;}
.y3f{bottom:752.190000px;}
.ye3{bottom:754.620000px;}
.yb5{bottom:759.030000px;}
.y15c{bottom:759.120000px;}
.y17c{bottom:760.740000px;}
.y109{bottom:764.790000px;}
.y196{bottom:769.290000px;}
.y3e{bottom:769.740000px;}
.y96{bottom:772.080000px;}
.ye2{bottom:772.260000px;}
.y17b{bottom:778.290000px;}
.y15b{bottom:786.030000px;}
.yb4{bottom:786.390000px;}
.y195{bottom:786.930000px;}
.y3d{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y69{bottom:787.830000px;}
.ye1{bottom:789.810000px;}
.y194{bottom:804.480000px;}
.y3c{bottom:804.930000px;}
.ye0{bottom:807.450000px;}
.y95{bottom:807.630000px;}
.y108{bottom:813.480000px;}
.y3b{bottom:822.480000px;}
.y9{bottom:823.200000px;}
.y15a{bottom:823.380000px;}
.ydf{bottom:825.000000px;}
.y94{bottom:825.270000px;}
.y107{bottom:831.030000px;}
.yb3{bottom:835.080000px;}
.y68{bottom:836.070000px;}
.y3a{bottom:840.030000px;}
.yde{bottom:842.550000px;}
.y193{bottom:848.670000px;}
.y17a{bottom:849.030000px;}
.yb2{bottom:852.630000px;}
.y67{bottom:853.620000px;}
.y127{bottom:857.670000px;}
.y92{bottom:858.210000px;}
.y8{bottom:859.200000px;}
.ydd{bottom:860.190000px;}
.y192{bottom:866.220000px;}
.y106{bottom:866.670000px;}
.y66{bottom:871.260000px;}
.y159{bottom:871.620000px;}
.y126{bottom:875.220000px;}
.y39{bottom:875.670000px;}
.yb1{bottom:879.270000px;}
.y105{bottom:884.220000px;}
.y91{bottom:885.570000px;}
.y65{bottom:888.810000px;}
.y158{bottom:889.260000px;}
.y191{bottom:892.860000px;}
.ydc{bottom:893.130000px;}
.y38{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y104{bottom:901.860000px;}
.y64{bottom:906.450000px;}
.y157{bottom:906.810000px;}
.y190{bottom:910.410000px;}
.y37{bottom:910.860000px;}
.y8f{bottom:912.930000px;}
.y6{bottom:913.200000px;}
.yb0{bottom:914.820000px;}
.y1a5{bottom:919.410000px;}
.yda{bottom:920.490000px;}
.y156{bottom:924.450000px;}
.y36{bottom:928.410000px;}
.yaf{bottom:932.460000px;}
.y18f{bottom:936.960000px;}
.y103{bottom:937.410000px;}
.y8d{bottom:940.200000px;}
.y63{bottom:942.000000px;}
.y35{bottom:945.960000px;}
.yd9{bottom:947.850000px;}
.y5{bottom:949.290000px;}
.y18e{bottom:954.600000px;}
.y102{bottom:954.960000px;}
.y62{bottom:959.550000px;}
.y34{bottom:963.600000px;}
.yae{bottom:965.400000px;}
.y101{bottom:972.600000px;}
.yd0{bottom:975.120000px;}
.y61{bottom:977.190000px;}
.y33{bottom:981.150000px;}
.y144{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y8c{bottom:988.890000px;}
.yad{bottom:992.760000px;}
.y60{bottom:994.740000px;}
.y18d{bottom:998.790000px;}
.y100{bottom:999.150000px;}
.yd3{bottom:1002.480000px;}
.y8b{bottom:1006.530000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.yac{bottom:1020.060000px;}
.y18c{bottom:1025.370000px;}
.y155{bottom:1029.960000px;}
.y8a{bottom:1033.020000px;}
.y31{bottom:1034.370000px;}
.yff{bottom:1034.820000px;}
.y18b{bottom:1042.920000px;}
.y179{bottom:1043.370000px;}
.yab{bottom:1047.420000px;}
.y154{bottom:1047.510000px;}
.y5f{bottom:1047.960000px;}
.y30{bottom:1051.920000px;}
.yfe{bottom:1052.370000px;}
.y178{bottom:1060.920000px;}
.y5e{bottom:1065.510000px;}
.y2f{bottom:1069.560000px;}
.yfd{bottom:1069.920000px;}
.y153{bottom:1074.420000px;}
.y177{bottom:1078.560000px;}
.y5d{bottom:1083.150000px;}
.yfc{bottom:1087.560000px;}
.yaa{bottom:1096.110000px;}
.y5c{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.ya9{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y5b{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:24.660000px;}
.h10{height:24.690000px;}
.hc{height:24.750000px;}
.h14{height:26.550000px;}
.h15{height:26.580000px;}
.h13{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h1b{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h17{height:53.910000px;}
.h1c{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h12{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h1a{height:71.490000px;}
.h4{height:72.985430px;}
.h16{height:81.180000px;}
.h18{height:81.270000px;}
.h19{height:98.850000px;}
.hd{height:126.630000px;}
.he{height:152.040000px;}
.h11{height:177.570000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2d{width:50.130000px;}
.w1c{width:56.340000px;}
.w27{width:56.430000px;}
.w14{width:63.990000px;}
.w29{width:65.100000px;}
.w2c{width:70.920000px;}
.w24{width:71.100000px;}
.w1e{width:72.270000px;}
.w16{width:72.360000px;}
.w8{width:73.650000px;}
.w15{width:75.720000px;}
.w2e{width:75.960000px;}
.w2f{width:77.940000px;}
.w12{width:81.540000px;}
.wf{width:83.610000px;}
.w21{width:84.780000px;}
.w1d{width:87.930000px;}
.w13{width:88.020000px;}
.w28{width:90.990000px;}
.w17{width:98.130000px;}
.w2b{width:105.750000px;}
.w5{width:107.550000px;}
.w3{width:112.170000px;}
.w6{width:113.940000px;}
.wc{width:115.950000px;}
.w22{width:126.480000px;}
.w26{width:129.900000px;}
.w19{width:136.980000px;}
.we{width:137.070000px;}
.wb{width:137.430000px;}
.wa{width:137.550000px;}
.w11{width:140.430000px;}
.w1b{width:140.520000px;}
.w1a{width:145.080000px;}
.w25{width:148.140000px;}
.w2a{width:161.220000px;}
.w10{width:170.280000px;}
.w20{width:173.430000px;}
.w9{width:254.430000px;}
.w7{width:267.330000px;}
.w4{width:267.780000px;}
.w23{width:278.760000px;}
.w18{width:286.320000px;}
.wd{width:311.430000px;}
.w1f{width:314.670000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.650000px;}
.x40{left:9.810000px;}
.x4a{left:14.400000px;}
.x1a{left:16.110000px;}
.x3b{left:17.730000px;}
.x1b{left:19.350000px;}
.x1d{left:20.790000px;}
.x24{left:22.140000px;}
.x14{left:23.220000px;}
.xa{left:25.680000px;}
.xf{left:26.910000px;}
.x23{left:28.800000px;}
.x21{left:30.510000px;}
.xd{left:32.220000px;}
.x26{left:34.110000px;}
.x1e{left:36.180000px;}
.x35{left:38.160000px;}
.x25{left:41.760000px;}
.x3a{left:42.780000px;}
.x3d{left:46.440000px;}
.x45{left:47.880000px;}
.x12{left:50.580000px;}
.x18{left:53.550000px;}
.x11{left:54.720000px;}
.x2a{left:56.070000px;}
.x10{left:60.420000px;}
.x16{left:62.820000px;}
.x31{left:64.440000px;}
.x1{left:68.040000px;}
.x9{left:95.039987px;}
.x4b{left:110.609987px;}
.x2f{left:119.880000px;}
.x13{left:121.500000px;}
.x39{left:138.870000px;}
.x4{left:142.920000px;}
.x2{left:211.079987px;}
.xb{left:217.290000px;}
.x30{left:236.550000px;}
.x15{left:238.170000px;}
.x27{left:241.860000px;}
.x6{left:255.450000px;}
.x3c{left:266.070000px;}
.x2c{left:299.010000px;}
.x44{left:304.950000px;}
.x1f{left:320.430000px;}
.x36{left:322.050000px;}
.x42{left:323.220000px;}
.x2b{left:387.660000px;}
.x1c{left:409.170000px;}
.x34{left:410.790000px;}
.x41{left:414.930000px;}
.x2d{left:452.460000px;}
.xc{left:472.440000px;}
.x20{left:473.880000px;}
.x37{left:475.500000px;}
.x43{left:479.640000px;}
.x46{left:483.150000px;}
.x7{left:523.680000px;}
.x28{left:528.900000px;}
.x3e{left:545.550000px;}
.x17{left:550.320000px;}
.x32{left:551.940000px;}
.x47{left:557.520000px;}
.x2e{left:593.610000px;}
.x48{left:608.370000px;}
.xe{left:610.710000px;}
.x22{left:615.030000px;}
.x38{left:616.650000px;}
.x8{left:631.590000px;}
.x29{left:666.690000px;}
.x3f{left:683.340000px;}
.x49{left:685.140000px;}
.x19{left:688.110000px;}
.x33{left:689.730000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-2.314667pt;}
.ls1d{letter-spacing:-1.712000pt;}
.ls1c{letter-spacing:-0.395200pt;}
.lse{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.142933pt;}
.ls22{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls1f{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.045867pt;}
.ls15{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.084800pt;}
.ls18{letter-spacing:0.087467pt;}
.ls17{letter-spacing:0.102933pt;}
.ls1b{letter-spacing:0.103467pt;}
.lsd{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.ls8{letter-spacing:0.226667pt;}
.ls21{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:8.403200pt;}
.ls12{letter-spacing:20.023680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls20{letter-spacing:80.823680pt;}
.ls1e{letter-spacing:110.263680pt;}
.ws1{word-spacing:-16.449067pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.841600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.750080pt;}
.wsb{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.wsf{word-spacing:-10.044800pt;}
.ws0{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._d{margin-left:-4.351251pt;}
._c{margin-left:-3.045866pt;}
._1{margin-left:-2.034560pt;}
._0{margin-left:-1.026667pt;}
._2{width:1.049483pt;}
._3{width:2.298134pt;}
._7{width:3.206400pt;}
._a{width:4.168534pt;}
._5{width:5.260802pt;}
._4{width:6.252266pt;}
._6{width:7.246722pt;}
._e{width:8.657066pt;}
._11{width:9.619414pt;}
._b{width:10.859734pt;}
._14{width:12.665280pt;}
._19{width:13.787520pt;}
._15{width:14.749440pt;}
._8{width:15.711467pt;}
._9{width:16.745716pt;}
._13{width:17.829964pt;}
._12{width:19.505600pt;}
._1b{width:21.108800pt;}
._10{width:22.322240pt;}
._f{width:23.460160pt;}
._16{width:34.121280pt;}
._20{width:48.630400pt;}
._21{width:49.859520pt;}
._1a{width:65.464000pt;}
._1d{width:85.546027pt;}
._1c{width:86.498347pt;}
._18{width:90.473920pt;}
._1e{width:91.651947pt;}
._1f{width:98.180587pt;}
._17{width:149.536427pt;}
.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;}
.y90{bottom:6.960000pt;}
.yd7{bottom:6.986667pt;}
.y8e{bottom:7.040000pt;}
.y79{bottom:9.200000pt;}
.y6f{bottom:9.280000pt;}
.yd8{bottom:14.826667pt;}
.ydb{bottom:19.120000pt;}
.yc4{bottom:19.200000pt;}
.yd6{bottom:22.666667pt;}
.yf7{bottom:23.440000pt;}
.y93{bottom:23.680000pt;}
.yc8{bottom:24.320000pt;}
.yd4{bottom:26.986667pt;}
.y73{bottom:31.200000pt;}
.y81{bottom:31.280000pt;}
.yd2{bottom:31.306667pt;}
.yc7{bottom:31.360000pt;}
.yf6{bottom:39.120000pt;}
.yd5{bottom:39.146667pt;}
.yd1{bottom:46.986667pt;}
.y2{bottom:49.226667pt;}
.y2b{bottom:49.946667pt;}
.y72{bottom:53.200000pt;}
.y2a{bottom:65.626667pt;}
.y1{bottom:74.346667pt;}
.y78{bottom:75.120000pt;}
.y71{bottom:75.200000pt;}
.y80{bottom:97.200000pt;}
.y1a4{bottom:103.226667pt;}
.y143{bottom:103.626667pt;}
.yfb{bottom:107.626667pt;}
.y176{bottom:110.026667pt;}
.y125{bottom:110.186667pt;}
.y152{bottom:111.226667pt;}
.y89{bottom:111.306667pt;}
.y28{bottom:111.626667pt;}
.y1a3{bottom:118.826667pt;}
.y142{bottom:119.226667pt;}
.y175{bottom:125.626667pt;}
.y124{bottom:125.866667pt;}
.y151{bottom:126.826667pt;}
.y88{bottom:126.906667pt;}
.y27{bottom:127.226667pt;}
.yfa{bottom:131.866667pt;}
.y18a{bottom:134.826667pt;}
.y174{bottom:141.306667pt;}
.y150{bottom:142.506667pt;}
.y141{bottom:142.826667pt;}
.y189{bottom:150.506667pt;}
.ycf{bottom:151.466667pt;}
.y7f{bottom:156.186667pt;}
.y123{bottom:157.466667pt;}
.y14f{bottom:158.106667pt;}
.y140{bottom:158.506667pt;}
.y26{bottom:158.826667pt;}
.y173{bottom:164.906667pt;}
.y5a{bottom:166.506667pt;}
.yce{bottom:167.146667pt;}
.y122{bottom:173.066667pt;}
.y14e{bottom:173.786667pt;}
.y13f{bottom:174.106667pt;}
.y25{bottom:174.506667pt;}
.y87{bottom:178.826667pt;}
.yf5{bottom:180.506667pt;}
.y1a2{bottom:181.786667pt;}
.ycd{bottom:182.746667pt;}
.y121{bottom:188.746667pt;}
.y13e{bottom:189.786667pt;}
.y24{bottom:190.106667pt;}
.ya8{bottom:190.586667pt;}
.y172{bottom:196.186667pt;}
.y1a1{bottom:197.386667pt;}
.y59{bottom:198.106667pt;}
.ycc{bottom:198.346667pt;}
.y86{bottom:201.466667pt;}
.y120{bottom:204.346667pt;}
.yf9{bottom:204.746667pt;}
.y13d{bottom:205.386667pt;}
.y23{bottom:205.786667pt;}
.y188{bottom:213.386667pt;}
.y58{bottom:213.786667pt;}
.ycb{bottom:214.026667pt;}
.y171{bottom:219.786667pt;}
.y11f{bottom:219.946667pt;}
.y14d{bottom:220.986667pt;}
.y22{bottom:221.386667pt;}
.ya7{bottom:222.266667pt;}
.y85{bottom:224.106667pt;}
.y187{bottom:228.986667pt;}
.yf8{bottom:229.066667pt;}
.y57{bottom:229.386667pt;}
.yca{bottom:229.626667pt;}
.y170{bottom:235.466667pt;}
.y11e{bottom:235.626667pt;}
.y14c{bottom:236.666667pt;}
.y21{bottom:236.986667pt;}
.y84{bottom:246.746667pt;}
.y16f{bottom:251.066667pt;}
.y11d{bottom:251.226667pt;}
.y14b{bottom:252.266667pt;}
.y20{bottom:252.666667pt;}
.ya6{bottom:253.866667pt;}
.yc6{bottom:258.906667pt;}
.y56{bottom:260.986667pt;}
.y11c{bottom:266.906667pt;}
.y13c{bottom:268.266667pt;}
.y83{bottom:269.466667pt;}
.yf4{bottom:272.346667pt;}
.y16e{bottom:274.666667pt;}
.y1a0{bottom:275.946667pt;}
.y55{bottom:276.666667pt;}
.y11b{bottom:282.506667pt;}
.yc9{bottom:283.226667pt;}
.y13b{bottom:283.946667pt;}
.y1f{bottom:284.266667pt;}
.yf3{bottom:288.026667pt;}
.y16d{bottom:290.346667pt;}
.y186{bottom:291.946667pt;}
.y82{bottom:292.106667pt;}
.y54{bottom:292.266667pt;}
.ya5{bottom:298.826667pt;}
.y13a{bottom:299.546667pt;}
.y1e{bottom:299.946667pt;}
.y11a{bottom:306.106667pt;}
.yc5{bottom:307.546667pt;}
.y53{bottom:307.946667pt;}
.yf2{bottom:311.626667pt;}
.y16c{bottom:313.946667pt;}
.y77{bottom:314.746667pt;}
.y14a{bottom:315.146667pt;}
.y1d{bottom:315.546667pt;}
.ya4{bottom:323.066667pt;}
.y52{bottom:323.546667pt;}
.y16b{bottom:329.626667pt;}
.y149{bottom:330.826667pt;}
.y1c{bottom:331.146667pt;}
.yc1{bottom:331.866667pt;}
.y7e{bottom:337.386667pt;}
.y119{bottom:338.026667pt;}
.y51{bottom:339.146667pt;}
.yf1{bottom:343.306667pt;}
.y148{bottom:346.426667pt;}
.y1b{bottom:346.826667pt;}
.ya3{bottom:347.386667pt;}
.y16a{bottom:353.226667pt;}
.y19f{bottom:354.426667pt;}
.y50{bottom:354.826667pt;}
.yc3{bottom:356.106667pt;}
.yf0{bottom:358.906667pt;}
.y7d{bottom:360.026667pt;}
.y139{bottom:362.426667pt;}
.y19e{bottom:370.106667pt;}
.y1a{bottom:370.746667pt;}
.ya2{bottom:371.706667pt;}
.yef{bottom:374.506667pt;}
.y169{bottom:376.826667pt;}
.y138{bottom:378.106667pt;}
.yc2{bottom:380.426667pt;}
.y118{bottom:380.986667pt;}
.y7c{bottom:382.666667pt;}
.y185{bottom:386.106667pt;}
.y4f{bottom:386.426667pt;}
.yee{bottom:390.186667pt;}
.y168{bottom:392.506667pt;}
.y137{bottom:393.706667pt;}
.y117{bottom:396.586667pt;}
.y184{bottom:401.706667pt;}
.y4e{bottom:402.106667pt;}
.y7b{bottom:405.306667pt;}
.yed{bottom:405.786667pt;}
.y167{bottom:408.106667pt;}
.y136{bottom:409.306667pt;}
.y116{bottom:412.266667pt;}
.y19{bottom:413.946667pt;}
.ya1{bottom:414.986667pt;}
.y183{bottom:417.306667pt;}
.y4d{bottom:417.733333pt;}
.yc0{bottom:423.733333pt;}
.y147{bottom:425.013333pt;}
.y115{bottom:427.893333pt;}
.y7a{bottom:427.973333pt;}
.ya0{bottom:430.613333pt;}
.y166{bottom:431.813333pt;}
.y182{bottom:433.013333pt;}
.y4c{bottom:433.333333pt;}
.yec{bottom:435.093333pt;}
.ybf{bottom:439.413333pt;}
.y146{bottom:440.613333pt;}
.y135{bottom:441.013333pt;}
.y114{bottom:443.493333pt;}
.y18{bottom:446.853333pt;}
.y165{bottom:447.413333pt;}
.y19d{bottom:448.613333pt;}
.y4b{bottom:449.013333pt;}
.y70{bottom:450.613333pt;}
.y9f{bottom:454.293333pt;}
.y134{bottom:456.613333pt;}
.y113{bottom:459.173333pt;}
.yeb{bottom:459.413333pt;}
.y17{bottom:462.453333pt;}
.ybe{bottom:463.013333pt;}
.y19c{bottom:464.293333pt;}
.y4a{bottom:464.613333pt;}
.y164{bottom:471.333333pt;}
.y133{bottom:472.293333pt;}
.y76{bottom:473.253333pt;}
.y16{bottom:478.133333pt;}
.y19b{bottom:479.893333pt;}
.y49{bottom:480.293333pt;}
.yea{bottom:483.733333pt;}
.y9e{bottom:485.893333pt;}
.y132{bottom:487.893333pt;}
.y112{bottom:490.773333pt;}
.y15{bottom:493.733333pt;}
.ybd{bottom:494.613333pt;}
.y19a{bottom:495.493333pt;}
.y48{bottom:495.893333pt;}
.y9d{bottom:501.573333pt;}
.y131{bottom:503.493333pt;}
.y111{bottom:506.453333pt;}
.ye7{bottom:508.053333pt;}
.y14{bottom:509.413333pt;}
.ybc{bottom:510.293333pt;}
.y199{bottom:511.173333pt;}
.y181{bottom:511.493333pt;}
.y163{bottom:514.213333pt;}
.y75{bottom:518.533333pt;}
.y130{bottom:519.173333pt;}
.y110{bottom:522.053333pt;}
.y13{bottom:525.013333pt;}
.ybb{bottom:525.893333pt;}
.y180{bottom:527.173333pt;}
.y47{bottom:527.493333pt;}
.y162{bottom:529.893333pt;}
.y9c{bottom:530.853333pt;}
.ye9{bottom:532.293333pt;}
.y12f{bottom:534.773333pt;}
.y10f{bottom:537.653333pt;}
.y12{bottom:540.613333pt;}
.y74{bottom:541.173333pt;}
.y17f{bottom:542.773333pt;}
.y46{bottom:543.173333pt;}
.yba{bottom:549.573333pt;}
.y145{bottom:550.453333pt;}
.y10e{bottom:553.333333pt;}
.y161{bottom:553.813333pt;}
.y9b{bottom:555.173333pt;}
.y11{bottom:556.293333pt;}
.ye8{bottom:556.613333pt;}
.y17e{bottom:558.453333pt;}
.y45{bottom:558.773333pt;}
.y6e{bottom:563.813333pt;}
.y12e{bottom:566.453333pt;}
.y10{bottom:571.893333pt;}
.y198{bottom:574.053333pt;}
.y44{bottom:574.453333pt;}
.y9a{bottom:579.413333pt;}
.yb9{bottom:581.173333pt;}
.y12d{bottom:582.053333pt;}
.y10d{bottom:582.613333pt;}
.y160{bottom:586.693333pt;}
.yf{bottom:587.573333pt;}
.y43{bottom:590.053333pt;}
.yb8{bottom:596.773333pt;}
.y12c{bottom:597.653333pt;}
.ye6{bottom:599.893333pt;}
.y15f{bottom:602.293333pt;}
.ye{bottom:603.173333pt;}
.y99{bottom:603.733333pt;}
.y6d{bottom:605.413333pt;}
.y42{bottom:605.653333pt;}
.y10c{bottom:606.933333pt;}
.y12b{bottom:613.333333pt;}
.ye5{bottom:615.573333pt;}
.y15e{bottom:617.973333pt;}
.yd{bottom:618.773333pt;}
.y6c{bottom:621.093333pt;}
.y41{bottom:621.333333pt;}
.yb7{bottom:626.133333pt;}
.y12a{bottom:628.933333pt;}
.y10b{bottom:631.253333pt;}
.yc{bottom:634.453333pt;}
.y40{bottom:636.933333pt;}
.ye4{bottom:639.173333pt;}
.y15d{bottom:641.893333pt;}
.y129{bottom:644.613333pt;}
.y6b{bottom:644.693333pt;}
.y98{bottom:647.013333pt;}
.yb6{bottom:650.373333pt;}
.y197{bottom:652.613333pt;}
.y10a{bottom:655.493333pt;}
.yb{bottom:658.373333pt;}
.y17d{bottom:660.613333pt;}
.y97{bottom:662.693333pt;}
.y128{bottom:668.213333pt;}
.y6a{bottom:668.373333pt;}
.y3f{bottom:668.613333pt;}
.ye3{bottom:670.773333pt;}
.yb5{bottom:674.693333pt;}
.y15c{bottom:674.773333pt;}
.y17c{bottom:676.213333pt;}
.y109{bottom:679.813333pt;}
.y196{bottom:683.813333pt;}
.y3e{bottom:684.213333pt;}
.y96{bottom:686.293333pt;}
.ye2{bottom:686.453333pt;}
.y17b{bottom:691.813333pt;}
.y15b{bottom:698.693333pt;}
.yb4{bottom:699.013333pt;}
.y195{bottom:699.493333pt;}
.y3d{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y69{bottom:700.293333pt;}
.ye1{bottom:702.053333pt;}
.y194{bottom:715.093333pt;}
.y3c{bottom:715.493333pt;}
.ye0{bottom:717.733333pt;}
.y95{bottom:717.893333pt;}
.y108{bottom:723.093333pt;}
.y3b{bottom:731.093333pt;}
.y9{bottom:731.733333pt;}
.y15a{bottom:731.893333pt;}
.ydf{bottom:733.333333pt;}
.y94{bottom:733.573333pt;}
.y107{bottom:738.693333pt;}
.yb3{bottom:742.293333pt;}
.y68{bottom:743.173333pt;}
.y3a{bottom:746.693333pt;}
.yde{bottom:748.933333pt;}
.y193{bottom:754.373333pt;}
.y17a{bottom:754.693333pt;}
.yb2{bottom:757.893333pt;}
.y67{bottom:758.773333pt;}
.y127{bottom:762.373333pt;}
.y92{bottom:762.853333pt;}
.y8{bottom:763.733333pt;}
.ydd{bottom:764.613333pt;}
.y192{bottom:769.973333pt;}
.y106{bottom:770.373333pt;}
.y66{bottom:774.453333pt;}
.y159{bottom:774.773333pt;}
.y126{bottom:777.973333pt;}
.y39{bottom:778.373333pt;}
.yb1{bottom:781.573333pt;}
.y105{bottom:785.973333pt;}
.y91{bottom:787.173333pt;}
.y65{bottom:790.053333pt;}
.y158{bottom:790.453333pt;}
.y191{bottom:793.653333pt;}
.ydc{bottom:793.893333pt;}
.y38{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y104{bottom:801.653333pt;}
.y64{bottom:805.733333pt;}
.y157{bottom:806.053333pt;}
.y190{bottom:809.253333pt;}
.y37{bottom:809.653333pt;}
.y8f{bottom:811.493333pt;}
.y6{bottom:811.733333pt;}
.yb0{bottom:813.173333pt;}
.y1a5{bottom:817.253333pt;}
.yda{bottom:818.213333pt;}
.y156{bottom:821.733333pt;}
.y36{bottom:825.253333pt;}
.yaf{bottom:828.853333pt;}
.y18f{bottom:832.853333pt;}
.y103{bottom:833.253333pt;}
.y8d{bottom:835.733333pt;}
.y63{bottom:837.333333pt;}
.y35{bottom:840.853333pt;}
.yd9{bottom:842.533333pt;}
.y5{bottom:843.813333pt;}
.y18e{bottom:848.533333pt;}
.y102{bottom:848.853333pt;}
.y62{bottom:852.933333pt;}
.y34{bottom:856.533333pt;}
.yae{bottom:858.133333pt;}
.y101{bottom:864.533333pt;}
.yd0{bottom:866.773333pt;}
.y61{bottom:868.613333pt;}
.y33{bottom:872.133333pt;}
.y144{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y8c{bottom:879.013333pt;}
.yad{bottom:882.453333pt;}
.y60{bottom:884.213333pt;}
.y18d{bottom:887.813333pt;}
.y100{bottom:888.133333pt;}
.yd3{bottom:891.093333pt;}
.y8b{bottom:894.693333pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.yac{bottom:906.720000pt;}
.y18c{bottom:911.440000pt;}
.y155{bottom:915.520000pt;}
.y8a{bottom:918.240000pt;}
.y31{bottom:919.440000pt;}
.yff{bottom:919.840000pt;}
.y18b{bottom:927.040000pt;}
.y179{bottom:927.440000pt;}
.yab{bottom:931.040000pt;}
.y154{bottom:931.120000pt;}
.y5f{bottom:931.520000pt;}
.y30{bottom:935.040000pt;}
.yfe{bottom:935.440000pt;}
.y178{bottom:943.040000pt;}
.y5e{bottom:947.120000pt;}
.y2f{bottom:950.720000pt;}
.yfd{bottom:951.040000pt;}
.y153{bottom:955.040000pt;}
.y177{bottom:958.720000pt;}
.y5d{bottom:962.800000pt;}
.yfc{bottom:966.720000pt;}
.yaa{bottom:974.320000pt;}
.y5c{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.ya9{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y5b{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:21.920000pt;}
.h10{height:21.946667pt;}
.hc{height:22.000000pt;}
.h14{height:23.600000pt;}
.h15{height:23.626667pt;}
.h13{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h1b{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h17{height:47.920000pt;}
.h1c{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h12{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h1a{height:63.546667pt;}
.h4{height:64.875937pt;}
.h16{height:72.160000pt;}
.h18{height:72.240000pt;}
.h19{height:87.866667pt;}
.hd{height:112.560000pt;}
.he{height:135.146667pt;}
.h11{height:157.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2d{width:44.560000pt;}
.w1c{width:50.080000pt;}
.w27{width:50.160000pt;}
.w14{width:56.880000pt;}
.w29{width:57.866667pt;}
.w2c{width:63.040000pt;}
.w24{width:63.200000pt;}
.w1e{width:64.240000pt;}
.w16{width:64.320000pt;}
.w8{width:65.466667pt;}
.w15{width:67.306667pt;}
.w2e{width:67.520000pt;}
.w2f{width:69.280000pt;}
.w12{width:72.480000pt;}
.wf{width:74.320000pt;}
.w21{width:75.360000pt;}
.w1d{width:78.160000pt;}
.w13{width:78.240000pt;}
.w28{width:80.880000pt;}
.w17{width:87.226667pt;}
.w2b{width:94.000000pt;}
.w5{width:95.600000pt;}
.w3{width:99.706667pt;}
.w6{width:101.280000pt;}
.wc{width:103.066667pt;}
.w22{width:112.426667pt;}
.w26{width:115.466667pt;}
.w19{width:121.760000pt;}
.we{width:121.840000pt;}
.wb{width:122.160000pt;}
.wa{width:122.266667pt;}
.w11{width:124.826667pt;}
.w1b{width:124.906667pt;}
.w1a{width:128.960000pt;}
.w25{width:131.680000pt;}
.w2a{width:143.306667pt;}
.w10{width:151.360000pt;}
.w20{width:154.160000pt;}
.w9{width:226.160000pt;}
.w7{width:237.626667pt;}
.w4{width:238.026667pt;}
.w23{width:247.786667pt;}
.w18{width:254.506667pt;}
.wd{width:276.826667pt;}
.w1f{width:279.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.800000pt;}
.x40{left:8.720000pt;}
.x4a{left:12.800000pt;}
.x1a{left:14.320000pt;}
.x3b{left:15.760000pt;}
.x1b{left:17.200000pt;}
.x1d{left:18.480000pt;}
.x24{left:19.680000pt;}
.x14{left:20.640000pt;}
.xa{left:22.826667pt;}
.xf{left:23.920000pt;}
.x23{left:25.600000pt;}
.x21{left:27.120000pt;}
.xd{left:28.640000pt;}
.x26{left:30.320000pt;}
.x1e{left:32.160000pt;}
.x35{left:33.920000pt;}
.x25{left:37.120000pt;}
.x3a{left:38.026667pt;}
.x3d{left:41.280000pt;}
.x45{left:42.560000pt;}
.x12{left:44.960000pt;}
.x18{left:47.600000pt;}
.x11{left:48.640000pt;}
.x2a{left:49.840000pt;}
.x10{left:53.706667pt;}
.x16{left:55.840000pt;}
.x31{left:57.280000pt;}
.x1{left:60.480000pt;}
.x9{left:84.479988pt;}
.x4b{left:98.319988pt;}
.x2f{left:106.560000pt;}
.x13{left:108.000000pt;}
.x39{left:123.440000pt;}
.x4{left:127.040000pt;}
.x2{left:187.626655pt;}
.xb{left:193.146667pt;}
.x30{left:210.266667pt;}
.x15{left:211.706667pt;}
.x27{left:214.986667pt;}
.x6{left:227.066667pt;}
.x3c{left:236.506667pt;}
.x2c{left:265.786667pt;}
.x44{left:271.066667pt;}
.x1f{left:284.826667pt;}
.x36{left:286.266667pt;}
.x42{left:287.306667pt;}
.x2b{left:344.586667pt;}
.x1c{left:363.706667pt;}
.x34{left:365.146667pt;}
.x41{left:368.826667pt;}
.x2d{left:402.186667pt;}
.xc{left:419.946667pt;}
.x20{left:421.226667pt;}
.x37{left:422.666667pt;}
.x43{left:426.346667pt;}
.x46{left:429.466667pt;}
.x7{left:465.493333pt;}
.x28{left:470.133333pt;}
.x3e{left:484.933333pt;}
.x17{left:489.173333pt;}
.x32{left:490.613333pt;}
.x47{left:495.573333pt;}
.x2e{left:527.653333pt;}
.x48{left:540.773333pt;}
.xe{left:542.853333pt;}
.x22{left:546.693333pt;}
.x38{left:548.133333pt;}
.x8{left:561.413333pt;}
.x29{left:592.613333pt;}
.x3f{left:607.413333pt;}
.x49{left:609.013333pt;}
.x19{left:611.653333pt;}
.x33{left:613.093333pt;}
.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; }
  