
    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_44ab2ef4ff2bc355e74aa6bc.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_a3b8abde1db2001a9d6fab59.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_746baa8df3a00800f614d0e4.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_8d1837bfe941633ca03f9d72.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_7f4ed27330941c15ffad9288.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_d01c18326a5e64c979144555.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_ae4d9e46cd0734e102f29db8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ee4c3322449b47f2dbad73e6.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.654000px;}
.ls18{letter-spacing:-0.339600px;}
.ls14{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.045360px;}
.ls7{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls6{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.105600px;}
.ls15{letter-spacing:0.116400px;}
.ls9{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.541200px;}
.ls16{letter-spacing:3.693600px;}
.lsd{letter-spacing:19.286640px;}
.ls13{letter-spacing:47.726640px;}
.ls11{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;}
.ws9{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.332000px;}
.ws8{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.ws7{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.982800px;}
.wsf{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._67{margin-left:-4.571044px;}
._3{margin-left:-3.546599px;}
._2{margin-left:-2.344800px;}
._0{margin-left:-1.020000px;}
._1{width:1.342164px;}
._a{width:2.950525px;}
._6{width:4.659632px;}
._5{width:5.892000px;}
._12{width:6.950316px;}
._4{width:8.176200px;}
._9{width:9.378600px;}
._8{width:10.999800px;}
._7{width:12.024000px;}
._f{width:14.596236px;}
._b{width:15.751200px;}
._c{width:16.896005px;}
._e{width:18.697200px;}
._d{width:20.367360px;}
._2c{width:21.496596px;}
._10{width:22.605120px;}
._11{width:23.883156px;}
._25{width:25.370640px;}
._15{width:27.414720px;}
._14{width:28.496880px;}
._27{width:30.360600px;}
._4c{width:33.291840px;}
._2f{width:34.689240px;}
._2e{width:36.312480px;}
._1d{width:38.416680px;}
._42{width:39.859560px;}
._31{width:41.362560px;}
._44{width:42.444720px;}
._32{width:43.827480px;}
._33{width:44.909640px;}
._4e{width:45.991800px;}
._21{width:47.615040px;}
._54{width:48.937680px;}
._60{width:50.077920px;}
._22{width:51.282360px;}
._69{width:53.438520px;}
._50{width:54.468720px;}
._2d{width:55.550880px;}
._17{width:57.234240px;}
._36{width:58.677120px;}
._2b{width:60.538800px;}
._1e{width:62.043840px;}
._3a{width:63.606960px;}
._43{width:64.989720px;}
._1c{width:66.372480px;}
._20{width:67.695120px;}
._45{width:69.468240px;}
._46{width:70.491120px;}
._30{width:71.963640px;}
._4a{width:73.105920px;}
._16{width:75.390480px;}
._24{width:77.554800px;}
._66{width:78.576840px;}
._19{width:80.440560px;}
._51{width:81.462600px;}
._40{width:84.228120px;}
._3e{width:85.550760px;}
._13{width:86.632920px;}
._47{width:88.256160px;}
._61{width:91.262160px;}
._4d{width:93.065760px;}
._23{width:94.568760px;}
._53{width:96.492600px;}
._28{width:99.198000px;}
._38{width:100.520640px;}
._65{width:101.903400px;}
._64{width:107.073720px;}
._26{width:108.516600px;}
._1f{width:110.741040px;}
._49{width:114.228000px;}
._55{width:116.692920px;}
._18{width:118.389960px;}
._39{width:119.578680px;}
._3f{width:121.442400px;}
._4f{width:123.232080px;}
._37{width:124.929360px;}
._48{width:127.875240px;}
._68{width:129.378240px;}
._4b{width:133.165800px;}
._35{width:137.915280px;}
._3b{width:140.440320px;}
._5e{width:154.147680px;}
._3d{width:159.257880px;}
._2a{width:163.103520px;}
._34{width:164.969280px;}
._5b{width:178.603200px;}
._57{width:179.638560px;}
._52{width:180.840960px;}
._5f{width:185.710680px;}
._5a{width:191.301840px;}
._63{width:199.778760px;}
._5c{width:212.043240px;}
._62{width:254.223720px;}
._3c{width:256.395720px;}
._1b{width:258.215400px;}
._5d{width:259.357680px;}
._58{width:284.127120px;}
._59{width:293.806440px;}
._41{width:298.375560px;}
._1a{width:329.457600px;}
._29{width:336.912480px;}
._56{width:359.758080px;}
.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;}
.y62{bottom:7.830000px;}
.y86{bottom:7.920000px;}
.y6b{bottom:25.380000px;}
.y61{bottom:25.470000px;}
.y90{bottom:25.500000px;}
.y6f{bottom:42.930000px;}
.y80{bottom:42.960000px;}
.y69{bottom:43.020000px;}
.y8f{bottom:43.050000px;}
.y85{bottom:43.110000px;}
.y68{bottom:60.570000px;}
.y75{bottom:60.600000px;}
.y84{bottom:60.660000px;}
.y77{bottom:60.690000px;}
.y6e{bottom:65.880000px;}
.y7f{bottom:65.910000px;}
.y7a{bottom:65.970000px;}
.y8e{bottom:66.000000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y5e{bottom:74.280000px;}
.y67{bottom:78.120000px;}
.y95{bottom:78.150000px;}
.y76{bottom:78.240000px;}
.y8a{bottom:83.460000px;}
.y6a{bottom:83.520000px;}
.y74{bottom:83.550000px;}
.y83{bottom:83.610000px;}
.y99{bottom:83.640000px;}
.y89{bottom:84.360000px;}
.y92{bottom:84.420000px;}
.y7b{bottom:89.760000px;}
.y66{bottom:101.070000px;}
.y7e{bottom:101.100000px;}
.y82{bottom:101.160000px;}
.y73{bottom:101.190000px;}
.y8c{bottom:101.550000px;}
.y1{bottom:101.640000px;}
.y6d{bottom:101.880000px;}
.y7d{bottom:101.910000px;}
.y79{bottom:101.970000px;}
.y98{bottom:102.000000px;}
.y5c{bottom:112.530000px;}
.y65{bottom:118.620000px;}
.y94{bottom:118.650000px;}
.y72{bottom:118.740000px;}
.y64{bottom:119.520000px;}
.y71{bottom:119.550000px;}
.y5b{bottom:130.170000px;}
.yd7{bottom:139.980000px;}
.y125{bottom:143.130000px;}
.y5a{bottom:147.720000px;}
.y101{bottom:149.250000px;}
.y28{bottom:154.830000px;}
.yd6{bottom:157.530000px;}
.y124{bottom:160.680000px;}
.yb7{bottom:162.300000px;}
.y100{bottom:166.890000px;}
.y27{bottom:172.380000px;}
.y59{bottom:174.270000px;}
.yd5{bottom:175.170000px;}
.y123{bottom:178.320000px;}
.yb6{bottom:179.940000px;}
.yff{bottom:184.440000px;}
.y26{bottom:189.930000px;}
.yd4{bottom:192.720000px;}
.yb5{bottom:197.490000px;}
.y122{bottom:204.870000px;}
.y25{bottom:207.570000px;}
.y58{bottom:209.910000px;}
.yd3{bottom:210.270000px;}
.yfe{bottom:211.080000px;}
.y78{bottom:211.170000px;}
.yb4{bottom:215.130000px;}
.y121{bottom:222.510000px;}
.y8b{bottom:223.050000px;}
.y24{bottom:225.120000px;}
.y57{bottom:227.460000px;}
.yd2{bottom:227.910000px;}
.yfd{bottom:228.630000px;}
.yb3{bottom:232.680000px;}
.y23{bottom:242.760000px;}
.y56{bottom:245.100000px;}
.yd1{bottom:245.460000px;}
.yfc{bottom:246.180000px;}
.y120{bottom:249.060000px;}
.yb2{bottom:250.230000px;}
.y22{bottom:260.310000px;}
.y55{bottom:262.650000px;}
.yd0{bottom:263.100000px;}
.y11f{bottom:266.610000px;}
.yb1{bottom:267.870000px;}
.yfb{bottom:272.820000px;}
.y21{bottom:277.860000px;}
.y54{bottom:280.200000px;}
.ycf{bottom:280.650000px;}
.yb0{bottom:285.420000px;}
.yfa{bottom:290.370000px;}
.y11e{bottom:293.250000px;}
.y53{bottom:297.840000px;}
.yce{bottom:298.200000px;}
.y20{bottom:304.770000px;}
.y11d{bottom:310.800000px;}
.yaf{bottom:312.060000px;}
.y52{bottom:315.390000px;}
.ycd{bottom:315.840000px;}
.yf9{bottom:317.010000px;}
.y70{bottom:332.580000px;}
.y51{bottom:332.940000px;}
.ycc{bottom:333.390000px;}
.yf8{bottom:334.560000px;}
.y11c{bottom:337.440000px;}
.y88{bottom:344.460000px;}
.yae{bottom:347.610000px;}
.y50{bottom:350.580000px;}
.ycb{bottom:350.940000px;}
.yf7{bottom:352.110000px;}
.y1f{bottom:353.100000px;}
.y11b{bottom:354.990000px;}
.yad{bottom:365.160000px;}
.y4f{bottom:368.130000px;}
.yca{bottom:368.580000px;}
.y1e{bottom:371.010000px;}
.y11a{bottom:372.540000px;}
.yf6{bottom:378.750000px;}
.yac{bottom:382.800000px;}
.y4e{bottom:385.770000px;}
.yc9{bottom:386.130000px;}
.y9b{bottom:390.300000px;}
.yf5{bottom:396.300000px;}
.y119{bottom:399.180000px;}
.yab{bottom:400.350000px;}
.yc8{bottom:403.770000px;}
.y1d{bottom:408.000000px;}
.y4d{bottom:412.320000px;}
.y118{bottom:416.730000px;}
.yaa{bottom:417.990000px;}
.yc7{bottom:421.320000px;}
.yf4{bottom:422.940000px;}
.y1c{bottom:425.550000px;}
.ya9{bottom:435.540000px;}
.yf3{bottom:440.490000px;}
.y1b{bottom:443.190000px;}
.y117{bottom:443.370000px;}
.y4c{bottom:447.870000px;}
.yc6{bottom:448.230000px;}
.y87{bottom:448.260000px;}
.ya8{bottom:453.090000px;}
.y1a{bottom:460.740000px;}
.y116{bottom:460.920000px;}
.y4b{bottom:465.510000px;}
.yf2{bottom:467.040000px;}
.ya7{bottom:470.760000px;}
.y6c{bottom:471.660000px;}
.y19{bottom:478.410000px;}
.y115{bottom:478.500000px;}
.y4a{bottom:483.090000px;}
.y93{bottom:483.450000px;}
.yf1{bottom:484.710000px;}
.ya6{bottom:488.310000px;}
.y18{bottom:495.960000px;}
.yc5{bottom:496.500000px;}
.y49{bottom:500.730000px;}
.yf0{bottom:502.260000px;}
.y114{bottom:505.140000px;}
.ya5{bottom:505.950000px;}
.y17{bottom:513.510000px;}
.yc4{bottom:514.140000px;}
.y48{bottom:518.280000px;}
.y113{bottom:522.690000px;}
.ya4{bottom:523.500000px;}
.yef{bottom:528.900000px;}
.y9a{bottom:529.260000px;}
.y16{bottom:531.150000px;}
.yc3{bottom:531.690000px;}
.y47{bottom:535.830000px;}
.y112{bottom:540.330000px;}
.ya3{bottom:541.050000px;}
.yee{bottom:546.450000px;}
.y15{bottom:548.700000px;}
.yc2{bottom:549.330000px;}
.y46{bottom:553.470000px;}
.yed{bottom:564.000000px;}
.y14{bottom:566.340000px;}
.yc1{bottom:566.880000px;}
.ya2{bottom:567.690000px;}
.y81{bottom:569.670000px;}
.y45{bottom:571.020000px;}
.y13{bottom:583.890000px;}
.yc0{bottom:584.430000px;}
.y44{bottom:588.660000px;}
.yec{bottom:590.640000px;}
.y63{bottom:593.070000px;}
.y12{bottom:601.440000px;}
.ybf{bottom:602.070000px;}
.ya1{bottom:603.600000px;}
.y91{bottom:604.860000px;}
.y43{bottom:606.210000px;}
.yeb{bottom:608.190000px;}
.y11{bottom:619.080000px;}
.ybe{bottom:619.620000px;}
.y42{bottom:623.760000px;}
.y111{bottom:628.620000px;}
.yea{bottom:634.830000px;}
.ybd{bottom:637.260000px;}
.y10{bottom:645.990000px;}
.y110{bottom:646.260000px;}
.y41{bottom:650.400000px;}
.y97{bottom:650.670000px;}
.ya0{bottom:651.840000px;}
.ye9{bottom:652.380000px;}
.ybc{bottom:654.810000px;}
.y10f{bottom:672.810000px;}
.ye8{bottom:678.930000px;}
.ybb{bottom:681.360000px;}
.y9f{bottom:684.060000px;}
.y40{bottom:686.310000px;}
.y10e{bottom:690.360000px;}
.y7c{bottom:691.170000px;}
.yf{bottom:694.230000px;}
.ye7{bottom:696.570000px;}
.y8d{bottom:708.720000px;}
.ye6{bottom:714.120000px;}
.yba{bottom:717.000000px;}
.ye{bottom:729.780000px;}
.y60{bottom:732.060000px;}
.y3f{bottom:734.550000px;}
.ye5{bottom:740.670000px;}
.y3e{bottom:752.190000px;}
.ye4{bottom:758.310000px;}
.yd{bottom:765.600000px;}
.y3d{bottom:769.740000px;}
.y96{bottom:772.110000px;}
.ye3{bottom:775.860000px;}
.y10d{bottom:778.740000px;}
.y3c{bottom:787.290000px;}
.y10c{bottom:796.290000px;}
.y5f{bottom:798.390000px;}
.ye2{bottom:802.500000px;}
.y3b{bottom:804.930000px;}
.yc{bottom:805.380000px;}
.y10b{bottom:813.930000px;}
.ye1{bottom:820.050000px;}
.y3a{bottom:822.480000px;}
.yb{bottom:823.380000px;}
.y5d{bottom:824.940000px;}
.y39{bottom:840.030000px;}
.y10a{bottom:840.480000px;}
.ya{bottom:841.380000px;}
.ye0{bottom:846.600000px;}
.y38{bottom:857.670000px;}
.y109{bottom:858.030000px;}
.y9{bottom:859.380000px;}
.yb9{bottom:866.670000px;}
.ydf{bottom:873.240000px;}
.y108{bottom:875.670000px;}
.y8{bottom:877.380000px;}
.y37{bottom:884.220000px;}
.yde{bottom:890.790000px;}
.y7{bottom:895.380000px;}
.yb8{bottom:902.220000px;}
.ydd{bottom:917.430000px;}
.y36{bottom:919.860000px;}
.y6{bottom:927.690000px;}
.ydc{bottom:934.980000px;}
.y35{bottom:937.410000px;}
.y5{bottom:947.040000px;}
.y34{bottom:954.960000px;}
.ydb{bottom:961.890000px;}
.y33{bottom:972.600000px;}
.y107{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y32{bottom:990.150000px;}
.y106{bottom:999.150000px;}
.y31{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.yda{bottom:1010.160000px;}
.y105{bottom:1016.820000px;}
.y30{bottom:1025.370000px;}
.y104{bottom:1034.370000px;}
.yd9{bottom:1037.070000px;}
.y2f{bottom:1042.920000px;}
.y127{bottom:1051.920000px;}
.y2e{bottom:1060.560000px;}
.y103{bottom:1060.920000px;}
.y9e{bottom:1069.920000px;}
.yd8{bottom:1074.420000px;}
.y102{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y9d{bottom:1087.560000px;}
.y126{bottom:1096.110000px;}
.y9c{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h14{height:39.690000px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:103.080000px;}
.h13{height:103.140000px;}
.hf{height:120.600000px;}
.h11{height:120.630000px;}
.h10{height:120.690000px;}
.h15{height:120.720000px;}
.h16{height:138.240000px;}
.hd{height:138.270000px;}
.ha{height:893.160000px;}
.hb{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:101.790000px;}
.w7{width:218.730000px;}
.w9{width:233.490000px;}
.wa{width:235.710000px;}
.w8{width:252.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.xb{left:23.580000px;}
.x1{left:68.040000px;}
.xd{left:103.139987px;}
.x6{left:107.999981px;}
.xe{left:111.239987px;}
.x2{left:211.079987px;}
.x4{left:395.759981px;}
.x8{left:430.770000px;}
.x9{left:683.850000px;}
.xc{left:778.559987px;}
.x3{left:800.339987px;}
.xa{left:918.150000px;}
.x5{left:1129.649981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.581333pt;}
.ls18{letter-spacing:-0.301867pt;}
.ls14{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.040320pt;}
.ls7{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls6{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.093867pt;}
.ls15{letter-spacing:0.103467pt;}
.ls9{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.481067pt;}
.ls16{letter-spacing:3.283200pt;}
.lsd{letter-spacing:17.143680pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.850667pt;}
.ws8{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.ws7{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.540267pt;}
.wsf{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._67{margin-left:-4.063150pt;}
._3{margin-left:-3.152532pt;}
._2{margin-left:-2.084267pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.193035pt;}
._a{width:2.622689pt;}
._6{width:4.141895pt;}
._5{width:5.237334pt;}
._12{width:6.178059pt;}
._4{width:7.267733pt;}
._9{width:8.336533pt;}
._8{width:9.777600pt;}
._7{width:10.688000pt;}
._f{width:12.974432pt;}
._b{width:14.001066pt;}
._c{width:15.018671pt;}
._e{width:16.619733pt;}
._d{width:18.104320pt;}
._2c{width:19.108085pt;}
._10{width:20.093440pt;}
._11{width:21.229472pt;}
._25{width:22.551680pt;}
._15{width:24.368640pt;}
._14{width:25.330560pt;}
._27{width:26.987200pt;}
._4c{width:29.592747pt;}
._2f{width:30.834880pt;}
._2e{width:32.277760pt;}
._1d{width:34.148160pt;}
._42{width:35.430720pt;}
._31{width:36.766720pt;}
._44{width:37.728640pt;}
._32{width:38.957760pt;}
._33{width:39.919680pt;}
._4e{width:40.881600pt;}
._21{width:42.324480pt;}
._54{width:43.500160pt;}
._60{width:44.513707pt;}
._22{width:45.584320pt;}
._69{width:47.500907pt;}
._50{width:48.416640pt;}
._2d{width:49.378560pt;}
._17{width:50.874880pt;}
._36{width:52.157440pt;}
._2b{width:53.812267pt;}
._1e{width:55.150080pt;}
._3a{width:56.539520pt;}
._43{width:57.768640pt;}
._1c{width:58.997760pt;}
._20{width:60.173440pt;}
._45{width:61.749547pt;}
._46{width:62.658773pt;}
._30{width:63.967680pt;}
._4a{width:64.983040pt;}
._16{width:67.013760pt;}
._24{width:68.937600pt;}
._66{width:69.846080pt;}
._19{width:71.502720pt;}
._51{width:72.411200pt;}
._40{width:74.869440pt;}
._3e{width:76.045120pt;}
._13{width:77.007040pt;}
._47{width:78.449920pt;}
._61{width:81.121920pt;}
._4d{width:82.725120pt;}
._23{width:84.061120pt;}
._53{width:85.771200pt;}
._28{width:88.176000pt;}
._38{width:89.351680pt;}
._65{width:90.580800pt;}
._64{width:95.176640pt;}
._26{width:96.459200pt;}
._1f{width:98.436480pt;}
._49{width:101.536000pt;}
._55{width:103.727040pt;}
._18{width:105.235520pt;}
._39{width:106.292160pt;}
._3f{width:107.948800pt;}
._4f{width:109.539627pt;}
._37{width:111.048320pt;}
._48{width:113.666880pt;}
._68{width:115.002880pt;}
._4b{width:118.369600pt;}
._35{width:122.591360pt;}
._3b{width:124.835840pt;}
._5e{width:137.020160pt;}
._3d{width:141.562560pt;}
._2a{width:144.980907pt;}
._34{width:146.639360pt;}
._5b{width:158.758400pt;}
._57{width:159.678720pt;}
._52{width:160.747520pt;}
._5f{width:165.076160pt;}
._5a{width:170.046080pt;}
._63{width:177.581120pt;}
._5c{width:188.482880pt;}
._62{width:225.976640pt;}
._3c{width:227.907307pt;}
._1b{width:229.524800pt;}
._5d{width:230.540160pt;}
._58{width:252.557440pt;}
._59{width:261.161280pt;}
._41{width:265.222720pt;}
._1a{width:292.851200pt;}
._29{width:299.477760pt;}
._56{width:319.784960pt;}
.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;}
.y62{bottom:6.960000pt;}
.y86{bottom:7.040000pt;}
.y6b{bottom:22.560000pt;}
.y61{bottom:22.640000pt;}
.y90{bottom:22.666667pt;}
.y6f{bottom:38.160000pt;}
.y80{bottom:38.186667pt;}
.y69{bottom:38.240000pt;}
.y8f{bottom:38.266667pt;}
.y85{bottom:38.320000pt;}
.y68{bottom:53.840000pt;}
.y75{bottom:53.866667pt;}
.y84{bottom:53.920000pt;}
.y77{bottom:53.946667pt;}
.y6e{bottom:58.560000pt;}
.y7f{bottom:58.586667pt;}
.y7a{bottom:58.640000pt;}
.y8e{bottom:58.666667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y5e{bottom:66.026667pt;}
.y67{bottom:69.440000pt;}
.y95{bottom:69.466667pt;}
.y76{bottom:69.546667pt;}
.y8a{bottom:74.186667pt;}
.y6a{bottom:74.240000pt;}
.y74{bottom:74.266667pt;}
.y83{bottom:74.320000pt;}
.y99{bottom:74.346667pt;}
.y89{bottom:74.986667pt;}
.y92{bottom:75.040000pt;}
.y7b{bottom:79.786667pt;}
.y66{bottom:89.840000pt;}
.y7e{bottom:89.866667pt;}
.y82{bottom:89.920000pt;}
.y73{bottom:89.946667pt;}
.y8c{bottom:90.266667pt;}
.y1{bottom:90.346667pt;}
.y6d{bottom:90.560000pt;}
.y7d{bottom:90.586667pt;}
.y79{bottom:90.640000pt;}
.y98{bottom:90.666667pt;}
.y5c{bottom:100.026667pt;}
.y65{bottom:105.440000pt;}
.y94{bottom:105.466667pt;}
.y72{bottom:105.546667pt;}
.y64{bottom:106.240000pt;}
.y71{bottom:106.266667pt;}
.y5b{bottom:115.706667pt;}
.yd7{bottom:124.426667pt;}
.y125{bottom:127.226667pt;}
.y5a{bottom:131.306667pt;}
.y101{bottom:132.666667pt;}
.y28{bottom:137.626667pt;}
.yd6{bottom:140.026667pt;}
.y124{bottom:142.826667pt;}
.yb7{bottom:144.266667pt;}
.y100{bottom:148.346667pt;}
.y27{bottom:153.226667pt;}
.y59{bottom:154.906667pt;}
.yd5{bottom:155.706667pt;}
.y123{bottom:158.506667pt;}
.yb6{bottom:159.946667pt;}
.yff{bottom:163.946667pt;}
.y26{bottom:168.826667pt;}
.yd4{bottom:171.306667pt;}
.yb5{bottom:175.546667pt;}
.y122{bottom:182.106667pt;}
.y25{bottom:184.506667pt;}
.y58{bottom:186.586667pt;}
.yd3{bottom:186.906667pt;}
.yfe{bottom:187.626667pt;}
.y78{bottom:187.706667pt;}
.yb4{bottom:191.226667pt;}
.y121{bottom:197.786667pt;}
.y8b{bottom:198.266667pt;}
.y24{bottom:200.106667pt;}
.y57{bottom:202.186667pt;}
.yd2{bottom:202.586667pt;}
.yfd{bottom:203.226667pt;}
.yb3{bottom:206.826667pt;}
.y23{bottom:215.786667pt;}
.y56{bottom:217.866667pt;}
.yd1{bottom:218.186667pt;}
.yfc{bottom:218.826667pt;}
.y120{bottom:221.386667pt;}
.yb2{bottom:222.426667pt;}
.y22{bottom:231.386667pt;}
.y55{bottom:233.466667pt;}
.yd0{bottom:233.866667pt;}
.y11f{bottom:236.986667pt;}
.yb1{bottom:238.106667pt;}
.yfb{bottom:242.506667pt;}
.y21{bottom:246.986667pt;}
.y54{bottom:249.066667pt;}
.ycf{bottom:249.466667pt;}
.yb0{bottom:253.706667pt;}
.yfa{bottom:258.106667pt;}
.y11e{bottom:260.666667pt;}
.y53{bottom:264.746667pt;}
.yce{bottom:265.066667pt;}
.y20{bottom:270.906667pt;}
.y11d{bottom:276.266667pt;}
.yaf{bottom:277.386667pt;}
.y52{bottom:280.346667pt;}
.ycd{bottom:280.746667pt;}
.yf9{bottom:281.786667pt;}
.y70{bottom:295.626667pt;}
.y51{bottom:295.946667pt;}
.ycc{bottom:296.346667pt;}
.yf8{bottom:297.386667pt;}
.y11c{bottom:299.946667pt;}
.y88{bottom:306.186667pt;}
.yae{bottom:308.986667pt;}
.y50{bottom:311.626667pt;}
.ycb{bottom:311.946667pt;}
.yf7{bottom:312.986667pt;}
.y1f{bottom:313.866667pt;}
.y11b{bottom:315.546667pt;}
.yad{bottom:324.586667pt;}
.y4f{bottom:327.226667pt;}
.yca{bottom:327.626667pt;}
.y1e{bottom:329.786667pt;}
.y11a{bottom:331.146667pt;}
.yf6{bottom:336.666667pt;}
.yac{bottom:340.266667pt;}
.y4e{bottom:342.906667pt;}
.yc9{bottom:343.226667pt;}
.y9b{bottom:346.933333pt;}
.yf5{bottom:352.266667pt;}
.y119{bottom:354.826667pt;}
.yab{bottom:355.866667pt;}
.yc8{bottom:358.906667pt;}
.y1d{bottom:362.666667pt;}
.y4d{bottom:366.506667pt;}
.y118{bottom:370.426667pt;}
.yaa{bottom:371.546667pt;}
.yc7{bottom:374.506667pt;}
.yf4{bottom:375.946667pt;}
.y1c{bottom:378.266667pt;}
.ya9{bottom:387.146667pt;}
.yf3{bottom:391.546667pt;}
.y1b{bottom:393.946667pt;}
.y117{bottom:394.106667pt;}
.y4c{bottom:398.106667pt;}
.yc6{bottom:398.426667pt;}
.y87{bottom:398.453333pt;}
.ya8{bottom:402.746667pt;}
.y1a{bottom:409.546667pt;}
.y116{bottom:409.706667pt;}
.y4b{bottom:413.786667pt;}
.yf2{bottom:415.146667pt;}
.ya7{bottom:418.453333pt;}
.y6c{bottom:419.253333pt;}
.y19{bottom:425.253333pt;}
.y115{bottom:425.333333pt;}
.y4a{bottom:429.413333pt;}
.y93{bottom:429.733333pt;}
.yf1{bottom:430.853333pt;}
.ya6{bottom:434.053333pt;}
.y18{bottom:440.853333pt;}
.yc5{bottom:441.333333pt;}
.y49{bottom:445.093333pt;}
.yf0{bottom:446.453333pt;}
.y114{bottom:449.013333pt;}
.ya5{bottom:449.733333pt;}
.y17{bottom:456.453333pt;}
.yc4{bottom:457.013333pt;}
.y48{bottom:460.693333pt;}
.y113{bottom:464.613333pt;}
.ya4{bottom:465.333333pt;}
.yef{bottom:470.133333pt;}
.y9a{bottom:470.453333pt;}
.y16{bottom:472.133333pt;}
.yc3{bottom:472.613333pt;}
.y47{bottom:476.293333pt;}
.y112{bottom:480.293333pt;}
.ya3{bottom:480.933333pt;}
.yee{bottom:485.733333pt;}
.y15{bottom:487.733333pt;}
.yc2{bottom:488.293333pt;}
.y46{bottom:491.973333pt;}
.yed{bottom:501.333333pt;}
.y14{bottom:503.413333pt;}
.yc1{bottom:503.893333pt;}
.ya2{bottom:504.613333pt;}
.y81{bottom:506.373333pt;}
.y45{bottom:507.573333pt;}
.y13{bottom:519.013333pt;}
.yc0{bottom:519.493333pt;}
.y44{bottom:523.253333pt;}
.yec{bottom:525.013333pt;}
.y63{bottom:527.173333pt;}
.y12{bottom:534.613333pt;}
.ybf{bottom:535.173333pt;}
.ya1{bottom:536.533333pt;}
.y91{bottom:537.653333pt;}
.y43{bottom:538.853333pt;}
.yeb{bottom:540.613333pt;}
.y11{bottom:550.293333pt;}
.ybe{bottom:550.773333pt;}
.y42{bottom:554.453333pt;}
.y111{bottom:558.773333pt;}
.yea{bottom:564.293333pt;}
.ybd{bottom:566.453333pt;}
.y10{bottom:574.213333pt;}
.y110{bottom:574.453333pt;}
.y41{bottom:578.133333pt;}
.y97{bottom:578.373333pt;}
.ya0{bottom:579.413333pt;}
.ye9{bottom:579.893333pt;}
.ybc{bottom:582.053333pt;}
.y10f{bottom:598.053333pt;}
.ye8{bottom:603.493333pt;}
.ybb{bottom:605.653333pt;}
.y9f{bottom:608.053333pt;}
.y40{bottom:610.053333pt;}
.y10e{bottom:613.653333pt;}
.y7c{bottom:614.373333pt;}
.yf{bottom:617.093333pt;}
.ye7{bottom:619.173333pt;}
.y8d{bottom:629.973333pt;}
.ye6{bottom:634.773333pt;}
.yba{bottom:637.333333pt;}
.ye{bottom:648.693333pt;}
.y60{bottom:650.720000pt;}
.y3f{bottom:652.933333pt;}
.ye5{bottom:658.373333pt;}
.y3e{bottom:668.613333pt;}
.ye4{bottom:674.053333pt;}
.yd{bottom:680.533333pt;}
.y3d{bottom:684.213333pt;}
.y96{bottom:686.320000pt;}
.ye3{bottom:689.653333pt;}
.y10d{bottom:692.213333pt;}
.y3c{bottom:699.813333pt;}
.y10c{bottom:707.813333pt;}
.y5f{bottom:709.680000pt;}
.ye2{bottom:713.333333pt;}
.y3b{bottom:715.493333pt;}
.yc{bottom:715.893333pt;}
.y10b{bottom:723.493333pt;}
.ye1{bottom:728.933333pt;}
.y3a{bottom:731.093333pt;}
.yb{bottom:731.893333pt;}
.y5d{bottom:733.280000pt;}
.y39{bottom:746.693333pt;}
.y10a{bottom:747.093333pt;}
.ya{bottom:747.893333pt;}
.ye0{bottom:752.533333pt;}
.y38{bottom:762.373333pt;}
.y109{bottom:762.693333pt;}
.y9{bottom:763.893333pt;}
.yb9{bottom:770.373333pt;}
.ydf{bottom:776.213333pt;}
.y108{bottom:778.373333pt;}
.y8{bottom:779.893333pt;}
.y37{bottom:785.973333pt;}
.yde{bottom:791.813333pt;}
.y7{bottom:795.893333pt;}
.yb8{bottom:801.973333pt;}
.ydd{bottom:815.493333pt;}
.y36{bottom:817.653333pt;}
.y6{bottom:824.613333pt;}
.ydc{bottom:831.093333pt;}
.y35{bottom:833.253333pt;}
.y5{bottom:841.813333pt;}
.y34{bottom:848.853333pt;}
.ydb{bottom:855.013333pt;}
.y33{bottom:864.533333pt;}
.y107{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y32{bottom:880.133333pt;}
.y106{bottom:888.133333pt;}
.y31{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.yda{bottom:897.920000pt;}
.y105{bottom:903.840000pt;}
.y30{bottom:911.440000pt;}
.y104{bottom:919.440000pt;}
.yd9{bottom:921.840000pt;}
.y2f{bottom:927.040000pt;}
.y127{bottom:935.040000pt;}
.y2e{bottom:942.720000pt;}
.y103{bottom:943.040000pt;}
.y9e{bottom:951.040000pt;}
.yd8{bottom:955.040000pt;}
.y102{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y9d{bottom:966.720000pt;}
.y126{bottom:974.320000pt;}
.y9c{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h14{height:35.280000pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:91.626667pt;}
.h13{height:91.680000pt;}
.hf{height:107.200000pt;}
.h11{height:107.226667pt;}
.h10{height:107.280000pt;}
.h15{height:107.306667pt;}
.h16{height:122.880000pt;}
.hd{height:122.906667pt;}
.ha{height:793.920000pt;}
.hb{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:90.480000pt;}
.w7{width:194.426667pt;}
.w9{width:207.546667pt;}
.wa{width:209.520000pt;}
.w8{width:224.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.xb{left:20.960000pt;}
.x1{left:60.480000pt;}
.xd{left:91.679988pt;}
.x6{left:95.999983pt;}
.xe{left:98.879988pt;}
.x2{left:187.626655pt;}
.x4{left:351.786650pt;}
.x8{left:382.906667pt;}
.x9{left:607.866667pt;}
.xc{left:692.053322pt;}
.x3{left:711.413322pt;}
.xa{left:816.133333pt;}
.x5{left:1004.133317pt;}
}




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