
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_eafe17580058bec2966b4474.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_58114d8a6ad5ff713bd60b31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_2b089db53a46b22932ee2288.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_9ae8dbf131c32ef5fd245b17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_4595f287cb7d89c5d52abde0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_fd6ab733851d2f7b03e4b133.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_b728c4d636c8c59acf4f4bf6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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);}
.v1{vertical-align:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:21.960000px;}
.v3{vertical-align:24.120000px;}
.ls13{letter-spacing:-0.427200px;}
.ls9{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.060600px;}
.ls12{letter-spacing:-0.038880px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.407400px;}
.lsd{letter-spacing:1.533600px;}
.ls11{letter-spacing:19.532520px;}
.ls10{letter-spacing:40.526640px;}
.ls19{letter-spacing:47.726640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-60.184800px;}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.165800px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._3{margin-left:-3.607200px;}
._4{margin-left:-2.601600px;}
._0{margin-left:-1.104000px;}
._2{width:1.761983px;}
._1{width:2.851836px;}
._9{width:4.302564px;}
._5{width:5.651400px;}
._6{width:7.153799px;}
._f{width:8.176200px;}
._10{width:9.517202px;}
._e{width:11.020318px;}
._7{width:12.204600px;}
._8{width:14.521560px;}
._19{width:15.868035px;}
._14{width:17.975880px;}
._31{width:19.418760px;}
._c{width:20.621400px;}
._d{width:21.885814px;}
._11{width:23.807520px;}
._17{width:25.392480px;}
._a{width:26.452800px;}
._b{width:28.052160px;}
._1d{width:30.180240px;}
._12{width:32.043960px;}
._2d{width:33.486840px;}
._28{width:34.569000px;}
._39{width:35.831520px;}
._3a{width:37.815480px;}
._35{width:39.258360px;}
._30{width:41.302440px;}
._3e{width:42.568297px;}
._20{width:43.587000px;}
._3c{width:44.898600px;}
._16{width:45.991800px;}
._32{width:47.013840px;}
._33{width:48.216240px;}
._29{width:49.959720px;}
._2f{width:52.439760px;}
._1a{width:54.168120px;}
._1b{width:58.436640px;}
._1c{width:59.518800px;}
._24{width:62.825400px;}
._26{width:65.530800px;}
._2e{width:67.755240px;}
._18{width:72.865440px;}
._34{width:83.506680px;}
._27{width:84.889440px;}
._3b{width:86.212080px;}
._25{width:89.037720px;}
._38{width:90.420480px;}
._1f{width:95.771160px;}
._37{width:97.695000px;}
._3f{width:105.270120px;}
._23{width:132.324120px;}
._21{width:135.209880px;}
._1e{width:154.207800px;}
._2a{width:169.358040px;}
._36{width:182.404080px;}
._13{width:206.812800px;}
._15{width:214.748640px;}
._2b{width:293.806440px;}
._2c{width:301.441680px;}
._22{width:343.585800px;}
._3d{width:419.457240px;}
._40{width:564.827400px;}
._41{width:565.991520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.420000px;}
.y7a{bottom:7.830000px;}
.y63{bottom:7.920000px;}
.y9b{bottom:20.970000px;}
.y79{bottom:25.380000px;}
.y62{bottom:25.470000px;}
.y9a{bottom:38.610000px;}
.y6e{bottom:43.020000px;}
.y61{bottom:43.110000px;}
.y99{bottom:56.160000px;}
.y78{bottom:60.570000px;}
.y6d{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y98{bottom:73.710000px;}
.y29{bottom:74.190000px;}
.y6c{bottom:78.210000px;}
.y97{bottom:91.350000px;}
.y8c{bottom:94.230000px;}
.y7c{bottom:95.760000px;}
.y77{bottom:95.790000px;}
.y6b{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y96{bottom:108.900000px;}
.ya7{bottom:113.310000px;}
.y76{bottom:113.340000px;}
.y6a{bottom:113.400000px;}
.y12a{bottom:116.130000px;}
.y8b{bottom:116.370000px;}
.yfe{bottom:120.360000px;}
.y93{bottom:125.310000px;}
.y95{bottom:126.540000px;}
.y27{bottom:127.920000px;}
.ydf{bottom:129.000000px;}
.y69{bottom:130.950000px;}
.y75{bottom:130.980000px;}
.yaf{bottom:131.040000px;}
.y129{bottom:133.680000px;}
.y8a{bottom:133.920000px;}
.y64{bottom:134.220000px;}
.yfd{bottom:137.910000px;}
.y94{bottom:144.090000px;}
.y26{bottom:145.560000px;}
.yde{bottom:146.550000px;}
.ya1{bottom:148.500000px;}
.y74{bottom:148.530000px;}
.y68{bottom:148.590000px;}
.y8f{bottom:148.680000px;}
.y128{bottom:151.320000px;}
.y89{bottom:151.470000px;}
.y25{bottom:163.110000px;}
.ydd{bottom:164.100000px;}
.yfc{bottom:164.550000px;}
.y73{bottom:166.080000px;}
.y67{bottom:166.140000px;}
.y8e{bottom:166.230000px;}
.y88{bottom:169.020000px;}
.ya8{bottom:170.310000px;}
.y127{bottom:177.870000px;}
.y24{bottom:180.660000px;}
.ydc{bottom:181.740000px;}
.yfb{bottom:182.100000px;}
.ya0{bottom:183.690000px;}
.y72{bottom:183.720000px;}
.y66{bottom:183.780000px;}
.y92{bottom:183.810000px;}
.y8d{bottom:183.870000px;}
.y87{bottom:187.470000px;}
.y126{bottom:195.510000px;}
.y56{bottom:196.500000px;}
.y23{bottom:198.300000px;}
.ydb{bottom:199.290000px;}
.yfa{bottom:199.650000px;}
.ya6{bottom:201.240000px;}
.y71{bottom:201.270000px;}
.y65{bottom:201.330000px;}
.y91{bottom:201.360000px;}
.y81{bottom:201.420000px;}
.y86{bottom:205.110000px;}
.y125{bottom:213.060000px;}
.y22{bottom:215.850000px;}
.yda{bottom:216.930000px;}
.ya5{bottom:218.880000px;}
.y70{bottom:218.910000px;}
.y80{bottom:218.970000px;}
.y85{bottom:222.660000px;}
.yf9{bottom:226.560000px;}
.y55{bottom:232.050000px;}
.yd9{bottom:234.480000px;}
.ya4{bottom:236.430000px;}
.y9f{bottom:236.460000px;}
.yae{bottom:236.520000px;}
.y7f{bottom:236.610000px;}
.y124{bottom:239.610000px;}
.y84{bottom:240.210000px;}
.y54{bottom:249.600000px;}
.y21{bottom:251.490000px;}
.yd8{bottom:252.030000px;}
.ya3{bottom:254.070000px;}
.y7e{bottom:254.160000px;}
.y123{bottom:257.250000px;}
.y83{bottom:258.660000px;}
.y53{bottom:267.240000px;}
.y20{bottom:269.040000px;}
.yad{bottom:271.710000px;}
.y7d{bottom:271.800000px;}
.y122{bottom:274.800000px;}
.yf8{bottom:274.890000px;}
.y82{bottom:276.300000px;}
.y52{bottom:284.790000px;}
.y1f{bottom:286.590000px;}
.yd7{bottom:287.670000px;}
.y90{bottom:288.840000px;}
.yac{bottom:289.260000px;}
.y121{bottom:301.440000px;}
.yf7{bottom:301.800000px;}
.y51{bottom:302.430000px;}
.y1e{bottom:304.230000px;}
.yd6{bottom:305.220000px;}
.yab{bottom:306.840000px;}
.y120{bottom:318.990000px;}
.y1d{bottom:321.780000px;}
.yd5{bottom:322.860000px;}
.yaa{bottom:324.480000px;}
.y50{bottom:337.980000px;}
.yf6{bottom:338.790000px;}
.y1c{bottom:339.420000px;}
.yd4{bottom:340.410000px;}
.ya9{bottom:342.030000px;}
.y11f{bottom:345.540000px;}
.y60{bottom:354.990000px;}
.y4f{bottom:355.530000px;}
.yf5{bottom:356.430000px;}
.y1b{bottom:356.970000px;}
.yd3{bottom:357.960000px;}
.y11e{bottom:363.180000px;}
.y4e{bottom:373.170000px;}
.yf4{bottom:383.250000px;}
.y1a{bottom:383.880000px;}
.y11d{bottom:389.730000px;}
.yd2{bottom:393.600000px;}
.y4d{bottom:400.080000px;}
.y11c{bottom:407.370000px;}
.yd1{bottom:411.150000px;}
.yf3{bottom:420.600000px;}
.yd0{bottom:428.790000px;}
.y19{bottom:432.120000px;}
.y11b{bottom:433.920000px;}
.y5f{bottom:438.870000px;}
.ycf{bottom:446.340000px;}
.y4c{bottom:448.320000px;}
.y18{bottom:450.030000px;}
.y11a{bottom:451.470000px;}
.y4b{bottom:465.870000px;}
.yf2{bottom:468.930000px;}
.yce{bottom:472.920000px;}
.y5e{bottom:474.540000px;}
.y119{bottom:478.140000px;}
.y4a{bottom:483.540000px;}
.yf1{bottom:486.510000px;}
.y17{bottom:489.660000px;}
.y5d{bottom:492.090000px;}
.y118{bottom:495.690000px;}
.y49{bottom:501.090000px;}
.yf0{bottom:504.150000px;}
.ycd{bottom:508.560000px;}
.y5c{bottom:509.640000px;}
.y16{bottom:509.910000px;}
.y48{bottom:518.730000px;}
.yef{bottom:521.700000px;}
.y117{bottom:522.330000px;}
.ycc{bottom:526.110000px;}
.y15{bottom:530.070000px;}
.ya2{bottom:531.870000px;}
.y47{bottom:536.280000px;}
.yee{bottom:539.250000px;}
.y116{bottom:539.880000px;}
.ycb{bottom:543.750000px;}
.y5b{bottom:545.280000px;}
.y14{bottom:550.320000px;}
.y46{bottom:553.830000px;}
.yed{bottom:556.890000px;}
.yca{bottom:561.300000px;}
.y5a{bottom:562.830000px;}
.y115{bottom:566.430000px;}
.y13{bottom:570.570000px;}
.yec{bottom:574.440000px;}
.yc9{bottom:578.850000px;}
.y59{bottom:580.470000px;}
.y114{bottom:584.070000px;}
.y45{bottom:589.470000px;}
.y12{bottom:590.820000px;}
.yeb{bottom:592.080000px;}
.yc8{bottom:596.490000px;}
.y44{bottom:607.020000px;}
.yea{bottom:609.630000px;}
.y113{bottom:610.620000px;}
.y11{bottom:610.980000px;}
.yc7{bottom:614.040000px;}
.y58{bottom:616.020000px;}
.y43{bottom:624.660000px;}
.ye9{bottom:627.180000px;}
.y112{bottom:628.260000px;}
.y10{bottom:631.230000px;}
.yc6{bottom:631.590000px;}
.y42{bottom:642.210000px;}
.ye8{bottom:644.820000px;}
.y111{bottom:645.810000px;}
.y57{bottom:648.240000px;}
.yc5{bottom:649.230000px;}
.yf{bottom:651.480000px;}
.ye7{bottom:662.370000px;}
.yc4{bottom:666.780000px;}
.ye{bottom:671.640000px;}
.y110{bottom:672.360000px;}
.y41{bottom:677.760000px;}
.ye6{bottom:689.280000px;}
.y10f{bottom:690.000000px;}
.yd{bottom:691.890000px;}
.y40{bottom:695.400000px;}
.yc3{bottom:705.300000px;}
.y10e{bottom:707.550000px;}
.y3f{bottom:712.950000px;}
.yc{bottom:718.890000px;}
.yc2{bottom:722.940000px;}
.y3e{bottom:730.590000px;}
.y10d{bottom:734.190000px;}
.ye5{bottom:740.490000px;}
.yc1{bottom:740.580000px;}
.y3d{bottom:748.140000px;}
.y10c{bottom:751.740000px;}
.yc0{bottom:758.130000px;}
.y3c{bottom:765.690000px;}
.yb{bottom:767.130000px;}
.ybf{bottom:775.770000px;}
.y10b{bottom:778.290000px;}
.y3b{bottom:792.600000px;}
.ybe{bottom:793.320000px;}
.y10a{bottom:795.930000px;}
.y7b{bottom:800.880000px;}
.ya{bottom:802.950000px;}
.y9e{bottom:805.380000px;}
.ybd{bottom:810.870000px;}
.y109{bottom:822.480000px;}
.ye4{bottom:828.420000px;}
.ybc{bottom:828.510000px;}
.y9{bottom:838.950000px;}
.y108{bottom:840.030000px;}
.y3a{bottom:840.930000px;}
.ybb{bottom:846.060000px;}
.y39{bottom:858.480000px;}
.yba{bottom:863.610000px;}
.y107{bottom:866.670000px;}
.ye3{bottom:867.030000px;}
.y38{bottom:876.030000px;}
.y8{bottom:878.730000px;}
.y106{bottom:884.220000px;}
.ye2{bottom:884.670000px;}
.y37{bottom:893.670000px;}
.y7{bottom:896.730000px;}
.yb9{bottom:902.220000px;}
.y105{bottom:910.860000px;}
.y36{bottom:911.220000px;}
.y6{bottom:914.730000px;}
.y6f{bottom:916.170000px;}
.yb8{bottom:919.860000px;}
.y104{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.yb7{bottom:937.410000px;}
.y34{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yb6{bottom:954.960000px;}
.yb5{bottom:972.600000px;}
.y33{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.yb4{bottom:990.150000px;}
.y103{bottom:999.150000px;}
.y32{bottom:999.600000px;}
.yb3{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y102{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.yb2{bottom:1025.370000px;}
.y101{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.yb1{bottom:1042.920000px;}
.y2f{bottom:1052.370000px;}
.ye1{bottom:1060.560000px;}
.y100{bottom:1060.920000px;}
.y9d{bottom:1061.370000px;}
.yb0{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.yff{bottom:1078.560000px;}
.ye0{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h12{height:57.457617px;}
.h11{height:61.793886px;}
.hb{height:61.830000px;}
.h19{height:62.585859px;}
.ha{height:68.582109px;}
.h9{height:71.019492px;}
.h4{height:72.985430px;}
.h5{height:81.443320px;}
.h15{height:92.430000px;}
.hf{height:114.480000px;}
.h14{height:162.810000px;}
.hd{height:220.050000px;}
.h13{height:220.080000px;}
.he{height:237.630000px;}
.h16{height:255.180000px;}
.h17{height:272.790000px;}
.h10{height:290.520000px;}
.h18{height:360.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:91.260000px;}
.w5{width:165.360000px;}
.w4{width:183.900000px;}
.w6{width:312.930000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.xa{left:9.090000px;}
.xb{left:30.330000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.x7{left:160.830000px;}
.x2{left:202.799987px;}
.x5{left:341.669987px;}
.x8{left:345.450000px;}
.x9{left:511.530000px;}
.x4{left:676.139987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:19.520000pt;}
.v3{vertical-align:21.440000pt;}
.ls13{letter-spacing:-0.379733pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.053867pt;}
.ls12{letter-spacing:-0.034560pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.362133pt;}
.lsd{letter-spacing:1.363200pt;}
.ls11{letter-spacing:17.362240pt;}
.ls10{letter-spacing:36.023680pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.wsa{word-spacing:-53.497600pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.702933pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._3{margin-left:-3.206400pt;}
._4{margin-left:-2.312533pt;}
._0{margin-left:-0.981333pt;}
._2{width:1.566207pt;}
._1{width:2.534965pt;}
._9{width:3.824501pt;}
._5{width:5.023467pt;}
._6{width:6.358932pt;}
._f{width:7.267733pt;}
._10{width:8.459735pt;}
._e{width:9.795839pt;}
._7{width:10.848534pt;}
._8{width:12.908053pt;}
._19{width:14.104920pt;}
._14{width:15.978560pt;}
._31{width:17.261120pt;}
._c{width:18.330134pt;}
._d{width:19.454057pt;}
._11{width:21.162240pt;}
._17{width:22.571093pt;}
._a{width:23.513600pt;}
._b{width:24.935253pt;}
._1d{width:26.826880pt;}
._12{width:28.483520pt;}
._2d{width:29.766080pt;}
._28{width:30.728000pt;}
._39{width:31.850240pt;}
._3a{width:33.613760pt;}
._35{width:34.896320pt;}
._30{width:36.713280pt;}
._3e{width:37.838486pt;}
._20{width:38.744000pt;}
._3c{width:39.909867pt;}
._16{width:40.881600pt;}
._32{width:41.790080pt;}
._33{width:42.858880pt;}
._29{width:44.408640pt;}
._2f{width:46.613120pt;}
._1a{width:48.149440pt;}
._1b{width:51.943680pt;}
._1c{width:52.905600pt;}
._24{width:55.844800pt;}
._26{width:58.249600pt;}
._2e{width:60.226880pt;}
._18{width:64.769280pt;}
._34{width:74.228160pt;}
._27{width:75.457280pt;}
._3b{width:76.632960pt;}
._25{width:79.144640pt;}
._38{width:80.373760pt;}
._1f{width:85.129920pt;}
._37{width:86.840000pt;}
._3f{width:93.573440pt;}
._23{width:117.621440pt;}
._21{width:120.186560pt;}
._1e{width:137.073600pt;}
._2a{width:150.540480pt;}
._36{width:162.136960pt;}
._13{width:183.833600pt;}
._15{width:190.887680pt;}
._2b{width:261.161280pt;}
._2c{width:267.948160pt;}
._22{width:305.409600pt;}
._3d{width:372.850880pt;}
._40{width:502.068800pt;}
._41{width:503.103573pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:3.040000pt;}
.y7a{bottom:6.960000pt;}
.y63{bottom:7.040000pt;}
.y9b{bottom:18.640000pt;}
.y79{bottom:22.560000pt;}
.y62{bottom:22.640000pt;}
.y9a{bottom:34.320000pt;}
.y6e{bottom:38.240000pt;}
.y61{bottom:38.320000pt;}
.y99{bottom:49.920000pt;}
.y78{bottom:53.840000pt;}
.y6d{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y98{bottom:65.520000pt;}
.y29{bottom:65.946667pt;}
.y6c{bottom:69.520000pt;}
.y97{bottom:81.200000pt;}
.y8c{bottom:83.760000pt;}
.y7c{bottom:85.120000pt;}
.y77{bottom:85.146667pt;}
.y6b{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y96{bottom:96.800000pt;}
.ya7{bottom:100.720000pt;}
.y76{bottom:100.746667pt;}
.y6a{bottom:100.800000pt;}
.y12a{bottom:103.226667pt;}
.y8b{bottom:103.440000pt;}
.yfe{bottom:106.986667pt;}
.y93{bottom:111.386667pt;}
.y95{bottom:112.480000pt;}
.y27{bottom:113.706667pt;}
.ydf{bottom:114.666667pt;}
.y69{bottom:116.400000pt;}
.y75{bottom:116.426667pt;}
.yaf{bottom:116.480000pt;}
.y129{bottom:118.826667pt;}
.y8a{bottom:119.040000pt;}
.y64{bottom:119.306667pt;}
.yfd{bottom:122.586667pt;}
.y94{bottom:128.080000pt;}
.y26{bottom:129.386667pt;}
.yde{bottom:130.266667pt;}
.ya1{bottom:132.000000pt;}
.y74{bottom:132.026667pt;}
.y68{bottom:132.080000pt;}
.y8f{bottom:132.160000pt;}
.y128{bottom:134.506667pt;}
.y89{bottom:134.640000pt;}
.y25{bottom:144.986667pt;}
.ydd{bottom:145.866667pt;}
.yfc{bottom:146.266667pt;}
.y73{bottom:147.626667pt;}
.y67{bottom:147.680000pt;}
.y8e{bottom:147.760000pt;}
.y88{bottom:150.240000pt;}
.ya8{bottom:151.386667pt;}
.y127{bottom:158.106667pt;}
.y24{bottom:160.586667pt;}
.ydc{bottom:161.546667pt;}
.yfb{bottom:161.866667pt;}
.ya0{bottom:163.280000pt;}
.y72{bottom:163.306667pt;}
.y66{bottom:163.360000pt;}
.y92{bottom:163.386667pt;}
.y8d{bottom:163.440000pt;}
.y87{bottom:166.640000pt;}
.y126{bottom:173.786667pt;}
.y56{bottom:174.666667pt;}
.y23{bottom:176.266667pt;}
.ydb{bottom:177.146667pt;}
.yfa{bottom:177.466667pt;}
.ya6{bottom:178.880000pt;}
.y71{bottom:178.906667pt;}
.y65{bottom:178.960000pt;}
.y91{bottom:178.986667pt;}
.y81{bottom:179.040000pt;}
.y86{bottom:182.320000pt;}
.y125{bottom:189.386667pt;}
.y22{bottom:191.866667pt;}
.yda{bottom:192.826667pt;}
.ya5{bottom:194.560000pt;}
.y70{bottom:194.586667pt;}
.y80{bottom:194.640000pt;}
.y85{bottom:197.920000pt;}
.yf9{bottom:201.386667pt;}
.y55{bottom:206.266667pt;}
.yd9{bottom:208.426667pt;}
.ya4{bottom:210.160000pt;}
.y9f{bottom:210.186667pt;}
.yae{bottom:210.240000pt;}
.y7f{bottom:210.320000pt;}
.y124{bottom:212.986667pt;}
.y84{bottom:213.520000pt;}
.y54{bottom:221.866667pt;}
.y21{bottom:223.546667pt;}
.yd8{bottom:224.026667pt;}
.ya3{bottom:225.840000pt;}
.y7e{bottom:225.920000pt;}
.y123{bottom:228.666667pt;}
.y83{bottom:229.920000pt;}
.y53{bottom:237.546667pt;}
.y20{bottom:239.146667pt;}
.yad{bottom:241.520000pt;}
.y7d{bottom:241.600000pt;}
.y122{bottom:244.266667pt;}
.yf8{bottom:244.346667pt;}
.y82{bottom:245.600000pt;}
.y52{bottom:253.146667pt;}
.y1f{bottom:254.746667pt;}
.yd7{bottom:255.706667pt;}
.y90{bottom:256.746667pt;}
.yac{bottom:257.120000pt;}
.y121{bottom:267.946667pt;}
.yf7{bottom:268.266667pt;}
.y51{bottom:268.826667pt;}
.y1e{bottom:270.426667pt;}
.yd6{bottom:271.306667pt;}
.yab{bottom:272.746667pt;}
.y120{bottom:283.546667pt;}
.y1d{bottom:286.026667pt;}
.yd5{bottom:286.986667pt;}
.yaa{bottom:288.426667pt;}
.y50{bottom:300.426667pt;}
.yf6{bottom:301.146667pt;}
.y1c{bottom:301.706667pt;}
.yd4{bottom:302.586667pt;}
.ya9{bottom:304.026667pt;}
.y11f{bottom:307.146667pt;}
.y60{bottom:315.546667pt;}
.y4f{bottom:316.026667pt;}
.yf5{bottom:316.826667pt;}
.y1b{bottom:317.306667pt;}
.yd3{bottom:318.186667pt;}
.y11e{bottom:322.826667pt;}
.y4e{bottom:331.706667pt;}
.yf4{bottom:340.666667pt;}
.y1a{bottom:341.226667pt;}
.y11d{bottom:346.426667pt;}
.yd2{bottom:349.866667pt;}
.y4d{bottom:355.626667pt;}
.y11c{bottom:362.106667pt;}
.yd1{bottom:365.466667pt;}
.yf3{bottom:373.866667pt;}
.yd0{bottom:381.146667pt;}
.y19{bottom:384.106667pt;}
.y11b{bottom:385.706667pt;}
.y5f{bottom:390.106667pt;}
.ycf{bottom:396.746667pt;}
.y4c{bottom:398.506667pt;}
.y18{bottom:400.026667pt;}
.y11a{bottom:401.306667pt;}
.y4b{bottom:414.106667pt;}
.yf2{bottom:416.826667pt;}
.yce{bottom:420.373333pt;}
.y5e{bottom:421.813333pt;}
.y119{bottom:425.013333pt;}
.y4a{bottom:429.813333pt;}
.yf1{bottom:432.453333pt;}
.y17{bottom:435.253333pt;}
.y5d{bottom:437.413333pt;}
.y118{bottom:440.613333pt;}
.y49{bottom:445.413333pt;}
.yf0{bottom:448.133333pt;}
.ycd{bottom:452.053333pt;}
.y5c{bottom:453.013333pt;}
.y16{bottom:453.253333pt;}
.y48{bottom:461.093333pt;}
.yef{bottom:463.733333pt;}
.y117{bottom:464.293333pt;}
.ycc{bottom:467.653333pt;}
.y15{bottom:471.173333pt;}
.ya2{bottom:472.773333pt;}
.y47{bottom:476.693333pt;}
.yee{bottom:479.333333pt;}
.y116{bottom:479.893333pt;}
.ycb{bottom:483.333333pt;}
.y5b{bottom:484.693333pt;}
.y14{bottom:489.173333pt;}
.y46{bottom:492.293333pt;}
.yed{bottom:495.013333pt;}
.yca{bottom:498.933333pt;}
.y5a{bottom:500.293333pt;}
.y115{bottom:503.493333pt;}
.y13{bottom:507.173333pt;}
.yec{bottom:510.613333pt;}
.yc9{bottom:514.533333pt;}
.y59{bottom:515.973333pt;}
.y114{bottom:519.173333pt;}
.y45{bottom:523.973333pt;}
.y12{bottom:525.173333pt;}
.yeb{bottom:526.293333pt;}
.yc8{bottom:530.213333pt;}
.y44{bottom:539.573333pt;}
.yea{bottom:541.893333pt;}
.y113{bottom:542.773333pt;}
.y11{bottom:543.093333pt;}
.yc7{bottom:545.813333pt;}
.y58{bottom:547.573333pt;}
.y43{bottom:555.253333pt;}
.ye9{bottom:557.493333pt;}
.y112{bottom:558.453333pt;}
.y10{bottom:561.093333pt;}
.yc6{bottom:561.413333pt;}
.y42{bottom:570.853333pt;}
.ye8{bottom:573.173333pt;}
.y111{bottom:574.053333pt;}
.y57{bottom:576.213333pt;}
.yc5{bottom:577.093333pt;}
.yf{bottom:579.093333pt;}
.ye7{bottom:588.773333pt;}
.yc4{bottom:592.693333pt;}
.ye{bottom:597.013333pt;}
.y110{bottom:597.653333pt;}
.y41{bottom:602.453333pt;}
.ye6{bottom:612.693333pt;}
.y10f{bottom:613.333333pt;}
.yd{bottom:615.013333pt;}
.y40{bottom:618.133333pt;}
.yc3{bottom:626.933333pt;}
.y10e{bottom:628.933333pt;}
.y3f{bottom:633.733333pt;}
.yc{bottom:639.013333pt;}
.yc2{bottom:642.613333pt;}
.y3e{bottom:649.413333pt;}
.y10d{bottom:652.613333pt;}
.ye5{bottom:658.213333pt;}
.yc1{bottom:658.293333pt;}
.y3d{bottom:665.013333pt;}
.y10c{bottom:668.213333pt;}
.yc0{bottom:673.893333pt;}
.y3c{bottom:680.613333pt;}
.yb{bottom:681.893333pt;}
.ybf{bottom:689.573333pt;}
.y10b{bottom:691.813333pt;}
.y3b{bottom:704.533333pt;}
.ybe{bottom:705.173333pt;}
.y10a{bottom:707.493333pt;}
.y7b{bottom:711.893333pt;}
.ya{bottom:713.733333pt;}
.y9e{bottom:715.893333pt;}
.ybd{bottom:720.773333pt;}
.y109{bottom:731.093333pt;}
.ye4{bottom:736.373333pt;}
.ybc{bottom:736.453333pt;}
.y9{bottom:745.733333pt;}
.y108{bottom:746.693333pt;}
.y3a{bottom:747.493333pt;}
.ybb{bottom:752.053333pt;}
.y39{bottom:763.093333pt;}
.yba{bottom:767.653333pt;}
.y107{bottom:770.373333pt;}
.ye3{bottom:770.693333pt;}
.y38{bottom:778.693333pt;}
.y8{bottom:781.093333pt;}
.y106{bottom:785.973333pt;}
.ye2{bottom:786.373333pt;}
.y37{bottom:794.373333pt;}
.y7{bottom:797.093333pt;}
.yb9{bottom:801.973333pt;}
.y105{bottom:809.653333pt;}
.y36{bottom:809.973333pt;}
.y6{bottom:813.093333pt;}
.y6f{bottom:814.373333pt;}
.yb8{bottom:817.653333pt;}
.y104{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.yb7{bottom:833.253333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yb6{bottom:848.853333pt;}
.yb5{bottom:864.533333pt;}
.y33{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.yb4{bottom:880.133333pt;}
.y103{bottom:888.133333pt;}
.y32{bottom:888.533333pt;}
.yb3{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y102{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.yb2{bottom:911.440000pt;}
.y101{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.yb1{bottom:927.040000pt;}
.y2f{bottom:935.440000pt;}
.ye1{bottom:942.720000pt;}
.y100{bottom:943.040000pt;}
.y9d{bottom:943.440000pt;}
.yb0{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.yff{bottom:958.720000pt;}
.ye0{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h12{height:51.073437pt;}
.h11{height:54.927899pt;}
.hb{height:54.960000pt;}
.h19{height:55.631875pt;}
.ha{height:60.961875pt;}
.h9{height:63.128437pt;}
.h4{height:64.875937pt;}
.h5{height:72.394063pt;}
.h15{height:82.160000pt;}
.hf{height:101.760000pt;}
.h14{height:144.720000pt;}
.hd{height:195.600000pt;}
.h13{height:195.626667pt;}
.he{height:211.226667pt;}
.h16{height:226.826667pt;}
.h17{height:242.480000pt;}
.h10{height:258.240000pt;}
.h18{height:320.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:81.120000pt;}
.w5{width:146.986667pt;}
.w4{width:163.466667pt;}
.w6{width:278.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.xa{left:8.080000pt;}
.xb{left:26.960000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.x7{left:142.960000pt;}
.x2{left:180.266655pt;}
.x5{left:303.706655pt;}
.x8{left:307.066667pt;}
.x9{left:454.693333pt;}
.x4{left:601.013322pt;}
.x3{left:704.053322pt;}
}




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