
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_818ca26ad286fe1dbe8f75d0.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_323578b7b2da7d05efebdf63.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e5975c919340914df1363f4c.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_7035d51aa3aa08c270212d0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6cf38ee65a2ba049b7f14dc5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_07c765ffba8c44c7442b4c17.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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls21{letter-spacing:-0.336000px;}
.lse{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.178800px;}
.ls1a{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.093000px;}
.ls1b{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.009000px;}
.ls12{letter-spacing:-0.008280px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls3{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls14{letter-spacing:0.115800px;}
.lsf{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.198000px;}
.ls10{letter-spacing:0.199200px;}
.ls15{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws16{word-spacing:-13.424400px;}
.ws17{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws11{word-spacing:-13.342200px;}
.ws12{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.300800px;}
.ws6{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.218120px;}
.ws18{word-spacing:-13.217400px;}
.ws15{word-spacing:-13.134000px;}
.ws13{word-spacing:-13.133400px;}
.wse{word-spacing:-13.101000px;}
.ws14{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws9{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._21{margin-left:-4.036920px;}
._7{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._3{width:1.250400px;}
._1{width:2.684412px;}
._2{width:3.689965px;}
._4{width:5.230200px;}
._5{width:6.258036px;}
._b{width:7.459525px;}
._c{width:8.717400px;}
._8{width:10.220400px;}
._6{width:11.959200px;}
._a{width:14.368800px;}
._9{width:15.811320px;}
._12{width:17.134440px;}
._11{width:18.997920px;}
._f{width:20.621160px;}
._10{width:21.859920px;}
._e{width:23.086200px;}
._d{width:24.687360px;}
._28{width:26.512920px;}
._1e{width:28.076040px;}
._20{width:29.194560px;}
._1f{width:30.781440px;}
._33{width:32.545920px;}
._29{width:34.268400px;}
._30{width:35.771400px;}
._14{width:39.378600px;}
._2a{width:43.166160px;}
._2b{width:44.308440px;}
._18{width:48.096000px;}
._1b{width:49.779360px;}
._23{width:52.605000px;}
._24{width:54.228240px;}
._25{width:56.993760px;}
._2c{width:59.158080px;}
._27{width:70.701120px;}
._2d{width:75.029760px;}
._1d{width:76.929120px;}
._1a{width:81.642960px;}
._17{width:94.568760px;}
._16{width:101.001600px;}
._15{width:102.023640px;}
._2f{width:104.580960px;}
._2e{width:105.598560px;}
._1c{width:115.610760px;}
._22{width:117.053640px;}
._26{width:128.596680px;}
._19{width:148.015440px;}
._32{width:150.901200px;}
._13{width:280.640160px;}
._31{width:290.958360px;}
.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;}
.y88{bottom:7.830000px;}
.y118{bottom:7.920000px;}
.y87{bottom:25.380000px;}
.y8e{bottom:25.470000px;}
.y8b{bottom:43.020000px;}
.y86{bottom:43.050000px;}
.y8a{bottom:60.570000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5c{bottom:112.530000px;}
.y12d{bottom:116.490000px;}
.y65{bottom:118.110000px;}
.yac{bottom:121.800000px;}
.y83{bottom:121.980000px;}
.yc3{bottom:122.430000px;}
.y15c{bottom:123.150000px;}
.y197{bottom:125.580000px;}
.y5b{bottom:130.170000px;}
.y12c{bottom:134.040000px;}
.yda{bottom:135.390000px;}
.yf2{bottom:135.480000px;}
.y64{bottom:135.660000px;}
.yab{bottom:139.350000px;}
.y82{bottom:139.530000px;}
.yc2{bottom:139.980000px;}
.y15b{bottom:140.700000px;}
.y28{bottom:141.870000px;}
.y196{bottom:143.130000px;}
.y5a{bottom:147.720000px;}
.y12b{bottom:151.680000px;}
.yd9{bottom:152.940000px;}
.yf1{bottom:153.120000px;}
.yaa{bottom:156.990000px;}
.y81{bottom:157.170000px;}
.yc1{bottom:157.620000px;}
.y15a{bottom:158.250000px;}
.y27{bottom:159.510000px;}
.y195{bottom:160.680000px;}
.y175{bottom:161.130000px;}
.y59{bottom:165.270000px;}
.yd8{bottom:170.580000px;}
.yf0{bottom:170.670000px;}
.y63{bottom:171.300000px;}
.ya9{bottom:174.540000px;}
.y80{bottom:174.720000px;}
.yc0{bottom:175.170000px;}
.y26{bottom:177.060000px;}
.y12a{bottom:178.230000px;}
.y174{bottom:178.680000px;}
.y58{bottom:182.910000px;}
.y159{bottom:184.890000px;}
.y194{bottom:187.320000px;}
.yd7{bottom:188.130000px;}
.yef{bottom:188.310000px;}
.ya8{bottom:192.180000px;}
.y7f{bottom:192.270000px;}
.ybf{bottom:192.810000px;}
.y173{bottom:196.320000px;}
.y140{bottom:201.270000px;}
.y158{bottom:202.440000px;}
.y62{bottom:203.520000px;}
.y25{bottom:203.610000px;}
.y193{bottom:204.870000px;}
.yd6{bottom:205.680000px;}
.yee{bottom:205.860000px;}
.y57{bottom:209.460000px;}
.ya7{bottom:209.730000px;}
.y7e{bottom:209.910000px;}
.ybe{bottom:210.360000px;}
.y129{bottom:213.780000px;}
.y192{bottom:222.510000px;}
.y172{bottom:222.870000px;}
.yd5{bottom:223.320000px;}
.yed{bottom:223.410000px;}
.ya6{bottom:227.280000px;}
.y7d{bottom:227.460000px;}
.y157{bottom:229.080000px;}
.y128{bottom:231.420000px;}
.y13f{bottom:236.910000px;}
.y24{bottom:239.520000px;}
.y171{bottom:240.510000px;}
.yd4{bottom:240.870000px;}
.yec{bottom:241.050000px;}
.y108{bottom:245.100000px;}
.y56{bottom:245.370000px;}
.ybd{bottom:245.910000px;}
.y156{bottom:246.630000px;}
.y127{bottom:248.970000px;}
.y191{bottom:249.060000px;}
.ya5{bottom:253.920000px;}
.y7c{bottom:254.100000px;}
.y13e{bottom:254.460000px;}
.y170{bottom:258.060000px;}
.yd3{bottom:258.510000px;}
.yeb{bottom:258.600000px;}
.y107{bottom:262.650000px;}
.y126{bottom:266.610000px;}
.y143{bottom:271.650000px;}
.y13d{bottom:272.100000px;}
.y155{bottom:273.180000px;}
.yea{bottom:276.240000px;}
.ybc{bottom:278.130000px;}
.y106{bottom:280.200000px;}
.y125{bottom:284.160000px;}
.y190{bottom:284.250000px;}
.y16f{bottom:284.610000px;}
.yd2{bottom:285.060000px;}
.y23{bottom:287.850000px;}
.ya4{bottom:289.470000px;}
.y7b{bottom:289.650000px;}
.y154{bottom:290.820000px;}
.y55{bottom:293.610000px;}
.y105{bottom:297.840000px;}
.y124{bottom:301.710000px;}
.y18f{bottom:301.800000px;}
.y16e{bottom:302.250000px;}
.y22{bottom:305.760000px;}
.ya3{bottom:307.110000px;}
.y7a{bottom:307.200000px;}
.y142{bottom:307.560000px;}
.y153{bottom:308.370000px;}
.y54{bottom:311.250000px;}
.ye9{bottom:311.790000px;}
.y104{bottom:315.390000px;}
.y123{bottom:319.350000px;}
.y16d{bottom:319.800000px;}
.yd1{bottom:320.610000px;}
.ya2{bottom:324.660000px;}
.y79{bottom:324.840000px;}
.y18e{bottom:328.440000px;}
.y53{bottom:328.800000px;}
.y103{bottom:332.940000px;}
.y152{bottom:335.010000px;}
.y122{bottom:336.900000px;}
.yd0{bottom:338.250000px;}
.ya1{bottom:342.210000px;}
.y78{bottom:342.390000px;}
.y21{bottom:342.750000px;}
.ye8{bottom:344.010000px;}
.y18d{bottom:345.990000px;}
.y52{bottom:346.440000px;}
.y151{bottom:352.560000px;}
.y121{bottom:354.540000px;}
.ycf{bottom:355.800000px;}
.y102{bottom:359.580000px;}
.ya0{bottom:359.850000px;}
.y77{bottom:359.940000px;}
.y20{bottom:360.300000px;}
.y18c{bottom:363.540000px;}
.y51{bottom:363.990000px;}
.y150{bottom:370.110000px;}
.y120{bottom:372.090000px;}
.yce{bottom:373.440000px;}
.y9f{bottom:377.400000px;}
.y76{bottom:377.580000px;}
.y1f{bottom:377.940000px;}
.y50{bottom:381.540000px;}
.y18b{bottom:390.180000px;}
.ycd{bottom:390.990000px;}
.y9e{bottom:395.040000px;}
.y75{bottom:395.130000px;}
.y1e{bottom:395.490000px;}
.y14f{bottom:396.750000px;}
.y11f{bottom:398.640000px;}
.y4f{bottom:399.180000px;}
.y18a{bottom:407.730000px;}
.y16c{bottom:408.180000px;}
.ycc{bottom:408.540000px;}
.y9d{bottom:412.590000px;}
.y74{bottom:412.770000px;}
.y1d{bottom:413.130000px;}
.y14e{bottom:423.300000px;}
.y189{bottom:425.370000px;}
.y4e{bottom:425.730000px;}
.ycb{bottom:426.180000px;}
.y9c{bottom:430.140000px;}
.y73{bottom:430.320000px;}
.y1c{bottom:430.680000px;}
.y11e{bottom:431.670000px;}
.y14d{bottom:440.940000px;}
.y188{bottom:442.920000px;}
.y16b{bottom:443.370000px;}
.yca{bottom:443.730000px;}
.y72{bottom:447.870000px;}
.y1b{bottom:448.230000px;}
.y9b{bottom:456.780000px;}
.y4d{bottom:461.370000px;}
.y71{bottom:465.510000px;}
.y1a{bottom:465.870000px;}
.y14c{bottom:467.490000px;}
.y187{bottom:469.470000px;}
.y16a{bottom:469.950000px;}
.y13c{bottom:474.540000px;}
.y11d{bottom:476.610000px;}
.y4c{bottom:478.950000px;}
.y19{bottom:483.450000px;}
.y14b{bottom:485.070000px;}
.y186{bottom:487.140000px;}
.y169{bottom:487.500000px;}
.yc9{bottom:487.950000px;}
.y70{bottom:492.090000px;}
.y9a{bottom:492.360000px;}
.y4b{bottom:496.500000px;}
.y18{bottom:501.090000px;}
.y14a{bottom:502.710000px;}
.y168{bottom:505.140000px;}
.y99{bottom:510.000000px;}
.y13b{bottom:510.090000px;}
.y185{bottom:513.690000px;}
.y4a{bottom:514.140000px;}
.y17{bottom:518.640000px;}
.y11c{bottom:521.520000px;}
.yc8{bottom:523.500000px;}
.y98{bottom:527.550000px;}
.y13a{bottom:527.730000px;}
.y6f{bottom:528.000000px;}
.y149{bottom:529.260000px;}
.y184{bottom:531.330000px;}
.y49{bottom:531.690000px;}
.y16{bottom:536.190000px;}
.yc7{bottom:541.140000px;}
.y97{bottom:545.100000px;}
.y139{bottom:545.280000px;}
.y148{bottom:546.900000px;}
.y183{bottom:548.880000px;}
.y48{bottom:549.330000px;}
.y15{bottom:553.830000px;}
.y141{bottom:558.330000px;}
.yc6{bottom:558.690000px;}
.y96{bottom:562.740000px;}
.y138{bottom:562.830000px;}
.y11b{bottom:566.430000px;}
.y47{bottom:566.880000px;}
.y14{bottom:571.380000px;}
.y147{bottom:573.720000px;}
.y61{bottom:575.880000px;}
.y6e{bottom:576.330000px;}
.y95{bottom:580.290000px;}
.y137{bottom:580.470000px;}
.y101{bottom:584.430000px;}
.y13{bottom:589.020000px;}
.y182{bottom:593.070000px;}
.y46{bottom:593.430000px;}
.y6d{bottom:593.880000px;}
.y94{bottom:597.840000px;}
.y136{bottom:598.020000px;}
.y100{bottom:602.070000px;}
.y12{bottom:606.570000px;}
.y181{bottom:610.620000px;}
.y167{bottom:611.070000px;}
.y11a{bottom:611.340000px;}
.y60{bottom:611.430000px;}
.y93{bottom:615.480000px;}
.y135{bottom:615.660000px;}
.yff{bottom:619.620000px;}
.y146{bottom:622.050000px;}
.y11{bottom:624.120000px;}
.y166{bottom:628.620000px;}
.y45{bottom:629.070000px;}
.y92{bottom:633.030000px;}
.y134{bottom:633.210000px;}
.yfe{bottom:637.260000px;}
.y10{bottom:641.760000px;}
.y44{bottom:646.620000px;}
.y145{bottom:648.960000px;}
.y91{bottom:650.670000px;}
.y133{bottom:650.760000px;}
.y180{bottom:654.810000px;}
.y165{bottom:655.260000px;}
.y119{bottom:656.250000px;}
.yf{bottom:659.310000px;}
.yfd{bottom:663.810000px;}
.y43{bottom:664.260000px;}
.y90{bottom:668.220000px;}
.y132{bottom:668.400000px;}
.y17f{bottom:672.360000px;}
.y164{bottom:672.810000px;}
.ye{bottom:676.950000px;}
.y42{bottom:681.810000px;}
.y131{bottom:685.950000px;}
.y144{bottom:686.310000px;}
.y163{bottom:690.360000px;}
.yd{bottom:694.500000px;}
.y8f{bottom:694.770000px;}
.y17e{bottom:699.000000px;}
.y41{bottom:699.360000px;}
.y117{bottom:701.160000px;}
.y130{bottom:703.590000px;}
.y19b{bottom:708.000000px;}
.yc{bottom:712.050000px;}
.y40{bottom:717.000000px;}
.y17d{bottom:725.550000px;}
.y6c{bottom:726.000000px;}
.y8d{bottom:727.800000px;}
.y12f{bottom:730.140000px;}
.y3f{bottom:734.550000px;}
.yb{bottom:738.960000px;}
.y19a{bottom:743.190000px;}
.yc5{bottom:743.550000px;}
.y116{bottom:746.160000px;}
.y3e{bottom:752.190000px;}
.y162{bottom:761.190000px;}
.y6b{bottom:761.550000px;}
.ybb{bottom:765.330000px;}
.y12e{bottom:766.050000px;}
.y3d{bottom:769.740000px;}
.y161{bottom:778.740000px;}
.y6a{bottom:779.190000px;}
.ya{bottom:787.290000px;}
.y115{bottom:791.070000px;}
.y3c{bottom:796.290000px;}
.y69{bottom:796.740000px;}
.yba{bottom:800.880000px;}
.yfc{bottom:804.930000px;}
.y8c{bottom:807.900000px;}
.y17c{bottom:813.930000px;}
.y68{bottom:814.290000px;}
.yb9{bottom:818.520000px;}
.yfb{bottom:822.480000px;}
.y160{bottom:822.930000px;}
.y9{bottom:823.110000px;}
.y17b{bottom:831.480000px;}
.y3b{bottom:831.930000px;}
.y114{bottom:835.980000px;}
.yb8{bottom:836.070000px;}
.yfa{bottom:840.030000px;}
.y15f{bottom:840.480000px;}
.y17a{bottom:849.030000px;}
.y3a{bottom:849.480000px;}
.yb7{bottom:853.620000px;}
.yf9{bottom:857.670000px;}
.y15e{bottom:858.030000px;}
.y8{bottom:859.110000px;}
.y199{bottom:866.670000px;}
.y39{bottom:867.030000px;}
.yb6{bottom:871.260000px;}
.y179{bottom:875.670000px;}
.yf8{bottom:884.220000px;}
.y38{bottom:884.670000px;}
.y89{bottom:888.000000px;}
.yb5{bottom:888.810000px;}
.ye7{bottom:889.260000px;}
.y178{bottom:893.220000px;}
.y7{bottom:898.890000px;}
.y37{bottom:902.220000px;}
.yb4{bottom:906.450000px;}
.ye6{bottom:906.810000px;}
.y177{bottom:910.860000px;}
.y6{bottom:916.890000px;}
.y36{bottom:919.860000px;}
.yb3{bottom:924.000000px;}
.ye5{bottom:924.450000px;}
.y176{bottom:928.410000px;}
.y35{bottom:937.410000px;}
.y113{bottom:937.860000px;}
.yb2{bottom:941.550000px;}
.ye4{bottom:942.000000px;}
.y15d{bottom:946.410000px;}
.y5{bottom:949.200000px;}
.y34{bottom:954.960000px;}
.y112{bottom:955.410000px;}
.yb1{bottom:959.190000px;}
.ye3{bottom:959.550000px;}
.y67{bottom:963.960000px;}
.y85{bottom:968.100000px;}
.y5f{bottom:972.600000px;}
.y111{bottom:972.960000px;}
.yb0{bottom:976.740000px;}
.ye2{bottom:977.190000px;}
.y33{bottom:981.600000px;}
.y4{bottom:987.450000px;}
.y5e{bottom:990.150000px;}
.y110{bottom:990.600000px;}
.yaf{bottom:994.290000px;}
.ye1{bottom:994.740000px;}
.yc4{bottom:999.150000px;}
.y66{bottom:999.600000px;}
.yf7{bottom:1007.790000px;}
.y10f{bottom:1008.150000px;}
.y3{bottom:1012.140000px;}
.ye0{bottom:1012.320000px;}
.y5d{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.yae{bottom:1020.960000px;}
.yf6{bottom:1025.370000px;}
.y10e{bottom:1025.820000px;}
.ydf{bottom:1029.960000px;}
.y198{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yf5{bottom:1042.920000px;}
.y10d{bottom:1043.370000px;}
.yde{bottom:1047.510000px;}
.y84{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.yad{bottom:1056.870000px;}
.yf4{bottom:1060.560000px;}
.y10c{bottom:1060.920000px;}
.ydd{bottom:1065.150000px;}
.y2f{bottom:1069.920000px;}
.y10b{bottom:1078.560000px;}
.yf3{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.ydc{bottom:1091.700000px;}
.y10a{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y109{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.ydb{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.he{height:44.130000px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.770000px;}
.hf{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:79.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:96.840000px;}
.w3{width:105.240000px;}
.w6{width:120.270000px;}
.w5{width:120.690000px;}
.w8{width:140.490000px;}
.w9{width:156.900000px;}
.w4{width:168.480000px;}
.wa{width:253.530000px;}
.wb{width:343.830000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.x5{left:128.879987px;}
.xe{left:146.249987px;}
.x7{left:174.720000px;}
.xc{left:184.349987px;}
.xf{left:226.380000px;}
.x2{left:231.149987px;}
.x8{left:344.010000px;}
.x9{left:465.420000px;}
.x10{left:480.630000px;}
.xa{left:586.410000px;}
.xd{left:613.139987px;}
.xb{left:683.970000px;}
.x4{left:715.559987px;}
.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;}
.ls21{letter-spacing:-0.298667pt;}
.lse{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.158933pt;}
.ls1a{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.082667pt;}
.ls1b{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.008000pt;}
.ls12{letter-spacing:-0.007360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls3{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls14{letter-spacing:0.102933pt;}
.lsf{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.176000pt;}
.ls10{letter-spacing:0.177067pt;}
.ls15{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws16{word-spacing:-11.932800pt;}
.ws17{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws11{word-spacing:-11.859733pt;}
.ws12{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.822933pt;}
.ws6{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.749440pt;}
.ws18{word-spacing:-11.748800pt;}
.ws15{word-spacing:-11.674667pt;}
.ws13{word-spacing:-11.674133pt;}
.wse{word-spacing:-11.645333pt;}
.ws14{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._21{margin-left:-3.588373pt;}
._7{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.111467pt;}
._1{width:2.386144pt;}
._2{width:3.279969pt;}
._4{width:4.649066pt;}
._5{width:5.562698pt;}
._b{width:6.630689pt;}
._c{width:7.748800pt;}
._8{width:9.084800pt;}
._6{width:10.630400pt;}
._a{width:12.772267pt;}
._9{width:14.054507pt;}
._12{width:15.230613pt;}
._11{width:16.887040pt;}
._f{width:18.329920pt;}
._10{width:19.431040pt;}
._e{width:20.521067pt;}
._d{width:21.944320pt;}
._28{width:23.567040pt;}
._1e{width:24.956480pt;}
._20{width:25.950720pt;}
._1f{width:27.361280pt;}
._33{width:28.929707pt;}
._29{width:30.460800pt;}
._30{width:31.796800pt;}
._14{width:35.003200pt;}
._2a{width:38.369920pt;}
._2b{width:39.385280pt;}
._18{width:42.752000pt;}
._1b{width:44.248320pt;}
._23{width:46.760000pt;}
._24{width:48.202880pt;}
._25{width:50.661120pt;}
._2c{width:52.584960pt;}
._27{width:62.845440pt;}
._2d{width:66.693120pt;}
._1d{width:68.381440pt;}
._1a{width:72.571520pt;}
._17{width:84.061120pt;}
._16{width:89.779200pt;}
._15{width:90.687680pt;}
._2f{width:92.960853pt;}
._2e{width:93.865387pt;}
._1c{width:102.765120pt;}
._22{width:104.047680pt;}
._26{width:114.308160pt;}
._19{width:131.569280pt;}
._32{width:134.134400pt;}
._13{width:249.457920pt;}
._31{width:258.629653pt;}
.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;}
.y88{bottom:6.960000pt;}
.y118{bottom:7.040000pt;}
.y87{bottom:22.560000pt;}
.y8e{bottom:22.640000pt;}
.y8b{bottom:38.240000pt;}
.y86{bottom:38.266667pt;}
.y8a{bottom:53.840000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5c{bottom:100.026667pt;}
.y12d{bottom:103.546667pt;}
.y65{bottom:104.986667pt;}
.yac{bottom:108.266667pt;}
.y83{bottom:108.426667pt;}
.yc3{bottom:108.826667pt;}
.y15c{bottom:109.466667pt;}
.y197{bottom:111.626667pt;}
.y5b{bottom:115.706667pt;}
.y12c{bottom:119.146667pt;}
.yda{bottom:120.346667pt;}
.yf2{bottom:120.426667pt;}
.y64{bottom:120.586667pt;}
.yab{bottom:123.866667pt;}
.y82{bottom:124.026667pt;}
.yc2{bottom:124.426667pt;}
.y15b{bottom:125.066667pt;}
.y28{bottom:126.106667pt;}
.y196{bottom:127.226667pt;}
.y5a{bottom:131.306667pt;}
.y12b{bottom:134.826667pt;}
.yd9{bottom:135.946667pt;}
.yf1{bottom:136.106667pt;}
.yaa{bottom:139.546667pt;}
.y81{bottom:139.706667pt;}
.yc1{bottom:140.106667pt;}
.y15a{bottom:140.666667pt;}
.y27{bottom:141.786667pt;}
.y195{bottom:142.826667pt;}
.y175{bottom:143.226667pt;}
.y59{bottom:146.906667pt;}
.yd8{bottom:151.626667pt;}
.yf0{bottom:151.706667pt;}
.y63{bottom:152.266667pt;}
.ya9{bottom:155.146667pt;}
.y80{bottom:155.306667pt;}
.yc0{bottom:155.706667pt;}
.y26{bottom:157.386667pt;}
.y12a{bottom:158.426667pt;}
.y174{bottom:158.826667pt;}
.y58{bottom:162.586667pt;}
.y159{bottom:164.346667pt;}
.y194{bottom:166.506667pt;}
.yd7{bottom:167.226667pt;}
.yef{bottom:167.386667pt;}
.ya8{bottom:170.826667pt;}
.y7f{bottom:170.906667pt;}
.ybf{bottom:171.386667pt;}
.y173{bottom:174.506667pt;}
.y140{bottom:178.906667pt;}
.y158{bottom:179.946667pt;}
.y62{bottom:180.906667pt;}
.y25{bottom:180.986667pt;}
.y193{bottom:182.106667pt;}
.yd6{bottom:182.826667pt;}
.yee{bottom:182.986667pt;}
.y57{bottom:186.186667pt;}
.ya7{bottom:186.426667pt;}
.y7e{bottom:186.586667pt;}
.ybe{bottom:186.986667pt;}
.y129{bottom:190.026667pt;}
.y192{bottom:197.786667pt;}
.y172{bottom:198.106667pt;}
.yd5{bottom:198.506667pt;}
.yed{bottom:198.586667pt;}
.ya6{bottom:202.026667pt;}
.y7d{bottom:202.186667pt;}
.y157{bottom:203.626667pt;}
.y128{bottom:205.706667pt;}
.y13f{bottom:210.586667pt;}
.y24{bottom:212.906667pt;}
.y171{bottom:213.786667pt;}
.yd4{bottom:214.106667pt;}
.yec{bottom:214.266667pt;}
.y108{bottom:217.866667pt;}
.y56{bottom:218.106667pt;}
.ybd{bottom:218.586667pt;}
.y156{bottom:219.226667pt;}
.y127{bottom:221.306667pt;}
.y191{bottom:221.386667pt;}
.ya5{bottom:225.706667pt;}
.y7c{bottom:225.866667pt;}
.y13e{bottom:226.186667pt;}
.y170{bottom:229.386667pt;}
.yd3{bottom:229.786667pt;}
.yeb{bottom:229.866667pt;}
.y107{bottom:233.466667pt;}
.y126{bottom:236.986667pt;}
.y143{bottom:241.466667pt;}
.y13d{bottom:241.866667pt;}
.y155{bottom:242.826667pt;}
.yea{bottom:245.546667pt;}
.ybc{bottom:247.226667pt;}
.y106{bottom:249.066667pt;}
.y125{bottom:252.586667pt;}
.y190{bottom:252.666667pt;}
.y16f{bottom:252.986667pt;}
.yd2{bottom:253.386667pt;}
.y23{bottom:255.866667pt;}
.ya4{bottom:257.306667pt;}
.y7b{bottom:257.466667pt;}
.y154{bottom:258.506667pt;}
.y55{bottom:260.986667pt;}
.y105{bottom:264.746667pt;}
.y124{bottom:268.186667pt;}
.y18f{bottom:268.266667pt;}
.y16e{bottom:268.666667pt;}
.y22{bottom:271.786667pt;}
.ya3{bottom:272.986667pt;}
.y7a{bottom:273.066667pt;}
.y142{bottom:273.386667pt;}
.y153{bottom:274.106667pt;}
.y54{bottom:276.666667pt;}
.ye9{bottom:277.146667pt;}
.y104{bottom:280.346667pt;}
.y123{bottom:283.866667pt;}
.y16d{bottom:284.266667pt;}
.yd1{bottom:284.986667pt;}
.ya2{bottom:288.586667pt;}
.y79{bottom:288.746667pt;}
.y18e{bottom:291.946667pt;}
.y53{bottom:292.266667pt;}
.y103{bottom:295.946667pt;}
.y152{bottom:297.786667pt;}
.y122{bottom:299.466667pt;}
.yd0{bottom:300.666667pt;}
.ya1{bottom:304.186667pt;}
.y78{bottom:304.346667pt;}
.y21{bottom:304.666667pt;}
.ye8{bottom:305.786667pt;}
.y18d{bottom:307.546667pt;}
.y52{bottom:307.946667pt;}
.y151{bottom:313.386667pt;}
.y121{bottom:315.146667pt;}
.ycf{bottom:316.266667pt;}
.y102{bottom:319.626667pt;}
.ya0{bottom:319.866667pt;}
.y77{bottom:319.946667pt;}
.y20{bottom:320.266667pt;}
.y18c{bottom:323.146667pt;}
.y51{bottom:323.546667pt;}
.y150{bottom:328.986667pt;}
.y120{bottom:330.746667pt;}
.yce{bottom:331.946667pt;}
.y9f{bottom:335.466667pt;}
.y76{bottom:335.626667pt;}
.y1f{bottom:335.946667pt;}
.y50{bottom:339.146667pt;}
.y18b{bottom:346.826667pt;}
.ycd{bottom:347.546667pt;}
.y9e{bottom:351.146667pt;}
.y75{bottom:351.226667pt;}
.y1e{bottom:351.546667pt;}
.y14f{bottom:352.666667pt;}
.y11f{bottom:354.346667pt;}
.y4f{bottom:354.826667pt;}
.y18a{bottom:362.426667pt;}
.y16c{bottom:362.826667pt;}
.ycc{bottom:363.146667pt;}
.y9d{bottom:366.746667pt;}
.y74{bottom:366.906667pt;}
.y1d{bottom:367.226667pt;}
.y14e{bottom:376.266667pt;}
.y189{bottom:378.106667pt;}
.y4e{bottom:378.426667pt;}
.ycb{bottom:378.826667pt;}
.y9c{bottom:382.346667pt;}
.y73{bottom:382.506667pt;}
.y1c{bottom:382.826667pt;}
.y11e{bottom:383.706667pt;}
.y14d{bottom:391.946667pt;}
.y188{bottom:393.706667pt;}
.y16b{bottom:394.106667pt;}
.yca{bottom:394.426667pt;}
.y72{bottom:398.106667pt;}
.y1b{bottom:398.426667pt;}
.y9b{bottom:406.026667pt;}
.y4d{bottom:410.106667pt;}
.y71{bottom:413.786667pt;}
.y1a{bottom:414.106667pt;}
.y14c{bottom:415.546667pt;}
.y187{bottom:417.306667pt;}
.y16a{bottom:417.733333pt;}
.y13c{bottom:421.813333pt;}
.y11d{bottom:423.653333pt;}
.y4c{bottom:425.733333pt;}
.y19{bottom:429.733333pt;}
.y14b{bottom:431.173333pt;}
.y186{bottom:433.013333pt;}
.y169{bottom:433.333333pt;}
.yc9{bottom:433.733333pt;}
.y70{bottom:437.413333pt;}
.y9a{bottom:437.653333pt;}
.y4b{bottom:441.333333pt;}
.y18{bottom:445.413333pt;}
.y14a{bottom:446.853333pt;}
.y168{bottom:449.013333pt;}
.y99{bottom:453.333333pt;}
.y13b{bottom:453.413333pt;}
.y185{bottom:456.613333pt;}
.y4a{bottom:457.013333pt;}
.y17{bottom:461.013333pt;}
.y11c{bottom:463.573333pt;}
.yc8{bottom:465.333333pt;}
.y98{bottom:468.933333pt;}
.y13a{bottom:469.093333pt;}
.y6f{bottom:469.333333pt;}
.y149{bottom:470.453333pt;}
.y184{bottom:472.293333pt;}
.y49{bottom:472.613333pt;}
.y16{bottom:476.613333pt;}
.yc7{bottom:481.013333pt;}
.y97{bottom:484.533333pt;}
.y139{bottom:484.693333pt;}
.y148{bottom:486.133333pt;}
.y183{bottom:487.893333pt;}
.y48{bottom:488.293333pt;}
.y15{bottom:492.293333pt;}
.y141{bottom:496.293333pt;}
.yc6{bottom:496.613333pt;}
.y96{bottom:500.213333pt;}
.y138{bottom:500.293333pt;}
.y11b{bottom:503.493333pt;}
.y47{bottom:503.893333pt;}
.y14{bottom:507.893333pt;}
.y147{bottom:509.973333pt;}
.y61{bottom:511.893333pt;}
.y6e{bottom:512.293333pt;}
.y95{bottom:515.813333pt;}
.y137{bottom:515.973333pt;}
.y101{bottom:519.493333pt;}
.y13{bottom:523.573333pt;}
.y182{bottom:527.173333pt;}
.y46{bottom:527.493333pt;}
.y6d{bottom:527.893333pt;}
.y94{bottom:531.413333pt;}
.y136{bottom:531.573333pt;}
.y100{bottom:535.173333pt;}
.y12{bottom:539.173333pt;}
.y181{bottom:542.773333pt;}
.y167{bottom:543.173333pt;}
.y11a{bottom:543.413333pt;}
.y60{bottom:543.493333pt;}
.y93{bottom:547.093333pt;}
.y135{bottom:547.253333pt;}
.yff{bottom:550.773333pt;}
.y146{bottom:552.933333pt;}
.y11{bottom:554.773333pt;}
.y166{bottom:558.773333pt;}
.y45{bottom:559.173333pt;}
.y92{bottom:562.693333pt;}
.y134{bottom:562.853333pt;}
.yfe{bottom:566.453333pt;}
.y10{bottom:570.453333pt;}
.y44{bottom:574.773333pt;}
.y145{bottom:576.853333pt;}
.y91{bottom:578.373333pt;}
.y133{bottom:578.453333pt;}
.y180{bottom:582.053333pt;}
.y165{bottom:582.453333pt;}
.y119{bottom:583.333333pt;}
.yf{bottom:586.053333pt;}
.yfd{bottom:590.053333pt;}
.y43{bottom:590.453333pt;}
.y90{bottom:593.973333pt;}
.y132{bottom:594.133333pt;}
.y17f{bottom:597.653333pt;}
.y164{bottom:598.053333pt;}
.ye{bottom:601.733333pt;}
.y42{bottom:606.053333pt;}
.y131{bottom:609.733333pt;}
.y144{bottom:610.053333pt;}
.y163{bottom:613.653333pt;}
.yd{bottom:617.333333pt;}
.y8f{bottom:617.573333pt;}
.y17e{bottom:621.333333pt;}
.y41{bottom:621.653333pt;}
.y117{bottom:623.253333pt;}
.y130{bottom:625.413333pt;}
.y19b{bottom:629.333333pt;}
.yc{bottom:632.933333pt;}
.y40{bottom:637.333333pt;}
.y17d{bottom:644.933333pt;}
.y6c{bottom:645.333333pt;}
.y8d{bottom:646.933333pt;}
.y12f{bottom:649.013333pt;}
.y3f{bottom:652.933333pt;}
.yb{bottom:656.853333pt;}
.y19a{bottom:660.613333pt;}
.yc5{bottom:660.933333pt;}
.y116{bottom:663.253333pt;}
.y3e{bottom:668.613333pt;}
.y162{bottom:676.613333pt;}
.y6b{bottom:676.933333pt;}
.ybb{bottom:680.293333pt;}
.y12e{bottom:680.933333pt;}
.y3d{bottom:684.213333pt;}
.y161{bottom:692.213333pt;}
.y6a{bottom:692.613333pt;}
.ya{bottom:699.813333pt;}
.y115{bottom:703.173333pt;}
.y3c{bottom:707.813333pt;}
.y69{bottom:708.213333pt;}
.yba{bottom:711.893333pt;}
.yfc{bottom:715.493333pt;}
.y8c{bottom:718.133333pt;}
.y17c{bottom:723.493333pt;}
.y68{bottom:723.813333pt;}
.yb9{bottom:727.573333pt;}
.yfb{bottom:731.093333pt;}
.y160{bottom:731.493333pt;}
.y9{bottom:731.653333pt;}
.y17b{bottom:739.093333pt;}
.y3b{bottom:739.493333pt;}
.y114{bottom:743.093333pt;}
.yb8{bottom:743.173333pt;}
.yfa{bottom:746.693333pt;}
.y15f{bottom:747.093333pt;}
.y17a{bottom:754.693333pt;}
.y3a{bottom:755.093333pt;}
.yb7{bottom:758.773333pt;}
.yf9{bottom:762.373333pt;}
.y15e{bottom:762.693333pt;}
.y8{bottom:763.653333pt;}
.y199{bottom:770.373333pt;}
.y39{bottom:770.693333pt;}
.yb6{bottom:774.453333pt;}
.y179{bottom:778.373333pt;}
.yf8{bottom:785.973333pt;}
.y38{bottom:786.373333pt;}
.y89{bottom:789.333333pt;}
.yb5{bottom:790.053333pt;}
.ye7{bottom:790.453333pt;}
.y178{bottom:793.973333pt;}
.y7{bottom:799.013333pt;}
.y37{bottom:801.973333pt;}
.yb4{bottom:805.733333pt;}
.ye6{bottom:806.053333pt;}
.y177{bottom:809.653333pt;}
.y6{bottom:815.013333pt;}
.y36{bottom:817.653333pt;}
.yb3{bottom:821.333333pt;}
.ye5{bottom:821.733333pt;}
.y176{bottom:825.253333pt;}
.y35{bottom:833.253333pt;}
.y113{bottom:833.653333pt;}
.yb2{bottom:836.933333pt;}
.ye4{bottom:837.333333pt;}
.y15d{bottom:841.253333pt;}
.y5{bottom:843.733333pt;}
.y34{bottom:848.853333pt;}
.y112{bottom:849.253333pt;}
.yb1{bottom:852.613333pt;}
.ye3{bottom:852.933333pt;}
.y67{bottom:856.853333pt;}
.y85{bottom:860.533333pt;}
.y5f{bottom:864.533333pt;}
.y111{bottom:864.853333pt;}
.yb0{bottom:868.213333pt;}
.ye2{bottom:868.613333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:877.733333pt;}
.y5e{bottom:880.133333pt;}
.y110{bottom:880.533333pt;}
.yaf{bottom:883.813333pt;}
.ye1{bottom:884.213333pt;}
.yc4{bottom:888.133333pt;}
.y66{bottom:888.533333pt;}
.yf7{bottom:895.813333pt;}
.y10f{bottom:896.133333pt;}
.y3{bottom:899.680000pt;}
.ye0{bottom:899.840000pt;}
.y5d{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.yae{bottom:907.520000pt;}
.yf6{bottom:911.440000pt;}
.y10e{bottom:911.840000pt;}
.ydf{bottom:915.520000pt;}
.y198{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yf5{bottom:927.040000pt;}
.y10d{bottom:927.440000pt;}
.yde{bottom:931.120000pt;}
.y84{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.yad{bottom:939.440000pt;}
.yf4{bottom:942.720000pt;}
.y10c{bottom:943.040000pt;}
.ydd{bottom:946.800000pt;}
.y2f{bottom:951.040000pt;}
.y10b{bottom:958.720000pt;}
.yf3{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.ydc{bottom:970.400000pt;}
.y10a{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y109{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.ydb{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.he{height:39.226667pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.906667pt;}
.hf{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:70.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:86.080000pt;}
.w3{width:93.546667pt;}
.w6{width:106.906667pt;}
.w5{width:107.280000pt;}
.w8{width:124.880000pt;}
.w9{width:139.466667pt;}
.w4{width:149.760000pt;}
.wa{width:225.360000pt;}
.wb{width:305.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.x5{left:114.559988pt;}
.xe{left:129.999988pt;}
.x7{left:155.306667pt;}
.xc{left:163.866655pt;}
.xf{left:201.226667pt;}
.x2{left:205.466655pt;}
.x8{left:305.786667pt;}
.x9{left:413.706667pt;}
.x10{left:427.226667pt;}
.xa{left:521.253333pt;}
.xd{left:545.013322pt;}
.xb{left:607.973333pt;}
.x4{left:636.053322pt;}
.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; }
  