
    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_4a528790ba1c2574aeb322a0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_db6df2ed7bcedbe96e4d8b18.woff')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_820856674d61c502fb3765ad.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_36c86cee8b7eba52172095cf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6144248a316dbaff1d4098c2.woff')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_be3f39ef29a7853781000c5a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_a58ec3cace97234707e892f6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ee5c8ae2f5b67c37932cb487.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')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;}
.m3{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.524000px;}
.lsa{letter-spacing:-1.230000px;}
.ls8{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.518400px;}
.ls2{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.093000px;}
.lsd{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.612000px;}
.lsc{letter-spacing:1.224000px;}
.lsf{letter-spacing:41.682720px;}
.lse{letter-spacing:71.922720px;}
.ls12{letter-spacing:133.500000px;}
.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;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.wsa{word-spacing:-16.164000px;}
.ws7{word-spacing:-15.552000px;}
.ws8{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.860000px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-5.420160px;}
._11{margin-left:-2.217600px;}
._0{margin-left:-1.152000px;}
._2{width:1.053360px;}
._1{width:2.688000px;}
._9{width:3.794400px;}
._5{width:4.923600px;}
._6{width:6.064800px;}
._a{width:7.143600px;}
._3{width:8.291520px;}
._4{width:9.591120px;}
._f{width:11.593440px;}
._13{width:12.609360px;}
._c{width:13.789440px;}
._e{width:16.194960px;}
._d{width:17.591760px;}
._10{width:19.269360px;}
._14{width:20.365200px;}
._15{width:23.209200px;}
._7{width:27.235440px;}
._8{width:28.236240px;}
._b{width:29.461680px;}
._18{width:34.788720px;}
._1e{width:37.210320px;}
._1d{width:38.468160px;}
._1a{width:40.838400px;}
._19{width:41.934240px;}
._1c{width:51.211440px;}
._1b{width:52.750800px;}
._17{width:64.800000px;}
._12{width:849.216000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs6{font-size:45.360000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yac{bottom:3.240000px;}
.y9e{bottom:3.780000px;}
.y9c{bottom:3.960000px;}
.y77{bottom:4.860000px;}
.ye1{bottom:5.940000px;}
.ya0{bottom:6.480000px;}
.y9a{bottom:7.920000px;}
.y98{bottom:10.485000px;}
.y7b{bottom:12.240000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y7a{bottom:13.500000px;}
.y7d{bottom:13.860000px;}
.y6{bottom:47.160000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y3f{bottom:99.216000px;}
.y3c{bottom:116.676000px;}
.yde{bottom:123.156000px;}
.yc4{bottom:124.596000px;}
.y75{bottom:125.496000px;}
.y3b{bottom:133.956000px;}
.y10a{bottom:135.576000px;}
.yc3{bottom:138.636000px;}
.ydd{bottom:140.436000px;}
.y74{bottom:142.776000px;}
.y124{bottom:149.076000px;}
.y3a{bottom:151.230000px;}
.y109{bottom:152.670000px;}
.ydc{bottom:154.470000px;}
.y73{bottom:160.050000px;}
.y123{bottom:166.350000px;}
.y39{bottom:168.510000px;}
.y108{bottom:169.950000px;}
.y72{bottom:177.330000px;}
.y122{bottom:183.630000px;}
.y38{bottom:185.790000px;}
.y107{bottom:187.230000px;}
.y71{bottom:194.610000px;}
.y121{bottom:200.910000px;}
.y37{bottom:202.890000px;}
.y106{bottom:204.510000px;}
.y70{bottom:211.710000px;}
.y120{bottom:218.190000px;}
.y36{bottom:220.170000px;}
.ya2{bottom:221.790000px;}
.y6f{bottom:228.990000px;}
.y11f{bottom:235.470000px;}
.y35{bottom:237.450000px;}
.y105{bottom:238.890000px;}
.ya1{bottom:239.070000px;}
.y6e{bottom:246.270000px;}
.y11e{bottom:252.570000px;}
.y9f{bottom:254.550000px;}
.y34{bottom:254.730000px;}
.y104{bottom:256.170000px;}
.y6d{bottom:263.550000px;}
.y11d{bottom:269.850000px;}
.y33{bottom:272.010000px;}
.y103{bottom:273.450000px;}
.y9d{bottom:275.070000px;}
.y6c{bottom:280.830000px;}
.y11c{bottom:287.130000px;}
.y32{bottom:289.290000px;}
.y102{bottom:290.730000px;}
.y9b{bottom:292.890000px;}
.ydb{bottom:294.330000px;}
.y6b{bottom:297.930000px;}
.y11b{bottom:304.410000px;}
.y31{bottom:306.390000px;}
.y101{bottom:308.010000px;}
.y99{bottom:310.890000px;}
.yda{bottom:311.610000px;}
.y6a{bottom:315.210000px;}
.y11a{bottom:321.690000px;}
.y30{bottom:323.670000px;}
.y100{bottom:325.290000px;}
.yd9{bottom:328.890000px;}
.y69{bottom:332.490000px;}
.y97{bottom:333.570000px;}
.y119{bottom:339.015000px;}
.y2f{bottom:340.995000px;}
.yff{bottom:342.435000px;}
.yd8{bottom:346.035000px;}
.y68{bottom:349.815000px;}
.y118{bottom:356.115000px;}
.y2e{bottom:358.275000px;}
.yfe{bottom:359.715000px;}
.y96{bottom:362.775000px;}
.yd7{bottom:363.315000px;}
.y67{bottom:367.095000px;}
.y117{bottom:373.395000px;}
.y2d{bottom:375.555000px;}
.yfd{bottom:376.995000px;}
.y95{bottom:380.055000px;}
.yd6{bottom:380.595000px;}
.y66{bottom:384.375000px;}
.yc2{bottom:384.555000px;}
.y116{bottom:390.675000px;}
.y2c{bottom:392.835000px;}
.yfc{bottom:394.275000px;}
.y94{bottom:397.335000px;}
.yd5{bottom:397.875000px;}
.y65{bottom:401.475000px;}
.yc1{bottom:401.835000px;}
.y115{bottom:407.955000px;}
.y2b{bottom:409.935000px;}
.yfb{bottom:411.555000px;}
.y93{bottom:414.615000px;}
.yd4{bottom:415.155000px;}
.y64{bottom:418.755000px;}
.yc0{bottom:418.935000px;}
.y114{bottom:425.235000px;}
.y2a{bottom:427.215000px;}
.yfa{bottom:428.835000px;}
.y92{bottom:431.895000px;}
.yd3{bottom:432.435000px;}
.y63{bottom:436.035000px;}
.ybf{bottom:436.215000px;}
.y113{bottom:442.515000px;}
.y29{bottom:444.495000px;}
.yf9{bottom:445.935000px;}
.y91{bottom:448.995000px;}
.yd2{bottom:449.535000px;}
.y62{bottom:453.315000px;}
.ybe{bottom:453.495000px;}
.y112{bottom:459.615000px;}
.y28{bottom:461.775000px;}
.yf8{bottom:463.215000px;}
.y90{bottom:466.275000px;}
.yd1{bottom:466.815000px;}
.y61{bottom:467.355000px;}
.y7c{bottom:468.795000px;}
.ybd{bottom:470.775000px;}
.y78{bottom:475.815000px;}
.y111{bottom:476.895000px;}
.y27{bottom:479.055000px;}
.y8f{bottom:480.315000px;}
.yf7{bottom:480.495000px;}
.yd0{bottom:484.095000px;}
.ybc{bottom:488.055000px;}
.y110{bottom:494.175000px;}
.y26{bottom:496.155000px;}
.yf6{bottom:497.775000px;}
.ycf{bottom:501.375000px;}
.ybb{bottom:505.335000px;}
.y10f{bottom:511.455000px;}
.y25{bottom:513.435000px;}
.yf5{bottom:515.055000px;}
.yce{bottom:518.655000px;}
.yba{bottom:522.435000px;}
.y10e{bottom:528.735000px;}
.y24{bottom:530.715000px;}
.yf4{bottom:532.155000px;}
.ycd{bottom:535.755000px;}
.yb9{bottom:539.715000px;}
.y10d{bottom:545.835000px;}
.y23{bottom:547.995000px;}
.yf3{bottom:549.435000px;}
.ycc{bottom:549.795000px;}
.yb8{bottom:556.995000px;}
.y10c{bottom:563.115000px;}
.y79{bottom:564.735000px;}
.y22{bottom:565.275000px;}
.yf2{bottom:566.715000px;}
.yb7{bottom:571.035000px;}
.y76{bottom:571.755000px;}
.y10b{bottom:580.395000px;}
.y21{bottom:582.555000px;}
.yf1{bottom:583.995000px;}
.y60{bottom:597.675000px;}
.y20{bottom:598.035000px;}
.y1f{bottom:608.325000px;}
.y5f{bottom:614.985000px;}
.y1e{bottom:625.605000px;}
.y5e{bottom:632.265000px;}
.y1d{bottom:642.885000px;}
.y5d{bottom:649.365000px;}
.yb6{bottom:659.445000px;}
.y1c{bottom:660.165000px;}
.y5c{bottom:666.645000px;}
.yb5{bottom:676.725000px;}
.y1b{bottom:677.445000px;}
.y5b{bottom:683.925000px;}
.yb4{bottom:694.005000px;}
.y1a{bottom:694.545000px;}
.y5a{bottom:701.205000px;}
.yb3{bottom:711.285000px;}
.y19{bottom:711.825000px;}
.ycb{bottom:713.445000px;}
.y59{bottom:718.485000px;}
.yb2{bottom:728.385000px;}
.y18{bottom:729.105000px;}
.yca{bottom:730.725000px;}
.y58{bottom:735.765000px;}
.y8e{bottom:736.665000px;}
.yb1{bottom:745.665000px;}
.y17{bottom:746.385000px;}
.yc9{bottom:748.005000px;}
.y57{bottom:752.865000px;}
.y8d{bottom:753.945000px;}
.yb0{bottom:762.945000px;}
.y16{bottom:763.665000px;}
.yc8{bottom:765.285000px;}
.y56{bottom:770.145000px;}
.y8c{bottom:771.225000px;}
.yf0{bottom:771.585000px;}
.yaf{bottom:777.705000px;}
.y15{bottom:780.945000px;}
.yc7{bottom:782.385000px;}
.y55{bottom:787.425000px;}
.y8b{bottom:788.505000px;}
.yef{bottom:788.865000px;}
.yae{bottom:794.985000px;}
.y14{bottom:798.045000px;}
.yc6{bottom:799.665000px;}
.y54{bottom:804.705000px;}
.y8a{bottom:805.785000px;}
.yee{bottom:806.145000px;}
.yad{bottom:812.265000px;}
.yc5{bottom:813.705000px;}
.y13{bottom:815.325000px;}
.y53{bottom:821.985000px;}
.y89{bottom:822.885000px;}
.yed{bottom:823.425000px;}
.yab{bottom:830.265000px;}
.y12{bottom:832.605000px;}
.y52{bottom:839.265000px;}
.y88{bottom:840.165000px;}
.yec{bottom:840.705000px;}
.yaa{bottom:851.505000px;}
.y11{bottom:852.405000px;}
.y51{bottom:856.365000px;}
.y87{bottom:857.445000px;}
.yeb{bottom:857.985000px;}
.ya9{bottom:868.785000px;}
.y10{bottom:872.250000px;}
.y50{bottom:873.690000px;}
.y86{bottom:874.770000px;}
.yea{bottom:875.130000px;}
.ya8{bottom:885.930000px;}
.y4f{bottom:890.970000px;}
.y85{bottom:892.050000px;}
.yf{bottom:892.230000px;}
.ye9{bottom:892.410000px;}
.ya7{bottom:903.210000px;}
.y4e{bottom:908.250000px;}
.y84{bottom:909.330000px;}
.ye{bottom:909.510000px;}
.ye8{bottom:909.690000px;}
.ya6{bottom:920.490000px;}
.y4d{bottom:925.530000px;}
.y83{bottom:926.430000px;}
.ye7{bottom:926.970000px;}
.yd{bottom:927.330000px;}
.ya5{bottom:937.770000px;}
.y4c{bottom:942.630000px;}
.y82{bottom:943.710000px;}
.ye6{bottom:944.250000px;}
.yc{bottom:948.030000px;}
.ya4{bottom:955.050000px;}
.ye5{bottom:959.010000px;}
.y4b{bottom:959.910000px;}
.y81{bottom:960.990000px;}
.ya3{bottom:969.090000px;}
.yb{bottom:970.170000px;}
.y4a{bottom:977.190000px;}
.y80{bottom:978.270000px;}
.ye4{bottom:978.990000px;}
.y49{bottom:994.470000px;}
.y7f{bottom:995.550000px;}
.ya{bottom:997.710000px;}
.ye3{bottom:998.790000px;}
.y7e{bottom:1009.590000px;}
.y48{bottom:1011.750000px;}
.ye2{bottom:1018.770000px;}
.y7{bottom:1023.990000px;}
.y47{bottom:1029.030000px;}
.ye0{bottom:1038.750000px;}
.y5{bottom:1040.730000px;}
.y46{bottom:1046.130000px;}
.ydf{bottom:1059.450000px;}
.y45{bottom:1063.410000px;}
.y44{bottom:1080.690000px;}
.y43{bottom:1097.970000px;}
.y42{bottom:1115.250000px;}
.y41{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y40{bottom:1149.660000px;}
.y3e{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3d{bottom:1192.140000px;}
.hf{height:13.860000px;}
.h19{height:17.280000px;}
.h17{height:17.820000px;}
.h16{height:18.000000px;}
.h1c{height:19.800000px;}
.h1a{height:19.980000px;}
.h18{height:20.520000px;}
.hd{height:21.336328px;}
.h15{height:21.960000px;}
.h14{height:24.516000px;}
.h12{height:27.720000px;}
.h11{height:27.900000px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h13{height:30.240000px;}
.h10{height:31.672266px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.h1d{height:43.506914px;}
.h1b{height:44.236406px;}
.hc{height:49.255313px;}
.h3{height:50.273438px;}
.h5{height:50.800781px;}
.he{height:52.171875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:108.576000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:36.540000px;}
.w16{width:50.976000px;}
.wf{width:56.880000px;}
.wb{width:61.596000px;}
.w18{width:63.756000px;}
.w9{width:64.620000px;}
.wc{width:68.760000px;}
.w8{width:72.216000px;}
.w15{width:72.540000px;}
.w11{width:73.080000px;}
.we{width:74.700000px;}
.wd{width:85.536000px;}
.w10{width:93.456000px;}
.w12{width:93.636000px;}
.w13{width:95.076000px;}
.w7{width:96.516000px;}
.w17{width:98.460000px;}
.wa{width:98.856000px;}
.w19{width:142.956000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:3.600000px;}
.x29{left:9.000000px;}
.x2d{left:11.160000px;}
.x2b{left:12.240000px;}
.x35{left:15.300000px;}
.x2f{left:16.920000px;}
.x51{left:18.360000px;}
.x33{left:19.980000px;}
.x3d{left:21.240000px;}
.x8{left:23.940000px;}
.x3e{left:29.160000px;}
.x30{left:35.460000px;}
.x3{left:37.800000px;}
.x32{left:39.600000px;}
.x40{left:43.740000px;}
.x34{left:53.460000px;}
.x31{left:57.960000px;}
.x6{left:62.310000px;}
.x3f{left:89.310000px;}
.x3c{left:95.250000px;}
.x12{left:97.235987px;}
.x1{left:99.936000px;}
.xb{left:101.195987px;}
.x9{left:108.035987px;}
.x11{left:110.195987px;}
.x4c{left:139.535987px;}
.x23{left:144.216000px;}
.x19{left:145.655987px;}
.x58{left:151.229987px;}
.x54{left:161.489987px;}
.x26{left:171.749987px;}
.x55{left:176.249987px;}
.x4{left:182.199000px;}
.x41{left:185.789987px;}
.x48{left:190.289987px;}
.x43{left:194.249987px;}
.x17{left:197.129987px;}
.x4a{left:209.549987px;}
.x28{left:214.049987px;}
.x37{left:216.929987px;}
.x4e{left:238.754987px;}
.x2{left:240.519000px;}
.x56{left:247.934987px;}
.x16{left:250.274987px;}
.x45{left:258.554987px;}
.x1a{left:267.194987px;}
.x21{left:270.615000px;}
.x1d{left:273.315000px;}
.x49{left:275.834987px;}
.x42{left:281.414987px;}
.x25{left:282.494987px;}
.x27{left:284.654987px;}
.x52{left:288.074987px;}
.xc{left:290.954987px;}
.x4f{left:294.015000px;}
.x38{left:319.035000px;}
.x2a{left:323.175000px;}
.x4d{left:341.354987px;}
.x5{left:352.695000px;}
.xe{left:354.314987px;}
.x10{left:375.914987px;}
.x14{left:383.834987px;}
.x13{left:386.534987px;}
.x1e{left:393.195000px;}
.x1b{left:394.275000px;}
.x57{left:395.714987px;}
.x39{left:414.105000px;}
.x2c{left:416.625000px;}
.x15{left:433.004987px;}
.xa{left:445.604987px;}
.x3a{left:450.645000px;}
.xd{left:452.264987px;}
.x50{left:456.225000px;}
.xf{left:459.104987px;}
.x2e{left:489.705000px;}
.x3b{left:523.185000px;}
.x1c{left:547.665000px;}
.x36{left:571.109987px;}
.x4b{left:573.989987px;}
.x47{left:591.809987px;}
.x7{left:618.450000px;}
.x53{left:654.449987px;}
.x22{left:661.650000px;}
.x1f{left:673.530000px;}
.x46{left:710.609987px;}
.x18{left:749.879987px;}
.x44{left:773.279987px;}
.x24{left:795.779987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.354667pt;}
.lsa{letter-spacing:-1.093333pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.460800pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.082667pt;}
.lsd{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.544000pt;}
.lsc{letter-spacing:1.088000pt;}
.lsf{letter-spacing:37.051307pt;}
.lse{letter-spacing:63.931307pt;}
.ls12{letter-spacing:118.666667pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.wsa{word-spacing:-14.368000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-4.817920pt;}
._11{margin-left:-1.971200pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.936320pt;}
._1{width:2.389333pt;}
._9{width:3.372800pt;}
._5{width:4.376533pt;}
._6{width:5.390933pt;}
._a{width:6.349867pt;}
._3{width:7.370240pt;}
._4{width:8.525440pt;}
._f{width:10.305280pt;}
._13{width:11.208320pt;}
._c{width:12.257280pt;}
._e{width:14.395520pt;}
._d{width:15.637120pt;}
._10{width:17.128320pt;}
._14{width:18.102400pt;}
._15{width:20.630400pt;}
._7{width:24.209280pt;}
._8{width:25.098880pt;}
._b{width:26.188160pt;}
._18{width:30.923307pt;}
._1e{width:33.075840pt;}
._1d{width:34.193920pt;}
._1a{width:36.300800pt;}
._19{width:37.274880pt;}
._1c{width:45.521280pt;}
._1b{width:46.889600pt;}
._17{width:57.600000pt;}
._12{width:754.858667pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:40.320000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:2.880000pt;}
.y9e{bottom:3.360000pt;}
.y9c{bottom:3.520000pt;}
.y77{bottom:4.320000pt;}
.ye1{bottom:5.280000pt;}
.ya0{bottom:5.760000pt;}
.y9a{bottom:7.040000pt;}
.y98{bottom:9.320000pt;}
.y7b{bottom:10.880000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y7a{bottom:12.000000pt;}
.y7d{bottom:12.320000pt;}
.y6{bottom:41.920000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y3f{bottom:88.192000pt;}
.y3c{bottom:103.712000pt;}
.yde{bottom:109.472000pt;}
.yc4{bottom:110.752000pt;}
.y75{bottom:111.552000pt;}
.y3b{bottom:119.072000pt;}
.y10a{bottom:120.512000pt;}
.yc3{bottom:123.232000pt;}
.ydd{bottom:124.832000pt;}
.y74{bottom:126.912000pt;}
.y124{bottom:132.512000pt;}
.y3a{bottom:134.426667pt;}
.y109{bottom:135.706667pt;}
.ydc{bottom:137.306667pt;}
.y73{bottom:142.266667pt;}
.y123{bottom:147.866667pt;}
.y39{bottom:149.786667pt;}
.y108{bottom:151.066667pt;}
.y72{bottom:157.626667pt;}
.y122{bottom:163.226667pt;}
.y38{bottom:165.146667pt;}
.y107{bottom:166.426667pt;}
.y71{bottom:172.986667pt;}
.y121{bottom:178.586667pt;}
.y37{bottom:180.346667pt;}
.y106{bottom:181.786667pt;}
.y70{bottom:188.186667pt;}
.y120{bottom:193.946667pt;}
.y36{bottom:195.706667pt;}
.ya2{bottom:197.146667pt;}
.y6f{bottom:203.546667pt;}
.y11f{bottom:209.306667pt;}
.y35{bottom:211.066667pt;}
.y105{bottom:212.346667pt;}
.ya1{bottom:212.506667pt;}
.y6e{bottom:218.906667pt;}
.y11e{bottom:224.506667pt;}
.y9f{bottom:226.266667pt;}
.y34{bottom:226.426667pt;}
.y104{bottom:227.706667pt;}
.y6d{bottom:234.266667pt;}
.y11d{bottom:239.866667pt;}
.y33{bottom:241.786667pt;}
.y103{bottom:243.066667pt;}
.y9d{bottom:244.506667pt;}
.y6c{bottom:249.626667pt;}
.y11c{bottom:255.226667pt;}
.y32{bottom:257.146667pt;}
.y102{bottom:258.426667pt;}
.y9b{bottom:260.346667pt;}
.ydb{bottom:261.626667pt;}
.y6b{bottom:264.826667pt;}
.y11b{bottom:270.586667pt;}
.y31{bottom:272.346667pt;}
.y101{bottom:273.786667pt;}
.y99{bottom:276.346667pt;}
.yda{bottom:276.986667pt;}
.y6a{bottom:280.186667pt;}
.y11a{bottom:285.946667pt;}
.y30{bottom:287.706667pt;}
.y100{bottom:289.146667pt;}
.yd9{bottom:292.346667pt;}
.y69{bottom:295.546667pt;}
.y97{bottom:296.506667pt;}
.y119{bottom:301.346667pt;}
.y2f{bottom:303.106667pt;}
.yff{bottom:304.386667pt;}
.yd8{bottom:307.586667pt;}
.y68{bottom:310.946667pt;}
.y118{bottom:316.546667pt;}
.y2e{bottom:318.466667pt;}
.yfe{bottom:319.746667pt;}
.y96{bottom:322.466667pt;}
.yd7{bottom:322.946667pt;}
.y67{bottom:326.306667pt;}
.y117{bottom:331.906667pt;}
.y2d{bottom:333.826667pt;}
.yfd{bottom:335.106667pt;}
.y95{bottom:337.826667pt;}
.yd6{bottom:338.306667pt;}
.y66{bottom:341.666667pt;}
.yc2{bottom:341.826667pt;}
.y116{bottom:347.266667pt;}
.y2c{bottom:349.186667pt;}
.yfc{bottom:350.466667pt;}
.y94{bottom:353.186667pt;}
.yd5{bottom:353.666667pt;}
.y65{bottom:356.866667pt;}
.yc1{bottom:357.186667pt;}
.y115{bottom:362.626667pt;}
.y2b{bottom:364.386667pt;}
.yfb{bottom:365.826667pt;}
.y93{bottom:368.546667pt;}
.yd4{bottom:369.026667pt;}
.y64{bottom:372.226667pt;}
.yc0{bottom:372.386667pt;}
.y114{bottom:377.986667pt;}
.y2a{bottom:379.746667pt;}
.yfa{bottom:381.186667pt;}
.y92{bottom:383.906667pt;}
.yd3{bottom:384.386667pt;}
.y63{bottom:387.586667pt;}
.ybf{bottom:387.746667pt;}
.y113{bottom:393.346667pt;}
.y29{bottom:395.106667pt;}
.yf9{bottom:396.386667pt;}
.y91{bottom:399.106667pt;}
.yd2{bottom:399.586667pt;}
.y62{bottom:402.946667pt;}
.ybe{bottom:403.106667pt;}
.y112{bottom:408.546667pt;}
.y28{bottom:410.466667pt;}
.yf8{bottom:411.746667pt;}
.y90{bottom:414.466667pt;}
.yd1{bottom:414.946667pt;}
.y61{bottom:415.426667pt;}
.y7c{bottom:416.706667pt;}
.ybd{bottom:418.466667pt;}
.y78{bottom:422.946667pt;}
.y111{bottom:423.906667pt;}
.y27{bottom:425.826667pt;}
.y8f{bottom:426.946667pt;}
.yf7{bottom:427.106667pt;}
.yd0{bottom:430.306667pt;}
.ybc{bottom:433.826667pt;}
.y110{bottom:439.266667pt;}
.y26{bottom:441.026667pt;}
.yf6{bottom:442.466667pt;}
.ycf{bottom:445.666667pt;}
.ybb{bottom:449.186667pt;}
.y10f{bottom:454.626667pt;}
.y25{bottom:456.386667pt;}
.yf5{bottom:457.826667pt;}
.yce{bottom:461.026667pt;}
.yba{bottom:464.386667pt;}
.y10e{bottom:469.986667pt;}
.y24{bottom:471.746667pt;}
.yf4{bottom:473.026667pt;}
.ycd{bottom:476.226667pt;}
.yb9{bottom:479.746667pt;}
.y10d{bottom:485.186667pt;}
.y23{bottom:487.106667pt;}
.yf3{bottom:488.386667pt;}
.ycc{bottom:488.706667pt;}
.yb8{bottom:495.106667pt;}
.y10c{bottom:500.546667pt;}
.y79{bottom:501.986667pt;}
.y22{bottom:502.466667pt;}
.yf2{bottom:503.746667pt;}
.yb7{bottom:507.586667pt;}
.y76{bottom:508.226667pt;}
.y10b{bottom:515.906667pt;}
.y21{bottom:517.826667pt;}
.yf1{bottom:519.106667pt;}
.y60{bottom:531.266667pt;}
.y20{bottom:531.586667pt;}
.y1f{bottom:540.733333pt;}
.y5f{bottom:546.653333pt;}
.y1e{bottom:556.093333pt;}
.y5e{bottom:562.013333pt;}
.y1d{bottom:571.453333pt;}
.y5d{bottom:577.213333pt;}
.yb6{bottom:586.173333pt;}
.y1c{bottom:586.813333pt;}
.y5c{bottom:592.573333pt;}
.yb5{bottom:601.533333pt;}
.y1b{bottom:602.173333pt;}
.y5b{bottom:607.933333pt;}
.yb4{bottom:616.893333pt;}
.y1a{bottom:617.373333pt;}
.y5a{bottom:623.293333pt;}
.yb3{bottom:632.253333pt;}
.y19{bottom:632.733333pt;}
.ycb{bottom:634.173333pt;}
.y59{bottom:638.653333pt;}
.yb2{bottom:647.453333pt;}
.y18{bottom:648.093333pt;}
.yca{bottom:649.533333pt;}
.y58{bottom:654.013333pt;}
.y8e{bottom:654.813333pt;}
.yb1{bottom:662.813333pt;}
.y17{bottom:663.453333pt;}
.yc9{bottom:664.893333pt;}
.y57{bottom:669.213333pt;}
.y8d{bottom:670.173333pt;}
.yb0{bottom:678.173333pt;}
.y16{bottom:678.813333pt;}
.yc8{bottom:680.253333pt;}
.y56{bottom:684.573333pt;}
.y8c{bottom:685.533333pt;}
.yf0{bottom:685.853333pt;}
.yaf{bottom:691.293333pt;}
.y15{bottom:694.173333pt;}
.yc7{bottom:695.453333pt;}
.y55{bottom:699.933333pt;}
.y8b{bottom:700.893333pt;}
.yef{bottom:701.213333pt;}
.yae{bottom:706.653333pt;}
.y14{bottom:709.373333pt;}
.yc6{bottom:710.813333pt;}
.y54{bottom:715.293333pt;}
.y8a{bottom:716.253333pt;}
.yee{bottom:716.573333pt;}
.yad{bottom:722.013333pt;}
.yc5{bottom:723.293333pt;}
.y13{bottom:724.733333pt;}
.y53{bottom:730.653333pt;}
.y89{bottom:731.453333pt;}
.yed{bottom:731.933333pt;}
.yab{bottom:738.013333pt;}
.y12{bottom:740.093333pt;}
.y52{bottom:746.013333pt;}
.y88{bottom:746.813333pt;}
.yec{bottom:747.293333pt;}
.yaa{bottom:756.893333pt;}
.y11{bottom:757.693333pt;}
.y51{bottom:761.213333pt;}
.y87{bottom:762.173333pt;}
.yeb{bottom:762.653333pt;}
.ya9{bottom:772.253333pt;}
.y10{bottom:775.333333pt;}
.y50{bottom:776.613333pt;}
.y86{bottom:777.573333pt;}
.yea{bottom:777.893333pt;}
.ya8{bottom:787.493333pt;}
.y4f{bottom:791.973333pt;}
.y85{bottom:792.933333pt;}
.yf{bottom:793.093333pt;}
.ye9{bottom:793.253333pt;}
.ya7{bottom:802.853333pt;}
.y4e{bottom:807.333333pt;}
.y84{bottom:808.293333pt;}
.ye{bottom:808.453333pt;}
.ye8{bottom:808.613333pt;}
.ya6{bottom:818.213333pt;}
.y4d{bottom:822.693333pt;}
.y83{bottom:823.493333pt;}
.ye7{bottom:823.973333pt;}
.yd{bottom:824.293333pt;}
.ya5{bottom:833.573333pt;}
.y4c{bottom:837.893333pt;}
.y82{bottom:838.853333pt;}
.ye6{bottom:839.333333pt;}
.yc{bottom:842.693333pt;}
.ya4{bottom:848.933333pt;}
.ye5{bottom:852.453333pt;}
.y4b{bottom:853.253333pt;}
.y81{bottom:854.213333pt;}
.ya3{bottom:861.413333pt;}
.yb{bottom:862.373333pt;}
.y4a{bottom:868.613333pt;}
.y80{bottom:869.573333pt;}
.ye4{bottom:870.213333pt;}
.y49{bottom:883.973333pt;}
.y7f{bottom:884.933333pt;}
.ya{bottom:886.853333pt;}
.ye3{bottom:887.813333pt;}
.y7e{bottom:897.413333pt;}
.y48{bottom:899.333333pt;}
.ye2{bottom:905.573333pt;}
.y7{bottom:910.213333pt;}
.y47{bottom:914.693333pt;}
.ye0{bottom:923.333333pt;}
.y5{bottom:925.093333pt;}
.y46{bottom:929.893333pt;}
.ydf{bottom:941.733333pt;}
.y45{bottom:945.253333pt;}
.y44{bottom:960.613333pt;}
.y43{bottom:975.973333pt;}
.y42{bottom:991.333333pt;}
.y41{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y40{bottom:1021.920000pt;}
.y3e{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3d{bottom:1059.680000pt;}
.hf{height:12.320000pt;}
.h19{height:15.360000pt;}
.h17{height:15.840000pt;}
.h16{height:16.000000pt;}
.h1c{height:17.600000pt;}
.h1a{height:17.760000pt;}
.h18{height:18.240000pt;}
.hd{height:18.965625pt;}
.h15{height:19.520000pt;}
.h14{height:21.792000pt;}
.h12{height:24.640000pt;}
.h11{height:24.800000pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h13{height:26.880000pt;}
.h10{height:28.153125pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.h1d{height:38.672812pt;}
.h1b{height:39.321250pt;}
.hc{height:43.782500pt;}
.h3{height:44.687500pt;}
.h5{height:45.156250pt;}
.he{height:46.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:96.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:32.480000pt;}
.w16{width:45.312000pt;}
.wf{width:50.560000pt;}
.wb{width:54.752000pt;}
.w18{width:56.672000pt;}
.w9{width:57.440000pt;}
.wc{width:61.120000pt;}
.w8{width:64.192000pt;}
.w15{width:64.480000pt;}
.w11{width:64.960000pt;}
.we{width:66.400000pt;}
.wd{width:76.032000pt;}
.w10{width:83.072000pt;}
.w12{width:83.232000pt;}
.w13{width:84.512000pt;}
.w7{width:85.792000pt;}
.w17{width:87.520000pt;}
.wa{width:87.872000pt;}
.w19{width:127.072000pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:3.200000pt;}
.x29{left:8.000000pt;}
.x2d{left:9.920000pt;}
.x2b{left:10.880000pt;}
.x35{left:13.600000pt;}
.x2f{left:15.040000pt;}
.x51{left:16.320000pt;}
.x33{left:17.760000pt;}
.x3d{left:18.880000pt;}
.x8{left:21.280000pt;}
.x3e{left:25.920000pt;}
.x30{left:31.520000pt;}
.x3{left:33.600000pt;}
.x32{left:35.200000pt;}
.x40{left:38.880000pt;}
.x34{left:47.520000pt;}
.x31{left:51.520000pt;}
.x6{left:55.386667pt;}
.x3f{left:79.386667pt;}
.x3c{left:84.666667pt;}
.x12{left:86.431988pt;}
.x1{left:88.832000pt;}
.xb{left:89.951988pt;}
.x9{left:96.031988pt;}
.x11{left:97.951988pt;}
.x4c{left:124.031988pt;}
.x23{left:128.192000pt;}
.x19{left:129.471988pt;}
.x58{left:134.426655pt;}
.x54{left:143.546655pt;}
.x26{left:152.666655pt;}
.x55{left:156.666655pt;}
.x4{left:161.954667pt;}
.x41{left:165.146655pt;}
.x48{left:169.146655pt;}
.x43{left:172.666655pt;}
.x17{left:175.226655pt;}
.x4a{left:186.266655pt;}
.x28{left:190.266655pt;}
.x37{left:192.826655pt;}
.x4e{left:212.226655pt;}
.x2{left:213.794667pt;}
.x56{left:220.386655pt;}
.x16{left:222.466655pt;}
.x45{left:229.826655pt;}
.x1a{left:237.506655pt;}
.x21{left:240.546667pt;}
.x1d{left:242.946667pt;}
.x49{left:245.186655pt;}
.x42{left:250.146655pt;}
.x25{left:251.106655pt;}
.x27{left:253.026655pt;}
.x52{left:256.066655pt;}
.xc{left:258.626655pt;}
.x4f{left:261.346667pt;}
.x38{left:283.586667pt;}
.x2a{left:287.266667pt;}
.x4d{left:303.426655pt;}
.x5{left:313.506667pt;}
.xe{left:314.946655pt;}
.x10{left:334.146655pt;}
.x14{left:341.186655pt;}
.x13{left:343.586655pt;}
.x1e{left:349.506667pt;}
.x1b{left:350.466667pt;}
.x57{left:351.746655pt;}
.x39{left:368.093333pt;}
.x2c{left:370.333333pt;}
.x15{left:384.893322pt;}
.xa{left:396.093322pt;}
.x3a{left:400.573333pt;}
.xd{left:402.013322pt;}
.x50{left:405.533333pt;}
.xf{left:408.093322pt;}
.x2e{left:435.293333pt;}
.x3b{left:465.053333pt;}
.x1c{left:486.813333pt;}
.x36{left:507.653322pt;}
.x4b{left:510.213322pt;}
.x47{left:526.053322pt;}
.x7{left:549.733333pt;}
.x53{left:581.733322pt;}
.x22{left:588.133333pt;}
.x1f{left:598.693333pt;}
.x46{left:631.653322pt;}
.x18{left:666.559988pt;}
.x44{left:687.359988pt;}
.x24{left:707.359988pt;}
}




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