
    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_7f77cb2561e68d4611d8ab63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f5f8c7aa7b902a2a3a478eed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_91ab78ec4f043de2f8d03057.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_e3f86ae4003e469b7141a6a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_39731f4f8f00b9337e496697.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7b5f4cd9c6eb935f62c9a0bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.864000px;}
.ls9{letter-spacing:15.120000px;}
.ls5{letter-spacing:64.200000px;}
.lsb{letter-spacing:64.224000px;}
.ls0{letter-spacing:753.300000px;}
.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;}
}
.ws6{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws0{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-15.660000px;}
._3{margin-left:-13.716000px;}
._9{margin-left:-10.764000px;}
._8{margin-left:-9.324000px;}
._7{margin-left:-7.740000px;}
._2{margin-left:-6.000000px;}
._6{margin-left:-3.876000px;}
._4{margin-left:-2.616000px;}
._0{margin-left:-1.008000px;}
._1{width:1.020000px;}
._a{width:2.388000px;}
._15{width:3.744000px;}
._16{width:4.920000px;}
._17{width:6.552000px;}
._f{width:7.992000px;}
._10{width:9.072000px;}
._14{width:10.296000px;}
._e{width:12.240000px;}
._21{width:13.536000px;}
._23{width:14.976000px;}
._1c{width:16.488000px;}
._13{width:19.008000px;}
._1b{width:20.088000px;}
._1a{width:21.168000px;}
._c{width:22.176000px;}
._d{width:23.616000px;}
._22{width:24.912000px;}
._2c{width:26.112000px;}
._24{width:27.720000px;}
._11{width:29.448000px;}
._12{width:30.528000px;}
._1f{width:32.088000px;}
._27{width:34.056000px;}
._18{width:36.072000px;}
._19{width:37.332000px;}
._29{width:40.032000px;}
._1d{width:43.992000px;}
._1e{width:45.120000px;}
._2d{width:46.896000px;}
._26{width:58.248000px;}
._25{width:59.472000px;}
._2a{width:62.064000px;}
._2b{width:63.144000px;}
._28{width:73.512000px;}
._20{width:778.500000px;}
._b{width:1634.604000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:2.160000px;}
.y7b{bottom:3.960000px;}
.y1af{bottom:3.996000px;}
.y1ac{bottom:5.400000px;}
.yc7{bottom:5.940000px;}
.yb1{bottom:6.120000px;}
.y79{bottom:9.360000px;}
.y146{bottom:9.405000px;}
.y77{bottom:9.540000px;}
.yc1{bottom:9.570000px;}
.ycd{bottom:9.585000px;}
.y73{bottom:17.640000px;}
.y1c2{bottom:18.900000px;}
.y16a{bottom:19.080000px;}
.ya9{bottom:21.960000px;}
.ye0{bottom:22.854000px;}
.y153{bottom:24.480000px;}
.y8a{bottom:24.660000px;}
.y116{bottom:24.690000px;}
.y1ae{bottom:24.696000px;}
.y9a{bottom:24.705000px;}
.y96{bottom:25.734000px;}
.y134{bottom:26.640000px;}
.yc6{bottom:26.685000px;}
.ydf{bottom:26.814000px;}
.yb0{bottom:26.820000px;}
.ybf{bottom:30.240000px;}
.y12d{bottom:30.420000px;}
.y93{bottom:33.660000px;}
.y11e{bottom:33.705000px;}
.y75{bottom:37.290000px;}
.ya8{bottom:42.660000px;}
.y184{bottom:45.180000px;}
.yf5{bottom:45.360000px;}
.y115{bottom:45.390000px;}
.y95{bottom:46.434000px;}
.ybe{bottom:50.940000px;}
.y12c{bottom:51.120000px;}
.y120{bottom:52.560000px;}
.y89{bottom:54.360000px;}
.y11d{bottom:54.405000px;}
.y72{bottom:57.420000px;}
.ya7{bottom:63.360000px;}
.y183{bottom:65.880000px;}
.y132{bottom:66.060000px;}
.y163{bottom:66.090000px;}
.y188{bottom:66.105000px;}
.ybd{bottom:71.640000px;}
.y12b{bottom:71.820000px;}
.y92{bottom:75.060000px;}
.y114{bottom:75.090000px;}
.y11c{bottom:75.105000px;}
.yba{bottom:80.280000px;}
.y128{bottom:80.460000px;}
.y111{bottom:83.730000px;}
.y88{bottom:84.060000px;}
.yd5{bottom:84.090000px;}
.yae{bottom:84.105000px;}
.y71{bottom:91.080000px;}
.ybc{bottom:92.340000px;}
.y12a{bottom:92.520000px;}
.y182{bottom:95.610000px;}
.yf4{bottom:95.760000px;}
.y113{bottom:95.790000px;}
.y11b{bottom:95.805000px;}
.yb9{bottom:101.340000px;}
.y127{bottom:101.520000px;}
.y91{bottom:104.760000px;}
.ya6{bottom:104.790000px;}
.ybb{bottom:113.040000px;}
.y129{bottom:113.220000px;}
.y87{bottom:113.790000px;}
.ye1{bottom:115.740000px;}
.y181{bottom:116.310000px;}
.y70{bottom:116.460000px;}
.y112{bottom:116.490000px;}
.yf3{bottom:116.505000px;}
.y97{bottom:118.800000px;}
.yb8{bottom:122.040000px;}
.y126{bottom:122.250000px;}
.y1ad{bottom:122.760000px;}
.y162{bottom:125.130000px;}
.y90{bottom:125.460000px;}
.y110{bottom:125.490000px;}
.y1b1{bottom:125.505000px;}
.y1c0{bottom:126.396000px;}
.y26{bottom:128.556000px;}
.y177{bottom:132.696000px;}
.yde{bottom:133.236000px;}
.y6d{bottom:133.956000px;}
.yf8{bottom:134.316000px;}
.ya5{bottom:134.490000px;}
.y94{bottom:136.296000px;}
.y180{bottom:137.010000px;}
.y1ab{bottom:137.160000px;}
.y13d{bottom:137.190000px;}
.y36{bottom:138.096000px;}
.y5e{bottom:140.616000px;}
.y156{bottom:142.056000px;}
.y86{bottom:143.490000px;}
.y15a{bottom:145.296000px;}
.y6f{bottom:146.016000px;}
.y8f{bottom:146.160000px;}
.y161{bottom:146.190000px;}
.yf2{bottom:146.205000px;}
.y1c4{bottom:152.490000px;}
.ydd{bottom:155.160000px;}
.ya4{bottom:155.190000px;}
.y10{bottom:157.710000px;}
.y1aa{bottom:157.725000px;}
.y5d{bottom:157.890000px;}
.y155{bottom:159.690000px;}
.y10a{bottom:161.490000px;}
.y17e{bottom:166.350000px;}
.y160{bottom:166.890000px;}
.yf1{bottom:166.905000px;}
.y1bf{bottom:167.790000px;}
.y25{bottom:169.950000px;}
.yf7{bottom:170.310000px;}
.y85{bottom:173.190000px;}
.y176{bottom:174.090000px;}
.y6c{bottom:175.350000px;}
.ydc{bottom:175.860000px;}
.ya3{bottom:175.890000px;}
.y17f{bottom:178.410000px;}
.y1a9{bottom:178.425000px;}
.y13c{bottom:178.590000px;}
.y4b{bottom:182.010000px;}
.ycb{bottom:183.990000px;}
.ya0{bottom:184.530000px;}
.yd9{bottom:186.510000px;}
.y6a{bottom:187.410000px;}
.yf0{bottom:187.605000px;}
.y35{bottom:191.550000px;}
.y123{bottom:192.990000px;}
.y135{bottom:193.170000px;}
.yd4{bottom:193.890000px;}
.ya2{bottom:196.590000px;}
.ydb{bottom:196.605000px;}
.y159{bottom:198.750000px;}
.yf{bottom:199.110000px;}
.y5c{bottom:199.290000px;}
.yd1{bottom:202.530000px;}
.y84{bottom:202.890000px;}
.y9f{bottom:205.590000px;}
.y17d{bottom:208.110000px;}
.y1a8{bottom:208.125000px;}
.y8e{bottom:209.190000px;}
.y18e{bottom:210.090000px;}
.y133{bottom:210.630000px;}
.y24{bottom:211.350000px;}
.y154{bottom:212.790000px;}
.yd3{bottom:214.590000px;}
.y109{bottom:214.770000px;}
.y175{bottom:215.490000px;}
.y6b{bottom:216.750000px;}
.ya1{bottom:217.290000px;}
.yda{bottom:217.305000px;}
.y13b{bottom:219.990000px;}
.yf6{bottom:221.430000px;}
.yb3{bottom:222.330000px;}
.y143{bottom:222.510000px;}
.y4a{bottom:223.410000px;}
.y83{bottom:223.590000px;}
.y9e{bottom:226.290000px;}
.y139{bottom:228.630000px;}
.y68{bottom:228.810000px;}
.y1a7{bottom:228.825000px;}
.y122{bottom:234.390000px;}
.yd2{bottom:235.290000px;}
.yca{bottom:237.270000px;}
.yef{bottom:238.005000px;}
.yaf{bottom:239.790000px;}
.y142{bottom:239.970000px;}
.ye{bottom:240.690000px;}
.y80{bottom:241.230000px;}
.yd0{bottom:244.290000px;}
.y34{bottom:245.010000px;}
.y189{bottom:245.550000px;}
.y14f{bottom:246.990000px;}
.y1a6{bottom:249.525000px;}
.y138{bottom:249.690000px;}
.y1be{bottom:250.410000px;}
.y158{bottom:252.030000px;}
.y23{bottom:252.750000px;}
.y82{bottom:253.290000px;}
.y174{bottom:256.890000px;}
.ye6{bottom:257.430000px;}
.yee{bottom:258.705000px;}
.y13a{bottom:261.390000px;}
.y7f{bottom:262.290000px;}
.y131{bottom:263.910000px;}
.y49{bottom:264.810000px;}
.y14e{bottom:267.690000px;}
.y108{bottom:268.230000px;}
.y121{bottom:270.030000px;}
.y67{bottom:270.210000px;}
.y1a5{bottom:270.225000px;}
.y137{bottom:270.390000px;}
.y81{bottom:273.810000px;}
.y14b{bottom:276.330000px;}
.y1c3{bottom:276.690000px;}
.y5b{bottom:282.090000px;}
.yd{bottom:282.450000px;}
.y7e{bottom:282.810000px;}
.y152{bottom:284.790000px;}
.y169{bottom:286.950000px;}
.y11f{bottom:287.490000px;}
.y14d{bottom:288.390000px;}
.yed{bottom:288.405000px;}
.yc9{bottom:290.730000px;}
.y1a4{bottom:290.925000px;}
.y1bd{bottom:291.810000px;}
.yad{bottom:293.070000px;}
.y141{bottom:293.250000px;}
.y22{bottom:294.150000px;}
.y14a{bottom:297.390000px;}
.y33{bottom:298.290000px;}
.y187{bottom:298.830000px;}
.y157{bottom:305.490000px;}
.y58{bottom:306.210000px;}
.y14c{bottom:309.090000px;}
.yec{bottom:309.105000px;}
.y173{bottom:310.350000px;}
.y66{bottom:311.610000px;}
.ye9{bottom:317.745000px;}
.y48{bottom:318.090000px;}
.y1a3{bottom:320.625000px;}
.y107{bottom:321.510000px;}
.y168{bottom:322.950000px;}
.y5a{bottom:323.490000px;}
.yc{bottom:324.030000px;}
.yc8{bottom:326.370000px;}
.yeb{bottom:329.805000px;}
.y1bc{bottom:333.210000px;}
.y21{bottom:335.550000px;}
.y151{bottom:335.910000px;}
.ye8{bottom:338.805000px;}
.y11a{bottom:340.770000px;}
.y1a2{bottom:341.325000px;}
.yc5{bottom:344.010000px;}
.y140{bottom:344.370000px;}
.y57{bottom:347.610000px;}
.yea{bottom:350.535000px;}
.y32{bottom:351.750000px;}
.y65{bottom:353.010000px;}
.y130{bottom:356.430000px;}
.y47{bottom:359.490000px;}
.ye7{bottom:359.535000px;}
.y1a1{bottom:362.025000px;}
.y172{bottom:363.855000px;}
.y59{bottom:364.935000px;}
.yb{bottom:365.655000px;}
.y1bb{bottom:374.655000px;}
.y106{bottom:375.015000px;}
.y167{bottom:376.275000px;}
.y20{bottom:376.995000px;}
.y8d{bottom:381.855000px;}
.y150{bottom:387.075000px;}
.y56{bottom:389.055000px;}
.y186{bottom:391.395000px;}
.y1a0{bottom:391.755000px;}
.y12f{bottom:392.475000px;}
.y64{bottom:394.455000px;}
.y13f{bottom:395.535000px;}
.yc4{bottom:397.155000px;}
.y46{bottom:400.935000px;}
.yac{bottom:403.635000px;}
.y31{bottom:405.255000px;}
.y69{bottom:406.335000px;}
.y19f{bottom:412.455000px;}
.y1ba{bottom:416.055000px;}
.y171{bottom:417.135000px;}
.y8c{bottom:417.855000px;}
.y1f{bottom:418.395000px;}
.y149{bottom:423.075000px;}
.y166{bottom:427.395000px;}
.ya{bottom:428.295000px;}
.y105{bottom:428.475000px;}
.yd8{bottom:430.275000px;}
.y55{bottom:430.455000px;}
.y19e{bottom:433.155000px;}
.y6e{bottom:435.855000px;}
.yab{bottom:439.635000px;}
.y45{bottom:442.335000px;}
.y12e{bottom:443.595000px;}
.y13e{bottom:446.655000px;}
.y63{bottom:447.735000px;}
.y9{bottom:449.175000px;}
.y19d{bottom:453.855000px;}
.y1b9{bottom:457.455000px;}
.y30{bottom:458.535000px;}
.y42{bottom:459.795000px;}
.y119{bottom:463.035000px;}
.yd7{bottom:466.275000px;}
.y8b{bottom:469.155000px;}
.y104{bottom:469.875000px;}
.y170{bottom:470.595000px;}
.y1e{bottom:471.855000px;}
.y19c{bottom:474.555000px;}
.yaa{bottom:475.635000px;}
.y165{bottom:478.515000px;}
.y185{bottom:478.695000px;}
.y125{bottom:479.595000px;}
.y136{bottom:482.655000px;}
.y44{bottom:483.735000px;}
.y62{bottom:489.135000px;}
.y8{bottom:490.755000px;}
.y19b{bottom:495.255000px;}
.y1b8{bottom:498.855000px;}
.y118{bottom:499.035000px;}
.y41{bottom:501.195000px;}
.yd6{bottom:502.275000px;}
.y7d{bottom:505.155000px;}
.yc3{bottom:507.855000px;}
.y103{bottom:511.275000px;}
.y9d{bottom:511.635000px;}
.y2f{bottom:511.995000px;}
.y1d{bottom:513.255000px;}
.y17c{bottom:514.695000px;}
.y19a{bottom:515.955000px;}
.y16f{bottom:524.055000px;}
.y43{bottom:525.135000px;}
.y164{bottom:529.635000px;}
.y61{bottom:530.535000px;}
.y7{bottom:532.155000px;}
.ycf{bottom:538.275000px;}
.y1b7{bottom:540.255000px;}
.y40{bottom:542.595000px;}
.yc2{bottom:543.855000px;}
.y199{bottom:545.655000px;}
.y117{bottom:550.155000px;}
.y102{bottom:552.675000px;}
.y54{bottom:554.655000px;}
.y2e{bottom:565.455000px;}
.y15f{bottom:565.635000px;}
.y198{bottom:566.355000px;}
.y1c{bottom:566.535000px;}
.y60{bottom:571.935000px;}
.y6{bottom:573.555000px;}
.y16e{bottom:577.335000px;}
.y1b6{bottom:581.655000px;}
.y3f{bottom:583.995000px;}
.y10f{bottom:586.155000px;}
.y197{bottom:587.055000px;}
.y101{bottom:594.075000px;}
.yc0{bottom:594.975000px;}
.y53{bottom:596.055000px;}
.y196{bottom:607.755000px;}
.y1b{bottom:607.965000px;}
.y5f{bottom:613.365000px;}
.y2d{bottom:618.765000px;}
.y124{bottom:619.305000px;}
.y5{bottom:623.085000px;}
.y3e{bottom:625.425000px;}
.y195{bottom:628.455000px;}
.y16d{bottom:630.825000px;}
.yb7{bottom:631.005000px;}
.ye5{bottom:634.425000px;}
.y100{bottom:635.505000px;}
.y52{bottom:637.485000px;}
.y194{bottom:649.200000px;}
.y1a{bottom:649.365000px;}
.y1b5{bottom:664.485000px;}
.y3d{bottom:666.825000px;}
.y191{bottom:666.840000px;}
.ye4{bottom:670.425000px;}
.y2c{bottom:672.225000px;}
.yff{bottom:676.905000px;}
.y51{bottom:678.885000px;}
.y193{bottom:678.900000px;}
.y16c{bottom:684.105000px;}
.y190{bottom:687.900000px;}
.y19{bottom:690.765000px;}
.y192{bottom:699.600000px;}
.y1b4{bottom:705.885000px;}
.ye3{bottom:706.425000px;}
.y3c{bottom:708.225000px;}
.y18f{bottom:708.600000px;}
.yfe{bottom:718.305000px;}
.y50{bottom:720.105000px;}
.y2b{bottom:725.505000px;}
.y10e{bottom:729.285000px;}
.y18{bottom:732.165000px;}
.y16b{bottom:737.565000px;}
.y1c1{bottom:738.105000px;}
.y17b{bottom:740.445000px;}
.ye2{bottom:742.245000px;}
.y3b{bottom:749.625000px;}
.y15e{bottom:749.985000px;}
.y9c{bottom:755.385000px;}
.y148{bottom:758.625000px;}
.y1b3{bottom:759.345000px;}
.yfd{bottom:759.705000px;}
.y4f{bottom:761.505000px;}
.y10d{bottom:765.285000px;}
.yb6{bottom:770.505000px;}
.y17{bottom:773.565000px;}
.y17a{bottom:776.445000px;}
.y1b2{bottom:776.805000px;}
.y2a{bottom:778.965000px;}
.y15d{bottom:785.985000px;}
.y3a{bottom:791.025000px;}
.y9b{bottom:791.385000px;}
.y147{bottom:794.625000px;}
.yce{bottom:800.025000px;}
.yfc{bottom:801.105000px;}
.y10c{bottom:801.285000px;}
.y4e{bottom:802.905000px;}
.y7c{bottom:805.605000px;}
.yb5{bottom:806.505000px;}
.y179{bottom:812.445000px;}
.y16{bottom:814.965000px;}
.y15c{bottom:821.985000px;}
.y99{bottom:827.385000px;}
.y1b0{bottom:830.085000px;}
.y145{bottom:830.625000px;}
.y29{bottom:832.425000px;}
.ycc{bottom:836.025000px;}
.yfb{bottom:836.745000px;}
.y10b{bottom:837.105000px;}
.y7a{bottom:841.650000px;}
.yb4{bottom:842.550000px;}
.y4d{bottom:844.350000px;}
.y178{bottom:848.310000px;}
.yfa{bottom:854.250000px;}
.y15{bottom:856.410000px;}
.y15b{bottom:858.030000px;}
.y144{bottom:866.490000px;}
.y78{bottom:872.070000px;}
.y39{bottom:873.870000px;}
.y98{bottom:878.550000px;}
.y28{bottom:885.750000px;}
.y14{bottom:897.810000px;}
.yf9{bottom:907.530000px;}
.y76{bottom:907.890000px;}
.y38{bottom:915.270000px;}
.y27{bottom:927.150000px;}
.y18d{bottom:936.150000px;}
.y13{bottom:939.210000px;}
.y37{bottom:956.670000px;}
.y4c{bottom:968.550000px;}
.y18c{bottom:972.150000px;}
.y12{bottom:980.610000px;}
.y18b{bottom:1008.150000px;}
.y4{bottom:1009.950000px;}
.y11{bottom:1022.010000px;}
.y18a{bottom:1044.150000px;}
.y74{bottom:1050.090000px;}
.y3{bottom:1063.410000px;}
.y2{bottom:1097.640000px;}
.y1{bottom:1118.340000px;}
.hd{height:29.700000px;}
.h8{height:30.420000px;}
.hc{height:35.100000px;}
.he{height:35.136000px;}
.hb{height:35.280000px;}
.h17{height:35.316000px;}
.h2d{height:35.640000px;}
.h28{height:35.820000px;}
.h19{height:50.220000px;}
.h10{height:50.400000px;}
.h13{height:50.436000px;}
.h22{height:52.380000px;}
.h1b{height:52.416000px;}
.h16{height:52.560000px;}
.h27{height:52.596000px;}
.h9{height:52.971680px;}
.ha{height:54.036000px;}
.h6{height:64.546875px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.h25{height:71.100000px;}
.h4{height:71.613281px;}
.h12{height:72.180000px;}
.h3{height:72.562500px;}
.h5{height:74.004654px;}
.h21{height:91.800000px;}
.h2a{height:91.836000px;}
.h1a{height:109.800000px;}
.h15{height:109.836000px;}
.h1f{height:121.536000px;}
.h18{height:138.780000px;}
.h20{height:138.996000px;}
.h1e{height:142.236000px;}
.h11{height:171.930000px;}
.h26{height:183.630000px;}
.h2c{height:213.330000px;}
.h29{height:224.850000px;}
.h14{height:243.030000px;}
.h1c{height:261.030000px;}
.h23{height:287.130000px;}
.hf{height:299.550000px;}
.h24{height:334.830000px;}
.h1d{height:376.275000px;}
.h2b{height:725.325000px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w8{width:189.210000px;}
.w5{width:190.650000px;}
.wb{width:198.750000px;}
.wd{width:356.295000px;}
.wf{width:467.175000px;}
.w6{width:487.335000px;}
.wc{width:488.415000px;}
.w9{width:499.035000px;}
.we{width:666.645000px;}
.w4{width:679.785000px;}
.wa{width:687.885000px;}
.w7{width:688.965000px;}
.w3{width:714.390000px;}
.w1{width:918.000000px;}
.w2{width:918.179986px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x17{left:16.020000px;}
.x1b{left:34.740000px;}
.x16{left:54.000000px;}
.x1c{left:61.740000px;}
.x20{left:64.650000px;}
.x1f{left:85.500000px;}
.x1e{left:100.296000px;}
.xc{left:108.035986px;}
.x1a{left:109.836000px;}
.x24{left:113.256000px;}
.x5{left:117.035986px;}
.x13{left:135.035986px;}
.x29{left:144.035986px;}
.x2{left:162.029986px;}
.x28{left:198.029986px;}
.x4{left:206.669986px;}
.x10{left:216.029986px;}
.x8{left:245.189986px;}
.x18{left:299.775000px;}
.x6{left:327.674986px;}
.x15{left:329.114986px;}
.x7{left:372.674986px;}
.xb{left:379.334986px;}
.x11{left:384.374986px;}
.x9{left:388.874986px;}
.x27{left:391.574986px;}
.x26{left:398.054986px;}
.x12{left:407.594986px;}
.xd{left:414.074986px;}
.xa{left:417.314986px;}
.xf{left:426.674986px;}
.x1d{left:441.794986px;}
.xe{left:459.104986px;}
.x25{left:463.424986px;}
.x23{left:469.544986px;}
.x3{left:661.289986px;}
.x22{left:778.289986px;}
.x14{left:792.329986px;}
.x1{left:801.329986px;}
.x21{left:832.319986px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls9{letter-spacing:13.440000pt;}
.ls5{letter-spacing:57.066667pt;}
.lsb{letter-spacing:57.088000pt;}
.ls0{letter-spacing:669.600000pt;}
.ws6{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-13.920000pt;}
._3{margin-left:-12.192000pt;}
._9{margin-left:-9.568000pt;}
._8{margin-left:-8.288000pt;}
._7{margin-left:-6.880000pt;}
._2{margin-left:-5.333333pt;}
._6{margin-left:-3.445333pt;}
._4{margin-left:-2.325333pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.906667pt;}
._a{width:2.122667pt;}
._15{width:3.328000pt;}
._16{width:4.373333pt;}
._17{width:5.824000pt;}
._f{width:7.104000pt;}
._10{width:8.064000pt;}
._14{width:9.152000pt;}
._e{width:10.880000pt;}
._21{width:12.032000pt;}
._23{width:13.312000pt;}
._1c{width:14.656000pt;}
._13{width:16.896000pt;}
._1b{width:17.856000pt;}
._1a{width:18.816000pt;}
._c{width:19.712000pt;}
._d{width:20.992000pt;}
._22{width:22.144000pt;}
._2c{width:23.210667pt;}
._24{width:24.640000pt;}
._11{width:26.176000pt;}
._12{width:27.136000pt;}
._1f{width:28.522667pt;}
._27{width:30.272000pt;}
._18{width:32.064000pt;}
._19{width:33.184000pt;}
._29{width:35.584000pt;}
._1d{width:39.104000pt;}
._1e{width:40.106667pt;}
._2d{width:41.685333pt;}
._26{width:51.776000pt;}
._25{width:52.864000pt;}
._2a{width:55.168000pt;}
._2b{width:56.128000pt;}
._28{width:65.344000pt;}
._20{width:692.000000pt;}
._b{width:1452.981333pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:1.920000pt;}
.y7b{bottom:3.520000pt;}
.y1af{bottom:3.552000pt;}
.y1ac{bottom:4.800000pt;}
.yc7{bottom:5.280000pt;}
.yb1{bottom:5.440000pt;}
.y79{bottom:8.320000pt;}
.y146{bottom:8.360000pt;}
.y77{bottom:8.480000pt;}
.yc1{bottom:8.506667pt;}
.ycd{bottom:8.520000pt;}
.y73{bottom:15.680000pt;}
.y1c2{bottom:16.800000pt;}
.y16a{bottom:16.960000pt;}
.ya9{bottom:19.520000pt;}
.ye0{bottom:20.314667pt;}
.y153{bottom:21.760000pt;}
.y8a{bottom:21.920000pt;}
.y116{bottom:21.946667pt;}
.y1ae{bottom:21.952000pt;}
.y9a{bottom:21.960000pt;}
.y96{bottom:22.874667pt;}
.y134{bottom:23.680000pt;}
.yc6{bottom:23.720000pt;}
.ydf{bottom:23.834667pt;}
.yb0{bottom:23.840000pt;}
.ybf{bottom:26.880000pt;}
.y12d{bottom:27.040000pt;}
.y93{bottom:29.920000pt;}
.y11e{bottom:29.960000pt;}
.y75{bottom:33.146667pt;}
.ya8{bottom:37.920000pt;}
.y184{bottom:40.160000pt;}
.yf5{bottom:40.320000pt;}
.y115{bottom:40.346667pt;}
.y95{bottom:41.274667pt;}
.ybe{bottom:45.280000pt;}
.y12c{bottom:45.440000pt;}
.y120{bottom:46.720000pt;}
.y89{bottom:48.320000pt;}
.y11d{bottom:48.360000pt;}
.y72{bottom:51.040000pt;}
.ya7{bottom:56.320000pt;}
.y183{bottom:58.560000pt;}
.y132{bottom:58.720000pt;}
.y163{bottom:58.746667pt;}
.y188{bottom:58.760000pt;}
.ybd{bottom:63.680000pt;}
.y12b{bottom:63.840000pt;}
.y92{bottom:66.720000pt;}
.y114{bottom:66.746667pt;}
.y11c{bottom:66.760000pt;}
.yba{bottom:71.360000pt;}
.y128{bottom:71.520000pt;}
.y111{bottom:74.426667pt;}
.y88{bottom:74.720000pt;}
.yd5{bottom:74.746667pt;}
.yae{bottom:74.760000pt;}
.y71{bottom:80.960000pt;}
.ybc{bottom:82.080000pt;}
.y12a{bottom:82.240000pt;}
.y182{bottom:84.986667pt;}
.yf4{bottom:85.120000pt;}
.y113{bottom:85.146667pt;}
.y11b{bottom:85.160000pt;}
.yb9{bottom:90.080000pt;}
.y127{bottom:90.240000pt;}
.y91{bottom:93.120000pt;}
.ya6{bottom:93.146667pt;}
.ybb{bottom:100.480000pt;}
.y129{bottom:100.640000pt;}
.y87{bottom:101.146667pt;}
.ye1{bottom:102.880000pt;}
.y181{bottom:103.386667pt;}
.y70{bottom:103.520000pt;}
.y112{bottom:103.546667pt;}
.yf3{bottom:103.560000pt;}
.y97{bottom:105.600000pt;}
.yb8{bottom:108.480000pt;}
.y126{bottom:108.666667pt;}
.y1ad{bottom:109.120000pt;}
.y162{bottom:111.226667pt;}
.y90{bottom:111.520000pt;}
.y110{bottom:111.546667pt;}
.y1b1{bottom:111.560000pt;}
.y1c0{bottom:112.352000pt;}
.y26{bottom:114.272000pt;}
.y177{bottom:117.952000pt;}
.yde{bottom:118.432000pt;}
.y6d{bottom:119.072000pt;}
.yf8{bottom:119.392000pt;}
.ya5{bottom:119.546667pt;}
.y94{bottom:121.152000pt;}
.y180{bottom:121.786667pt;}
.y1ab{bottom:121.920000pt;}
.y13d{bottom:121.946667pt;}
.y36{bottom:122.752000pt;}
.y5e{bottom:124.992000pt;}
.y156{bottom:126.272000pt;}
.y86{bottom:127.546667pt;}
.y15a{bottom:129.152000pt;}
.y6f{bottom:129.792000pt;}
.y8f{bottom:129.920000pt;}
.y161{bottom:129.946667pt;}
.yf2{bottom:129.960000pt;}
.y1c4{bottom:135.546667pt;}
.ydd{bottom:137.920000pt;}
.ya4{bottom:137.946667pt;}
.y10{bottom:140.186667pt;}
.y1aa{bottom:140.200000pt;}
.y5d{bottom:140.346667pt;}
.y155{bottom:141.946667pt;}
.y10a{bottom:143.546667pt;}
.y17e{bottom:147.866667pt;}
.y160{bottom:148.346667pt;}
.yf1{bottom:148.360000pt;}
.y1bf{bottom:149.146667pt;}
.y25{bottom:151.066667pt;}
.yf7{bottom:151.386667pt;}
.y85{bottom:153.946667pt;}
.y176{bottom:154.746667pt;}
.y6c{bottom:155.866667pt;}
.ydc{bottom:156.320000pt;}
.ya3{bottom:156.346667pt;}
.y17f{bottom:158.586667pt;}
.y1a9{bottom:158.600000pt;}
.y13c{bottom:158.746667pt;}
.y4b{bottom:161.786667pt;}
.ycb{bottom:163.546667pt;}
.ya0{bottom:164.026667pt;}
.yd9{bottom:165.786667pt;}
.y6a{bottom:166.586667pt;}
.yf0{bottom:166.760000pt;}
.y35{bottom:170.266667pt;}
.y123{bottom:171.546667pt;}
.y135{bottom:171.706667pt;}
.yd4{bottom:172.346667pt;}
.ya2{bottom:174.746667pt;}
.ydb{bottom:174.760000pt;}
.y159{bottom:176.666667pt;}
.yf{bottom:176.986667pt;}
.y5c{bottom:177.146667pt;}
.yd1{bottom:180.026667pt;}
.y84{bottom:180.346667pt;}
.y9f{bottom:182.746667pt;}
.y17d{bottom:184.986667pt;}
.y1a8{bottom:185.000000pt;}
.y8e{bottom:185.946667pt;}
.y18e{bottom:186.746667pt;}
.y133{bottom:187.226667pt;}
.y24{bottom:187.866667pt;}
.y154{bottom:189.146667pt;}
.yd3{bottom:190.746667pt;}
.y109{bottom:190.906667pt;}
.y175{bottom:191.546667pt;}
.y6b{bottom:192.666667pt;}
.ya1{bottom:193.146667pt;}
.yda{bottom:193.160000pt;}
.y13b{bottom:195.546667pt;}
.yf6{bottom:196.826667pt;}
.yb3{bottom:197.626667pt;}
.y143{bottom:197.786667pt;}
.y4a{bottom:198.586667pt;}
.y83{bottom:198.746667pt;}
.y9e{bottom:201.146667pt;}
.y139{bottom:203.226667pt;}
.y68{bottom:203.386667pt;}
.y1a7{bottom:203.400000pt;}
.y122{bottom:208.346667pt;}
.yd2{bottom:209.146667pt;}
.yca{bottom:210.906667pt;}
.yef{bottom:211.560000pt;}
.yaf{bottom:213.146667pt;}
.y142{bottom:213.306667pt;}
.ye{bottom:213.946667pt;}
.y80{bottom:214.426667pt;}
.yd0{bottom:217.146667pt;}
.y34{bottom:217.786667pt;}
.y189{bottom:218.266667pt;}
.y14f{bottom:219.546667pt;}
.y1a6{bottom:221.800000pt;}
.y138{bottom:221.946667pt;}
.y1be{bottom:222.586667pt;}
.y158{bottom:224.026667pt;}
.y23{bottom:224.666667pt;}
.y82{bottom:225.146667pt;}
.y174{bottom:228.346667pt;}
.ye6{bottom:228.826667pt;}
.yee{bottom:229.960000pt;}
.y13a{bottom:232.346667pt;}
.y7f{bottom:233.146667pt;}
.y131{bottom:234.586667pt;}
.y49{bottom:235.386667pt;}
.y14e{bottom:237.946667pt;}
.y108{bottom:238.426667pt;}
.y121{bottom:240.026667pt;}
.y67{bottom:240.186667pt;}
.y1a5{bottom:240.200000pt;}
.y137{bottom:240.346667pt;}
.y81{bottom:243.386667pt;}
.y14b{bottom:245.626667pt;}
.y1c3{bottom:245.946667pt;}
.y5b{bottom:250.746667pt;}
.yd{bottom:251.066667pt;}
.y7e{bottom:251.386667pt;}
.y152{bottom:253.146667pt;}
.y169{bottom:255.066667pt;}
.y11f{bottom:255.546667pt;}
.y14d{bottom:256.346667pt;}
.yed{bottom:256.360000pt;}
.yc9{bottom:258.426667pt;}
.y1a4{bottom:258.600000pt;}
.y1bd{bottom:259.386667pt;}
.yad{bottom:260.506667pt;}
.y141{bottom:260.666667pt;}
.y22{bottom:261.466667pt;}
.y14a{bottom:264.346667pt;}
.y33{bottom:265.146667pt;}
.y187{bottom:265.626667pt;}
.y157{bottom:271.546667pt;}
.y58{bottom:272.186667pt;}
.y14c{bottom:274.746667pt;}
.yec{bottom:274.760000pt;}
.y173{bottom:275.866667pt;}
.y66{bottom:276.986667pt;}
.ye9{bottom:282.440000pt;}
.y48{bottom:282.746667pt;}
.y1a3{bottom:285.000000pt;}
.y107{bottom:285.786667pt;}
.y168{bottom:287.066667pt;}
.y5a{bottom:287.546667pt;}
.yc{bottom:288.026667pt;}
.yc8{bottom:290.106667pt;}
.yeb{bottom:293.160000pt;}
.y1bc{bottom:296.186667pt;}
.y21{bottom:298.266667pt;}
.y151{bottom:298.586667pt;}
.ye8{bottom:301.160000pt;}
.y11a{bottom:302.906667pt;}
.y1a2{bottom:303.400000pt;}
.yc5{bottom:305.786667pt;}
.y140{bottom:306.106667pt;}
.y57{bottom:308.986667pt;}
.yea{bottom:311.586667pt;}
.y32{bottom:312.666667pt;}
.y65{bottom:313.786667pt;}
.y130{bottom:316.826667pt;}
.y47{bottom:319.546667pt;}
.ye7{bottom:319.586667pt;}
.y1a1{bottom:321.800000pt;}
.y172{bottom:323.426667pt;}
.y59{bottom:324.386667pt;}
.yb{bottom:325.026667pt;}
.y1bb{bottom:333.026667pt;}
.y106{bottom:333.346667pt;}
.y167{bottom:334.466667pt;}
.y20{bottom:335.106667pt;}
.y8d{bottom:339.426667pt;}
.y150{bottom:344.066667pt;}
.y56{bottom:345.826667pt;}
.y186{bottom:347.906667pt;}
.y1a0{bottom:348.226667pt;}
.y12f{bottom:348.866667pt;}
.y64{bottom:350.626667pt;}
.y13f{bottom:351.586667pt;}
.yc4{bottom:353.026667pt;}
.y46{bottom:356.386667pt;}
.yac{bottom:358.786667pt;}
.y31{bottom:360.226667pt;}
.y69{bottom:361.186667pt;}
.y19f{bottom:366.626667pt;}
.y1ba{bottom:369.826667pt;}
.y171{bottom:370.786667pt;}
.y8c{bottom:371.426667pt;}
.y1f{bottom:371.906667pt;}
.y149{bottom:376.066667pt;}
.y166{bottom:379.906667pt;}
.ya{bottom:380.706667pt;}
.y105{bottom:380.866667pt;}
.yd8{bottom:382.466667pt;}
.y55{bottom:382.626667pt;}
.y19e{bottom:385.026667pt;}
.y6e{bottom:387.426667pt;}
.yab{bottom:390.786667pt;}
.y45{bottom:393.186667pt;}
.y12e{bottom:394.306667pt;}
.y13e{bottom:397.026667pt;}
.y63{bottom:397.986667pt;}
.y9{bottom:399.266667pt;}
.y19d{bottom:403.426667pt;}
.y1b9{bottom:406.626667pt;}
.y30{bottom:407.586667pt;}
.y42{bottom:408.706667pt;}
.y119{bottom:411.586667pt;}
.yd7{bottom:414.466667pt;}
.y8b{bottom:417.026667pt;}
.y104{bottom:417.666667pt;}
.y170{bottom:418.306667pt;}
.y1e{bottom:419.426667pt;}
.y19c{bottom:421.826667pt;}
.yaa{bottom:422.786667pt;}
.y165{bottom:425.346667pt;}
.y185{bottom:425.506667pt;}
.y125{bottom:426.306667pt;}
.y136{bottom:429.026667pt;}
.y44{bottom:429.986667pt;}
.y62{bottom:434.786667pt;}
.y8{bottom:436.226667pt;}
.y19b{bottom:440.226667pt;}
.y1b8{bottom:443.426667pt;}
.y118{bottom:443.586667pt;}
.y41{bottom:445.506667pt;}
.yd6{bottom:446.466667pt;}
.y7d{bottom:449.026667pt;}
.yc3{bottom:451.426667pt;}
.y103{bottom:454.466667pt;}
.y9d{bottom:454.786667pt;}
.y2f{bottom:455.106667pt;}
.y1d{bottom:456.226667pt;}
.y17c{bottom:457.506667pt;}
.y19a{bottom:458.626667pt;}
.y16f{bottom:465.826667pt;}
.y43{bottom:466.786667pt;}
.y164{bottom:470.786667pt;}
.y61{bottom:471.586667pt;}
.y7{bottom:473.026667pt;}
.ycf{bottom:478.466667pt;}
.y1b7{bottom:480.226667pt;}
.y40{bottom:482.306667pt;}
.yc2{bottom:483.426667pt;}
.y199{bottom:485.026667pt;}
.y117{bottom:489.026667pt;}
.y102{bottom:491.266667pt;}
.y54{bottom:493.026667pt;}
.y2e{bottom:502.626667pt;}
.y15f{bottom:502.786667pt;}
.y198{bottom:503.426667pt;}
.y1c{bottom:503.586667pt;}
.y60{bottom:508.386667pt;}
.y6{bottom:509.826667pt;}
.y16e{bottom:513.186667pt;}
.y1b6{bottom:517.026667pt;}
.y3f{bottom:519.106667pt;}
.y10f{bottom:521.026667pt;}
.y197{bottom:521.826667pt;}
.y101{bottom:528.066667pt;}
.yc0{bottom:528.866667pt;}
.y53{bottom:529.826667pt;}
.y196{bottom:540.226667pt;}
.y1b{bottom:540.413333pt;}
.y5f{bottom:545.213333pt;}
.y2d{bottom:550.013333pt;}
.y124{bottom:550.493333pt;}
.y5{bottom:553.853333pt;}
.y3e{bottom:555.933333pt;}
.y195{bottom:558.626667pt;}
.y16d{bottom:560.733333pt;}
.yb7{bottom:560.893333pt;}
.ye5{bottom:563.933333pt;}
.y100{bottom:564.893333pt;}
.y52{bottom:566.653333pt;}
.y194{bottom:577.066667pt;}
.y1a{bottom:577.213333pt;}
.y1b5{bottom:590.653333pt;}
.y3d{bottom:592.733333pt;}
.y191{bottom:592.746667pt;}
.ye4{bottom:595.933333pt;}
.y2c{bottom:597.533333pt;}
.yff{bottom:601.693333pt;}
.y51{bottom:603.453333pt;}
.y193{bottom:603.466667pt;}
.y16c{bottom:608.093333pt;}
.y190{bottom:611.466667pt;}
.y19{bottom:614.013333pt;}
.y192{bottom:621.866667pt;}
.y1b4{bottom:627.453333pt;}
.ye3{bottom:627.933333pt;}
.y3c{bottom:629.533333pt;}
.y18f{bottom:629.866667pt;}
.yfe{bottom:638.493333pt;}
.y50{bottom:640.093333pt;}
.y2b{bottom:644.893333pt;}
.y10e{bottom:648.253333pt;}
.y18{bottom:650.813333pt;}
.y16b{bottom:655.613333pt;}
.y1c1{bottom:656.093333pt;}
.y17b{bottom:658.173333pt;}
.ye2{bottom:659.773333pt;}
.y3b{bottom:666.333333pt;}
.y15e{bottom:666.653333pt;}
.y9c{bottom:671.453333pt;}
.y148{bottom:674.333333pt;}
.y1b3{bottom:674.973333pt;}
.yfd{bottom:675.293333pt;}
.y4f{bottom:676.893333pt;}
.y10d{bottom:680.253333pt;}
.yb6{bottom:684.893333pt;}
.y17{bottom:687.613333pt;}
.y17a{bottom:690.173333pt;}
.y1b2{bottom:690.493333pt;}
.y2a{bottom:692.413333pt;}
.y15d{bottom:698.653333pt;}
.y3a{bottom:703.133333pt;}
.y9b{bottom:703.453333pt;}
.y147{bottom:706.333333pt;}
.yce{bottom:711.133333pt;}
.yfc{bottom:712.093333pt;}
.y10c{bottom:712.253333pt;}
.y4e{bottom:713.693333pt;}
.y7c{bottom:716.093333pt;}
.yb5{bottom:716.893333pt;}
.y179{bottom:722.173333pt;}
.y16{bottom:724.413333pt;}
.y15c{bottom:730.653333pt;}
.y99{bottom:735.453333pt;}
.y1b0{bottom:737.853333pt;}
.y145{bottom:738.333333pt;}
.y29{bottom:739.933333pt;}
.ycc{bottom:743.133333pt;}
.yfb{bottom:743.773333pt;}
.y10b{bottom:744.093333pt;}
.y7a{bottom:748.133333pt;}
.yb4{bottom:748.933333pt;}
.y4d{bottom:750.533333pt;}
.y178{bottom:754.053333pt;}
.yfa{bottom:759.333333pt;}
.y15{bottom:761.253333pt;}
.y15b{bottom:762.693333pt;}
.y144{bottom:770.213333pt;}
.y78{bottom:775.173333pt;}
.y39{bottom:776.773333pt;}
.y98{bottom:780.933333pt;}
.y28{bottom:787.333333pt;}
.y14{bottom:798.053333pt;}
.yf9{bottom:806.693333pt;}
.y76{bottom:807.013333pt;}
.y38{bottom:813.573333pt;}
.y27{bottom:824.133333pt;}
.y18d{bottom:832.133333pt;}
.y13{bottom:834.853333pt;}
.y37{bottom:850.373333pt;}
.y4c{bottom:860.933333pt;}
.y18c{bottom:864.133333pt;}
.y12{bottom:871.653333pt;}
.y18b{bottom:896.133333pt;}
.y4{bottom:897.733333pt;}
.y11{bottom:908.453333pt;}
.y18a{bottom:928.133333pt;}
.y74{bottom:933.413333pt;}
.y3{bottom:945.253333pt;}
.y2{bottom:975.680000pt;}
.y1{bottom:994.080000pt;}
.hd{height:26.400000pt;}
.h8{height:27.040000pt;}
.hc{height:31.200000pt;}
.he{height:31.232000pt;}
.hb{height:31.360000pt;}
.h17{height:31.392000pt;}
.h2d{height:31.680000pt;}
.h28{height:31.840000pt;}
.h19{height:44.640000pt;}
.h10{height:44.800000pt;}
.h13{height:44.832000pt;}
.h22{height:46.560000pt;}
.h1b{height:46.592000pt;}
.h16{height:46.720000pt;}
.h27{height:46.752000pt;}
.h9{height:47.085938pt;}
.ha{height:48.032000pt;}
.h6{height:57.375000pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.h25{height:63.200000pt;}
.h4{height:63.656250pt;}
.h12{height:64.160000pt;}
.h3{height:64.500000pt;}
.h5{height:65.781915pt;}
.h21{height:81.600000pt;}
.h2a{height:81.632000pt;}
.h1a{height:97.600000pt;}
.h15{height:97.632000pt;}
.h1f{height:108.032000pt;}
.h18{height:123.360000pt;}
.h20{height:123.552000pt;}
.h1e{height:126.432000pt;}
.h11{height:152.826667pt;}
.h26{height:163.226667pt;}
.h2c{height:189.626667pt;}
.h29{height:199.866667pt;}
.h14{height:216.026667pt;}
.h1c{height:232.026667pt;}
.h23{height:255.226667pt;}
.hf{height:266.266667pt;}
.h24{height:297.626667pt;}
.h1d{height:334.466667pt;}
.h2b{height:644.733333pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w8{width:168.186667pt;}
.w5{width:169.466667pt;}
.wb{width:176.666667pt;}
.wd{width:316.706667pt;}
.wf{width:415.266667pt;}
.w6{width:433.186667pt;}
.wc{width:434.146667pt;}
.w9{width:443.586667pt;}
.we{width:592.573333pt;}
.w4{width:604.253333pt;}
.wa{width:611.453333pt;}
.w7{width:612.413333pt;}
.w3{width:635.013333pt;}
.w1{width:816.000000pt;}
.w2{width:816.159988pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x17{left:14.240000pt;}
.x1b{left:30.880000pt;}
.x16{left:48.000000pt;}
.x1c{left:54.880000pt;}
.x20{left:57.466667pt;}
.x1f{left:76.000000pt;}
.x1e{left:89.152000pt;}
.xc{left:96.031988pt;}
.x1a{left:97.632000pt;}
.x24{left:100.672000pt;}
.x5{left:104.031988pt;}
.x13{left:120.031988pt;}
.x29{left:128.031988pt;}
.x2{left:144.026655pt;}
.x28{left:176.026655pt;}
.x4{left:183.706655pt;}
.x10{left:192.026655pt;}
.x8{left:217.946655pt;}
.x18{left:266.466667pt;}
.x6{left:291.266655pt;}
.x15{left:292.546655pt;}
.x7{left:331.266655pt;}
.xb{left:337.186655pt;}
.x11{left:341.666655pt;}
.x9{left:345.666655pt;}
.x27{left:348.066655pt;}
.x26{left:353.826655pt;}
.x12{left:362.306655pt;}
.xd{left:368.066655pt;}
.xa{left:370.946655pt;}
.xf{left:379.266655pt;}
.x1d{left:392.706655pt;}
.xe{left:408.093321pt;}
.x25{left:411.933321pt;}
.x23{left:417.373321pt;}
.x3{left:587.813321pt;}
.x22{left:691.813321pt;}
.x14{left:704.293321pt;}
.x1{left:712.293321pt;}
.x21{left:739.839988pt;}
}




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