
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_ba59840e1d953bcf4839929f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b234fe6e0ec8f511d946dbc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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:ffa;src:url('chunks/assets/font_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_850970f7f952b92bb5b63b23.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.747559;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:ffd;src:url('chunks/assets/font_c8753d00ad5c6256478a25b0.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.269400px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.161760px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:37.566720px;}
.ls3{letter-spacing:42.048000px;}
.lsb{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.wsc{word-spacing:-48.240000px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.798000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1.508400px;}
._1{width:1.135440px;}
._9{width:2.859120px;}
._17{width:3.912480px;}
._18{width:4.916160px;}
._8{width:6.480000px;}
._7{width:7.506000px;}
._b{width:8.802000px;}
._11{width:10.577520px;}
._6{width:11.772000px;}
._10{width:13.327200px;}
._a{width:14.940960px;}
._c{width:16.433040px;}
._19{width:17.928000px;}
._16{width:19.003680px;}
._15{width:20.856240px;}
._14{width:22.410000px;}
._1a{width:24.262560px;}
._13{width:25.695360px;}
._12{width:27.350640px;}
._21{width:29.461680px;}
._1f{width:30.955680px;}
._1b{width:32.593440px;}
._1c{width:33.644880px;}
._f{width:35.136000px;}
._e{width:36.378000px;}
._25{width:38.485440px;}
._22{width:40.513680px;}
._1e{width:42.728400px;}
._2b{width:45.059040px;}
._23{width:48.764160px;}
._20{width:50.138640px;}
._1d{width:57.070800px;}
._2a{width:59.760000px;}
._d{width:61.938000px;}
._2c{width:65.675520px;}
._27{width:67.110480px;}
._24{width:88.205760px;}
._3{width:131.442960px;}
._26{width:230.297760px;}
._2e{width:269.778720px;}
._2f{width:270.951840px;}
._28{width:284.479200px;}
._29{width:286.071120px;}
._2d{width:310.333680px;}
._2{width:342.981120px;}
._5{width:1021.833600px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y45{bottom:2.556000px;}
.y39{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y31{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y43{bottom:8.496000px;}
.y37{bottom:9.540000px;}
.yc{bottom:14.040000px;}
.yf3{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y12f{bottom:16.380000px;}
.y44{bottom:16.416000px;}
.y2f{bottom:19.440000px;}
.y12a{bottom:20.520000px;}
.y36{bottom:25.200000px;}
.yf2{bottom:30.105000px;}
.y12e{bottom:30.240000px;}
.ya{bottom:35.460000px;}
.y2e{bottom:35.820000px;}
.y129{bottom:37.665000px;}
.y35{bottom:40.680000px;}
.y46{bottom:41.400000px;}
.y12d{bottom:43.920000px;}
.yf1{bottom:43.965000px;}
.y2d{bottom:51.300000px;}
.y128{bottom:54.945000px;}
.y34{bottom:56.160000px;}
.yf0{bottom:57.645000px;}
.y12c{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y42{bottom:64.080000px;}
.y2c{bottom:66.780000px;}
.y33{bottom:71.640000px;}
.y127{bottom:72.225000px;}
.y2b{bottom:82.440000px;}
.y126{bottom:89.505000px;}
.y2a{bottom:97.950000px;}
.y38{bottom:106.245000px;}
.y125{bottom:106.785000px;}
.ya6{bottom:113.256000px;}
.y29{bottom:113.430000px;}
.yc1{bottom:126.756000px;}
.y41{bottom:127.116000px;}
.y28{bottom:128.910000px;}
.ya5{bottom:130.536000px;}
.yec{bottom:133.596000px;}
.y76{bottom:139.536000px;}
.y40{bottom:143.676000px;}
.yc0{bottom:144.036000px;}
.ya4{bottom:147.816000px;}
.y26{bottom:150.165000px;}
.yeb{bottom:150.690000px;}
.y75{bottom:156.810000px;}
.y3f{bottom:158.070000px;}
.ybf{bottom:161.310000px;}
.y25{bottom:165.645000px;}
.yea{bottom:167.970000px;}
.ya3{bottom:169.410000px;}
.y3e{bottom:175.350000px;}
.y74{bottom:178.410000px;}
.y24{bottom:181.125000px;}
.ybe{bottom:182.910000px;}
.ye9{bottom:185.250000px;}
.ya2{bottom:191.190000px;}
.y3d{bottom:192.630000px;}
.y23{bottom:196.605000px;}
.y73{bottom:200.190000px;}
.ye8{bottom:202.530000px;}
.ybd{bottom:204.690000px;}
.y3c{bottom:209.910000px;}
.y22{bottom:212.265000px;}
.ya1{bottom:212.970000px;}
.y130{bottom:214.770000px;}
.ye7{bottom:219.810000px;}
.y72{bottom:221.970000px;}
.y12b{bottom:225.930000px;}
.ybc{bottom:226.470000px;}
.y3b{bottom:227.730000px;}
.y21{bottom:227.745000px;}
.ya0{bottom:230.250000px;}
.ye6{bottom:237.090000px;}
.y20{bottom:243.225000px;}
.y71{bottom:243.750000px;}
.y3a{bottom:246.810000px;}
.y9f{bottom:247.530000px;}
.ye5{bottom:254.190000px;}
.y1f{bottom:258.705000px;}
.y18{bottom:260.130000px;}
.y70{bottom:261.030000px;}
.y9e{bottom:264.810000px;}
.ye4{bottom:271.470000px;}
.y1e{bottom:274.365000px;}
.y6f{bottom:278.310000px;}
.y9d{bottom:282.090000px;}
.ye3{bottom:288.750000px;}
.y1d{bottom:289.845000px;}
.y6e{bottom:295.590000px;}
.y124{bottom:295.770000px;}
.y9c{bottom:299.190000px;}
.y1c{bottom:305.325000px;}
.ye2{bottom:306.030000px;}
.y6d{bottom:312.690000px;}
.y1b{bottom:320.835000px;}
.y9b{bottom:321.015000px;}
.ye1{bottom:323.355000px;}
.ybb{bottom:330.015000px;}
.y6c{bottom:334.515000px;}
.y1a{bottom:336.315000px;}
.ye0{bottom:340.635000px;}
.y9a{bottom:342.795000px;}
.yba{bottom:347.295000px;}
.y19{bottom:352.335000px;}
.y6b{bottom:356.295000px;}
.ydf{bottom:357.735000px;}
.y99{bottom:364.575000px;}
.yde{bottom:375.015000px;}
.y6a{bottom:378.075000px;}
.y32{bottom:379.695000px;}
.y98{bottom:381.855000px;}
.yb9{bottom:386.175000px;}
.ydd{bottom:392.295000px;}
.y69{bottom:395.355000px;}
.y97{bottom:398.955000px;}
.yb8{bottom:407.955000px;}
.ydc{bottom:409.575000px;}
.y68{bottom:412.455000px;}
.y96{bottom:416.235000px;}
.y109{bottom:419.835000px;}
.y123{bottom:423.075000px;}
.ydb{bottom:426.855000px;}
.y67{bottom:429.735000px;}
.y95{bottom:433.515000px;}
.y108{bottom:436.935000px;}
.y122{bottom:440.355000px;}
.yda{bottom:443.955000px;}
.y66{bottom:447.015000px;}
.y94{bottom:450.795000px;}
.y107{bottom:454.215000px;}
.y121{bottom:457.455000px;}
.yd9{bottom:461.235000px;}
.y65{bottom:464.295000px;}
.y30{bottom:464.835000px;}
.y93{bottom:468.075000px;}
.y106{bottom:471.495000px;}
.y120{bottom:474.735000px;}
.yd8{bottom:478.515000px;}
.yb7{bottom:481.575000px;}
.y27{bottom:485.535000px;}
.y64{bottom:486.075000px;}
.y105{bottom:488.775000px;}
.y92{bottom:489.675000px;}
.y11f{bottom:492.015000px;}
.yd7{bottom:495.795000px;}
.yb6{bottom:498.855000px;}
.y104{bottom:506.055000px;}
.y63{bottom:507.675000px;}
.y11e{bottom:509.295000px;}
.y91{bottom:511.455000px;}
.yd6{bottom:513.075000px;}
.yb5{bottom:515.955000px;}
.y103{bottom:523.155000px;}
.y11d{bottom:526.575000px;}
.y62{bottom:529.455000px;}
.yd5{bottom:530.355000px;}
.y90{bottom:533.235000px;}
.y102{bottom:540.435000px;}
.y11c{bottom:543.855000px;}
.y61{bottom:546.735000px;}
.yd4{bottom:547.455000px;}
.y8f{bottom:555.015000px;}
.y101{bottom:557.715000px;}
.y11b{bottom:560.955000px;}
.y60{bottom:564.015000px;}
.yd3{bottom:564.735000px;}
.y8e{bottom:572.325000px;}
.y100{bottom:575.025000px;}
.yb4{bottom:576.825000px;}
.y11a{bottom:578.265000px;}
.y5f{bottom:581.325000px;}
.yd2{bottom:582.045000px;}
.y8d{bottom:589.605000px;}
.yff{bottom:592.305000px;}
.y119{bottom:595.545000px;}
.y5e{bottom:598.605000px;}
.yd1{bottom:599.325000px;}
.y8c{bottom:606.885000px;}
.yfe{bottom:609.585000px;}
.y118{bottom:612.825000px;}
.y5d{bottom:615.885000px;}
.yd0{bottom:616.605000px;}
.y8b{bottom:623.985000px;}
.yfd{bottom:626.685000px;}
.y16{bottom:627.765000px;}
.y117{bottom:630.105000px;}
.y5c{bottom:632.985000px;}
.ycf{bottom:633.885000px;}
.y8a{bottom:641.265000px;}
.yfc{bottom:643.965000px;}
.y116{bottom:647.385000px;}
.y5b{bottom:650.265000px;}
.yce{bottom:650.985000px;}
.y89{bottom:658.545000px;}
.yfb{bottom:661.245000px;}
.y15{bottom:662.325000px;}
.y115{bottom:664.485000px;}
.yb3{bottom:667.545000px;}
.ycd{bottom:668.265000px;}
.y5a{bottom:672.045000px;}
.yfa{bottom:678.525000px;}
.y88{bottom:680.325000px;}
.y114{bottom:681.765000px;}
.y14{bottom:682.305000px;}
.yb2{bottom:684.825000px;}
.ycc{bottom:685.545000px;}
.y59{bottom:693.825000px;}
.yf9{bottom:695.805000px;}
.y113{bottom:699.045000px;}
.y87{bottom:702.105000px;}
.ycb{bottom:702.825000px;}
.y13{bottom:710.745000px;}
.yf8{bottom:713.085000px;}
.y58{bottom:715.605000px;}
.y112{bottom:716.325000px;}
.yca{bottom:720.105000px;}
.y86{bottom:723.705000px;}
.y12{bottom:728.385000px;}
.yf7{bottom:730.185000px;}
.y111{bottom:733.605000px;}
.y57{bottom:737.205000px;}
.yc9{bottom:737.385000px;}
.y85{bottom:740.985000px;}
.yb1{bottom:745.485000px;}
.yf6{bottom:747.465000px;}
.y11{bottom:749.625000px;}
.y110{bottom:750.885000px;}
.y56{bottom:754.485000px;}
.y84{bottom:758.265000px;}
.yf5{bottom:764.745000px;}
.yb0{bottom:767.265000px;}
.y10f{bottom:767.985000px;}
.y55{bottom:771.765000px;}
.y83{bottom:775.545000px;}
.y10{bottom:780.585000px;}
.yf4{bottom:782.025000px;}
.yaf{bottom:784.545000px;}
.y10e{bottom:785.265000px;}
.y54{bottom:789.045000px;}
.y82{bottom:792.825000px;}
.yef{bottom:796.785000px;}
.yae{bottom:801.825000px;}
.y10d{bottom:802.545000px;}
.y53{bottom:806.325000px;}
.y81{bottom:810.105000px;}
.yf{bottom:811.725000px;}
.yad{bottom:819.105000px;}
.y10c{bottom:819.870000px;}
.y52{bottom:823.650000px;}
.yc8{bottom:827.970000px;}
.y80{bottom:831.750000px;}
.yac{bottom:836.250000px;}
.y10b{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.y51{bottom:845.250000px;}
.yc7{bottom:849.750000px;}
.y7f{bottom:853.530000px;}
.y10a{bottom:854.250000px;}
.y50{bottom:862.530000px;}
.yee{bottom:866.490000px;}
.yab{bottom:870.810000px;}
.yc6{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.y7e{bottom:875.310000px;}
.y4f{bottom:879.810000px;}
.yed{bottom:884.310000px;}
.yb{bottom:887.010000px;}
.yc5{bottom:888.810000px;}
.y7d{bottom:892.590000px;}
.y4e{bottom:897.090000px;}
.yc4{bottom:906.090000px;}
.y7c{bottom:909.870000px;}
.y4d{bottom:914.370000px;}
.yc3{bottom:923.370000px;}
.y7b{bottom:927.150000px;}
.y4c{bottom:931.650000px;}
.yaa{bottom:935.970000px;}
.yc2{bottom:940.650000px;}
.y7a{bottom:944.250000px;}
.y4b{bottom:948.750000px;}
.ya9{bottom:957.750000px;}
.y4a{bottom:966.030000px;}
.ya8{bottom:975.030000px;}
.y49{bottom:983.310000px;}
.y79{bottom:987.810000px;}
.ya7{bottom:992.310000px;}
.y48{bottom:1000.590000px;}
.y78{bottom:1009.590000px;}
.y47{bottom:1022.370000px;}
.y77{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h1c{height:13.860000px;}
.hf{height:17.280000px;}
.h16{height:19.980000px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h1d{height:34.036523px;}
.h12{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.336328px;}
.h11{height:39.972656px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h1b{height:43.506914px;}
.h1a{height:44.236406px;}
.h15{height:44.265586px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h1e{height:68.976000px;}
.h20{height:69.120000px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h17{height:84.240000px;}
.h19{height:118.836000px;}
.h1f{height:120.816000px;}
.h13{height:141.516000px;}
.h8{height:153.900000px;}
.h10{height:366.915000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:211.710000px;}
.w7{width:329.295000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w8{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.480000px;}
.x15{left:7.560000px;}
.x5{left:8.640000px;}
.x20{left:12.420000px;}
.x12{left:19.980000px;}
.x17{left:23.265000px;}
.x14{left:29.745000px;}
.x16{left:31.725000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x19{left:59.579986px;}
.x3{left:60.659986px;}
.x18{left:65.519986px;}
.x1d{left:80.130000px;}
.xb{left:84.239986px;}
.x1b{left:86.759986px;}
.x6{left:100.836000px;}
.xf{left:104.615986px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.x2{left:220.709986px;}
.xc{left:254.189986px;}
.x1f{left:295.635000px;}
.xe{left:410.474986px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.x10{left:465.374986px;}
.x1a{left:478.334986px;}
.x1c{left:505.364986px;}
.x1e{left:526.604986px;}
.x11{left:650.805000px;}
.x9{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.143787pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:33.392640pt;}
.ls3{letter-spacing:37.376000pt;}
.lsb{letter-spacing:40.912640pt;}
.lsc{letter-spacing:57.040640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.wsc{word-spacing:-42.880000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.376000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1.340800pt;}
._1{width:1.009280pt;}
._9{width:2.541440pt;}
._17{width:3.477760pt;}
._18{width:4.369920pt;}
._8{width:5.760000pt;}
._7{width:6.672000pt;}
._b{width:7.824000pt;}
._11{width:9.402240pt;}
._6{width:10.464000pt;}
._10{width:11.846400pt;}
._a{width:13.280853pt;}
._c{width:14.607147pt;}
._19{width:15.936000pt;}
._16{width:16.892160pt;}
._15{width:18.538880pt;}
._14{width:19.920000pt;}
._1a{width:21.566720pt;}
._13{width:22.840320pt;}
._12{width:24.311680pt;}
._21{width:26.188160pt;}
._1f{width:27.516160pt;}
._1b{width:28.971947pt;}
._1c{width:29.906560pt;}
._f{width:31.232000pt;}
._e{width:32.336000pt;}
._25{width:34.209280pt;}
._22{width:36.012160pt;}
._1e{width:37.980800pt;}
._2b{width:40.052480pt;}
._23{width:43.345920pt;}
._20{width:44.567680pt;}
._1d{width:50.729600pt;}
._2a{width:53.120000pt;}
._d{width:55.056000pt;}
._2c{width:58.378240pt;}
._27{width:59.653760pt;}
._24{width:78.405120pt;}
._3{width:116.838187pt;}
._26{width:204.709120pt;}
._2e{width:239.803307pt;}
._2f{width:240.846080pt;}
._28{width:252.870400pt;}
._29{width:254.285440pt;}
._2d{width:275.852160pt;}
._2{width:304.872107pt;}
._5{width:908.296533pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y45{bottom:2.272000pt;}
.y39{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y31{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y43{bottom:7.552000pt;}
.y37{bottom:8.480000pt;}
.yc{bottom:12.480000pt;}
.yf3{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y12f{bottom:14.560000pt;}
.y44{bottom:14.592000pt;}
.y2f{bottom:17.280000pt;}
.y12a{bottom:18.240000pt;}
.y36{bottom:22.400000pt;}
.yf2{bottom:26.760000pt;}
.y12e{bottom:26.880000pt;}
.ya{bottom:31.520000pt;}
.y2e{bottom:31.840000pt;}
.y129{bottom:33.480000pt;}
.y35{bottom:36.160000pt;}
.y46{bottom:36.800000pt;}
.y12d{bottom:39.040000pt;}
.yf1{bottom:39.080000pt;}
.y2d{bottom:45.600000pt;}
.y128{bottom:48.840000pt;}
.y34{bottom:49.920000pt;}
.yf0{bottom:51.240000pt;}
.y12c{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y42{bottom:56.960000pt;}
.y2c{bottom:59.360000pt;}
.y33{bottom:63.680000pt;}
.y127{bottom:64.200000pt;}
.y2b{bottom:73.280000pt;}
.y126{bottom:79.560000pt;}
.y2a{bottom:87.066667pt;}
.y38{bottom:94.440000pt;}
.y125{bottom:94.920000pt;}
.ya6{bottom:100.672000pt;}
.y29{bottom:100.826667pt;}
.yc1{bottom:112.672000pt;}
.y41{bottom:112.992000pt;}
.y28{bottom:114.586667pt;}
.ya5{bottom:116.032000pt;}
.yec{bottom:118.752000pt;}
.y76{bottom:124.032000pt;}
.y40{bottom:127.712000pt;}
.yc0{bottom:128.032000pt;}
.ya4{bottom:131.392000pt;}
.y26{bottom:133.480000pt;}
.yeb{bottom:133.946667pt;}
.y75{bottom:139.386667pt;}
.y3f{bottom:140.506667pt;}
.ybf{bottom:143.386667pt;}
.y25{bottom:147.240000pt;}
.yea{bottom:149.306667pt;}
.ya3{bottom:150.586667pt;}
.y3e{bottom:155.866667pt;}
.y74{bottom:158.586667pt;}
.y24{bottom:161.000000pt;}
.ybe{bottom:162.586667pt;}
.ye9{bottom:164.666667pt;}
.ya2{bottom:169.946667pt;}
.y3d{bottom:171.226667pt;}
.y23{bottom:174.760000pt;}
.y73{bottom:177.946667pt;}
.ye8{bottom:180.026667pt;}
.ybd{bottom:181.946667pt;}
.y3c{bottom:186.586667pt;}
.y22{bottom:188.680000pt;}
.ya1{bottom:189.306667pt;}
.y130{bottom:190.906667pt;}
.ye7{bottom:195.386667pt;}
.y72{bottom:197.306667pt;}
.y12b{bottom:200.826667pt;}
.ybc{bottom:201.306667pt;}
.y3b{bottom:202.426667pt;}
.y21{bottom:202.440000pt;}
.ya0{bottom:204.666667pt;}
.ye6{bottom:210.746667pt;}
.y20{bottom:216.200000pt;}
.y71{bottom:216.666667pt;}
.y3a{bottom:219.386667pt;}
.y9f{bottom:220.026667pt;}
.ye5{bottom:225.946667pt;}
.y1f{bottom:229.960000pt;}
.y18{bottom:231.226667pt;}
.y70{bottom:232.026667pt;}
.y9e{bottom:235.386667pt;}
.ye4{bottom:241.306667pt;}
.y1e{bottom:243.880000pt;}
.y6f{bottom:247.386667pt;}
.y9d{bottom:250.746667pt;}
.ye3{bottom:256.666667pt;}
.y1d{bottom:257.640000pt;}
.y6e{bottom:262.746667pt;}
.y124{bottom:262.906667pt;}
.y9c{bottom:265.946667pt;}
.y1c{bottom:271.400000pt;}
.ye2{bottom:272.026667pt;}
.y6d{bottom:277.946667pt;}
.y1b{bottom:285.186667pt;}
.y9b{bottom:285.346667pt;}
.ye1{bottom:287.426667pt;}
.ybb{bottom:293.346667pt;}
.y6c{bottom:297.346667pt;}
.y1a{bottom:298.946667pt;}
.ye0{bottom:302.786667pt;}
.y9a{bottom:304.706667pt;}
.yba{bottom:308.706667pt;}
.y19{bottom:313.186667pt;}
.y6b{bottom:316.706667pt;}
.ydf{bottom:317.986667pt;}
.y99{bottom:324.066667pt;}
.yde{bottom:333.346667pt;}
.y6a{bottom:336.066667pt;}
.y32{bottom:337.506667pt;}
.y98{bottom:339.426667pt;}
.yb9{bottom:343.266667pt;}
.ydd{bottom:348.706667pt;}
.y69{bottom:351.426667pt;}
.y97{bottom:354.626667pt;}
.yb8{bottom:362.626667pt;}
.ydc{bottom:364.066667pt;}
.y68{bottom:366.626667pt;}
.y96{bottom:369.986667pt;}
.y109{bottom:373.186667pt;}
.y123{bottom:376.066667pt;}
.ydb{bottom:379.426667pt;}
.y67{bottom:381.986667pt;}
.y95{bottom:385.346667pt;}
.y108{bottom:388.386667pt;}
.y122{bottom:391.426667pt;}
.yda{bottom:394.626667pt;}
.y66{bottom:397.346667pt;}
.y94{bottom:400.706667pt;}
.y107{bottom:403.746667pt;}
.y121{bottom:406.626667pt;}
.yd9{bottom:409.986667pt;}
.y65{bottom:412.706667pt;}
.y30{bottom:413.186667pt;}
.y93{bottom:416.066667pt;}
.y106{bottom:419.106667pt;}
.y120{bottom:421.986667pt;}
.yd8{bottom:425.346667pt;}
.yb7{bottom:428.066667pt;}
.y27{bottom:431.586667pt;}
.y64{bottom:432.066667pt;}
.y105{bottom:434.466667pt;}
.y92{bottom:435.266667pt;}
.y11f{bottom:437.346667pt;}
.yd7{bottom:440.706667pt;}
.yb6{bottom:443.426667pt;}
.y104{bottom:449.826667pt;}
.y63{bottom:451.266667pt;}
.y11e{bottom:452.706667pt;}
.y91{bottom:454.626667pt;}
.yd6{bottom:456.066667pt;}
.yb5{bottom:458.626667pt;}
.y103{bottom:465.026667pt;}
.y11d{bottom:468.066667pt;}
.y62{bottom:470.626667pt;}
.yd5{bottom:471.426667pt;}
.y90{bottom:473.986667pt;}
.y102{bottom:480.386667pt;}
.y11c{bottom:483.426667pt;}
.y61{bottom:485.986667pt;}
.yd4{bottom:486.626667pt;}
.y8f{bottom:493.346667pt;}
.y101{bottom:495.746667pt;}
.y11b{bottom:498.626667pt;}
.y60{bottom:501.346667pt;}
.yd3{bottom:501.986667pt;}
.y8e{bottom:508.733333pt;}
.y100{bottom:511.133333pt;}
.yb4{bottom:512.733333pt;}
.y11a{bottom:514.013333pt;}
.y5f{bottom:516.733333pt;}
.yd2{bottom:517.373333pt;}
.y8d{bottom:524.093333pt;}
.yff{bottom:526.493333pt;}
.y119{bottom:529.373333pt;}
.y5e{bottom:532.093333pt;}
.yd1{bottom:532.733333pt;}
.y8c{bottom:539.453333pt;}
.yfe{bottom:541.853333pt;}
.y118{bottom:544.733333pt;}
.y5d{bottom:547.453333pt;}
.yd0{bottom:548.093333pt;}
.y8b{bottom:554.653333pt;}
.yfd{bottom:557.053333pt;}
.y16{bottom:558.013333pt;}
.y117{bottom:560.093333pt;}
.y5c{bottom:562.653333pt;}
.ycf{bottom:563.453333pt;}
.y8a{bottom:570.013333pt;}
.yfc{bottom:572.413333pt;}
.y116{bottom:575.453333pt;}
.y5b{bottom:578.013333pt;}
.yce{bottom:578.653333pt;}
.y89{bottom:585.373333pt;}
.yfb{bottom:587.773333pt;}
.y15{bottom:588.733333pt;}
.y115{bottom:590.653333pt;}
.yb3{bottom:593.373333pt;}
.ycd{bottom:594.013333pt;}
.y5a{bottom:597.373333pt;}
.yfa{bottom:603.133333pt;}
.y88{bottom:604.733333pt;}
.y114{bottom:606.013333pt;}
.y14{bottom:606.493333pt;}
.yb2{bottom:608.733333pt;}
.ycc{bottom:609.373333pt;}
.y59{bottom:616.733333pt;}
.yf9{bottom:618.493333pt;}
.y113{bottom:621.373333pt;}
.y87{bottom:624.093333pt;}
.ycb{bottom:624.733333pt;}
.y13{bottom:631.773333pt;}
.yf8{bottom:633.853333pt;}
.y58{bottom:636.093333pt;}
.y112{bottom:636.733333pt;}
.yca{bottom:640.093333pt;}
.y86{bottom:643.293333pt;}
.y12{bottom:647.453333pt;}
.yf7{bottom:649.053333pt;}
.y111{bottom:652.093333pt;}
.y57{bottom:655.293333pt;}
.yc9{bottom:655.453333pt;}
.y85{bottom:658.653333pt;}
.yb1{bottom:662.653333pt;}
.yf6{bottom:664.413333pt;}
.y11{bottom:666.333333pt;}
.y110{bottom:667.453333pt;}
.y56{bottom:670.653333pt;}
.y84{bottom:674.013333pt;}
.yf5{bottom:679.773333pt;}
.yb0{bottom:682.013333pt;}
.y10f{bottom:682.653333pt;}
.y55{bottom:686.013333pt;}
.y83{bottom:689.373333pt;}
.y10{bottom:693.853333pt;}
.yf4{bottom:695.133333pt;}
.yaf{bottom:697.373333pt;}
.y10e{bottom:698.013333pt;}
.y54{bottom:701.373333pt;}
.y82{bottom:704.733333pt;}
.yef{bottom:708.253333pt;}
.yae{bottom:712.733333pt;}
.y10d{bottom:713.373333pt;}
.y53{bottom:716.733333pt;}
.y81{bottom:720.093333pt;}
.yf{bottom:721.533333pt;}
.yad{bottom:728.093333pt;}
.y10c{bottom:728.773333pt;}
.y52{bottom:732.133333pt;}
.yc8{bottom:735.973333pt;}
.y80{bottom:739.333333pt;}
.yac{bottom:743.333333pt;}
.y10b{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.y51{bottom:751.333333pt;}
.yc7{bottom:755.333333pt;}
.y7f{bottom:758.693333pt;}
.y10a{bottom:759.333333pt;}
.y50{bottom:766.693333pt;}
.yee{bottom:770.213333pt;}
.yab{bottom:774.053333pt;}
.yc6{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.y7e{bottom:778.053333pt;}
.y4f{bottom:782.053333pt;}
.yed{bottom:786.053333pt;}
.yb{bottom:788.453333pt;}
.yc5{bottom:790.053333pt;}
.y7d{bottom:793.413333pt;}
.y4e{bottom:797.413333pt;}
.yc4{bottom:805.413333pt;}
.y7c{bottom:808.773333pt;}
.y4d{bottom:812.773333pt;}
.yc3{bottom:820.773333pt;}
.y7b{bottom:824.133333pt;}
.y4c{bottom:828.133333pt;}
.yaa{bottom:831.973333pt;}
.yc2{bottom:836.133333pt;}
.y7a{bottom:839.333333pt;}
.y4b{bottom:843.333333pt;}
.ya9{bottom:851.333333pt;}
.y4a{bottom:858.693333pt;}
.ya8{bottom:866.693333pt;}
.y49{bottom:874.053333pt;}
.y79{bottom:878.053333pt;}
.ya7{bottom:882.053333pt;}
.y48{bottom:889.413333pt;}
.y78{bottom:897.413333pt;}
.y47{bottom:908.773333pt;}
.y77{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h1c{height:12.320000pt;}
.hf{height:15.360000pt;}
.h16{height:17.760000pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1d{height:30.254687pt;}
.h12{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.965625pt;}
.h11{height:35.531250pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h1a{height:39.321250pt;}
.h15{height:39.347188pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h1e{height:61.312000pt;}
.h20{height:61.440000pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h17{height:74.880000pt;}
.h19{height:105.632000pt;}
.h1f{height:107.392000pt;}
.h13{height:125.792000pt;}
.h8{height:136.800000pt;}
.h10{height:326.146667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:188.186667pt;}
.w7{width:292.706667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w8{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.760000pt;}
.x15{left:6.720000pt;}
.x5{left:7.680000pt;}
.x20{left:11.040000pt;}
.x12{left:17.760000pt;}
.x17{left:20.680000pt;}
.x14{left:26.440000pt;}
.x16{left:28.200000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x19{left:52.959988pt;}
.x3{left:53.919988pt;}
.x18{left:58.239988pt;}
.x1d{left:71.226667pt;}
.xb{left:74.879988pt;}
.x1b{left:77.119988pt;}
.x6{left:89.632000pt;}
.xf{left:92.991988pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.x2{left:196.186655pt;}
.xc{left:225.946655pt;}
.x1f{left:262.786667pt;}
.xe{left:364.866655pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.x10{left:413.666655pt;}
.x1a{left:425.186655pt;}
.x1c{left:449.213321pt;}
.x1e{left:468.093321pt;}
.x11{left:578.493333pt;}
.x9{left:722.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; }
  