
    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_fa63cf122f1bc7de7900aa60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_17f08e4478ef0f69a07c87cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_0ee621a5c6a8addb8533237e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_5d808478a4272ee3e9a13d79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_b9bd2418fd251bfcaf4e5683.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_378df0ef2128bfbc24005144.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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;}
.m1{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,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(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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.414000px;}
.ls18{letter-spacing:-0.343200px;}
.ls4{letter-spacing:-0.090000px;}
.ls2{letter-spacing:-0.078600px;}
.ls3{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.041040px;}
.ls7{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.140400px;}
.ls9{letter-spacing:0.174000px;}
.ls8{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.306000px;}
.lsc{letter-spacing:0.479520px;}
.lsf{letter-spacing:0.780000px;}
.ls17{letter-spacing:13.626720px;}
.ls16{letter-spacing:44.586720px;}
.lsd{letter-spacing:168.654240px;}
.ls11{letter-spacing:172.026720px;}
.lsa{letter-spacing:328.494240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.ws9{word-spacing:-16.488000px;}
.wsc{word-spacing:-13.646160px;}
.wsa{word-spacing:-13.566360px;}
.ws0{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.ws2{word-spacing:-13.440960px;}
.ws1{word-spacing:-13.427160px;}
.ws4{word-spacing:-12.402000px;}
.ws6{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.186000px;}
.ws3{word-spacing:-12.114000px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-3.969840px;}
._7{margin-left:-2.243040px;}
._1{margin-left:-1.179360px;}
._2{width:1.015920px;}
._3{width:2.604000px;}
._5{width:4.162800px;}
._4{width:5.557680px;}
._14{width:7.111440px;}
._13{width:8.187120px;}
._1c{width:9.288000px;}
._11{width:10.382400px;}
._10{width:11.533680px;}
._6{width:14.521680px;}
._8{width:15.628800px;}
._12{width:16.673040px;}
._d{width:17.868240px;}
._18{width:19.440000px;}
._b{width:20.645520px;}
._a{width:21.664560px;}
._9{width:23.007600px;}
._2f{width:24.023520px;}
._26{width:25.039440px;}
._17{width:26.294400px;}
._f{width:27.310320px;}
._e{width:28.445760px;}
._1a{width:29.862000px;}
._1b{width:31.006080px;}
._2a{width:32.210640px;}
._24{width:33.346080px;}
._23{width:34.421760px;}
._22{width:35.736480px;}
._16{width:36.871920px;}
._15{width:37.947600px;}
._39{width:39.023280px;}
._25{width:40.338000px;}
._3b{width:41.533200px;}
._33{width:42.549120px;}
._32{width:43.571520px;}
._34{width:45.537120px;}
._2d{width:47.150640px;}
._36{width:48.405600px;}
._38{width:50.078880px;}
._29{width:51.333840px;}
._3f{width:52.469280px;}
._35{width:53.604720px;}
._30{width:55.397520px;}
._37{width:56.891520px;}
._3c{width:58.788960px;}
._28{width:60.596640px;}
._27{width:61.851600px;}
._3a{width:63.405360px;}
._40{width:68.484960px;}
._2e{width:69.859440px;}
._42{width:72.234000px;}
._2b{width:73.624320px;}
._3e{width:76.074480px;}
._3d{width:77.150160px;}
._1e{width:113.832000px;}
._1d{width:115.227360px;}
._43{width:120.057840px;}
._19{width:121.761360px;}
._31{width:136.850400px;}
._41{width:149.772240px;}
._2c{width:168.654240px;}
._1f{width:850.395120px;}
._21{width:1059.981840px;}
._20{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.215738px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y65{bottom:-1127.850000px;}
.y0{bottom:0.000000px;}
.y63{bottom:0.000092px;}
.y6a{bottom:3.060000px;}
.yf{bottom:3.960000px;}
.ya9{bottom:4.005000px;}
.y62{bottom:16.920000px;}
.y39{bottom:22.320000px;}
.y61{bottom:34.740000px;}
.y38{bottom:40.500000px;}
.y60{bottom:52.380000px;}
.y3{bottom:56.520000px;}
.y68{bottom:57.060000px;}
.y37{bottom:58.860000px;}
.y5f{bottom:70.230000px;}
.y69{bottom:71.820000px;}
.y36{bottom:77.250000px;}
.y64{bottom:77.831387px;}
.y10{bottom:81.000000px;}
.y5e{bottom:88.050000px;}
.y3a{bottom:90.540000px;}
.y35{bottom:95.610000px;}
.y5d{bottom:105.870000px;}
.y34{bottom:113.790000px;}
.y192{bottom:122.220000px;}
.y5c{bottom:123.690000px;}
.y1a8{bottom:125.280000px;}
.y171{bottom:128.160000px;}
.ydd{bottom:130.680000px;}
.y33{bottom:132.150000px;}
.ya2{bottom:133.920000px;}
.y13b{bottom:138.420000px;}
.y191{bottom:140.400000px;}
.y5b{bottom:141.330000px;}
.y1a7{bottom:143.460000px;}
.yb7{bottom:146.160000px;}
.y170{bottom:146.520000px;}
.y100{bottom:146.700000px;}
.y1d5{bottom:149.400000px;}
.ydc{bottom:149.760000px;}
.y32{bottom:150.510000px;}
.y128{bottom:151.770000px;}
.ya1{bottom:152.130000px;}
.y13a{bottom:156.810000px;}
.y5a{bottom:159.150000px;}
.y190{bottom:161.850000px;}
.yb6{bottom:164.550000px;}
.y16f{bottom:164.730000px;}
.yff{bottom:164.910000px;}
.y31{bottom:168.690000px;}
.ydb{bottom:168.870000px;}
.y1d4{bottom:169.230000px;}
.y127{bottom:170.130000px;}
.ya0{bottom:170.490000px;}
.y139{bottom:174.990000px;}
.y59{bottom:176.970000px;}
.yb5{bottom:182.730000px;}
.y16e{bottom:183.090000px;}
.yfe{bottom:183.270000px;}
.y30{bottom:187.050000px;}
.y126{bottom:188.490000px;}
.y9f{bottom:188.850000px;}
.y138{bottom:189.390000px;}
.y1d3{bottom:192.090000px;}
.y58{bottom:194.790000px;}
.yb4{bottom:201.090000px;}
.y16d{bottom:201.450000px;}
.yfd{bottom:201.630000px;}
.y1a6{bottom:204.510000px;}
.y2f{bottom:205.410000px;}
.y125{bottom:206.850000px;}
.y9e{bottom:207.030000px;}
.y1d2{bottom:211.710000px;}
.yb3{bottom:219.450000px;}
.y16c{bottom:219.810000px;}
.yfc{bottom:219.990000px;}
.y57{bottom:221.250000px;}
.y1a5{bottom:222.690000px;}
.y18f{bottom:222.870000px;}
.y2e{bottom:223.770000px;}
.y124{bottom:225.030000px;}
.y9d{bottom:225.390000px;}
.y1d1{bottom:231.510000px;}
.yb2{bottom:237.810000px;}
.y16b{bottom:237.990000px;}
.yfb{bottom:238.170000px;}
.y18e{bottom:241.050000px;}
.y2d{bottom:241.950000px;}
.yda{bottom:242.130000px;}
.y123{bottom:243.390000px;}
.y9c{bottom:243.750000px;}
.y1d0{bottom:251.130000px;}
.yb1{bottom:255.990000px;}
.y16a{bottom:256.350000px;}
.yfa{bottom:256.530000px;}
.yd9{bottom:257.250000px;}
.y18d{bottom:259.410000px;}
.y2c{bottom:260.310000px;}
.y122{bottom:261.750000px;}
.y9b{bottom:262.110000px;}
.y1cf{bottom:274.170000px;}
.yb0{bottom:274.350000px;}
.yf9{bottom:274.890000px;}
.yd8{bottom:276.150000px;}
.y18c{bottom:277.590000px;}
.y169{bottom:277.770000px;}
.y2b{bottom:278.670000px;}
.y121{bottom:279.930000px;}
.y9a{bottom:280.290000px;}
.yaf{bottom:292.710000px;}
.yf8{bottom:293.070000px;}
.y1ce{bottom:293.790000px;}
.yd7{bottom:295.230000px;}
.y168{bottom:295.950000px;}
.y2a{bottom:297.030000px;}
.y120{bottom:298.290000px;}
.y99{bottom:298.650000px;}
.y56{bottom:305.850000px;}
.yae{bottom:310.890000px;}
.yf7{bottom:311.430000px;}
.y11f{bottom:313.410000px;}
.yd6{bottom:314.310000px;}
.y29{bottom:315.210000px;}
.y98{bottom:317.010000px;}
.yad{bottom:329.250000px;}
.yf6{bottom:329.790000px;}
.y11e{bottom:332.490000px;}
.y167{bottom:332.670000px;}
.y1cd{bottom:333.210000px;}
.yd5{bottom:333.390000px;}
.y28{bottom:333.615000px;}
.y97{bottom:335.370000px;}
.y55{bottom:335.595000px;}
.y18b{bottom:335.730000px;}
.yac{bottom:347.610000px;}
.yf5{bottom:348.150000px;}
.y166{bottom:350.850000px;}
.y11d{bottom:351.570000px;}
.y27{bottom:351.975000px;}
.yd4{bottom:352.470000px;}
.y1cc{bottom:353.010000px;}
.y96{bottom:353.550000px;}
.y18a{bottom:353.910000px;}
.yf4{bottom:362.370000px;}
.y54{bottom:365.475000px;}
.yab{bottom:365.970000px;}
.y165{bottom:369.210000px;}
.y26{bottom:370.155000px;}
.y11c{bottom:370.650000px;}
.y95{bottom:371.910000px;}
.y189{bottom:372.270000px;}
.yd3{bottom:375.510000px;}
.y1cb{bottom:375.870000px;}
.yaa{bottom:381.090000px;}
.y137{bottom:382.350000px;}
.y164{bottom:387.570000px;}
.y25{bottom:388.515000px;}
.y11b{bottom:389.730000px;}
.y94{bottom:390.270000px;}
.y188{bottom:390.450000px;}
.yd2{bottom:393.870000px;}
.y53{bottom:395.175000px;}
.y1ca{bottom:395.490000px;}
.ya8{bottom:399.990000px;}
.y136{bottom:400.755000px;}
.y163{bottom:405.795000px;}
.y24{bottom:406.875000px;}
.y93{bottom:408.495000px;}
.y187{bottom:408.855000px;}
.yd1{bottom:412.095000px;}
.y11a{bottom:412.815000px;}
.y1c9{bottom:415.335000px;}
.ya7{bottom:419.115000px;}
.y52{bottom:425.055000px;}
.y23{bottom:425.235000px;}
.y92{bottom:426.855000px;}
.y186{bottom:427.215000px;}
.y162{bottom:427.395000px;}
.yd0{bottom:430.455000px;}
.y119{bottom:430.995000px;}
.y135{bottom:433.335000px;}
.y1c8{bottom:435.135000px;}
.ya6{bottom:438.195000px;}
.y22{bottom:443.415000px;}
.y91{bottom:445.215000px;}
.y185{bottom:445.575000px;}
.y161{bottom:448.635000px;}
.ycf{bottom:448.815000px;}
.y118{bottom:449.355000px;}
.y51{bottom:454.755000px;}
.ya5{bottom:457.275000px;}
.y1c7{bottom:457.995000px;}
.y21{bottom:461.775000px;}
.y90{bottom:463.575000px;}
.y184{bottom:463.755000px;}
.y160{bottom:466.815000px;}
.yce{bottom:467.175000px;}
.y117{bottom:467.715000px;}
.ya4{bottom:476.355000px;}
.y1c6{bottom:477.615000px;}
.y20{bottom:480.135000px;}
.y8f{bottom:481.755000px;}
.y50{bottom:484.635000px;}
.y15f{bottom:485.175000px;}
.ycd{bottom:485.355000px;}
.y116{bottom:485.895000px;}
.ya3{bottom:495.435000px;}
.y1c5{bottom:497.415000px;}
.y1f{bottom:498.315000px;}
.y8e{bottom:500.115000px;}
.y183{bottom:503.355000px;}
.ycc{bottom:503.715000px;}
.y115{bottom:504.255000px;}
.y15e{bottom:506.595000px;}
.y4f{bottom:514.335000px;}
.y1e{bottom:516.675000px;}
.y8d{bottom:518.475000px;}
.y1c4{bottom:520.275000px;}
.y182{bottom:521.715000px;}
.ycb{bottom:522.075000px;}
.y114{bottom:522.615000px;}
.y15d{bottom:524.775000px;}
.y1d{bottom:535.035000px;}
.y8c{bottom:536.655000px;}
.y1c3{bottom:539.895000px;}
.y181{bottom:540.075000px;}
.yca{bottom:540.255000px;}
.y113{bottom:540.975000px;}
.y15c{bottom:543.135000px;}
.y4e{bottom:544.215000px;}
.yf3{bottom:550.875000px;}
.y1c{bottom:553.395000px;}
.y8b{bottom:555.015000px;}
.y180{bottom:558.435000px;}
.yc9{bottom:558.615000px;}
.y112{bottom:559.155000px;}
.y15b{bottom:561.315000px;}
.y1c2{bottom:562.755000px;}
.yf2{bottom:565.995000px;}
.y1b{bottom:571.605000px;}
.y8a{bottom:573.375000px;}
.y4d{bottom:573.945000px;}
.y17f{bottom:576.615000px;}
.yc8{bottom:576.975000px;}
.y111{bottom:577.515000px;}
.y15a{bottom:579.675000px;}
.y1c1{bottom:582.375000px;}
.yf1{bottom:585.075000px;}
.y1a{bottom:589.965000px;}
.y89{bottom:591.735000px;}
.y1a4{bottom:594.975000px;}
.yc7{bottom:595.335000px;}
.y110{bottom:595.875000px;}
.y159{bottom:598.035000px;}
.y4c{bottom:603.825000px;}
.yf0{bottom:604.155000px;}
.y1c0{bottom:605.415000px;}
.y19{bottom:608.325000px;}
.y88{bottom:609.915000px;}
.y1a3{bottom:613.335000px;}
.yc6{bottom:613.515000px;}
.y10f{bottom:614.235000px;}
.y158{bottom:616.215000px;}
.yef{bottom:623.235000px;}
.y134{bottom:624.135000px;}
.y1bf{bottom:624.855000px;}
.y18{bottom:626.685000px;}
.y87{bottom:628.275000px;}
.yc5{bottom:631.875000px;}
.y10e{bottom:632.415000px;}
.y4b{bottom:633.525000px;}
.y157{bottom:634.575000px;}
.y1a2{bottom:634.755000px;}
.y133{bottom:639.255000px;}
.yee{bottom:642.315000px;}
.y17{bottom:644.865000px;}
.y86{bottom:646.635000px;}
.y1be{bottom:647.895000px;}
.y4a{bottom:649.905000px;}
.yc4{bottom:650.265000px;}
.y10d{bottom:650.805000px;}
.y156{bottom:652.965000px;}
.y1a1{bottom:656.025000px;}
.y132{bottom:658.365000px;}
.y16{bottom:663.225000px;}
.y85{bottom:665.025000px;}
.yed{bottom:665.385000px;}
.y49{bottom:666.465000px;}
.y1bd{bottom:667.545000px;}
.yc3{bottom:668.445000px;}
.y10c{bottom:669.165000px;}
.y155{bottom:671.325000px;}
.y1a0{bottom:674.205000px;}
.y131{bottom:677.445000px;}
.y15{bottom:681.585000px;}
.y48{bottom:682.845000px;}
.y84{bottom:683.205000px;}
.yec{bottom:683.565000px;}
.yc2{bottom:686.805000px;}
.y1bc{bottom:687.165000px;}
.y10b{bottom:687.345000px;}
.y154{bottom:689.505000px;}
.y19f{bottom:692.565000px;}
.y130{bottom:696.345000px;}
.y47{bottom:699.405000px;}
.y14{bottom:699.765000px;}
.yc1{bottom:701.205000px;}
.y83{bottom:701.565000px;}
.yeb{bottom:701.925000px;}
.y10a{bottom:705.705000px;}
.y1bb{bottom:706.965000px;}
.y153{bottom:707.865000px;}
.y19e{bottom:713.985000px;}
.y46{bottom:715.785000px;}
.y13{bottom:718.125000px;}
.y12f{bottom:719.385000px;}
.y82{bottom:719.925000px;}
.y109{bottom:720.105000px;}
.yea{bottom:720.285000px;}
.y17e{bottom:726.225000px;}
.y152{bottom:729.285000px;}
.y1ba{bottom:730.005000px;}
.y19d{bottom:732.165000px;}
.y45{bottom:732.345000px;}
.y12{bottom:736.485000px;}
.y12e{bottom:737.745000px;}
.y81{bottom:738.105000px;}
.ye9{bottom:738.645000px;}
.y17d{bottom:744.585000px;}
.y151{bottom:747.465000px;}
.y44{bottom:748.725000px;}
.y1b9{bottom:749.445000px;}
.y19c{bottom:750.525000px;}
.y11{bottom:754.845000px;}
.y12d{bottom:756.105000px;}
.y80{bottom:756.465000px;}
.ye8{bottom:756.825000px;}
.y17c{bottom:762.765000px;}
.y150{bottom:765.825000px;}
.y19b{bottom:768.885000px;}
.y1b8{bottom:769.245000px;}
.y43{bottom:774.105000px;}
.y12c{bottom:774.285000px;}
.y7f{bottom:774.825000px;}
.ye7{bottom:775.185000px;}
.y17b{bottom:781.125000px;}
.y14f{bottom:784.185000px;}
.y19a{bottom:787.065000px;}
.y1b7{bottom:789.045000px;}
.y12b{bottom:792.645000px;}
.y7e{bottom:793.185000px;}
.ye6{bottom:793.545000px;}
.y17a{bottom:799.485000px;}
.y14e{bottom:802.365000px;}
.y42{bottom:804.165000px;}
.y199{bottom:805.425000px;}
.y12a{bottom:811.005000px;}
.y7d{bottom:811.365000px;}
.ye5{bottom:811.725000px;}
.y1b6{bottom:811.905000px;}
.y179{bottom:817.665000px;}
.y14d{bottom:820.725000px;}
.y198{bottom:823.785000px;}
.y129{bottom:825.405000px;}
.ye4{bottom:826.125000px;}
.y7c{bottom:829.725000px;}
.y1b5{bottom:831.525000px;}
.y41{bottom:833.910000px;}
.y14c{bottom:839.085000px;}
.y178{bottom:839.265000px;}
.y197{bottom:841.965000px;}
.y7b{bottom:848.085000px;}
.ye{bottom:850.065000px;}
.y1b4{bottom:851.325000px;}
.y40{bottom:851.550000px;}
.y14b{bottom:857.445000px;}
.y196{bottom:860.325000px;}
.y177{bottom:860.505000px;}
.y7a{bottom:866.445000px;}
.y3f{bottom:869.370000px;}
.y1b3{bottom:872.745000px;}
.yd{bottom:872.925000px;}
.y14a{bottom:875.625000px;}
.y176{bottom:878.685000px;}
.y79{bottom:884.625000px;}
.y3e{bottom:887.190000px;}
.yc{bottom:892.545000px;}
.y149{bottom:893.985000px;}
.y1b2{bottom:894.165000px;}
.y175{bottom:897.045000px;}
.y195{bottom:900.150000px;}
.y78{bottom:903.030000px;}
.y3d{bottom:905.010000px;}
.yb{bottom:910.950000px;}
.y1b1{bottom:912.390000px;}
.y108{bottom:915.270000px;}
.y148{bottom:915.450000px;}
.y194{bottom:918.330000px;}
.y174{bottom:918.510000px;}
.y77{bottom:921.390000px;}
.y3c{bottom:922.650000px;}
.ya{bottom:929.130000px;}
.y107{bottom:930.390000px;}
.y1b0{bottom:930.570000px;}
.yc0{bottom:932.910000px;}
.y173{bottom:936.690000px;}
.y147{bottom:936.870000px;}
.y76{bottom:939.570000px;}
.y9{bottom:947.490000px;}
.ybf{bottom:948.030000px;}
.y3b{bottom:948.570000px;}
.y1af{bottom:948.930000px;}
.y106{bottom:949.470000px;}
.y146{bottom:955.050000px;}
.y75{bottom:957.930000px;}
.y8{bottom:965.850000px;}
.ybe{bottom:967.110000px;}
.y1ae{bottom:967.290000px;}
.y105{bottom:968.550000px;}
.y145{bottom:973.230000px;}
.y74{bottom:976.290000px;}
.y1ad{bottom:985.650000px;}
.y7{bottom:985.830000px;}
.ybd{bottom:986.190000px;}
.y104{bottom:987.630000px;}
.y144{bottom:991.590000px;}
.y73{bottom:994.650000px;}
.y1ac{bottom:1003.830000px;}
.ybc{bottom:1005.270000px;}
.y103{bottom:1006.710000px;}
.y143{bottom:1009.950000px;}
.y6{bottom:1011.390000px;}
.y72{bottom:1012.830000px;}
.ybb{bottom:1024.170000px;}
.y1ab{bottom:1025.250000px;}
.y102{bottom:1025.790000px;}
.y142{bottom:1028.130000px;}
.y71{bottom:1031.190000px;}
.y1dd{bottom:1036.230000px;}
.y5{bottom:1037.130000px;}
.yba{bottom:1043.250000px;}
.y1aa{bottom:1043.430000px;}
.y101{bottom:1044.870000px;}
.y141{bottom:1046.490000px;}
.ye3{bottom:1048.650000px;}
.y70{bottom:1049.550000px;}
.y193{bottom:1049.730000px;}
.y1d9{bottom:1059.090000px;}
.y4{bottom:1061.610000px;}
.y1a9{bottom:1061.790000px;}
.yb9{bottom:1062.330000px;}
.y140{bottom:1064.850000px;}
.ye2{bottom:1067.010000px;}
.y6f{bottom:1067.910000px;}
.y1d8{bottom:1078.710000px;}
.yb8{bottom:1081.410000px;}
.y1dc{bottom:1081.950000px;}
.y2{bottom:1082.310000px;}
.y13f{bottom:1083.210000px;}
.ye1{bottom:1085.370000px;}
.y6e{bottom:1086.090000px;}
.y1d7{bottom:1098.510000px;}
.y13e{bottom:1101.390000px;}
.y1db{bottom:1101.570000px;}
.y1{bottom:1102.110000px;}
.ye0{bottom:1103.730000px;}
.y6d{bottom:1104.450000px;}
.y172{bottom:1104.630000px;}
.y13d{bottom:1119.750000px;}
.y1da{bottom:1121.190000px;}
.y1d6{bottom:1121.370000px;}
.ydf{bottom:1121.910000px;}
.y6c{bottom:1122.810000px;}
.yde{bottom:1140.270000px;}
.y6b{bottom:1140.990000px;}
.y13c{bottom:1141.170000px;}
.y67{bottom:1159.020000px;}
.y66{bottom:1175.940000px;}
.h12{height:18.180000px;}
.h14{height:18.216000px;}
.h7{height:18.360000px;}
.h11{height:18.396000px;}
.hf{height:20.160000px;}
.h13{height:45.637031px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.ha{height:55.291992px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.he{height:65.860087px;}
.h2{height:65.884219px;}
.h10{height:73.722656px;}
.h4{height:86.255508px;}
.hd{height:93.665585px;}
.h8{height:769.065000px;}
.h9{height:962.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:49.500000px;}
.w10{width:88.920000px;}
.wa{width:94.860000px;}
.wc{width:106.020000px;}
.w12{width:110.160000px;}
.we{width:114.660000px;}
.w14{width:135.900000px;}
.w8{width:140.760000px;}
.w7{width:191.910000px;}
.w13{width:196.770000px;}
.w4{width:216.750000px;}
.wd{width:217.830000px;}
.w11{width:222.510000px;}
.wb{width:226.650000px;}
.w9{width:237.810000px;}
.wf{width:243.750000px;}
.w5{width:254.694110px;}
.w3{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x5{left:10.800000px;}
.x1{left:84.995987px;}
.x17{left:97.775987px;}
.x24{left:101.915987px;}
.x10{left:103.355987px;}
.x28{left:111.275987px;}
.x14{left:116.855987px;}
.x25{left:119.015987px;}
.x2a{left:122.615987px;}
.x16{left:130.535987px;}
.x29{left:136.655987px;}
.x9{left:145.655987px;}
.xf{left:147.095987px;}
.x2b{left:167.609987px;}
.x15{left:184.169987px;}
.x18{left:190.289987px;}
.x11{left:197.309987px;}
.x6{left:202.005000px;}
.x8{left:265.575000px;}
.x2c{left:309.135000px;}
.x19{left:313.275000px;}
.x12{left:324.435000px;}
.x26{left:330.375000px;}
.x13{left:418.034987px;}
.x27{left:424.694987px;}
.xb{left:473.144987px;}
.x1f{left:475.124987px;}
.x1b{left:477.464987px;}
.xc{left:485.564987px;}
.x1d{left:491.684987px;}
.x22{left:494.384987px;}
.x31{left:503.204987px;}
.x1c{left:504.464987px;}
.x1a{left:506.084987px;}
.x2e{left:509.144987px;}
.x30{left:513.464987px;}
.xd{left:531.464987px;}
.x34{left:533.264987px;}
.x2f{left:550.724987px;}
.x1e{left:571.244987px;}
.x32{left:578.444987px;}
.x4{left:586.545000px;}
.x23{left:592.664987px;}
.x7{left:597.314959px;}
.xe{left:666.510000px;}
.x33{left:671.370000px;}
.x20{left:692.610000px;}
.x2d{left:746.789987px;}
.xa{left:756.330000px;}
.x21{left:801.689987px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls18{letter-spacing:-0.305067pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls2{letter-spacing:-0.069867pt;}
.ls3{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.036480pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.124800pt;}
.ls9{letter-spacing:0.154667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.272000pt;}
.lsc{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.693333pt;}
.ls17{letter-spacing:12.112640pt;}
.ls16{letter-spacing:39.632640pt;}
.lsd{letter-spacing:149.914880pt;}
.ls11{letter-spacing:152.912640pt;}
.lsa{letter-spacing:291.994880pt;}
.wsb{word-spacing:-53.120000pt;}
.ws9{word-spacing:-14.656000pt;}
.wsc{word-spacing:-12.129920pt;}
.wsa{word-spacing:-12.058987pt;}
.ws0{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.ws2{word-spacing:-11.947520pt;}
.ws1{word-spacing:-11.935253pt;}
.ws4{word-spacing:-11.024000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.832000pt;}
.ws3{word-spacing:-10.768000pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-3.528747pt;}
._7{margin-left:-1.993813pt;}
._1{margin-left:-1.048320pt;}
._2{width:0.903040pt;}
._3{width:2.314667pt;}
._5{width:3.700267pt;}
._4{width:4.940160pt;}
._14{width:6.321280pt;}
._13{width:7.277440pt;}
._1c{width:8.256000pt;}
._11{width:9.228800pt;}
._10{width:10.252160pt;}
._6{width:12.908160pt;}
._8{width:13.892267pt;}
._12{width:14.820480pt;}
._d{width:15.882880pt;}
._18{width:17.280000pt;}
._b{width:18.351573pt;}
._a{width:19.257387pt;}
._9{width:20.451200pt;}
._2f{width:21.354240pt;}
._26{width:22.257280pt;}
._17{width:23.372800pt;}
._f{width:24.275840pt;}
._e{width:25.285120pt;}
._1a{width:26.544000pt;}
._1b{width:27.560960pt;}
._2a{width:28.631680pt;}
._24{width:29.640960pt;}
._23{width:30.597120pt;}
._22{width:31.765760pt;}
._16{width:32.775040pt;}
._15{width:33.731200pt;}
._39{width:34.687360pt;}
._25{width:35.856000pt;}
._3b{width:36.918400pt;}
._33{width:37.821440pt;}
._32{width:38.730240pt;}
._34{width:40.477440pt;}
._2d{width:41.911680pt;}
._36{width:43.027200pt;}
._38{width:44.514560pt;}
._29{width:45.630080pt;}
._3f{width:46.639360pt;}
._35{width:47.648640pt;}
._30{width:49.242240pt;}
._37{width:50.570240pt;}
._3c{width:52.256853pt;}
._28{width:53.863680pt;}
._27{width:54.979200pt;}
._3a{width:56.360320pt;}
._40{width:60.875520pt;}
._2e{width:62.097280pt;}
._42{width:64.208000pt;}
._2b{width:65.443840pt;}
._3e{width:67.621760pt;}
._3d{width:68.577920pt;}
._1e{width:101.184000pt;}
._1d{width:102.424320pt;}
._43{width:106.718080pt;}
._19{width:108.232320pt;}
._31{width:121.644800pt;}
._41{width:133.130880pt;}
._2c{width:149.914880pt;}
._1f{width:755.906773pt;}
._21{width:942.206080pt;}
._20{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.858433pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y65{bottom:-1002.533333pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:0.000081pt;}
.y6a{bottom:2.720000pt;}
.yf{bottom:3.520000pt;}
.ya9{bottom:3.560000pt;}
.y62{bottom:15.040000pt;}
.y39{bottom:19.840000pt;}
.y61{bottom:30.880000pt;}
.y38{bottom:36.000000pt;}
.y60{bottom:46.560000pt;}
.y3{bottom:50.240000pt;}
.y68{bottom:50.720000pt;}
.y37{bottom:52.320000pt;}
.y5f{bottom:62.426667pt;}
.y69{bottom:63.840000pt;}
.y36{bottom:68.666667pt;}
.y64{bottom:69.183455pt;}
.y10{bottom:72.000000pt;}
.y5e{bottom:78.266667pt;}
.y3a{bottom:80.480000pt;}
.y35{bottom:84.986667pt;}
.y5d{bottom:94.106667pt;}
.y34{bottom:101.146667pt;}
.y192{bottom:108.640000pt;}
.y5c{bottom:109.946667pt;}
.y1a8{bottom:111.360000pt;}
.y171{bottom:113.920000pt;}
.ydd{bottom:116.160000pt;}
.y33{bottom:117.466667pt;}
.ya2{bottom:119.040000pt;}
.y13b{bottom:123.040000pt;}
.y191{bottom:124.800000pt;}
.y5b{bottom:125.626667pt;}
.y1a7{bottom:127.520000pt;}
.yb7{bottom:129.920000pt;}
.y170{bottom:130.240000pt;}
.y100{bottom:130.400000pt;}
.y1d5{bottom:132.800000pt;}
.ydc{bottom:133.120000pt;}
.y32{bottom:133.786667pt;}
.y128{bottom:134.906667pt;}
.ya1{bottom:135.226667pt;}
.y13a{bottom:139.386667pt;}
.y5a{bottom:141.466667pt;}
.y190{bottom:143.866667pt;}
.yb6{bottom:146.266667pt;}
.y16f{bottom:146.426667pt;}
.yff{bottom:146.586667pt;}
.y31{bottom:149.946667pt;}
.ydb{bottom:150.106667pt;}
.y1d4{bottom:150.426667pt;}
.y127{bottom:151.226667pt;}
.ya0{bottom:151.546667pt;}
.y139{bottom:155.546667pt;}
.y59{bottom:157.306667pt;}
.yb5{bottom:162.426667pt;}
.y16e{bottom:162.746667pt;}
.yfe{bottom:162.906667pt;}
.y30{bottom:166.266667pt;}
.y126{bottom:167.546667pt;}
.y9f{bottom:167.866667pt;}
.y138{bottom:168.346667pt;}
.y1d3{bottom:170.746667pt;}
.y58{bottom:173.146667pt;}
.yb4{bottom:178.746667pt;}
.y16d{bottom:179.066667pt;}
.yfd{bottom:179.226667pt;}
.y1a6{bottom:181.786667pt;}
.y2f{bottom:182.586667pt;}
.y125{bottom:183.866667pt;}
.y9e{bottom:184.026667pt;}
.y1d2{bottom:188.186667pt;}
.yb3{bottom:195.066667pt;}
.y16c{bottom:195.386667pt;}
.yfc{bottom:195.546667pt;}
.y57{bottom:196.666667pt;}
.y1a5{bottom:197.946667pt;}
.y18f{bottom:198.106667pt;}
.y2e{bottom:198.906667pt;}
.y124{bottom:200.026667pt;}
.y9d{bottom:200.346667pt;}
.y1d1{bottom:205.786667pt;}
.yb2{bottom:211.386667pt;}
.y16b{bottom:211.546667pt;}
.yfb{bottom:211.706667pt;}
.y18e{bottom:214.266667pt;}
.y2d{bottom:215.066667pt;}
.yda{bottom:215.226667pt;}
.y123{bottom:216.346667pt;}
.y9c{bottom:216.666667pt;}
.y1d0{bottom:223.226667pt;}
.yb1{bottom:227.546667pt;}
.y16a{bottom:227.866667pt;}
.yfa{bottom:228.026667pt;}
.yd9{bottom:228.666667pt;}
.y18d{bottom:230.586667pt;}
.y2c{bottom:231.386667pt;}
.y122{bottom:232.666667pt;}
.y9b{bottom:232.986667pt;}
.y1cf{bottom:243.706667pt;}
.yb0{bottom:243.866667pt;}
.yf9{bottom:244.346667pt;}
.yd8{bottom:245.466667pt;}
.y18c{bottom:246.746667pt;}
.y169{bottom:246.906667pt;}
.y2b{bottom:247.706667pt;}
.y121{bottom:248.826667pt;}
.y9a{bottom:249.146667pt;}
.yaf{bottom:260.186667pt;}
.yf8{bottom:260.506667pt;}
.y1ce{bottom:261.146667pt;}
.yd7{bottom:262.426667pt;}
.y168{bottom:263.066667pt;}
.y2a{bottom:264.026667pt;}
.y120{bottom:265.146667pt;}
.y99{bottom:265.466667pt;}
.y56{bottom:271.866667pt;}
.yae{bottom:276.346667pt;}
.yf7{bottom:276.826667pt;}
.y11f{bottom:278.586667pt;}
.yd6{bottom:279.386667pt;}
.y29{bottom:280.186667pt;}
.y98{bottom:281.786667pt;}
.yad{bottom:292.666667pt;}
.yf6{bottom:293.146667pt;}
.y11e{bottom:295.546667pt;}
.y167{bottom:295.706667pt;}
.y1cd{bottom:296.186667pt;}
.yd5{bottom:296.346667pt;}
.y28{bottom:296.546667pt;}
.y97{bottom:298.106667pt;}
.y55{bottom:298.306667pt;}
.y18b{bottom:298.426667pt;}
.yac{bottom:308.986667pt;}
.yf5{bottom:309.466667pt;}
.y166{bottom:311.866667pt;}
.y11d{bottom:312.506667pt;}
.y27{bottom:312.866667pt;}
.yd4{bottom:313.306667pt;}
.y1cc{bottom:313.786667pt;}
.y96{bottom:314.266667pt;}
.y18a{bottom:314.586667pt;}
.yf4{bottom:322.106667pt;}
.y54{bottom:324.866667pt;}
.yab{bottom:325.306667pt;}
.y165{bottom:328.186667pt;}
.y26{bottom:329.026667pt;}
.y11c{bottom:329.466667pt;}
.y95{bottom:330.586667pt;}
.y189{bottom:330.906667pt;}
.yd3{bottom:333.786667pt;}
.y1cb{bottom:334.106667pt;}
.yaa{bottom:338.746667pt;}
.y137{bottom:339.866667pt;}
.y164{bottom:344.506667pt;}
.y25{bottom:345.346667pt;}
.y11b{bottom:346.426667pt;}
.y94{bottom:346.906667pt;}
.y188{bottom:347.066667pt;}
.yd2{bottom:350.106667pt;}
.y53{bottom:351.266667pt;}
.y1ca{bottom:351.546667pt;}
.ya8{bottom:355.546667pt;}
.y136{bottom:356.226667pt;}
.y163{bottom:360.706667pt;}
.y24{bottom:361.666667pt;}
.y93{bottom:363.106667pt;}
.y187{bottom:363.426667pt;}
.yd1{bottom:366.306667pt;}
.y11a{bottom:366.946667pt;}
.y1c9{bottom:369.186667pt;}
.ya7{bottom:372.546667pt;}
.y52{bottom:377.826667pt;}
.y23{bottom:377.986667pt;}
.y92{bottom:379.426667pt;}
.y186{bottom:379.746667pt;}
.y162{bottom:379.906667pt;}
.yd0{bottom:382.626667pt;}
.y119{bottom:383.106667pt;}
.y135{bottom:385.186667pt;}
.y1c8{bottom:386.786667pt;}
.ya6{bottom:389.506667pt;}
.y22{bottom:394.146667pt;}
.y91{bottom:395.746667pt;}
.y185{bottom:396.066667pt;}
.y161{bottom:398.786667pt;}
.ycf{bottom:398.946667pt;}
.y118{bottom:399.426667pt;}
.y51{bottom:404.226667pt;}
.ya5{bottom:406.466667pt;}
.y1c7{bottom:407.106667pt;}
.y21{bottom:410.466667pt;}
.y90{bottom:412.066667pt;}
.y184{bottom:412.226667pt;}
.y160{bottom:414.946667pt;}
.yce{bottom:415.266667pt;}
.y117{bottom:415.746667pt;}
.ya4{bottom:423.426667pt;}
.y1c6{bottom:424.546667pt;}
.y20{bottom:426.786667pt;}
.y8f{bottom:428.226667pt;}
.y50{bottom:430.786667pt;}
.y15f{bottom:431.266667pt;}
.ycd{bottom:431.426667pt;}
.y116{bottom:431.906667pt;}
.ya3{bottom:440.386667pt;}
.y1c5{bottom:442.146667pt;}
.y1f{bottom:442.946667pt;}
.y8e{bottom:444.546667pt;}
.y183{bottom:447.426667pt;}
.ycc{bottom:447.746667pt;}
.y115{bottom:448.226667pt;}
.y15e{bottom:450.306667pt;}
.y4f{bottom:457.186667pt;}
.y1e{bottom:459.266667pt;}
.y8d{bottom:460.866667pt;}
.y1c4{bottom:462.466667pt;}
.y182{bottom:463.746667pt;}
.ycb{bottom:464.066667pt;}
.y114{bottom:464.546667pt;}
.y15d{bottom:466.466667pt;}
.y1d{bottom:475.586667pt;}
.y8c{bottom:477.026667pt;}
.y1c3{bottom:479.906667pt;}
.y181{bottom:480.066667pt;}
.yca{bottom:480.226667pt;}
.y113{bottom:480.866667pt;}
.y15c{bottom:482.786667pt;}
.y4e{bottom:483.746667pt;}
.yf3{bottom:489.666667pt;}
.y1c{bottom:491.906667pt;}
.y8b{bottom:493.346667pt;}
.y180{bottom:496.386667pt;}
.yc9{bottom:496.546667pt;}
.y112{bottom:497.026667pt;}
.y15b{bottom:498.946667pt;}
.y1c2{bottom:500.226667pt;}
.yf2{bottom:503.106667pt;}
.y1b{bottom:508.093333pt;}
.y8a{bottom:509.666667pt;}
.y4d{bottom:510.173333pt;}
.y17f{bottom:512.546667pt;}
.yc8{bottom:512.866667pt;}
.y111{bottom:513.346667pt;}
.y15a{bottom:515.266667pt;}
.y1c1{bottom:517.666667pt;}
.yf1{bottom:520.066667pt;}
.y1a{bottom:524.413333pt;}
.y89{bottom:525.986667pt;}
.y1a4{bottom:528.866667pt;}
.yc7{bottom:529.186667pt;}
.y110{bottom:529.666667pt;}
.y159{bottom:531.586667pt;}
.y4c{bottom:536.733333pt;}
.yf0{bottom:537.026667pt;}
.y1c0{bottom:538.146667pt;}
.y19{bottom:540.733333pt;}
.y88{bottom:542.146667pt;}
.y1a3{bottom:545.186667pt;}
.yc6{bottom:545.346667pt;}
.y10f{bottom:545.986667pt;}
.y158{bottom:547.746667pt;}
.yef{bottom:553.986667pt;}
.y134{bottom:554.786667pt;}
.y1bf{bottom:555.426667pt;}
.y18{bottom:557.053333pt;}
.y87{bottom:558.466667pt;}
.yc5{bottom:561.666667pt;}
.y10e{bottom:562.146667pt;}
.y4b{bottom:563.133333pt;}
.y157{bottom:564.066667pt;}
.y1a2{bottom:564.226667pt;}
.y133{bottom:568.226667pt;}
.yee{bottom:570.946667pt;}
.y17{bottom:573.213333pt;}
.y86{bottom:574.786667pt;}
.y1be{bottom:575.906667pt;}
.y4a{bottom:577.693333pt;}
.yc4{bottom:578.013333pt;}
.y10d{bottom:578.493333pt;}
.y156{bottom:580.413333pt;}
.y1a1{bottom:583.133333pt;}
.y132{bottom:585.213333pt;}
.y16{bottom:589.533333pt;}
.y85{bottom:591.133333pt;}
.yed{bottom:591.453333pt;}
.y49{bottom:592.413333pt;}
.y1bd{bottom:593.373333pt;}
.yc3{bottom:594.173333pt;}
.y10c{bottom:594.813333pt;}
.y155{bottom:596.733333pt;}
.y1a0{bottom:599.293333pt;}
.y131{bottom:602.173333pt;}
.y15{bottom:605.853333pt;}
.y48{bottom:606.973333pt;}
.y84{bottom:607.293333pt;}
.yec{bottom:607.613333pt;}
.yc2{bottom:610.493333pt;}
.y1bc{bottom:610.813333pt;}
.y10b{bottom:610.973333pt;}
.y154{bottom:612.893333pt;}
.y19f{bottom:615.613333pt;}
.y130{bottom:618.973333pt;}
.y47{bottom:621.693333pt;}
.y14{bottom:622.013333pt;}
.yc1{bottom:623.293333pt;}
.y83{bottom:623.613333pt;}
.yeb{bottom:623.933333pt;}
.y10a{bottom:627.293333pt;}
.y1bb{bottom:628.413333pt;}
.y153{bottom:629.213333pt;}
.y19e{bottom:634.653333pt;}
.y46{bottom:636.253333pt;}
.y13{bottom:638.333333pt;}
.y12f{bottom:639.453333pt;}
.y82{bottom:639.933333pt;}
.y109{bottom:640.093333pt;}
.yea{bottom:640.253333pt;}
.y17e{bottom:645.533333pt;}
.y152{bottom:648.253333pt;}
.y1ba{bottom:648.893333pt;}
.y19d{bottom:650.813333pt;}
.y45{bottom:650.973333pt;}
.y12{bottom:654.653333pt;}
.y12e{bottom:655.773333pt;}
.y81{bottom:656.093333pt;}
.ye9{bottom:656.573333pt;}
.y17d{bottom:661.853333pt;}
.y151{bottom:664.413333pt;}
.y44{bottom:665.533333pt;}
.y1b9{bottom:666.173333pt;}
.y19c{bottom:667.133333pt;}
.y11{bottom:670.973333pt;}
.y12d{bottom:672.093333pt;}
.y80{bottom:672.413333pt;}
.ye8{bottom:672.733333pt;}
.y17c{bottom:678.013333pt;}
.y150{bottom:680.733333pt;}
.y19b{bottom:683.453333pt;}
.y1b8{bottom:683.773333pt;}
.y43{bottom:688.093333pt;}
.y12c{bottom:688.253333pt;}
.y7f{bottom:688.733333pt;}
.ye7{bottom:689.053333pt;}
.y17b{bottom:694.333333pt;}
.y14f{bottom:697.053333pt;}
.y19a{bottom:699.613333pt;}
.y1b7{bottom:701.373333pt;}
.y12b{bottom:704.573333pt;}
.y7e{bottom:705.053333pt;}
.ye6{bottom:705.373333pt;}
.y17a{bottom:710.653333pt;}
.y14e{bottom:713.213333pt;}
.y42{bottom:714.813333pt;}
.y199{bottom:715.933333pt;}
.y12a{bottom:720.893333pt;}
.y7d{bottom:721.213333pt;}
.ye5{bottom:721.533333pt;}
.y1b6{bottom:721.693333pt;}
.y179{bottom:726.813333pt;}
.y14d{bottom:729.533333pt;}
.y198{bottom:732.253333pt;}
.y129{bottom:733.693333pt;}
.ye4{bottom:734.333333pt;}
.y7c{bottom:737.533333pt;}
.y1b5{bottom:739.133333pt;}
.y41{bottom:741.253333pt;}
.y14c{bottom:745.853333pt;}
.y178{bottom:746.013333pt;}
.y197{bottom:748.413333pt;}
.y7b{bottom:753.853333pt;}
.ye{bottom:755.613333pt;}
.y1b4{bottom:756.733333pt;}
.y40{bottom:756.933333pt;}
.y14b{bottom:762.173333pt;}
.y196{bottom:764.733333pt;}
.y177{bottom:764.893333pt;}
.y7a{bottom:770.173333pt;}
.y3f{bottom:772.773333pt;}
.y1b3{bottom:775.773333pt;}
.yd{bottom:775.933333pt;}
.y14a{bottom:778.333333pt;}
.y176{bottom:781.053333pt;}
.y79{bottom:786.333333pt;}
.y3e{bottom:788.613333pt;}
.yc{bottom:793.373333pt;}
.y149{bottom:794.653333pt;}
.y1b2{bottom:794.813333pt;}
.y175{bottom:797.373333pt;}
.y195{bottom:800.133333pt;}
.y78{bottom:802.693333pt;}
.y3d{bottom:804.453333pt;}
.yb{bottom:809.733333pt;}
.y1b1{bottom:811.013333pt;}
.y108{bottom:813.573333pt;}
.y148{bottom:813.733333pt;}
.y194{bottom:816.293333pt;}
.y174{bottom:816.453333pt;}
.y77{bottom:819.013333pt;}
.y3c{bottom:820.133333pt;}
.ya{bottom:825.893333pt;}
.y107{bottom:827.013333pt;}
.y1b0{bottom:827.173333pt;}
.yc0{bottom:829.253333pt;}
.y173{bottom:832.613333pt;}
.y147{bottom:832.773333pt;}
.y76{bottom:835.173333pt;}
.y9{bottom:842.213333pt;}
.ybf{bottom:842.693333pt;}
.y3b{bottom:843.173333pt;}
.y1af{bottom:843.493333pt;}
.y106{bottom:843.973333pt;}
.y146{bottom:848.933333pt;}
.y75{bottom:851.493333pt;}
.y8{bottom:858.533333pt;}
.ybe{bottom:859.653333pt;}
.y1ae{bottom:859.813333pt;}
.y105{bottom:860.933333pt;}
.y145{bottom:865.093333pt;}
.y74{bottom:867.813333pt;}
.y1ad{bottom:876.133333pt;}
.y7{bottom:876.293333pt;}
.ybd{bottom:876.613333pt;}
.y104{bottom:877.893333pt;}
.y144{bottom:881.413333pt;}
.y73{bottom:884.133333pt;}
.y1ac{bottom:892.293333pt;}
.ybc{bottom:893.573333pt;}
.y103{bottom:894.853333pt;}
.y143{bottom:897.733333pt;}
.y6{bottom:899.013333pt;}
.y72{bottom:900.293333pt;}
.ybb{bottom:910.373333pt;}
.y1ab{bottom:911.333333pt;}
.y102{bottom:911.813333pt;}
.y142{bottom:913.893333pt;}
.y71{bottom:916.613333pt;}
.y1dd{bottom:921.093333pt;}
.y5{bottom:921.893333pt;}
.yba{bottom:927.333333pt;}
.y1aa{bottom:927.493333pt;}
.y101{bottom:928.773333pt;}
.y141{bottom:930.213333pt;}
.ye3{bottom:932.133333pt;}
.y70{bottom:932.933333pt;}
.y193{bottom:933.093333pt;}
.y1d9{bottom:941.413333pt;}
.y4{bottom:943.653333pt;}
.y1a9{bottom:943.813333pt;}
.yb9{bottom:944.293333pt;}
.y140{bottom:946.533333pt;}
.ye2{bottom:948.453333pt;}
.y6f{bottom:949.253333pt;}
.y1d8{bottom:958.853333pt;}
.yb8{bottom:961.253333pt;}
.y1dc{bottom:961.733333pt;}
.y2{bottom:962.053333pt;}
.y13f{bottom:962.853333pt;}
.ye1{bottom:964.773333pt;}
.y6e{bottom:965.413333pt;}
.y1d7{bottom:976.453333pt;}
.y13e{bottom:979.013333pt;}
.y1db{bottom:979.173333pt;}
.y1{bottom:979.653333pt;}
.ye0{bottom:981.093333pt;}
.y6d{bottom:981.733333pt;}
.y172{bottom:981.893333pt;}
.y13d{bottom:995.333333pt;}
.y1da{bottom:996.613333pt;}
.y1d6{bottom:996.773333pt;}
.ydf{bottom:997.253333pt;}
.y6c{bottom:998.053333pt;}
.yde{bottom:1013.573333pt;}
.y6b{bottom:1014.213333pt;}
.y13c{bottom:1014.373333pt;}
.y67{bottom:1030.240000pt;}
.y66{bottom:1045.280000pt;}
.h12{height:16.160000pt;}
.h14{height:16.192000pt;}
.h7{height:16.320000pt;}
.h11{height:16.352000pt;}
.hf{height:17.920000pt;}
.h13{height:40.566250pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.ha{height:49.148438pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.he{height:58.542299pt;}
.h2{height:58.563750pt;}
.h10{height:65.531250pt;}
.h4{height:76.671562pt;}
.hd{height:83.258298pt;}
.h8{height:683.613333pt;}
.h9{height:855.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.000000pt;}
.w10{width:79.040000pt;}
.wa{width:84.320000pt;}
.wc{width:94.240000pt;}
.w12{width:97.920000pt;}
.we{width:101.920000pt;}
.w14{width:120.800000pt;}
.w8{width:125.120000pt;}
.w7{width:170.586667pt;}
.w13{width:174.906667pt;}
.w4{width:192.666667pt;}
.wd{width:193.626667pt;}
.w11{width:197.786667pt;}
.wb{width:201.466667pt;}
.w9{width:211.386667pt;}
.wf{width:216.666667pt;}
.w5{width:226.394764pt;}
.w3{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x5{left:9.600000pt;}
.x1{left:75.551988pt;}
.x17{left:86.911988pt;}
.x24{left:90.591988pt;}
.x10{left:91.871988pt;}
.x28{left:98.911988pt;}
.x14{left:103.871988pt;}
.x25{left:105.791988pt;}
.x2a{left:108.991988pt;}
.x16{left:116.031988pt;}
.x29{left:121.471988pt;}
.x9{left:129.471988pt;}
.xf{left:130.751988pt;}
.x2b{left:148.986655pt;}
.x15{left:163.706655pt;}
.x18{left:169.146655pt;}
.x11{left:175.386655pt;}
.x6{left:179.560000pt;}
.x8{left:236.066667pt;}
.x2c{left:274.786667pt;}
.x19{left:278.466667pt;}
.x12{left:288.386667pt;}
.x26{left:293.666667pt;}
.x13{left:371.586655pt;}
.x27{left:377.506655pt;}
.xb{left:420.573322pt;}
.x1f{left:422.333322pt;}
.x1b{left:424.413322pt;}
.xc{left:431.613322pt;}
.x1d{left:437.053322pt;}
.x22{left:439.453322pt;}
.x31{left:447.293322pt;}
.x1c{left:448.413322pt;}
.x1a{left:449.853322pt;}
.x2e{left:452.573322pt;}
.x30{left:456.413322pt;}
.xd{left:472.413322pt;}
.x34{left:474.013322pt;}
.x2f{left:489.533322pt;}
.x1e{left:507.773322pt;}
.x32{left:514.173322pt;}
.x4{left:521.373333pt;}
.x23{left:526.813322pt;}
.x7{left:530.946630pt;}
.xe{left:592.453333pt;}
.x33{left:596.773333pt;}
.x20{left:615.653333pt;}
.x2d{left:663.813322pt;}
.xa{left:672.293333pt;}
.x21{left:712.613322pt;}
.x2{left:718.239988pt;}
}




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