
    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_0b4b994aba804dcc74d2fc65.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1c6a0115c0a2aacb29473c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919434;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_0e9a2a563b4c16069fe8da58.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_6c6d67bf5865032d5fb008ee.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_309ca0513c5c0498ab088310.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_0be656f618fb26e8a20e1c78.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4817abbb846049d275205434.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_43182b71d4c2359e99abf195.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb{letter-spacing:-0.444600px;}
.ls13{letter-spacing:-0.391800px;}
.ls17{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.121200px;}
.ls3{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.067200px;}
.ls14{letter-spacing:-0.038880px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005280px;}
.ls8{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls7{letter-spacing:0.074160px;}
.ls12{letter-spacing:0.098400px;}
.ls9{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.173520px;}
.lse{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.181200px;}
.ls6{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.ls15{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;}
}
.ws4{word-spacing:-14.493600px;}
.wsf{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.407600px;}
.wsd{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.187520px;}
.ws12{word-spacing:-13.159200px;}
.ws5{word-spacing:-13.064400px;}
.wse{word-spacing:-13.039800px;}
.ws15{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.266400px;}
.ws9{word-spacing:-0.030000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.054000px;}
.ws8{word-spacing:0.060000px;}
.wsb{word-spacing:0.126000px;}
.ws7{word-spacing:0.132000px;}
.wsa{word-spacing:0.264000px;}
.ws3{word-spacing:4.304880px;}
._7{margin-left:-3.547200px;}
._a{margin-left:-2.320440px;}
._0{margin-left:-1.020000px;}
._1{width:1.176720px;}
._5{width:2.217123px;}
._6{width:3.253677px;}
._4{width:4.869600px;}
._3{width:6.493200px;}
._32{width:7.511400px;}
._8{width:8.536800px;}
._33{width:9.599645px;}
._9{width:10.621197px;}
._2{width:11.721600px;}
._1d{width:14.969880px;}
._34{width:16.839600px;}
._1c{width:17.941800px;}
._11{width:19.418760px;}
._35{width:20.830199px;}
._b{width:22.184400px;}
._c{width:23.870760px;}
._30{width:26.939040px;}
._21{width:28.076040px;}
._26{width:29.518920px;}
._25{width:30.661200px;}
._1f{width:32.164200px;}
._28{width:33.421800px;}
._39{width:35.350560px;}
._20{width:37.334520px;}
._3c{width:40.099680px;}
._18{width:41.783400px;}
._22{width:44.849520px;}
._3a{width:46.532880px;}
._2e{width:48.494040px;}
._2d{width:49.621800px;}
._f{width:55.250280px;}
._16{width:59.337240px;}
._15{width:60.421800px;}
._1a{width:63.126000px;}
._41{width:66.183960px;}
._14{width:67.454640px;}
._13{width:70.522560px;}
._37{width:73.947600px;}
._19{width:75.157560px;}
._12{width:80.560800px;}
._42{width:81.703080px;}
._2f{width:82.965600px;}
._38{width:84.466560px;}
._1b{width:89.097840px;}
._44{width:91.165680px;}
._45{width:92.385960px;}
._2c{width:98.175960px;}
._3d{width:104.248080px;}
._1e{width:107.494560px;}
._2a{width:110.979480px;}
._24{width:113.266080px;}
._23{width:123.246000px;}
._d{width:126.432360px;}
._36{width:131.181840px;}
._10{width:134.488440px;}
._31{width:137.915280px;}
._17{width:139.621800px;}
._40{width:142.905240px;}
._3f{width:166.532400px;}
._27{width:184.267800px;}
._43{width:192.023280px;}
._3e{width:225.870840px;}
._2b{width:244.989000px;}
._3b{width:253.826640px;}
._e{width:258.155280px;}
._29{width:336.010680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:7.830000px;}
.y39{bottom:7.920000px;}
.ydd{bottom:20.250000px;}
.y2f{bottom:25.380000px;}
.y38{bottom:25.470000px;}
.ydc{bottom:37.800000px;}
.yd3{bottom:37.890000px;}
.y37{bottom:43.020000px;}
.y47{bottom:43.050000px;}
.y49{bottom:43.110000px;}
.yc0{bottom:52.110000px;}
.yd2{bottom:55.440000px;}
.y3d{bottom:60.570000px;}
.y36{bottom:60.660000px;}
.y46{bottom:60.690000px;}
.yce{bottom:64.440000px;}
.yc4{bottom:69.570000px;}
.ybf{bottom:69.660000px;}
.yc8{bottom:69.690000px;}
.ydb{bottom:72.990000px;}
.yd1{bottom:73.080000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y3c{bottom:78.120000px;}
.y35{bottom:78.210000px;}
.y45{bottom:78.240000px;}
.yd9{bottom:81.990000px;}
.ycd{bottom:82.080000px;}
.yc1{bottom:82.710000px;}
.yc9{bottom:82.740000px;}
.ybe{bottom:87.210000px;}
.yc7{bottom:87.240000px;}
.yd0{bottom:95.130000px;}
.y3b{bottom:95.760000px;}
.y34{bottom:95.850000px;}
.y44{bottom:95.880000px;}
.ycc{bottom:99.630000px;}
.y1{bottom:101.640000px;}
.yc3{bottom:104.760000px;}
.yc6{bottom:104.790000px;}
.ybd{bottom:104.850000px;}
.y40{bottom:113.310000px;}
.y33{bottom:113.400000px;}
.y43{bottom:113.430000px;}
.y7e{bottom:115.680000px;}
.yd8{bottom:117.180000px;}
.ycb{bottom:117.270000px;}
.yab{bottom:117.750000px;}
.y108{bottom:122.070000px;}
.y32{bottom:130.950000px;}
.y42{bottom:130.980000px;}
.y107{bottom:139.710000px;}
.yd7{bottom:140.160000px;}
.y14e{bottom:142.680000px;}
.y51{bottom:143.310000px;}
.yaa{bottom:145.110000px;}
.y3f{bottom:148.500000px;}
.y7d{bottom:151.320000px;}
.y132{bottom:154.380000px;}
.y106{bottom:157.260000px;}
.y26{bottom:159.600000px;}
.y14d{bottom:160.320000px;}
.y50{bottom:160.860000px;}
.ydf{bottom:167.430000px;}
.y131{bottom:171.930000px;}
.ya9{bottom:172.470000px;}
.y105{bottom:174.900000px;}
.y25{bottom:177.240000px;}
.y4f{bottom:178.500000px;}
.y7c{bottom:186.870000px;}
.y104{bottom:192.450000px;}
.y24{bottom:194.790000px;}
.y4e{bottom:196.050000px;}
.y130{bottom:198.570000px;}
.ya8{bottom:199.740000px;}
.y7b{bottom:204.510000px;}
.y103{bottom:210.000000px;}
.y23{bottom:212.340000px;}
.y4d{bottom:213.600000px;}
.y12f{bottom:216.120000px;}
.y7a{bottom:222.060000px;}
.yde{bottom:222.150000px;}
.ya7{bottom:227.100000px;}
.y102{bottom:227.640000px;}
.y22{bottom:229.980000px;}
.y14c{bottom:231.060000px;}
.y4c{bottom:231.240000px;}
.y79{bottom:239.610000px;}
.y12e{bottom:242.670000px;}
.y101{bottom:245.190000px;}
.y21{bottom:247.530000px;}
.y162{bottom:248.250000px;}
.y14b{bottom:248.610000px;}
.y4b{bottom:248.790000px;}
.yda{bottom:249.510000px;}
.y78{bottom:257.250000px;}
.y12d{bottom:260.310000px;}
.y20{bottom:265.170000px;}
.y161{bottom:265.800000px;}
.y14a{bottom:266.250000px;}
.y100{bottom:272.100000px;}
.y77{bottom:274.800000px;}
.y4a{bottom:275.700000px;}
.ya6{bottom:275.790000px;}
.yca{bottom:276.780000px;}
.y1f{bottom:282.720000px;}
.y12c{bottom:286.860000px;}
.y160{bottom:292.440000px;}
.y149{bottom:292.800000px;}
.y1e{bottom:300.270000px;}
.y76{bottom:301.440000px;}
.yd6{bottom:304.140000px;}
.y12b{bottom:304.500000px;}
.y15f{bottom:309.990000px;}
.y148{bottom:310.440000px;}
.ya5{bottom:311.430000px;}
.y1d{bottom:317.910000px;}
.yff{bottom:320.430000px;}
.y48{bottom:321.330000px;}
.y12a{bottom:322.050000px;}
.ya4{bottom:328.980000px;}
.yd5{bottom:331.500000px;}
.y15e{bottom:336.540000px;}
.y75{bottom:336.990000px;}
.yfe{bottom:337.980000px;}
.y1c{bottom:344.820000px;}
.ya3{bottom:346.530000px;}
.y129{bottom:348.600000px;}
.y15d{bottom:354.180000px;}
.y74{bottom:354.540000px;}
.yfd{bottom:355.530000px;}
.yd4{bottom:358.860000px;}
.ya2{bottom:364.170000px;}
.y128{bottom:366.240000px;}
.y73{bottom:372.180000px;}
.yfc{bottom:373.170000px;}
.y15c{bottom:380.730000px;}
.ycf{bottom:386.130000px;}
.y72{bottom:389.730000px;}
.ya1{bottom:390.720000px;}
.y127{bottom:392.790000px;}
.y1b{bottom:393.060000px;}
.y15b{bottom:398.370000px;}
.y147{bottom:398.730000px;}
.y71{bottom:407.370000px;}
.y126{bottom:410.340000px;}
.y1a{bottom:410.970000px;}
.yc5{bottom:413.490000px;}
.y146{bottom:416.370000px;}
.y70{bottom:424.920000px;}
.ya0{bottom:426.360000px;}
.y41{bottom:436.620000px;}
.y125{bottom:436.980000px;}
.y15a{bottom:442.470000px;}
.y145{bottom:442.920000px;}
.y9f{bottom:443.910000px;}
.y19{bottom:448.050000px;}
.y6f{bottom:451.470000px;}
.y124{bottom:454.530000px;}
.y144{bottom:460.470000px;}
.y9e{bottom:461.460000px;}
.y18{bottom:465.600000px;}
.y159{bottom:469.110000px;}
.y143{bottom:478.140000px;}
.y9d{bottom:479.130000px;}
.y123{bottom:481.200000px;}
.y17{bottom:483.180000px;}
.y158{bottom:486.690000px;}
.y6e{bottom:487.140000px;}
.y9c{bottom:496.680000px;}
.y122{bottom:498.750000px;}
.y16{bottom:500.820000px;}
.y6d{bottom:504.690000px;}
.y157{bottom:513.330000px;}
.y9b{bottom:514.230000px;}
.y121{bottom:516.300000px;}
.y15{bottom:518.370000px;}
.y6c{bottom:522.330000px;}
.y156{bottom:530.880000px;}
.y9a{bottom:531.870000px;}
.y14{bottom:535.920000px;}
.yc2{bottom:537.810000px;}
.y6b{bottom:539.880000px;}
.y120{bottom:542.940000px;}
.y142{bottom:548.880000px;}
.y99{bottom:549.420000px;}
.y13{bottom:553.560000px;}
.y6a{bottom:557.430000px;}
.y11f{bottom:560.490000px;}
.y141{bottom:566.430000px;}
.y98{bottom:567.060000px;}
.yfb{bottom:567.420000px;}
.y12{bottom:571.110000px;}
.y69{bottom:575.070000px;}
.y155{bottom:584.070000px;}
.y97{bottom:584.610000px;}
.yfa{bottom:585.060000px;}
.y3e{bottom:587.130000px;}
.y11{bottom:588.750000px;}
.y140{bottom:593.070000px;}
.y68{bottom:601.620000px;}
.y96{bottom:602.160000px;}
.yf9{bottom:602.610000px;}
.y11e{bottom:604.680000px;}
.y10{bottom:606.300000px;}
.y13f{bottom:610.620000px;}
.y95{bottom:619.800000px;}
.yf8{bottom:620.160000px;}
.yf{bottom:623.850000px;}
.y154{bottom:628.260000px;}
.y11d{bottom:631.230000px;}
.y67{bottom:637.260000px;}
.yf7{bottom:637.800000px;}
.ye{bottom:641.490000px;}
.y153{bottom:645.810000px;}
.y94{bottom:646.350000px;}
.y11c{bottom:648.870000px;}
.y66{bottom:654.810000px;}
.yf6{bottom:655.350000px;}
.yd{bottom:659.040000px;}
.ybc{bottom:662.010000px;}
.y11b{bottom:666.420000px;}
.y65{bottom:672.360000px;}
.yf5{bottom:672.990000px;}
.yc{bottom:676.680000px;}
.y93{bottom:681.990000px;}
.y64{bottom:690.000000px;}
.y11a{bottom:693.060000px;}
.yb{bottom:694.230000px;}
.y92{bottom:699.540000px;}
.yf4{bottom:699.900000px;}
.y63{bottom:707.550000px;}
.y119{bottom:710.610000px;}
.y13e{bottom:716.550000px;}
.y91{bottom:717.090000px;}
.ya{bottom:721.140000px;}
.y62{bottom:725.190000px;}
.y13d{bottom:734.190000px;}
.y90{bottom:734.730000px;}
.y118{bottom:737.160000px;}
.yf3{bottom:748.140000px;}
.y61{bottom:751.740000px;}
.y117{bottom:754.800000px;}
.y3a{bottom:755.160000px;}
.y13c{bottom:760.740000px;}
.y8f{bottom:761.640000px;}
.yf2{bottom:765.690000px;}
.y9{bottom:769.380000px;}
.y13b{bottom:778.290000px;}
.y116{bottom:781.710000px;}
.yf1{bottom:783.330000px;}
.ybb{bottom:786.300000px;}
.y60{bottom:787.290000px;}
.y152{bottom:795.930000px;}
.yf0{bottom:800.880000px;}
.y5f{bottom:804.930000px;}
.y8{bottom:805.200000px;}
.y8e{bottom:809.880000px;}
.yef{bottom:818.520000px;}
.y5e{bottom:822.480000px;}
.y8d{bottom:827.520000px;}
.y115{bottom:829.950000px;}
.yee{bottom:836.070000px;}
.y5d{bottom:840.030000px;}
.y7{bottom:841.200000px;}
.y8c{bottom:845.070000px;}
.y13a{bottom:849.030000px;}
.yba{bottom:852.630000px;}
.yed{bottom:853.620000px;}
.y114{bottom:856.860000px;}
.y5c{bottom:857.670000px;}
.y8b{bottom:862.620000px;}
.y139{bottom:866.670000px;}
.y31{bottom:870.360000px;}
.y5b{bottom:875.220000px;}
.y8a{bottom:880.260000px;}
.y6{bottom:880.980000px;}
.y151{bottom:884.220000px;}
.yb9{bottom:888.180000px;}
.yec{bottom:889.260000px;}
.y5a{bottom:892.860000px;}
.y138{bottom:893.220000px;}
.y113{bottom:893.850000px;}
.y89{bottom:897.810000px;}
.y5{bottom:898.980000px;}
.yb8{bottom:905.730000px;}
.yeb{bottom:906.810000px;}
.y137{bottom:910.860000px;}
.y88{bottom:915.450000px;}
.y4{bottom:916.980000px;}
.y59{bottom:919.410000px;}
.y112{bottom:920.760000px;}
.yb7{bottom:923.370000px;}
.yea{bottom:924.450000px;}
.y136{bottom:928.410000px;}
.y87{bottom:933.000000px;}
.yb6{bottom:940.920000px;}
.ye9{bottom:942.000000px;}
.y150{bottom:945.960000px;}
.y3{bottom:947.811000px;}
.y58{bottom:954.960000px;}
.y111{bottom:958.110000px;}
.yb5{bottom:958.560000px;}
.ye8{bottom:959.550000px;}
.y86{bottom:959.910000px;}
.y57{bottom:972.600000px;}
.yb4{bottom:976.110000px;}
.y28{bottom:987.748500px;}
.y56{bottom:990.150000px;}
.yb3{bottom:993.660000px;}
.ye7{bottom:995.190000px;}
.y110{bottom:1006.440000px;}
.y55{bottom:1007.790000px;}
.y85{bottom:1008.150000px;}
.yb2{bottom:1011.330000px;}
.ye6{bottom:1012.770000px;}
.y27{bottom:1012.948500px;}
.y135{bottom:1016.820000px;}
.y2e{bottom:1020.870000px;}
.y10f{bottom:1024.020000px;}
.y54{bottom:1025.370000px;}
.y84{bottom:1025.820000px;}
.yb1{bottom:1028.880000px;}
.ye5{bottom:1030.320000px;}
.y134{bottom:1034.370000px;}
.y10e{bottom:1041.570000px;}
.y53{bottom:1042.920000px;}
.y83{bottom:1043.370000px;}
.yb0{bottom:1046.520000px;}
.ye4{bottom:1047.960000px;}
.y14f{bottom:1051.920000px;}
.y10d{bottom:1059.210000px;}
.y52{bottom:1060.560000px;}
.y82{bottom:1060.920000px;}
.yaf{bottom:1064.070000px;}
.ye3{bottom:1065.510000px;}
.y10c{bottom:1076.760000px;}
.y81{bottom:1078.560000px;}
.yae{bottom:1081.620000px;}
.ye2{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y10b{bottom:1094.400000px;}
.y80{bottom:1096.110000px;}
.ye1{bottom:1100.700000px;}
.y133{bottom:1105.110000px;}
.yad{bottom:1108.260000px;}
.y10a{bottom:1111.950000px;}
.y7f{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.ye0{bottom:1127.610000px;}
.y109{bottom:1138.860000px;}
.y2b{bottom:1140.300000px;}
.yac{bottom:1143.090000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.640000px;}
.h2{height:26.995781px;}
.h5{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.h8{height:44.100000px;}
.h12{height:44.190000px;}
.h6{height:50.902383px;}
.h4{height:55.779258px;}
.h7{height:58.898438px;}
.h18{height:61.793886px;}
.he{height:62.585859px;}
.hd{height:68.582109px;}
.ha{height:114.480000px;}
.hc{height:114.570000px;}
.h14{height:123.480000px;}
.h15{height:123.510000px;}
.h13{height:123.570000px;}
.h17{height:135.900000px;}
.h16{height:135.990000px;}
.h9{height:149.700000px;}
.hb{height:167.220000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:40.410000px;}
.wb{width:51.750000px;}
.w11{width:57.420000px;}
.we{width:58.590000px;}
.w10{width:60.960000px;}
.w9{width:70.380000px;}
.w7{width:74.790000px;}
.w8{width:99.270000px;}
.wa{width:147.900000px;}
.wc{width:157.890000px;}
.w5{width:162.030000px;}
.wd{width:164.790000px;}
.w4{width:176.130000px;}
.w6{width:192.510000px;}
.w12{width:211.140000px;}
.w3{width:222.690000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x2{left:71.367000px;}
.x14{left:111.239987px;}
.x3{left:211.079987px;}
.x9{left:223.140000px;}
.xe{left:227.370000px;}
.x6{left:292.260000px;}
.xa{left:298.650000px;}
.xd{left:323.399987px;}
.xf{left:392.970000px;}
.xb{left:398.640000px;}
.x10{left:452.280000px;}
.x7{left:469.200000px;}
.x11{left:493.500000px;}
.x12{left:555.180000px;}
.x13{left:613.320000px;}
.xc{left:618.360000px;}
.x8{left:631.950000px;}
.x4{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;}
.lsb{letter-spacing:-0.395200pt;}
.ls13{letter-spacing:-0.348267pt;}
.ls17{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.107733pt;}
.ls3{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.059733pt;}
.ls14{letter-spacing:-0.034560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004693pt;}
.ls8{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls7{letter-spacing:0.065920pt;}
.ls12{letter-spacing:0.087467pt;}
.ls9{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.154240pt;}
.lse{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.161067pt;}
.ls6{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsf{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.917867pt;}
.wsd{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.722240pt;}
.ws12{word-spacing:-11.697067pt;}
.ws5{word-spacing:-11.612800pt;}
.wse{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.236800pt;}
.ws9{word-spacing:-0.026667pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.048000pt;}
.ws8{word-spacing:0.053333pt;}
.wsb{word-spacing:0.112000pt;}
.ws7{word-spacing:0.117333pt;}
.wsa{word-spacing:0.234667pt;}
.ws3{word-spacing:3.826560pt;}
._7{margin-left:-3.153067pt;}
._a{margin-left:-2.062614pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.045973pt;}
._5{width:1.970776pt;}
._6{width:2.892157pt;}
._4{width:4.328533pt;}
._3{width:5.771734pt;}
._32{width:6.676800pt;}
._8{width:7.588266pt;}
._33{width:8.533018pt;}
._9{width:9.441064pt;}
._2{width:10.419200pt;}
._1d{width:13.306560pt;}
._34{width:14.968533pt;}
._1c{width:15.948267pt;}
._11{width:17.261120pt;}
._35{width:18.515733pt;}
._b{width:19.719467pt;}
._c{width:21.218453pt;}
._30{width:23.945813pt;}
._21{width:24.956480pt;}
._26{width:26.239040pt;}
._25{width:27.254400pt;}
._1f{width:28.590400pt;}
._28{width:29.708267pt;}
._39{width:31.422720pt;}
._20{width:33.186240pt;}
._3c{width:35.644160pt;}
._18{width:37.140800pt;}
._22{width:39.866240pt;}
._3a{width:41.362560pt;}
._2e{width:43.105813pt;}
._2d{width:44.108267pt;}
._f{width:49.111360pt;}
._16{width:52.744213pt;}
._15{width:53.708267pt;}
._1a{width:56.112000pt;}
._41{width:58.830187pt;}
._14{width:59.959680pt;}
._13{width:62.686720pt;}
._37{width:65.731200pt;}
._19{width:66.806720pt;}
._12{width:71.609600pt;}
._42{width:72.624960pt;}
._2f{width:73.747200pt;}
._38{width:75.081387pt;}
._1b{width:79.198080pt;}
._44{width:81.036160pt;}
._45{width:82.120853pt;}
._2c{width:87.267520pt;}
._3d{width:92.664960pt;}
._1e{width:95.550720pt;}
._2a{width:98.648427pt;}
._24{width:100.680960pt;}
._23{width:109.552000pt;}
._d{width:112.384320pt;}
._36{width:116.606080pt;}
._10{width:119.545280pt;}
._31{width:122.591360pt;}
._17{width:124.108267pt;}
._40{width:127.026880pt;}
._3f{width:148.028800pt;}
._27{width:163.793600pt;}
._43{width:170.687360pt;}
._3e{width:200.774080pt;}
._2b{width:217.768000pt;}
._3b{width:225.623680pt;}
._e{width:229.471360pt;}
._29{width:298.676160pt;}
.fs0{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:6.960000pt;}
.y39{bottom:7.040000pt;}
.ydd{bottom:18.000000pt;}
.y2f{bottom:22.560000pt;}
.y38{bottom:22.640000pt;}
.ydc{bottom:33.600000pt;}
.yd3{bottom:33.680000pt;}
.y37{bottom:38.240000pt;}
.y47{bottom:38.266667pt;}
.y49{bottom:38.320000pt;}
.yc0{bottom:46.320000pt;}
.yd2{bottom:49.280000pt;}
.y3d{bottom:53.840000pt;}
.y36{bottom:53.920000pt;}
.y46{bottom:53.946667pt;}
.yce{bottom:57.280000pt;}
.yc4{bottom:61.840000pt;}
.ybf{bottom:61.920000pt;}
.yc8{bottom:61.946667pt;}
.ydb{bottom:64.880000pt;}
.yd1{bottom:64.960000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y3c{bottom:69.440000pt;}
.y35{bottom:69.520000pt;}
.y45{bottom:69.546667pt;}
.yd9{bottom:72.880000pt;}
.ycd{bottom:72.960000pt;}
.yc1{bottom:73.520000pt;}
.yc9{bottom:73.546667pt;}
.ybe{bottom:77.520000pt;}
.yc7{bottom:77.546667pt;}
.yd0{bottom:84.560000pt;}
.y3b{bottom:85.120000pt;}
.y34{bottom:85.200000pt;}
.y44{bottom:85.226667pt;}
.ycc{bottom:88.560000pt;}
.y1{bottom:90.346667pt;}
.yc3{bottom:93.120000pt;}
.yc6{bottom:93.146667pt;}
.ybd{bottom:93.200000pt;}
.y40{bottom:100.720000pt;}
.y33{bottom:100.800000pt;}
.y43{bottom:100.826667pt;}
.y7e{bottom:102.826667pt;}
.yd8{bottom:104.160000pt;}
.ycb{bottom:104.240000pt;}
.yab{bottom:104.666667pt;}
.y108{bottom:108.506667pt;}
.y32{bottom:116.400000pt;}
.y42{bottom:116.426667pt;}
.y107{bottom:124.186667pt;}
.yd7{bottom:124.586667pt;}
.y14e{bottom:126.826667pt;}
.y51{bottom:127.386667pt;}
.yaa{bottom:128.986667pt;}
.y3f{bottom:132.000000pt;}
.y7d{bottom:134.506667pt;}
.y132{bottom:137.226667pt;}
.y106{bottom:139.786667pt;}
.y26{bottom:141.866667pt;}
.y14d{bottom:142.506667pt;}
.y50{bottom:142.986667pt;}
.ydf{bottom:148.826667pt;}
.y131{bottom:152.826667pt;}
.ya9{bottom:153.306667pt;}
.y105{bottom:155.466667pt;}
.y25{bottom:157.546667pt;}
.y4f{bottom:158.666667pt;}
.y7c{bottom:166.106667pt;}
.y104{bottom:171.066667pt;}
.y24{bottom:173.146667pt;}
.y4e{bottom:174.266667pt;}
.y130{bottom:176.506667pt;}
.ya8{bottom:177.546667pt;}
.y7b{bottom:181.786667pt;}
.y103{bottom:186.666667pt;}
.y23{bottom:188.746667pt;}
.y4d{bottom:189.866667pt;}
.y12f{bottom:192.106667pt;}
.y7a{bottom:197.386667pt;}
.yde{bottom:197.466667pt;}
.ya7{bottom:201.866667pt;}
.y102{bottom:202.346667pt;}
.y22{bottom:204.426667pt;}
.y14c{bottom:205.386667pt;}
.y4c{bottom:205.546667pt;}
.y79{bottom:212.986667pt;}
.y12e{bottom:215.706667pt;}
.y101{bottom:217.946667pt;}
.y21{bottom:220.026667pt;}
.y162{bottom:220.666667pt;}
.y14b{bottom:220.986667pt;}
.y4b{bottom:221.146667pt;}
.yda{bottom:221.786667pt;}
.y78{bottom:228.666667pt;}
.y12d{bottom:231.386667pt;}
.y20{bottom:235.706667pt;}
.y161{bottom:236.266667pt;}
.y14a{bottom:236.666667pt;}
.y100{bottom:241.866667pt;}
.y77{bottom:244.266667pt;}
.y4a{bottom:245.066667pt;}
.ya6{bottom:245.146667pt;}
.yca{bottom:246.026667pt;}
.y1f{bottom:251.306667pt;}
.y12c{bottom:254.986667pt;}
.y160{bottom:259.946667pt;}
.y149{bottom:260.266667pt;}
.y1e{bottom:266.906667pt;}
.y76{bottom:267.946667pt;}
.yd6{bottom:270.346667pt;}
.y12b{bottom:270.666667pt;}
.y15f{bottom:275.546667pt;}
.y148{bottom:275.946667pt;}
.ya5{bottom:276.826667pt;}
.y1d{bottom:282.586667pt;}
.yff{bottom:284.826667pt;}
.y48{bottom:285.626667pt;}
.y12a{bottom:286.266667pt;}
.ya4{bottom:292.426667pt;}
.yd5{bottom:294.666667pt;}
.y15e{bottom:299.146667pt;}
.y75{bottom:299.546667pt;}
.yfe{bottom:300.426667pt;}
.y1c{bottom:306.506667pt;}
.ya3{bottom:308.026667pt;}
.y129{bottom:309.866667pt;}
.y15d{bottom:314.826667pt;}
.y74{bottom:315.146667pt;}
.yfd{bottom:316.026667pt;}
.yd4{bottom:318.986667pt;}
.ya2{bottom:323.706667pt;}
.y128{bottom:325.546667pt;}
.y73{bottom:330.826667pt;}
.yfc{bottom:331.706667pt;}
.y15c{bottom:338.426667pt;}
.ycf{bottom:343.226667pt;}
.y72{bottom:346.426667pt;}
.ya1{bottom:347.306667pt;}
.y127{bottom:349.146667pt;}
.y1b{bottom:349.386667pt;}
.y15b{bottom:354.106667pt;}
.y147{bottom:354.426667pt;}
.y71{bottom:362.106667pt;}
.y126{bottom:364.746667pt;}
.y1a{bottom:365.306667pt;}
.yc5{bottom:367.546667pt;}
.y146{bottom:370.106667pt;}
.y70{bottom:377.706667pt;}
.ya0{bottom:378.986667pt;}
.y41{bottom:388.106667pt;}
.y125{bottom:388.426667pt;}
.y15a{bottom:393.306667pt;}
.y145{bottom:393.706667pt;}
.y9f{bottom:394.586667pt;}
.y19{bottom:398.266667pt;}
.y6f{bottom:401.306667pt;}
.y124{bottom:404.026667pt;}
.y144{bottom:409.306667pt;}
.y9e{bottom:410.186667pt;}
.y18{bottom:413.866667pt;}
.y159{bottom:416.986667pt;}
.y143{bottom:425.013333pt;}
.y9d{bottom:425.893333pt;}
.y123{bottom:427.733333pt;}
.y17{bottom:429.493333pt;}
.y158{bottom:432.613333pt;}
.y6e{bottom:433.013333pt;}
.y9c{bottom:441.493333pt;}
.y122{bottom:443.333333pt;}
.y16{bottom:445.173333pt;}
.y6d{bottom:448.613333pt;}
.y157{bottom:456.293333pt;}
.y9b{bottom:457.093333pt;}
.y121{bottom:458.933333pt;}
.y15{bottom:460.773333pt;}
.y6c{bottom:464.293333pt;}
.y156{bottom:471.893333pt;}
.y9a{bottom:472.773333pt;}
.y14{bottom:476.373333pt;}
.yc2{bottom:478.053333pt;}
.y6b{bottom:479.893333pt;}
.y120{bottom:482.613333pt;}
.y142{bottom:487.893333pt;}
.y99{bottom:488.373333pt;}
.y13{bottom:492.053333pt;}
.y6a{bottom:495.493333pt;}
.y11f{bottom:498.213333pt;}
.y141{bottom:503.493333pt;}
.y98{bottom:504.053333pt;}
.yfb{bottom:504.373333pt;}
.y12{bottom:507.653333pt;}
.y69{bottom:511.173333pt;}
.y155{bottom:519.173333pt;}
.y97{bottom:519.653333pt;}
.yfa{bottom:520.053333pt;}
.y3e{bottom:521.893333pt;}
.y11{bottom:523.333333pt;}
.y140{bottom:527.173333pt;}
.y68{bottom:534.773333pt;}
.y96{bottom:535.253333pt;}
.yf9{bottom:535.653333pt;}
.y11e{bottom:537.493333pt;}
.y10{bottom:538.933333pt;}
.y13f{bottom:542.773333pt;}
.y95{bottom:550.933333pt;}
.yf8{bottom:551.253333pt;}
.yf{bottom:554.533333pt;}
.y154{bottom:558.453333pt;}
.y11d{bottom:561.093333pt;}
.y67{bottom:566.453333pt;}
.yf7{bottom:566.933333pt;}
.ye{bottom:570.213333pt;}
.y153{bottom:574.053333pt;}
.y94{bottom:574.533333pt;}
.y11c{bottom:576.773333pt;}
.y66{bottom:582.053333pt;}
.yf6{bottom:582.533333pt;}
.yd{bottom:585.813333pt;}
.ybc{bottom:588.453333pt;}
.y11b{bottom:592.373333pt;}
.y65{bottom:597.653333pt;}
.yf5{bottom:598.213333pt;}
.yc{bottom:601.493333pt;}
.y93{bottom:606.213333pt;}
.y64{bottom:613.333333pt;}
.y11a{bottom:616.053333pt;}
.yb{bottom:617.093333pt;}
.y92{bottom:621.813333pt;}
.yf4{bottom:622.133333pt;}
.y63{bottom:628.933333pt;}
.y119{bottom:631.653333pt;}
.y13e{bottom:636.933333pt;}
.y91{bottom:637.413333pt;}
.ya{bottom:641.013333pt;}
.y62{bottom:644.613333pt;}
.y13d{bottom:652.613333pt;}
.y90{bottom:653.093333pt;}
.y118{bottom:655.253333pt;}
.yf3{bottom:665.013333pt;}
.y61{bottom:668.213333pt;}
.y117{bottom:670.933333pt;}
.y3a{bottom:671.253333pt;}
.y13c{bottom:676.213333pt;}
.y8f{bottom:677.013333pt;}
.yf2{bottom:680.613333pt;}
.y9{bottom:683.893333pt;}
.y13b{bottom:691.813333pt;}
.y116{bottom:694.853333pt;}
.yf1{bottom:696.293333pt;}
.ybb{bottom:698.933333pt;}
.y60{bottom:699.813333pt;}
.y152{bottom:707.493333pt;}
.yf0{bottom:711.893333pt;}
.y5f{bottom:715.493333pt;}
.y8{bottom:715.733333pt;}
.y8e{bottom:719.893333pt;}
.yef{bottom:727.573333pt;}
.y5e{bottom:731.093333pt;}
.y8d{bottom:735.573333pt;}
.y115{bottom:737.733333pt;}
.yee{bottom:743.173333pt;}
.y5d{bottom:746.693333pt;}
.y7{bottom:747.733333pt;}
.y8c{bottom:751.173333pt;}
.y13a{bottom:754.693333pt;}
.yba{bottom:757.893333pt;}
.yed{bottom:758.773333pt;}
.y114{bottom:761.653333pt;}
.y5c{bottom:762.373333pt;}
.y8b{bottom:766.773333pt;}
.y139{bottom:770.373333pt;}
.y31{bottom:773.653333pt;}
.y5b{bottom:777.973333pt;}
.y8a{bottom:782.453333pt;}
.y6{bottom:783.093333pt;}
.y151{bottom:785.973333pt;}
.yb9{bottom:789.493333pt;}
.yec{bottom:790.453333pt;}
.y5a{bottom:793.653333pt;}
.y138{bottom:793.973333pt;}
.y113{bottom:794.533333pt;}
.y89{bottom:798.053333pt;}
.y5{bottom:799.093333pt;}
.yb8{bottom:805.093333pt;}
.yeb{bottom:806.053333pt;}
.y137{bottom:809.653333pt;}
.y88{bottom:813.733333pt;}
.y4{bottom:815.093333pt;}
.y59{bottom:817.253333pt;}
.y112{bottom:818.453333pt;}
.yb7{bottom:820.773333pt;}
.yea{bottom:821.733333pt;}
.y136{bottom:825.253333pt;}
.y87{bottom:829.333333pt;}
.yb6{bottom:836.373333pt;}
.ye9{bottom:837.333333pt;}
.y150{bottom:840.853333pt;}
.y3{bottom:842.498667pt;}
.y58{bottom:848.853333pt;}
.y111{bottom:851.653333pt;}
.yb5{bottom:852.053333pt;}
.ye8{bottom:852.933333pt;}
.y86{bottom:853.253333pt;}
.y57{bottom:864.533333pt;}
.yb4{bottom:867.653333pt;}
.y28{bottom:877.998667pt;}
.y56{bottom:880.133333pt;}
.yb3{bottom:883.253333pt;}
.ye7{bottom:884.613333pt;}
.y110{bottom:894.613333pt;}
.y55{bottom:895.813333pt;}
.y85{bottom:896.133333pt;}
.yb2{bottom:898.960000pt;}
.ye6{bottom:900.240000pt;}
.y27{bottom:900.398667pt;}
.y135{bottom:903.840000pt;}
.y2e{bottom:907.440000pt;}
.y10f{bottom:910.240000pt;}
.y54{bottom:911.440000pt;}
.y84{bottom:911.840000pt;}
.yb1{bottom:914.560000pt;}
.ye5{bottom:915.840000pt;}
.y134{bottom:919.440000pt;}
.y10e{bottom:925.840000pt;}
.y53{bottom:927.040000pt;}
.y83{bottom:927.440000pt;}
.yb0{bottom:930.240000pt;}
.ye4{bottom:931.520000pt;}
.y14f{bottom:935.040000pt;}
.y10d{bottom:941.520000pt;}
.y52{bottom:942.720000pt;}
.y82{bottom:943.040000pt;}
.yaf{bottom:945.840000pt;}
.ye3{bottom:947.120000pt;}
.y10c{bottom:957.120000pt;}
.y81{bottom:958.720000pt;}
.yae{bottom:961.440000pt;}
.ye2{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y10b{bottom:972.800000pt;}
.y80{bottom:974.320000pt;}
.ye1{bottom:978.400000pt;}
.y133{bottom:982.320000pt;}
.yad{bottom:985.120000pt;}
.y10a{bottom:988.400000pt;}
.y7f{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.ye0{bottom:1002.320000pt;}
.y109{bottom:1012.320000pt;}
.y2b{bottom:1013.600000pt;}
.yac{bottom:1016.080000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.680000pt;}
.h2{height:23.996250pt;}
.h5{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.h8{height:39.200000pt;}
.h12{height:39.280000pt;}
.h6{height:45.246562pt;}
.h4{height:49.581562pt;}
.h7{height:52.354167pt;}
.h18{height:54.927899pt;}
.he{height:55.631875pt;}
.hd{height:60.961875pt;}
.ha{height:101.760000pt;}
.hc{height:101.840000pt;}
.h14{height:109.760000pt;}
.h15{height:109.786667pt;}
.h13{height:109.840000pt;}
.h17{height:120.800000pt;}
.h16{height:120.880000pt;}
.h9{height:133.066667pt;}
.hb{height:148.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:35.920000pt;}
.wb{width:46.000000pt;}
.w11{width:51.040000pt;}
.we{width:52.080000pt;}
.w10{width:54.186667pt;}
.w9{width:62.560000pt;}
.w7{width:66.480000pt;}
.w8{width:88.240000pt;}
.wa{width:131.466667pt;}
.wc{width:140.346667pt;}
.w5{width:144.026667pt;}
.wd{width:146.480000pt;}
.w4{width:156.560000pt;}
.w6{width:171.120000pt;}
.w12{width:187.680000pt;}
.w3{width:197.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2{left:63.437333pt;}
.x14{left:98.879988pt;}
.x3{left:187.626655pt;}
.x9{left:198.346667pt;}
.xe{left:202.106667pt;}
.x6{left:259.786667pt;}
.xa{left:265.466667pt;}
.xd{left:287.466655pt;}
.xf{left:349.306667pt;}
.xb{left:354.346667pt;}
.x10{left:402.026667pt;}
.x7{left:417.066667pt;}
.x11{left:438.666667pt;}
.x12{left:493.493333pt;}
.x13{left:545.173333pt;}
.xc{left:549.653333pt;}
.x8{left:561.733333pt;}
.x4{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; }
  