
    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_3d6c9ee82b1d59d87c4b2573.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_8771499e53dc1eff954ab03b.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_0c7590d2ed0cf3be7bf4d5f6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0018a42f85123f8facbd30fd.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_b710fa7d6b57cab20d00869a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e8c2d67bcc60e83adc72780.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9244731e65c7ddad9fdd2bd.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_1e1b47352908486f60fc89a5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_983d3388ace8a99cbcc3e61c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_b72e9065d02539929e968e84.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c220ed1f0c22d95a06037b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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;}
.m3{transform:matrix(-0.250496,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(-0.250496,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(-0.250496,0.000000,0.000000,-0.250000,0,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);}
.m2{transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250496,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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls1b{letter-spacing:-0.444600px;}
.ls17{letter-spacing:-0.266400px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.096332px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.070800px;}
.ls11{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls13{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls19{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls18{letter-spacing:80.846640px;}
.ls1a{letter-spacing:129.693600px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.wsf{word-spacing:-11.382299px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:0.007920px;}
.wsd{word-spacing:3.063960px;}
.wsc{word-spacing:3.423960px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-4.222800px;}
._9{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._2{width:1.342583px;}
._3{width:2.825976px;}
._4{width:4.044960px;}
._b{width:5.415120px;}
._7{width:6.553200px;}
._8{width:7.633797px;}
._d{width:9.138240px;}
._5{width:10.297920px;}
._6{width:11.670839px;}
._1{width:14.175636px;}
._f{width:15.316923px;}
._e{width:17.024040px;}
._c{width:18.396720px;}
._13{width:19.599120px;}
._16{width:21.402720px;}
._18{width:23.987880px;}
._14{width:28.376640px;}
._15{width:29.778960px;}
._1b{width:31.082040px;}
._17{width:39.078000px;}
._11{width:41.321160px;}
._12{width:60.899844px;}
._10{width:70.017564px;}
._19{width:154.869120px;}
._1a{width:155.902200px;}
.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;}
.fs7{font-size:47.880000px;}
.fs8{font-size:52.175598px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yec{bottom:5.936148px;}
.yee{bottom:6.014255px;}
.y161{bottom:7.830000px;}
.y162{bottom:7.920000px;}
.yf2{bottom:9.763400px;}
.yea{bottom:9.841507px;}
.ye8{bottom:12.340936px;}
.yf4{bottom:12.393007px;}
.ye6{bottom:15.621463px;}
.y15e{bottom:35.190000px;}
.y16a{bottom:35.280000px;}
.y15f{bottom:53.910000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yab{bottom:117.390000px;}
.y170{bottom:119.460000px;}
.y56{bottom:126.120000px;}
.y7e{bottom:126.840000px;}
.yc9{bottom:129.720000px;}
.yaa{bottom:135.030000px;}
.ye4{bottom:137.640000px;}
.y26{bottom:142.050000px;}
.y16e{bottom:146.730000px;}
.yc8{bottom:147.360000px;}
.ya9{bottom:152.580000px;}
.ye3{bottom:155.190000px;}
.y25{bottom:159.690000px;}
.y55{bottom:161.670000px;}
.y7d{bottom:163.290000px;}
.y147{bottom:164.730000px;}
.yc7{bottom:164.910000px;}
.ya8{bottom:170.130000px;}
.ye2{bottom:172.830000px;}
.y16f{bottom:174.090000px;}
.y24{bottom:177.240000px;}
.y54{bottom:179.220000px;}
.y146{bottom:182.280000px;}
.yc6{bottom:182.460000px;}
.ye1{bottom:190.380000px;}
.y11d{bottom:190.920000px;}
.y23{bottom:194.790000px;}
.y7c{bottom:198.840000px;}
.y145{bottom:199.830000px;}
.y16c{bottom:201.450000px;}
.ya7{bottom:205.770000px;}
.ye0{bottom:207.930000px;}
.y11c{bottom:208.560000px;}
.y22{bottom:212.430000px;}
.y53{bottom:214.860000px;}
.y144{bottom:217.470000px;}
.yc5{bottom:218.100000px;}
.ya6{bottom:223.320000px;}
.y11b{bottom:226.110000px;}
.y16d{bottom:228.810000px;}
.y21{bottom:229.980000px;}
.y52{bottom:232.410000px;}
.y7b{bottom:234.480000px;}
.yc4{bottom:235.650000px;}
.ya5{bottom:240.960000px;}
.ydf{bottom:243.570000px;}
.y11a{bottom:243.750000px;}
.y143{bottom:244.020000px;}
.y20{bottom:247.620000px;}
.y51{bottom:250.050000px;}
.yc3{bottom:253.200000px;}
.y169{bottom:256.080000px;}
.ya4{bottom:258.510000px;}
.yde{bottom:261.120000px;}
.y119{bottom:261.300000px;}
.y142{bottom:261.660000px;}
.y1f{bottom:265.170000px;}
.y50{bottom:267.600000px;}
.y7a{bottom:270.030000px;}
.yc2{bottom:270.840000px;}
.ydd{bottom:278.760000px;}
.y118{bottom:278.850000px;}
.y16b{bottom:283.440000px;}
.y79{bottom:287.580000px;}
.y141{bottom:288.210000px;}
.yc1{bottom:288.390000px;}
.y1e{bottom:292.080000px;}
.ya3{bottom:294.060000px;}
.ydc{bottom:296.310000px;}
.y117{bottom:296.490000px;}
.y4f{bottom:303.150000px;}
.y140{bottom:305.760000px;}
.y167{bottom:310.800000px;}
.ya2{bottom:311.700000px;}
.ydb{bottom:313.860000px;}
.y116{bottom:314.040000px;}
.y78{bottom:314.220000px;}
.y4e{bottom:320.790000px;}
.yc0{bottom:324.030000px;}
.ya1{bottom:329.250000px;}
.yda{bottom:331.500000px;}
.y13f{bottom:332.400000px;}
.y168{bottom:338.160000px;}
.y4d{bottom:338.340000px;}
.y1d{bottom:340.680000px;}
.y115{bottom:340.950000px;}
.ybf{bottom:341.580000px;}
.yd9{bottom:349.050000px;}
.y77{bottom:349.770000px;}
.y4c{bottom:355.980000px;}
.y13e{bottom:358.950000px;}
.ybe{bottom:359.130000px;}
.ya0{bottom:364.800000px;}
.y165{bottom:365.430000px;}
.y13d{bottom:376.590000px;}
.ybd{bottom:376.770000px;}
.y1c{bottom:377.670000px;}
.y114{bottom:377.940000px;}
.y9f{bottom:382.440000px;}
.y4b{bottom:382.530000px;}
.yd8{bottom:384.690000px;}
.y76{bottom:385.410000px;}
.y166{bottom:392.790000px;}
.y13c{bottom:394.140000px;}
.ybc{bottom:394.320000px;}
.y1b{bottom:395.310000px;}
.y113{bottom:395.580000px;}
.y9e{bottom:399.990000px;}
.yd7{bottom:402.240000px;}
.y75{bottom:402.960000px;}
.y1a{bottom:412.860000px;}
.y112{bottom:413.130000px;}
.y4a{bottom:415.110000px;}
.y9d{bottom:417.630000px;}
.yd6{bottom:419.790000px;}
.y163{bottom:420.150000px;}
.y74{bottom:420.510000px;}
.y13b{bottom:420.690000px;}
.ybb{bottom:429.960000px;}
.y19{bottom:430.410000px;}
.y111{bottom:430.770000px;}
.yd5{bottom:437.430000px;}
.y73{bottom:447.150000px;}
.y13a{bottom:447.330000px;}
.y164{bottom:447.420000px;}
.yba{bottom:447.510000px;}
.y110{bottom:448.320000px;}
.y49{bottom:450.660000px;}
.y9c{bottom:453.180000px;}
.yd4{bottom:464.340000px;}
.y139{bottom:464.880000px;}
.yb9{bottom:465.060000px;}
.y18{bottom:466.050000px;}
.y48{bottom:469.110000px;}
.y9b{bottom:470.760000px;}
.y15d{bottom:474.810000px;}
.y72{bottom:482.730000px;}
.y17{bottom:483.630000px;}
.y10f{bottom:483.900000px;}
.y47{bottom:487.500000px;}
.y9a{bottom:488.400000px;}
.y138{bottom:491.550000px;}
.y71{bottom:500.370000px;}
.y10e{bottom:501.540000px;}
.y160{bottom:502.170000px;}
.y46{bottom:505.950000px;}
.y137{bottom:509.100000px;}
.yb8{bottom:509.280000px;}
.yd3{bottom:512.610000px;}
.y70{bottom:517.920000px;}
.y10d{bottom:519.090000px;}
.y16{bottom:519.270000px;}
.y99{bottom:523.590000px;}
.y45{bottom:524.310000px;}
.y136{bottom:526.650000px;}
.y186{bottom:526.920000px;}
.yd2{bottom:530.160000px;}
.y6f{bottom:535.470000px;}
.y10c{bottom:536.730000px;}
.y15{bottom:536.820000px;}
.y44{bottom:542.760000px;}
.yb7{bottom:544.920000px;}
.y15c{bottom:550.860000px;}
.y135{bottom:553.290000px;}
.y10b{bottom:554.280000px;}
.y98{bottom:559.140000px;}
.y43{bottom:561.210000px;}
.y185{bottom:561.750000px;}
.yb6{bottom:562.470000px;}
.yd1{bottom:565.800000px;}
.y134{bottom:570.840000px;}
.y6e{bottom:571.110000px;}
.y10a{bottom:571.830000px;}
.y14{bottom:572.370000px;}
.y183{bottom:573.990000px;}
.y97{bottom:576.690000px;}
.yb5{bottom:580.020000px;}
.yd0{bottom:583.350000px;}
.y15b{bottom:586.410000px;}
.y133{bottom:588.480000px;}
.y6d{bottom:588.660000px;}
.y13{bottom:590.010000px;}
.y42{bottom:597.660000px;}
.y109{bottom:598.740000px;}
.y184{bottom:601.260000px;}
.y96{bottom:603.330000px;}
.y6c{bottom:606.300000px;}
.y12{bottom:607.560000px;}
.y15a{bottom:613.320000px;}
.y132{bottom:615.030000px;}
.ycf{bottom:618.270000px;}
.y6b{bottom:623.850000px;}
.y41{bottom:624.210000px;}
.y11{bottom:625.200000px;}
.y181{bottom:628.620000px;}
.yce{bottom:629.700000px;}
.ye5{bottom:630.203044px;}
.y131{bottom:632.580000px;}
.y95{bottom:638.880000px;}
.y10{bottom:642.750000px;}
.y108{bottom:647.070000px;}
.y6a{bottom:650.400000px;}
.y159{bottom:650.670000px;}
.y182{bottom:655.980000px;}
.y94{bottom:656.520000px;}
.y130{bottom:659.220000px;}
.y40{bottom:659.760000px;}
.yb4{bottom:659.850000px;}
.yf{bottom:660.300000px;}
.y107{bottom:664.620000px;}
.y93{bottom:674.070000px;}
.y12f{bottom:676.770000px;}
.y3f{bottom:677.400000px;}
.y106{bottom:682.260000px;}
.y17f{bottom:683.340000px;}
.y69{bottom:686.040000px;}
.ye{bottom:687.210000px;}
.y92{bottom:691.620000px;}
.y3e{bottom:694.950000px;}
.y158{bottom:699.000000px;}
.y105{bottom:699.810000px;}
.y12e{bottom:703.410000px;}
.y68{bottom:703.590000px;}
.yb3{bottom:703.950000px;}
.y180{bottom:710.610000px;}
.y3d{bottom:712.590000px;}
.y157{bottom:716.550000px;}
.y104{bottom:717.360000px;}
.y91{bottom:718.260000px;}
.y12d{bottom:720.960000px;}
.y67{bottom:721.230000px;}
.y103{bottom:735.000000px;}
.yd{bottom:735.540000px;}
.yb2{bottom:736.530000px;}
.y17e{bottom:737.970000px;}
.y156{bottom:743.190000px;}
.y12c{bottom:747.510000px;}
.y66{bottom:747.780000px;}
.y3c{bottom:748.140000px;}
.y102{bottom:752.550000px;}
.y90{bottom:753.810000px;}
.y155{bottom:760.740000px;}
.y12b{bottom:765.150000px;}
.y65{bottom:765.330000px;}
.y3b{bottom:765.690000px;}
.y101{bottom:770.190000px;}
.yc{bottom:771.360000px;}
.y8f{bottom:771.450000px;}
.yb1{bottom:772.170000px;}
.y3a{bottom:783.330000px;}
.y154{bottom:787.290000px;}
.y100{bottom:787.740000px;}
.yb0{bottom:789.720000px;}
.y12a{bottom:791.700000px;}
.y17c{bottom:792.600000px;}
.y8e{bottom:798.000000px;}
.y64{bottom:800.700000px;}
.y39{bottom:800.880000px;}
.y153{bottom:804.930000px;}
.yb{bottom:807.360000px;}
.y129{bottom:809.340000px;}
.y63{bottom:810.780000px;}
.y38{bottom:818.520000px;}
.y17d{bottom:819.960000px;}
.yff{bottom:823.290000px;}
.yaf{bottom:824.640000px;}
.ye9{bottom:826.046439px;}
.yeb{bottom:830.264222px;}
.yf1{bottom:830.264235px;}
.yed{bottom:830.342325px;}
.yf0{bottom:830.889098px;}
.yef{bottom:831.201499px;}
.y152{bottom:831.480000px;}
.y8d{bottom:833.910000px;}
.y128{bottom:835.890000px;}
.y37{bottom:836.070000px;}
.yae{bottom:838.680000px;}
.yfe{bottom:840.930000px;}
.ya{bottom:843.360000px;}
.ye7{bottom:846.224133px;}
.y17a{bottom:847.320000px;}
.y151{bottom:849.030000px;}
.yad{bottom:852.720000px;}
.y127{bottom:853.440000px;}
.y36{bottom:853.620000px;}
.y62{bottom:856.140000px;}
.yfd{bottom:858.480000px;}
.yac{bottom:864.150000px;}
.y9{bottom:865.140000px;}
.y35{bottom:871.260000px;}
.y17b{bottom:874.680000px;}
.y150{bottom:875.670000px;}
.yfc{bottom:876.030000px;}
.y8{bottom:879.360000px;}
.y126{bottom:880.080000px;}
.y8c{bottom:882.150000px;}
.y34{bottom:888.810000px;}
.yf5{bottom:890.484849px;}
.y61{bottom:891.690000px;}
.y14f{bottom:893.220000px;}
.yfb{bottom:893.670000px;}
.y8b{bottom:899.790000px;}
.y7{bottom:901.140000px;}
.y178{bottom:901.950000px;}
.y125{bottom:906.630000px;}
.y14e{bottom:910.860000px;}
.yf3{bottom:910.974987px;}
.yf6{bottom:910.974992px;}
.yfa{bottom:911.220000px;}
.y33{bottom:915.450000px;}
.y8a{bottom:917.340000px;}
.y6{bottom:919.140000px;}
.y124{bottom:924.180000px;}
.y60{bottom:927.330000px;}
.yf9{bottom:928.860000px;}
.y179{bottom:929.310000px;}
.y89{bottom:934.890000px;}
.y14d{bottom:937.410000px;}
.y5f{bottom:944.880000px;}
.yf8{bottom:946.410000px;}
.y123{bottom:951.090000px;}
.y32{bottom:951.270000px;}
.y5{bottom:951.450000px;}
.y88{bottom:952.530000px;}
.y14c{bottom:954.960000px;}
.y176{bottom:956.670000px;}
.y5e{bottom:962.520000px;}
.yf7{bottom:963.960000px;}
.y87{bottom:970.080000px;}
.y5d{bottom:980.070000px;}
.y14b{bottom:981.600000px;}
.y177{bottom:984.030000px;}
.y86{bottom:987.720000px;}
.y4{bottom:989.700000px;}
.y5c{bottom:997.620000px;}
.ycd{bottom:999.150000px;}
.y122{bottom:999.420000px;}
.y31{bottom:999.600000px;}
.y85{bottom:1005.270000px;}
.y3{bottom:1014.390000px;}
.ycc{bottom:1016.820000px;}
.y30{bottom:1017.180000px;}
.y84{bottom:1022.850000px;}
.y175{bottom:1024.020000px;}
.y121{bottom:1026.360000px;}
.y5b{bottom:1033.020000px;}
.ycb{bottom:1034.370000px;}
.y2f{bottom:1034.820000px;}
.y83{bottom:1040.490000px;}
.y5a{bottom:1043.100000px;}
.y14a{bottom:1043.370000px;}
.yca{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y174{bottom:1060.290000px;}
.y149{bottom:1060.920000px;}
.y120{bottom:1063.350000px;}
.y82{bottom:1067.040000px;}
.y2d{bottom:1069.920000px;}
.y172{bottom:1072.530000px;}
.y148{bottom:1078.560000px;}
.y2c{bottom:1087.560000px;}
.y59{bottom:1088.460000px;}
.y11f{bottom:1090.260000px;}
.y173{bottom:1099.890000px;}
.y81{bottom:1102.590000px;}
.y2b{bottom:1105.110000px;}
.y58{bottom:1120.770000px;}
.y80{bottom:1121.040000px;}
.y2a{bottom:1122.750000px;}
.y171{bottom:1127.160000px;}
.y11e{bottom:1127.610000px;}
.y57{bottom:1130.850000px;}
.y7f{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h18{height:14.371724px;}
.h15{height:18.277083px;}
.h19{height:18.303120px;}
.h16{height:18.355190px;}
.h13{height:19.370583px;}
.h17{height:22.104335px;}
.h14{height:22.182442px;}
.h1c{height:26.550000px;}
.h21{height:26.580000px;}
.h1d{height:26.640000px;}
.h1f{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.hf{height:41.661211px;}
.h12{height:45.398885px;}
.h1b{height:50.902383px;}
.h7{height:52.311445px;}
.h1a{height:53.910000px;}
.h1e{height:53.940000px;}
.h20{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h10{height:60.589687px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.he{height:92.631445px;}
.hd{height:96.027539px;}
.h11{height:347.629078px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:15.930000px;}
.w4{width:26.452653px;}
.w7{width:28.409210px;}
.w5{width:34.513668px;}
.w6{width:34.539755px;}
.w8{width:47.348683px;}
.w9{width:51.690000px;}
.w10{width:54.810000px;}
.w13{width:59.040000px;}
.we{width:78.930000px;}
.wa{width:79.740000px;}
.wb{width:172.710000px;}
.wd{width:187.320000px;}
.wf{width:189.360000px;}
.w12{width:192.630000px;}
.w11{width:231.120000px;}
.w3{width:593.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.740000px;}
.x16{left:9.391475px;}
.x14{left:17.035091px;}
.x1d{left:18.991648px;}
.x1{left:68.040000px;}
.xb{left:75.869987px;}
.x10{left:79.019987px;}
.x4{left:95.039987px;}
.xa{left:100.889987px;}
.x20{left:111.239987px;}
.x11{left:149.587500px;}
.x21{left:151.560000px;}
.x29{left:202.890000px;}
.x23{left:204.060000px;}
.x1a{left:211.727748px;}
.x2{left:231.149987px;}
.x2a{left:258.510000px;}
.x1b{left:278.981137px;}
.x1f{left:281.224654px;}
.x24{left:284.610000px;}
.xf{left:312.059987px;}
.x1c{left:343.834482px;}
.x13{left:345.791041px;}
.x2d{left:348.509987px;}
.x28{left:353.369987px;}
.xc{left:364.709987px;}
.xd{left:379.739987px;}
.x5{left:393.959987px;}
.x7{left:398.909987px;}
.x15{left:407.409547px;}
.x8{left:438.509987px;}
.x6{left:443.369987px;}
.x25{left:458.040000px;}
.x17{left:469.784587px;}
.x26{left:474.690000px;}
.x2b{left:490.350000px;}
.x18{left:541.498927px;}
.x12{left:594.167264px;}
.x19{left:604.108755px;}
.x1e{left:630.483143px;}
.x27{left:662.730000px;}
.x2c{left:683.700000px;}
.x9{left:707.639987px;}
.xe{left:743.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls1b{letter-spacing:-0.395200pt;}
.ls17{letter-spacing:-0.236800pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.085629pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.062933pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls13{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls19{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ls1a{letter-spacing:115.283200pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.wsf{word-spacing:-10.117600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:0.007040pt;}
.wsd{word-spacing:2.723520pt;}
.wsc{word-spacing:3.043520pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.753600pt;}
._9{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.193407pt;}
._3{width:2.511979pt;}
._4{width:3.595520pt;}
._b{width:4.813440pt;}
._7{width:5.825067pt;}
._8{width:6.785597pt;}
._d{width:8.122880pt;}
._5{width:9.153707pt;}
._6{width:10.374079pt;}
._1{width:12.600565pt;}
._f{width:13.615043pt;}
._e{width:15.132480pt;}
._c{width:16.352640pt;}
._13{width:17.421440pt;}
._16{width:19.024640pt;}
._18{width:21.322560pt;}
._14{width:25.223680pt;}
._15{width:26.470187pt;}
._1b{width:27.628480pt;}
._17{width:34.736000pt;}
._11{width:36.729920pt;}
._12{width:54.133195pt;}
._10{width:62.237835pt;}
._19{width:137.661440pt;}
._1a{width:138.579733pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs8{font-size:46.378310pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:5.276576pt;}
.yee{bottom:5.346004pt;}
.y161{bottom:6.960000pt;}
.y162{bottom:7.040000pt;}
.yf2{bottom:8.678577pt;}
.yea{bottom:8.748006pt;}
.ye8{bottom:10.969721pt;}
.yf4{bottom:11.016006pt;}
.ye6{bottom:13.885745pt;}
.y15e{bottom:31.280000pt;}
.y16a{bottom:31.360000pt;}
.y15f{bottom:47.920000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yab{bottom:104.346667pt;}
.y170{bottom:106.186667pt;}
.y56{bottom:112.106667pt;}
.y7e{bottom:112.746667pt;}
.yc9{bottom:115.306667pt;}
.yaa{bottom:120.026667pt;}
.ye4{bottom:122.346667pt;}
.y26{bottom:126.266667pt;}
.y16e{bottom:130.426667pt;}
.yc8{bottom:130.986667pt;}
.ya9{bottom:135.626667pt;}
.ye3{bottom:137.946667pt;}
.y25{bottom:141.946667pt;}
.y55{bottom:143.706667pt;}
.y7d{bottom:145.146667pt;}
.y147{bottom:146.426667pt;}
.yc7{bottom:146.586667pt;}
.ya8{bottom:151.226667pt;}
.ye2{bottom:153.626667pt;}
.y16f{bottom:154.746667pt;}
.y24{bottom:157.546667pt;}
.y54{bottom:159.306667pt;}
.y146{bottom:162.026667pt;}
.yc6{bottom:162.186667pt;}
.ye1{bottom:169.226667pt;}
.y11d{bottom:169.706667pt;}
.y23{bottom:173.146667pt;}
.y7c{bottom:176.746667pt;}
.y145{bottom:177.626667pt;}
.y16c{bottom:179.066667pt;}
.ya7{bottom:182.906667pt;}
.ye0{bottom:184.826667pt;}
.y11c{bottom:185.386667pt;}
.y22{bottom:188.826667pt;}
.y53{bottom:190.986667pt;}
.y144{bottom:193.306667pt;}
.yc5{bottom:193.866667pt;}
.ya6{bottom:198.506667pt;}
.y11b{bottom:200.986667pt;}
.y16d{bottom:203.386667pt;}
.y21{bottom:204.426667pt;}
.y52{bottom:206.586667pt;}
.y7b{bottom:208.426667pt;}
.yc4{bottom:209.466667pt;}
.ya5{bottom:214.186667pt;}
.ydf{bottom:216.506667pt;}
.y11a{bottom:216.666667pt;}
.y143{bottom:216.906667pt;}
.y20{bottom:220.106667pt;}
.y51{bottom:222.266667pt;}
.yc3{bottom:225.066667pt;}
.y169{bottom:227.626667pt;}
.ya4{bottom:229.786667pt;}
.yde{bottom:232.106667pt;}
.y119{bottom:232.266667pt;}
.y142{bottom:232.586667pt;}
.y1f{bottom:235.706667pt;}
.y50{bottom:237.866667pt;}
.y7a{bottom:240.026667pt;}
.yc2{bottom:240.746667pt;}
.ydd{bottom:247.786667pt;}
.y118{bottom:247.866667pt;}
.y16b{bottom:251.946667pt;}
.y79{bottom:255.626667pt;}
.y141{bottom:256.186667pt;}
.yc1{bottom:256.346667pt;}
.y1e{bottom:259.626667pt;}
.ya3{bottom:261.386667pt;}
.ydc{bottom:263.386667pt;}
.y117{bottom:263.546667pt;}
.y4f{bottom:269.466667pt;}
.y140{bottom:271.786667pt;}
.y167{bottom:276.266667pt;}
.ya2{bottom:277.066667pt;}
.ydb{bottom:278.986667pt;}
.y116{bottom:279.146667pt;}
.y78{bottom:279.306667pt;}
.y4e{bottom:285.146667pt;}
.yc0{bottom:288.026667pt;}
.ya1{bottom:292.666667pt;}
.yda{bottom:294.666667pt;}
.y13f{bottom:295.466667pt;}
.y168{bottom:300.586667pt;}
.y4d{bottom:300.746667pt;}
.y1d{bottom:302.826667pt;}
.y115{bottom:303.066667pt;}
.ybf{bottom:303.626667pt;}
.yd9{bottom:310.266667pt;}
.y77{bottom:310.906667pt;}
.y4c{bottom:316.426667pt;}
.y13e{bottom:319.066667pt;}
.ybe{bottom:319.226667pt;}
.ya0{bottom:324.266667pt;}
.y165{bottom:324.826667pt;}
.y13d{bottom:334.746667pt;}
.ybd{bottom:334.906667pt;}
.y1c{bottom:335.706667pt;}
.y114{bottom:335.946667pt;}
.y9f{bottom:339.946667pt;}
.y4b{bottom:340.026667pt;}
.yd8{bottom:341.946667pt;}
.y76{bottom:342.586667pt;}
.y166{bottom:349.146667pt;}
.y13c{bottom:350.346667pt;}
.ybc{bottom:350.506667pt;}
.y1b{bottom:351.386667pt;}
.y113{bottom:351.626667pt;}
.y9e{bottom:355.546667pt;}
.yd7{bottom:357.546667pt;}
.y75{bottom:358.186667pt;}
.y1a{bottom:366.986667pt;}
.y112{bottom:367.226667pt;}
.y4a{bottom:368.986667pt;}
.y9d{bottom:371.226667pt;}
.yd6{bottom:373.146667pt;}
.y163{bottom:373.466667pt;}
.y74{bottom:373.786667pt;}
.y13b{bottom:373.946667pt;}
.ybb{bottom:382.186667pt;}
.y19{bottom:382.586667pt;}
.y111{bottom:382.906667pt;}
.yd5{bottom:388.826667pt;}
.y73{bottom:397.466667pt;}
.y13a{bottom:397.626667pt;}
.y164{bottom:397.706667pt;}
.yba{bottom:397.786667pt;}
.y110{bottom:398.506667pt;}
.y49{bottom:400.586667pt;}
.y9c{bottom:402.826667pt;}
.yd4{bottom:412.746667pt;}
.y139{bottom:413.226667pt;}
.yb9{bottom:413.386667pt;}
.y18{bottom:414.266667pt;}
.y48{bottom:416.986667pt;}
.y9b{bottom:418.453333pt;}
.y15d{bottom:422.053333pt;}
.y72{bottom:429.093333pt;}
.y17{bottom:429.893333pt;}
.y10f{bottom:430.133333pt;}
.y47{bottom:433.333333pt;}
.y9a{bottom:434.133333pt;}
.y138{bottom:436.933333pt;}
.y71{bottom:444.773333pt;}
.y10e{bottom:445.813333pt;}
.y160{bottom:446.373333pt;}
.y46{bottom:449.733333pt;}
.y137{bottom:452.533333pt;}
.yb8{bottom:452.693333pt;}
.yd3{bottom:455.653333pt;}
.y70{bottom:460.373333pt;}
.y10d{bottom:461.413333pt;}
.y16{bottom:461.573333pt;}
.y99{bottom:465.413333pt;}
.y45{bottom:466.053333pt;}
.y136{bottom:468.133333pt;}
.y186{bottom:468.373333pt;}
.yd2{bottom:471.253333pt;}
.y6f{bottom:475.973333pt;}
.y10c{bottom:477.093333pt;}
.y15{bottom:477.173333pt;}
.y44{bottom:482.453333pt;}
.yb7{bottom:484.373333pt;}
.y15c{bottom:489.653333pt;}
.y135{bottom:491.813333pt;}
.y10b{bottom:492.693333pt;}
.y98{bottom:497.013333pt;}
.y43{bottom:498.853333pt;}
.y185{bottom:499.333333pt;}
.yb6{bottom:499.973333pt;}
.yd1{bottom:502.933333pt;}
.y134{bottom:507.413333pt;}
.y6e{bottom:507.653333pt;}
.y10a{bottom:508.293333pt;}
.y14{bottom:508.773333pt;}
.y183{bottom:510.213333pt;}
.y97{bottom:512.613333pt;}
.yb5{bottom:515.573333pt;}
.yd0{bottom:518.533333pt;}
.y15b{bottom:521.253333pt;}
.y133{bottom:523.093333pt;}
.y6d{bottom:523.253333pt;}
.y13{bottom:524.453333pt;}
.y42{bottom:531.253333pt;}
.y109{bottom:532.213333pt;}
.y184{bottom:534.453333pt;}
.y96{bottom:536.293333pt;}
.y6c{bottom:538.933333pt;}
.y12{bottom:540.053333pt;}
.y15a{bottom:545.173333pt;}
.y132{bottom:546.693333pt;}
.ycf{bottom:549.573333pt;}
.y6b{bottom:554.533333pt;}
.y41{bottom:554.853333pt;}
.y11{bottom:555.733333pt;}
.y181{bottom:558.773333pt;}
.yce{bottom:559.733333pt;}
.ye5{bottom:560.180484pt;}
.y131{bottom:562.293333pt;}
.y95{bottom:567.893333pt;}
.y10{bottom:571.333333pt;}
.y108{bottom:575.173333pt;}
.y6a{bottom:578.133333pt;}
.y159{bottom:578.373333pt;}
.y182{bottom:583.093333pt;}
.y94{bottom:583.573333pt;}
.y130{bottom:585.973333pt;}
.y40{bottom:586.453333pt;}
.yb4{bottom:586.533333pt;}
.yf{bottom:586.933333pt;}
.y107{bottom:590.773333pt;}
.y93{bottom:599.173333pt;}
.y12f{bottom:601.573333pt;}
.y3f{bottom:602.133333pt;}
.y106{bottom:606.453333pt;}
.y17f{bottom:607.413333pt;}
.y69{bottom:609.813333pt;}
.ye{bottom:610.853333pt;}
.y92{bottom:614.773333pt;}
.y3e{bottom:617.733333pt;}
.y158{bottom:621.333333pt;}
.y105{bottom:622.053333pt;}
.y12e{bottom:625.253333pt;}
.y68{bottom:625.413333pt;}
.yb3{bottom:625.733333pt;}
.y180{bottom:631.653333pt;}
.y3d{bottom:633.413333pt;}
.y157{bottom:636.933333pt;}
.y104{bottom:637.653333pt;}
.y91{bottom:638.453333pt;}
.y12d{bottom:640.853333pt;}
.y67{bottom:641.093333pt;}
.y103{bottom:653.333333pt;}
.yd{bottom:653.813333pt;}
.yb2{bottom:654.693333pt;}
.y17e{bottom:655.973333pt;}
.y156{bottom:660.613333pt;}
.y12c{bottom:664.453333pt;}
.y66{bottom:664.693333pt;}
.y3c{bottom:665.013333pt;}
.y102{bottom:668.933333pt;}
.y90{bottom:670.053333pt;}
.y155{bottom:676.213333pt;}
.y12b{bottom:680.133333pt;}
.y65{bottom:680.293333pt;}
.y3b{bottom:680.613333pt;}
.y101{bottom:684.613333pt;}
.yc{bottom:685.653333pt;}
.y8f{bottom:685.733333pt;}
.yb1{bottom:686.373333pt;}
.y3a{bottom:696.293333pt;}
.y154{bottom:699.813333pt;}
.y100{bottom:700.213333pt;}
.yb0{bottom:701.973333pt;}
.y12a{bottom:703.733333pt;}
.y17c{bottom:704.533333pt;}
.y8e{bottom:709.333333pt;}
.y64{bottom:711.733333pt;}
.y39{bottom:711.893333pt;}
.y153{bottom:715.493333pt;}
.yb{bottom:717.653333pt;}
.y129{bottom:719.413333pt;}
.y63{bottom:720.693333pt;}
.y38{bottom:727.573333pt;}
.y17d{bottom:728.853333pt;}
.yff{bottom:731.813333pt;}
.yaf{bottom:733.013333pt;}
.ye9{bottom:734.263501pt;}
.yeb{bottom:738.012642pt;}
.yf1{bottom:738.012654pt;}
.yed{bottom:738.082066pt;}
.yf0{bottom:738.568087pt;}
.yef{bottom:738.845777pt;}
.y152{bottom:739.093333pt;}
.y8d{bottom:741.253333pt;}
.y128{bottom:743.013333pt;}
.y37{bottom:743.173333pt;}
.yae{bottom:745.493333pt;}
.yfe{bottom:747.493333pt;}
.ya{bottom:749.653333pt;}
.ye7{bottom:752.199229pt;}
.y17a{bottom:753.173333pt;}
.y151{bottom:754.693333pt;}
.yad{bottom:757.973333pt;}
.y127{bottom:758.613333pt;}
.y36{bottom:758.773333pt;}
.y62{bottom:761.013333pt;}
.yfd{bottom:763.093333pt;}
.yac{bottom:768.133333pt;}
.y9{bottom:769.013333pt;}
.y35{bottom:774.453333pt;}
.y17b{bottom:777.493333pt;}
.y150{bottom:778.373333pt;}
.yfc{bottom:778.693333pt;}
.y8{bottom:781.653333pt;}
.y126{bottom:782.293333pt;}
.y8c{bottom:784.133333pt;}
.y34{bottom:790.053333pt;}
.yf5{bottom:791.542088pt;}
.y61{bottom:792.613333pt;}
.y14f{bottom:793.973333pt;}
.yfb{bottom:794.373333pt;}
.y8b{bottom:799.813333pt;}
.y7{bottom:801.013333pt;}
.y178{bottom:801.733333pt;}
.y125{bottom:805.893333pt;}
.y14e{bottom:809.653333pt;}
.yf3{bottom:809.755544pt;}
.yf6{bottom:809.755548pt;}
.yfa{bottom:809.973333pt;}
.y33{bottom:813.733333pt;}
.y8a{bottom:815.413333pt;}
.y6{bottom:817.013333pt;}
.y124{bottom:821.493333pt;}
.y60{bottom:824.293333pt;}
.yf9{bottom:825.653333pt;}
.y179{bottom:826.053333pt;}
.y89{bottom:831.013333pt;}
.y14d{bottom:833.253333pt;}
.y5f{bottom:839.893333pt;}
.yf8{bottom:841.253333pt;}
.y123{bottom:845.413333pt;}
.y32{bottom:845.573333pt;}
.y5{bottom:845.733333pt;}
.y88{bottom:846.693333pt;}
.y14c{bottom:848.853333pt;}
.y176{bottom:850.373333pt;}
.y5e{bottom:855.573333pt;}
.yf7{bottom:856.853333pt;}
.y87{bottom:862.293333pt;}
.y5d{bottom:871.173333pt;}
.y14b{bottom:872.533333pt;}
.y177{bottom:874.693333pt;}
.y86{bottom:877.973333pt;}
.y4{bottom:879.733333pt;}
.y5c{bottom:886.773333pt;}
.ycd{bottom:888.133333pt;}
.y122{bottom:888.373333pt;}
.y31{bottom:888.533333pt;}
.y85{bottom:893.573333pt;}
.y3{bottom:901.680000pt;}
.ycc{bottom:903.840000pt;}
.y30{bottom:904.160000pt;}
.y84{bottom:909.200000pt;}
.y175{bottom:910.240000pt;}
.y121{bottom:912.320000pt;}
.y5b{bottom:918.240000pt;}
.ycb{bottom:919.440000pt;}
.y2f{bottom:919.840000pt;}
.y83{bottom:924.880000pt;}
.y5a{bottom:927.200000pt;}
.y14a{bottom:927.440000pt;}
.yca{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y174{bottom:942.480000pt;}
.y149{bottom:943.040000pt;}
.y120{bottom:945.200000pt;}
.y82{bottom:948.480000pt;}
.y2d{bottom:951.040000pt;}
.y172{bottom:953.360000pt;}
.y148{bottom:958.720000pt;}
.y2c{bottom:966.720000pt;}
.y59{bottom:967.520000pt;}
.y11f{bottom:969.120000pt;}
.y173{bottom:977.680000pt;}
.y81{bottom:980.080000pt;}
.y2b{bottom:982.320000pt;}
.y58{bottom:996.240000pt;}
.y80{bottom:996.480000pt;}
.y2a{bottom:998.000000pt;}
.y171{bottom:1001.920000pt;}
.y11e{bottom:1002.320000pt;}
.y57{bottom:1005.200000pt;}
.y7f{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h18{height:12.774865pt;}
.h15{height:16.246296pt;}
.h19{height:16.269440pt;}
.h16{height:16.315725pt;}
.h13{height:17.218296pt;}
.h17{height:19.648298pt;}
.h14{height:19.717727pt;}
.h1c{height:23.600000pt;}
.h21{height:23.626667pt;}
.h1d{height:23.680000pt;}
.h1f{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.hf{height:37.032187pt;}
.h12{height:40.354564pt;}
.h1b{height:45.246562pt;}
.h7{height:46.499062pt;}
.h1a{height:47.920000pt;}
.h1e{height:47.946667pt;}
.h20{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h10{height:53.857500pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.he{height:82.339062pt;}
.hd{height:85.357812pt;}
.h11{height:309.003625pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:14.160000pt;}
.w4{width:23.513469pt;}
.w7{width:25.252631pt;}
.w5{width:30.678816pt;}
.w6{width:30.702005pt;}
.w8{width:42.087718pt;}
.w9{width:45.946667pt;}
.w10{width:48.720000pt;}
.w13{width:52.480000pt;}
.we{width:70.160000pt;}
.wa{width:70.880000pt;}
.wb{width:153.520000pt;}
.wd{width:166.506667pt;}
.wf{width:168.320000pt;}
.w12{width:171.226667pt;}
.w11{width:205.440000pt;}
.w3{width:527.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.880000pt;}
.x16{left:8.347977pt;}
.x14{left:15.142303pt;}
.x1d{left:16.881465pt;}
.x1{left:60.480000pt;}
.xb{left:67.439988pt;}
.x10{left:70.239988pt;}
.x4{left:84.479988pt;}
.xa{left:89.679988pt;}
.x20{left:98.879988pt;}
.x11{left:132.966667pt;}
.x21{left:134.720000pt;}
.x29{left:180.346667pt;}
.x23{left:181.386667pt;}
.x1a{left:188.202442pt;}
.x2{left:205.466655pt;}
.x2a{left:229.786667pt;}
.x1b{left:247.983233pt;}
.x1f{left:249.977470pt;}
.x24{left:252.986667pt;}
.xf{left:277.386655pt;}
.x1c{left:305.630650pt;}
.x13{left:307.369814pt;}
.x2d{left:309.786655pt;}
.x28{left:314.106655pt;}
.xc{left:324.186655pt;}
.xd{left:337.546655pt;}
.x5{left:350.186655pt;}
.x7{left:354.586655pt;}
.x15{left:362.141819pt;}
.x8{left:389.786655pt;}
.x6{left:394.106655pt;}
.x25{left:407.146667pt;}
.x17{left:417.586300pt;}
.x26{left:421.946667pt;}
.x2b{left:435.866667pt;}
.x18{left:481.332380pt;}
.x12{left:528.148679pt;}
.x19{left:536.985560pt;}
.x1e{left:560.429461pt;}
.x27{left:589.093333pt;}
.x2c{left:607.733333pt;}
.x9{left:629.013322pt;}
.xe{left:661.013322pt;}
.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; }
  