
    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_330888f512fddcd7dbab032b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_bde98c00a0824e852c6c9a25.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_dbe2282e30b1b7d9ecb6f7cc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.896484;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_a989defa9992adf0ed307e3a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_9da07a4f06a6a4987b64666f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_01e2d5d6b81005e95201c689.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6370f26c1aa228288b5dec11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_48e8d9836f5b9f0f7c545f6f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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;}
.ls12{letter-spacing:-3.390000px;}
.ls4{letter-spacing:-2.880000px;}
.ls3{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-2.106000px;}
.ls28{letter-spacing:-1.944000px;}
.ls29{letter-spacing:-1.920000px;}
.ls27{letter-spacing:-1.824000px;}
.ls6{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.386000px;}
.ls2b{letter-spacing:-1.272000px;}
.ls2{letter-spacing:-1.176000px;}
.ls2a{letter-spacing:-1.104000px;}
.ls13{letter-spacing:-0.978000px;}
.lsb{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.513600px;}
.ls26{letter-spacing:-0.501000px;}
.ls20{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.270600px;}
.ls1f{letter-spacing:-0.158400px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls21{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.166800px;}
.ls7{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.219000px;}
.ls19{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.334200px;}
.ls9{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.501000px;}
.ls10{letter-spacing:0.900000px;}
.ls5{letter-spacing:10.980000px;}
.ls8{letter-spacing:11.700000px;}
.ls1e{letter-spacing:13.860000px;}
.ls1a{letter-spacing:17.460000px;}
.ls1b{letter-spacing:17.580000px;}
.lsf{letter-spacing:34.560000px;}
.ls11{letter-spacing:41.220000px;}
.ls25{letter-spacing:846.156000px;}
.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:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.401600px;}
.ws5{word-spacing:-16.289400px;}
.ws10{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.174200px;}
.ws15{word-spacing:-16.059000px;}
.ws14{word-spacing:-16.006800px;}
.ws1{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.384000px;}
.ws16{word-spacing:-15.339000px;}
.ws8{word-spacing:-15.300000px;}
.ws11{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.736000px;}
.wsb{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.568000px;}
.wsf{word-spacing:-14.426400px;}
.ws7{word-spacing:-14.328000px;}
.wse{word-spacing:-14.274000px;}
.ws18{word-spacing:-14.016000px;}
.wsa{word-spacing:-13.962000px;}
.ws1a{word-spacing:-13.920000px;}
.ws19{word-spacing:-13.896000px;}
.ws17{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.554000px;}
.ws9{word-spacing:-13.170000px;}
.wsd{word-spacing:-12.834000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-7.793760px;}
._1b{margin-left:-5.762880px;}
._1d{margin-left:-4.581600px;}
._16{margin-left:-3.510720px;}
._15{margin-left:-2.197440px;}
._0{margin-left:-1.055520px;}
._4{width:1.267200px;}
._5{width:2.448000px;}
._1{width:3.991680px;}
._2{width:5.195520px;}
._3{width:6.237600px;}
._6{width:7.518240px;}
._9{width:8.618400px;}
._c{width:10.094400px;}
._b{width:11.151360px;}
._10{width:12.420000px;}
._7{width:13.474080px;}
._d{width:14.739840px;}
._a{width:17.148960px;}
._23{width:18.344640px;}
._11{width:19.388160px;}
._20{width:20.866080px;}
._1c{width:21.928320px;}
._f{width:23.401440px;}
._e{width:24.435360px;}
._12{width:25.850880px;}
._14{width:27.370080px;}
._13{width:28.385280px;}
._1a{width:29.511360px;}
._8{width:30.729600px;}
._19{width:32.469120px;}
._18{width:33.641280px;}
._26{width:35.102880px;}
._25{width:36.704160px;}
._2d{width:37.894080px;}
._33{width:39.078480px;}
._22{width:40.419360px;}
._21{width:41.652000px;}
._37{width:42.790080px;}
._24{width:44.922240px;}
._1e{width:46.048320px;}
._1f{width:47.942400px;}
._29{width:49.691040px;}
._27{width:50.934240px;}
._28{width:52.536000px;}
._2e{width:53.891040px;}
._38{width:55.133760px;}
._2f{width:56.977920px;}
._39{width:58.247040px;}
._35{width:72.797760px;}
._36{width:73.798560px;}
._31{width:80.153280px;}
._32{width:81.233280px;}
._34{width:83.263680px;}
._2a{width:84.728160px;}
._2b{width:85.767840px;}
._2c{width:86.831520px;}
._30{width:92.499840px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.720000px;}
.y6f{bottom:88.560000px;}
.yeb{bottom:95.400000px;}
.y24{bottom:104.580000px;}
.y13c{bottom:104.940000px;}
.y6e{bottom:105.480000px;}
.yaf{bottom:105.840000px;}
.y48{bottom:106.020000px;}
.y6d{bottom:112.320000px;}
.y104{bottom:112.680000px;}
.y90{bottom:122.400000px;}
.y6c{bottom:122.580000px;}
.y23{bottom:122.760000px;}
.yae{bottom:123.120000px;}
.y103{bottom:123.300000px;}
.y13b{bottom:123.840000px;}
.y47{bottom:126.000000px;}
.yad{bottom:129.996000px;}
.y8f{bottom:139.356000px;}
.ycc{bottom:140.436000px;}
.yac{bottom:140.616000px;}
.y22{bottom:141.156000px;}
.y13a{bottom:142.956000px;}
.y6a{bottom:143.856000px;}
.y46{bottom:146.016000px;}
.y6b{bottom:151.410000px;}
.y102{bottom:153.570000px;}
.y8e{bottom:156.090000px;}
.ycb{bottom:157.530000px;}
.y21{bottom:159.330000px;}
.y139{bottom:162.030000px;}
.y69{bottom:163.470000px;}
.y45{bottom:165.810000px;}
.yea{bottom:167.250000px;}
.y8d{bottom:173.010000px;}
.y101{bottom:173.370000px;}
.yca{bottom:174.810000px;}
.y20{bottom:177.510000px;}
.y138{bottom:180.930000px;}
.y11e{bottom:181.650000px;}
.y68{bottom:183.270000px;}
.yab{bottom:184.170000px;}
.y44{bottom:185.790000px;}
.ye9{bottom:187.050000px;}
.y8c{bottom:189.930000px;}
.yc9{bottom:192.090000px;}
.y11d{bottom:192.450000px;}
.y100{bottom:193.350000px;}
.y1f{bottom:195.870000px;}
.y137{bottom:200.010000px;}
.y67{bottom:203.070000px;}
.yaa{bottom:203.790000px;}
.y43{bottom:205.770000px;}
.y8b{bottom:206.850000px;}
.yc8{bottom:209.370000px;}
.yff{bottom:213.330000px;}
.y1e{bottom:214.050000px;}
.yc7{bottom:216.210000px;}
.y136{bottom:219.090000px;}
.y66{bottom:222.870000px;}
.ya9{bottom:223.590000px;}
.y8a{bottom:223.770000px;}
.y42{bottom:225.750000px;}
.yc6{bottom:226.650000px;}
.y1d{bottom:232.410000px;}
.yfe{bottom:233.130000px;}
.y135{bottom:237.990000px;}
.y11c{bottom:239.250000px;}
.y89{bottom:240.690000px;}
.y65{bottom:242.670000px;}
.ya8{bottom:243.390000px;}
.yc5{bottom:243.930000px;}
.y41{bottom:245.550000px;}
.ye8{bottom:246.270000px;}
.y1c{bottom:250.590000px;}
.yc4{bottom:250.770000px;}
.yfd{bottom:253.110000px;}
.y134{bottom:257.070000px;}
.y88{bottom:257.790000px;}
.y11a{bottom:259.230000px;}
.yc3{bottom:261.390000px;}
.y64{bottom:262.290000px;}
.ya7{bottom:263.190000px;}
.y40{bottom:265.530000px;}
.ye7{bottom:266.070000px;}
.y11b{bottom:266.790000px;}
.y1b{bottom:268.950000px;}
.yfc{bottom:273.090000px;}
.y133{bottom:276.150000px;}
.y119{bottom:279.210000px;}
.y63{bottom:282.090000px;}
.ya6{bottom:282.990000px;}
.y3f{bottom:285.510000px;}
.ye6{bottom:285.870000px;}
.yc2{bottom:286.590000px;}
.y1a{bottom:287.130000px;}
.yfb{bottom:293.070000px;}
.y132{bottom:295.050000px;}
.y118{bottom:299.055000px;}
.y87{bottom:300.135000px;}
.y62{bottom:301.935000px;}
.ya5{bottom:302.655000px;}
.y3e{bottom:305.355000px;}
.y19{bottom:305.535000px;}
.ye5{bottom:305.715000px;}
.yc1{bottom:306.075000px;}
.yfa{bottom:315.615000px;}
.y117{bottom:319.035000px;}
.y86{bottom:320.115000px;}
.y61{bottom:321.735000px;}
.ya4{bottom:322.455000px;}
.y131{bottom:322.815000px;}
.y3d{bottom:325.335000px;}
.ye4{bottom:325.515000px;}
.yc0{bottom:325.695000px;}
.y18{bottom:328.215000px;}
.yf9{bottom:335.595000px;}
.y116{bottom:339.015000px;}
.y85{bottom:340.095000px;}
.y60{bottom:341.535000px;}
.ya3{bottom:342.255000px;}
.ybf{bottom:345.135000px;}
.y3c{bottom:345.315000px;}
.y17{bottom:346.575000px;}
.yf8{bottom:355.395000px;}
.y130{bottom:355.935000px;}
.y115{bottom:358.815000px;}
.y84{bottom:359.895000px;}
.y5f{bottom:361.155000px;}
.ya2{bottom:362.055000px;}
.y16{bottom:364.755000px;}
.ye3{bottom:364.935000px;}
.y3b{bottom:365.115000px;}
.yf7{bottom:375.735000px;}
.y114{bottom:378.795000px;}
.y83{bottom:379.875000px;}
.y5e{bottom:380.955000px;}
.ya1{bottom:381.855000px;}
.y15{bottom:382.935000px;}
.ybe{bottom:384.195000px;}
.ye1{bottom:384.735000px;}
.y3a{bottom:385.095000px;}
.ye2{bottom:392.295000px;}
.yf6{bottom:395.715000px;}
.y113{bottom:398.775000px;}
.y82{bottom:399.855000px;}
.y5d{bottom:400.755000px;}
.y14{bottom:401.295000px;}
.ya0{bottom:401.475000px;}
.ybd{bottom:403.815000px;}
.ye0{bottom:404.535000px;}
.y39{bottom:405.075000px;}
.yf5{bottom:415.515000px;}
.y12f{bottom:415.695000px;}
.y112{bottom:418.575000px;}
.y13{bottom:419.475000px;}
.y81{bottom:419.655000px;}
.y5c{bottom:420.555000px;}
.y9f{bottom:421.275000px;}
.ybc{bottom:423.255000px;}
.ydf{bottom:424.335000px;}
.y38{bottom:424.875000px;}
.yf4{bottom:435.495000px;}
.y12{bottom:437.835000px;}
.y111{bottom:438.555000px;}
.y80{bottom:439.635000px;}
.y5b{bottom:440.355000px;}
.y9e{bottom:441.075000px;}
.ybb{bottom:442.875000px;}
.yde{bottom:443.955000px;}
.y37{bottom:444.855000px;}
.y12e{bottom:455.475000px;}
.y11{bottom:456.195000px;}
.y10f{bottom:458.535000px;}
.y7f{bottom:459.615000px;}
.y5a{bottom:459.975000px;}
.y9d{bottom:460.875000px;}
.yb9{bottom:462.315000px;}
.ydd{bottom:463.755000px;}
.y36{bottom:464.835000px;}
.y110{bottom:466.095000px;}
.yf3{bottom:467.535000px;}
.yba{bottom:469.905000px;}
.y12d{bottom:475.485000px;}
.y10e{bottom:478.365000px;}
.y10{bottom:478.905000px;}
.y7e{bottom:479.265000px;}
.y59{bottom:479.805000px;}
.y9c{bottom:480.705000px;}
.yb8{bottom:481.965000px;}
.ydc{bottom:483.585000px;}
.y35{bottom:484.665000px;}
.y12c{bottom:495.285000px;}
.yf{bottom:497.085000px;}
.y10d{bottom:498.345000px;}
.y7d{bottom:499.065000px;}
.y14b{bottom:499.245000px;}
.y58{bottom:499.605000px;}
.yf2{bottom:499.785000px;}
.y9b{bottom:500.325000px;}
.yb7{bottom:501.405000px;}
.ydb{bottom:503.385000px;}
.y34{bottom:504.645000px;}
.y12b{bottom:515.265000px;}
.ye{bottom:515.445000px;}
.y10b{bottom:518.325000px;}
.y7c{bottom:519.045000px;}
.y57{bottom:519.405000px;}
.yf1{bottom:519.765000px;}
.y99{bottom:520.125000px;}
.yb6{bottom:521.025000px;}
.y14a{bottom:521.205000px;}
.yda{bottom:523.185000px;}
.y33{bottom:524.625000px;}
.y10c{bottom:525.885000px;}
.y9a{bottom:527.685000px;}
.yd{bottom:533.625000px;}
.y12a{bottom:535.245000px;}
.y10a{bottom:538.125000px;}
.y7b{bottom:539.025000px;}
.y56{bottom:539.205000px;}
.yf0{bottom:539.565000px;}
.y98{bottom:539.925000px;}
.yb5{bottom:540.465000px;}
.yd9{bottom:542.805000px;}
.yc{bottom:551.985000px;}
.y129{bottom:555.045000px;}
.y32{bottom:557.205000px;}
.y149{bottom:557.565000px;}
.y109{bottom:558.105000px;}
.y55{bottom:558.825000px;}
.y7a{bottom:559.185000px;}
.yef{bottom:559.545000px;}
.y97{bottom:559.725000px;}
.yb3{bottom:560.085000px;}
.yd8{bottom:562.605000px;}
.yb4{bottom:567.645000px;}
.y148{bottom:569.625000px;}
.yb{bottom:570.165000px;}
.y128{bottom:575.025000px;}
.y31{bottom:575.745000px;}
.y108{bottom:578.085000px;}
.y54{bottom:578.625000px;}
.y79{bottom:579.165000px;}
.y96{bottom:579.525000px;}
.yd7{bottom:582.405000px;}
.ya{bottom:588.525000px;}
.y147{bottom:588.705000px;}
.y127{bottom:595.005000px;}
.y30{bottom:596.985000px;}
.y107{bottom:597.885000px;}
.y53{bottom:598.425000px;}
.y78{bottom:599.145000px;}
.yee{bottom:599.325000px;}
.yd5{bottom:601.845000px;}
.y146{bottom:607.785000px;}
.yd6{bottom:609.405000px;}
.y9{bottom:611.205000px;}
.y2f{bottom:615.345000px;}
.y126{bottom:617.505000px;}
.y106{bottom:617.865000px;}
.y52{bottom:618.225000px;}
.yb2{bottom:618.585000px;}
.y77{bottom:618.945000px;}
.yed{bottom:619.305000px;}
.yd4{bottom:621.465000px;}
.y145{bottom:626.685000px;}
.y8{bottom:629.565000px;}
.y2e{bottom:633.525000px;}
.y125{bottom:637.485000px;}
.y105{bottom:637.890000px;}
.y51{bottom:638.070000px;}
.yb1{bottom:638.250000px;}
.y95{bottom:638.790000px;}
.y76{bottom:638.970000px;}
.yec{bottom:639.150000px;}
.yd3{bottom:640.950000px;}
.y144{bottom:645.810000px;}
.y2d{bottom:651.930000px;}
.y7{bottom:653.010000px;}
.y124{bottom:657.330000px;}
.y50{bottom:657.690000px;}
.y94{bottom:658.590000px;}
.y75{bottom:658.950000px;}
.yd2{bottom:660.570000px;}
.y143{bottom:664.890000px;}
.y2c{bottom:670.110000px;}
.y123{bottom:677.310000px;}
.y4f{bottom:677.670000px;}
.y93{bottom:678.390000px;}
.y74{bottom:678.570000px;}
.y6{bottom:680.010000px;}
.y142{bottom:683.790000px;}
.y2b{bottom:688.470000px;}
.y122{bottom:697.290000px;}
.y4e{bottom:697.650000px;}
.y92{bottom:698.010000px;}
.y73{bottom:698.370000px;}
.yd1{bottom:699.630000px;}
.y141{bottom:702.870000px;}
.y5{bottom:703.770000px;}
.y2a{bottom:706.650000px;}
.y121{bottom:717.270000px;}
.yb0{bottom:717.450000px;}
.y4d{bottom:717.630000px;}
.y91{bottom:717.810000px;}
.y72{bottom:718.170000px;}
.yd0{bottom:719.070000px;}
.y140{bottom:721.950000px;}
.y29{bottom:724.830000px;}
.y120{bottom:737.070000px;}
.y4c{bottom:737.430000px;}
.y4{bottom:737.610000px;}
.y71{bottom:737.970000px;}
.ycf{bottom:738.690000px;}
.y13f{bottom:740.850000px;}
.y28{bottom:743.190000px;}
.y11f{bottom:757.050000px;}
.y3{bottom:757.230000px;}
.y4b{bottom:757.410000px;}
.y70{bottom:757.770000px;}
.yce{bottom:758.130000px;}
.y13e{bottom:759.930000px;}
.y27{bottom:761.370000px;}
.y4a{bottom:777.390000px;}
.ycd{bottom:777.750000px;}
.y13d{bottom:779.010000px;}
.y26{bottom:779.730000px;}
.y2{bottom:795.930000px;}
.y49{bottom:797.190000px;}
.y25{bottom:797.910000px;}
.hd{height:38.158594px;}
.hc{height:40.985156px;}
.hf{height:45.087187px;}
.h8{height:52.965000px;}
.h10{height:53.573906px;}
.ha{height:55.372500px;}
.h13{height:56.801250px;}
.h5{height:57.960000px;}
.he{height:58.651172px;}
.h9{height:59.383125px;}
.h7{height:62.153438px;}
.h12{height:62.184375px;}
.h11{height:63.855000px;}
.h4{height:64.978594px;}
.h2{height:65.010937px;}
.h6{height:66.757500px;}
.h3{height:70.664062px;}
.hb{height:892.978080px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.458125px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x7{left:76.536000px;}
.xf{left:81.396000px;}
.x10{left:87.156000px;}
.x25{left:89.316000px;}
.x28{left:91.296000px;}
.x9{left:93.636000px;}
.x1a{left:98.496000px;}
.xb{left:102.096000px;}
.x12{left:104.256000px;}
.x27{left:108.396000px;}
.x5{left:110.556000px;}
.xa{left:119.196000px;}
.x6{left:138.456000px;}
.x15{left:176.068125px;}
.x16{left:181.290000px;}
.x1b{left:223.273125px;}
.x1c{left:228.495000px;}
.x2{left:237.495000px;}
.x26{left:283.755000px;}
.xe{left:292.575000px;}
.x1{left:297.975000px;}
.x21{left:303.375000px;}
.x19{left:309.675000px;}
.x8{left:315.075000px;}
.x23{left:329.473125px;}
.x29{left:334.695000px;}
.x1f{left:335.773125px;}
.x24{left:339.945000px;}
.x20{left:341.025000px;}
.x4{left:364.965000px;}
.xc{left:374.143125px;}
.xd{left:379.365000px;}
.x1d{left:411.043125px;}
.x1e{left:416.265000px;}
.x22{left:422.385000px;}
.x3{left:427.425000px;}
.x13{left:467.743125px;}
.x14{left:472.965000px;}
.x2a{left:536.010000px;}
.x17{left:543.748125px;}
.x18{left:548.970000px;}
.x11{left:553.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-3.013333pt;}
.ls4{letter-spacing:-2.560000pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.872000pt;}
.ls28{letter-spacing:-1.728000pt;}
.ls29{letter-spacing:-1.706667pt;}
.ls27{letter-spacing:-1.621333pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.232000pt;}
.ls2b{letter-spacing:-1.130667pt;}
.ls2{letter-spacing:-1.045333pt;}
.ls2a{letter-spacing:-0.981333pt;}
.ls13{letter-spacing:-0.869333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.456533pt;}
.ls26{letter-spacing:-0.445333pt;}
.ls20{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.240533pt;}
.ls1f{letter-spacing:-0.140800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls21{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.148267pt;}
.ls7{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.194667pt;}
.ls19{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.297067pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.445333pt;}
.ls10{letter-spacing:0.800000pt;}
.ls5{letter-spacing:9.760000pt;}
.ls8{letter-spacing:10.400000pt;}
.ls1e{letter-spacing:12.320000pt;}
.ls1a{letter-spacing:15.520000pt;}
.ls1b{letter-spacing:15.626667pt;}
.lsf{letter-spacing:30.720000pt;}
.ls11{letter-spacing:36.640000pt;}
.ls25{letter-spacing:752.138667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.579200pt;}
.ws5{word-spacing:-14.479467pt;}
.ws10{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.377067pt;}
.ws15{word-spacing:-14.274667pt;}
.ws14{word-spacing:-14.228267pt;}
.ws1{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.674667pt;}
.ws16{word-spacing:-13.634667pt;}
.ws8{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.098667pt;}
.wsb{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.949333pt;}
.wsf{word-spacing:-12.823467pt;}
.ws7{word-spacing:-12.736000pt;}
.wse{word-spacing:-12.688000pt;}
.ws18{word-spacing:-12.458667pt;}
.wsa{word-spacing:-12.410667pt;}
.ws1a{word-spacing:-12.373333pt;}
.ws19{word-spacing:-12.352000pt;}
.ws17{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.048000pt;}
.ws9{word-spacing:-11.706667pt;}
.wsd{word-spacing:-11.408000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-6.927787pt;}
._1b{margin-left:-5.122560pt;}
._1d{margin-left:-4.072533pt;}
._16{margin-left:-3.120640pt;}
._15{margin-left:-1.953280pt;}
._0{margin-left:-0.938240pt;}
._4{width:1.126400pt;}
._5{width:2.176000pt;}
._1{width:3.548160pt;}
._2{width:4.618240pt;}
._3{width:5.544533pt;}
._6{width:6.682880pt;}
._9{width:7.660800pt;}
._c{width:8.972800pt;}
._b{width:9.912320pt;}
._10{width:11.040000pt;}
._7{width:11.976960pt;}
._d{width:13.102080pt;}
._a{width:15.243520pt;}
._23{width:16.306347pt;}
._11{width:17.233920pt;}
._20{width:18.547627pt;}
._1c{width:19.491840pt;}
._f{width:20.801280pt;}
._e{width:21.720320pt;}
._12{width:22.978560pt;}
._14{width:24.328960pt;}
._13{width:25.231360pt;}
._1a{width:26.232320pt;}
._8{width:27.315200pt;}
._19{width:28.861440pt;}
._18{width:29.903360pt;}
._26{width:31.202560pt;}
._25{width:32.625920pt;}
._2d{width:33.683627pt;}
._33{width:34.736427pt;}
._22{width:35.928320pt;}
._21{width:37.024000pt;}
._37{width:38.035627pt;}
._24{width:39.930880pt;}
._1e{width:40.931840pt;}
._1f{width:42.615467pt;}
._29{width:44.169813pt;}
._27{width:45.274880pt;}
._28{width:46.698667pt;}
._2e{width:47.903147pt;}
._38{width:49.007787pt;}
._2f{width:50.647040pt;}
._39{width:51.775147pt;}
._35{width:64.709120pt;}
._36{width:65.598720pt;}
._31{width:71.247360pt;}
._32{width:72.207360pt;}
._34{width:74.012160pt;}
._2a{width:75.313920pt;}
._2b{width:76.238080pt;}
._2c{width:77.183573pt;}
._30{width:82.222080pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.640000pt;}
.y6f{bottom:78.720000pt;}
.yeb{bottom:84.800000pt;}
.y24{bottom:92.960000pt;}
.y13c{bottom:93.280000pt;}
.y6e{bottom:93.760000pt;}
.yaf{bottom:94.080000pt;}
.y48{bottom:94.240000pt;}
.y6d{bottom:99.840000pt;}
.y104{bottom:100.160000pt;}
.y90{bottom:108.800000pt;}
.y6c{bottom:108.960000pt;}
.y23{bottom:109.120000pt;}
.yae{bottom:109.440000pt;}
.y103{bottom:109.600000pt;}
.y13b{bottom:110.080000pt;}
.y47{bottom:112.000000pt;}
.yad{bottom:115.552000pt;}
.y8f{bottom:123.872000pt;}
.ycc{bottom:124.832000pt;}
.yac{bottom:124.992000pt;}
.y22{bottom:125.472000pt;}
.y13a{bottom:127.072000pt;}
.y6a{bottom:127.872000pt;}
.y46{bottom:129.792000pt;}
.y6b{bottom:134.586667pt;}
.y102{bottom:136.506667pt;}
.y8e{bottom:138.746667pt;}
.ycb{bottom:140.026667pt;}
.y21{bottom:141.626667pt;}
.y139{bottom:144.026667pt;}
.y69{bottom:145.306667pt;}
.y45{bottom:147.386667pt;}
.yea{bottom:148.666667pt;}
.y8d{bottom:153.786667pt;}
.y101{bottom:154.106667pt;}
.yca{bottom:155.386667pt;}
.y20{bottom:157.786667pt;}
.y138{bottom:160.826667pt;}
.y11e{bottom:161.466667pt;}
.y68{bottom:162.906667pt;}
.yab{bottom:163.706667pt;}
.y44{bottom:165.146667pt;}
.ye9{bottom:166.266667pt;}
.y8c{bottom:168.826667pt;}
.yc9{bottom:170.746667pt;}
.y11d{bottom:171.066667pt;}
.y100{bottom:171.866667pt;}
.y1f{bottom:174.106667pt;}
.y137{bottom:177.786667pt;}
.y67{bottom:180.506667pt;}
.yaa{bottom:181.146667pt;}
.y43{bottom:182.906667pt;}
.y8b{bottom:183.866667pt;}
.yc8{bottom:186.106667pt;}
.yff{bottom:189.626667pt;}
.y1e{bottom:190.266667pt;}
.yc7{bottom:192.186667pt;}
.y136{bottom:194.746667pt;}
.y66{bottom:198.106667pt;}
.ya9{bottom:198.746667pt;}
.y8a{bottom:198.906667pt;}
.y42{bottom:200.666667pt;}
.yc6{bottom:201.466667pt;}
.y1d{bottom:206.586667pt;}
.yfe{bottom:207.226667pt;}
.y135{bottom:211.546667pt;}
.y11c{bottom:212.666667pt;}
.y89{bottom:213.946667pt;}
.y65{bottom:215.706667pt;}
.ya8{bottom:216.346667pt;}
.yc5{bottom:216.826667pt;}
.y41{bottom:218.266667pt;}
.ye8{bottom:218.906667pt;}
.y1c{bottom:222.746667pt;}
.yc4{bottom:222.906667pt;}
.yfd{bottom:224.986667pt;}
.y134{bottom:228.506667pt;}
.y88{bottom:229.146667pt;}
.y11a{bottom:230.426667pt;}
.yc3{bottom:232.346667pt;}
.y64{bottom:233.146667pt;}
.ya7{bottom:233.946667pt;}
.y40{bottom:236.026667pt;}
.ye7{bottom:236.506667pt;}
.y11b{bottom:237.146667pt;}
.y1b{bottom:239.066667pt;}
.yfc{bottom:242.746667pt;}
.y133{bottom:245.466667pt;}
.y119{bottom:248.186667pt;}
.y63{bottom:250.746667pt;}
.ya6{bottom:251.546667pt;}
.y3f{bottom:253.786667pt;}
.ye6{bottom:254.106667pt;}
.yc2{bottom:254.746667pt;}
.y1a{bottom:255.226667pt;}
.yfb{bottom:260.506667pt;}
.y132{bottom:262.266667pt;}
.y118{bottom:265.826667pt;}
.y87{bottom:266.786667pt;}
.y62{bottom:268.386667pt;}
.ya5{bottom:269.026667pt;}
.y3e{bottom:271.426667pt;}
.y19{bottom:271.586667pt;}
.ye5{bottom:271.746667pt;}
.yc1{bottom:272.066667pt;}
.yfa{bottom:280.546667pt;}
.y117{bottom:283.586667pt;}
.y86{bottom:284.546667pt;}
.y61{bottom:285.986667pt;}
.ya4{bottom:286.626667pt;}
.y131{bottom:286.946667pt;}
.y3d{bottom:289.186667pt;}
.ye4{bottom:289.346667pt;}
.yc0{bottom:289.506667pt;}
.y18{bottom:291.746667pt;}
.yf9{bottom:298.306667pt;}
.y116{bottom:301.346667pt;}
.y85{bottom:302.306667pt;}
.y60{bottom:303.586667pt;}
.ya3{bottom:304.226667pt;}
.ybf{bottom:306.786667pt;}
.y3c{bottom:306.946667pt;}
.y17{bottom:308.066667pt;}
.yf8{bottom:315.906667pt;}
.y130{bottom:316.386667pt;}
.y115{bottom:318.946667pt;}
.y84{bottom:319.906667pt;}
.y5f{bottom:321.026667pt;}
.ya2{bottom:321.826667pt;}
.y16{bottom:324.226667pt;}
.ye3{bottom:324.386667pt;}
.y3b{bottom:324.546667pt;}
.yf7{bottom:333.986667pt;}
.y114{bottom:336.706667pt;}
.y83{bottom:337.666667pt;}
.y5e{bottom:338.626667pt;}
.ya1{bottom:339.426667pt;}
.y15{bottom:340.386667pt;}
.ybe{bottom:341.506667pt;}
.ye1{bottom:341.986667pt;}
.y3a{bottom:342.306667pt;}
.ye2{bottom:348.706667pt;}
.yf6{bottom:351.746667pt;}
.y113{bottom:354.466667pt;}
.y82{bottom:355.426667pt;}
.y5d{bottom:356.226667pt;}
.y14{bottom:356.706667pt;}
.ya0{bottom:356.866667pt;}
.ybd{bottom:358.946667pt;}
.ye0{bottom:359.586667pt;}
.y39{bottom:360.066667pt;}
.yf5{bottom:369.346667pt;}
.y12f{bottom:369.506667pt;}
.y112{bottom:372.066667pt;}
.y13{bottom:372.866667pt;}
.y81{bottom:373.026667pt;}
.y5c{bottom:373.826667pt;}
.y9f{bottom:374.466667pt;}
.ybc{bottom:376.226667pt;}
.ydf{bottom:377.186667pt;}
.y38{bottom:377.666667pt;}
.yf4{bottom:387.106667pt;}
.y12{bottom:389.186667pt;}
.y111{bottom:389.826667pt;}
.y80{bottom:390.786667pt;}
.y5b{bottom:391.426667pt;}
.y9e{bottom:392.066667pt;}
.ybb{bottom:393.666667pt;}
.yde{bottom:394.626667pt;}
.y37{bottom:395.426667pt;}
.y12e{bottom:404.866667pt;}
.y11{bottom:405.506667pt;}
.y10f{bottom:407.586667pt;}
.y7f{bottom:408.546667pt;}
.y5a{bottom:408.866667pt;}
.y9d{bottom:409.666667pt;}
.yb9{bottom:410.946667pt;}
.ydd{bottom:412.226667pt;}
.y36{bottom:413.186667pt;}
.y110{bottom:414.306667pt;}
.yf3{bottom:415.586667pt;}
.yba{bottom:417.693333pt;}
.y12d{bottom:422.653333pt;}
.y10e{bottom:425.213333pt;}
.y10{bottom:425.693333pt;}
.y7e{bottom:426.013333pt;}
.y59{bottom:426.493333pt;}
.y9c{bottom:427.293333pt;}
.yb8{bottom:428.413333pt;}
.ydc{bottom:429.853333pt;}
.y35{bottom:430.813333pt;}
.y12c{bottom:440.253333pt;}
.yf{bottom:441.853333pt;}
.y10d{bottom:442.973333pt;}
.y7d{bottom:443.613333pt;}
.y14b{bottom:443.773333pt;}
.y58{bottom:444.093333pt;}
.yf2{bottom:444.253333pt;}
.y9b{bottom:444.733333pt;}
.yb7{bottom:445.693333pt;}
.ydb{bottom:447.453333pt;}
.y34{bottom:448.573333pt;}
.y12b{bottom:458.013333pt;}
.ye{bottom:458.173333pt;}
.y10b{bottom:460.733333pt;}
.y7c{bottom:461.373333pt;}
.y57{bottom:461.693333pt;}
.yf1{bottom:462.013333pt;}
.y99{bottom:462.333333pt;}
.yb6{bottom:463.133333pt;}
.y14a{bottom:463.293333pt;}
.yda{bottom:465.053333pt;}
.y33{bottom:466.333333pt;}
.y10c{bottom:467.453333pt;}
.y9a{bottom:469.053333pt;}
.yd{bottom:474.333333pt;}
.y12a{bottom:475.773333pt;}
.y10a{bottom:478.333333pt;}
.y7b{bottom:479.133333pt;}
.y56{bottom:479.293333pt;}
.yf0{bottom:479.613333pt;}
.y98{bottom:479.933333pt;}
.yb5{bottom:480.413333pt;}
.yd9{bottom:482.493333pt;}
.yc{bottom:490.653333pt;}
.y129{bottom:493.373333pt;}
.y32{bottom:495.293333pt;}
.y149{bottom:495.613333pt;}
.y109{bottom:496.093333pt;}
.y55{bottom:496.733333pt;}
.y7a{bottom:497.053333pt;}
.yef{bottom:497.373333pt;}
.y97{bottom:497.533333pt;}
.yb3{bottom:497.853333pt;}
.yd8{bottom:500.093333pt;}
.yb4{bottom:504.573333pt;}
.y148{bottom:506.333333pt;}
.yb{bottom:506.813333pt;}
.y128{bottom:511.133333pt;}
.y31{bottom:511.773333pt;}
.y108{bottom:513.853333pt;}
.y54{bottom:514.333333pt;}
.y79{bottom:514.813333pt;}
.y96{bottom:515.133333pt;}
.yd7{bottom:517.693333pt;}
.ya{bottom:523.133333pt;}
.y147{bottom:523.293333pt;}
.y127{bottom:528.893333pt;}
.y30{bottom:530.653333pt;}
.y107{bottom:531.453333pt;}
.y53{bottom:531.933333pt;}
.y78{bottom:532.573333pt;}
.yee{bottom:532.733333pt;}
.yd5{bottom:534.973333pt;}
.y146{bottom:540.253333pt;}
.yd6{bottom:541.693333pt;}
.y9{bottom:543.293333pt;}
.y2f{bottom:546.973333pt;}
.y126{bottom:548.893333pt;}
.y106{bottom:549.213333pt;}
.y52{bottom:549.533333pt;}
.yb2{bottom:549.853333pt;}
.y77{bottom:550.173333pt;}
.yed{bottom:550.493333pt;}
.yd4{bottom:552.413333pt;}
.y145{bottom:557.053333pt;}
.y8{bottom:559.613333pt;}
.y2e{bottom:563.133333pt;}
.y125{bottom:566.653333pt;}
.y105{bottom:567.013333pt;}
.y51{bottom:567.173333pt;}
.yb1{bottom:567.333333pt;}
.y95{bottom:567.813333pt;}
.y76{bottom:567.973333pt;}
.yec{bottom:568.133333pt;}
.yd3{bottom:569.733333pt;}
.y144{bottom:574.053333pt;}
.y2d{bottom:579.493333pt;}
.y7{bottom:580.453333pt;}
.y124{bottom:584.293333pt;}
.y50{bottom:584.613333pt;}
.y94{bottom:585.413333pt;}
.y75{bottom:585.733333pt;}
.yd2{bottom:587.173333pt;}
.y143{bottom:591.013333pt;}
.y2c{bottom:595.653333pt;}
.y123{bottom:602.053333pt;}
.y4f{bottom:602.373333pt;}
.y93{bottom:603.013333pt;}
.y74{bottom:603.173333pt;}
.y6{bottom:604.453333pt;}
.y142{bottom:607.813333pt;}
.y2b{bottom:611.973333pt;}
.y122{bottom:619.813333pt;}
.y4e{bottom:620.133333pt;}
.y92{bottom:620.453333pt;}
.y73{bottom:620.773333pt;}
.yd1{bottom:621.893333pt;}
.y141{bottom:624.773333pt;}
.y5{bottom:625.573333pt;}
.y2a{bottom:628.133333pt;}
.y121{bottom:637.573333pt;}
.yb0{bottom:637.733333pt;}
.y4d{bottom:637.893333pt;}
.y91{bottom:638.053333pt;}
.y72{bottom:638.373333pt;}
.yd0{bottom:639.173333pt;}
.y140{bottom:641.733333pt;}
.y29{bottom:644.293333pt;}
.y120{bottom:655.173333pt;}
.y4c{bottom:655.493333pt;}
.y4{bottom:655.653333pt;}
.y71{bottom:655.973333pt;}
.ycf{bottom:656.613333pt;}
.y13f{bottom:658.533333pt;}
.y28{bottom:660.613333pt;}
.y11f{bottom:672.933333pt;}
.y3{bottom:673.093333pt;}
.y4b{bottom:673.253333pt;}
.y70{bottom:673.573333pt;}
.yce{bottom:673.893333pt;}
.y13e{bottom:675.493333pt;}
.y27{bottom:676.773333pt;}
.y4a{bottom:691.013333pt;}
.ycd{bottom:691.333333pt;}
.y13d{bottom:692.453333pt;}
.y26{bottom:693.093333pt;}
.y2{bottom:707.493333pt;}
.y49{bottom:708.613333pt;}
.y25{bottom:709.253333pt;}
.hd{height:33.918750pt;}
.hc{height:36.431250pt;}
.hf{height:40.077500pt;}
.h8{height:47.080000pt;}
.h10{height:47.621250pt;}
.ha{height:49.220000pt;}
.h13{height:50.490000pt;}
.h5{height:51.520000pt;}
.he{height:52.134375pt;}
.h9{height:52.785000pt;}
.h7{height:55.247500pt;}
.h12{height:55.275000pt;}
.h11{height:56.760000pt;}
.h4{height:57.758750pt;}
.h2{height:57.787500pt;}
.h6{height:59.340000pt;}
.h3{height:62.812500pt;}
.hb{height:793.758293pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.518333pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x7{left:68.032000pt;}
.xf{left:72.352000pt;}
.x10{left:77.472000pt;}
.x25{left:79.392000pt;}
.x28{left:81.152000pt;}
.x9{left:83.232000pt;}
.x1a{left:87.552000pt;}
.xb{left:90.752000pt;}
.x12{left:92.672000pt;}
.x27{left:96.352000pt;}
.x5{left:98.272000pt;}
.xa{left:105.952000pt;}
.x6{left:123.072000pt;}
.x15{left:156.505000pt;}
.x16{left:161.146667pt;}
.x1b{left:198.465000pt;}
.x1c{left:203.106667pt;}
.x2{left:211.106667pt;}
.x26{left:252.226667pt;}
.xe{left:260.066667pt;}
.x1{left:264.866667pt;}
.x21{left:269.666667pt;}
.x19{left:275.266667pt;}
.x8{left:280.066667pt;}
.x23{left:292.865000pt;}
.x29{left:297.506667pt;}
.x1f{left:298.465000pt;}
.x24{left:302.173333pt;}
.x20{left:303.133333pt;}
.x4{left:324.413333pt;}
.xc{left:332.571667pt;}
.xd{left:337.213333pt;}
.x1d{left:365.371667pt;}
.x1e{left:370.013333pt;}
.x22{left:375.453333pt;}
.x3{left:379.933333pt;}
.x13{left:415.771667pt;}
.x14{left:420.413333pt;}
.x2a{left:476.453333pt;}
.x17{left:483.331667pt;}
.x18{left:487.973333pt;}
.x11{left:491.653333pt;}
}




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