
    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_5f473a4dbfbb4e52416abf87.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_ab2375f6b21cca12dcd5935e.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_bc1292fe3964c3cc799fa9fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc0d7c6b5f18b504625e7c4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_a719484215b0a0330c8f569e.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_b35636dbc834fffde6a06539.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70205ae1e63a712d1f2e9600.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_4fc451002ec85b5bd4fdb8c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:4.457031;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);}
.v2{vertical-align:-72.000000px;}
.v9{vertical-align:-70.560000px;}
.va{vertical-align:-69.120000px;}
.v1{vertical-align:-61.200000px;}
.v3{vertical-align:-9.360000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.240000px;}
.v6{vertical-align:22.320000px;}
.vb{vertical-align:27.360000px;}
.v4{vertical-align:35.280000px;}
.v7{vertical-align:43.920000px;}
.ls22{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.900000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.252000px;}
.ls6{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.096600px;}
.ls24{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.135600px;}
.ls1e{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.239040px;}
.lsb{letter-spacing:0.328320px;}
.ls4{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.466800px;}
.ls21{letter-spacing:0.828000px;}
.ls1f{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.620000px;}
.ls23{letter-spacing:5.760000px;}
.ls20{letter-spacing:6.660000px;}
.ls1a{letter-spacing:10.980000px;}
.ls28{letter-spacing:16.506720px;}
.ls27{letter-spacing:46.026720px;}
.lsf{letter-spacing:82.260000px;}
.lse{letter-spacing:97.380000px;}
.ls17{letter-spacing:114.546720px;}
.ls1d{letter-spacing:118.146720px;}
.ls7{letter-spacing:137.586720px;}
.ls26{letter-spacing:141.066720px;}
.ls2{letter-spacing:161.346720px;}
.lsc{letter-spacing:201.036000px;}
.ls25{letter-spacing:1065.936000px;}
.ls1{letter-spacing:1093.116000px;}
.ls16{letter-spacing:1148.736000px;}
.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;}
}
.wse{word-spacing:-15.406800px;}
.ws6{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.146400px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.wsf{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.790600px;}
.wsc{word-spacing:-11.160000px;}
.ws7{word-spacing:-9.737280px;}
.wsd{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.733760px;}
._1{width:1.010160px;}
._4{width:2.049600px;}
._3{width:3.200640px;}
._5{width:4.311600px;}
._c{width:5.354400px;}
._d{width:6.865680px;}
._6{width:8.665200px;}
._7{width:9.864480px;}
._8{width:11.414160px;}
._9{width:12.630000px;}
._a{width:13.888080px;}
._e{width:16.135200px;}
._f{width:17.488080px;}
._b{width:18.684000px;}
._11{width:20.437920px;}
._10{width:21.573360px;}
._12{width:22.765920px;}
._16{width:24.501600px;}
._15{width:25.816320px;}
._17{width:27.666240px;}
._14{width:29.586960px;}
._13{width:30.597120px;}
._28{width:35.975520px;}
._29{width:37.488000px;}
._1f{width:40.247040px;}
._32{width:41.838480px;}
._33{width:43.008240px;}
._2{width:47.706240px;}
._2b{width:60.656400px;}
._35{width:63.613200px;}
._18{width:64.706400px;}
._1b{width:76.299840px;}
._2f{width:89.944560px;}
._2e{width:91.253520px;}
._36{width:92.266560px;}
._2c{width:93.703680px;}
._2d{width:95.067840px;}
._23{width:97.213680px;}
._30{width:100.871280px;}
._31{width:102.427680px;}
._2a{width:106.796880px;}
._27{width:108.157440px;}
._37{width:122.022480px;}
._25{width:143.460000px;}
._21{width:157.397520px;}
._1d{width:171.156000px;}
._20{width:172.533360px;}
._1e{width:178.103520px;}
._1a{width:180.476640px;}
._34{width:182.112960px;}
._19{width:188.929200px;}
._22{width:193.223520px;}
._1c{width:200.560320px;}
._26{width:633.181920px;}
._24{width:1043.990160px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(79,98,40);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(118,146,60);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(148,54,52);}
.fc0{color:rgb(5,99,193);}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:156.240000px;}
.fsa{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:2.880000px;}
.ya2{bottom:3.060000px;}
.y9f{bottom:3.090000px;}
.ye9{bottom:3.600000px;}
.ydd{bottom:3.780000px;}
.ye4{bottom:3.810000px;}
.yd5{bottom:6.300000px;}
.yd3{bottom:7.020000px;}
.ya3{bottom:9.900000px;}
.y9d{bottom:9.930000px;}
.yea{bottom:12.240000px;}
.ydf{bottom:12.420000px;}
.ye2{bottom:12.450000px;}
.yd6{bottom:14.940000px;}
.yd1{bottom:15.660000px;}
.ya1{bottom:16.740000px;}
.ya5{bottom:16.920000px;}
.y9e{bottom:16.950000px;}
.yce{bottom:18.540000px;}
.ye8{bottom:20.880000px;}
.ydc{bottom:21.060000px;}
.ye3{bottom:21.090000px;}
.ya8{bottom:23.580000px;}
.yd8{bottom:23.625000px;}
.yd2{bottom:24.300000px;}
.ycf{bottom:27.180000px;}
.yde{bottom:29.700000px;}
.ya9{bottom:30.600000px;}
.ydb{bottom:38.340000px;}
.ya{bottom:94.536000px;}
.y9{bottom:99.216000px;}
.y8{bottom:117.036000px;}
.ycc{bottom:135.216000px;}
.y87{bottom:135.936000px;}
.y70{bottom:136.656000px;}
.y39{bottom:138.276000px;}
.y115{bottom:141.876000px;}
.y9b{bottom:142.596000px;}
.ybc{bottom:144.396000px;}
.ycb{bottom:152.490000px;}
.y86{bottom:153.210000px;}
.y6f{bottom:153.930000px;}
.y38{bottom:155.550000px;}
.y114{bottom:158.970000px;}
.y9a{bottom:159.870000px;}
.ybb{bottom:161.670000px;}
.yca{bottom:169.770000px;}
.y85{bottom:170.310000px;}
.y6e{bottom:171.030000px;}
.y37{bottom:172.830000px;}
.y113{bottom:176.250000px;}
.y99{bottom:177.150000px;}
.yba{bottom:178.950000px;}
.yc9{bottom:187.050000px;}
.y84{bottom:187.590000px;}
.y6d{bottom:188.310000px;}
.y36{bottom:190.110000px;}
.y112{bottom:193.530000px;}
.y98{bottom:194.430000px;}
.yb9{bottom:196.230000px;}
.yc8{bottom:204.330000px;}
.y83{bottom:204.870000px;}
.y6c{bottom:205.590000px;}
.y35{bottom:207.390000px;}
.y111{bottom:210.810000px;}
.y97{bottom:211.710000px;}
.yb8{bottom:213.330000px;}
.yc7{bottom:221.430000px;}
.y82{bottom:222.150000px;}
.y6b{bottom:222.870000px;}
.y34{bottom:224.670000px;}
.y110{bottom:228.090000px;}
.y96{bottom:228.810000px;}
.yb7{bottom:230.610000px;}
.y81{bottom:239.430000px;}
.y6a{bottom:240.150000px;}
.y33{bottom:241.770000px;}
.y10f{bottom:245.370000px;}
.y95{bottom:246.090000px;}
.yb6{bottom:247.890000px;}
.yc6{bottom:255.990000px;}
.y80{bottom:256.710000px;}
.y69{bottom:257.430000px;}
.y32{bottom:259.050000px;}
.y10e{bottom:262.470000px;}
.y94{bottom:263.370000px;}
.yb5{bottom:265.170000px;}
.y7f{bottom:273.810000px;}
.y68{bottom:274.530000px;}
.y31{bottom:276.330000px;}
.y10d{bottom:279.750000px;}
.y93{bottom:280.650000px;}
.yb4{bottom:282.450000px;}
.yc5{bottom:290.550000px;}
.y7e{bottom:291.090000px;}
.y67{bottom:291.810000px;}
.y30{bottom:293.610000px;}
.y10c{bottom:297.030000px;}
.y92{bottom:297.930000px;}
.yb3{bottom:299.730000px;}
.y7d{bottom:308.370000px;}
.y66{bottom:309.090000px;}
.y2f{bottom:310.890000px;}
.y10b{bottom:314.310000px;}
.y91{bottom:315.030000px;}
.yb2{bottom:316.830000px;}
.yc4{bottom:324.930000px;}
.y7c{bottom:325.650000px;}
.y65{bottom:326.370000px;}
.y2e{bottom:327.990000px;}
.y10a{bottom:331.590000px;}
.y90{bottom:332.310000px;}
.yb1{bottom:334.110000px;}
.yc3{bottom:342.210000px;}
.y7b{bottom:342.930000px;}
.y64{bottom:343.650000px;}
.y2d{bottom:345.315000px;}
.y109{bottom:348.735000px;}
.y8f{bottom:349.635000px;}
.yb0{bottom:351.435000px;}
.yc2{bottom:359.535000px;}
.y7a{bottom:360.255000px;}
.y63{bottom:360.975000px;}
.y2c{bottom:362.595000px;}
.y108{bottom:366.015000px;}
.y8e{bottom:366.915000px;}
.yaf{bottom:368.715000px;}
.yee{bottom:373.755000px;}
.y79{bottom:377.355000px;}
.y62{bottom:378.075000px;}
.y2b{bottom:379.875000px;}
.y107{bottom:383.295000px;}
.y8d{bottom:384.195000px;}
.yae{bottom:385.995000px;}
.yed{bottom:391.755000px;}
.y78{bottom:394.635000px;}
.y61{bottom:395.355000px;}
.y2a{bottom:397.155000px;}
.y106{bottom:400.575000px;}
.y8c{bottom:401.475000px;}
.yad{bottom:403.275000px;}
.yec{bottom:409.755000px;}
.y77{bottom:411.915000px;}
.y60{bottom:412.635000px;}
.y29{bottom:414.435000px;}
.y117{bottom:417.135000px;}
.y105{bottom:417.855000px;}
.yac{bottom:420.375000px;}
.y8b{bottom:423.075000px;}
.y76{bottom:429.195000px;}
.y5f{bottom:429.915000px;}
.y116{bottom:431.175000px;}
.yaa{bottom:434.775000px;}
.y104{bottom:435.135000px;}
.y89{bottom:435.315000px;}
.y8a{bottom:435.855000px;}
.y75{bottom:446.475000px;}
.y5e{bottom:447.195000px;}
.y28{bottom:449.175000px;}
.y103{bottom:452.235000px;}
.y88{bottom:459.975000px;}
.yeb{bottom:462.315000px;}
.y74{bottom:463.755000px;}
.y5d{bottom:464.475000px;}
.y27{bottom:467.895000px;}
.y102{bottom:469.515000px;}
.ya7{bottom:477.615000px;}
.y73{bottom:480.495000px;}
.y5c{bottom:481.575000px;}
.y26{bottom:485.175000px;}
.y101{bottom:486.795000px;}
.ye7{bottom:497.595000px;}
.y72{bottom:497.955000px;}
.y5b{bottom:498.855000px;}
.y25{bottom:502.275000px;}
.y100{bottom:504.075000px;}
.y71{bottom:515.775000px;}
.y5a{bottom:516.135000px;}
.y24{bottom:519.555000px;}
.ya6{bottom:519.735000px;}
.yff{bottom:521.355000px;}
.ye6{bottom:532.695000px;}
.y59{bottom:533.415000px;}
.y23{bottom:536.835000px;}
.yfe{bottom:538.635000px;}
.ya4{bottom:547.995000px;}
.y58{bottom:550.695000px;}
.y22{bottom:554.115000px;}
.yfd{bottom:555.735000px;}
.y57{bottom:567.795000px;}
.ye5{bottom:567.975000px;}
.y21{bottom:571.395000px;}
.yfc{bottom:573.015000px;}
.ya0{bottom:576.435000px;}
.y56{bottom:585.075000px;}
.y20{bottom:588.495000px;}
.yfb{bottom:590.295000px;}
.y55{bottom:602.355000px;}
.ye1{bottom:603.255000px;}
.y9c{bottom:604.695000px;}
.y1f{bottom:605.775000px;}
.yfa{bottom:607.605000px;}
.y54{bottom:619.665000px;}
.y1e{bottom:623.085000px;}
.yf9{bottom:624.885000px;}
.y53{bottom:636.945000px;}
.y1d{bottom:640.365000px;}
.yf8{bottom:642.165000px;}
.yc1{bottom:642.885000px;}
.y52{bottom:654.225000px;}
.y1c{bottom:657.645000px;}
.yf7{bottom:659.265000px;}
.y51{bottom:671.325000px;}
.y1b{bottom:674.925000px;}
.yf6{bottom:676.545000px;}
.yc0{bottom:677.445000px;}
.y50{bottom:688.605000px;}
.y1a{bottom:692.025000px;}
.yf5{bottom:693.825000px;}
.ybf{bottom:694.545000px;}
.y4f{bottom:705.885000px;}
.y19{bottom:709.305000px;}
.yf4{bottom:711.105000px;}
.ybe{bottom:711.825000px;}
.y4e{bottom:723.165000px;}
.y18{bottom:726.585000px;}
.yf3{bottom:728.385000px;}
.ybd{bottom:729.105000px;}
.y4d{bottom:740.445000px;}
.ye0{bottom:743.325000px;}
.y17{bottom:743.865000px;}
.yf2{bottom:745.485000px;}
.y4c{bottom:757.725000px;}
.y16{bottom:761.145000px;}
.yda{bottom:761.325000px;}
.yf1{bottom:770.865000px;}
.y4b{bottom:774.825000px;}
.y15{bottom:780.405000px;}
.y4a{bottom:792.105000px;}
.y14{bottom:805.605000px;}
.y49{bottom:809.385000px;}
.yd9{bottom:813.885000px;}
.y13{bottom:823.245000px;}
.yf0{bottom:825.225000px;}
.y48{bottom:826.665000px;}
.y12{bottom:840.525000px;}
.y47{bottom:843.945000px;}
.yd7{bottom:854.385000px;}
.y11{bottom:857.625000px;}
.y46{bottom:861.045000px;}
.y10{bottom:876.210000px;}
.y45{bottom:878.370000px;}
.yd4{bottom:894.930000px;}
.y44{bottom:895.650000px;}
.yf{bottom:900.150000px;}
.y43{bottom:912.930000px;}
.ye{bottom:925.350000px;}
.y42{bottom:930.210000px;}
.yd0{bottom:935.430000px;}
.y41{bottom:947.490000px;}
.yd{bottom:955.590000px;}
.y40{bottom:964.590000px;}
.ycd{bottom:977.370000px;}
.y3f{bottom:981.870000px;}
.y3e{bottom:999.150000px;}
.yc{bottom:1000.410000px;}
.y3d{bottom:1016.430000px;}
.y3c{bottom:1033.710000px;}
.yb{bottom:1045.230000px;}
.y3b{bottom:1050.990000px;}
.yef{bottom:1067.730000px;}
.y3a{bottom:1068.090000px;}
.y7{bottom:1081.950000px;}
.y6{bottom:1086.630000px;}
.y5{bottom:1107.150000px;}
.y4{bottom:1122.630000px;}
.y3{bottom:1153.620000px;}
.y2{bottom:1167.660000px;}
.y1{bottom:1181.700000px;}
.h19{height:13.665000px;}
.h1f{height:17.280000px;}
.h16{height:27.525000px;}
.h17{height:27.705000px;}
.h15{height:27.750000px;}
.h23{height:34.380000px;}
.h22{height:34.560000px;}
.h20{height:34.596000px;}
.h1c{height:39.780000px;}
.h1d{height:39.816000px;}
.h1b{height:41.220000px;}
.h18{height:41.385000px;}
.hd{height:41.522695px;}
.h10{height:42.806602px;}
.h1a{height:46.800000px;}
.h3{height:47.344922px;}
.h4{height:48.616875px;}
.h1e{height:51.840000px;}
.h2{height:52.998047px;}
.h5{height:54.421875px;}
.hf{height:58.621992px;}
.h7{height:58.651172px;}
.hc{height:60.226875px;}
.h11{height:62.211094px;}
.he{height:64.978594px;}
.h6{height:65.010937px;}
.h21{height:65.518594px;}
.hb{height:82.676953px;}
.ha{height:84.898125px;}
.h14{height:91.986328px;}
.h9{height:93.983203px;}
.h12{height:141.984141px;}
.h13{height:145.986328px;}
.h8{height:157.460625px;}
.h24{height:217.687500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1c{width:30.276000px;}
.w15{width:36.000000px;}
.w14{width:37.476000px;}
.wf{width:37.980000px;}
.wd{width:38.016000px;}
.w10{width:40.140000px;}
.wb{width:41.070000px;}
.we{width:43.200000px;}
.w13{width:45.180000px;}
.w3{width:47.700000px;}
.w5{width:47.736000px;}
.w6{width:50.025000px;}
.w4{width:53.460000px;}
.wa{width:54.705000px;}
.w12{width:58.500000px;}
.w1b{width:64.440000px;}
.w9{width:64.605000px;}
.w19{width:66.456000px;}
.w8{width:70.401000px;}
.w11{width:73.656000px;}
.w1d{width:77.400000px;}
.w7{width:87.465000px;}
.w1a{width:89.100000px;}
.w18{width:100.980000px;}
.w1e{width:118.116000px;}
.w2{width:200.719500px;}
.w17{width:213.555000px;}
.wc{width:356.475000px;}
.w16{width:647.970000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x27{left:8.089500px;}
.x3c{left:15.165000px;}
.x26{left:16.560000px;}
.x28{left:17.820000px;}
.x18{left:19.260000px;}
.x19{left:20.700000px;}
.x1e{left:21.945000px;}
.x1b{left:23.760000px;}
.x20{left:25.905000px;}
.x29{left:29.145000px;}
.x3e{left:33.120000px;}
.x2b{left:35.085000px;}
.x41{left:38.340000px;}
.x21{left:40.665000px;}
.x42{left:42.120000px;}
.x2a{left:43.545000px;}
.x40{left:51.120000px;}
.x16{left:52.369500px;}
.x43{left:59.040000px;}
.x2f{left:63.360000px;}
.x38{left:66.600000px;}
.x15{left:87.886500px;}
.x6{left:108.036000px;}
.x7{left:114.336000px;}
.x13{left:119.916000px;}
.x2c{left:134.136000px;}
.x8{left:149.256000px;}
.xf{left:160.590000px;}
.x2{left:165.450000px;}
.x11{left:173.730000px;}
.x10{left:203.430000px;}
.x12{left:220.890000px;}
.x2e{left:230.790000px;}
.x3{left:243.210000px;}
.xb{left:270.975000px;}
.x39{left:280.155000px;}
.x17{left:288.615000px;}
.x14{left:312.015000px;}
.xd{left:313.275000px;}
.x2d{left:317.595000px;}
.xa{left:324.255000px;}
.x1a{left:336.315000px;}
.xc{left:380.595000px;}
.x44{left:383.115000px;}
.x1c{left:389.775000px;}
.xe{left:401.655000px;}
.x1{left:419.835000px;}
.x1d{left:437.520000px;}
.x9{left:446.685000px;}
.x30{left:457.845000px;}
.x1f{left:487.380000px;}
.x31{left:501.045000px;}
.x3a{left:536.685000px;}
.x32{left:539.025000px;}
.x5{left:564.045000px;}
.x22{left:574.860000px;}
.x33{left:579.165000px;}
.x3b{left:601.125000px;}
.x3d{left:631.410000px;}
.x23{left:645.270000px;}
.x34{left:652.830000px;}
.x4{left:664.350000px;}
.x3f{left:708.810000px;}
.x24{left:709.890000px;}
.x35{left:711.330000px;}
.x36{left:756.510000px;}
.x25{left:764.610000px;}
.x37{left:793.980000px;}
@media print{
.v2{vertical-align:-64.000000pt;}
.v9{vertical-align:-62.720000pt;}
.va{vertical-align:-61.440000pt;}
.v1{vertical-align:-54.400000pt;}
.v3{vertical-align:-8.320000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.880000pt;}
.v6{vertical-align:19.840000pt;}
.vb{vertical-align:24.320000pt;}
.v4{vertical-align:31.360000pt;}
.v7{vertical-align:39.040000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.224000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.085867pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.120533pt;}
.ls1e{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.212480pt;}
.lsb{letter-spacing:0.291840pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.414933pt;}
.ls21{letter-spacing:0.736000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.440000pt;}
.ls23{letter-spacing:5.120000pt;}
.ls20{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:9.760000pt;}
.ls28{letter-spacing:14.672640pt;}
.ls27{letter-spacing:40.912640pt;}
.lsf{letter-spacing:73.120000pt;}
.lse{letter-spacing:86.560000pt;}
.ls17{letter-spacing:101.819307pt;}
.ls1d{letter-spacing:105.019307pt;}
.ls7{letter-spacing:122.299307pt;}
.ls26{letter-spacing:125.392640pt;}
.ls2{letter-spacing:143.419307pt;}
.lsc{letter-spacing:178.698667pt;}
.ls25{letter-spacing:947.498667pt;}
.ls1{letter-spacing:971.658667pt;}
.ls16{letter-spacing:1021.098667pt;}
.wse{word-spacing:-13.694933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws4{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.480533pt;}
.wsc{word-spacing:-9.920000pt;}
.ws7{word-spacing:-8.655360pt;}
.wsd{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.541120pt;}
._1{width:0.897920pt;}
._4{width:1.821867pt;}
._3{width:2.845013pt;}
._5{width:3.832533pt;}
._c{width:4.759467pt;}
._d{width:6.102827pt;}
._6{width:7.702400pt;}
._7{width:8.768427pt;}
._8{width:10.145920pt;}
._9{width:11.226667pt;}
._a{width:12.344960pt;}
._e{width:14.342400pt;}
._f{width:15.544960pt;}
._b{width:16.608000pt;}
._11{width:18.167040pt;}
._10{width:19.176320pt;}
._12{width:20.236373pt;}
._16{width:21.779200pt;}
._15{width:22.947840pt;}
._17{width:24.592213pt;}
._14{width:26.299520pt;}
._13{width:27.197440pt;}
._28{width:31.978240pt;}
._29{width:33.322667pt;}
._1f{width:35.775147pt;}
._32{width:37.189760pt;}
._33{width:38.229547pt;}
._2{width:42.405547pt;}
._2b{width:53.916800pt;}
._35{width:56.545067pt;}
._18{width:57.516800pt;}
._1b{width:67.822080pt;}
._2f{width:79.950720pt;}
._2e{width:81.114240pt;}
._36{width:82.014720pt;}
._2c{width:83.292160pt;}
._2d{width:84.504747pt;}
._23{width:86.412160pt;}
._30{width:89.663360pt;}
._31{width:91.046827pt;}
._2a{width:94.930560pt;}
._27{width:96.139947pt;}
._37{width:108.464427pt;}
._25{width:127.520000pt;}
._21{width:139.908907pt;}
._1d{width:152.138667pt;}
._20{width:153.362987pt;}
._1e{width:158.314240pt;}
._1a{width:160.423680pt;}
._34{width:161.878187pt;}
._19{width:167.937067pt;}
._22{width:171.754240pt;}
._1c{width:178.275840pt;}
._26{width:562.828373pt;}
._24{width:927.991253pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:138.880000pt;}
.fsa{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:2.560000pt;}
.ya2{bottom:2.720000pt;}
.y9f{bottom:2.746667pt;}
.ye9{bottom:3.200000pt;}
.ydd{bottom:3.360000pt;}
.ye4{bottom:3.386667pt;}
.yd5{bottom:5.600000pt;}
.yd3{bottom:6.240000pt;}
.ya3{bottom:8.800000pt;}
.y9d{bottom:8.826667pt;}
.yea{bottom:10.880000pt;}
.ydf{bottom:11.040000pt;}
.ye2{bottom:11.066667pt;}
.yd6{bottom:13.280000pt;}
.yd1{bottom:13.920000pt;}
.ya1{bottom:14.880000pt;}
.ya5{bottom:15.040000pt;}
.y9e{bottom:15.066667pt;}
.yce{bottom:16.480000pt;}
.ye8{bottom:18.560000pt;}
.ydc{bottom:18.720000pt;}
.ye3{bottom:18.746667pt;}
.ya8{bottom:20.960000pt;}
.yd8{bottom:21.000000pt;}
.yd2{bottom:21.600000pt;}
.ycf{bottom:24.160000pt;}
.yde{bottom:26.400000pt;}
.ya9{bottom:27.200000pt;}
.ydb{bottom:34.080000pt;}
.ya{bottom:84.032000pt;}
.y9{bottom:88.192000pt;}
.y8{bottom:104.032000pt;}
.ycc{bottom:120.192000pt;}
.y87{bottom:120.832000pt;}
.y70{bottom:121.472000pt;}
.y39{bottom:122.912000pt;}
.y115{bottom:126.112000pt;}
.y9b{bottom:126.752000pt;}
.ybc{bottom:128.352000pt;}
.ycb{bottom:135.546667pt;}
.y86{bottom:136.186667pt;}
.y6f{bottom:136.826667pt;}
.y38{bottom:138.266667pt;}
.y114{bottom:141.306667pt;}
.y9a{bottom:142.106667pt;}
.ybb{bottom:143.706667pt;}
.yca{bottom:150.906667pt;}
.y85{bottom:151.386667pt;}
.y6e{bottom:152.026667pt;}
.y37{bottom:153.626667pt;}
.y113{bottom:156.666667pt;}
.y99{bottom:157.466667pt;}
.yba{bottom:159.066667pt;}
.yc9{bottom:166.266667pt;}
.y84{bottom:166.746667pt;}
.y6d{bottom:167.386667pt;}
.y36{bottom:168.986667pt;}
.y112{bottom:172.026667pt;}
.y98{bottom:172.826667pt;}
.yb9{bottom:174.426667pt;}
.yc8{bottom:181.626667pt;}
.y83{bottom:182.106667pt;}
.y6c{bottom:182.746667pt;}
.y35{bottom:184.346667pt;}
.y111{bottom:187.386667pt;}
.y97{bottom:188.186667pt;}
.yb8{bottom:189.626667pt;}
.yc7{bottom:196.826667pt;}
.y82{bottom:197.466667pt;}
.y6b{bottom:198.106667pt;}
.y34{bottom:199.706667pt;}
.y110{bottom:202.746667pt;}
.y96{bottom:203.386667pt;}
.yb7{bottom:204.986667pt;}
.y81{bottom:212.826667pt;}
.y6a{bottom:213.466667pt;}
.y33{bottom:214.906667pt;}
.y10f{bottom:218.106667pt;}
.y95{bottom:218.746667pt;}
.yb6{bottom:220.346667pt;}
.yc6{bottom:227.546667pt;}
.y80{bottom:228.186667pt;}
.y69{bottom:228.826667pt;}
.y32{bottom:230.266667pt;}
.y10e{bottom:233.306667pt;}
.y94{bottom:234.106667pt;}
.yb5{bottom:235.706667pt;}
.y7f{bottom:243.386667pt;}
.y68{bottom:244.026667pt;}
.y31{bottom:245.626667pt;}
.y10d{bottom:248.666667pt;}
.y93{bottom:249.466667pt;}
.yb4{bottom:251.066667pt;}
.yc5{bottom:258.266667pt;}
.y7e{bottom:258.746667pt;}
.y67{bottom:259.386667pt;}
.y30{bottom:260.986667pt;}
.y10c{bottom:264.026667pt;}
.y92{bottom:264.826667pt;}
.yb3{bottom:266.426667pt;}
.y7d{bottom:274.106667pt;}
.y66{bottom:274.746667pt;}
.y2f{bottom:276.346667pt;}
.y10b{bottom:279.386667pt;}
.y91{bottom:280.026667pt;}
.yb2{bottom:281.626667pt;}
.yc4{bottom:288.826667pt;}
.y7c{bottom:289.466667pt;}
.y65{bottom:290.106667pt;}
.y2e{bottom:291.546667pt;}
.y10a{bottom:294.746667pt;}
.y90{bottom:295.386667pt;}
.yb1{bottom:296.986667pt;}
.yc3{bottom:304.186667pt;}
.y7b{bottom:304.826667pt;}
.y64{bottom:305.466667pt;}
.y2d{bottom:306.946667pt;}
.y109{bottom:309.986667pt;}
.y8f{bottom:310.786667pt;}
.yb0{bottom:312.386667pt;}
.yc2{bottom:319.586667pt;}
.y7a{bottom:320.226667pt;}
.y63{bottom:320.866667pt;}
.y2c{bottom:322.306667pt;}
.y108{bottom:325.346667pt;}
.y8e{bottom:326.146667pt;}
.yaf{bottom:327.746667pt;}
.yee{bottom:332.226667pt;}
.y79{bottom:335.426667pt;}
.y62{bottom:336.066667pt;}
.y2b{bottom:337.666667pt;}
.y107{bottom:340.706667pt;}
.y8d{bottom:341.506667pt;}
.yae{bottom:343.106667pt;}
.yed{bottom:348.226667pt;}
.y78{bottom:350.786667pt;}
.y61{bottom:351.426667pt;}
.y2a{bottom:353.026667pt;}
.y106{bottom:356.066667pt;}
.y8c{bottom:356.866667pt;}
.yad{bottom:358.466667pt;}
.yec{bottom:364.226667pt;}
.y77{bottom:366.146667pt;}
.y60{bottom:366.786667pt;}
.y29{bottom:368.386667pt;}
.y117{bottom:370.786667pt;}
.y105{bottom:371.426667pt;}
.yac{bottom:373.666667pt;}
.y8b{bottom:376.066667pt;}
.y76{bottom:381.506667pt;}
.y5f{bottom:382.146667pt;}
.y116{bottom:383.266667pt;}
.yaa{bottom:386.466667pt;}
.y104{bottom:386.786667pt;}
.y89{bottom:386.946667pt;}
.y8a{bottom:387.426667pt;}
.y75{bottom:396.866667pt;}
.y5e{bottom:397.506667pt;}
.y28{bottom:399.266667pt;}
.y103{bottom:401.986667pt;}
.y88{bottom:408.866667pt;}
.yeb{bottom:410.946667pt;}
.y74{bottom:412.226667pt;}
.y5d{bottom:412.866667pt;}
.y27{bottom:415.906667pt;}
.y102{bottom:417.346667pt;}
.ya7{bottom:424.546667pt;}
.y73{bottom:427.106667pt;}
.y5c{bottom:428.066667pt;}
.y26{bottom:431.266667pt;}
.y101{bottom:432.706667pt;}
.ye7{bottom:442.306667pt;}
.y72{bottom:442.626667pt;}
.y5b{bottom:443.426667pt;}
.y25{bottom:446.466667pt;}
.y100{bottom:448.066667pt;}
.y71{bottom:458.466667pt;}
.y5a{bottom:458.786667pt;}
.y24{bottom:461.826667pt;}
.ya6{bottom:461.986667pt;}
.yff{bottom:463.426667pt;}
.ye6{bottom:473.506667pt;}
.y59{bottom:474.146667pt;}
.y23{bottom:477.186667pt;}
.yfe{bottom:478.786667pt;}
.ya4{bottom:487.106667pt;}
.y58{bottom:489.506667pt;}
.y22{bottom:492.546667pt;}
.yfd{bottom:493.986667pt;}
.y57{bottom:504.706667pt;}
.ye5{bottom:504.866667pt;}
.y21{bottom:507.906667pt;}
.yfc{bottom:509.346667pt;}
.ya0{bottom:512.386667pt;}
.y56{bottom:520.066667pt;}
.y20{bottom:523.106667pt;}
.yfb{bottom:524.706667pt;}
.y55{bottom:535.426667pt;}
.ye1{bottom:536.226667pt;}
.y9c{bottom:537.506667pt;}
.y1f{bottom:538.466667pt;}
.yfa{bottom:540.093333pt;}
.y54{bottom:550.813333pt;}
.y1e{bottom:553.853333pt;}
.yf9{bottom:555.453333pt;}
.y53{bottom:566.173333pt;}
.y1d{bottom:569.213333pt;}
.yf8{bottom:570.813333pt;}
.yc1{bottom:571.453333pt;}
.y52{bottom:581.533333pt;}
.y1c{bottom:584.573333pt;}
.yf7{bottom:586.013333pt;}
.y51{bottom:596.733333pt;}
.y1b{bottom:599.933333pt;}
.yf6{bottom:601.373333pt;}
.yc0{bottom:602.173333pt;}
.y50{bottom:612.093333pt;}
.y1a{bottom:615.133333pt;}
.yf5{bottom:616.733333pt;}
.ybf{bottom:617.373333pt;}
.y4f{bottom:627.453333pt;}
.y19{bottom:630.493333pt;}
.yf4{bottom:632.093333pt;}
.ybe{bottom:632.733333pt;}
.y4e{bottom:642.813333pt;}
.y18{bottom:645.853333pt;}
.yf3{bottom:647.453333pt;}
.ybd{bottom:648.093333pt;}
.y4d{bottom:658.173333pt;}
.ye0{bottom:660.733333pt;}
.y17{bottom:661.213333pt;}
.yf2{bottom:662.653333pt;}
.y4c{bottom:673.533333pt;}
.y16{bottom:676.573333pt;}
.yda{bottom:676.733333pt;}
.yf1{bottom:685.213333pt;}
.y4b{bottom:688.733333pt;}
.y15{bottom:693.693333pt;}
.y4a{bottom:704.093333pt;}
.y14{bottom:716.093333pt;}
.y49{bottom:719.453333pt;}
.yd9{bottom:723.453333pt;}
.y13{bottom:731.773333pt;}
.yf0{bottom:733.533333pt;}
.y48{bottom:734.813333pt;}
.y12{bottom:747.133333pt;}
.y47{bottom:750.173333pt;}
.yd7{bottom:759.453333pt;}
.y11{bottom:762.333333pt;}
.y46{bottom:765.373333pt;}
.y10{bottom:778.853333pt;}
.y45{bottom:780.773333pt;}
.yd4{bottom:795.493333pt;}
.y44{bottom:796.133333pt;}
.yf{bottom:800.133333pt;}
.y43{bottom:811.493333pt;}
.ye{bottom:822.533333pt;}
.y42{bottom:826.853333pt;}
.yd0{bottom:831.493333pt;}
.y41{bottom:842.213333pt;}
.yd{bottom:849.413333pt;}
.y40{bottom:857.413333pt;}
.ycd{bottom:868.773333pt;}
.y3f{bottom:872.773333pt;}
.y3e{bottom:888.133333pt;}
.yc{bottom:889.253333pt;}
.y3d{bottom:903.493333pt;}
.y3c{bottom:918.853333pt;}
.yb{bottom:929.093333pt;}
.y3b{bottom:934.213333pt;}
.yef{bottom:949.093333pt;}
.y3a{bottom:949.413333pt;}
.y7{bottom:961.733333pt;}
.y6{bottom:965.893333pt;}
.y5{bottom:984.133333pt;}
.y4{bottom:997.893333pt;}
.y3{bottom:1025.440000pt;}
.y2{bottom:1037.920000pt;}
.y1{bottom:1050.400000pt;}
.h19{height:12.146667pt;}
.h1f{height:15.360000pt;}
.h16{height:24.466667pt;}
.h17{height:24.626667pt;}
.h15{height:24.666667pt;}
.h23{height:30.560000pt;}
.h22{height:30.720000pt;}
.h20{height:30.752000pt;}
.h1c{height:35.360000pt;}
.h1d{height:35.392000pt;}
.h1b{height:36.640000pt;}
.h18{height:36.786667pt;}
.hd{height:36.909063pt;}
.h10{height:38.050313pt;}
.h1a{height:41.600000pt;}
.h3{height:42.084375pt;}
.h4{height:43.215000pt;}
.h1e{height:46.080000pt;}
.h2{height:47.109375pt;}
.h5{height:48.375000pt;}
.hf{height:52.108438pt;}
.h7{height:52.134375pt;}
.hc{height:53.535000pt;}
.h11{height:55.298750pt;}
.he{height:57.758750pt;}
.h6{height:57.787500pt;}
.h21{height:58.238750pt;}
.hb{height:73.490625pt;}
.ha{height:75.465000pt;}
.h14{height:81.765625pt;}
.h9{height:83.540625pt;}
.h12{height:126.208125pt;}
.h13{height:129.765625pt;}
.h8{height:139.965000pt;}
.h24{height:193.500000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1c{width:26.912000pt;}
.w15{width:32.000000pt;}
.w14{width:33.312000pt;}
.wf{width:33.760000pt;}
.wd{width:33.792000pt;}
.w10{width:35.680000pt;}
.wb{width:36.506667pt;}
.we{width:38.400000pt;}
.w13{width:40.160000pt;}
.w3{width:42.400000pt;}
.w5{width:42.432000pt;}
.w6{width:44.466667pt;}
.w4{width:47.520000pt;}
.wa{width:48.626667pt;}
.w12{width:52.000000pt;}
.w1b{width:57.280000pt;}
.w9{width:57.426667pt;}
.w19{width:59.072000pt;}
.w8{width:62.578667pt;}
.w11{width:65.472000pt;}
.w1d{width:68.800000pt;}
.w7{width:77.746667pt;}
.w1a{width:79.200000pt;}
.w18{width:89.760000pt;}
.w1e{width:104.992000pt;}
.w2{width:178.417333pt;}
.w17{width:189.826667pt;}
.wc{width:316.866667pt;}
.w16{width:575.973333pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x27{left:7.190667pt;}
.x3c{left:13.480000pt;}
.x26{left:14.720000pt;}
.x28{left:15.840000pt;}
.x18{left:17.120000pt;}
.x19{left:18.400000pt;}
.x1e{left:19.506667pt;}
.x1b{left:21.120000pt;}
.x20{left:23.026667pt;}
.x29{left:25.906667pt;}
.x3e{left:29.440000pt;}
.x2b{left:31.186667pt;}
.x41{left:34.080000pt;}
.x21{left:36.146667pt;}
.x42{left:37.440000pt;}
.x2a{left:38.706667pt;}
.x40{left:45.440000pt;}
.x16{left:46.550667pt;}
.x43{left:52.480000pt;}
.x2f{left:56.320000pt;}
.x38{left:59.200000pt;}
.x15{left:78.121333pt;}
.x6{left:96.032000pt;}
.x7{left:101.632000pt;}
.x13{left:106.592000pt;}
.x2c{left:119.232000pt;}
.x8{left:132.672000pt;}
.xf{left:142.746667pt;}
.x2{left:147.066667pt;}
.x11{left:154.426667pt;}
.x10{left:180.826667pt;}
.x12{left:196.346667pt;}
.x2e{left:205.146667pt;}
.x3{left:216.186667pt;}
.xb{left:240.866667pt;}
.x39{left:249.026667pt;}
.x17{left:256.546667pt;}
.x14{left:277.346667pt;}
.xd{left:278.466667pt;}
.x2d{left:282.306667pt;}
.xa{left:288.226667pt;}
.x1a{left:298.946667pt;}
.xc{left:338.306667pt;}
.x44{left:340.546667pt;}
.x1c{left:346.466667pt;}
.xe{left:357.026667pt;}
.x1{left:373.186667pt;}
.x1d{left:388.906667pt;}
.x9{left:397.053333pt;}
.x30{left:406.973333pt;}
.x1f{left:433.226667pt;}
.x31{left:445.373333pt;}
.x3a{left:477.053333pt;}
.x32{left:479.133333pt;}
.x5{left:501.373333pt;}
.x22{left:510.986667pt;}
.x33{left:514.813333pt;}
.x3b{left:534.333333pt;}
.x3d{left:561.253333pt;}
.x23{left:573.573333pt;}
.x34{left:580.293333pt;}
.x4{left:590.533333pt;}
.x3f{left:630.053333pt;}
.x24{left:631.013333pt;}
.x35{left:632.293333pt;}
.x36{left:672.453333pt;}
.x25{left:679.653333pt;}
.x37{left:705.760000pt;}
}




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