
    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_b8c327195112a0643c21cae7.woff')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_1676850307d9dfa8f911259b.woff')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_8b5e667cc4eabe0278b8d897.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_538ebe50260ca68936260e11.woff')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_aecc6f5787f94b8acbf11e7a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21b7ad5c10173bb1b188621a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ff3e753a2e52d1cb79d0390.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_bb1ef3236d75a6e659f4e6ba.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls10{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.541200px;}
.ls13{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._12{margin-left:-4.032480px;}
._10{margin-left:-2.224440px;}
._0{margin-left:-1.110000px;}
._1{width:1.021356px;}
._8{width:2.627280px;}
._3{width:3.908401px;}
._2{width:4.929600px;}
._4{width:6.039600px;}
._a{width:7.897682px;}
._6{width:9.859800px;}
._7{width:11.121599px;}
._13{width:12.178808px;}
._e{width:15.210600px;}
._f{width:16.352400px;}
._18{width:17.386369px;}
._17{width:18.817560px;}
._11{width:20.441281px;}
._9{width:21.763200px;}
._b{width:22.965600px;}
._5{width:24.649200px;}
._d{width:26.304600px;}
._c{width:27.502800px;}
._2b{width:29.458800px;}
._39{width:30.721320px;}
._15{width:34.208280px;}
._14{width:35.378400px;}
._16{width:36.426564px;}
._23{width:37.575000px;}
._29{width:38.657160px;}
._2c{width:41.122080px;}
._20{width:43.226280px;}
._3a{width:47.013840px;}
._21{width:52.725240px;}
._26{width:56.175840px;}
._35{width:59.061600px;}
._19{width:62.344440px;}
._28{width:63.907560px;}
._31{width:66.937320px;}
._38{width:73.105920px;}
._3b{width:74.726760px;}
._33{width:75.751200px;}
._25{width:77.855400px;}
._1b{width:79.839360px;}
._1c{width:81.101880px;}
._24{width:89.939520px;}
._1d{width:94.809240px;}
._1a{width:96.530760px;}
._2a{width:112.183920px;}
._1e{width:122.163840px;}
._36{width:125.650800px;}
._22{width:137.374200px;}
._1f{width:141.582600px;}
._27{width:158.295960px;}
._30{width:187.394040px;}
._2e{width:194.067360px;}
._2d{width:211.442040px;}
._2f{width:244.688400px;}
._37{width:258.395760px;}
._32{width:272.463840px;}
._34{width:282.864600px;}
._3c{width:290.319480px;}
.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;}
.yb1{bottom:7.830000px;}
.yc5{bottom:7.860000px;}
.yae{bottom:7.920000px;}
.yb8{bottom:7.950000px;}
.ybe{bottom:25.380000px;}
.yad{bottom:25.470000px;}
.yb7{bottom:25.500000px;}
.yb0{bottom:43.020000px;}
.yc4{bottom:43.050000px;}
.yb4{bottom:43.110000px;}
.ybd{bottom:60.570000px;}
.yc1{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y136{bottom:111.810000px;}
.y104{bottom:112.530000px;}
.y8b{bottom:119.730000px;}
.y5b{bottom:121.170000px;}
.ye8{bottom:129.000000px;}
.y135{bottom:129.450000px;}
.y28{bottom:129.630000px;}
.y103{bottom:130.170000px;}
.y8a{bottom:137.280000px;}
.yd4{bottom:139.350000px;}
.y124{bottom:139.530000px;}
.ye7{bottom:146.550000px;}
.y134{bottom:147.000000px;}
.y27{bottom:147.270000px;}
.y102{bottom:147.720000px;}
.y5a{bottom:156.720000px;}
.yd3{bottom:156.900000px;}
.y123{bottom:157.170000px;}
.yb2{bottom:157.260000px;}
.y89{bottom:163.830000px;}
.ye6{bottom:164.190000px;}
.y101{bottom:165.270000px;}
.y59{bottom:174.270000px;}
.yd2{bottom:174.450000px;}
.y122{bottom:174.720000px;}
.ye5{bottom:181.740000px;}
.y133{bottom:182.550000px;}
.y26{bottom:182.820000px;}
.y100{bottom:182.910000px;}
.y58{bottom:191.910000px;}
.yd1{bottom:192.090000px;}
.y121{bottom:192.270000px;}
.y88{bottom:196.500000px;}
.ye4{bottom:199.380000px;}
.y25{bottom:200.370000px;}
.yff{bottom:200.460000px;}
.y57{bottom:209.460000px;}
.yd0{bottom:209.640000px;}
.y120{bottom:209.910000px;}
.y132{bottom:214.770000px;}
.ye3{bottom:216.930000px;}
.y24{bottom:218.010000px;}
.yaf{bottom:219.810000px;}
.y56{bottom:227.100000px;}
.y11f{bottom:227.460000px;}
.y159{bottom:232.050000px;}
.y87{bottom:232.410000px;}
.ye2{bottom:234.480000px;}
.y23{bottom:235.560000px;}
.ycf{bottom:236.190000px;}
.y55{bottom:244.650000px;}
.y11e{bottom:245.100000px;}
.y158{bottom:249.600000px;}
.ye1{bottom:252.120000px;}
.y22{bottom:253.200000px;}
.y54{bottom:262.200000px;}
.yfe{bottom:262.650000px;}
.y157{bottom:267.240000px;}
.yce{bottom:268.860000px;}
.y21{bottom:270.750000px;}
.ye0{bottom:278.670000px;}
.y53{bottom:279.840000px;}
.yfd{bottom:280.200000px;}
.y86{bottom:280.650000px;}
.yac{bottom:282.270000px;}
.y11d{bottom:289.200000px;}
.y156{bottom:293.790000px;}
.yfc{bottom:297.840000px;}
.y85{bottom:298.200000px;}
.ycd{bottom:304.410000px;}
.y20{bottom:306.300000px;}
.y52{bottom:306.390000px;}
.y155{bottom:311.430000px;}
.ydf{bottom:314.580000px;}
.yfb{bottom:315.390000px;}
.y84{bottom:315.840000px;}
.ycc{bottom:321.960000px;}
.y1f{bottom:323.940000px;}
.y11c{bottom:324.840000px;}
.yfa{bottom:332.940000px;}
.y83{bottom:333.390000px;}
.y154{bottom:337.980000px;}
.ycb{bottom:339.600000px;}
.y1e{bottom:341.490000px;}
.y51{bottom:341.940000px;}
.y11b{bottom:342.390000px;}
.yab{bottom:348.600000px;}
.yf9{bottom:350.580000px;}
.y82{bottom:350.940000px;}
.y153{bottom:355.530000px;}
.yca{bottom:357.150000px;}
.y1d{bottom:359.130000px;}
.y50{bottom:359.580000px;}
.y11a{bottom:359.940000px;}
.yde{bottom:362.910000px;}
.yf8{bottom:368.130000px;}
.y81{bottom:368.580000px;}
.yc9{bottom:374.790000px;}
.y1c{bottom:376.680000px;}
.y4f{bottom:377.130000px;}
.y119{bottom:377.580000px;}
.y152{bottom:382.170000px;}
.yaa{bottom:384.150000px;}
.yf7{bottom:385.770000px;}
.y80{bottom:386.130000px;}
.yc8{bottom:392.340000px;}
.y1b{bottom:394.230000px;}
.y4e{bottom:394.770000px;}
.ydd{bottom:395.130000px;}
.y151{bottom:399.720000px;}
.ya9{bottom:401.790000px;}
.yf6{bottom:403.320000px;}
.y7f{bottom:403.770000px;}
.yc7{bottom:409.890000px;}
.y4d{bottom:412.320000px;}
.y118{bottom:412.770000px;}
.y150{bottom:417.360000px;}
.ya8{bottom:419.340000px;}
.y1a{bottom:421.140000px;}
.y7e{bottom:421.320000px;}
.y4c{bottom:429.870000px;}
.y117{bottom:430.320000px;}
.yc6{bottom:436.440000px;}
.ya7{bottom:436.890000px;}
.y7d{bottom:438.870000px;}
.y14f{bottom:443.910000px;}
.y4b{bottom:447.510000px;}
.y116{bottom:447.870000px;}
.ya6{bottom:454.530000px;}
.y14e{bottom:461.460000px;}
.y4a{bottom:465.060000px;}
.y7c{bottom:465.510000px;}
.yf5{bottom:465.780000px;}
.yc3{bottom:466.500000px;}
.y19{bottom:469.470000px;}
.ya5{bottom:472.110000px;}
.y14d{bottom:479.130000px;}
.y115{bottom:483.090000px;}
.y18{bottom:487.410000px;}
.y49{bottom:491.730000px;}
.ya4{bottom:498.750000px;}
.y114{bottom:500.730000px;}
.y7b{bottom:501.090000px;}
.y14c{bottom:505.680000px;}
.yf4{bottom:514.140000px;}
.y7a{bottom:518.730000px;}
.y14b{bottom:523.230000px;}
.y17{bottom:524.400000px;}
.y48{bottom:527.280000px;}
.yc2{bottom:528.990000px;}
.yf3{bottom:531.690000px;}
.ya3{bottom:534.300000px;}
.y79{bottom:536.280000px;}
.y16{bottom:541.950000px;}
.y47{bottom:544.830000px;}
.yf2{bottom:549.330000px;}
.y14a{bottom:549.870000px;}
.ya2{bottom:551.850000px;}
.y78{bottom:553.830000px;}
.y15{bottom:559.590000px;}
.y46{bottom:562.470000px;}
.y113{bottom:562.830000px;}
.yf1{bottom:566.880000px;}
.y149{bottom:567.420000px;}
.ya1{bottom:569.490000px;}
.y77{bottom:571.470000px;}
.y14{bottom:577.140000px;}
.y45{bottom:580.020000px;}
.y112{bottom:580.470000px;}
.yf0{bottom:584.430000px;}
.ya0{bottom:587.040000px;}
.y76{bottom:589.020000px;}
.y148{bottom:594.060000px;}
.y13{bottom:594.780000px;}
.y44{bottom:597.660000px;}
.y111{bottom:598.020000px;}
.yef{bottom:602.070000px;}
.y9f{bottom:604.590000px;}
.y75{bottom:606.660000px;}
.yc0{bottom:609.090000px;}
.y147{bottom:611.610000px;}
.y12{bottom:612.330000px;}
.y43{bottom:615.210000px;}
.y110{bottom:615.660000px;}
.yee{bottom:619.620000px;}
.y9e{bottom:622.230000px;}
.y74{bottom:624.210000px;}
.y11{bottom:629.880000px;}
.y42{bottom:632.760000px;}
.y10f{bottom:633.210000px;}
.yed{bottom:637.260000px;}
.y146{bottom:638.160000px;}
.y9d{bottom:639.780000px;}
.y73{bottom:641.760000px;}
.y10{bottom:647.520000px;}
.y41{bottom:650.400000px;}
.y10e{bottom:650.760000px;}
.yec{bottom:654.810000px;}
.yf{bottom:665.070000px;}
.y9c{bottom:666.330000px;}
.y72{bottom:668.400000px;}
.y40{bottom:676.950000px;}
.yeb{bottom:681.360000px;}
.ye{bottom:682.710000px;}
.y10d{bottom:685.950000px;}
.ybf{bottom:689.190000px;}
.y9b{bottom:699.000000px;}
.yd{bottom:700.260000px;}
.y10c{bottom:703.590000px;}
.y71{bottom:703.950000px;}
.y3f{bottom:712.590000px;}
.y145{bottom:713.400000px;}
.yea{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y10b{bottom:721.140000px;}
.y70{bottom:721.590000px;}
.y3e{bottom:730.140000px;}
.y144{bottom:730.950000px;}
.y9a{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y10a{bottom:738.690000px;}
.y6f{bottom:739.140000px;}
.y3d{bottom:747.690000px;}
.y143{bottom:748.590000px;}
.ybc{bottom:751.740000px;}
.y99{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.y109{bottom:756.330000px;}
.y6e{bottom:756.690000px;}
.y3c{bottom:765.330000px;}
.y142{bottom:766.140000px;}
.y98{bottom:769.740000px;}
.y131{bottom:773.880000px;}
.y6d{bottom:774.330000px;}
.y9{bottom:779.910000px;}
.y3b{bottom:782.880000px;}
.y141{bottom:783.690000px;}
.y97{bottom:787.290000px;}
.y6c{bottom:791.880000px;}
.y3a{bottom:800.520000px;}
.y140{bottom:801.330000px;}
.y96{bottom:804.930000px;}
.y6b{bottom:809.520000px;}
.y39{bottom:818.070000px;}
.y108{bottom:818.790000px;}
.y13f{bottom:818.880000px;}
.y95{bottom:822.480000px;}
.y6a{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.ybb{bottom:831.750000px;}
.y38{bottom:835.620000px;}
.y130{bottom:836.070000px;}
.y13e{bottom:836.520000px;}
.y94{bottom:840.030000px;}
.y69{bottom:844.620000px;}
.y37{bottom:853.260000px;}
.y12f{bottom:853.620000px;}
.y13d{bottom:854.070000px;}
.ydc{bottom:857.670000px;}
.y7{bottom:863.790000px;}
.y93{bottom:866.670000px;}
.y107{bottom:867.030000px;}
.y68{bottom:871.260000px;}
.y13c{bottom:871.620000px;}
.ydb{bottom:875.220000px;}
.y36{bottom:879.810000px;}
.ye9{bottom:884.220000px;}
.y106{bottom:884.670000px;}
.y12e{bottom:888.810000px;}
.y13b{bottom:889.260000px;}
.yda{bottom:892.860000px;}
.y6{bottom:899.610000px;}
.y92{bottom:902.220000px;}
.y12d{bottom:906.450000px;}
.y67{bottom:906.810000px;}
.yba{bottom:915.630000px;}
.y35{bottom:915.720000px;}
.yd9{bottom:919.410000px;}
.y91{bottom:919.860000px;}
.y12c{bottom:924.000000px;}
.y66{bottom:924.450000px;}
.y5{bottom:935.610000px;}
.y90{bottom:937.410000px;}
.yb9{bottom:939.660000px;}
.y12b{bottom:941.550000px;}
.y65{bottom:942.000000px;}
.y8f{bottom:954.960000px;}
.y12a{bottom:959.190000px;}
.y64{bottom:959.550000px;}
.y34{bottom:963.960000px;}
.y13a{bottom:968.910000px;}
.y4{bottom:971.700000px;}
.y8e{bottom:972.600000px;}
.y129{bottom:976.740000px;}
.y63{bottom:977.190000px;}
.y33{bottom:981.600000px;}
.y8d{bottom:990.150000px;}
.y128{bottom:994.290000px;}
.y62{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.yb6{bottom:1002.120000px;}
.y8c{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y127{bottom:1011.960000px;}
.y61{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y139{bottom:1017.180000px;}
.yd8{bottom:1025.370000px;}
.y60{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.y138{bottom:1034.820000px;}
.y126{bottom:1038.510000px;}
.yd7{bottom:1042.920000px;}
.yb5{bottom:1047.060000px;}
.y5f{bottom:1047.510000px;}
.y137{bottom:1052.370000px;}
.yd6{bottom:1060.560000px;}
.y5e{bottom:1065.150000px;}
.y105{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y125{bottom:1074.420000px;}
.yd5{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y5d{bottom:1091.700000px;}
.yb3{bottom:1091.970000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y5c{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.ha{height:44.190000px;}
.hd{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.hb{height:61.740000px;}
.h10{height:61.770000px;}
.h11{height:61.793886px;}
.hc{height:61.830000px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:79.290000px;}
.hf{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:95.790000px;}
.w7{width:130.800000px;}
.w4{width:142.920000px;}
.w9{width:180.570000px;}
.wa{width:197.370000px;}
.w6{width:228.780000px;}
.w8{width:244.620000px;}
.w5{width:285.870000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:111.239987px;}
.xc{left:164.189987px;}
.x5{left:165.360000px;}
.x8{left:200.280000px;}
.x2{left:211.079987px;}
.x6{left:309.000000px;}
.x9{left:445.710000px;}
.x7{left:595.680000px;}
.xa{left:627.090000px;}
.xb{left:698.639987px;}
.xd{left:713.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.481067pt;}
.ls13{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._12{margin-left:-3.584427pt;}
._10{margin-left:-1.977280pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.907872pt;}
._8{width:2.335360pt;}
._3{width:3.474134pt;}
._2{width:4.381866pt;}
._4{width:5.368533pt;}
._a{width:7.020162pt;}
._6{width:8.764267pt;}
._7{width:9.885866pt;}
._13{width:10.825607pt;}
._e{width:13.520534pt;}
._f{width:14.535466pt;}
._18{width:15.454550pt;}
._17{width:16.726720pt;}
._11{width:18.170028pt;}
._9{width:19.345066pt;}
._b{width:20.413866pt;}
._5{width:21.910400pt;}
._d{width:23.381866pt;}
._c{width:24.446934pt;}
._2b{width:26.185600pt;}
._39{width:27.307840pt;}
._15{width:30.407360pt;}
._14{width:31.447467pt;}
._16{width:32.379168pt;}
._23{width:33.400000pt;}
._29{width:34.361920pt;}
._2c{width:36.552960pt;}
._20{width:38.423360pt;}
._3a{width:41.790080pt;}
._21{width:46.866880pt;}
._26{width:49.934080pt;}
._35{width:52.499200pt;}
._19{width:55.417280pt;}
._28{width:56.806720pt;}
._31{width:59.499840pt;}
._38{width:64.983040pt;}
._3b{width:66.423787pt;}
._33{width:67.334400pt;}
._25{width:69.204800pt;}
._1b{width:70.968320pt;}
._1c{width:72.090560pt;}
._24{width:79.946240pt;}
._1d{width:84.274880pt;}
._1a{width:85.805120pt;}
._2a{width:99.719040pt;}
._1e{width:108.590080pt;}
._36{width:111.689600pt;}
._22{width:122.110400pt;}
._1f{width:125.851200pt;}
._27{width:140.707520pt;}
._30{width:166.572480pt;}
._2e{width:172.504320pt;}
._2d{width:187.948480pt;}
._2f{width:217.500800pt;}
._37{width:229.685120pt;}
._32{width:242.190080pt;}
._34{width:251.435200pt;}
._3c{width:258.061760pt;}
.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;}
.yb1{bottom:6.960000pt;}
.yc5{bottom:6.986667pt;}
.yae{bottom:7.040000pt;}
.yb8{bottom:7.066667pt;}
.ybe{bottom:22.560000pt;}
.yad{bottom:22.640000pt;}
.yb7{bottom:22.666667pt;}
.yb0{bottom:38.240000pt;}
.yc4{bottom:38.266667pt;}
.yb4{bottom:38.320000pt;}
.ybd{bottom:53.840000pt;}
.yc1{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y136{bottom:99.386667pt;}
.y104{bottom:100.026667pt;}
.y8b{bottom:106.426667pt;}
.y5b{bottom:107.706667pt;}
.ye8{bottom:114.666667pt;}
.y135{bottom:115.066667pt;}
.y28{bottom:115.226667pt;}
.y103{bottom:115.706667pt;}
.y8a{bottom:122.026667pt;}
.yd4{bottom:123.866667pt;}
.y124{bottom:124.026667pt;}
.ye7{bottom:130.266667pt;}
.y134{bottom:130.666667pt;}
.y27{bottom:130.906667pt;}
.y102{bottom:131.306667pt;}
.y5a{bottom:139.306667pt;}
.yd3{bottom:139.466667pt;}
.y123{bottom:139.706667pt;}
.yb2{bottom:139.786667pt;}
.y89{bottom:145.626667pt;}
.ye6{bottom:145.946667pt;}
.y101{bottom:146.906667pt;}
.y59{bottom:154.906667pt;}
.yd2{bottom:155.066667pt;}
.y122{bottom:155.306667pt;}
.ye5{bottom:161.546667pt;}
.y133{bottom:162.266667pt;}
.y26{bottom:162.506667pt;}
.y100{bottom:162.586667pt;}
.y58{bottom:170.586667pt;}
.yd1{bottom:170.746667pt;}
.y121{bottom:170.906667pt;}
.y88{bottom:174.666667pt;}
.ye4{bottom:177.226667pt;}
.y25{bottom:178.106667pt;}
.yff{bottom:178.186667pt;}
.y57{bottom:186.186667pt;}
.yd0{bottom:186.346667pt;}
.y120{bottom:186.586667pt;}
.y132{bottom:190.906667pt;}
.ye3{bottom:192.826667pt;}
.y24{bottom:193.786667pt;}
.yaf{bottom:195.386667pt;}
.y56{bottom:201.866667pt;}
.y11f{bottom:202.186667pt;}
.y159{bottom:206.266667pt;}
.y87{bottom:206.586667pt;}
.ye2{bottom:208.426667pt;}
.y23{bottom:209.386667pt;}
.ycf{bottom:209.946667pt;}
.y55{bottom:217.466667pt;}
.y11e{bottom:217.866667pt;}
.y158{bottom:221.866667pt;}
.ye1{bottom:224.106667pt;}
.y22{bottom:225.066667pt;}
.y54{bottom:233.066667pt;}
.yfe{bottom:233.466667pt;}
.y157{bottom:237.546667pt;}
.yce{bottom:238.986667pt;}
.y21{bottom:240.666667pt;}
.ye0{bottom:247.706667pt;}
.y53{bottom:248.746667pt;}
.yfd{bottom:249.066667pt;}
.y86{bottom:249.466667pt;}
.yac{bottom:250.906667pt;}
.y11d{bottom:257.066667pt;}
.y156{bottom:261.146667pt;}
.yfc{bottom:264.746667pt;}
.y85{bottom:265.066667pt;}
.ycd{bottom:270.586667pt;}
.y20{bottom:272.266667pt;}
.y52{bottom:272.346667pt;}
.y155{bottom:276.826667pt;}
.ydf{bottom:279.626667pt;}
.yfb{bottom:280.346667pt;}
.y84{bottom:280.746667pt;}
.ycc{bottom:286.186667pt;}
.y1f{bottom:287.946667pt;}
.y11c{bottom:288.746667pt;}
.yfa{bottom:295.946667pt;}
.y83{bottom:296.346667pt;}
.y154{bottom:300.426667pt;}
.ycb{bottom:301.866667pt;}
.y1e{bottom:303.546667pt;}
.y51{bottom:303.946667pt;}
.y11b{bottom:304.346667pt;}
.yab{bottom:309.866667pt;}
.yf9{bottom:311.626667pt;}
.y82{bottom:311.946667pt;}
.y153{bottom:316.026667pt;}
.yca{bottom:317.466667pt;}
.y1d{bottom:319.226667pt;}
.y50{bottom:319.626667pt;}
.y11a{bottom:319.946667pt;}
.yde{bottom:322.586667pt;}
.yf8{bottom:327.226667pt;}
.y81{bottom:327.626667pt;}
.yc9{bottom:333.146667pt;}
.y1c{bottom:334.826667pt;}
.y4f{bottom:335.226667pt;}
.y119{bottom:335.626667pt;}
.y152{bottom:339.706667pt;}
.yaa{bottom:341.466667pt;}
.yf7{bottom:342.906667pt;}
.y80{bottom:343.226667pt;}
.yc8{bottom:348.746667pt;}
.y1b{bottom:350.426667pt;}
.y4e{bottom:350.906667pt;}
.ydd{bottom:351.226667pt;}
.y151{bottom:355.306667pt;}
.ya9{bottom:357.146667pt;}
.yf6{bottom:358.506667pt;}
.y7f{bottom:358.906667pt;}
.yc7{bottom:364.346667pt;}
.y4d{bottom:366.506667pt;}
.y118{bottom:366.906667pt;}
.y150{bottom:370.986667pt;}
.ya8{bottom:372.746667pt;}
.y1a{bottom:374.346667pt;}
.y7e{bottom:374.506667pt;}
.y4c{bottom:382.106667pt;}
.y117{bottom:382.506667pt;}
.yc6{bottom:387.946667pt;}
.ya7{bottom:388.346667pt;}
.y7d{bottom:390.106667pt;}
.y14f{bottom:394.586667pt;}
.y4b{bottom:397.786667pt;}
.y116{bottom:398.106667pt;}
.ya6{bottom:404.026667pt;}
.y14e{bottom:410.186667pt;}
.y4a{bottom:413.386667pt;}
.y7c{bottom:413.786667pt;}
.yf5{bottom:414.026667pt;}
.yc3{bottom:414.666667pt;}
.y19{bottom:417.306667pt;}
.ya5{bottom:419.653333pt;}
.y14d{bottom:425.893333pt;}
.y115{bottom:429.413333pt;}
.y18{bottom:433.253333pt;}
.y49{bottom:437.093333pt;}
.ya4{bottom:443.333333pt;}
.y114{bottom:445.093333pt;}
.y7b{bottom:445.413333pt;}
.y14c{bottom:449.493333pt;}
.yf4{bottom:457.013333pt;}
.y7a{bottom:461.093333pt;}
.y14b{bottom:465.093333pt;}
.y17{bottom:466.133333pt;}
.y48{bottom:468.693333pt;}
.yc2{bottom:470.213333pt;}
.yf3{bottom:472.613333pt;}
.ya3{bottom:474.933333pt;}
.y79{bottom:476.693333pt;}
.y16{bottom:481.733333pt;}
.y47{bottom:484.293333pt;}
.yf2{bottom:488.293333pt;}
.y14a{bottom:488.773333pt;}
.ya2{bottom:490.533333pt;}
.y78{bottom:492.293333pt;}
.y15{bottom:497.413333pt;}
.y46{bottom:499.973333pt;}
.y113{bottom:500.293333pt;}
.yf1{bottom:503.893333pt;}
.y149{bottom:504.373333pt;}
.ya1{bottom:506.213333pt;}
.y77{bottom:507.973333pt;}
.y14{bottom:513.013333pt;}
.y45{bottom:515.573333pt;}
.y112{bottom:515.973333pt;}
.yf0{bottom:519.493333pt;}
.ya0{bottom:521.813333pt;}
.y76{bottom:523.573333pt;}
.y148{bottom:528.053333pt;}
.y13{bottom:528.693333pt;}
.y44{bottom:531.253333pt;}
.y111{bottom:531.573333pt;}
.yef{bottom:535.173333pt;}
.y9f{bottom:537.413333pt;}
.y75{bottom:539.253333pt;}
.yc0{bottom:541.413333pt;}
.y147{bottom:543.653333pt;}
.y12{bottom:544.293333pt;}
.y43{bottom:546.853333pt;}
.y110{bottom:547.253333pt;}
.yee{bottom:550.773333pt;}
.y9e{bottom:553.093333pt;}
.y74{bottom:554.853333pt;}
.y11{bottom:559.893333pt;}
.y42{bottom:562.453333pt;}
.y10f{bottom:562.853333pt;}
.yed{bottom:566.453333pt;}
.y146{bottom:567.253333pt;}
.y9d{bottom:568.693333pt;}
.y73{bottom:570.453333pt;}
.y10{bottom:575.573333pt;}
.y41{bottom:578.133333pt;}
.y10e{bottom:578.453333pt;}
.yec{bottom:582.053333pt;}
.yf{bottom:591.173333pt;}
.y9c{bottom:592.293333pt;}
.y72{bottom:594.133333pt;}
.y40{bottom:601.733333pt;}
.yeb{bottom:605.653333pt;}
.ye{bottom:606.853333pt;}
.y10d{bottom:609.733333pt;}
.ybf{bottom:612.613333pt;}
.y9b{bottom:621.333333pt;}
.yd{bottom:622.453333pt;}
.y10c{bottom:625.413333pt;}
.y71{bottom:625.733333pt;}
.y3f{bottom:633.413333pt;}
.y145{bottom:634.133333pt;}
.yea{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y10b{bottom:641.013333pt;}
.y70{bottom:641.413333pt;}
.y3e{bottom:649.013333pt;}
.y144{bottom:649.733333pt;}
.y9a{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y10a{bottom:656.613333pt;}
.y6f{bottom:657.013333pt;}
.y3d{bottom:664.613333pt;}
.y143{bottom:665.413333pt;}
.ybc{bottom:668.213333pt;}
.y99{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.y109{bottom:672.293333pt;}
.y6e{bottom:672.613333pt;}
.y3c{bottom:680.293333pt;}
.y142{bottom:681.013333pt;}
.y98{bottom:684.213333pt;}
.y131{bottom:687.893333pt;}
.y6d{bottom:688.293333pt;}
.y9{bottom:693.253333pt;}
.y3b{bottom:695.893333pt;}
.y141{bottom:696.613333pt;}
.y97{bottom:699.813333pt;}
.y6c{bottom:703.893333pt;}
.y3a{bottom:711.573333pt;}
.y140{bottom:712.293333pt;}
.y96{bottom:715.493333pt;}
.y6b{bottom:719.573333pt;}
.y39{bottom:727.173333pt;}
.y108{bottom:727.813333pt;}
.y13f{bottom:727.893333pt;}
.y95{bottom:731.093333pt;}
.y6a{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.ybb{bottom:739.333333pt;}
.y38{bottom:742.773333pt;}
.y130{bottom:743.173333pt;}
.y13e{bottom:743.573333pt;}
.y94{bottom:746.693333pt;}
.y69{bottom:750.773333pt;}
.y37{bottom:758.453333pt;}
.y12f{bottom:758.773333pt;}
.y13d{bottom:759.173333pt;}
.ydc{bottom:762.373333pt;}
.y7{bottom:767.813333pt;}
.y93{bottom:770.373333pt;}
.y107{bottom:770.693333pt;}
.y68{bottom:774.453333pt;}
.y13c{bottom:774.773333pt;}
.ydb{bottom:777.973333pt;}
.y36{bottom:782.053333pt;}
.ye9{bottom:785.973333pt;}
.y106{bottom:786.373333pt;}
.y12e{bottom:790.053333pt;}
.y13b{bottom:790.453333pt;}
.yda{bottom:793.653333pt;}
.y6{bottom:799.653333pt;}
.y92{bottom:801.973333pt;}
.y12d{bottom:805.733333pt;}
.y67{bottom:806.053333pt;}
.yba{bottom:813.893333pt;}
.y35{bottom:813.973333pt;}
.yd9{bottom:817.253333pt;}
.y91{bottom:817.653333pt;}
.y12c{bottom:821.333333pt;}
.y66{bottom:821.733333pt;}
.y5{bottom:831.653333pt;}
.y90{bottom:833.253333pt;}
.yb9{bottom:835.253333pt;}
.y12b{bottom:836.933333pt;}
.y65{bottom:837.333333pt;}
.y8f{bottom:848.853333pt;}
.y12a{bottom:852.613333pt;}
.y64{bottom:852.933333pt;}
.y34{bottom:856.853333pt;}
.y13a{bottom:861.253333pt;}
.y4{bottom:863.733333pt;}
.y8e{bottom:864.533333pt;}
.y129{bottom:868.213333pt;}
.y63{bottom:868.613333pt;}
.y33{bottom:872.533333pt;}
.y8d{bottom:880.133333pt;}
.y128{bottom:883.813333pt;}
.y62{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.yb6{bottom:890.773333pt;}
.y8c{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y127{bottom:899.520000pt;}
.y61{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y139{bottom:904.160000pt;}
.yd8{bottom:911.440000pt;}
.y60{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.y138{bottom:919.840000pt;}
.y126{bottom:923.120000pt;}
.yd7{bottom:927.040000pt;}
.yb5{bottom:930.720000pt;}
.y5f{bottom:931.120000pt;}
.y137{bottom:935.440000pt;}
.yd6{bottom:942.720000pt;}
.y5e{bottom:946.800000pt;}
.y105{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y125{bottom:955.040000pt;}
.yd5{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y5d{bottom:970.400000pt;}
.yb3{bottom:970.640000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y5c{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.ha{height:39.280000pt;}
.hd{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.hb{height:54.880000pt;}
.h10{height:54.906667pt;}
.h11{height:54.927899pt;}
.hc{height:54.960000pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:70.480000pt;}
.hf{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:85.146667pt;}
.w7{width:116.266667pt;}
.w4{width:127.040000pt;}
.w9{width:160.506667pt;}
.wa{width:175.440000pt;}
.w6{width:203.360000pt;}
.w8{width:217.440000pt;}
.w5{width:254.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:98.879988pt;}
.xc{left:145.946655pt;}
.x5{left:146.986667pt;}
.x8{left:178.026667pt;}
.x2{left:187.626655pt;}
.x6{left:274.666667pt;}
.x9{left:396.186667pt;}
.x7{left:529.493333pt;}
.xa{left:557.413333pt;}
.xb{left:621.013322pt;}
.xd{left:634.053322pt;}
.x3{left:711.413322pt;}
}




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