
    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_d7a284ff6c07d938d4416a5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_a8065351ee25a1d7056c7e50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096191;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_d983298d7f2507f74e0d7d04.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c7cb5c5d1951b0de0d0ac47e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_a74fc0a822f4dcbd5f002294.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_a2c53e3496b7b3093ead545b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc5c454201904b91772e0ddb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_931ac6f9cdd567eaea8c5861.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.174240px;}
.ls16{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.900000px;}
.ls9{letter-spacing:2.160000px;}
.lsb{letter-spacing:3.600000px;}
.lsa{letter-spacing:4.500000px;}
.ls7{letter-spacing:5.040000px;}
.ls10{letter-spacing:7.200000px;}
.lse{letter-spacing:7.920000px;}
.lsc{letter-spacing:8.640000px;}
.ls11{letter-spacing:10.080000px;}
.ls12{letter-spacing:10.800000px;}
.ls6{letter-spacing:11.520000px;}
.lsf{letter-spacing:21.600000px;}
.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;}
}
.ws7{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-4.863600px;}
._4{margin-left:-3.559920px;}
._3{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._6{width:3.294960px;}
._f{width:4.761120px;}
._12{width:5.935200px;}
._10{width:7.776000px;}
._11{width:8.819040px;}
._b{width:9.869760px;}
._7{width:10.984320px;}
._a{width:11.998800px;}
._9{width:13.464000px;}
._c{width:14.472000px;}
._8{width:16.240320px;}
._15{width:19.080000px;}
._1a{width:20.376000px;}
._1c{width:21.752640px;}
._16{width:23.112000px;}
._17{width:24.264000px;}
._1e{width:25.399440px;}
._1f{width:26.568000px;}
._21{width:27.673200px;}
._19{width:28.872000px;}
._13{width:29.952000px;}
._14{width:31.384080px;}
._1d{width:32.559840px;}
._23{width:33.568560px;}
._37{width:36.792000px;}
._38{width:38.376000px;}
._24{width:41.040000px;}
._25{width:42.264000px;}
._34{width:43.272000px;}
._26{width:44.712000px;}
._27{width:45.720000px;}
._1b{width:46.872000px;}
._22{width:48.168000px;}
._33{width:49.436160px;}
._20{width:50.904000px;}
._2a{width:51.912000px;}
._d{width:56.088000px;}
._e{width:57.384000px;}
._2d{width:71.784000px;}
._2e{width:72.788160px;}
._35{width:79.488000px;}
._39{width:94.944000px;}
._3a{width:96.204000px;}
._31{width:109.800000px;}
._32{width:110.928240px;}
._28{width:163.272000px;}
._29{width:164.824080px;}
._36{width:183.712320px;}
._3b{width:231.192000px;}
._3c{width:232.632000px;}
._2f{width:337.752000px;}
._2b{width:441.000000px;}
._2c{width:442.308000px;}
._30{width:540.912000px;}
._5{width:1864.536000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.y14{bottom:12.600000px;}
.y43{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y7{bottom:21.420000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.y12{bottom:57.420000px;}
.y11{bottom:73.260000px;}
.y41{bottom:108.720000px;}
.y135{bottom:111.960000px;}
.yf0{bottom:112.860000px;}
.y117{bottom:114.660000px;}
.yb7{bottom:115.560000px;}
.y97{bottom:118.260000px;}
.y15f{bottom:120.960000px;}
.yea{bottom:121.860000px;}
.y40{bottom:123.840000px;}
.y72{bottom:124.560000px;}
.yfc{bottom:127.260000px;}
.y3f{bottom:129.060000px;}
.y134{bottom:132.660000px;}
.yef{bottom:133.560000px;}
.yb6{bottom:136.260000px;}
.y96{bottom:138.960000px;}
.y15e{bottom:141.660000px;}
.y3e{bottom:141.840000px;}
.ye9{bottom:142.560000px;}
.y116{bottom:144.360000px;}
.y71{bottom:145.260000px;}
.y14e{bottom:153.360000px;}
.yb5{bottom:156.960000px;}
.y95{bottom:159.660000px;}
.y133{bottom:162.360000px;}
.yee{bottom:163.260000px;}
.y115{bottom:165.060000px;}
.yf8{bottom:165.960000px;}
.ya8{bottom:168.660000px;}
.y3d{bottom:170.460000px;}
.y15d{bottom:171.360000px;}
.ye8{bottom:172.260000px;}
.y14d{bottom:174.060000px;}
.y70{bottom:174.960000px;}
.yb4{bottom:177.660000px;}
.y94{bottom:180.360000px;}
.y132{bottom:183.060000px;}
.ya7{bottom:189.360000px;}
.y3c{bottom:191.160000px;}
.y15c{bottom:192.060000px;}
.ye7{bottom:192.960000px;}
.y114{bottom:194.760000px;}
.y6f{bottom:195.660000px;}
.yd6{bottom:198.390000px;}
.y93{bottom:201.090000px;}
.y131{bottom:203.790000px;}
.yb3{bottom:207.390000px;}
.ya6{bottom:210.090000px;}
.y3b{bottom:211.890000px;}
.y15b{bottom:212.790000px;}
.ye6{bottom:213.690000px;}
.y113{bottom:215.490000px;}
.y6e{bottom:216.390000px;}
.yd5{bottom:219.090000px;}
.y14c{bottom:224.490000px;}
.yf7{bottom:225.390000px;}
.yb2{bottom:228.090000px;}
.y92{bottom:230.790000px;}
.y3a{bottom:232.590000px;}
.y130{bottom:233.490000px;}
.ye5{bottom:234.390000px;}
.y6d{bottom:237.090000px;}
.yd4{bottom:239.790000px;}
.y15a{bottom:242.490000px;}
.y112{bottom:245.190000px;}
.yf6{bottom:246.090000px;}
.yb1{bottom:248.790000px;}
.y12f{bottom:254.190000px;}
.ye4{bottom:255.090000px;}
.y6c{bottom:257.790000px;}
.y91{bottom:260.490000px;}
.y39{bottom:262.290000px;}
.y159{bottom:263.190000px;}
.y111{bottom:265.890000px;}
.yf5{bottom:266.790000px;}
.yb0{bottom:269.490000px;}
.y166{bottom:274.890000px;}
.ye3{bottom:275.790000px;}
.y6b{bottom:278.490000px;}
.yd3{bottom:281.190000px;}
.y38{bottom:282.990000px;}
.y12e{bottom:283.890000px;}
.y110{bottom:286.590000px;}
.yf4{bottom:287.490000px;}
.y90{bottom:290.190000px;}
.y14b{bottom:295.590000px;}
.ye2{bottom:296.490000px;}
.y6a{bottom:299.190000px;}
.yd2{bottom:301.890000px;}
.y12d{bottom:304.590000px;}
.y10f{bottom:307.290000px;}
.yf3{bottom:308.190000px;}
.ya5{bottom:310.890000px;}
.y37{bottom:312.690000px;}
.y158{bottom:313.590000px;}
.y14a{bottom:316.290000px;}
.ye1{bottom:317.190000px;}
.y69{bottom:319.890000px;}
.yfb{bottom:322.590000px;}
.y12c{bottom:325.290000px;}
.y10e{bottom:327.990000px;}
.yf2{bottom:328.890000px;}
.ya4{bottom:331.590000px;}
.y157{bottom:334.290000px;}
.y149{bottom:336.990000px;}
.ye0{bottom:337.890000px;}
.y68{bottom:340.590000px;}
.y36{bottom:342.390000px;}
.y165{bottom:345.990000px;}
.ya3{bottom:352.290000px;}
.y12b{bottom:354.990000px;}
.y10d{bottom:357.690000px;}
.ydf{bottom:358.590000px;}
.y8f{bottom:361.290000px;}
.y35{bottom:363.090000px;}
.y164{bottom:366.690000px;}
.y67{bottom:370.290000px;}
.yd1{bottom:372.990000px;}
.y12a{bottom:375.690000px;}
.y10c{bottom:378.390000px;}
.yde{bottom:379.290000px;}
.y8e{bottom:381.990000px;}
.y34{bottom:383.790000px;}
.y148{bottom:387.390000px;}
.y66{bottom:390.990000px;}
.yd0{bottom:393.690000px;}
.y129{bottom:396.390000px;}
.y10b{bottom:399.090000px;}
.ydd{bottom:399.990000px;}
.y8d{bottom:402.690000px;}
.y33{bottom:404.490000px;}
.y156{bottom:405.390000px;}
.y147{bottom:408.090000px;}
.y65{bottom:411.690000px;}
.ycf{bottom:414.390000px;}
.y128{bottom:417.090000px;}
.y10a{bottom:419.790000px;}
.ydc{bottom:420.690000px;}
.y8c{bottom:423.390000px;}
.y32{bottom:425.190000px;}
.y155{bottom:426.090000px;}
.y146{bottom:428.790000px;}
.y64{bottom:432.390000px;}
.yce{bottom:435.090000px;}
.y163{bottom:437.835000px;}
.y109{bottom:440.535000px;}
.ydb{bottom:441.435000px;}
.y8b{bottom:444.135000px;}
.y31{bottom:445.935000px;}
.y127{bottom:446.835000px;}
.y63{bottom:453.135000px;}
.ycd{bottom:455.835000px;}
.y145{bottom:458.535000px;}
.yda{bottom:462.135000px;}
.y8a{bottom:464.835000px;}
.y30{bottom:466.635000px;}
.y126{bottom:467.535000px;}
.y108{bottom:470.235000px;}
.y62{bottom:473.835000px;}
.ycc{bottom:476.535000px;}
.y144{bottom:479.235000px;}
.yed{bottom:482.835000px;}
.y2f{bottom:487.335000px;}
.y125{bottom:488.235000px;}
.y107{bottom:490.935000px;}
.yd9{bottom:491.835000px;}
.y61{bottom:494.535000px;}
.ycb{bottom:497.235000px;}
.y143{bottom:499.935000px;}
.yec{bottom:503.535000px;}
.y2e{bottom:508.035000px;}
.y124{bottom:508.935000px;}
.y106{bottom:511.635000px;}
.yd8{bottom:512.535000px;}
.y60{bottom:515.235000px;}
.y154{bottom:517.935000px;}
.y142{bottom:520.635000px;}
.y89{bottom:524.235000px;}
.yca{bottom:526.935000px;}
.y2d{bottom:528.735000px;}
.y123{bottom:529.635000px;}
.y105{bottom:532.335000px;}
.yd7{bottom:533.235000px;}
.y5f{bottom:535.935000px;}
.y160{bottom:538.635000px;}
.yf1{bottom:544.935000px;}
.yc9{bottom:547.635000px;}
.y2c{bottom:549.435000px;}
.y141{bottom:550.335000px;}
.y88{bottom:553.935000px;}
.ya2{bottom:556.635000px;}
.y122{bottom:559.335000px;}
.y104{bottom:562.035000px;}
.y5e{bottom:565.635000px;}
.yc8{bottom:568.335000px;}
.y2b{bottom:570.135000px;}
.y140{bottom:571.035000px;}
.y87{bottom:574.635000px;}
.y121{bottom:580.035000px;}
.y5d{bottom:586.335000px;}
.yc7{bottom:589.035000px;}
.y2a{bottom:590.835000px;}
.y103{bottom:591.735000px;}
.y86{bottom:595.335000px;}
.y162{bottom:600.735000px;}
.y5c{bottom:607.035000px;}
.yc6{bottom:609.735000px;}
.y29{bottom:611.535000px;}
.y13f{bottom:612.435000px;}
.y85{bottom:616.035000px;}
.y42{bottom:617.475000px;}
.y153{bottom:618.735000px;}
.y102{bottom:621.435000px;}
.y5b{bottom:627.735000px;}
.yc5{bottom:630.435000px;}
.y28{bottom:632.235000px;}
.y84{bottom:636.735000px;}
.y152{bottom:639.435000px;}
.y101{bottom:642.135000px;}
.y13{bottom:643.035000px;}
.y5a{bottom:648.435000px;}
.yc4{bottom:651.135000px;}
.y27{bottom:652.935000px;}
.y83{bottom:657.435000px;}
.y151{bottom:660.135000px;}
.y13e{bottom:662.835000px;}
.y59{bottom:669.135000px;}
.y100{bottom:671.835000px;}
.y26{bottom:673.635000px;}
.yeb{bottom:678.165000px;}
.yc3{bottom:680.865000px;}
.y13d{bottom:683.565000px;}
.y82{bottom:687.165000px;}
.y58{bottom:689.865000px;}
.yff{bottom:692.565000px;}
.y25{bottom:694.365000px;}
.ya1{bottom:698.865000px;}
.y120{bottom:701.565000px;}
.y13c{bottom:704.265000px;}
.yaf{bottom:707.865000px;}
.y57{bottom:710.565000px;}
.y161{bottom:713.265000px;}
.y24{bottom:715.065000px;}
.y81{bottom:716.865000px;}
.ya0{bottom:719.565000px;}
.yfe{bottom:722.265000px;}
.yae{bottom:728.565000px;}
.y56{bottom:731.265000px;}
.y13b{bottom:733.965000px;}
.y80{bottom:737.565000px;}
.y9f{bottom:740.265000px;}
.yfd{bottom:742.965000px;}
.y23{bottom:744.765000px;}
.yad{bottom:749.265000px;}
.y55{bottom:751.965000px;}
.y13a{bottom:754.665000px;}
.y7f{bottom:758.265000px;}
.y9e{bottom:760.965000px;}
.y11f{bottom:763.665000px;}
.yac{bottom:769.965000px;}
.yc2{bottom:772.665000px;}
.y22{bottom:774.465000px;}
.y139{bottom:775.365000px;}
.y7e{bottom:778.965000px;}
.y54{bottom:781.665000px;}
.y11e{bottom:784.365000px;}
.yab{bottom:790.665000px;}
.yc1{bottom:793.365000px;}
.y7d{bottom:799.665000px;}
.y9d{bottom:802.365000px;}
.y21{bottom:804.165000px;}
.y138{bottom:805.065000px;}
.y53{bottom:811.365000px;}
.y11d{bottom:814.065000px;}
.y7c{bottom:820.365000px;}
.y9c{bottom:823.065000px;}
.y137{bottom:825.765000px;}
.yaa{bottom:832.065000px;}
.y11c{bottom:834.765000px;}
.y20{bottom:840.705000px;}
.y52{bottom:841.065000px;}
.yc0{bottom:843.765000px;}
.y9b{bottom:852.765000px;}
.y11b{bottom:855.465000px;}
.y7b{bottom:861.765000px;}
.y1f{bottom:863.565000px;}
.ybf{bottom:864.465000px;}
.y51{bottom:870.765000px;}
.ya9{bottom:873.465000px;}
.y11a{bottom:876.165000px;}
.y7a{bottom:882.465000px;}
.ybe{bottom:885.165000px;}
.y50{bottom:891.465000px;}
.yfa{bottom:894.165000px;}
.y136{bottom:896.865000px;}
.y1e{bottom:900.105000px;}
.y79{bottom:903.165000px;}
.ybd{bottom:905.865000px;}
.y4f{bottom:912.165000px;}
.yf9{bottom:914.910000px;}
.y1d{bottom:923.010000px;}
.y78{bottom:923.910000px;}
.ybc{bottom:926.610000px;}
.y4e{bottom:932.910000px;}
.y150{bottom:935.610000px;}
.y77{bottom:944.610000px;}
.ybb{bottom:947.310000px;}
.y1b{bottom:952.710000px;}
.y4d{bottom:953.610000px;}
.y14f{bottom:956.310000px;}
.y1c{bottom:958.650000px;}
.y76{bottom:965.310000px;}
.yba{bottom:968.010000px;}
.y4c{bottom:974.310000px;}
.y119{bottom:977.010000px;}
.y1a{bottom:982.410000px;}
.y75{bottom:986.010000px;}
.y4b{bottom:995.010000px;}
.yb9{bottom:997.710000px;}
.y74{bottom:1006.710000px;}
.y19{bottom:1012.110000px;}
.y4a{bottom:1015.710000px;}
.y118{bottom:1018.410000px;}
.y73{bottom:1027.410000px;}
.y49{bottom:1036.410000px;}
.y18{bottom:1041.810000px;}
.y9a{bottom:1048.110000px;}
.y48{bottom:1057.110000px;}
.y99{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y47{bottom:1077.810000px;}
.y98{bottom:1089.510000px;}
.y46{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.yb8{bottom:1110.210000px;}
.y45{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y44{bottom:1139.910000px;}
.y1{bottom:1186.020000px;}
.y10{bottom:1193.220000px;}
.y4{bottom:1193.400000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.080000px;}
.h14{height:28.260000px;}
.h12{height:38.671172px;}
.hf{height:42.210000px;}
.h11{height:43.246406px;}
.h5{height:52.020000px;}
.ha{height:53.573906px;}
.h2{height:53.820000px;}
.h15{height:59.343750px;}
.hc{height:59.383125px;}
.h13{height:59.439023px;}
.h7{height:61.189805px;}
.hd{height:63.000000px;}
.he{height:64.546875px;}
.h4{height:65.884219px;}
.h10{height:65.970000px;}
.h3{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x17{left:111.095987px;}
.x2{left:148.005000px;}
.x15{left:155.369987px;}
.x13{left:159.149987px;}
.x1{left:165.270000px;}
.xd{left:207.029987px;}
.xe{left:223.589987px;}
.x10{left:299.414987px;}
.x16{left:322.274987px;}
.x14{left:340.274987px;}
.x7{left:378.075000px;}
.xf{left:446.474987px;}
.x11{left:457.994973px;}
.x12{left:464.114987px;}
.x8{left:662.730000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.154880pt;}
.ls16{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.920000pt;}
.lsb{letter-spacing:3.200000pt;}
.lsa{letter-spacing:4.000000pt;}
.ls7{letter-spacing:4.480000pt;}
.ls10{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.040000pt;}
.lsc{letter-spacing:7.680000pt;}
.ls11{letter-spacing:8.960000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls6{letter-spacing:10.240000pt;}
.lsf{letter-spacing:19.200000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-4.323200pt;}
._4{margin-left:-3.164373pt;}
._3{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._6{width:2.928853pt;}
._f{width:4.232107pt;}
._12{width:5.275733pt;}
._10{width:6.912000pt;}
._11{width:7.839147pt;}
._b{width:8.773120pt;}
._7{width:9.763840pt;}
._a{width:10.665600pt;}
._9{width:11.968000pt;}
._c{width:12.864000pt;}
._8{width:14.435840pt;}
._15{width:16.960000pt;}
._1a{width:18.112000pt;}
._1c{width:19.335680pt;}
._16{width:20.544000pt;}
._17{width:21.568000pt;}
._1e{width:22.577280pt;}
._1f{width:23.616000pt;}
._21{width:24.598400pt;}
._19{width:25.664000pt;}
._13{width:26.624000pt;}
._14{width:27.896960pt;}
._1d{width:28.942080pt;}
._23{width:29.838720pt;}
._37{width:32.704000pt;}
._38{width:34.112000pt;}
._24{width:36.480000pt;}
._25{width:37.568000pt;}
._34{width:38.464000pt;}
._26{width:39.744000pt;}
._27{width:40.640000pt;}
._1b{width:41.664000pt;}
._22{width:42.816000pt;}
._33{width:43.943253pt;}
._20{width:45.248000pt;}
._2a{width:46.144000pt;}
._d{width:49.856000pt;}
._e{width:51.008000pt;}
._2d{width:63.808000pt;}
._2e{width:64.700587pt;}
._35{width:70.656000pt;}
._39{width:84.394667pt;}
._3a{width:85.514667pt;}
._31{width:97.600000pt;}
._32{width:98.602880pt;}
._28{width:145.130667pt;}
._29{width:146.510293pt;}
._36{width:163.299840pt;}
._3b{width:205.504000pt;}
._3c{width:206.784000pt;}
._2f{width:300.224000pt;}
._2b{width:392.000000pt;}
._2c{width:393.162667pt;}
._30{width:480.810667pt;}
._5{width:1657.365333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.y14{bottom:11.200000pt;}
.y43{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y7{bottom:19.040000pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.y12{bottom:51.040000pt;}
.y11{bottom:65.120000pt;}
.y41{bottom:96.640000pt;}
.y135{bottom:99.520000pt;}
.yf0{bottom:100.320000pt;}
.y117{bottom:101.920000pt;}
.yb7{bottom:102.720000pt;}
.y97{bottom:105.120000pt;}
.y15f{bottom:107.520000pt;}
.yea{bottom:108.320000pt;}
.y40{bottom:110.080000pt;}
.y72{bottom:110.720000pt;}
.yfc{bottom:113.120000pt;}
.y3f{bottom:114.720000pt;}
.y134{bottom:117.920000pt;}
.yef{bottom:118.720000pt;}
.yb6{bottom:121.120000pt;}
.y96{bottom:123.520000pt;}
.y15e{bottom:125.920000pt;}
.y3e{bottom:126.080000pt;}
.ye9{bottom:126.720000pt;}
.y116{bottom:128.320000pt;}
.y71{bottom:129.120000pt;}
.y14e{bottom:136.320000pt;}
.yb5{bottom:139.520000pt;}
.y95{bottom:141.920000pt;}
.y133{bottom:144.320000pt;}
.yee{bottom:145.120000pt;}
.y115{bottom:146.720000pt;}
.yf8{bottom:147.520000pt;}
.ya8{bottom:149.920000pt;}
.y3d{bottom:151.520000pt;}
.y15d{bottom:152.320000pt;}
.ye8{bottom:153.120000pt;}
.y14d{bottom:154.720000pt;}
.y70{bottom:155.520000pt;}
.yb4{bottom:157.920000pt;}
.y94{bottom:160.320000pt;}
.y132{bottom:162.720000pt;}
.ya7{bottom:168.320000pt;}
.y3c{bottom:169.920000pt;}
.y15c{bottom:170.720000pt;}
.ye7{bottom:171.520000pt;}
.y114{bottom:173.120000pt;}
.y6f{bottom:173.920000pt;}
.yd6{bottom:176.346667pt;}
.y93{bottom:178.746667pt;}
.y131{bottom:181.146667pt;}
.yb3{bottom:184.346667pt;}
.ya6{bottom:186.746667pt;}
.y3b{bottom:188.346667pt;}
.y15b{bottom:189.146667pt;}
.ye6{bottom:189.946667pt;}
.y113{bottom:191.546667pt;}
.y6e{bottom:192.346667pt;}
.yd5{bottom:194.746667pt;}
.y14c{bottom:199.546667pt;}
.yf7{bottom:200.346667pt;}
.yb2{bottom:202.746667pt;}
.y92{bottom:205.146667pt;}
.y3a{bottom:206.746667pt;}
.y130{bottom:207.546667pt;}
.ye5{bottom:208.346667pt;}
.y6d{bottom:210.746667pt;}
.yd4{bottom:213.146667pt;}
.y15a{bottom:215.546667pt;}
.y112{bottom:217.946667pt;}
.yf6{bottom:218.746667pt;}
.yb1{bottom:221.146667pt;}
.y12f{bottom:225.946667pt;}
.ye4{bottom:226.746667pt;}
.y6c{bottom:229.146667pt;}
.y91{bottom:231.546667pt;}
.y39{bottom:233.146667pt;}
.y159{bottom:233.946667pt;}
.y111{bottom:236.346667pt;}
.yf5{bottom:237.146667pt;}
.yb0{bottom:239.546667pt;}
.y166{bottom:244.346667pt;}
.ye3{bottom:245.146667pt;}
.y6b{bottom:247.546667pt;}
.yd3{bottom:249.946667pt;}
.y38{bottom:251.546667pt;}
.y12e{bottom:252.346667pt;}
.y110{bottom:254.746667pt;}
.yf4{bottom:255.546667pt;}
.y90{bottom:257.946667pt;}
.y14b{bottom:262.746667pt;}
.ye2{bottom:263.546667pt;}
.y6a{bottom:265.946667pt;}
.yd2{bottom:268.346667pt;}
.y12d{bottom:270.746667pt;}
.y10f{bottom:273.146667pt;}
.yf3{bottom:273.946667pt;}
.ya5{bottom:276.346667pt;}
.y37{bottom:277.946667pt;}
.y158{bottom:278.746667pt;}
.y14a{bottom:281.146667pt;}
.ye1{bottom:281.946667pt;}
.y69{bottom:284.346667pt;}
.yfb{bottom:286.746667pt;}
.y12c{bottom:289.146667pt;}
.y10e{bottom:291.546667pt;}
.yf2{bottom:292.346667pt;}
.ya4{bottom:294.746667pt;}
.y157{bottom:297.146667pt;}
.y149{bottom:299.546667pt;}
.ye0{bottom:300.346667pt;}
.y68{bottom:302.746667pt;}
.y36{bottom:304.346667pt;}
.y165{bottom:307.546667pt;}
.ya3{bottom:313.146667pt;}
.y12b{bottom:315.546667pt;}
.y10d{bottom:317.946667pt;}
.ydf{bottom:318.746667pt;}
.y8f{bottom:321.146667pt;}
.y35{bottom:322.746667pt;}
.y164{bottom:325.946667pt;}
.y67{bottom:329.146667pt;}
.yd1{bottom:331.546667pt;}
.y12a{bottom:333.946667pt;}
.y10c{bottom:336.346667pt;}
.yde{bottom:337.146667pt;}
.y8e{bottom:339.546667pt;}
.y34{bottom:341.146667pt;}
.y148{bottom:344.346667pt;}
.y66{bottom:347.546667pt;}
.yd0{bottom:349.946667pt;}
.y129{bottom:352.346667pt;}
.y10b{bottom:354.746667pt;}
.ydd{bottom:355.546667pt;}
.y8d{bottom:357.946667pt;}
.y33{bottom:359.546667pt;}
.y156{bottom:360.346667pt;}
.y147{bottom:362.746667pt;}
.y65{bottom:365.946667pt;}
.ycf{bottom:368.346667pt;}
.y128{bottom:370.746667pt;}
.y10a{bottom:373.146667pt;}
.ydc{bottom:373.946667pt;}
.y8c{bottom:376.346667pt;}
.y32{bottom:377.946667pt;}
.y155{bottom:378.746667pt;}
.y146{bottom:381.146667pt;}
.y64{bottom:384.346667pt;}
.yce{bottom:386.746667pt;}
.y163{bottom:389.186667pt;}
.y109{bottom:391.586667pt;}
.ydb{bottom:392.386667pt;}
.y8b{bottom:394.786667pt;}
.y31{bottom:396.386667pt;}
.y127{bottom:397.186667pt;}
.y63{bottom:402.786667pt;}
.ycd{bottom:405.186667pt;}
.y145{bottom:407.586667pt;}
.yda{bottom:410.786667pt;}
.y8a{bottom:413.186667pt;}
.y30{bottom:414.786667pt;}
.y126{bottom:415.586667pt;}
.y108{bottom:417.986667pt;}
.y62{bottom:421.186667pt;}
.ycc{bottom:423.586667pt;}
.y144{bottom:425.986667pt;}
.yed{bottom:429.186667pt;}
.y2f{bottom:433.186667pt;}
.y125{bottom:433.986667pt;}
.y107{bottom:436.386667pt;}
.yd9{bottom:437.186667pt;}
.y61{bottom:439.586667pt;}
.ycb{bottom:441.986667pt;}
.y143{bottom:444.386667pt;}
.yec{bottom:447.586667pt;}
.y2e{bottom:451.586667pt;}
.y124{bottom:452.386667pt;}
.y106{bottom:454.786667pt;}
.yd8{bottom:455.586667pt;}
.y60{bottom:457.986667pt;}
.y154{bottom:460.386667pt;}
.y142{bottom:462.786667pt;}
.y89{bottom:465.986667pt;}
.yca{bottom:468.386667pt;}
.y2d{bottom:469.986667pt;}
.y123{bottom:470.786667pt;}
.y105{bottom:473.186667pt;}
.yd7{bottom:473.986667pt;}
.y5f{bottom:476.386667pt;}
.y160{bottom:478.786667pt;}
.yf1{bottom:484.386667pt;}
.yc9{bottom:486.786667pt;}
.y2c{bottom:488.386667pt;}
.y141{bottom:489.186667pt;}
.y88{bottom:492.386667pt;}
.ya2{bottom:494.786667pt;}
.y122{bottom:497.186667pt;}
.y104{bottom:499.586667pt;}
.y5e{bottom:502.786667pt;}
.yc8{bottom:505.186667pt;}
.y2b{bottom:506.786667pt;}
.y140{bottom:507.586667pt;}
.y87{bottom:510.786667pt;}
.y121{bottom:515.586667pt;}
.y5d{bottom:521.186667pt;}
.yc7{bottom:523.586667pt;}
.y2a{bottom:525.186667pt;}
.y103{bottom:525.986667pt;}
.y86{bottom:529.186667pt;}
.y162{bottom:533.986667pt;}
.y5c{bottom:539.586667pt;}
.yc6{bottom:541.986667pt;}
.y29{bottom:543.586667pt;}
.y13f{bottom:544.386667pt;}
.y85{bottom:547.586667pt;}
.y42{bottom:548.866667pt;}
.y153{bottom:549.986667pt;}
.y102{bottom:552.386667pt;}
.y5b{bottom:557.986667pt;}
.yc5{bottom:560.386667pt;}
.y28{bottom:561.986667pt;}
.y84{bottom:565.986667pt;}
.y152{bottom:568.386667pt;}
.y101{bottom:570.786667pt;}
.y13{bottom:571.586667pt;}
.y5a{bottom:576.386667pt;}
.yc4{bottom:578.786667pt;}
.y27{bottom:580.386667pt;}
.y83{bottom:584.386667pt;}
.y151{bottom:586.786667pt;}
.y13e{bottom:589.186667pt;}
.y59{bottom:594.786667pt;}
.y100{bottom:597.186667pt;}
.y26{bottom:598.786667pt;}
.yeb{bottom:602.813333pt;}
.yc3{bottom:605.213333pt;}
.y13d{bottom:607.613333pt;}
.y82{bottom:610.813333pt;}
.y58{bottom:613.213333pt;}
.yff{bottom:615.613333pt;}
.y25{bottom:617.213333pt;}
.ya1{bottom:621.213333pt;}
.y120{bottom:623.613333pt;}
.y13c{bottom:626.013333pt;}
.yaf{bottom:629.213333pt;}
.y57{bottom:631.613333pt;}
.y161{bottom:634.013333pt;}
.y24{bottom:635.613333pt;}
.y81{bottom:637.213333pt;}
.ya0{bottom:639.613333pt;}
.yfe{bottom:642.013333pt;}
.yae{bottom:647.613333pt;}
.y56{bottom:650.013333pt;}
.y13b{bottom:652.413333pt;}
.y80{bottom:655.613333pt;}
.y9f{bottom:658.013333pt;}
.yfd{bottom:660.413333pt;}
.y23{bottom:662.013333pt;}
.yad{bottom:666.013333pt;}
.y55{bottom:668.413333pt;}
.y13a{bottom:670.813333pt;}
.y7f{bottom:674.013333pt;}
.y9e{bottom:676.413333pt;}
.y11f{bottom:678.813333pt;}
.yac{bottom:684.413333pt;}
.yc2{bottom:686.813333pt;}
.y22{bottom:688.413333pt;}
.y139{bottom:689.213333pt;}
.y7e{bottom:692.413333pt;}
.y54{bottom:694.813333pt;}
.y11e{bottom:697.213333pt;}
.yab{bottom:702.813333pt;}
.yc1{bottom:705.213333pt;}
.y7d{bottom:710.813333pt;}
.y9d{bottom:713.213333pt;}
.y21{bottom:714.813333pt;}
.y138{bottom:715.613333pt;}
.y53{bottom:721.213333pt;}
.y11d{bottom:723.613333pt;}
.y7c{bottom:729.213333pt;}
.y9c{bottom:731.613333pt;}
.y137{bottom:734.013333pt;}
.yaa{bottom:739.613333pt;}
.y11c{bottom:742.013333pt;}
.y20{bottom:747.293333pt;}
.y52{bottom:747.613333pt;}
.yc0{bottom:750.013333pt;}
.y9b{bottom:758.013333pt;}
.y11b{bottom:760.413333pt;}
.y7b{bottom:766.013333pt;}
.y1f{bottom:767.613333pt;}
.ybf{bottom:768.413333pt;}
.y51{bottom:774.013333pt;}
.ya9{bottom:776.413333pt;}
.y11a{bottom:778.813333pt;}
.y7a{bottom:784.413333pt;}
.ybe{bottom:786.813333pt;}
.y50{bottom:792.413333pt;}
.yfa{bottom:794.813333pt;}
.y136{bottom:797.213333pt;}
.y1e{bottom:800.093333pt;}
.y79{bottom:802.813333pt;}
.ybd{bottom:805.213333pt;}
.y4f{bottom:810.813333pt;}
.yf9{bottom:813.253333pt;}
.y1d{bottom:820.453333pt;}
.y78{bottom:821.253333pt;}
.ybc{bottom:823.653333pt;}
.y4e{bottom:829.253333pt;}
.y150{bottom:831.653333pt;}
.y77{bottom:839.653333pt;}
.ybb{bottom:842.053333pt;}
.y1b{bottom:846.853333pt;}
.y4d{bottom:847.653333pt;}
.y14f{bottom:850.053333pt;}
.y1c{bottom:852.133333pt;}
.y76{bottom:858.053333pt;}
.yba{bottom:860.453333pt;}
.y4c{bottom:866.053333pt;}
.y119{bottom:868.453333pt;}
.y1a{bottom:873.253333pt;}
.y75{bottom:876.453333pt;}
.y4b{bottom:884.453333pt;}
.yb9{bottom:886.853333pt;}
.y74{bottom:894.853333pt;}
.y19{bottom:899.653333pt;}
.y4a{bottom:902.853333pt;}
.y118{bottom:905.253333pt;}
.y73{bottom:913.253333pt;}
.y49{bottom:921.253333pt;}
.y18{bottom:926.053333pt;}
.y9a{bottom:931.653333pt;}
.y48{bottom:939.653333pt;}
.y99{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y47{bottom:958.053333pt;}
.y98{bottom:968.453333pt;}
.y46{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.yb8{bottom:986.853333pt;}
.y45{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y44{bottom:1013.253333pt;}
.y1{bottom:1054.240000pt;}
.y10{bottom:1060.640000pt;}
.y4{bottom:1060.800000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:24.960000pt;}
.h14{height:25.120000pt;}
.h12{height:34.374375pt;}
.hf{height:37.520000pt;}
.h11{height:38.441250pt;}
.h5{height:46.240000pt;}
.ha{height:47.621250pt;}
.h2{height:47.840000pt;}
.h15{height:52.750000pt;}
.hc{height:52.785000pt;}
.h13{height:52.834688pt;}
.h7{height:54.390938pt;}
.hd{height:56.000000pt;}
.he{height:57.375000pt;}
.h4{height:58.563750pt;}
.h10{height:58.640000pt;}
.h3{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x17{left:98.751988pt;}
.x2{left:131.560000pt;}
.x15{left:138.106655pt;}
.x13{left:141.466655pt;}
.x1{left:146.906667pt;}
.xd{left:184.026655pt;}
.xe{left:198.746655pt;}
.x10{left:266.146655pt;}
.x16{left:286.466655pt;}
.x14{left:302.466655pt;}
.x7{left:336.066667pt;}
.xf{left:396.866655pt;}
.x11{left:407.106643pt;}
.x12{left:412.546655pt;}
.x8{left:589.093333pt;}
.x4{left:680.453333pt;}
.xa{left:718.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; }
  