
    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_b13fbf51a90f17d1f9ac0dfa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a698e7ab49f24a7e5cbf2f0e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_fe776be2fdf9f958346efee9.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_9b8c951d4f074b563d2d8e9d.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_0ab9f6d981069d538c8c261b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_6ed5fcbe07725193d0600376.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_6193fc93719873dbca485474.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_f0f086e4c77ca8e28410c095.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:33.840000px;}
.v8{vertical-align:40.320000px;}
.v6{vertical-align:46.080000px;}
.v5{vertical-align:48.240000px;}
.ls1d{letter-spacing:-0.774000px;}
.ls1{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.460200px;}
.ls2{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.328800px;}
.ls24{letter-spacing:-0.259800px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.067200px;}
.ls5{letter-spacing:0.095760px;}
.ls1a{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.135600px;}
.ls9{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.331920px;}
.ls1b{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.532800px;}
.ls10{letter-spacing:0.599760px;}
.ls23{letter-spacing:0.900000px;}
.ls6{letter-spacing:2.867040px;}
.lsf{letter-spacing:4.062240px;}
.ls8{letter-spacing:4.140000px;}
.ls11{letter-spacing:13.679280px;}
.ls20{letter-spacing:16.506720px;}
.lsb{letter-spacing:17.279280px;}
.ls1c{letter-spacing:17.946720px;}
.ls7{letter-spacing:20.700000px;}
.ls19{letter-spacing:41.706720px;}
.ls1f{letter-spacing:46.026720px;}
.ls18{letter-spacing:46.890720px;}
.ls17{letter-spacing:50.490720px;}
.lse{letter-spacing:73.697760px;}
.lsc{letter-spacing:80.870160px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.479800px;}
.ws12{word-spacing:-13.214400px;}
.ws11{word-spacing:-13.160160px;}
.ws8{word-spacing:-13.147200px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.187200px;}
.ws10{word-spacing:-1.265760px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:1.439280px;}
.wse{word-spacing:1.992960px;}
.wsd{word-spacing:4.399680px;}
.ws9{word-spacing:6.152400px;}
.wsb{word-spacing:6.332400px;}
._21{margin-left:-12.033360px;}
._13{margin-left:-3.840000px;}
._12{margin-left:-2.766960px;}
._0{margin-left:-1.080000px;}
._11{width:1.211280px;}
._1{width:2.220000px;}
._14{width:3.390240px;}
._16{width:4.423680px;}
._15{width:5.617440px;}
._1a{width:6.940800px;}
._17{width:7.948080px;}
._18{width:9.595440px;}
._6{width:10.800000px;}
._19{width:12.608160px;}
._1b{width:13.830480px;}
._1e{width:16.267680px;}
._f{width:18.948000px;}
._25{width:20.437920px;}
._26{width:22.279440px;}
._1c{width:29.519280px;}
._1f{width:31.942080px;}
._20{width:33.179760px;}
._24{width:75.118320px;}
._7{width:76.284960px;}
._1d{width:86.301840px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._22{width:186.264000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._23{width:201.036000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:2.880000px;}
.y6c{bottom:3.060000px;}
.ye{bottom:5.760000px;}
.y69{bottom:5.940000px;}
.y6a{bottom:6.120000px;}
.y6d{bottom:6.300000px;}
.y83{bottom:7.020000px;}
.y85{bottom:7.740000px;}
.y86{bottom:7.920000px;}
.y89{bottom:8.100000px;}
.y6{bottom:12.420000px;}
.yde{bottom:14.040000px;}
.y8{bottom:18.180000px;}
.ydc{bottom:25.560000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y67{bottom:103.860000px;}
.y106{bottom:105.840000px;}
.yc3{bottom:106.380000px;}
.y3b{bottom:110.520000px;}
.ycd{bottom:114.480000px;}
.y123{bottom:114.660000px;}
.yaf{bottom:118.260000px;}
.y105{bottom:122.580000px;}
.y66{bottom:123.660000px;}
.y2{bottom:125.670000px;}
.yc2{bottom:126.360000px;}
.y3a{bottom:130.320000px;}
.yed{bottom:130.860000px;}
.y122{bottom:133.380000px;}
.ycc{bottom:134.460000px;}
.yae{bottom:138.060000px;}
.y9c{bottom:143.460000px;}
.y65{bottom:143.640000px;}
.yc1{bottom:146.160000px;}
.y39{bottom:150.120000px;}
.y121{bottom:151.950000px;}
.ycb{bottom:154.290000px;}
.yad{bottom:157.890000px;}
.y120{bottom:162.210000px;}
.y9b{bottom:163.290000px;}
.y64{bottom:163.470000px;}
.yc0{bottom:165.990000px;}
.y38{bottom:169.950000px;}
.yca{bottom:174.090000px;}
.yac{bottom:177.870000px;}
.y63{bottom:180.750000px;}
.y11f{bottom:182.190000px;}
.y9a{bottom:183.090000px;}
.ybf{bottom:185.790000px;}
.y37{bottom:189.750000px;}
.yc9{bottom:193.890000px;}
.yab{bottom:197.670000px;}
.y62{bottom:200.550000px;}
.y11e{bottom:201.990000px;}
.y99{bottom:203.070000px;}
.ybe{bottom:205.590000px;}
.y36{bottom:209.730000px;}
.yc8{bottom:213.690000px;}
.yaa{bottom:214.230000px;}
.y61{bottom:217.110000px;}
.y11d{bottom:221.790000px;}
.y98{bottom:222.870000px;}
.ybd{bottom:225.570000px;}
.y35{bottom:229.530000px;}
.yc7{bottom:233.670000px;}
.y11c{bottom:241.590000px;}
.ybc{bottom:241.950000px;}
.y97{bottom:242.670000px;}
.y34{bottom:249.330000px;}
.yc6{bottom:253.470000px;}
.y11b{bottom:261.390000px;}
.y96{bottom:262.470000px;}
.y33{bottom:269.130000px;}
.yc5{bottom:273.270000px;}
.y11a{bottom:281.370000px;}
.y95{bottom:282.450000px;}
.y32{bottom:288.930000px;}
.yc4{bottom:293.070000px;}
.y119{bottom:301.170000px;}
.y94{bottom:302.790000px;}
.y31{bottom:308.910000px;}
.y60{bottom:312.870000px;}
.y118{bottom:320.970000px;}
.y93{bottom:322.950000px;}
.y30{bottom:328.710000px;}
.y5f{bottom:332.850000px;}
.y104{bottom:339.150000px;}
.y117{bottom:340.770000px;}
.y92{bottom:343.290000px;}
.y2f{bottom:348.510000px;}
.y5e{bottom:352.650000px;}
.y103{bottom:358.950000px;}
.y116{bottom:360.570000px;}
.y91{bottom:363.270000px;}
.y2e{bottom:368.310000px;}
.y5d{bottom:372.450000px;}
.yec{bottom:377.310000px;}
.y102{bottom:378.750000px;}
.y90{bottom:379.830000px;}
.y115{bottom:380.550000px;}
.y2d{bottom:388.110000px;}
.y8f{bottom:389.910000px;}
.y5c{bottom:392.250000px;}
.yeb{bottom:397.290000px;}
.y114{bottom:400.350000px;}
.y101{bottom:407.595000px;}
.y2c{bottom:408.135000px;}
.y5b{bottom:412.095000px;}
.yea{bottom:417.135000px;}
.y8e{bottom:419.475000px;}
.y113{bottom:420.195000px;}
.y100{bottom:427.575000px;}
.y2b{bottom:427.935000px;}
.y5a{bottom:432.075000px;}
.ye9{bottom:436.935000px;}
.y8d{bottom:439.455000px;}
.y112{bottom:439.995000px;}
.ya9{bottom:442.875000px;}
.ybb{bottom:446.655000px;}
.yff{bottom:447.375000px;}
.y2a{bottom:447.735000px;}
.y59{bottom:451.875000px;}
.ye8{bottom:456.735000px;}
.y8c{bottom:459.255000px;}
.y111{bottom:459.795000px;}
.yfe{bottom:462.135000px;}
.ya8{bottom:462.675000px;}
.yba{bottom:466.455000px;}
.y29{bottom:467.535000px;}
.ye7{bottom:471.495000px;}
.y58{bottom:471.675000px;}
.y8b{bottom:479.055000px;}
.y110{bottom:479.775000px;}
.yfd{bottom:481.935000px;}
.ya7{bottom:482.475000px;}
.yb9{bottom:486.435000px;}
.y28{bottom:487.335000px;}
.y57{bottom:491.475000px;}
.y8a{bottom:493.815000px;}
.y10f{bottom:499.575000px;}
.yfc{bottom:501.735000px;}
.ya6{bottom:502.275000px;}
.yb8{bottom:506.235000px;}
.y27{bottom:507.315000px;}
.y56{bottom:511.275000px;}
.ye6{bottom:511.995000px;}
.y88{bottom:513.615000px;}
.y10e{bottom:519.375000px;}
.yfb{bottom:521.715000px;}
.ya5{bottom:522.255000px;}
.yb7{bottom:526.035000px;}
.y26{bottom:527.115000px;}
.y55{bottom:531.255000px;}
.y87{bottom:535.755000px;}
.y10d{bottom:539.175000px;}
.ya4{bottom:542.055000px;}
.yfa{bottom:542.235000px;}
.yb6{bottom:542.595000px;}
.y25{bottom:546.915000px;}
.y54{bottom:551.055000px;}
.y84{bottom:557.715000px;}
.ye5{bottom:558.255000px;}
.y10c{bottom:558.975000px;}
.ya3{bottom:561.855000px;}
.y24{bottom:566.715000px;}
.yf9{bottom:568.515000px;}
.y53{bottom:570.855000px;}
.ye4{bottom:578.055000px;}
.y10b{bottom:578.955000px;}
.y82{bottom:580.395000px;}
.ya2{bottom:581.655000px;}
.y23{bottom:586.515000px;}
.yf8{bottom:588.495000px;}
.y52{bottom:590.655000px;}
.ye3{bottom:597.855000px;}
.y10a{bottom:598.755000px;}
.ya1{bottom:601.455000px;}
.y22{bottom:606.495000px;}
.y81{bottom:608.115000px;}
.yf7{bottom:608.295000px;}
.y51{bottom:610.455000px;}
.ye2{bottom:617.655000px;}
.y109{bottom:618.555000px;}
.ya0{bottom:621.435000px;}
.y21{bottom:626.295000px;}
.y80{bottom:627.915000px;}
.yf6{bottom:628.095000px;}
.y50{bottom:630.435000px;}
.ye1{bottom:637.635000px;}
.y108{bottom:638.355000px;}
.y9f{bottom:641.235000px;}
.y20{bottom:646.095000px;}
.y7f{bottom:647.715000px;}
.yf5{bottom:647.895000px;}
.y4f{bottom:650.265000px;}
.ye0{bottom:652.425000px;}
.y107{bottom:654.945000px;}
.y9e{bottom:661.065000px;}
.y1f{bottom:665.925000px;}
.y7e{bottom:667.545000px;}
.yf4{bottom:667.725000px;}
.y4e{bottom:670.065000px;}
.ydf{bottom:672.225000px;}
.y9d{bottom:680.865000px;}
.y1e{bottom:685.725000px;}
.y7d{bottom:687.525000px;}
.yf3{bottom:687.705000px;}
.y4d{bottom:689.865000px;}
.ydd{bottom:692.025000px;}
.yf2{bottom:702.465000px;}
.y1d{bottom:705.705000px;}
.y7c{bottom:707.505000px;}
.y4c{bottom:709.665000px;}
.ydb{bottom:720.825000px;}
.y1c{bottom:725.505000px;}
.y7b{bottom:727.485000px;}
.y4b{bottom:729.645000px;}
.yb5{bottom:732.165000px;}
.yf1{bottom:742.065000px;}
.y1b{bottom:745.305000px;}
.y7a{bottom:747.285000px;}
.y4a{bottom:749.445000px;}
.yb4{bottom:752.145000px;}
.yf0{bottom:761.865000px;}
.y79{bottom:764.025000px;}
.y1a{bottom:765.105000px;}
.yda{bottom:766.905000px;}
.y49{bottom:769.245000px;}
.yb3{bottom:771.945000px;}
.y76{bottom:774.105000px;}
.yef{bottom:781.845000px;}
.y78{bottom:782.025000px;}
.y19{bottom:784.905000px;}
.yd9{bottom:786.885000px;}
.y48{bottom:789.045000px;}
.y77{bottom:791.565000px;}
.yb2{bottom:791.745000px;}
.yee{bottom:802.365000px;}
.y75{bottom:804.705000px;}
.y18{bottom:804.885000px;}
.yd8{bottom:806.685000px;}
.y47{bottom:808.845000px;}
.yb1{bottom:811.545000px;}
.y74{bottom:824.505000px;}
.y17{bottom:824.685000px;}
.yd7{bottom:826.485000px;}
.yb0{bottom:828.285000px;}
.y46{bottom:828.825000px;}
.y16{bottom:844.485000px;}
.yd6{bottom:846.285000px;}
.y45{bottom:848.625000px;}
.y15{bottom:864.285000px;}
.yd5{bottom:866.085000px;}
.y44{bottom:868.425000px;}
.yd4{bottom:881.025000px;}
.y73{bottom:884.085000px;}
.y43{bottom:888.225000px;}
.y14{bottom:889.305000px;}
.yd3{bottom:900.870000px;}
.y72{bottom:903.930000px;}
.y42{bottom:908.070000px;}
.y13{bottom:909.330000px;}
.y71{bottom:918.690000px;}
.yd2{bottom:920.670000px;}
.y12{bottom:924.450000px;}
.y41{bottom:928.050000px;}
.y70{bottom:939.030000px;}
.yd1{bottom:940.470000px;}
.y11{bottom:945.690000px;}
.y40{bottom:947.850000px;}
.y6e{bottom:959.190000px;}
.yd0{bottom:960.270000px;}
.y3f{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.y6b{bottom:979.350000px;}
.ycf{bottom:980.250000px;}
.y3e{bottom:987.450000px;}
.y68{bottom:1000.410000px;}
.yce{bottom:1000.770000px;}
.yf{bottom:1000.950000px;}
.y3d{bottom:1007.250000px;}
.y3c{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h1c{height:19.800000px;}
.h21{height:19.836000px;}
.h20{height:19.980000px;}
.h10{height:20.160000px;}
.h12{height:20.340000px;}
.h19{height:21.060000px;}
.ha{height:21.240000px;}
.h1a{height:21.960000px;}
.h1b{height:22.140000px;}
.he{height:27.147656px;}
.h23{height:28.080000px;}
.h7{height:33.480000px;}
.h16{height:35.194219px;}
.h22{height:39.600000px;}
.hd{height:41.726953px;}
.hf{height:42.164648px;}
.h1f{height:43.506914px;}
.h18{height:45.549492px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h24{height:48.496641px;}
.h11{height:50.364141px;}
.h9{height:53.224453px;}
.h14{height:53.966953px;}
.h13{height:62.604141px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h17{height:82.046953px;}
.h1e{height:90.684141px;}
.h1d{height:96.624141px;}
.h15{height:98.604141px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w14{width:69.336000px;}
.w13{width:79.380000px;}
.we{width:80.100000px;}
.w11{width:87.156000px;}
.wb{width:94.716000px;}
.w17{width:96.516000px;}
.w6{width:103.140000px;}
.w18{width:106.380000px;}
.w15{width:116.820000px;}
.wd{width:121.896000px;}
.w16{width:124.236000px;}
.w10{width:133.740000px;}
.w3{width:137.556000px;}
.wc{width:146.340000px;}
.w8{width:149.256000px;}
.w7{width:183.990000px;}
.w19{width:201.990000px;}
.wf{width:252.795000px;}
.wa{width:285.915000px;}
.w12{width:295.275000px;}
.w9{width:308.235000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x33{left:-31.140000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x14{left:13.860000px;}
.x13{left:37.080000px;}
.x1{left:53.100000px;}
.x1d{left:59.039987px;}
.x6{left:63.719987px;}
.xf{left:75.599987px;}
.x1f{left:86.075987px;}
.x20{left:90.935987px;}
.xc{left:96.515987px;}
.x3f{left:102.275987px;}
.x1e{left:108.035987px;}
.x4{left:118.470000px;}
.x9{left:139.535987px;}
.x36{left:173.909987px;}
.xa{left:202.889987px;}
.xb{left:210.269987px;}
.x18{left:216.029987px;}
.x19{left:217.830000px;}
.x31{left:220.350000px;}
.x29{left:256.350000px;}
.x2b{left:270.074987px;}
.x2c{left:272.415000px;}
.x7{left:283.394987px;}
.x3a{left:292.395000px;}
.x37{left:296.175000px;}
.x24{left:302.654987px;}
.x26{left:315.434987px;}
.x22{left:319.934987px;}
.x10{left:324.074987px;}
.x28{left:328.934987px;}
.x11{left:334.515000px;}
.x1a{left:367.095000px;}
.x3d{left:378.254987px;}
.xe{left:394.274987px;}
.x3b{left:398.775000px;}
.x15{left:406.154987px;}
.x38{left:412.995000px;}
.x2d{left:418.755000px;}
.x12{left:437.655000px;}
.x1b{left:441.074987px;}
.x8{left:446.504987px;}
.x16{left:452.624987px;}
.x17{left:460.004987px;}
.x2f{left:462.525000px;}
.x1c{left:469.904987px;}
.x32{left:515.625000px;}
.x39{left:537.225000px;}
.x2e{left:540.645000px;}
.x2a{left:542.265000px;}
.x34{left:595.005000px;}
.x30{left:596.265000px;}
.xd{left:601.664987px;}
.x25{left:637.889987px;}
.x35{left:640.049987px;}
.x3e{left:645.269987px;}
.x27{left:653.009987px;}
.x23{left:668.129987px;}
.x3c{left:681.089987px;}
.x21{left:700.169987px;}
.x3{left:702.510000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:30.080000pt;}
.v8{vertical-align:35.840000pt;}
.v6{vertical-align:40.960000pt;}
.v5{vertical-align:42.880000pt;}
.ls1d{letter-spacing:-0.688000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.292267pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.059733pt;}
.ls5{letter-spacing:0.085120pt;}
.ls1a{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.120533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.295040pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.473600pt;}
.ls10{letter-spacing:0.533120pt;}
.ls23{letter-spacing:0.800000pt;}
.ls6{letter-spacing:2.548480pt;}
.lsf{letter-spacing:3.610880pt;}
.ls8{letter-spacing:3.680000pt;}
.ls11{letter-spacing:12.159360pt;}
.ls20{letter-spacing:14.672640pt;}
.lsb{letter-spacing:15.359360pt;}
.ls1c{letter-spacing:15.952640pt;}
.ls7{letter-spacing:18.400000pt;}
.ls19{letter-spacing:37.072640pt;}
.ls1f{letter-spacing:40.912640pt;}
.ls18{letter-spacing:41.680640pt;}
.ls17{letter-spacing:44.880640pt;}
.lse{letter-spacing:65.509120pt;}
.lsc{letter-spacing:71.884587pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.870933pt;}
.ws12{word-spacing:-11.746133pt;}
.ws11{word-spacing:-11.697920pt;}
.ws8{word-spacing:-11.686400pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.166400pt;}
.ws10{word-spacing:-1.125120pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:1.279360pt;}
.wse{word-spacing:1.771520pt;}
.wsd{word-spacing:3.910827pt;}
.ws9{word-spacing:5.468800pt;}
.wsb{word-spacing:5.628800pt;}
._21{margin-left:-10.696320pt;}
._13{margin-left:-3.413333pt;}
._12{margin-left:-2.459520pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.076693pt;}
._1{width:1.973333pt;}
._14{width:3.013547pt;}
._16{width:3.932160pt;}
._15{width:4.993280pt;}
._1a{width:6.169600pt;}
._17{width:7.064960pt;}
._18{width:8.529280pt;}
._6{width:9.600000pt;}
._19{width:11.207253pt;}
._1b{width:12.293760pt;}
._1e{width:14.460160pt;}
._f{width:16.842667pt;}
._25{width:18.167040pt;}
._26{width:19.803947pt;}
._1c{width:26.239360pt;}
._1f{width:28.392960pt;}
._20{width:29.493120pt;}
._24{width:66.771840pt;}
._7{width:67.808853pt;}
._1d{width:76.712747pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._22{width:165.568000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._23{width:178.698667pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:2.560000pt;}
.y6c{bottom:2.720000pt;}
.ye{bottom:5.120000pt;}
.y69{bottom:5.280000pt;}
.y6a{bottom:5.440000pt;}
.y6d{bottom:5.600000pt;}
.y83{bottom:6.240000pt;}
.y85{bottom:6.880000pt;}
.y86{bottom:7.040000pt;}
.y89{bottom:7.200000pt;}
.y6{bottom:11.040000pt;}
.yde{bottom:12.480000pt;}
.y8{bottom:16.160000pt;}
.ydc{bottom:22.720000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y67{bottom:92.320000pt;}
.y106{bottom:94.080000pt;}
.yc3{bottom:94.560000pt;}
.y3b{bottom:98.240000pt;}
.ycd{bottom:101.760000pt;}
.y123{bottom:101.920000pt;}
.yaf{bottom:105.120000pt;}
.y105{bottom:108.960000pt;}
.y66{bottom:109.920000pt;}
.y2{bottom:111.706667pt;}
.yc2{bottom:112.320000pt;}
.y3a{bottom:115.840000pt;}
.yed{bottom:116.320000pt;}
.y122{bottom:118.560000pt;}
.ycc{bottom:119.520000pt;}
.yae{bottom:122.720000pt;}
.y9c{bottom:127.520000pt;}
.y65{bottom:127.680000pt;}
.yc1{bottom:129.920000pt;}
.y39{bottom:133.440000pt;}
.y121{bottom:135.066667pt;}
.ycb{bottom:137.146667pt;}
.yad{bottom:140.346667pt;}
.y120{bottom:144.186667pt;}
.y9b{bottom:145.146667pt;}
.y64{bottom:145.306667pt;}
.yc0{bottom:147.546667pt;}
.y38{bottom:151.066667pt;}
.yca{bottom:154.746667pt;}
.yac{bottom:158.106667pt;}
.y63{bottom:160.666667pt;}
.y11f{bottom:161.946667pt;}
.y9a{bottom:162.746667pt;}
.ybf{bottom:165.146667pt;}
.y37{bottom:168.666667pt;}
.yc9{bottom:172.346667pt;}
.yab{bottom:175.706667pt;}
.y62{bottom:178.266667pt;}
.y11e{bottom:179.546667pt;}
.y99{bottom:180.506667pt;}
.ybe{bottom:182.746667pt;}
.y36{bottom:186.426667pt;}
.yc8{bottom:189.946667pt;}
.yaa{bottom:190.426667pt;}
.y61{bottom:192.986667pt;}
.y11d{bottom:197.146667pt;}
.y98{bottom:198.106667pt;}
.ybd{bottom:200.506667pt;}
.y35{bottom:204.026667pt;}
.yc7{bottom:207.706667pt;}
.y11c{bottom:214.746667pt;}
.ybc{bottom:215.066667pt;}
.y97{bottom:215.706667pt;}
.y34{bottom:221.626667pt;}
.yc6{bottom:225.306667pt;}
.y11b{bottom:232.346667pt;}
.y96{bottom:233.306667pt;}
.y33{bottom:239.226667pt;}
.yc5{bottom:242.906667pt;}
.y11a{bottom:250.106667pt;}
.y95{bottom:251.066667pt;}
.y32{bottom:256.826667pt;}
.yc4{bottom:260.506667pt;}
.y119{bottom:267.706667pt;}
.y94{bottom:269.146667pt;}
.y31{bottom:274.586667pt;}
.y60{bottom:278.106667pt;}
.y118{bottom:285.306667pt;}
.y93{bottom:287.066667pt;}
.y30{bottom:292.186667pt;}
.y5f{bottom:295.866667pt;}
.y104{bottom:301.466667pt;}
.y117{bottom:302.906667pt;}
.y92{bottom:305.146667pt;}
.y2f{bottom:309.786667pt;}
.y5e{bottom:313.466667pt;}
.y103{bottom:319.066667pt;}
.y116{bottom:320.506667pt;}
.y91{bottom:322.906667pt;}
.y2e{bottom:327.386667pt;}
.y5d{bottom:331.066667pt;}
.yec{bottom:335.386667pt;}
.y102{bottom:336.666667pt;}
.y90{bottom:337.626667pt;}
.y115{bottom:338.266667pt;}
.y2d{bottom:344.986667pt;}
.y8f{bottom:346.586667pt;}
.y5c{bottom:348.666667pt;}
.yeb{bottom:353.146667pt;}
.y114{bottom:355.866667pt;}
.y101{bottom:362.306667pt;}
.y2c{bottom:362.786667pt;}
.y5b{bottom:366.306667pt;}
.yea{bottom:370.786667pt;}
.y8e{bottom:372.866667pt;}
.y113{bottom:373.506667pt;}
.y100{bottom:380.066667pt;}
.y2b{bottom:380.386667pt;}
.y5a{bottom:384.066667pt;}
.ye9{bottom:388.386667pt;}
.y8d{bottom:390.626667pt;}
.y112{bottom:391.106667pt;}
.ya9{bottom:393.666667pt;}
.ybb{bottom:397.026667pt;}
.yff{bottom:397.666667pt;}
.y2a{bottom:397.986667pt;}
.y59{bottom:401.666667pt;}
.ye8{bottom:405.986667pt;}
.y8c{bottom:408.226667pt;}
.y111{bottom:408.706667pt;}
.yfe{bottom:410.786667pt;}
.ya8{bottom:411.266667pt;}
.yba{bottom:414.626667pt;}
.y29{bottom:415.586667pt;}
.ye7{bottom:419.106667pt;}
.y58{bottom:419.266667pt;}
.y8b{bottom:425.826667pt;}
.y110{bottom:426.466667pt;}
.yfd{bottom:428.386667pt;}
.ya7{bottom:428.866667pt;}
.yb9{bottom:432.386667pt;}
.y28{bottom:433.186667pt;}
.y57{bottom:436.866667pt;}
.y8a{bottom:438.946667pt;}
.y10f{bottom:444.066667pt;}
.yfc{bottom:445.986667pt;}
.ya6{bottom:446.466667pt;}
.yb8{bottom:449.986667pt;}
.y27{bottom:450.946667pt;}
.y56{bottom:454.466667pt;}
.ye6{bottom:455.106667pt;}
.y88{bottom:456.546667pt;}
.y10e{bottom:461.666667pt;}
.yfb{bottom:463.746667pt;}
.ya5{bottom:464.226667pt;}
.yb7{bottom:467.586667pt;}
.y26{bottom:468.546667pt;}
.y55{bottom:472.226667pt;}
.y87{bottom:476.226667pt;}
.y10d{bottom:479.266667pt;}
.ya4{bottom:481.826667pt;}
.yfa{bottom:481.986667pt;}
.yb6{bottom:482.306667pt;}
.y25{bottom:486.146667pt;}
.y54{bottom:489.826667pt;}
.y84{bottom:495.746667pt;}
.ye5{bottom:496.226667pt;}
.y10c{bottom:496.866667pt;}
.ya3{bottom:499.426667pt;}
.y24{bottom:503.746667pt;}
.yf9{bottom:505.346667pt;}
.y53{bottom:507.426667pt;}
.ye4{bottom:513.826667pt;}
.y10b{bottom:514.626667pt;}
.y82{bottom:515.906667pt;}
.ya2{bottom:517.026667pt;}
.y23{bottom:521.346667pt;}
.yf8{bottom:523.106667pt;}
.y52{bottom:525.026667pt;}
.ye3{bottom:531.426667pt;}
.y10a{bottom:532.226667pt;}
.ya1{bottom:534.626667pt;}
.y22{bottom:539.106667pt;}
.y81{bottom:540.546667pt;}
.yf7{bottom:540.706667pt;}
.y51{bottom:542.626667pt;}
.ye2{bottom:549.026667pt;}
.y109{bottom:549.826667pt;}
.ya0{bottom:552.386667pt;}
.y21{bottom:556.706667pt;}
.y80{bottom:558.146667pt;}
.yf6{bottom:558.306667pt;}
.y50{bottom:560.386667pt;}
.ye1{bottom:566.786667pt;}
.y108{bottom:567.426667pt;}
.y9f{bottom:569.986667pt;}
.y20{bottom:574.306667pt;}
.y7f{bottom:575.746667pt;}
.yf5{bottom:575.906667pt;}
.y4f{bottom:578.013333pt;}
.ye0{bottom:579.933333pt;}
.y107{bottom:582.173333pt;}
.y9e{bottom:587.613333pt;}
.y1f{bottom:591.933333pt;}
.y7e{bottom:593.373333pt;}
.yf4{bottom:593.533333pt;}
.y4e{bottom:595.613333pt;}
.ydf{bottom:597.533333pt;}
.y9d{bottom:605.213333pt;}
.y1e{bottom:609.533333pt;}
.y7d{bottom:611.133333pt;}
.yf3{bottom:611.293333pt;}
.y4d{bottom:613.213333pt;}
.ydd{bottom:615.133333pt;}
.yf2{bottom:624.413333pt;}
.y1d{bottom:627.293333pt;}
.y7c{bottom:628.893333pt;}
.y4c{bottom:630.813333pt;}
.ydb{bottom:640.733333pt;}
.y1c{bottom:644.893333pt;}
.y7b{bottom:646.653333pt;}
.y4b{bottom:648.573333pt;}
.yb5{bottom:650.813333pt;}
.yf1{bottom:659.613333pt;}
.y1b{bottom:662.493333pt;}
.y7a{bottom:664.253333pt;}
.y4a{bottom:666.173333pt;}
.yb4{bottom:668.573333pt;}
.yf0{bottom:677.213333pt;}
.y79{bottom:679.133333pt;}
.y1a{bottom:680.093333pt;}
.yda{bottom:681.693333pt;}
.y49{bottom:683.773333pt;}
.yb3{bottom:686.173333pt;}
.y76{bottom:688.093333pt;}
.yef{bottom:694.973333pt;}
.y78{bottom:695.133333pt;}
.y19{bottom:697.693333pt;}
.yd9{bottom:699.453333pt;}
.y48{bottom:701.373333pt;}
.y77{bottom:703.613333pt;}
.yb2{bottom:703.773333pt;}
.yee{bottom:713.213333pt;}
.y75{bottom:715.293333pt;}
.y18{bottom:715.453333pt;}
.yd8{bottom:717.053333pt;}
.y47{bottom:718.973333pt;}
.yb1{bottom:721.373333pt;}
.y74{bottom:732.893333pt;}
.y17{bottom:733.053333pt;}
.yd7{bottom:734.653333pt;}
.yb0{bottom:736.253333pt;}
.y46{bottom:736.733333pt;}
.y16{bottom:750.653333pt;}
.yd6{bottom:752.253333pt;}
.y45{bottom:754.333333pt;}
.y15{bottom:768.253333pt;}
.yd5{bottom:769.853333pt;}
.y44{bottom:771.933333pt;}
.yd4{bottom:783.133333pt;}
.y73{bottom:785.853333pt;}
.y43{bottom:789.533333pt;}
.y14{bottom:790.493333pt;}
.yd3{bottom:800.773333pt;}
.y72{bottom:803.493333pt;}
.y42{bottom:807.173333pt;}
.y13{bottom:808.293333pt;}
.y71{bottom:816.613333pt;}
.yd2{bottom:818.373333pt;}
.y12{bottom:821.733333pt;}
.y41{bottom:824.933333pt;}
.y70{bottom:834.693333pt;}
.yd1{bottom:835.973333pt;}
.y11{bottom:840.613333pt;}
.y40{bottom:842.533333pt;}
.y6e{bottom:852.613333pt;}
.yd0{bottom:853.573333pt;}
.y3f{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.y6b{bottom:870.533333pt;}
.ycf{bottom:871.333333pt;}
.y3e{bottom:877.733333pt;}
.y68{bottom:889.253333pt;}
.yce{bottom:889.573333pt;}
.yf{bottom:889.733333pt;}
.y3d{bottom:895.333333pt;}
.y3c{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h1c{height:17.600000pt;}
.h21{height:17.632000pt;}
.h20{height:17.760000pt;}
.h10{height:17.920000pt;}
.h12{height:18.080000pt;}
.h19{height:18.720000pt;}
.ha{height:18.880000pt;}
.h1a{height:19.520000pt;}
.h1b{height:19.680000pt;}
.he{height:24.131250pt;}
.h23{height:24.960000pt;}
.h7{height:29.760000pt;}
.h16{height:31.283750pt;}
.h22{height:35.200000pt;}
.hd{height:37.090625pt;}
.hf{height:37.479688pt;}
.h1f{height:38.672812pt;}
.h18{height:40.488438pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h24{height:43.108125pt;}
.h11{height:44.768125pt;}
.h9{height:47.310625pt;}
.h14{height:47.970625pt;}
.h13{height:55.648125pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h17{height:72.930625pt;}
.h1e{height:80.608125pt;}
.h1d{height:85.888125pt;}
.h15{height:87.648125pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w14{width:61.632000pt;}
.w13{width:70.560000pt;}
.we{width:71.200000pt;}
.w11{width:77.472000pt;}
.wb{width:84.192000pt;}
.w17{width:85.792000pt;}
.w6{width:91.680000pt;}
.w18{width:94.560000pt;}
.w15{width:103.840000pt;}
.wd{width:108.352000pt;}
.w16{width:110.432000pt;}
.w10{width:118.880000pt;}
.w3{width:122.272000pt;}
.wc{width:130.080000pt;}
.w8{width:132.672000pt;}
.w7{width:163.546667pt;}
.w19{width:179.546667pt;}
.wf{width:224.706667pt;}
.wa{width:254.146667pt;}
.w12{width:262.466667pt;}
.w9{width:273.986667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x33{left:-27.680000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x14{left:12.320000pt;}
.x13{left:32.960000pt;}
.x1{left:47.200000pt;}
.x1d{left:52.479988pt;}
.x6{left:56.639988pt;}
.xf{left:67.199988pt;}
.x1f{left:76.511988pt;}
.x20{left:80.831988pt;}
.xc{left:85.791988pt;}
.x3f{left:90.911988pt;}
.x1e{left:96.031988pt;}
.x4{left:105.306667pt;}
.x9{left:124.031988pt;}
.x36{left:154.586655pt;}
.xa{left:180.346655pt;}
.xb{left:186.906655pt;}
.x18{left:192.026655pt;}
.x19{left:193.626667pt;}
.x31{left:195.866667pt;}
.x29{left:227.866667pt;}
.x2b{left:240.066655pt;}
.x2c{left:242.146667pt;}
.x7{left:251.906655pt;}
.x3a{left:259.906667pt;}
.x37{left:263.266667pt;}
.x24{left:269.026655pt;}
.x26{left:280.386655pt;}
.x22{left:284.386655pt;}
.x10{left:288.066655pt;}
.x28{left:292.386655pt;}
.x11{left:297.346667pt;}
.x1a{left:326.306667pt;}
.x3d{left:336.226655pt;}
.xe{left:350.466655pt;}
.x3b{left:354.466667pt;}
.x15{left:361.026655pt;}
.x38{left:367.106667pt;}
.x2d{left:372.226667pt;}
.x12{left:389.026667pt;}
.x1b{left:392.066655pt;}
.x8{left:396.893322pt;}
.x16{left:402.333322pt;}
.x17{left:408.893322pt;}
.x2f{left:411.133333pt;}
.x1c{left:417.693322pt;}
.x32{left:458.333333pt;}
.x39{left:477.533333pt;}
.x2e{left:480.573333pt;}
.x2a{left:482.013333pt;}
.x34{left:528.893333pt;}
.x30{left:530.013333pt;}
.xd{left:534.813322pt;}
.x25{left:567.013322pt;}
.x35{left:568.933322pt;}
.x3e{left:573.573322pt;}
.x27{left:580.453322pt;}
.x23{left:593.893322pt;}
.x3c{left:605.413322pt;}
.x21{left:622.373322pt;}
.x3{left:624.453333pt;}
.x5{left:737.280000pt;}
}




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