
    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_64065c9e584525a513f22fa0.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_55d247deeb25bb34d1e70c8f.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_a713206ec94bf72905d52b9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_d4d236580b6a0c700a9107da.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_06414deca886199accd137db.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_967b653f59be0dd3b2f31e3b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_873c956df335267a542ab63e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d3556cffd65fc73f1584a48.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2c4d20bf4ada365495a50af8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.702000px;}
.ls13{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls12{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:3.780000px;}
.lsf{letter-spacing:16.020000px;}
.lsa{letter-spacing:25.308000px;}
.ls10{letter-spacing:52.668000px;}
.ls1{letter-spacing:1393.860000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.716000px;}
.ws10{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.798000px;}
.wsc{word-spacing:-12.672000px;}
.ws3{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-1393.860000px;}
._14{margin-left:-10.673280px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._c{width:2.349360px;}
._13{width:3.587520px;}
._9{width:4.734960px;}
._a{width:6.002160px;}
._b{width:7.350480px;}
._15{width:8.477760px;}
._16{width:9.720960px;}
._d{width:11.009760px;}
._e{width:12.117360px;}
._11{width:13.220880px;}
._17{width:14.742000px;}
._10{width:16.089360px;}
._12{width:17.422080px;}
._1a{width:18.649920px;}
._1d{width:19.650000px;}
._1f{width:20.774160px;}
._22{width:21.870000px;}
._20{width:23.220000px;}
._f{width:24.441840px;}
._18{width:25.488000px;}
._19{width:26.838000px;}
._1c{width:28.644000px;}
._1b{width:29.970000px;}
._32{width:30.996000px;}
._28{width:32.022000px;}
._27{width:33.480000px;}
._1e{width:34.776000px;}
._21{width:36.498000px;}
._26{width:37.854000px;}
._25{width:38.988000px;}
._2d{width:40.338000px;}
._29{width:42.336000px;}
._2a{width:44.550000px;}
._24{width:45.702000px;}
._2b{width:47.190000px;}
._37{width:51.300000px;}
._36{width:52.650000px;}
._31{width:55.458000px;}
._23{width:56.484000px;}
._39{width:68.634000px;}
._3{width:78.192000px;}
._3a{width:79.962000px;}
._34{width:91.854000px;}
._35{width:92.988000px;}
._30{width:115.434000px;}
._2e{width:116.868000px;}
._2f{width:118.212000px;}
._5{width:121.140000px;}
._4{width:157.860000px;}
._3b{width:186.948000px;}
._2c{width:191.484000px;}
._33{width:791.352000px;}
._38{width:866.412000px;}
._2{width:1032.240000px;}
._6{width:1383.420000px;}
._7{width:1393.860000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y3f{bottom:-13.680000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.yb2{bottom:9.720000px;}
.yc0{bottom:9.900000px;}
.yd0{bottom:10.065000px;}
.yb7{bottom:10.080000px;}
.yb4{bottom:10.260000px;}
.yd2{bottom:11.145000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.ybb{bottom:27.540000px;}
.yb1{bottom:27.720000px;}
.yb6{bottom:27.900000px;}
.yc1{bottom:28.080000px;}
.y118{bottom:32.220000px;}
.y5{bottom:39.780000px;}
.y117{bottom:50.040000px;}
.y1{bottom:60.660000px;}
.y3c{bottom:62.280000px;}
.y3b{bottom:82.080000px;}
.y3a{bottom:102.090000px;}
.y141{bottom:103.320000px;}
.y1b9{bottom:106.740000px;}
.yaf{bottom:108.360000px;}
.y114{bottom:112.860000px;}
.y18e{bottom:116.100000px;}
.y79{bottom:117.180000px;}
.y2d{bottom:117.720000px;}
.y157{bottom:118.080000px;}
.ye1{bottom:118.800000px;}
.y140{bottom:121.140000px;}
.y39{bottom:121.890000px;}
.y1b8{bottom:124.560000px;}
.y2b{bottom:125.100000px;}
.y2c{bottom:125.640000px;}
.y113{bottom:130.680000px;}
.y3e{bottom:131.040000px;}
.y18d{bottom:133.920000px;}
.y78{bottom:135.000000px;}
.yae{bottom:135.180000px;}
.y156{bottom:136.080000px;}
.ye0{bottom:136.620000px;}
.y13f{bottom:138.960000px;}
.y38{bottom:141.690000px;}
.y1b7{bottom:142.380000px;}
.y112{bottom:148.140000px;}
.y18c{bottom:151.740000px;}
.y2a{bottom:153.000000px;}
.y155{bottom:153.900000px;}
.ydf{bottom:154.440000px;}
.y13e{bottom:156.780000px;}
.y3d{bottom:160.200000px;}
.y37{bottom:161.490000px;}
.yad{bottom:162.000000px;}
.y18b{bottom:169.560000px;}
.y77{bottom:170.820000px;}
.y154{bottom:171.720000px;}
.yde{bottom:172.260000px;}
.y111{bottom:175.500000px;}
.y1b6{bottom:178.200000px;}
.y29{bottom:180.900000px;}
.y36{bottom:181.290000px;}
.y13d{bottom:183.780000px;}
.y18a{bottom:187.380000px;}
.y76{bottom:188.640000px;}
.yac{bottom:189.000000px;}
.y153{bottom:189.540000px;}
.ydd{bottom:190.260000px;}
.y110{bottom:193.320000px;}
.y1b5{bottom:196.020000px;}
.y35{bottom:201.270000px;}
.y13c{bottom:201.600000px;}
.y189{bottom:205.200000px;}
.y75{bottom:206.490000px;}
.yab{bottom:206.850000px;}
.y152{bottom:207.390000px;}
.ydc{bottom:208.110000px;}
.y28{bottom:209.010000px;}
.y10f{bottom:211.170000px;}
.y1b4{bottom:213.870000px;}
.y13b{bottom:219.450000px;}
.y34{bottom:221.070000px;}
.y188{bottom:223.230000px;}
.y74{bottom:224.310000px;}
.yaa{bottom:224.670000px;}
.y151{bottom:225.210000px;}
.ydb{bottom:225.930000px;}
.y10e{bottom:228.990000px;}
.y1b3{bottom:231.690000px;}
.y27{bottom:236.910000px;}
.y13a{bottom:237.270000px;}
.y33{bottom:240.870000px;}
.y187{bottom:241.050000px;}
.y73{bottom:242.310000px;}
.ya9{bottom:242.490000px;}
.y150{bottom:243.210000px;}
.yda{bottom:243.750000px;}
.y10d{bottom:246.810000px;}
.y1b2{bottom:249.510000px;}
.y139{bottom:255.090000px;}
.y186{bottom:258.870000px;}
.y72{bottom:260.130000px;}
.ya8{bottom:260.310000px;}
.y32{bottom:260.670000px;}
.y14f{bottom:261.030000px;}
.yd9{bottom:261.570000px;}
.y26{bottom:264.270000px;}
.y10c{bottom:264.810000px;}
.y1d4{bottom:265.710000px;}
.y138{bottom:272.910000px;}
.y1b1{bottom:276.510000px;}
.y185{bottom:276.690000px;}
.y71{bottom:277.950000px;}
.ya7{bottom:278.130000px;}
.y14e{bottom:278.850000px;}
.yd8{bottom:279.570000px;}
.y31{bottom:280.470000px;}
.y10b{bottom:282.630000px;}
.y137{bottom:290.910000px;}
.y25{bottom:291.090000px;}
.y1d3{bottom:293.250000px;}
.y1b0{bottom:294.330000px;}
.y184{bottom:294.510000px;}
.y70{bottom:295.770000px;}
.yd7{bottom:297.390000px;}
.y30{bottom:300.450000px;}
.y14d{bottom:307.650000px;}
.y136{bottom:308.730000px;}
.y1af{bottom:312.150000px;}
.y183{bottom:312.510000px;}
.yd6{bottom:315.210000px;}
.ya6{bottom:315.930000px;}
.y10a{bottom:318.270000px;}
.y1d2{bottom:320.070000px;}
.y2f{bottom:320.250000px;}
.y6f{bottom:322.590000px;}
.y135{bottom:326.550000px;}
.y1ae{bottom:329.970000px;}
.y182{bottom:330.330000px;}
.yd5{bottom:333.030000px;}
.y24{bottom:335.550000px;}
.y109{bottom:336.090000px;}
.y6e{bottom:340.410000px;}
.y134{bottom:344.370000px;}
.y1d1{bottom:346.890000px;}
.y181{bottom:348.150000px;}
.ya5{bottom:348.690000px;}
.y2e{bottom:350.535000px;}
.yd4{bottom:350.850000px;}
.y108{bottom:353.910000px;}
.y23{bottom:355.170000px;}
.y1ad{bottom:356.790000px;}
.y6d{bottom:358.410000px;}
.y133{bottom:362.190000px;}
.y180{bottom:365.970000px;}
.ya4{bottom:366.510000px;}
.yd3{bottom:368.670000px;}
.y107{bottom:371.910000px;}
.y1d0{bottom:373.710000px;}
.y1ac{bottom:374.610000px;}
.y6c{bottom:376.230000px;}
.y22{bottom:378.930000px;}
.y132{bottom:380.010000px;}
.y17f{bottom:383.790000px;}
.ya3{bottom:384.330000px;}
.y106{bottom:389.730000px;}
.yd1{bottom:390.825000px;}
.y1ab{bottom:392.610000px;}
.y6b{bottom:394.050000px;}
.y131{bottom:398.010000px;}
.y1cf{bottom:401.070000px;}
.y17e{bottom:401.610000px;}
.ya2{bottom:402.330000px;}
.y21{bottom:402.690000px;}
.y105{bottom:407.550000px;}
.y1aa{bottom:410.430000px;}
.y6a{bottom:411.870000px;}
.ycf{bottom:419.445000px;}
.y17d{bottom:419.610000px;}
.ya1{bottom:420.510000px;}
.y130{bottom:424.830000px;}
.y104{bottom:425.370000px;}
.y20{bottom:426.630000px;}
.y1ce{bottom:428.610000px;}
.y69{bottom:429.690000px;}
.y1a9{bottom:437.250000px;}
.y17c{bottom:437.430000px;}
.ya0{bottom:438.330000px;}
.y12f{bottom:442.695000px;}
.y103{bottom:443.235000px;}
.y1cd{bottom:446.475000px;}
.yce{bottom:447.015000px;}
.y68{bottom:447.735000px;}
.y1f{bottom:450.435000px;}
.y1a8{bottom:455.115000px;}
.y17b{bottom:455.295000px;}
.y9f{bottom:456.195000px;}
.y12e{bottom:460.515000px;}
.y102{bottom:461.055000px;}
.y1cc{bottom:464.295000px;}
.y67{bottom:465.555000px;}
.y1a7{bottom:472.935000px;}
.y17a{bottom:473.115000px;}
.y1e{bottom:474.195000px;}
.ycd{bottom:474.735000px;}
.y12d{bottom:478.335000px;}
.y101{bottom:479.055000px;}
.y1cb{bottom:482.115000px;}
.y9e{bottom:482.655000px;}
.y66{bottom:483.375000px;}
.y179{bottom:490.935000px;}
.y12c{bottom:496.335000px;}
.y100{bottom:496.875000px;}
.y1d{bottom:497.775000px;}
.y1ca{bottom:499.935000px;}
.y65{bottom:501.195000px;}
.y178{bottom:508.935000px;}
.y9d{bottom:509.835000px;}
.y12b{bottom:514.155000px;}
.yff{bottom:514.695000px;}
.y1a6{bottom:517.755000px;}
.y1c9{bottom:517.935000px;}
.y64{bottom:519.015000px;}
.y1c{bottom:519.735000px;}
.ycc{bottom:520.275000px;}
.y177{bottom:526.755000px;}
.y9c{bottom:527.835000px;}
.y12a{bottom:531.975000px;}
.yfe{bottom:532.515000px;}
.y1a5{bottom:535.575000px;}
.y1c8{bottom:535.755000px;}
.y63{bottom:536.835000px;}
.y176{bottom:544.575000px;}
.y9b{bottom:545.655000px;}
.y1b{bottom:546.015000px;}
.ycb{bottom:547.815000px;}
.y129{bottom:549.795000px;}
.yfd{bottom:550.335000px;}
.y1a4{bottom:553.395000px;}
.y1c7{bottom:553.575000px;}
.y62{bottom:554.835000px;}
.y175{bottom:562.395000px;}
.y9a{bottom:563.475000px;}
.y128{bottom:567.615000px;}
.yfc{bottom:568.335000px;}
.y1a3{bottom:571.215000px;}
.y1c6{bottom:571.395000px;}
.y61{bottom:572.655000px;}
.yca{bottom:575.535000px;}
.y1a{bottom:576.795000px;}
.y174{bottom:580.215000px;}
.y99{bottom:581.295000px;}
.y127{bottom:585.435000px;}
.yfb{bottom:586.155000px;}
.y1c5{bottom:589.215000px;}
.y60{bottom:590.475000px;}
.y173{bottom:598.035000px;}
.y98{bottom:599.115000px;}
.yc9{bottom:603.255000px;}
.y126{bottom:603.435000px;}
.yfa{bottom:603.975000px;}
.y1c4{bottom:607.035000px;}
.y5f{bottom:608.295000px;}
.y172{bottom:616.035000px;}
.y97{bottom:617.115000px;}
.y125{bottom:621.255000px;}
.yf9{bottom:621.795000px;}
.y1c3{bottom:625.035000px;}
.y5e{bottom:626.115000px;}
.y19{bottom:628.635000px;}
.y171{bottom:633.855000px;}
.y96{bottom:634.935000px;}
.y124{bottom:639.075000px;}
.yf8{bottom:639.615000px;}
.y1a2{bottom:642.855000px;}
.y5d{bottom:644.115000px;}
.yc8{bottom:648.795000px;}
.y170{bottom:651.675000px;}
.y95{bottom:652.755000px;}
.y123{bottom:656.895000px;}
.yf7{bottom:657.435000px;}
.y18{bottom:659.415000px;}
.y1a1{bottom:660.675000px;}
.y5c{bottom:661.935000px;}
.y16f{bottom:669.495000px;}
.yf6{bottom:675.465000px;}
.yc7{bottom:676.545000px;}
.y1a0{bottom:678.525000px;}
.y94{bottom:679.605000px;}
.y5b{bottom:679.785000px;}
.y122{bottom:683.745000px;}
.y16e{bottom:687.345000px;}
.y1c2{bottom:687.525000px;}
.y17{bottom:690.405000px;}
.yf5{bottom:693.285000px;}
.y19f{bottom:696.345000px;}
.y5a{bottom:697.605000px;}
.yc6{bottom:704.265000px;}
.y16d{bottom:705.165000px;}
.y1c1{bottom:705.345000px;}
.y93{bottom:706.425000px;}
.y121{bottom:710.745000px;}
.yf4{bottom:715.245000px;}
.y59{bottom:715.425000px;}
.y19e{bottom:723.165000px;}
.y92{bottom:724.245000px;}
.yc5{bottom:732.165000px;}
.y120{bottom:732.705000px;}
.y58{bottom:733.245000px;}
.y16{bottom:734.145000px;}
.y19d{bottom:741.165000px;}
.y91{bottom:742.245000px;}
.yf3{bottom:742.785000px;}
.y16c{bottom:749.985000px;}
.y57{bottom:751.245000px;}
.y19c{bottom:758.985000px;}
.yc4{bottom:759.885000px;}
.y90{bottom:760.065000px;}
.y11f{bottom:760.245000px;}
.y16b{bottom:767.805000px;}
.y1c0{bottom:767.985000px;}
.y56{bottom:769.065000px;}
.yf2{bottom:770.505000px;}
.y19b{bottom:776.805000px;}
.y8f{bottom:777.885000px;}
.y15{bottom:784.905000px;}
.y1bf{bottom:785.805000px;}
.y14c{bottom:786.885000px;}
.yc3{bottom:787.425000px;}
.y11e{bottom:787.785000px;}
.y16a{bottom:794.625000px;}
.y8e{bottom:795.705000px;}
.y55{bottom:795.885000px;}
.y19a{bottom:803.625000px;}
.y14b{bottom:804.705000px;}
.y169{bottom:812.445000px;}
.y14{bottom:812.625000px;}
.y8d{bottom:813.525000px;}
.y54{bottom:813.705000px;}
.yc2{bottom:815.145000px;}
.y11d{bottom:815.505000px;}
.yf1{bottom:821.445000px;}
.y14a{bottom:822.525000px;}
.y168{bottom:830.445000px;}
.y8c{bottom:831.345000px;}
.y53{bottom:831.525000px;}
.yf0{bottom:839.445000px;}
.y149{bottom:840.345000px;}
.ybf{bottom:842.865000px;}
.y11c{bottom:843.045000px;}
.y167{bottom:848.265000px;}
.y1be{bottom:848.445000px;}
.y52{bottom:849.345000px;}
.y199{bottom:857.265000px;}
.y148{bottom:858.345000px;}
.y166{bottom:866.085000px;}
.yef{bottom:866.265000px;}
.y8b{bottom:866.805000px;}
.y51{bottom:867.345000px;}
.y13{bottom:867.705000px;}
.y11b{bottom:870.585000px;}
.y198{bottom:875.085000px;}
.y147{bottom:876.165000px;}
.y165{bottom:883.905000px;}
.yee{bottom:884.085000px;}
.y50{bottom:885.165000px;}
.ybe{bottom:888.405000px;}
.y12{bottom:890.565000px;}
.y197{bottom:892.905000px;}
.y1bd{bottom:893.085000px;}
.y8a{bottom:893.985000px;}
.y11a{bottom:898.305000px;}
.y164{bottom:901.725000px;}
.yed{bottom:901.905000px;}
.y4f{bottom:902.985000px;}
.y11{bottom:907.845000px;}
.y196{bottom:910.770000px;}
.y1bc{bottom:910.950000px;}
.y89{bottom:911.850000px;}
.ybd{bottom:916.170000px;}
.y163{bottom:919.590000px;}
.yec{bottom:919.770000px;}
.y4e{bottom:920.850000px;}
.y10{bottom:925.350000px;}
.y119{bottom:925.890000px;}
.y195{bottom:928.590000px;}
.y1bb{bottom:928.770000px;}
.y88{bottom:929.670000px;}
.yeb{bottom:937.590000px;}
.y4d{bottom:938.670000px;}
.yf{bottom:943.710000px;}
.ybc{bottom:943.890000px;}
.y194{bottom:946.590000px;}
.y87{bottom:947.670000px;}
.y146{bottom:949.650000px;}
.y116{bottom:953.430000px;}
.y162{bottom:955.410000px;}
.yea{bottom:955.590000px;}
.y4c{bottom:956.670000px;}
.ye{bottom:961.350000px;}
.y193{bottom:964.410000px;}
.y1ba{bottom:964.590000px;}
.y86{bottom:965.490000px;}
.yba{bottom:971.610000px;}
.y161{bottom:973.230000px;}
.ye9{bottom:973.410000px;}
.y4b{bottom:974.490000px;}
.yd{bottom:978.990000px;}
.y192{bottom:982.230000px;}
.y145{bottom:982.410000px;}
.y85{bottom:983.310000px;}
.y160{bottom:991.050000px;}
.ye8{bottom:991.230000px;}
.y4a{bottom:992.310000px;}
.yc{bottom:998.070000px;}
.y191{bottom:1000.050000px;}
.y144{bottom:1000.230000px;}
.y84{bottom:1001.130000px;}
.y15f{bottom:1008.870000px;}
.ye7{bottom:1009.050000px;}
.yb{bottom:1010.130000px;}
.yb9{bottom:1016.970000px;}
.y190{bottom:1017.870000px;}
.y143{bottom:1018.050000px;}
.y83{bottom:1018.950000px;}
.ya{bottom:1022.190000px;}
.ye6{bottom:1026.870000px;}
.y49{bottom:1027.950000px;}
.y9{bottom:1034.250000px;}
.y142{bottom:1035.870000px;}
.y82{bottom:1036.770000px;}
.ye5{bottom:1044.510000px;}
.yb8{bottom:1044.690000px;}
.y48{bottom:1045.770000px;}
.y8{bottom:1046.310000px;}
.y15e{bottom:1053.690000px;}
.y115{bottom:1053.870000px;}
.y81{bottom:1054.770000px;}
.y7{bottom:1060.890000px;}
.y47{bottom:1063.770000px;}
.y15d{bottom:1071.510000px;}
.ye4{bottom:1071.690000px;}
.y80{bottom:1072.230000px;}
.yb5{bottom:1072.410000px;}
.y46{bottom:1081.590000px;}
.y6{bottom:1086.450000px;}
.y15c{bottom:1089.330000px;}
.ye3{bottom:1089.510000px;}
.y7f{bottom:1092.390000px;}
.y45{bottom:1099.410000px;}
.y15b{bottom:1107.150000px;}
.ye2{bottom:1107.330000px;}
.y18f{bottom:1116.150000px;}
.y44{bottom:1117.230000px;}
.yb3{bottom:1117.770000px;}
.y7e{bottom:1125.150000px;}
.y15a{bottom:1133.970000px;}
.y43{bottom:1135.050000px;}
.y7d{bottom:1142.970000px;}
.yb0{bottom:1145.520000px;}
.y159{bottom:1152.000000px;}
.y42{bottom:1153.080000px;}
.y7c{bottom:1161.000000px;}
.y158{bottom:1169.820000px;}
.y41{bottom:1170.900000px;}
.y7b{bottom:1178.820000px;}
.y40{bottom:1190.700000px;}
.y7a{bottom:1196.640000px;}
.h20{height:26.805000px;}
.h1b{height:26.820000px;}
.h21{height:26.841000px;}
.h25{height:26.856000px;}
.h1f{height:26.985000px;}
.h19{height:27.000000px;}
.h1d{height:27.030000px;}
.h1c{height:27.036000px;}
.h22{height:27.885000px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h1a{height:44.640000px;}
.h1e{height:44.805000px;}
.h18{height:44.820000px;}
.h23{height:48.410156px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.h10{height:53.709961px;}
.hf{height:54.421875px;}
.h27{height:55.503491px;}
.h17{height:56.214844px;}
.h13{height:58.621992px;}
.h9{height:58.651172px;}
.h14{height:58.763250px;}
.h26{height:59.092031px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.h24{height:67.140000px;}
.hd{height:72.326250px;}
.h8{height:72.562500px;}
.h12{height:78.367500px;}
.h16{height:80.949375px;}
.hc{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h11{height:377.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w6{width:96.336000px;}
.w9{width:102.585000px;}
.wa{width:117.210000px;}
.wb{width:120.622500px;}
.wd{width:123.120000px;}
.w7{width:125.280000px;}
.wc{width:127.476000px;}
.w5{width:142.042500px;}
.w8{width:151.215000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:7.555500px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x2e{left:12.060000px;}
.x1a{left:13.680000px;}
.x1c{left:15.300000px;}
.x25{left:16.740000px;}
.x19{left:19.440000px;}
.x24{left:22.680000px;}
.x17{left:25.015500px;}
.x2b{left:26.820000px;}
.x27{left:29.880000px;}
.x1d{left:31.495500px;}
.x2a{left:32.580000px;}
.x1b{left:34.020000px;}
.x1e{left:35.820000px;}
.x2d{left:37.440000px;}
.x12{left:39.240000px;}
.x28{left:42.300000px;}
.x30{left:44.100000px;}
.x1{left:45.364500px;}
.x1f{left:48.060000px;}
.x14{left:50.040000px;}
.x5{left:54.000000px;}
.x21{left:60.300000px;}
.x20{left:62.640000px;}
.x31{left:75.240000px;}
.x15{left:81.000000px;}
.xb{left:89.316000px;}
.x33{left:108.036000px;}
.xd{left:135.756000px;}
.xf{left:168.690000px;}
.x29{left:171.930000px;}
.xc{left:180.210000px;}
.x18{left:196.950000px;}
.x2{left:222.370500px;}
.xe{left:235.830000px;}
.x8{left:280.155000px;}
.x9{left:291.495000px;}
.x7{left:294.735000px;}
.x2c{left:300.135000px;}
.x10{left:314.355000px;}
.x6{left:365.295000px;}
.xa{left:378.795000px;}
.x22{left:470.100000px;}
.x11{left:473.505000px;}
.x16{left:500.505000px;}
.x32{left:527.505000px;}
.x23{left:622.050000px;}
.x26{left:725.370000px;}
.x4{left:767.490000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls12{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:3.360000pt;}
.lsf{letter-spacing:14.240000pt;}
.lsa{letter-spacing:22.496000pt;}
.ls10{letter-spacing:46.816000pt;}
.ls1{letter-spacing:1238.986667pt;}
.ws5{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.192000pt;}
.ws10{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.376000pt;}
.wsc{word-spacing:-11.264000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-1238.986667pt;}
._14{margin-left:-9.487360pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._c{width:2.088320pt;}
._13{width:3.188907pt;}
._9{width:4.208853pt;}
._a{width:5.335253pt;}
._b{width:6.533760pt;}
._15{width:7.535787pt;}
._16{width:8.640853pt;}
._d{width:9.786453pt;}
._e{width:10.770987pt;}
._11{width:11.751893pt;}
._17{width:13.104000pt;}
._10{width:14.301653pt;}
._12{width:15.486293pt;}
._1a{width:16.577707pt;}
._1d{width:17.466667pt;}
._1f{width:18.465920pt;}
._22{width:19.440000pt;}
._20{width:20.640000pt;}
._f{width:21.726080pt;}
._18{width:22.656000pt;}
._19{width:23.856000pt;}
._1c{width:25.461333pt;}
._1b{width:26.640000pt;}
._32{width:27.552000pt;}
._28{width:28.464000pt;}
._27{width:29.760000pt;}
._1e{width:30.912000pt;}
._21{width:32.442667pt;}
._26{width:33.648000pt;}
._25{width:34.656000pt;}
._2d{width:35.856000pt;}
._29{width:37.632000pt;}
._2a{width:39.600000pt;}
._24{width:40.624000pt;}
._2b{width:41.946667pt;}
._37{width:45.600000pt;}
._36{width:46.800000pt;}
._31{width:49.296000pt;}
._23{width:50.208000pt;}
._39{width:61.008000pt;}
._3{width:69.504000pt;}
._3a{width:71.077333pt;}
._34{width:81.648000pt;}
._35{width:82.656000pt;}
._30{width:102.608000pt;}
._2e{width:103.882667pt;}
._2f{width:105.077333pt;}
._5{width:107.680000pt;}
._4{width:140.320000pt;}
._3b{width:166.176000pt;}
._2c{width:170.208000pt;}
._33{width:703.424000pt;}
._38{width:770.144000pt;}
._2{width:917.546667pt;}
._6{width:1229.706667pt;}
._7{width:1238.986667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y3f{bottom:-12.160000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.yb2{bottom:8.640000pt;}
.yc0{bottom:8.800000pt;}
.yd0{bottom:8.946667pt;}
.yb7{bottom:8.960000pt;}
.yb4{bottom:9.120000pt;}
.yd2{bottom:9.906667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.ybb{bottom:24.480000pt;}
.yb1{bottom:24.640000pt;}
.yb6{bottom:24.800000pt;}
.yc1{bottom:24.960000pt;}
.y118{bottom:28.640000pt;}
.y5{bottom:35.360000pt;}
.y117{bottom:44.480000pt;}
.y1{bottom:53.920000pt;}
.y3c{bottom:55.360000pt;}
.y3b{bottom:72.960000pt;}
.y3a{bottom:90.746667pt;}
.y141{bottom:91.840000pt;}
.y1b9{bottom:94.880000pt;}
.yaf{bottom:96.320000pt;}
.y114{bottom:100.320000pt;}
.y18e{bottom:103.200000pt;}
.y79{bottom:104.160000pt;}
.y2d{bottom:104.640000pt;}
.y157{bottom:104.960000pt;}
.ye1{bottom:105.600000pt;}
.y140{bottom:107.680000pt;}
.y39{bottom:108.346667pt;}
.y1b8{bottom:110.720000pt;}
.y2b{bottom:111.200000pt;}
.y2c{bottom:111.680000pt;}
.y113{bottom:116.160000pt;}
.y3e{bottom:116.480000pt;}
.y18d{bottom:119.040000pt;}
.y78{bottom:120.000000pt;}
.yae{bottom:120.160000pt;}
.y156{bottom:120.960000pt;}
.ye0{bottom:121.440000pt;}
.y13f{bottom:123.520000pt;}
.y38{bottom:125.946667pt;}
.y1b7{bottom:126.560000pt;}
.y112{bottom:131.680000pt;}
.y18c{bottom:134.880000pt;}
.y2a{bottom:136.000000pt;}
.y155{bottom:136.800000pt;}
.ydf{bottom:137.280000pt;}
.y13e{bottom:139.360000pt;}
.y3d{bottom:142.400000pt;}
.y37{bottom:143.546667pt;}
.yad{bottom:144.000000pt;}
.y18b{bottom:150.720000pt;}
.y77{bottom:151.840000pt;}
.y154{bottom:152.640000pt;}
.yde{bottom:153.120000pt;}
.y111{bottom:156.000000pt;}
.y1b6{bottom:158.400000pt;}
.y29{bottom:160.800000pt;}
.y36{bottom:161.146667pt;}
.y13d{bottom:163.360000pt;}
.y18a{bottom:166.560000pt;}
.y76{bottom:167.680000pt;}
.yac{bottom:168.000000pt;}
.y153{bottom:168.480000pt;}
.ydd{bottom:169.120000pt;}
.y110{bottom:171.840000pt;}
.y1b5{bottom:174.240000pt;}
.y35{bottom:178.906667pt;}
.y13c{bottom:179.200000pt;}
.y189{bottom:182.400000pt;}
.y75{bottom:183.546667pt;}
.yab{bottom:183.866667pt;}
.y152{bottom:184.346667pt;}
.ydc{bottom:184.986667pt;}
.y28{bottom:185.786667pt;}
.y10f{bottom:187.706667pt;}
.y1b4{bottom:190.106667pt;}
.y13b{bottom:195.066667pt;}
.y34{bottom:196.506667pt;}
.y188{bottom:198.426667pt;}
.y74{bottom:199.386667pt;}
.yaa{bottom:199.706667pt;}
.y151{bottom:200.186667pt;}
.ydb{bottom:200.826667pt;}
.y10e{bottom:203.546667pt;}
.y1b3{bottom:205.946667pt;}
.y27{bottom:210.586667pt;}
.y13a{bottom:210.906667pt;}
.y33{bottom:214.106667pt;}
.y187{bottom:214.266667pt;}
.y73{bottom:215.386667pt;}
.ya9{bottom:215.546667pt;}
.y150{bottom:216.186667pt;}
.yda{bottom:216.666667pt;}
.y10d{bottom:219.386667pt;}
.y1b2{bottom:221.786667pt;}
.y139{bottom:226.746667pt;}
.y186{bottom:230.106667pt;}
.y72{bottom:231.226667pt;}
.ya8{bottom:231.386667pt;}
.y32{bottom:231.706667pt;}
.y14f{bottom:232.026667pt;}
.yd9{bottom:232.506667pt;}
.y26{bottom:234.906667pt;}
.y10c{bottom:235.386667pt;}
.y1d4{bottom:236.186667pt;}
.y138{bottom:242.586667pt;}
.y1b1{bottom:245.786667pt;}
.y185{bottom:245.946667pt;}
.y71{bottom:247.066667pt;}
.ya7{bottom:247.226667pt;}
.y14e{bottom:247.866667pt;}
.yd8{bottom:248.506667pt;}
.y31{bottom:249.306667pt;}
.y10b{bottom:251.226667pt;}
.y137{bottom:258.586667pt;}
.y25{bottom:258.746667pt;}
.y1d3{bottom:260.666667pt;}
.y1b0{bottom:261.626667pt;}
.y184{bottom:261.786667pt;}
.y70{bottom:262.906667pt;}
.yd7{bottom:264.346667pt;}
.y30{bottom:267.066667pt;}
.y14d{bottom:273.466667pt;}
.y136{bottom:274.426667pt;}
.y1af{bottom:277.466667pt;}
.y183{bottom:277.786667pt;}
.yd6{bottom:280.186667pt;}
.ya6{bottom:280.826667pt;}
.y10a{bottom:282.906667pt;}
.y1d2{bottom:284.506667pt;}
.y2f{bottom:284.666667pt;}
.y6f{bottom:286.746667pt;}
.y135{bottom:290.266667pt;}
.y1ae{bottom:293.306667pt;}
.y182{bottom:293.626667pt;}
.yd5{bottom:296.026667pt;}
.y24{bottom:298.266667pt;}
.y109{bottom:298.746667pt;}
.y6e{bottom:302.586667pt;}
.y134{bottom:306.106667pt;}
.y1d1{bottom:308.346667pt;}
.y181{bottom:309.466667pt;}
.ya5{bottom:309.946667pt;}
.y2e{bottom:311.586667pt;}
.yd4{bottom:311.866667pt;}
.y108{bottom:314.586667pt;}
.y23{bottom:315.706667pt;}
.y1ad{bottom:317.146667pt;}
.y6d{bottom:318.586667pt;}
.y133{bottom:321.946667pt;}
.y180{bottom:325.306667pt;}
.ya4{bottom:325.786667pt;}
.yd3{bottom:327.706667pt;}
.y107{bottom:330.586667pt;}
.y1d0{bottom:332.186667pt;}
.y1ac{bottom:332.986667pt;}
.y6c{bottom:334.426667pt;}
.y22{bottom:336.826667pt;}
.y132{bottom:337.786667pt;}
.y17f{bottom:341.146667pt;}
.ya3{bottom:341.626667pt;}
.y106{bottom:346.426667pt;}
.yd1{bottom:347.400000pt;}
.y1ab{bottom:348.986667pt;}
.y6b{bottom:350.266667pt;}
.y131{bottom:353.786667pt;}
.y1cf{bottom:356.506667pt;}
.y17e{bottom:356.986667pt;}
.ya2{bottom:357.626667pt;}
.y21{bottom:357.946667pt;}
.y105{bottom:362.266667pt;}
.y1aa{bottom:364.826667pt;}
.y6a{bottom:366.106667pt;}
.ycf{bottom:372.840000pt;}
.y17d{bottom:372.986667pt;}
.ya1{bottom:373.786667pt;}
.y130{bottom:377.626667pt;}
.y104{bottom:378.106667pt;}
.y20{bottom:379.226667pt;}
.y1ce{bottom:380.986667pt;}
.y69{bottom:381.946667pt;}
.y1a9{bottom:388.666667pt;}
.y17c{bottom:388.826667pt;}
.ya0{bottom:389.626667pt;}
.y12f{bottom:393.506667pt;}
.y103{bottom:393.986667pt;}
.y1cd{bottom:396.866667pt;}
.yce{bottom:397.346667pt;}
.y68{bottom:397.986667pt;}
.y1f{bottom:400.386667pt;}
.y1a8{bottom:404.546667pt;}
.y17b{bottom:404.706667pt;}
.y9f{bottom:405.506667pt;}
.y12e{bottom:409.346667pt;}
.y102{bottom:409.826667pt;}
.y1cc{bottom:412.706667pt;}
.y67{bottom:413.826667pt;}
.y1a7{bottom:420.386667pt;}
.y17a{bottom:420.546667pt;}
.y1e{bottom:421.506667pt;}
.ycd{bottom:421.986667pt;}
.y12d{bottom:425.186667pt;}
.y101{bottom:425.826667pt;}
.y1cb{bottom:428.546667pt;}
.y9e{bottom:429.026667pt;}
.y66{bottom:429.666667pt;}
.y179{bottom:436.386667pt;}
.y12c{bottom:441.186667pt;}
.y100{bottom:441.666667pt;}
.y1d{bottom:442.466667pt;}
.y1ca{bottom:444.386667pt;}
.y65{bottom:445.506667pt;}
.y178{bottom:452.386667pt;}
.y9d{bottom:453.186667pt;}
.y12b{bottom:457.026667pt;}
.yff{bottom:457.506667pt;}
.y1a6{bottom:460.226667pt;}
.y1c9{bottom:460.386667pt;}
.y64{bottom:461.346667pt;}
.y1c{bottom:461.986667pt;}
.ycc{bottom:462.466667pt;}
.y177{bottom:468.226667pt;}
.y9c{bottom:469.186667pt;}
.y12a{bottom:472.866667pt;}
.yfe{bottom:473.346667pt;}
.y1a5{bottom:476.066667pt;}
.y1c8{bottom:476.226667pt;}
.y63{bottom:477.186667pt;}
.y176{bottom:484.066667pt;}
.y9b{bottom:485.026667pt;}
.y1b{bottom:485.346667pt;}
.ycb{bottom:486.946667pt;}
.y129{bottom:488.706667pt;}
.yfd{bottom:489.186667pt;}
.y1a4{bottom:491.906667pt;}
.y1c7{bottom:492.066667pt;}
.y62{bottom:493.186667pt;}
.y175{bottom:499.906667pt;}
.y9a{bottom:500.866667pt;}
.y128{bottom:504.546667pt;}
.yfc{bottom:505.186667pt;}
.y1a3{bottom:507.746667pt;}
.y1c6{bottom:507.906667pt;}
.y61{bottom:509.026667pt;}
.yca{bottom:511.586667pt;}
.y1a{bottom:512.706667pt;}
.y174{bottom:515.746667pt;}
.y99{bottom:516.706667pt;}
.y127{bottom:520.386667pt;}
.yfb{bottom:521.026667pt;}
.y1c5{bottom:523.746667pt;}
.y60{bottom:524.866667pt;}
.y173{bottom:531.586667pt;}
.y98{bottom:532.546667pt;}
.yc9{bottom:536.226667pt;}
.y126{bottom:536.386667pt;}
.yfa{bottom:536.866667pt;}
.y1c4{bottom:539.586667pt;}
.y5f{bottom:540.706667pt;}
.y172{bottom:547.586667pt;}
.y97{bottom:548.546667pt;}
.y125{bottom:552.226667pt;}
.yf9{bottom:552.706667pt;}
.y1c3{bottom:555.586667pt;}
.y5e{bottom:556.546667pt;}
.y19{bottom:558.786667pt;}
.y171{bottom:563.426667pt;}
.y96{bottom:564.386667pt;}
.y124{bottom:568.066667pt;}
.yf8{bottom:568.546667pt;}
.y1a2{bottom:571.426667pt;}
.y5d{bottom:572.546667pt;}
.yc8{bottom:576.706667pt;}
.y170{bottom:579.266667pt;}
.y95{bottom:580.226667pt;}
.y123{bottom:583.906667pt;}
.yf7{bottom:584.386667pt;}
.y18{bottom:586.146667pt;}
.y1a1{bottom:587.266667pt;}
.y5c{bottom:588.386667pt;}
.y16f{bottom:595.106667pt;}
.yf6{bottom:600.413333pt;}
.yc7{bottom:601.373333pt;}
.y1a0{bottom:603.133333pt;}
.y94{bottom:604.093333pt;}
.y5b{bottom:604.253333pt;}
.y122{bottom:607.773333pt;}
.y16e{bottom:610.973333pt;}
.y1c2{bottom:611.133333pt;}
.y17{bottom:613.693333pt;}
.yf5{bottom:616.253333pt;}
.y19f{bottom:618.973333pt;}
.y5a{bottom:620.093333pt;}
.yc6{bottom:626.013333pt;}
.y16d{bottom:626.813333pt;}
.y1c1{bottom:626.973333pt;}
.y93{bottom:627.933333pt;}
.y121{bottom:631.773333pt;}
.yf4{bottom:635.773333pt;}
.y59{bottom:635.933333pt;}
.y19e{bottom:642.813333pt;}
.y92{bottom:643.773333pt;}
.yc5{bottom:650.813333pt;}
.y120{bottom:651.293333pt;}
.y58{bottom:651.773333pt;}
.y16{bottom:652.573333pt;}
.y19d{bottom:658.813333pt;}
.y91{bottom:659.773333pt;}
.yf3{bottom:660.253333pt;}
.y16c{bottom:666.653333pt;}
.y57{bottom:667.773333pt;}
.y19c{bottom:674.653333pt;}
.yc4{bottom:675.453333pt;}
.y90{bottom:675.613333pt;}
.y11f{bottom:675.773333pt;}
.y16b{bottom:682.493333pt;}
.y1c0{bottom:682.653333pt;}
.y56{bottom:683.613333pt;}
.yf2{bottom:684.893333pt;}
.y19b{bottom:690.493333pt;}
.y8f{bottom:691.453333pt;}
.y15{bottom:697.693333pt;}
.y1bf{bottom:698.493333pt;}
.y14c{bottom:699.453333pt;}
.yc3{bottom:699.933333pt;}
.y11e{bottom:700.253333pt;}
.y16a{bottom:706.333333pt;}
.y8e{bottom:707.293333pt;}
.y55{bottom:707.453333pt;}
.y19a{bottom:714.333333pt;}
.y14b{bottom:715.293333pt;}
.y169{bottom:722.173333pt;}
.y14{bottom:722.333333pt;}
.y8d{bottom:723.133333pt;}
.y54{bottom:723.293333pt;}
.yc2{bottom:724.573333pt;}
.y11d{bottom:724.893333pt;}
.yf1{bottom:730.173333pt;}
.y14a{bottom:731.133333pt;}
.y168{bottom:738.173333pt;}
.y8c{bottom:738.973333pt;}
.y53{bottom:739.133333pt;}
.yf0{bottom:746.173333pt;}
.y149{bottom:746.973333pt;}
.ybf{bottom:749.213333pt;}
.y11c{bottom:749.373333pt;}
.y167{bottom:754.013333pt;}
.y1be{bottom:754.173333pt;}
.y52{bottom:754.973333pt;}
.y199{bottom:762.013333pt;}
.y148{bottom:762.973333pt;}
.y166{bottom:769.853333pt;}
.yef{bottom:770.013333pt;}
.y8b{bottom:770.493333pt;}
.y51{bottom:770.973333pt;}
.y13{bottom:771.293333pt;}
.y11b{bottom:773.853333pt;}
.y198{bottom:777.853333pt;}
.y147{bottom:778.813333pt;}
.y165{bottom:785.693333pt;}
.yee{bottom:785.853333pt;}
.y50{bottom:786.813333pt;}
.ybe{bottom:789.693333pt;}
.y12{bottom:791.613333pt;}
.y197{bottom:793.693333pt;}
.y1bd{bottom:793.853333pt;}
.y8a{bottom:794.653333pt;}
.y11a{bottom:798.493333pt;}
.y164{bottom:801.533333pt;}
.yed{bottom:801.693333pt;}
.y4f{bottom:802.653333pt;}
.y11{bottom:806.973333pt;}
.y196{bottom:809.573333pt;}
.y1bc{bottom:809.733333pt;}
.y89{bottom:810.533333pt;}
.ybd{bottom:814.373333pt;}
.y163{bottom:817.413333pt;}
.yec{bottom:817.573333pt;}
.y4e{bottom:818.533333pt;}
.y10{bottom:822.533333pt;}
.y119{bottom:823.013333pt;}
.y195{bottom:825.413333pt;}
.y1bb{bottom:825.573333pt;}
.y88{bottom:826.373333pt;}
.yeb{bottom:833.413333pt;}
.y4d{bottom:834.373333pt;}
.yf{bottom:838.853333pt;}
.ybc{bottom:839.013333pt;}
.y194{bottom:841.413333pt;}
.y87{bottom:842.373333pt;}
.y146{bottom:844.133333pt;}
.y116{bottom:847.493333pt;}
.y162{bottom:849.253333pt;}
.yea{bottom:849.413333pt;}
.y4c{bottom:850.373333pt;}
.ye{bottom:854.533333pt;}
.y193{bottom:857.253333pt;}
.y1ba{bottom:857.413333pt;}
.y86{bottom:858.213333pt;}
.yba{bottom:863.653333pt;}
.y161{bottom:865.093333pt;}
.ye9{bottom:865.253333pt;}
.y4b{bottom:866.213333pt;}
.yd{bottom:870.213333pt;}
.y192{bottom:873.093333pt;}
.y145{bottom:873.253333pt;}
.y85{bottom:874.053333pt;}
.y160{bottom:880.933333pt;}
.ye8{bottom:881.093333pt;}
.y4a{bottom:882.053333pt;}
.yc{bottom:887.173333pt;}
.y191{bottom:888.933333pt;}
.y144{bottom:889.093333pt;}
.y84{bottom:889.893333pt;}
.y15f{bottom:896.773333pt;}
.ye7{bottom:896.933333pt;}
.yb{bottom:897.893333pt;}
.yb9{bottom:903.973333pt;}
.y190{bottom:904.773333pt;}
.y143{bottom:904.933333pt;}
.y83{bottom:905.733333pt;}
.ya{bottom:908.613333pt;}
.ye6{bottom:912.773333pt;}
.y49{bottom:913.733333pt;}
.y9{bottom:919.333333pt;}
.y142{bottom:920.773333pt;}
.y82{bottom:921.573333pt;}
.ye5{bottom:928.453333pt;}
.yb8{bottom:928.613333pt;}
.y48{bottom:929.573333pt;}
.y8{bottom:930.053333pt;}
.y15e{bottom:936.613333pt;}
.y115{bottom:936.773333pt;}
.y81{bottom:937.573333pt;}
.y7{bottom:943.013333pt;}
.y47{bottom:945.573333pt;}
.y15d{bottom:952.453333pt;}
.ye4{bottom:952.613333pt;}
.y80{bottom:953.093333pt;}
.yb5{bottom:953.253333pt;}
.y46{bottom:961.413333pt;}
.y6{bottom:965.733333pt;}
.y15c{bottom:968.293333pt;}
.ye3{bottom:968.453333pt;}
.y7f{bottom:971.013333pt;}
.y45{bottom:977.253333pt;}
.y15b{bottom:984.133333pt;}
.ye2{bottom:984.293333pt;}
.y18f{bottom:992.133333pt;}
.y44{bottom:993.093333pt;}
.yb3{bottom:993.573333pt;}
.y7e{bottom:1000.133333pt;}
.y15a{bottom:1007.973333pt;}
.y43{bottom:1008.933333pt;}
.y7d{bottom:1015.973333pt;}
.yb0{bottom:1018.240000pt;}
.y159{bottom:1024.000000pt;}
.y42{bottom:1024.960000pt;}
.y7c{bottom:1032.000000pt;}
.y158{bottom:1039.840000pt;}
.y41{bottom:1040.800000pt;}
.y7b{bottom:1047.840000pt;}
.y40{bottom:1058.400000pt;}
.y7a{bottom:1063.680000pt;}
.h20{height:23.826667pt;}
.h1b{height:23.840000pt;}
.h21{height:23.858667pt;}
.h25{height:23.872000pt;}
.h1f{height:23.986667pt;}
.h19{height:24.000000pt;}
.h1d{height:24.026667pt;}
.h1c{height:24.032000pt;}
.h22{height:24.786667pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h1a{height:39.680000pt;}
.h1e{height:39.826667pt;}
.h18{height:39.840000pt;}
.h23{height:43.031250pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.h10{height:47.742188pt;}
.hf{height:48.375000pt;}
.h27{height:49.336436pt;}
.h17{height:49.968750pt;}
.h13{height:52.108438pt;}
.h9{height:52.134375pt;}
.h14{height:52.234000pt;}
.h26{height:52.526250pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.h24{height:59.680000pt;}
.hd{height:64.290000pt;}
.h8{height:64.500000pt;}
.h12{height:69.660000pt;}
.h16{height:71.955000pt;}
.hc{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h11{height:335.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w6{width:85.632000pt;}
.w9{width:91.186667pt;}
.wa{width:104.186667pt;}
.wb{width:107.220000pt;}
.wd{width:109.440000pt;}
.w7{width:111.360000pt;}
.wc{width:113.312000pt;}
.w5{width:126.260000pt;}
.w8{width:134.413333pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.716000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x2e{left:10.720000pt;}
.x1a{left:12.160000pt;}
.x1c{left:13.600000pt;}
.x25{left:14.880000pt;}
.x19{left:17.280000pt;}
.x24{left:20.160000pt;}
.x17{left:22.236000pt;}
.x2b{left:23.840000pt;}
.x27{left:26.560000pt;}
.x1d{left:27.996000pt;}
.x2a{left:28.960000pt;}
.x1b{left:30.240000pt;}
.x1e{left:31.840000pt;}
.x2d{left:33.280000pt;}
.x12{left:34.880000pt;}
.x28{left:37.600000pt;}
.x30{left:39.200000pt;}
.x1{left:40.324000pt;}
.x1f{left:42.720000pt;}
.x14{left:44.480000pt;}
.x5{left:48.000000pt;}
.x21{left:53.600000pt;}
.x20{left:55.680000pt;}
.x31{left:66.880000pt;}
.x15{left:72.000000pt;}
.xb{left:79.392000pt;}
.x33{left:96.032000pt;}
.xd{left:120.672000pt;}
.xf{left:149.946667pt;}
.x29{left:152.826667pt;}
.xc{left:160.186667pt;}
.x18{left:175.066667pt;}
.x2{left:197.662667pt;}
.xe{left:209.626667pt;}
.x8{left:249.026667pt;}
.x9{left:259.106667pt;}
.x7{left:261.986667pt;}
.x2c{left:266.786667pt;}
.x10{left:279.426667pt;}
.x6{left:324.706667pt;}
.xa{left:336.706667pt;}
.x22{left:417.866667pt;}
.x11{left:420.893333pt;}
.x16{left:444.893333pt;}
.x32{left:468.893333pt;}
.x23{left:552.933333pt;}
.x26{left:644.773333pt;}
.x4{left:682.213333pt;}
}




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