
    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_481331eabb7f7f82e206994f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_53c4ad7f35ee335d08375ca3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_e7bf57797784df9f71abd50f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe193a97988ae08480de3eb9.woff2')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_eee77bad497247c732f02fcd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5149384f2b28ae66eb70dc80.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0aa776cb45eb4b6f03463217.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_1498964da2adbdb0d26f61c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29bcccb48332bd73bf0695ad.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cc4d223ac275605607e522c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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;}
.ls9{letter-spacing:-0.774000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.100200px;}
.lse{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.073440px;}
.ls20{letter-spacing:0.082560px;}
.ls17{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls22{letter-spacing:0.226560px;}
.ls13{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.286560px;}
.ls1{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.513600px;}
.ls1a{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.613440px;}
.lsc{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.826560px;}
.ls15{letter-spacing:0.828000px;}
.ls27{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.924000px;}
.ls1e{letter-spacing:0.978000px;}
.ls28{letter-spacing:1.039680px;}
.lsb{letter-spacing:1.080000px;}
.ls6{letter-spacing:2.424000px;}
.ls7{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls5{letter-spacing:3.144000px;}
.ls23{letter-spacing:4.500000px;}
.ls3{letter-spacing:5.196000px;}
.ls26{letter-spacing:6.660000px;}
.ls10{letter-spacing:65.442720px;}
.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:-19.642080px;}
.ws1{word-spacing:-18.922080px;}
.ws6{word-spacing:-16.020000px;}
.ws8{word-spacing:-15.864000px;}
.wse{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.453600px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.839800px;}
.ws5{word-spacing:-14.833200px;}
.ws13{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.479800px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._e{width:5.526720px;}
._14{width:6.546720px;}
._11{width:7.550400px;}
._f{width:8.674800px;}
._10{width:9.725040px;}
._8{width:10.775520px;}
._7{width:11.892240px;}
._d{width:13.744800px;}
._a{width:16.223760px;}
._9{width:17.270640px;}
._6{width:19.063440px;}
._15{width:20.235600px;}
._13{width:21.573360px;}
._12{width:23.067360px;}
._18{width:24.083280px;}
._17{width:25.218720px;}
._1c{width:27.131040px;}
._b{width:28.445280px;}
._c{width:29.461680px;}
._2a{width:30.767280px;}
._24{width:36.702240px;}
._25{width:38.425680px;}
._16{width:41.772240px;}
._39{width:44.769840px;}
._19{width:46.336320px;}
._1a{width:47.808000px;}
._1b{width:49.323120px;}
._22{width:50.623680px;}
._26{width:52.848720px;}
._27{width:55.517040px;}
._28{width:57.030240px;}
._35{width:87.667920px;}
._36{width:89.231040px;}
._2c{width:93.582000px;}
._2b{width:94.839120px;}
._2d{width:96.160560px;}
._23{width:105.127440px;}
._2f{width:106.800720px;}
._2e{width:107.807040px;}
._30{width:109.191120px;}
._34{width:111.247920px;}
._33{width:142.106640px;}
._31{width:143.663040px;}
._32{width:146.057520px;}
._37{width:172.646640px;}
._38{width:173.915520px;}
._29{width:181.670400px;}
._1d{width:183.569520px;}
._1e{width:185.569200px;}
._21{width:261.579360px;}
._20{width:262.824480px;}
._1f{width:398.001600px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc8{color:rgb(33,74,135);}
.fc7{color:rgb(0,32,96);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc6{color:rgb(51,51,51);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.ya9{bottom:3.234000px;}
.ya7{bottom:3.240000px;}
.y12{bottom:3.420000px;}
.yaa{bottom:3.594000px;}
.ya5{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.ya4{bottom:20.520000px;}
.y9d{bottom:20.700000px;}
.ybb{bottom:20.745000px;}
.y17{bottom:20.880000px;}
.y2d{bottom:21.060000px;}
.y30{bottom:21.105000px;}
.y2{bottom:28.980000px;}
.y9c{bottom:37.980000px;}
.y31{bottom:38.025000px;}
.y16{bottom:38.160000px;}
.y2c{bottom:38.340000px;}
.y2f{bottom:38.385000px;}
.y9b{bottom:55.305000px;}
.y15{bottom:55.440000px;}
.y2b{bottom:55.620000px;}
.yb{bottom:56.700000px;}
.y39{bottom:71.280000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.y2a{bottom:72.900000px;}
.ya{bottom:73.980000px;}
.y38{bottom:88.200000px;}
.y11c{bottom:89.640000px;}
.y29{bottom:90.000000px;}
.y37{bottom:105.840000px;}
.y28{bottom:107.280000px;}
.yac{bottom:111.456000px;}
.y119{bottom:122.976000px;}
.y36{bottom:123.120000px;}
.y96{bottom:123.336000px;}
.ye5{bottom:124.056000px;}
.y27{bottom:124.560000px;}
.y58{bottom:128.376000px;}
.yab{bottom:129.456000px;}
.y118{bottom:140.256000px;}
.y35{bottom:140.400000px;}
.y95{bottom:140.616000px;}
.ye4{bottom:141.336000px;}
.y26{bottom:141.840000px;}
.y57{bottom:145.476000px;}
.ya8{bottom:147.456000px;}
.y34{bottom:157.500000px;}
.yeb{bottom:157.530000px;}
.y94{bottom:157.890000px;}
.ye3{bottom:158.610000px;}
.y25{bottom:159.120000px;}
.y56{bottom:162.750000px;}
.ya6{bottom:165.450000px;}
.y33{bottom:174.780000px;}
.y117{bottom:174.810000px;}
.y93{bottom:175.170000px;}
.ye2{bottom:175.890000px;}
.y24{bottom:176.400000px;}
.y55{bottom:180.030000px;}
.ya3{bottom:183.450000px;}
.y32{bottom:191.700000px;}
.y116{bottom:192.090000px;}
.y92{bottom:192.450000px;}
.ye1{bottom:193.170000px;}
.y23{bottom:193.500000px;}
.y54{bottom:197.310000px;}
.y11e{bottom:207.390000px;}
.y115{bottom:209.370000px;}
.y91{bottom:209.550000px;}
.ye0{bottom:210.450000px;}
.y22{bottom:210.780000px;}
.y53{bottom:214.590000px;}
.ya2{bottom:218.550000px;}
.y11d{bottom:221.610000px;}
.yee{bottom:226.470000px;}
.y90{bottom:226.830000px;}
.ydf{bottom:227.550000px;}
.y21{bottom:228.105000px;}
.y52{bottom:231.690000px;}
.ya1{bottom:236.550000px;}
.y11b{bottom:238.890000px;}
.yed{bottom:243.750000px;}
.y8f{bottom:244.110000px;}
.yde{bottom:244.470000px;}
.y20{bottom:245.385000px;}
.y51{bottom:248.970000px;}
.ya0{bottom:254.550000px;}
.y114{bottom:261.030000px;}
.y8e{bottom:261.390000px;}
.ydd{bottom:262.110000px;}
.y1f{bottom:262.665000px;}
.y50{bottom:266.250000px;}
.y9f{bottom:272.550000px;}
.y113{bottom:278.310000px;}
.y8d{bottom:278.670000px;}
.ydc{bottom:279.390000px;}
.y1e{bottom:279.765000px;}
.y4f{bottom:283.530000px;}
.y9e{bottom:290.550000px;}
.y112{bottom:295.590000px;}
.y8c{bottom:295.950000px;}
.ydb{bottom:296.670000px;}
.y1d{bottom:297.045000px;}
.y4e{bottom:300.810000px;}
.y9a{bottom:308.550000px;}
.y111{bottom:312.870000px;}
.y8b{bottom:313.050000px;}
.yda{bottom:313.950000px;}
.y1c{bottom:314.325000px;}
.y4d{bottom:318.090000px;}
.y110{bottom:329.970000px;}
.y8a{bottom:330.330000px;}
.yd9{bottom:331.050000px;}
.y1b{bottom:331.605000px;}
.y4c{bottom:335.190000px;}
.y11a{bottom:343.110000px;}
.y10f{bottom:347.250000px;}
.y89{bottom:347.610000px;}
.yd8{bottom:348.330000px;}
.y4b{bottom:352.470000px;}
.ye8{bottom:364.575000px;}
.y88{bottom:364.935000px;}
.yd7{bottom:365.295000px;}
.y4a{bottom:369.795000px;}
.y10e{bottom:381.855000px;}
.y87{bottom:382.215000px;}
.yd6{bottom:382.935000px;}
.y49{bottom:387.075000px;}
.yec{bottom:399.135000px;}
.y86{bottom:399.495000px;}
.yd5{bottom:400.215000px;}
.y48{bottom:404.355000px;}
.y10d{bottom:416.235000px;}
.y85{bottom:416.595000px;}
.yd4{bottom:417.495000px;}
.y47{bottom:421.635000px;}
.y10c{bottom:433.515000px;}
.y84{bottom:433.875000px;}
.yd3{bottom:434.235000px;}
.y46{bottom:438.735000px;}
.y10b{bottom:450.795000px;}
.y83{bottom:451.155000px;}
.yd2{bottom:451.875000px;}
.y45{bottom:456.015000px;}
.y10a{bottom:468.075000px;}
.y82{bottom:468.435000px;}
.yd1{bottom:469.155000px;}
.y44{bottom:473.295000px;}
.y109{bottom:485.355000px;}
.y81{bottom:485.715000px;}
.yd0{bottom:486.435000px;}
.y43{bottom:490.575000px;}
.y108{bottom:502.635000px;}
.y80{bottom:502.815000px;}
.ycf{bottom:503.715000px;}
.y42{bottom:507.855000px;}
.y107{bottom:519.735000px;}
.y7f{bottom:520.095000px;}
.yce{bottom:520.815000px;}
.y41{bottom:524.955000px;}
.y106{bottom:537.015000px;}
.y7e{bottom:537.375000px;}
.ycd{bottom:538.095000px;}
.y40{bottom:542.235000px;}
.y105{bottom:554.295000px;}
.y7d{bottom:554.655000px;}
.ycc{bottom:555.375000px;}
.y3f{bottom:559.515000px;}
.y104{bottom:571.575000px;}
.y7c{bottom:571.935000px;}
.ycb{bottom:572.295000px;}
.y3e{bottom:576.795000px;}
.y103{bottom:588.855000px;}
.y7b{bottom:589.215000px;}
.yca{bottom:589.935000px;}
.y3d{bottom:594.075000px;}
.y102{bottom:606.135000px;}
.y7a{bottom:606.315000px;}
.yc9{bottom:607.215000px;}
.y3c{bottom:611.355000px;}
.ye7{bottom:623.265000px;}
.y79{bottom:623.625000px;}
.yc8{bottom:624.345000px;}
.y3b{bottom:628.125000px;}
.y101{bottom:640.545000px;}
.y78{bottom:640.905000px;}
.yc7{bottom:641.625000px;}
.y3a{bottom:645.405000px;}
.y100{bottom:657.825000px;}
.y77{bottom:658.185000px;}
.yc6{bottom:658.905000px;}
.y1a{bottom:659.985000px;}
.yff{bottom:675.105000px;}
.y76{bottom:675.465000px;}
.yc5{bottom:676.185000px;}
.y99{bottom:692.385000px;}
.y75{bottom:692.745000px;}
.yc4{bottom:693.465000px;}
.yfe{bottom:709.485000px;}
.y74{bottom:709.845000px;}
.yc3{bottom:710.385000px;}
.yfd{bottom:726.765000px;}
.y73{bottom:727.125000px;}
.yc2{bottom:727.845000px;}
.yc1{bottom:742.245000px;}
.yfc{bottom:744.045000px;}
.y72{bottom:744.405000px;}
.yc0{bottom:760.245000px;}
.yfb{bottom:761.325000px;}
.y71{bottom:761.685000px;}
.ybf{bottom:778.245000px;}
.yfa{bottom:778.605000px;}
.y70{bottom:778.965000px;}
.yea{bottom:795.705000px;}
.yf9{bottom:795.885000px;}
.y6f{bottom:796.065000px;}
.yf8{bottom:812.985000px;}
.y6e{bottom:813.345000px;}
.ybe{bottom:814.065000px;}
.yf7{bottom:830.265000px;}
.y6d{bottom:830.625000px;}
.ybd{bottom:832.065000px;}
.yf6{bottom:847.545000px;}
.y6c{bottom:847.905000px;}
.ybc{bottom:850.065000px;}
.yf5{bottom:864.825000px;}
.y6b{bottom:865.185000px;}
.y2e{bottom:866.265000px;}
.yba{bottom:868.065000px;}
.yf4{bottom:882.150000px;}
.y6a{bottom:882.510000px;}
.ye9{bottom:899.250000px;}
.yf3{bottom:899.430000px;}
.y69{bottom:899.610000px;}
.yb9{bottom:903.390000px;}
.yf2{bottom:916.530000px;}
.y68{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.yb8{bottom:921.390000px;}
.yf1{bottom:933.810000px;}
.y67{bottom:934.170000px;}
.yb7{bottom:939.390000px;}
.ye6{bottom:951.090000px;}
.y66{bottom:951.450000px;}
.yb6{bottom:957.390000px;}
.yf0{bottom:968.370000px;}
.y65{bottom:968.730000px;}
.yb5{bottom:975.390000px;}
.yef{bottom:985.650000px;}
.y64{bottom:986.010000px;}
.yb4{bottom:993.390000px;}
.y63{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.yb3{bottom:1011.390000px;}
.y98{bottom:1020.030000px;}
.y62{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.yb2{bottom:1029.390000px;}
.y61{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.yb1{bottom:1047.390000px;}
.y60{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.yb0{bottom:1065.390000px;}
.y5f{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.yaf{bottom:1083.390000px;}
.y5e{bottom:1089.510000px;}
.yae{bottom:1101.390000px;}
.yc{bottom:1104.450000px;}
.y5d{bottom:1106.610000px;}
.y5c{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.yad{bottom:1136.700000px;}
.y5b{bottom:1140.840000px;}
.y97{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y5a{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y59{bottom:1196.100000px;}
.h17{height:17.100000px;}
.hc{height:17.280000px;}
.h19{height:17.316000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h16{height:34.380000px;}
.h18{height:34.596000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h10{height:41.493516px;}
.h13{height:41.522695px;}
.h2{height:44.280000px;}
.h11{height:51.876000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h14{height:61.423863px;}
.h3{height:66.757500px;}
.h15{height:69.156000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h1a{height:103.500000px;}
.h12{height:205.560000px;}
.hf{height:345.090000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w9{width:43.200000px;}
.w11{width:66.096000px;}
.wb{width:68.616000px;}
.wf{width:72.756000px;}
.wa{width:73.260000px;}
.we{width:80.460000px;}
.w10{width:83.340000px;}
.wc{width:100.620000px;}
.wd{width:104.616000px;}
.w6{width:176.250000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.w13{width:337.755000px;}
.w14{width:340.275000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w12{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xe{left:7.020000px;}
.xb{left:8.100000px;}
.x5{left:34.920000px;}
.x1{left:90.396000px;}
.x10{left:99.936000px;}
.x7{left:108.036000px;}
.x9{left:110.556000px;}
.xf{left:129.276000px;}
.x11{left:143.136000px;}
.x19{left:150.690000px;}
.xa{left:193.710000px;}
.x12{left:216.390000px;}
.x1a{left:274.539000px;}
.xc{left:283.755000px;}
.x13{left:285.015000px;}
.x3{left:306.975000px;}
.xd{left:314.895000px;}
.x14{left:385.815000px;}
.x1b{left:445.245000px;}
.x15{left:490.425000px;}
.x16{left:570.885000px;}
.x6{left:576.825000px;}
.x17{left:643.650000px;}
.x18{left:726.990000px;}
.x8{left:770.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.688000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.089067pt;}
.lse{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.065280pt;}
.ls20{letter-spacing:0.073387pt;}
.ls17{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls22{letter-spacing:0.201387pt;}
.ls13{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.254720pt;}
.ls1{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.456533pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.545280pt;}
.lsc{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.734720pt;}
.ls15{letter-spacing:0.736000pt;}
.ls27{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.821333pt;}
.ls1e{letter-spacing:0.869333pt;}
.ls28{letter-spacing:0.924160pt;}
.lsb{letter-spacing:0.960000pt;}
.ls6{letter-spacing:2.154667pt;}
.ls7{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls5{letter-spacing:2.794667pt;}
.ls23{letter-spacing:4.000000pt;}
.ls3{letter-spacing:4.618667pt;}
.ls26{letter-spacing:5.920000pt;}
.ls10{letter-spacing:58.171307pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-16.819627pt;}
.ws6{word-spacing:-14.240000pt;}
.ws8{word-spacing:-14.101333pt;}
.wse{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.736533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.190933pt;}
.ws5{word-spacing:-13.185067pt;}
.ws13{word-spacing:-13.096533pt;}
.ws3{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.870933pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._e{width:4.912640pt;}
._14{width:5.819307pt;}
._11{width:6.711467pt;}
._f{width:7.710933pt;}
._10{width:8.644480pt;}
._8{width:9.578240pt;}
._7{width:10.570880pt;}
._d{width:12.217600pt;}
._a{width:14.421120pt;}
._9{width:15.351680pt;}
._6{width:16.945280pt;}
._15{width:17.987200pt;}
._13{width:19.176320pt;}
._12{width:20.504320pt;}
._18{width:21.407360pt;}
._17{width:22.416640pt;}
._1c{width:24.116480pt;}
._b{width:25.284693pt;}
._c{width:26.188160pt;}
._2a{width:27.348693pt;}
._24{width:32.624213pt;}
._25{width:34.156160pt;}
._16{width:37.130880pt;}
._39{width:39.795413pt;}
._19{width:41.187840pt;}
._1a{width:42.496000pt;}
._1b{width:43.842773pt;}
._22{width:44.998827pt;}
._26{width:46.976640pt;}
._27{width:49.348480pt;}
._28{width:50.693547pt;}
._35{width:77.927040pt;}
._36{width:79.316480pt;}
._2c{width:83.184000pt;}
._2b{width:84.301440pt;}
._2d{width:85.476053pt;}
._23{width:93.446613pt;}
._2f{width:94.933973pt;}
._2e{width:95.828480pt;}
._30{width:97.058773pt;}
._34{width:98.887040pt;}
._33{width:126.317013pt;}
._31{width:127.700480pt;}
._32{width:129.828907pt;}
._37{width:153.463680pt;}
._38{width:154.591573pt;}
._29{width:161.484800pt;}
._1d{width:163.172907pt;}
._1e{width:164.950400pt;}
._21{width:232.514987pt;}
._20{width:233.621760pt;}
._1f{width:353.779200pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.ya9{bottom:2.874667pt;}
.ya7{bottom:2.880000pt;}
.y12{bottom:3.040000pt;}
.yaa{bottom:3.194667pt;}
.ya5{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.ya4{bottom:18.240000pt;}
.y9d{bottom:18.400000pt;}
.ybb{bottom:18.440000pt;}
.y17{bottom:18.560000pt;}
.y2d{bottom:18.720000pt;}
.y30{bottom:18.760000pt;}
.y2{bottom:25.760000pt;}
.y9c{bottom:33.760000pt;}
.y31{bottom:33.800000pt;}
.y16{bottom:33.920000pt;}
.y2c{bottom:34.080000pt;}
.y2f{bottom:34.120000pt;}
.y9b{bottom:49.160000pt;}
.y15{bottom:49.280000pt;}
.y2b{bottom:49.440000pt;}
.yb{bottom:50.400000pt;}
.y39{bottom:63.360000pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.y2a{bottom:64.800000pt;}
.ya{bottom:65.760000pt;}
.y38{bottom:78.400000pt;}
.y11c{bottom:79.680000pt;}
.y29{bottom:80.000000pt;}
.y37{bottom:94.080000pt;}
.y28{bottom:95.360000pt;}
.yac{bottom:99.072000pt;}
.y119{bottom:109.312000pt;}
.y36{bottom:109.440000pt;}
.y96{bottom:109.632000pt;}
.ye5{bottom:110.272000pt;}
.y27{bottom:110.720000pt;}
.y58{bottom:114.112000pt;}
.yab{bottom:115.072000pt;}
.y118{bottom:124.672000pt;}
.y35{bottom:124.800000pt;}
.y95{bottom:124.992000pt;}
.ye4{bottom:125.632000pt;}
.y26{bottom:126.080000pt;}
.y57{bottom:129.312000pt;}
.ya8{bottom:131.072000pt;}
.y34{bottom:140.000000pt;}
.yeb{bottom:140.026667pt;}
.y94{bottom:140.346667pt;}
.ye3{bottom:140.986667pt;}
.y25{bottom:141.440000pt;}
.y56{bottom:144.666667pt;}
.ya6{bottom:147.066667pt;}
.y33{bottom:155.360000pt;}
.y117{bottom:155.386667pt;}
.y93{bottom:155.706667pt;}
.ye2{bottom:156.346667pt;}
.y24{bottom:156.800000pt;}
.y55{bottom:160.026667pt;}
.ya3{bottom:163.066667pt;}
.y32{bottom:170.400000pt;}
.y116{bottom:170.746667pt;}
.y92{bottom:171.066667pt;}
.ye1{bottom:171.706667pt;}
.y23{bottom:172.000000pt;}
.y54{bottom:175.386667pt;}
.y11e{bottom:184.346667pt;}
.y115{bottom:186.106667pt;}
.y91{bottom:186.266667pt;}
.ye0{bottom:187.066667pt;}
.y22{bottom:187.360000pt;}
.y53{bottom:190.746667pt;}
.ya2{bottom:194.266667pt;}
.y11d{bottom:196.986667pt;}
.yee{bottom:201.306667pt;}
.y90{bottom:201.626667pt;}
.ydf{bottom:202.266667pt;}
.y21{bottom:202.760000pt;}
.y52{bottom:205.946667pt;}
.ya1{bottom:210.266667pt;}
.y11b{bottom:212.346667pt;}
.yed{bottom:216.666667pt;}
.y8f{bottom:216.986667pt;}
.yde{bottom:217.306667pt;}
.y20{bottom:218.120000pt;}
.y51{bottom:221.306667pt;}
.ya0{bottom:226.266667pt;}
.y114{bottom:232.026667pt;}
.y8e{bottom:232.346667pt;}
.ydd{bottom:232.986667pt;}
.y1f{bottom:233.480000pt;}
.y50{bottom:236.666667pt;}
.y9f{bottom:242.266667pt;}
.y113{bottom:247.386667pt;}
.y8d{bottom:247.706667pt;}
.ydc{bottom:248.346667pt;}
.y1e{bottom:248.680000pt;}
.y4f{bottom:252.026667pt;}
.y9e{bottom:258.266667pt;}
.y112{bottom:262.746667pt;}
.y8c{bottom:263.066667pt;}
.ydb{bottom:263.706667pt;}
.y1d{bottom:264.040000pt;}
.y4e{bottom:267.386667pt;}
.y9a{bottom:274.266667pt;}
.y111{bottom:278.106667pt;}
.y8b{bottom:278.266667pt;}
.yda{bottom:279.066667pt;}
.y1c{bottom:279.400000pt;}
.y4d{bottom:282.746667pt;}
.y110{bottom:293.306667pt;}
.y8a{bottom:293.626667pt;}
.yd9{bottom:294.266667pt;}
.y1b{bottom:294.760000pt;}
.y4c{bottom:297.946667pt;}
.y11a{bottom:304.986667pt;}
.y10f{bottom:308.666667pt;}
.y89{bottom:308.986667pt;}
.yd8{bottom:309.626667pt;}
.y4b{bottom:313.306667pt;}
.ye8{bottom:324.066667pt;}
.y88{bottom:324.386667pt;}
.yd7{bottom:324.706667pt;}
.y4a{bottom:328.706667pt;}
.y10e{bottom:339.426667pt;}
.y87{bottom:339.746667pt;}
.yd6{bottom:340.386667pt;}
.y49{bottom:344.066667pt;}
.yec{bottom:354.786667pt;}
.y86{bottom:355.106667pt;}
.yd5{bottom:355.746667pt;}
.y48{bottom:359.426667pt;}
.y10d{bottom:369.986667pt;}
.y85{bottom:370.306667pt;}
.yd4{bottom:371.106667pt;}
.y47{bottom:374.786667pt;}
.y10c{bottom:385.346667pt;}
.y84{bottom:385.666667pt;}
.yd3{bottom:385.986667pt;}
.y46{bottom:389.986667pt;}
.y10b{bottom:400.706667pt;}
.y83{bottom:401.026667pt;}
.yd2{bottom:401.666667pt;}
.y45{bottom:405.346667pt;}
.y10a{bottom:416.066667pt;}
.y82{bottom:416.386667pt;}
.yd1{bottom:417.026667pt;}
.y44{bottom:420.706667pt;}
.y109{bottom:431.426667pt;}
.y81{bottom:431.746667pt;}
.yd0{bottom:432.386667pt;}
.y43{bottom:436.066667pt;}
.y108{bottom:446.786667pt;}
.y80{bottom:446.946667pt;}
.ycf{bottom:447.746667pt;}
.y42{bottom:451.426667pt;}
.y107{bottom:461.986667pt;}
.y7f{bottom:462.306667pt;}
.yce{bottom:462.946667pt;}
.y41{bottom:466.626667pt;}
.y106{bottom:477.346667pt;}
.y7e{bottom:477.666667pt;}
.ycd{bottom:478.306667pt;}
.y40{bottom:481.986667pt;}
.y105{bottom:492.706667pt;}
.y7d{bottom:493.026667pt;}
.ycc{bottom:493.666667pt;}
.y3f{bottom:497.346667pt;}
.y104{bottom:508.066667pt;}
.y7c{bottom:508.386667pt;}
.ycb{bottom:508.706667pt;}
.y3e{bottom:512.706667pt;}
.y103{bottom:523.426667pt;}
.y7b{bottom:523.746667pt;}
.yca{bottom:524.386667pt;}
.y3d{bottom:528.066667pt;}
.y102{bottom:538.786667pt;}
.y7a{bottom:538.946667pt;}
.yc9{bottom:539.746667pt;}
.y3c{bottom:543.426667pt;}
.ye7{bottom:554.013333pt;}
.y79{bottom:554.333333pt;}
.yc8{bottom:554.973333pt;}
.y3b{bottom:558.333333pt;}
.y101{bottom:569.373333pt;}
.y78{bottom:569.693333pt;}
.yc7{bottom:570.333333pt;}
.y3a{bottom:573.693333pt;}
.y100{bottom:584.733333pt;}
.y77{bottom:585.053333pt;}
.yc6{bottom:585.693333pt;}
.y1a{bottom:586.653333pt;}
.yff{bottom:600.093333pt;}
.y76{bottom:600.413333pt;}
.yc5{bottom:601.053333pt;}
.y99{bottom:615.453333pt;}
.y75{bottom:615.773333pt;}
.yc4{bottom:616.413333pt;}
.yfe{bottom:630.653333pt;}
.y74{bottom:630.973333pt;}
.yc3{bottom:631.453333pt;}
.yfd{bottom:646.013333pt;}
.y73{bottom:646.333333pt;}
.yc2{bottom:646.973333pt;}
.yc1{bottom:659.773333pt;}
.yfc{bottom:661.373333pt;}
.y72{bottom:661.693333pt;}
.yc0{bottom:675.773333pt;}
.yfb{bottom:676.733333pt;}
.y71{bottom:677.053333pt;}
.ybf{bottom:691.773333pt;}
.yfa{bottom:692.093333pt;}
.y70{bottom:692.413333pt;}
.yea{bottom:707.293333pt;}
.yf9{bottom:707.453333pt;}
.y6f{bottom:707.613333pt;}
.yf8{bottom:722.653333pt;}
.y6e{bottom:722.973333pt;}
.ybe{bottom:723.613333pt;}
.yf7{bottom:738.013333pt;}
.y6d{bottom:738.333333pt;}
.ybd{bottom:739.613333pt;}
.yf6{bottom:753.373333pt;}
.y6c{bottom:753.693333pt;}
.ybc{bottom:755.613333pt;}
.yf5{bottom:768.733333pt;}
.y6b{bottom:769.053333pt;}
.y2e{bottom:770.013333pt;}
.yba{bottom:771.613333pt;}
.yf4{bottom:784.133333pt;}
.y6a{bottom:784.453333pt;}
.ye9{bottom:799.333333pt;}
.yf3{bottom:799.493333pt;}
.y69{bottom:799.653333pt;}
.yb9{bottom:803.013333pt;}
.yf2{bottom:814.693333pt;}
.y68{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.yb8{bottom:819.013333pt;}
.yf1{bottom:830.053333pt;}
.y67{bottom:830.373333pt;}
.yb7{bottom:835.013333pt;}
.ye6{bottom:845.413333pt;}
.y66{bottom:845.733333pt;}
.yb6{bottom:851.013333pt;}
.yf0{bottom:860.773333pt;}
.y65{bottom:861.093333pt;}
.yb5{bottom:867.013333pt;}
.yef{bottom:876.133333pt;}
.y64{bottom:876.453333pt;}
.yb4{bottom:883.013333pt;}
.y63{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.yb3{bottom:899.013333pt;}
.y98{bottom:906.693333pt;}
.y62{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.yb2{bottom:915.013333pt;}
.y61{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.yb1{bottom:931.013333pt;}
.y60{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.yb0{bottom:947.013333pt;}
.y5f{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.yaf{bottom:963.013333pt;}
.y5e{bottom:968.453333pt;}
.yae{bottom:979.013333pt;}
.yc{bottom:981.733333pt;}
.y5d{bottom:983.653333pt;}
.y5c{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.yad{bottom:1010.400000pt;}
.y5b{bottom:1014.080000pt;}
.y97{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y5a{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y59{bottom:1063.200000pt;}
.h17{height:15.200000pt;}
.hc{height:15.360000pt;}
.h19{height:15.392000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h16{height:30.560000pt;}
.h18{height:30.752000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h10{height:36.883125pt;}
.h13{height:36.909063pt;}
.h2{height:39.360000pt;}
.h11{height:46.112000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h14{height:54.598989pt;}
.h3{height:59.340000pt;}
.h15{height:61.472000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h1a{height:92.000000pt;}
.h12{height:182.720000pt;}
.hf{height:306.746667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w9{width:38.400000pt;}
.w11{width:58.752000pt;}
.wb{width:60.992000pt;}
.wf{width:64.672000pt;}
.wa{width:65.120000pt;}
.we{width:71.520000pt;}
.w10{width:74.080000pt;}
.wc{width:89.440000pt;}
.wd{width:92.992000pt;}
.w6{width:156.666667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.w13{width:300.226667pt;}
.w14{width:302.466667pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w12{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xe{left:6.240000pt;}
.xb{left:7.200000pt;}
.x5{left:31.040000pt;}
.x1{left:80.352000pt;}
.x10{left:88.832000pt;}
.x7{left:96.032000pt;}
.x9{left:98.272000pt;}
.xf{left:114.912000pt;}
.x11{left:127.232000pt;}
.x19{left:133.946667pt;}
.xa{left:172.186667pt;}
.x12{left:192.346667pt;}
.x1a{left:244.034667pt;}
.xc{left:252.226667pt;}
.x13{left:253.346667pt;}
.x3{left:272.866667pt;}
.xd{left:279.906667pt;}
.x14{left:342.946667pt;}
.x1b{left:395.773333pt;}
.x15{left:435.933333pt;}
.x16{left:507.453333pt;}
.x6{left:512.733333pt;}
.x17{left:572.133333pt;}
.x18{left:646.213333pt;}
.x8{left:684.480000pt;}
}




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