
    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_fa3481e7300bfb1edd1bbea8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_71471a538ecd50dcaa24ccee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d2dc7188287f9738c867b221.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9daa183c1683e412ec051a0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e5f285cd57059983e201e3a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b07cc541fe924e588b9bfb4.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_7f348a5a2a91b72a40055678.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls16{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.420000px;}
.ls12{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls2{letter-spacing:3.000000px;}
.ls1{letter-spacing:11.400000px;}
.ls14{letter-spacing:11.460000px;}
.ls13{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.540000px;}
.ws8{word-spacing:-15.420000px;}
.wsc{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.204000px;}
.ws9{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.880000px;}
.wsd{word-spacing:-14.760000px;}
.wse{word-spacing:-13.800000px;}
.ws6{word-spacing:-12.900000px;}
.ws7{word-spacing:-11.136000px;}
.ws3{word-spacing:-9.900000px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-2.076000px;}
._0{margin-left:-1.056000px;}
._1{width:1.098000px;}
._8{width:2.760000px;}
._9{width:3.900000px;}
._11{width:5.136000px;}
._f{width:6.180000px;}
._b{width:7.248000px;}
._a{width:8.460000px;}
._d{width:9.540000px;}
._c{width:10.740000px;}
._12{width:11.790000px;}
._e{width:13.740000px;}
._13{width:16.920000px;}
._19{width:18.966000px;}
._18{width:20.490000px;}
._6{width:23.640000px;}
._7{width:24.858000px;}
._14{width:26.502000px;}
._15{width:28.434000px;}
._16{width:32.220000px;}
._17{width:33.582000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1208.820000px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(34,122,203);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(192,0,0);}
.fc7{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs8{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:3.300000px;}
.y118{bottom:3.600000px;}
.y11c{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y10a{bottom:6.600000px;}
.y10c{bottom:7.500000px;}
.y10e{bottom:7.515000px;}
.y110{bottom:8.415000px;}
.yd3{bottom:8.685000px;}
.yd1{bottom:8.700000px;}
.yf0{bottom:9.585000px;}
.yda{bottom:9.600000px;}
.yd8{bottom:9.885000px;}
.ydc{bottom:9.900000px;}
.yd5{bottom:9.915000px;}
.yf2{bottom:9.930000px;}
.yde{bottom:9.945000px;}
.y116{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.y3e{bottom:24.915000px;}
.y3d{bottom:39.315000px;}
.y4{bottom:46.800000px;}
.y3c{bottom:56.745000px;}
.y1{bottom:57.037500px;}
.y3b{bottom:73.845000px;}
.y40{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3a{bottom:91.245000px;}
.y39{bottom:108.345000px;}
.y79{bottom:116.437500px;}
.y2d{bottom:120.337500px;}
.y14a{bottom:121.537500px;}
.yeb{bottom:122.437500px;}
.yac{bottom:122.737500px;}
.y38{bottom:125.745000px;}
.y11e{bottom:132.337500px;}
.y78{bottom:133.837500px;}
.y2c{bottom:137.437500px;}
.y149{bottom:138.937500px;}
.y37{bottom:142.845000px;}
.yea{bottom:143.137500px;}
.yab{bottom:143.437500px;}
.y11d{bottom:149.737500px;}
.y77{bottom:151.245000px;}
.y2b{bottom:154.830000px;}
.y148{bottom:156.345000px;}
.y36{bottom:160.245000px;}
.ye9{bottom:163.545000px;}
.yaa{bottom:164.130000px;}
.y76{bottom:168.330000px;}
.y11b{bottom:171.630000px;}
.y2a{bottom:171.930000px;}
.y35{bottom:177.345000px;}
.ye8{bottom:180.675000px;}
.ya9{bottom:184.875000px;}
.y147{bottom:185.175000px;}
.y75{bottom:185.775000px;}
.y119{bottom:189.075000px;}
.y29{bottom:189.375000px;}
.y34{bottom:194.745000px;}
.ye7{bottom:198.075000px;}
.y74{bottom:202.875000px;}
.ya8{bottom:204.375000px;}
.y117{bottom:206.175000px;}
.y28{bottom:206.475000px;}
.y33{bottom:211.890000px;}
.ye6{bottom:215.175000px;}
.ya7{bottom:218.775000px;}
.y146{bottom:219.975000px;}
.y73{bottom:220.275000px;}
.y27{bottom:222.975000px;}
.y115{bottom:224.175000px;}
.y32{bottom:229.290000px;}
.ye5{bottom:232.575000px;}
.ya6{bottom:236.175000px;}
.y145{bottom:237.375000px;}
.y26{bottom:237.675000px;}
.y31{bottom:246.390000px;}
.y72{bottom:249.075000px;}
.ye4{bottom:249.675000px;}
.ya5{bottom:253.275000px;}
.y144{bottom:254.475000px;}
.y25{bottom:254.775000px;}
.y114{bottom:261.675000px;}
.y30{bottom:263.790000px;}
.y71{bottom:266.775000px;}
.ye3{bottom:267.075000px;}
.ya4{bottom:270.675000px;}
.y143{bottom:271.875000px;}
.y24{bottom:272.175000px;}
.y2f{bottom:281.475000px;}
.y70{bottom:283.875000px;}
.ye2{bottom:284.175000px;}
.ya3{bottom:288.375000px;}
.y23{bottom:289.275000px;}
.y142{bottom:300.675000px;}
.y6f{bottom:301.275000px;}
.ye1{bottom:301.575000px;}
.y16e{bottom:304.875000px;}
.y22{bottom:306.675000px;}
.ya2{bottom:307.875000px;}
.ye0{bottom:315.975000px;}
.y6e{bottom:318.375000px;}
.ydf{bottom:319.575000px;}
.ya1{bottom:322.275000px;}
.y21{bottom:323.775000px;}
.y141{bottom:335.475000px;}
.y6d{bottom:335.775000px;}
.y16d{bottom:339.375000px;}
.ya0{bottom:339.675000px;}
.y20{bottom:341.175000px;}
.ydd{bottom:343.875000px;}
.y6c{bottom:352.920000px;}
.y113{bottom:353.505000px;}
.y9f{bottom:356.820000px;}
.y1f{bottom:358.320000px;}
.ydb{bottom:368.205000px;}
.y140{bottom:370.005000px;}
.y6b{bottom:370.320000px;}
.y112{bottom:373.005000px;}
.y16c{bottom:373.920000px;}
.y9e{bottom:374.205000px;}
.y1e{bottom:376.020000px;}
.y6a{bottom:387.420000px;}
.y9d{bottom:391.320000px;}
.yd9{bottom:392.820000px;}
.y1d{bottom:396.120000px;}
.y69{bottom:404.820000px;}
.y13f{bottom:405.120000px;}
.y16b{bottom:408.420000px;}
.y9c{bottom:408.705000px;}
.yd7{bottom:417.120000px;}
.y68{bottom:421.920000px;}
.y13e{bottom:424.620000px;}
.y9b{bottom:425.820000px;}
.y13d{bottom:439.005000px;}
.y111{bottom:439.320000px;}
.yd6{bottom:441.405000px;}
.y16a{bottom:442.920000px;}
.y9a{bottom:443.220000px;}
.y67{bottom:451.005000px;}
.y13c{bottom:456.420000px;}
.y99{bottom:460.320000px;}
.y10f{bottom:461.205000px;}
.yd4{bottom:465.705000px;}
.y66{bottom:468.420000px;}
.y13b{bottom:473.505000px;}
.y2e{bottom:473.805000px;}
.y169{bottom:477.420000px;}
.y98{bottom:477.705000px;}
.y10d{bottom:483.405000px;}
.y65{bottom:485.820000px;}
.yd2{bottom:490.320000px;}
.y13a{bottom:490.920000px;}
.y97{bottom:494.820000px;}
.y64{bottom:502.920000px;}
.y10b{bottom:504.720000px;}
.y139{bottom:508.020000px;}
.y168{bottom:511.905000px;}
.y96{bottom:512.220000px;}
.yd0{bottom:513.450000px;}
.y63{bottom:520.350000px;}
.y109{bottom:526.650000px;}
.y167{bottom:529.350000px;}
.y95{bottom:529.950000px;}
.y62{bottom:537.450000px;}
.y138{bottom:542.250000px;}
.y166{bottom:546.450000px;}
.ycf{bottom:548.250000px;}
.y137{bottom:557.250000px;}
.y108{bottom:558.750000px;}
.y94{bottom:561.750000px;}
.y165{bottom:563.850000px;}
.y61{bottom:566.550000px;}
.yce{bottom:568.350000px;}
.y136{bottom:574.350000px;}
.y107{bottom:578.550000px;}
.y93{bottom:579.450000px;}
.y164{bottom:580.950000px;}
.y60{bottom:583.950000px;}
.ycd{bottom:585.750000px;}
.y135{bottom:591.750000px;}
.y92{bottom:596.550000px;}
.y106{bottom:597.450000px;}
.y163{bottom:598.350000px;}
.y5f{bottom:601.350000px;}
.ycc{bottom:602.850000px;}
.y134{bottom:609.750000px;}
.y105{bottom:612.150000px;}
.y91{bottom:613.950000px;}
.y162{bottom:615.450000px;}
.y5e{bottom:618.450000px;}
.ycb{bottom:620.250000px;}
.y104{bottom:629.250000px;}
.y90{bottom:631.050000px;}
.y161{bottom:632.850000px;}
.y5d{bottom:635.850000px;}
.yca{bottom:637.350000px;}
.y133{bottom:638.850000px;}
.y103{bottom:646.950000px;}
.y8f{bottom:648.450000px;}
.y160{bottom:649.950000px;}
.y5c{bottom:652.950000px;}
.yc9{bottom:655.050000px;}
.y132{bottom:658.650000px;}
.y15f{bottom:667.350000px;}
.y102{bottom:667.650000px;}
.y5b{bottom:670.350000px;}
.yc8{bottom:674.550000px;}
.y8e{bottom:677.250000px;}
.y131{bottom:678.150000px;}
.y15e{bottom:684.480000px;}
.y101{bottom:687.195000px;}
.yc7{bottom:689.280000px;}
.y8d{bottom:694.980000px;}
.y130{bottom:695.595000px;}
.y5a{bottom:699.195000px;}
.y100{bottom:701.880000px;}
.yc6{bottom:706.380000px;}
.y8c{bottom:712.080000px;}
.y12f{bottom:712.695000px;}
.y59{bottom:716.880000px;}
.yff{bottom:718.995000px;}
.y15d{bottom:719.595000px;}
.yc5{bottom:723.795000px;}
.y8b{bottom:729.495000px;}
.y12e{bottom:730.380000px;}
.y58{bottom:733.995000px;}
.yfe{bottom:736.380000px;}
.y15c{bottom:739.695000px;}
.yc4{bottom:740.895000px;}
.y8a{bottom:746.595000px;}
.y12d{bottom:750.795000px;}
.y57{bottom:751.395000px;}
.yfd{bottom:754.080000px;}
.y15b{bottom:757.095000px;}
.yc3{bottom:758.280000px;}
.y89{bottom:763.980000px;}
.y12c{bottom:767.895000px;}
.y56{bottom:768.495000px;}
.yfc{bottom:773.580000px;}
.y15a{bottom:774.195000px;}
.yc2{bottom:775.980000px;}
.y55{bottom:784.995000px;}
.y12b{bottom:785.295000px;}
.yfb{bottom:787.995000px;}
.y159{bottom:791.580000px;}
.y88{bottom:792.795000px;}
.yc1{bottom:795.495000px;}
.y54{bottom:799.695000px;}
.y12a{bottom:802.380000px;}
.yfa{bottom:805.395000px;}
.y1c{bottom:806.295000px;}
.y158{bottom:808.695000px;}
.yc0{bottom:809.880000px;}
.y87{bottom:810.495000px;}
.y53{bottom:816.795000px;}
.y129{bottom:819.795000px;}
.yf9{bottom:822.495000px;}
.y1b{bottom:823.695000px;}
.y157{bottom:826.080000px;}
.ybf{bottom:827.295000px;}
.y86{bottom:827.580000px;}
.y52{bottom:834.195000px;}
.y128{bottom:836.880000px;}
.yf8{bottom:839.880000px;}
.y156{bottom:843.195000px;}
.y1a{bottom:843.795000px;}
.ybe{bottom:844.380000px;}
.y85{bottom:844.995000px;}
.y51{bottom:851.325000px;}
.y127{bottom:854.325000px;}
.yf7{bottom:857.625000px;}
.y155{bottom:860.625000px;}
.ybd{bottom:861.825000px;}
.y84{bottom:862.125000px;}
.y19{bottom:863.625000px;}
.y50{bottom:868.725000px;}
.y126{bottom:871.425000px;}
.yf6{bottom:877.125000px;}
.y154{bottom:877.725000px;}
.ybc{bottom:878.925000px;}
.y83{bottom:879.525000px;}
.y18{bottom:882.225000px;}
.y125{bottom:886.125000px;}
.y4f{bottom:886.425000px;}
.yf5{bottom:891.525000px;}
.y153{bottom:895.125000px;}
.ybb{bottom:896.625000px;}
.y4e{bottom:905.925000px;}
.y17{bottom:906.225000px;}
.y82{bottom:908.325000px;}
.yf4{bottom:909.525000px;}
.y124{bottom:910.125000px;}
.y152{bottom:912.825000px;}
.yba{bottom:916.125000px;}
.y4d{bottom:920.325000px;}
.y16{bottom:923.925000px;}
.yb9{bottom:930.825000px;}
.y151{bottom:932.925000px;}
.y81{bottom:933.225000px;}
.yf3{bottom:934.125000px;}
.y15{bottom:935.625000px;}
.y4c{bottom:937.725000px;}
.yb8{bottom:947.925000px;}
.y150{bottom:950.325000px;}
.y4b{bottom:954.825000px;}
.y80{bottom:957.825000px;}
.y14{bottom:958.425000px;}
.y123{bottom:958.725000px;}
.yb7{bottom:965.325000px;}
.y14f{bottom:967.425000px;}
.y13{bottom:969.825000px;}
.y4a{bottom:972.225000px;}
.yb6{bottom:982.425000px;}
.y7f{bottom:982.725000px;}
.y14e{bottom:984.825000px;}
.y12{bottom:985.725000px;}
.y49{bottom:989.325000px;}
.y122{bottom:994.725000px;}
.yb5{bottom:999.825000px;}
.y14d{bottom:1001.925000px;}
.y7e{bottom:1002.825000px;}
.y11{bottom:1003.425000px;}
.y48{bottom:1006.725000px;}
.yf1{bottom:1007.025000px;}
.y121{bottom:1014.525000px;}
.yb4{bottom:1017.570000px;}
.y14c{bottom:1019.670000px;}
.y7d{bottom:1020.570000px;}
.y47{bottom:1023.870000px;}
.y10{bottom:1024.170000px;}
.yef{bottom:1031.670000px;}
.y120{bottom:1034.370000px;}
.yb3{bottom:1037.070000px;}
.y7c{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y46{bottom:1041.255000px;}
.yb2{bottom:1051.455000px;}
.y14b{bottom:1054.755000px;}
.y7b{bottom:1055.070000px;}
.yee{bottom:1055.970000px;}
.y45{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yb1{bottom:1068.870000px;}
.y7a{bottom:1072.170000px;}
.y44{bottom:1074.870000px;}
.yed{bottom:1080.255000px;}
.ya{bottom:1083.570000px;}
.yb0{bottom:1085.955000px;}
.y11f{bottom:1086.570000px;}
.y43{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.yaf{bottom:1103.370000px;}
.yec{bottom:1103.670000px;}
.y42{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.yae{bottom:1120.455000px;}
.y41{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yad{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h23{height:17.100000px;}
.h22{height:17.400000px;}
.h24{height:17.437500px;}
.h1d{height:20.400000px;}
.ha{height:21.000000px;}
.h1f{height:21.300000px;}
.h1e{height:21.337500px;}
.h20{height:22.200000px;}
.h17{height:22.500000px;}
.h19{height:23.400000px;}
.h1b{height:23.685000px;}
.h18{height:23.700000px;}
.h1a{height:23.737500px;}
.h25{height:24.000000px;}
.h21{height:25.800000px;}
.hc{height:27.650391px;}
.h10{height:33.515625px;}
.h7{height:33.867188px;}
.h14{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.he{height:38.100586px;}
.hd{height:41.894531px;}
.h4{height:42.333984px;}
.h16{height:43.681641px;}
.h15{height:44.507812px;}
.h1c{height:49.107422px;}
.hb{height:49.250391px;}
.h13{height:49.453125px;}
.hf{height:50.273438px;}
.h6{height:50.800781px;}
.h12{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h11{height:298.275000px;}
.h0{height:1263.000000px;}
.w2a{width:31.200000px;}
.w1b{width:31.222500px;}
.w24{width:40.200000px;}
.w21{width:40.222500px;}
.w2d{width:42.300000px;}
.w16{width:46.200000px;}
.w19{width:47.100000px;}
.w18{width:47.400000px;}
.w2c{width:50.137500px;}
.w27{width:51.337500px;}
.w2b{width:54.900000px;}
.w25{width:56.437500px;}
.wf{width:57.900000px;}
.w26{width:59.100000px;}
.w17{width:59.737500px;}
.w11{width:64.800000px;}
.w1c{width:65.137500px;}
.wd{width:71.437500px;}
.w4{width:72.300000px;}
.w1f{width:72.637500px;}
.w1a{width:73.500000px;}
.w22{width:73.800000px;}
.w23{width:74.137500px;}
.w10{width:75.637500px;}
.w29{width:77.700000px;}
.w1e{width:80.400000px;}
.wc{width:80.737500px;}
.w20{width:86.700000px;}
.wb{width:87.000000px;}
.w2e{width:97.837500px;}
.w14{width:105.037500px;}
.w28{width:106.837500px;}
.w3{width:108.000000px;}
.we{width:114.637500px;}
.w12{width:117.637500px;}
.w1d{width:118.237500px;}
.wa{width:119.137500px;}
.w15{width:154.530000px;}
.w13{width:154.545000px;}
.w6{width:253.875000px;}
.w9{width:315.075000px;}
.w8{width:360.405000px;}
.w5{width:483.450000px;}
.w7{width:731.625000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.800000px;}
.x4c{left:9.000000px;}
.x2{left:10.799998px;}
.x2f{left:12.300000px;}
.x38{left:14.400000px;}
.xf{left:16.200000px;}
.x2b{left:17.700000px;}
.x28{left:19.500000px;}
.x35{left:21.000000px;}
.x3{left:22.200000px;}
.x3c{left:24.900000px;}
.x27{left:26.100000px;}
.x4{left:27.600000px;}
.x26{left:30.900000px;}
.x29{left:32.100000px;}
.x2d{left:34.800000px;}
.x2a{left:37.200000px;}
.x2e{left:38.700000px;}
.x2c{left:40.500000px;}
.x3e{left:42.330000px;}
.x37{left:43.500000px;}
.x45{left:46.500000px;}
.x51{left:48.945000px;}
.x20{left:50.700000px;}
.x1e{left:54.600000px;}
.x1c{left:56.700000px;}
.x36{left:59.100000px;}
.x47{left:61.500000px;}
.x44{left:66.600000px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.x15{left:92.145000px;}
.x46{left:94.545000px;}
.x13{left:105.337500px;}
.x11{left:108.037487px;}
.xe{left:117.330000px;}
.x12{left:135.037487px;}
.x9{left:153.629987px;}
.x30{left:154.845000px;}
.x48{left:159.045000px;}
.x3a{left:168.045000px;}
.x31{left:186.075000px;}
.x49{left:190.275000px;}
.x1d{left:199.875000px;}
.x17{left:201.375000px;}
.x3b{left:208.275000px;}
.xc{left:241.582500px;}
.x22{left:246.675000px;}
.x32{left:250.875000px;}
.x4a{left:255.075000px;}
.x3d{left:282.075000px;}
.x18{left:288.975000px;}
.x23{left:307.020000px;}
.x33{left:316.020000px;}
.x39{left:323.520000px;}
.x4b{left:327.720000px;}
.x1f{left:355.020000px;}
.x3f{left:356.220000px;}
.x4d{left:358.920000px;}
.x19{left:370.320000px;}
.x6{left:393.719987px;}
.x40{left:396.405000px;}
.x4e{left:413.820000px;}
.x34{left:434.250000px;}
.x14{left:442.350000px;}
.x41{left:452.850000px;}
.x21{left:460.950000px;}
.x4f{left:463.950000px;}
.x50{left:506.250000px;}
.x24{left:508.050000px;}
.x42{left:511.950000px;}
.x1a{left:557.895000px;}
.xd{left:561.495000px;}
.x43{left:563.280000px;}
.x25{left:568.395000px;}
.x10{left:594.479987px;}
.x8{left:616.379987px;}
.x7{left:648.194987px;}
.x1b{left:692.625000px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls16{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.373333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls2{letter-spacing:2.666667pt;}
.ls1{letter-spacing:10.133333pt;}
.ls14{letter-spacing:10.186667pt;}
.ls13{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.813333pt;}
.ws8{word-spacing:-13.706667pt;}
.wsc{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws9{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.226667pt;}
.wsd{word-spacing:-13.120000pt;}
.wse{word-spacing:-12.266667pt;}
.ws6{word-spacing:-11.466667pt;}
.ws7{word-spacing:-9.898667pt;}
.ws3{word-spacing:-8.800000pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-1.845333pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.976000pt;}
._8{width:2.453333pt;}
._9{width:3.466667pt;}
._11{width:4.565333pt;}
._f{width:5.493333pt;}
._b{width:6.442667pt;}
._a{width:7.520000pt;}
._d{width:8.480000pt;}
._c{width:9.546667pt;}
._12{width:10.480000pt;}
._e{width:12.213333pt;}
._13{width:15.040000pt;}
._19{width:16.858667pt;}
._18{width:18.213333pt;}
._6{width:21.013333pt;}
._7{width:22.096000pt;}
._14{width:23.557333pt;}
._15{width:25.274667pt;}
._16{width:28.640000pt;}
._17{width:29.850667pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1074.506667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs8{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:2.933333pt;}
.y118{bottom:3.200000pt;}
.y11c{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y10a{bottom:5.866667pt;}
.y10c{bottom:6.666667pt;}
.y10e{bottom:6.680000pt;}
.y110{bottom:7.480000pt;}
.yd3{bottom:7.720000pt;}
.yd1{bottom:7.733333pt;}
.yf0{bottom:8.520000pt;}
.yda{bottom:8.533333pt;}
.yd8{bottom:8.786667pt;}
.ydc{bottom:8.800000pt;}
.yd5{bottom:8.813333pt;}
.yf2{bottom:8.826667pt;}
.yde{bottom:8.840000pt;}
.y116{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.y3e{bottom:22.146667pt;}
.y3d{bottom:34.946667pt;}
.y4{bottom:41.600000pt;}
.y3c{bottom:50.440000pt;}
.y1{bottom:50.700000pt;}
.y3b{bottom:65.640000pt;}
.y40{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3a{bottom:81.106667pt;}
.y39{bottom:96.306667pt;}
.y79{bottom:103.500000pt;}
.y2d{bottom:106.966667pt;}
.y14a{bottom:108.033333pt;}
.yeb{bottom:108.833333pt;}
.yac{bottom:109.100000pt;}
.y38{bottom:111.773333pt;}
.y11e{bottom:117.633333pt;}
.y78{bottom:118.966667pt;}
.y2c{bottom:122.166667pt;}
.y149{bottom:123.500000pt;}
.y37{bottom:126.973333pt;}
.yea{bottom:127.233333pt;}
.yab{bottom:127.500000pt;}
.y11d{bottom:133.100000pt;}
.y77{bottom:134.440000pt;}
.y2b{bottom:137.626667pt;}
.y148{bottom:138.973333pt;}
.y36{bottom:142.440000pt;}
.ye9{bottom:145.373333pt;}
.yaa{bottom:145.893333pt;}
.y76{bottom:149.626667pt;}
.y11b{bottom:152.560000pt;}
.y2a{bottom:152.826667pt;}
.y35{bottom:157.640000pt;}
.ye8{bottom:160.600000pt;}
.ya9{bottom:164.333333pt;}
.y147{bottom:164.600000pt;}
.y75{bottom:165.133333pt;}
.y119{bottom:168.066667pt;}
.y29{bottom:168.333333pt;}
.y34{bottom:173.106667pt;}
.ye7{bottom:176.066667pt;}
.y74{bottom:180.333333pt;}
.ya8{bottom:181.666667pt;}
.y117{bottom:183.266667pt;}
.y28{bottom:183.533333pt;}
.y33{bottom:188.346667pt;}
.ye6{bottom:191.266667pt;}
.ya7{bottom:194.466667pt;}
.y146{bottom:195.533333pt;}
.y73{bottom:195.800000pt;}
.y27{bottom:198.200000pt;}
.y115{bottom:199.266667pt;}
.y32{bottom:203.813333pt;}
.ye5{bottom:206.733333pt;}
.ya6{bottom:209.933333pt;}
.y145{bottom:211.000000pt;}
.y26{bottom:211.266667pt;}
.y31{bottom:219.013333pt;}
.y72{bottom:221.400000pt;}
.ye4{bottom:221.933333pt;}
.ya5{bottom:225.133333pt;}
.y144{bottom:226.200000pt;}
.y25{bottom:226.466667pt;}
.y114{bottom:232.600000pt;}
.y30{bottom:234.480000pt;}
.y71{bottom:237.133333pt;}
.ye3{bottom:237.400000pt;}
.ya4{bottom:240.600000pt;}
.y143{bottom:241.666667pt;}
.y24{bottom:241.933333pt;}
.y2f{bottom:250.200000pt;}
.y70{bottom:252.333333pt;}
.ye2{bottom:252.600000pt;}
.ya3{bottom:256.333333pt;}
.y23{bottom:257.133333pt;}
.y142{bottom:267.266667pt;}
.y6f{bottom:267.800000pt;}
.ye1{bottom:268.066667pt;}
.y16e{bottom:271.000000pt;}
.y22{bottom:272.600000pt;}
.ya2{bottom:273.666667pt;}
.ye0{bottom:280.866667pt;}
.y6e{bottom:283.000000pt;}
.ydf{bottom:284.066667pt;}
.ya1{bottom:286.466667pt;}
.y21{bottom:287.800000pt;}
.y141{bottom:298.200000pt;}
.y6d{bottom:298.466667pt;}
.y16d{bottom:301.666667pt;}
.ya0{bottom:301.933333pt;}
.y20{bottom:303.266667pt;}
.ydd{bottom:305.666667pt;}
.y6c{bottom:313.706667pt;}
.y113{bottom:314.226667pt;}
.y9f{bottom:317.173333pt;}
.y1f{bottom:318.506667pt;}
.ydb{bottom:327.293333pt;}
.y140{bottom:328.893333pt;}
.y6b{bottom:329.173333pt;}
.y112{bottom:331.560000pt;}
.y16c{bottom:332.373333pt;}
.y9e{bottom:332.626667pt;}
.y1e{bottom:334.240000pt;}
.y6a{bottom:344.373333pt;}
.y9d{bottom:347.840000pt;}
.yd9{bottom:349.173333pt;}
.y1d{bottom:352.106667pt;}
.y69{bottom:359.840000pt;}
.y13f{bottom:360.106667pt;}
.y16b{bottom:363.040000pt;}
.y9c{bottom:363.293333pt;}
.yd7{bottom:370.773333pt;}
.y68{bottom:375.040000pt;}
.y13e{bottom:377.440000pt;}
.y9b{bottom:378.506667pt;}
.y13d{bottom:390.226667pt;}
.y111{bottom:390.506667pt;}
.yd6{bottom:392.360000pt;}
.y16a{bottom:393.706667pt;}
.y9a{bottom:393.973333pt;}
.y67{bottom:400.893333pt;}
.y13c{bottom:405.706667pt;}
.y99{bottom:409.173333pt;}
.y10f{bottom:409.960000pt;}
.yd4{bottom:413.960000pt;}
.y66{bottom:416.373333pt;}
.y13b{bottom:420.893333pt;}
.y2e{bottom:421.160000pt;}
.y169{bottom:424.373333pt;}
.y98{bottom:424.626667pt;}
.y10d{bottom:429.693333pt;}
.y65{bottom:431.840000pt;}
.yd2{bottom:435.840000pt;}
.y13a{bottom:436.373333pt;}
.y97{bottom:439.840000pt;}
.y64{bottom:447.040000pt;}
.y10b{bottom:448.640000pt;}
.y139{bottom:451.573333pt;}
.y168{bottom:455.026667pt;}
.y96{bottom:455.306667pt;}
.yd0{bottom:456.400000pt;}
.y63{bottom:462.533333pt;}
.y109{bottom:468.133333pt;}
.y167{bottom:470.533333pt;}
.y95{bottom:471.066667pt;}
.y62{bottom:477.733333pt;}
.y138{bottom:482.000000pt;}
.y166{bottom:485.733333pt;}
.ycf{bottom:487.333333pt;}
.y137{bottom:495.333333pt;}
.y108{bottom:496.666667pt;}
.y94{bottom:499.333333pt;}
.y165{bottom:501.200000pt;}
.y61{bottom:503.600000pt;}
.yce{bottom:505.200000pt;}
.y136{bottom:510.533333pt;}
.y107{bottom:514.266667pt;}
.y93{bottom:515.066667pt;}
.y164{bottom:516.400000pt;}
.y60{bottom:519.066667pt;}
.ycd{bottom:520.666667pt;}
.y135{bottom:526.000000pt;}
.y92{bottom:530.266667pt;}
.y106{bottom:531.066667pt;}
.y163{bottom:531.866667pt;}
.y5f{bottom:534.533333pt;}
.ycc{bottom:535.866667pt;}
.y134{bottom:542.000000pt;}
.y105{bottom:544.133333pt;}
.y91{bottom:545.733333pt;}
.y162{bottom:547.066667pt;}
.y5e{bottom:549.733333pt;}
.ycb{bottom:551.333333pt;}
.y104{bottom:559.333333pt;}
.y90{bottom:560.933333pt;}
.y161{bottom:562.533333pt;}
.y5d{bottom:565.200000pt;}
.yca{bottom:566.533333pt;}
.y133{bottom:567.866667pt;}
.y103{bottom:575.066667pt;}
.y8f{bottom:576.400000pt;}
.y160{bottom:577.733333pt;}
.y5c{bottom:580.400000pt;}
.yc9{bottom:582.266667pt;}
.y132{bottom:585.466667pt;}
.y15f{bottom:593.200000pt;}
.y102{bottom:593.466667pt;}
.y5b{bottom:595.866667pt;}
.yc8{bottom:599.600000pt;}
.y8e{bottom:602.000000pt;}
.y131{bottom:602.800000pt;}
.y15e{bottom:608.426667pt;}
.y101{bottom:610.840000pt;}
.yc7{bottom:612.693333pt;}
.y8d{bottom:617.760000pt;}
.y130{bottom:618.306667pt;}
.y5a{bottom:621.506667pt;}
.y100{bottom:623.893333pt;}
.yc6{bottom:627.893333pt;}
.y8c{bottom:632.960000pt;}
.y12f{bottom:633.506667pt;}
.y59{bottom:637.226667pt;}
.yff{bottom:639.106667pt;}
.y15d{bottom:639.640000pt;}
.yc5{bottom:643.373333pt;}
.y8b{bottom:648.440000pt;}
.y12e{bottom:649.226667pt;}
.y58{bottom:652.440000pt;}
.yfe{bottom:654.560000pt;}
.y15c{bottom:657.506667pt;}
.yc4{bottom:658.573333pt;}
.y8a{bottom:663.640000pt;}
.y12d{bottom:667.373333pt;}
.y57{bottom:667.906667pt;}
.yfd{bottom:670.293333pt;}
.y15b{bottom:672.973333pt;}
.yc3{bottom:674.026667pt;}
.y89{bottom:679.093333pt;}
.y12c{bottom:682.573333pt;}
.y56{bottom:683.106667pt;}
.yfc{bottom:687.626667pt;}
.y15a{bottom:688.173333pt;}
.yc2{bottom:689.760000pt;}
.y55{bottom:697.773333pt;}
.y12b{bottom:698.040000pt;}
.yfb{bottom:700.440000pt;}
.y159{bottom:703.626667pt;}
.y88{bottom:704.706667pt;}
.yc1{bottom:707.106667pt;}
.y54{bottom:710.840000pt;}
.y12a{bottom:713.226667pt;}
.yfa{bottom:715.906667pt;}
.y1c{bottom:716.706667pt;}
.y158{bottom:718.840000pt;}
.yc0{bottom:719.893333pt;}
.y87{bottom:720.440000pt;}
.y53{bottom:726.040000pt;}
.y129{bottom:728.706667pt;}
.yf9{bottom:731.106667pt;}
.y1b{bottom:732.173333pt;}
.y157{bottom:734.293333pt;}
.ybf{bottom:735.373333pt;}
.y86{bottom:735.626667pt;}
.y52{bottom:741.506667pt;}
.y128{bottom:743.893333pt;}
.yf8{bottom:746.560000pt;}
.y156{bottom:749.506667pt;}
.y1a{bottom:750.040000pt;}
.ybe{bottom:750.560000pt;}
.y85{bottom:751.106667pt;}
.y51{bottom:756.733333pt;}
.y127{bottom:759.400000pt;}
.yf7{bottom:762.333333pt;}
.y155{bottom:765.000000pt;}
.ybd{bottom:766.066667pt;}
.y84{bottom:766.333333pt;}
.y19{bottom:767.666667pt;}
.y50{bottom:772.200000pt;}
.y126{bottom:774.600000pt;}
.yf6{bottom:779.666667pt;}
.y154{bottom:780.200000pt;}
.ybc{bottom:781.266667pt;}
.y83{bottom:781.800000pt;}
.y18{bottom:784.200000pt;}
.y125{bottom:787.666667pt;}
.y4f{bottom:787.933333pt;}
.yf5{bottom:792.466667pt;}
.y153{bottom:795.666667pt;}
.ybb{bottom:797.000000pt;}
.y4e{bottom:805.266667pt;}
.y17{bottom:805.533333pt;}
.y82{bottom:807.400000pt;}
.yf4{bottom:808.466667pt;}
.y124{bottom:809.000000pt;}
.y152{bottom:811.400000pt;}
.yba{bottom:814.333333pt;}
.y4d{bottom:818.066667pt;}
.y16{bottom:821.266667pt;}
.yb9{bottom:827.400000pt;}
.y151{bottom:829.266667pt;}
.y81{bottom:829.533333pt;}
.yf3{bottom:830.333333pt;}
.y15{bottom:831.666667pt;}
.y4c{bottom:833.533333pt;}
.yb8{bottom:842.600000pt;}
.y150{bottom:844.733333pt;}
.y4b{bottom:848.733333pt;}
.y80{bottom:851.400000pt;}
.y14{bottom:851.933333pt;}
.y123{bottom:852.200000pt;}
.yb7{bottom:858.066667pt;}
.y14f{bottom:859.933333pt;}
.y13{bottom:862.066667pt;}
.y4a{bottom:864.200000pt;}
.yb6{bottom:873.266667pt;}
.y7f{bottom:873.533333pt;}
.y14e{bottom:875.400000pt;}
.y12{bottom:876.200000pt;}
.y49{bottom:879.400000pt;}
.y122{bottom:884.200000pt;}
.yb5{bottom:888.733333pt;}
.y14d{bottom:890.600000pt;}
.y7e{bottom:891.400000pt;}
.y11{bottom:891.933333pt;}
.y48{bottom:894.866667pt;}
.yf1{bottom:895.133333pt;}
.y121{bottom:901.800000pt;}
.yb4{bottom:904.506667pt;}
.y14c{bottom:906.373333pt;}
.y7d{bottom:907.173333pt;}
.y47{bottom:910.106667pt;}
.y10{bottom:910.373333pt;}
.yef{bottom:917.040000pt;}
.y120{bottom:919.440000pt;}
.yb3{bottom:921.840000pt;}
.y7c{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y46{bottom:925.560000pt;}
.yb2{bottom:934.626667pt;}
.y14b{bottom:937.560000pt;}
.y7b{bottom:937.840000pt;}
.yee{bottom:938.640000pt;}
.y45{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yb1{bottom:950.106667pt;}
.y7a{bottom:953.040000pt;}
.y44{bottom:955.440000pt;}
.yed{bottom:960.226667pt;}
.ya{bottom:963.173333pt;}
.yb0{bottom:965.293333pt;}
.y11f{bottom:965.840000pt;}
.y43{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.yaf{bottom:980.773333pt;}
.yec{bottom:981.040000pt;}
.y42{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.yae{bottom:995.960000pt;}
.y41{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yad{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h23{height:15.200000pt;}
.h22{height:15.466667pt;}
.h24{height:15.500000pt;}
.h1d{height:18.133333pt;}
.ha{height:18.666667pt;}
.h1f{height:18.933333pt;}
.h1e{height:18.966667pt;}
.h20{height:19.733333pt;}
.h17{height:20.000000pt;}
.h19{height:20.800000pt;}
.h1b{height:21.053333pt;}
.h18{height:21.066667pt;}
.h1a{height:21.100000pt;}
.h25{height:21.333333pt;}
.h21{height:22.933333pt;}
.hc{height:24.578125pt;}
.h10{height:29.791667pt;}
.h7{height:30.104167pt;}
.h14{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.he{height:33.867188pt;}
.hd{height:37.239583pt;}
.h4{height:37.630208pt;}
.h16{height:38.828125pt;}
.h15{height:39.562500pt;}
.h1c{height:43.651042pt;}
.hb{height:43.778125pt;}
.h13{height:43.958333pt;}
.hf{height:44.687500pt;}
.h6{height:45.156250pt;}
.h12{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h11{height:265.133333pt;}
.h0{height:1122.666667pt;}
.w2a{width:27.733333pt;}
.w1b{width:27.753333pt;}
.w24{width:35.733333pt;}
.w21{width:35.753333pt;}
.w2d{width:37.600000pt;}
.w16{width:41.066667pt;}
.w19{width:41.866667pt;}
.w18{width:42.133333pt;}
.w2c{width:44.566667pt;}
.w27{width:45.633333pt;}
.w2b{width:48.800000pt;}
.w25{width:50.166667pt;}
.wf{width:51.466667pt;}
.w26{width:52.533333pt;}
.w17{width:53.100000pt;}
.w11{width:57.600000pt;}
.w1c{width:57.900000pt;}
.wd{width:63.500000pt;}
.w4{width:64.266667pt;}
.w1f{width:64.566667pt;}
.w1a{width:65.333333pt;}
.w22{width:65.600000pt;}
.w23{width:65.900000pt;}
.w10{width:67.233333pt;}
.w29{width:69.066667pt;}
.w1e{width:71.466667pt;}
.wc{width:71.766667pt;}
.w20{width:77.066667pt;}
.wb{width:77.333333pt;}
.w2e{width:86.966667pt;}
.w14{width:93.366667pt;}
.w28{width:94.966667pt;}
.w3{width:96.000000pt;}
.we{width:101.900000pt;}
.w12{width:104.566667pt;}
.w1d{width:105.100000pt;}
.wa{width:105.900000pt;}
.w15{width:137.360000pt;}
.w13{width:137.373333pt;}
.w6{width:225.666667pt;}
.w9{width:280.066667pt;}
.w8{width:320.360000pt;}
.w5{width:429.733333pt;}
.w7{width:650.333333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.933333pt;}
.x4c{left:8.000000pt;}
.x2{left:9.599999pt;}
.x2f{left:10.933333pt;}
.x38{left:12.800000pt;}
.xf{left:14.400000pt;}
.x2b{left:15.733333pt;}
.x28{left:17.333333pt;}
.x35{left:18.666667pt;}
.x3{left:19.733333pt;}
.x3c{left:22.133333pt;}
.x27{left:23.200000pt;}
.x4{left:24.533333pt;}
.x26{left:27.466667pt;}
.x29{left:28.533333pt;}
.x2d{left:30.933333pt;}
.x2a{left:33.066667pt;}
.x2e{left:34.400000pt;}
.x2c{left:36.000000pt;}
.x3e{left:37.626667pt;}
.x37{left:38.666667pt;}
.x45{left:41.333333pt;}
.x51{left:43.506667pt;}
.x20{left:45.066667pt;}
.x1e{left:48.533333pt;}
.x1c{left:50.400000pt;}
.x36{left:52.533333pt;}
.x47{left:54.666667pt;}
.x44{left:59.200000pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.x15{left:81.906667pt;}
.x46{left:84.040000pt;}
.x13{left:93.633333pt;}
.x11{left:96.033322pt;}
.xe{left:104.293333pt;}
.x12{left:120.033322pt;}
.x9{left:136.559988pt;}
.x30{left:137.640000pt;}
.x48{left:141.373333pt;}
.x3a{left:149.373333pt;}
.x31{left:165.400000pt;}
.x49{left:169.133333pt;}
.x1d{left:177.666667pt;}
.x17{left:179.000000pt;}
.x3b{left:185.133333pt;}
.xc{left:214.740000pt;}
.x22{left:219.266667pt;}
.x32{left:223.000000pt;}
.x4a{left:226.733333pt;}
.x3d{left:250.733333pt;}
.x18{left:256.866667pt;}
.x23{left:272.906667pt;}
.x33{left:280.906667pt;}
.x39{left:287.573333pt;}
.x4b{left:291.306667pt;}
.x1f{left:315.573333pt;}
.x3f{left:316.640000pt;}
.x4d{left:319.040000pt;}
.x19{left:329.173333pt;}
.x6{left:349.973322pt;}
.x40{left:352.360000pt;}
.x4e{left:367.840000pt;}
.x34{left:386.000000pt;}
.x14{left:393.200000pt;}
.x41{left:402.533333pt;}
.x21{left:409.733333pt;}
.x4f{left:412.400000pt;}
.x50{left:450.000000pt;}
.x24{left:451.600000pt;}
.x42{left:455.066667pt;}
.x1a{left:495.906667pt;}
.xd{left:499.106667pt;}
.x43{left:500.693333pt;}
.x25{left:505.240000pt;}
.x10{left:528.426655pt;}
.x8{left:547.893322pt;}
.x7{left:576.173322pt;}
.x1b{left:615.666667pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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