
    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_c6997c660e9382b3fa841a26.woff')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_386179ec08b532f2b418178d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_a3ae4b1c6912ea70916a280f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_04fe116e7c6514ef595d9900.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_c6edc80fd15a9e89f56f2731.woff')format("woff");}.ff5{font-family:ff5;line-height:1.364258;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_b2e3e4deccba301be7ceb891.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_0ee0bc5dfc03b394a0b88d68.woff')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_dd32ec96817c300f11301b22.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1f07bcdc608576daec0dc397.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_2adbb1a6eb92eb770539875e.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v5{vertical-align:-64.500000px;}
.v4{vertical-align:-63.000000px;}
.v7{vertical-align:-61.500000px;}
.v2{vertical-align:-18.000000px;}
.v6{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:21.000000px;}
.ls27{letter-spacing:-1.500000px;}
.ls1e{letter-spacing:-1.476000px;}
.lse{letter-spacing:-0.024000px;}
.lsb{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.012000px;}
.lsc{letter-spacing:-0.006000px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006000px;}
.ls6{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.078000px;}
.ls1f{letter-spacing:0.150000px;}
.ls1b{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.438000px;}
.lsd{letter-spacing:0.492000px;}
.ls8{letter-spacing:0.516000px;}
.ls20{letter-spacing:0.558000px;}
.ls12{letter-spacing:0.660000px;}
.ls18{letter-spacing:1.500000px;}
.ls1d{letter-spacing:1.518000px;}
.ls13{letter-spacing:2.988000px;}
.ls4{letter-spacing:4.500000px;}
.ls3{letter-spacing:7.500000px;}
.ls19{letter-spacing:15.000000px;}
.ls5{letter-spacing:16.500000px;}
.ls24{letter-spacing:28.500000px;}
.ls16{letter-spacing:29.988000px;}
.ls1c{letter-spacing:30.108000px;}
.ls10{letter-spacing:30.138000px;}
.ls22{letter-spacing:30.168000px;}
.lsf{letter-spacing:100.500000px;}
.ls15{letter-spacing:165.120000px;}
.ls17{letter-spacing:349.650000px;}
.ls23{letter-spacing:384.150000px;}
.ls21{letter-spacing:442.650000px;}
.ls25{letter-spacing:502.650000px;}
.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:-15.000000px;}
.ws7{word-spacing:-13.524000px;}
.ws4{word-spacing:-13.518000px;}
.wse{word-spacing:-13.512000px;}
.wsa{word-spacing:-13.506000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.494000px;}
.ws5{word-spacing:-13.488000px;}
.ws10{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.476000px;}
.wsc{word-spacing:-12.000000px;}
.ws41{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.750000px;}
.ws9{word-spacing:-9.492000px;}
.ws2{word-spacing:-9.000000px;}
.wsb{word-spacing:-7.500000px;}
.ws40{word-spacing:-6.750000px;}
.ws16{word-spacing:-1.500000px;}
.ws25{word-spacing:-1.458000px;}
.ws2a{word-spacing:-1.392000px;}
.ws14{word-spacing:-0.504000px;}
.ws13{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.384000px;}
.ws3f{word-spacing:-0.084000px;}
.ws1d{word-spacing:-0.018000px;}
.ws12{word-spacing:0.000000px;}
.ws3c{word-spacing:0.012000px;}
.ws1a{word-spacing:0.018000px;}
.ws1f{word-spacing:0.024000px;}
.ws17{word-spacing:0.066000px;}
.ws3e{word-spacing:0.102000px;}
.ws3b{word-spacing:0.108000px;}
.ws1e{word-spacing:0.132000px;}
.ws18{word-spacing:0.144000px;}
.ws19{word-spacing:0.168000px;}
.ws24{word-spacing:0.186000px;}
.ws1c{word-spacing:0.198000px;}
.ws1b{word-spacing:0.330000px;}
.ws3d{word-spacing:0.396000px;}
.ws15{word-spacing:0.630000px;}
.ws2b{word-spacing:1.404000px;}
.ws30{word-spacing:1.458000px;}
.ws2d{word-spacing:1.476000px;}
.ws2f{word-spacing:1.500000px;}
.ws2e{word-spacing:1.512000px;}
.ws31{word-spacing:1.542000px;}
.ws33{word-spacing:1.566000px;}
.ws3a{word-spacing:1.572000px;}
.ws38{word-spacing:1.620000px;}
.ws2c{word-spacing:1.770000px;}
.ws36{word-spacing:2.130000px;}
.ws39{word-spacing:2.400000px;}
.ws35{word-spacing:2.916000px;}
.ws32{word-spacing:2.970000px;}
.ws37{word-spacing:3.024000px;}
.ws34{word-spacing:3.624000px;}
.ws22{word-spacing:4.428000px;}
.ws20{word-spacing:4.482000px;}
.ws21{word-spacing:4.536000px;}
.ws29{word-spacing:5.844000px;}
.ws23{word-spacing:5.952000px;}
.ws27{word-spacing:7.398000px;}
.ws26{word-spacing:7.452000px;}
.ws28{word-spacing:7.506000px;}
.ws8{word-spacing:31.500000px;}
.wsd{word-spacing:31.680000px;}
.ws42{word-spacing:1307.100000px;}
._1a{margin-left:-28.206000px;}
._17{margin-left:-4.500000px;}
._b{margin-left:-3.383982px;}
._2{margin-left:-2.340018px;}
._1{margin-left:-1.001994px;}
._0{width:1.361952px;}
._5{width:2.370138px;}
._6{width:3.768048px;}
._8{width:4.781988px;}
._3{width:5.910000px;}
._7{width:7.560000px;}
._10{width:9.072000px;}
._4{width:10.278018px;}
._12{width:11.772000px;}
._11{width:15.066000px;}
._9{width:16.254000px;}
._a{width:17.442000px;}
._e{width:19.440000px;}
._c{width:20.736000px;}
._d{width:22.620018px;}
._13{width:23.976000px;}
._15{width:26.784000px;}
._16{width:27.942000px;}
._1b{width:29.244000px;}
._1e{width:30.870000px;}
._19{width:33.042000px;}
._1d{width:34.506000px;}
._f{width:37.620000px;}
._14{width:38.988000px;}
._1c{width:72.132000px;}
._18{width:1320.558000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.000000px;}
.fs5{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yee{bottom:0.015000px;}
.ya1{bottom:0.750000px;}
.y3c{bottom:2.526000px;}
.y77{bottom:3.000000px;}
.ydc{bottom:3.375000px;}
.yd8{bottom:3.750000px;}
.y123{bottom:4.125000px;}
.yf2{bottom:8.625000px;}
.yd6{bottom:11.250000px;}
.y3b{bottom:16.926000px;}
.yd9{bottom:18.375000px;}
.y76{bottom:18.750000px;}
.yff{bottom:18.780000px;}
.yd7{bottom:19.125000px;}
.yfe{bottom:19.155000px;}
.yfd{bottom:19.905000px;}
.y3d{bottom:35.760095px;}
.yd4{bottom:108.412500px;}
.yf1{bottom:111.787500px;}
.y36{bottom:113.287500px;}
.y178{bottom:115.537500px;}
.y128{bottom:116.662500px;}
.y158{bottom:117.412500px;}
.y9e{bottom:118.537500px;}
.yd3{bottom:124.162500px;}
.y71{bottom:124.912500px;}
.yf0{bottom:127.537500px;}
.y177{bottom:130.912500px;}
.y127{bottom:132.412500px;}
.y157{bottom:133.162500px;}
.yd2{bottom:133.537500px;}
.y9d{bottom:134.287500px;}
.y111{bottom:139.537500px;}
.yef{bottom:139.912500px;}
.y70{bottom:140.662500px;}
.y126{bottom:145.537500px;}
.y176{bottom:146.662500px;}
.y156{bottom:148.537500px;}
.y9c{bottom:149.662500px;}
.yea{bottom:154.155000px;}
.y39{bottom:154.530000px;}
.y110{bottom:154.905000px;}
.yed{bottom:155.280000px;}
.y6f{bottom:156.045000px;}
.y125{bottom:161.655000px;}
.y175{bottom:162.045000px;}
.y155{bottom:163.920000px;}
.y9b{bottom:165.030000px;}
.y38{bottom:169.920000px;}
.y10f{bottom:170.670000px;}
.y6e{bottom:171.405000px;}
.yd1{bottom:173.670000px;}
.y174{bottom:177.420000px;}
.y124{bottom:177.780000px;}
.y154{bottom:179.670000px;}
.y9a{bottom:180.795000px;}
.ye9{bottom:185.325000px;}
.y37{bottom:185.700000px;}
.y10e{bottom:186.075000px;}
.y6d{bottom:187.200000px;}
.yd0{bottom:189.075000px;}
.y173{bottom:193.200000px;}
.y122{bottom:194.325000px;}
.y153{bottom:195.075000px;}
.y99{bottom:196.200000px;}
.ye8{bottom:200.700000px;}
.y35{bottom:201.075000px;}
.y10d{bottom:201.825000px;}
.y6c{bottom:202.575000px;}
.ycf{bottom:204.825000px;}
.y172{bottom:208.575000px;}
.y152{bottom:210.825000px;}
.y121{bottom:211.575000px;}
.y98{bottom:211.950000px;}
.y34{bottom:216.450000px;}
.y10c{bottom:217.200000px;}
.y6b{bottom:218.325000px;}
.yce{bottom:220.200000px;}
.y171{bottom:224.325000px;}
.y151{bottom:226.200000px;}
.y97{bottom:227.325000px;}
.y120{bottom:231.075000px;}
.ye7{bottom:231.825000px;}
.y33{bottom:232.200000px;}
.y10b{bottom:232.575000px;}
.y6a{bottom:233.700000px;}
.ycd{bottom:235.950000px;}
.yf7{bottom:238.575000px;}
.y170{bottom:239.700000px;}
.y96{bottom:242.700000px;}
.y11f{bottom:246.450000px;}
.y32{bottom:247.575000px;}
.y10a{bottom:248.325000px;}
.y69{bottom:249.075000px;}
.ycc{bottom:251.325000px;}
.y16f{bottom:255.075000px;}
.y150{bottom:257.325000px;}
.y95{bottom:258.450000px;}
.ye6{bottom:260.700000px;}
.y11e{bottom:261.825000px;}
.y31{bottom:263.325000px;}
.y109{bottom:263.700000px;}
.y68{bottom:264.825000px;}
.ycb{bottom:266.700000px;}
.y16e{bottom:270.825000px;}
.y14f{bottom:272.700000px;}
.y94{bottom:273.825000px;}
.y11d{bottom:277.575000px;}
.y30{bottom:278.700000px;}
.y108{bottom:279.450000px;}
.y67{bottom:280.200000px;}
.yca{bottom:282.450000px;}
.y16d{bottom:286.200000px;}
.y14e{bottom:288.450000px;}
.y93{bottom:289.575000px;}
.ye5{bottom:291.825000px;}
.y11c{bottom:292.950000px;}
.y2f{bottom:294.075000px;}
.y107{bottom:294.825000px;}
.y66{bottom:295.950000px;}
.yc9{bottom:297.825000px;}
.y16c{bottom:301.950000px;}
.y14d{bottom:303.825000px;}
.y92{bottom:304.950000px;}
.ye4{bottom:307.575000px;}
.y11b{bottom:308.700000px;}
.y2e{bottom:309.825000px;}
.y106{bottom:310.200000px;}
.y65{bottom:311.370000px;}
.yc8{bottom:313.605000px;}
.y16b{bottom:317.355000px;}
.y14c{bottom:319.245000px;}
.y91{bottom:320.355000px;}
.ye3{bottom:322.995000px;}
.y11a{bottom:324.105000px;}
.y2d{bottom:325.245000px;}
.y105{bottom:325.995000px;}
.y64{bottom:326.730000px;}
.yc7{bottom:328.995000px;}
.y16a{bottom:332.745000px;}
.y14b{bottom:334.995000px;}
.y90{bottom:336.120000px;}
.ye2{bottom:338.745000px;}
.y119{bottom:339.495000px;}
.y2c{bottom:340.980000px;}
.y104{bottom:341.370000px;}
.y63{bottom:342.495000px;}
.yc6{bottom:344.355000px;}
.y169{bottom:348.495000px;}
.y8f{bottom:351.495000px;}
.ye1{bottom:354.105000px;}
.y118{bottom:355.245000px;}
.y2b{bottom:356.370000px;}
.y103{bottom:357.105000px;}
.y62{bottom:357.855000px;}
.yc5{bottom:360.120000px;}
.y168{bottom:363.855000px;}
.y14a{bottom:366.120000px;}
.ye0{bottom:366.495000px;}
.y8e{bottom:367.230000px;}
.y117{bottom:370.605000px;}
.y2a{bottom:371.745000px;}
.y61{bottom:373.245000px;}
.yc4{bottom:375.495000px;}
.y102{bottom:376.245000px;}
.y167{bottom:379.620000px;}
.y149{bottom:381.480000px;}
.y8d{bottom:382.620000px;}
.y116{bottom:386.370000px;}
.y29{bottom:387.480000px;}
.y60{bottom:388.995000px;}
.yc3{bottom:391.230000px;}
.y101{bottom:392.745000px;}
.y166{bottom:394.995000px;}
.y148{bottom:396.870000px;}
.y8c{bottom:397.995000px;}
.y115{bottom:401.745000px;}
.y28{bottom:402.870000px;}
.y5f{bottom:404.370000px;}
.yc2{bottom:406.620000px;}
.y100{bottom:408.870000px;}
.y165{bottom:410.370000px;}
.y147{bottom:412.620000px;}
.y8b{bottom:413.745000px;}
.y114{bottom:417.120000px;}
.y27{bottom:418.620000px;}
.y5e{bottom:420.120000px;}
.yc1{bottom:421.995000px;}
.yfc{bottom:424.995000px;}
.y164{bottom:426.120000px;}
.y146{bottom:427.995000px;}
.y8a{bottom:429.120000px;}
.y113{bottom:432.870000px;}
.y26{bottom:433.995000px;}
.y5d{bottom:435.495000px;}
.yc0{bottom:437.775000px;}
.y163{bottom:441.525000px;}
.y145{bottom:443.775000px;}
.y89{bottom:444.900000px;}
.y25{bottom:449.400000px;}
.y5c{bottom:452.025000px;}
.y162{bottom:457.275000px;}
.yfb{bottom:458.025000px;}
.y144{bottom:459.150000px;}
.y88{bottom:460.275000px;}
.y112{bottom:461.400000px;}
.y24{bottom:465.150000px;}
.y5b{bottom:468.525000px;}
.y161{bottom:472.650000px;}
.y143{bottom:474.525000px;}
.y87{bottom:475.650000px;}
.yfa{bottom:477.525000px;}
.y23{bottom:480.525000px;}
.ybf{bottom:482.400000px;}
.y5a{bottom:485.025000px;}
.y160{bottom:488.025000px;}
.y142{bottom:490.275000px;}
.y86{bottom:491.400000px;}
.yf9{bottom:494.775000px;}
.y22{bottom:496.275000px;}
.ybe{bottom:497.775000px;}
.y59{bottom:501.525000px;}
.y15f{bottom:503.775000px;}
.y141{bottom:505.650000px;}
.y85{bottom:506.775000px;}
.y21{bottom:511.650000px;}
.yf8{bottom:512.025000px;}
.ybd{bottom:513.150000px;}
.y58{bottom:518.025000px;}
.y15e{bottom:519.150000px;}
.y140{bottom:521.025000px;}
.y84{bottom:522.150000px;}
.yf6{bottom:524.400000px;}
.y20{bottom:527.025000px;}
.ybc{bottom:528.900000px;}
.y57{bottom:534.525000px;}
.y13f{bottom:536.775000px;}
.y83{bottom:537.900000px;}
.y1f{bottom:542.775000px;}
.ybb{bottom:544.275000px;}
.y56{bottom:549.900000px;}
.y15d{bottom:550.275000px;}
.y13e{bottom:552.150000px;}
.y82{bottom:553.275000px;}
.y1e{bottom:558.150000px;}
.yba{bottom:559.650000px;}
.y55{bottom:565.695000px;}
.y13d{bottom:567.945000px;}
.y1d{bottom:573.945000px;}
.yb9{bottom:575.445000px;}
.y54{bottom:581.070000px;}
.y15c{bottom:581.445000px;}
.y13c{bottom:583.320000px;}
.y1c{bottom:589.320000px;}
.yb8{bottom:590.820000px;}
.y53{bottom:596.820000px;}
.y81{bottom:597.945000px;}
.y13b{bottom:598.695000px;}
.y1b{bottom:604.695000px;}
.yb7{bottom:606.570000px;}
.y52{bottom:612.195000px;}
.ydf{bottom:612.570000px;}
.y80{bottom:613.320000px;}
.y13a{bottom:614.445000px;}
.y1a{bottom:620.445000px;}
.yb6{bottom:621.945000px;}
.y51{bottom:627.570000px;}
.y15b{bottom:627.945000px;}
.yde{bottom:628.320000px;}
.y7f{bottom:629.070000px;}
.y139{bottom:629.820000px;}
.y19{bottom:635.820000px;}
.yb5{bottom:637.320000px;}
.y15a{bottom:643.320000px;}
.y50{bottom:644.445000px;}
.ydd{bottom:645.945000px;}
.y18{bottom:651.570000px;}
.yec{bottom:651.945000px;}
.yb4{bottom:653.070000px;}
.y159{bottom:659.070000px;}
.y7e{bottom:660.195000px;}
.ydb{bottom:662.070000px;}
.y17{bottom:666.945000px;}
.yeb{bottom:667.695000px;}
.yb3{bottom:668.445000px;}
.y138{bottom:674.445000px;}
.y7d{bottom:675.570000px;}
.yda{bottom:678.570000px;}
.y16{bottom:682.320000px;}
.yb2{bottom:684.195000px;}
.y137{bottom:689.820000px;}
.y7c{bottom:690.945000px;}
.yd5{bottom:694.725000px;}
.y15{bottom:698.100000px;}
.yb1{bottom:699.600000px;}
.y136{bottom:705.600000px;}
.y7b{bottom:706.725000px;}
.y14{bottom:713.475000px;}
.yb0{bottom:714.975000px;}
.y135{bottom:720.975000px;}
.y7a{bottom:722.100000px;}
.y13{bottom:728.850000px;}
.yaf{bottom:730.725000px;}
.y134{bottom:736.725000px;}
.y79{bottom:737.850000px;}
.y12{bottom:744.600000px;}
.yae{bottom:746.100000px;}
.y133{bottom:752.100000px;}
.y78{bottom:753.225000px;}
.y11{bottom:759.975000px;}
.yad{bottom:761.850000px;}
.y75{bottom:765.600000px;}
.y132{bottom:767.475000px;}
.y10{bottom:775.725000px;}
.yac{bottom:777.225000px;}
.yf5{bottom:778.725000px;}
.y184{bottom:782.475000px;}
.y131{bottom:783.225000px;}
.yab{bottom:792.600000px;}
.yf4{bottom:795.600000px;}
.y74{bottom:796.725000px;}
.y130{bottom:798.600000px;}
.yf{bottom:804.225000px;}
.yaa{bottom:808.350000px;}
.yf3{bottom:811.350000px;}
.y183{bottom:813.975000px;}
.y12f{bottom:814.350000px;}
.ya9{bottom:823.755000px;}
.y182{bottom:829.380000px;}
.y12e{bottom:829.755000px;}
.ya8{bottom:839.505000px;}
.y12d{bottom:845.130000px;}
.ye{bottom:851.136000px;}
.ya7{bottom:854.895000px;}
.y4f{bottom:857.880000px;}
.y181{bottom:860.505000px;}
.y12c{bottom:860.880000px;}
.yd{bottom:866.656500px;}
.ya6{bottom:870.255000px;}
.y4e{bottom:873.255000px;}
.y180{bottom:876.255000px;}
.y12b{bottom:878.130000px;}
.yc{bottom:882.177000px;}
.ya5{bottom:886.005000px;}
.y4d{bottom:889.755000px;}
.y17f{bottom:891.630000px;}
.y12a{bottom:893.505000px;}
.yb{bottom:897.697500px;}
.ya4{bottom:901.380000px;}
.y4c{bottom:906.255000px;}
.y17e{bottom:907.005000px;}
.y129{bottom:910.380000px;}
.ya{bottom:913.218000px;}
.ya3{bottom:917.130000px;}
.y4b{bottom:921.630000px;}
.y17d{bottom:922.755000px;}
.y9{bottom:928.738500px;}
.ya2{bottom:932.505000px;}
.y4a{bottom:938.130000px;}
.y8{bottom:944.259000px;}
.ya0{bottom:949.425000px;}
.y17c{bottom:953.925000px;}
.y49{bottom:954.675000px;}
.y7{bottom:959.779500px;}
.y17b{bottom:969.300000px;}
.y48{bottom:970.050000px;}
.y6{bottom:975.300000px;}
.y17a{bottom:984.675000px;}
.y47{bottom:986.925000px;}
.y179{bottom:1000.425000px;}
.y46{bottom:1002.300000px;}
.y5{bottom:1006.425000px;}
.y73{bottom:1015.800000px;}
.y72{bottom:1031.550000px;}
.y45{bottom:1046.925000px;}
.y4{bottom:1057.425000px;}
.y44{bottom:1062.300000px;}
.y43{bottom:1078.080000px;}
.y3{bottom:1082.205000px;}
.y42{bottom:1093.455000px;}
.y2{bottom:1102.455000px;}
.y41{bottom:1109.205000px;}
.y40{bottom:1124.580000px;}
.y1{bottom:1135.455000px;}
.y9f{bottom:1136.955000px;}
.y3f{bottom:1139.955000px;}
.y3a{bottom:1194.074762px;}
.y3e{bottom:1246.500000px;}
.h10{height:15.375000px;}
.h15{height:15.412500px;}
.h19{height:15.735000px;}
.h16{height:15.750000px;}
.h21{height:15.787500px;}
.h20{height:16.500000px;}
.h13{height:26.499023px;}
.h9{height:29.040150px;}
.h8{height:29.443359px;}
.hf{height:31.125000px;}
.h14{height:31.875000px;}
.h1d{height:32.287500px;}
.h4{height:35.332031px;}
.h12{height:41.660156px;}
.ha{height:49.898438px;}
.h6{height:52.998047px;}
.h7{height:53.332031px;}
.h5{height:54.421875px;}
.hb{height:55.503491px;}
.h1f{height:56.214844px;}
.h1e{height:58.857422px;}
.hd{height:58.886719px;}
.h3{height:59.276367px;}
.h2{height:72.562500px;}
.h11{height:187.530000px;}
.hc{height:210.075000px;}
.he{height:216.075000px;}
.h22{height:226.575000px;}
.h17{height:243.075000px;}
.h1c{height:250.950000px;}
.h1b{height:328.575000px;}
.h18{height:484.635000px;}
.h1a{height:496.650000px;}
.h0{height:1258.875000px;}
.h1{height:1259.250000px;}
.w4{width:13.346985px;}
.w10{width:34.875000px;}
.w1e{width:37.537500px;}
.w17{width:45.412500px;}
.w1f{width:45.750000px;}
.w1b{width:46.537500px;}
.w15{width:51.037500px;}
.w16{width:51.375000px;}
.w13{width:51.412500px;}
.w14{width:51.750000px;}
.w1c{width:52.537500px;}
.w1a{width:53.625000px;}
.wc{width:60.750000px;}
.w1d{width:63.750000px;}
.wa{width:66.412500px;}
.w9{width:80.662500px;}
.wb{width:137.287500px;}
.w19{width:148.537500px;}
.w18{width:154.200000px;}
.w12{width:154.950000px;}
.w11{width:156.075000px;}
.w7{width:235.200000px;}
.w6{width:240.120000px;}
.w8{width:247.995000px;}
.w5{width:348.900000px;}
.wf{width:361.275000px;}
.w3{width:557.566500px;}
.w2{width:685.020000px;}
.wd{width:722.550000px;}
.we{width:730.800000px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.875000px;}
.x22{left:9.000000px;}
.x35{left:10.537500px;}
.x1f{left:11.625000px;}
.xc{left:13.348500px;}
.x23{left:15.375000px;}
.x3a{left:16.875000px;}
.x1d{left:18.375000px;}
.x9{left:20.022000px;}
.x27{left:21.375000px;}
.x37{left:23.250000px;}
.x25{left:24.750000px;}
.x40{left:27.750000px;}
.x28{left:30.405000px;}
.x24{left:35.280000px;}
.x3e{left:37.500000px;}
.x33{left:39.787500px;}
.x20{left:53.280000px;}
.x26{left:60.030000px;}
.x3{left:85.162500px;}
.x3b{left:94.162500px;}
.xe{left:95.662500px;}
.x8{left:103.927506px;}
.xf{left:106.537500px;}
.x15{left:109.920000px;}
.x13{left:112.162500px;}
.x17{left:116.325000px;}
.x32{left:121.537500px;}
.xa{left:167.654251px;}
.x2f{left:172.957500px;}
.x31{left:186.075000px;}
.x5{left:194.700000px;}
.x1{left:216.309000px;}
.x2{left:218.673000px;}
.x36{left:225.870000px;}
.x19{left:227.325000px;}
.x18{left:231.487500px;}
.x1a{left:239.745000px;}
.x43{left:259.620000px;}
.x4{left:263.370000px;}
.x34{left:278.370000px;}
.x1b{left:301.245000px;}
.x14{left:325.275000px;}
.x38{left:330.150000px;}
.x10{left:333.157500px;}
.x11{left:343.260000px;}
.x30{left:349.282500px;}
.x29{left:350.775000px;}
.x2c{left:353.407500px;}
.x39{left:382.275000px;}
.xd{left:446.820000px;}
.x7{left:459.570000px;}
.x3c{left:462.945000px;}
.x3d{left:506.475000px;}
.x1c{left:541.725000px;}
.x16{left:560.475000px;}
.x6{left:563.475000px;}
.x2a{left:598.395000px;}
.x1e{left:608.895000px;}
.x3f{left:661.425000px;}
.x2b{left:703.792500px;}
.x2d{left:712.042500px;}
.x2e{left:722.182500px;}
.x41{left:725.925000px;}
.x21{left:746.970000px;}
.x42{left:764.220000px;}
.xb{left:794.488312px;}
@media print{
.v5{vertical-align:-57.333333pt;}
.v4{vertical-align:-56.000000pt;}
.v7{vertical-align:-54.666667pt;}
.v2{vertical-align:-16.000000pt;}
.v6{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls27{letter-spacing:-1.333333pt;}
.ls1e{letter-spacing:-1.312000pt;}
.lse{letter-spacing:-0.021333pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.010667pt;}
.lsc{letter-spacing:-0.005333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005333pt;}
.ls6{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.069333pt;}
.ls1f{letter-spacing:0.133333pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.389333pt;}
.lsd{letter-spacing:0.437333pt;}
.ls8{letter-spacing:0.458667pt;}
.ls20{letter-spacing:0.496000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls18{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:1.349333pt;}
.ls13{letter-spacing:2.656000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls3{letter-spacing:6.666667pt;}
.ls19{letter-spacing:13.333333pt;}
.ls5{letter-spacing:14.666667pt;}
.ls24{letter-spacing:25.333333pt;}
.ls16{letter-spacing:26.656000pt;}
.ls1c{letter-spacing:26.762667pt;}
.ls10{letter-spacing:26.789333pt;}
.ls22{letter-spacing:26.816000pt;}
.lsf{letter-spacing:89.333333pt;}
.ls15{letter-spacing:146.773333pt;}
.ls17{letter-spacing:310.800000pt;}
.ls23{letter-spacing:341.466667pt;}
.ls21{letter-spacing:393.466667pt;}
.ls25{letter-spacing:446.800000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.021333pt;}
.ws4{word-spacing:-12.016000pt;}
.wse{word-spacing:-12.010667pt;}
.wsa{word-spacing:-12.005333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.994667pt;}
.ws5{word-spacing:-11.989333pt;}
.ws10{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.978667pt;}
.wsc{word-spacing:-10.666667pt;}
.ws41{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.666667pt;}
.ws9{word-spacing:-8.437333pt;}
.ws2{word-spacing:-8.000000pt;}
.wsb{word-spacing:-6.666667pt;}
.ws40{word-spacing:-6.000000pt;}
.ws16{word-spacing:-1.333333pt;}
.ws25{word-spacing:-1.296000pt;}
.ws2a{word-spacing:-1.237333pt;}
.ws14{word-spacing:-0.448000pt;}
.ws13{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.341333pt;}
.ws3f{word-spacing:-0.074667pt;}
.ws1d{word-spacing:-0.016000pt;}
.ws12{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.010667pt;}
.ws1a{word-spacing:0.016000pt;}
.ws1f{word-spacing:0.021333pt;}
.ws17{word-spacing:0.058667pt;}
.ws3e{word-spacing:0.090667pt;}
.ws3b{word-spacing:0.096000pt;}
.ws1e{word-spacing:0.117333pt;}
.ws18{word-spacing:0.128000pt;}
.ws19{word-spacing:0.149333pt;}
.ws24{word-spacing:0.165333pt;}
.ws1c{word-spacing:0.176000pt;}
.ws1b{word-spacing:0.293333pt;}
.ws3d{word-spacing:0.352000pt;}
.ws15{word-spacing:0.560000pt;}
.ws2b{word-spacing:1.248000pt;}
.ws30{word-spacing:1.296000pt;}
.ws2d{word-spacing:1.312000pt;}
.ws2f{word-spacing:1.333333pt;}
.ws2e{word-spacing:1.344000pt;}
.ws31{word-spacing:1.370667pt;}
.ws33{word-spacing:1.392000pt;}
.ws3a{word-spacing:1.397333pt;}
.ws38{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.573333pt;}
.ws36{word-spacing:1.893333pt;}
.ws39{word-spacing:2.133333pt;}
.ws35{word-spacing:2.592000pt;}
.ws32{word-spacing:2.640000pt;}
.ws37{word-spacing:2.688000pt;}
.ws34{word-spacing:3.221333pt;}
.ws22{word-spacing:3.936000pt;}
.ws20{word-spacing:3.984000pt;}
.ws21{word-spacing:4.032000pt;}
.ws29{word-spacing:5.194667pt;}
.ws23{word-spacing:5.290667pt;}
.ws27{word-spacing:6.576000pt;}
.ws26{word-spacing:6.624000pt;}
.ws28{word-spacing:6.672000pt;}
.ws8{word-spacing:28.000000pt;}
.wsd{word-spacing:28.160000pt;}
.ws42{word-spacing:1161.866667pt;}
._1a{margin-left:-25.072000pt;}
._17{margin-left:-4.000000pt;}
._b{margin-left:-3.007984pt;}
._2{margin-left:-2.080016pt;}
._1{margin-left:-0.890661pt;}
._0{width:1.210624pt;}
._5{width:2.106789pt;}
._6{width:3.349376pt;}
._8{width:4.250656pt;}
._3{width:5.253333pt;}
._7{width:6.720000pt;}
._10{width:8.064000pt;}
._4{width:9.136016pt;}
._12{width:10.464000pt;}
._11{width:13.392000pt;}
._9{width:14.448000pt;}
._a{width:15.504000pt;}
._e{width:17.280000pt;}
._c{width:18.432000pt;}
._d{width:20.106683pt;}
._13{width:21.312000pt;}
._15{width:23.808000pt;}
._16{width:24.837333pt;}
._1b{width:25.994667pt;}
._1e{width:27.440000pt;}
._19{width:29.370667pt;}
._1d{width:30.672000pt;}
._f{width:33.440000pt;}
._14{width:34.656000pt;}
._1c{width:64.117333pt;}
._18{width:1173.829333pt;}
.fs8{font-size:24.000000pt;}
.fs5{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:0.013333pt;}
.ya1{bottom:0.666667pt;}
.y3c{bottom:2.245333pt;}
.y77{bottom:2.666667pt;}
.ydc{bottom:3.000000pt;}
.yd8{bottom:3.333333pt;}
.y123{bottom:3.666667pt;}
.yf2{bottom:7.666667pt;}
.yd6{bottom:10.000000pt;}
.y3b{bottom:15.045333pt;}
.yd9{bottom:16.333333pt;}
.y76{bottom:16.666667pt;}
.yff{bottom:16.693333pt;}
.yd7{bottom:17.000000pt;}
.yfe{bottom:17.026667pt;}
.yfd{bottom:17.693333pt;}
.y3d{bottom:31.786751pt;}
.yd4{bottom:96.366667pt;}
.yf1{bottom:99.366667pt;}
.y36{bottom:100.700000pt;}
.y178{bottom:102.700000pt;}
.y128{bottom:103.700000pt;}
.y158{bottom:104.366667pt;}
.y9e{bottom:105.366667pt;}
.yd3{bottom:110.366667pt;}
.y71{bottom:111.033333pt;}
.yf0{bottom:113.366667pt;}
.y177{bottom:116.366667pt;}
.y127{bottom:117.700000pt;}
.y157{bottom:118.366667pt;}
.yd2{bottom:118.700000pt;}
.y9d{bottom:119.366667pt;}
.y111{bottom:124.033333pt;}
.yef{bottom:124.366667pt;}
.y70{bottom:125.033333pt;}
.y126{bottom:129.366667pt;}
.y176{bottom:130.366667pt;}
.y156{bottom:132.033333pt;}
.y9c{bottom:133.033333pt;}
.yea{bottom:137.026667pt;}
.y39{bottom:137.360000pt;}
.y110{bottom:137.693333pt;}
.yed{bottom:138.026667pt;}
.y6f{bottom:138.706667pt;}
.y125{bottom:143.693333pt;}
.y175{bottom:144.040000pt;}
.y155{bottom:145.706667pt;}
.y9b{bottom:146.693333pt;}
.y38{bottom:151.040000pt;}
.y10f{bottom:151.706667pt;}
.y6e{bottom:152.360000pt;}
.yd1{bottom:154.373333pt;}
.y174{bottom:157.706667pt;}
.y124{bottom:158.026667pt;}
.y154{bottom:159.706667pt;}
.y9a{bottom:160.706667pt;}
.ye9{bottom:164.733333pt;}
.y37{bottom:165.066667pt;}
.y10e{bottom:165.400000pt;}
.y6d{bottom:166.400000pt;}
.yd0{bottom:168.066667pt;}
.y173{bottom:171.733333pt;}
.y122{bottom:172.733333pt;}
.y153{bottom:173.400000pt;}
.y99{bottom:174.400000pt;}
.ye8{bottom:178.400000pt;}
.y35{bottom:178.733333pt;}
.y10d{bottom:179.400000pt;}
.y6c{bottom:180.066667pt;}
.ycf{bottom:182.066667pt;}
.y172{bottom:185.400000pt;}
.y152{bottom:187.400000pt;}
.y121{bottom:188.066667pt;}
.y98{bottom:188.400000pt;}
.y34{bottom:192.400000pt;}
.y10c{bottom:193.066667pt;}
.y6b{bottom:194.066667pt;}
.yce{bottom:195.733333pt;}
.y171{bottom:199.400000pt;}
.y151{bottom:201.066667pt;}
.y97{bottom:202.066667pt;}
.y120{bottom:205.400000pt;}
.ye7{bottom:206.066667pt;}
.y33{bottom:206.400000pt;}
.y10b{bottom:206.733333pt;}
.y6a{bottom:207.733333pt;}
.ycd{bottom:209.733333pt;}
.yf7{bottom:212.066667pt;}
.y170{bottom:213.066667pt;}
.y96{bottom:215.733333pt;}
.y11f{bottom:219.066667pt;}
.y32{bottom:220.066667pt;}
.y10a{bottom:220.733333pt;}
.y69{bottom:221.400000pt;}
.ycc{bottom:223.400000pt;}
.y16f{bottom:226.733333pt;}
.y150{bottom:228.733333pt;}
.y95{bottom:229.733333pt;}
.ye6{bottom:231.733333pt;}
.y11e{bottom:232.733333pt;}
.y31{bottom:234.066667pt;}
.y109{bottom:234.400000pt;}
.y68{bottom:235.400000pt;}
.ycb{bottom:237.066667pt;}
.y16e{bottom:240.733333pt;}
.y14f{bottom:242.400000pt;}
.y94{bottom:243.400000pt;}
.y11d{bottom:246.733333pt;}
.y30{bottom:247.733333pt;}
.y108{bottom:248.400000pt;}
.y67{bottom:249.066667pt;}
.yca{bottom:251.066667pt;}
.y16d{bottom:254.400000pt;}
.y14e{bottom:256.400000pt;}
.y93{bottom:257.400000pt;}
.ye5{bottom:259.400000pt;}
.y11c{bottom:260.400000pt;}
.y2f{bottom:261.400000pt;}
.y107{bottom:262.066667pt;}
.y66{bottom:263.066667pt;}
.yc9{bottom:264.733333pt;}
.y16c{bottom:268.400000pt;}
.y14d{bottom:270.066667pt;}
.y92{bottom:271.066667pt;}
.ye4{bottom:273.400000pt;}
.y11b{bottom:274.400000pt;}
.y2e{bottom:275.400000pt;}
.y106{bottom:275.733333pt;}
.y65{bottom:276.773333pt;}
.yc8{bottom:278.760000pt;}
.y16b{bottom:282.093333pt;}
.y14c{bottom:283.773333pt;}
.y91{bottom:284.760000pt;}
.ye3{bottom:287.106667pt;}
.y11a{bottom:288.093333pt;}
.y2d{bottom:289.106667pt;}
.y105{bottom:289.773333pt;}
.y64{bottom:290.426667pt;}
.yc7{bottom:292.440000pt;}
.y16a{bottom:295.773333pt;}
.y14b{bottom:297.773333pt;}
.y90{bottom:298.773333pt;}
.ye2{bottom:301.106667pt;}
.y119{bottom:301.773333pt;}
.y2c{bottom:303.093333pt;}
.y104{bottom:303.440000pt;}
.y63{bottom:304.440000pt;}
.yc6{bottom:306.093333pt;}
.y169{bottom:309.773333pt;}
.y8f{bottom:312.440000pt;}
.ye1{bottom:314.760000pt;}
.y118{bottom:315.773333pt;}
.y2b{bottom:316.773333pt;}
.y103{bottom:317.426667pt;}
.y62{bottom:318.093333pt;}
.yc5{bottom:320.106667pt;}
.y168{bottom:323.426667pt;}
.y14a{bottom:325.440000pt;}
.ye0{bottom:325.773333pt;}
.y8e{bottom:326.426667pt;}
.y117{bottom:329.426667pt;}
.y2a{bottom:330.440000pt;}
.y61{bottom:331.773333pt;}
.yc4{bottom:333.773333pt;}
.y102{bottom:334.440000pt;}
.y167{bottom:337.440000pt;}
.y149{bottom:339.093333pt;}
.y8d{bottom:340.106667pt;}
.y116{bottom:343.440000pt;}
.y29{bottom:344.426667pt;}
.y60{bottom:345.773333pt;}
.yc3{bottom:347.760000pt;}
.y101{bottom:349.106667pt;}
.y166{bottom:351.106667pt;}
.y148{bottom:352.773333pt;}
.y8c{bottom:353.773333pt;}
.y115{bottom:357.106667pt;}
.y28{bottom:358.106667pt;}
.y5f{bottom:359.440000pt;}
.yc2{bottom:361.440000pt;}
.y100{bottom:363.440000pt;}
.y165{bottom:364.773333pt;}
.y147{bottom:366.773333pt;}
.y8b{bottom:367.773333pt;}
.y114{bottom:370.773333pt;}
.y27{bottom:372.106667pt;}
.y5e{bottom:373.440000pt;}
.yc1{bottom:375.106667pt;}
.yfc{bottom:377.773333pt;}
.y164{bottom:378.773333pt;}
.y146{bottom:380.440000pt;}
.y8a{bottom:381.440000pt;}
.y113{bottom:384.773333pt;}
.y26{bottom:385.773333pt;}
.y5d{bottom:387.106667pt;}
.yc0{bottom:389.133333pt;}
.y163{bottom:392.466667pt;}
.y145{bottom:394.466667pt;}
.y89{bottom:395.466667pt;}
.y25{bottom:399.466667pt;}
.y5c{bottom:401.800000pt;}
.y162{bottom:406.466667pt;}
.yfb{bottom:407.133333pt;}
.y144{bottom:408.133333pt;}
.y88{bottom:409.133333pt;}
.y112{bottom:410.133333pt;}
.y24{bottom:413.466667pt;}
.y5b{bottom:416.466667pt;}
.y161{bottom:420.133333pt;}
.y143{bottom:421.800000pt;}
.y87{bottom:422.800000pt;}
.yfa{bottom:424.466667pt;}
.y23{bottom:427.133333pt;}
.ybf{bottom:428.800000pt;}
.y5a{bottom:431.133333pt;}
.y160{bottom:433.800000pt;}
.y142{bottom:435.800000pt;}
.y86{bottom:436.800000pt;}
.yf9{bottom:439.800000pt;}
.y22{bottom:441.133333pt;}
.ybe{bottom:442.466667pt;}
.y59{bottom:445.800000pt;}
.y15f{bottom:447.800000pt;}
.y141{bottom:449.466667pt;}
.y85{bottom:450.466667pt;}
.y21{bottom:454.800000pt;}
.yf8{bottom:455.133333pt;}
.ybd{bottom:456.133333pt;}
.y58{bottom:460.466667pt;}
.y15e{bottom:461.466667pt;}
.y140{bottom:463.133333pt;}
.y84{bottom:464.133333pt;}
.yf6{bottom:466.133333pt;}
.y20{bottom:468.466667pt;}
.ybc{bottom:470.133333pt;}
.y57{bottom:475.133333pt;}
.y13f{bottom:477.133333pt;}
.y83{bottom:478.133333pt;}
.y1f{bottom:482.466667pt;}
.ybb{bottom:483.800000pt;}
.y56{bottom:488.800000pt;}
.y15d{bottom:489.133333pt;}
.y13e{bottom:490.800000pt;}
.y82{bottom:491.800000pt;}
.y1e{bottom:496.133333pt;}
.yba{bottom:497.466667pt;}
.y55{bottom:502.840000pt;}
.y13d{bottom:504.840000pt;}
.y1d{bottom:510.173333pt;}
.yb9{bottom:511.506667pt;}
.y54{bottom:516.506667pt;}
.y15c{bottom:516.840000pt;}
.y13c{bottom:518.506667pt;}
.y1c{bottom:523.840000pt;}
.yb8{bottom:525.173333pt;}
.y53{bottom:530.506667pt;}
.y81{bottom:531.506667pt;}
.y13b{bottom:532.173333pt;}
.y1b{bottom:537.506667pt;}
.yb7{bottom:539.173333pt;}
.y52{bottom:544.173333pt;}
.ydf{bottom:544.506667pt;}
.y80{bottom:545.173333pt;}
.y13a{bottom:546.173333pt;}
.y1a{bottom:551.506667pt;}
.yb6{bottom:552.840000pt;}
.y51{bottom:557.840000pt;}
.y15b{bottom:558.173333pt;}
.yde{bottom:558.506667pt;}
.y7f{bottom:559.173333pt;}
.y139{bottom:559.840000pt;}
.y19{bottom:565.173333pt;}
.yb5{bottom:566.506667pt;}
.y15a{bottom:571.840000pt;}
.y50{bottom:572.840000pt;}
.ydd{bottom:574.173333pt;}
.y18{bottom:579.173333pt;}
.yec{bottom:579.506667pt;}
.yb4{bottom:580.506667pt;}
.y159{bottom:585.840000pt;}
.y7e{bottom:586.840000pt;}
.ydb{bottom:588.506667pt;}
.y17{bottom:592.840000pt;}
.yeb{bottom:593.506667pt;}
.yb3{bottom:594.173333pt;}
.y138{bottom:599.506667pt;}
.y7d{bottom:600.506667pt;}
.yda{bottom:603.173333pt;}
.y16{bottom:606.506667pt;}
.yb2{bottom:608.173333pt;}
.y137{bottom:613.173333pt;}
.y7c{bottom:614.173333pt;}
.yd5{bottom:617.533333pt;}
.y15{bottom:620.533333pt;}
.yb1{bottom:621.866667pt;}
.y136{bottom:627.200000pt;}
.y7b{bottom:628.200000pt;}
.y14{bottom:634.200000pt;}
.yb0{bottom:635.533333pt;}
.y135{bottom:640.866667pt;}
.y7a{bottom:641.866667pt;}
.y13{bottom:647.866667pt;}
.yaf{bottom:649.533333pt;}
.y134{bottom:654.866667pt;}
.y79{bottom:655.866667pt;}
.y12{bottom:661.866667pt;}
.yae{bottom:663.200000pt;}
.y133{bottom:668.533333pt;}
.y78{bottom:669.533333pt;}
.y11{bottom:675.533333pt;}
.yad{bottom:677.200000pt;}
.y75{bottom:680.533333pt;}
.y132{bottom:682.200000pt;}
.y10{bottom:689.533333pt;}
.yac{bottom:690.866667pt;}
.yf5{bottom:692.200000pt;}
.y184{bottom:695.533333pt;}
.y131{bottom:696.200000pt;}
.yab{bottom:704.533333pt;}
.yf4{bottom:707.200000pt;}
.y74{bottom:708.200000pt;}
.y130{bottom:709.866667pt;}
.yf{bottom:714.866667pt;}
.yaa{bottom:718.533333pt;}
.yf3{bottom:721.200000pt;}
.y183{bottom:723.533333pt;}
.y12f{bottom:723.866667pt;}
.ya9{bottom:732.226667pt;}
.y182{bottom:737.226667pt;}
.y12e{bottom:737.560000pt;}
.ya8{bottom:746.226667pt;}
.y12d{bottom:751.226667pt;}
.ye{bottom:756.565333pt;}
.ya7{bottom:759.906667pt;}
.y4f{bottom:762.560000pt;}
.y181{bottom:764.893333pt;}
.y12c{bottom:765.226667pt;}
.yd{bottom:770.361333pt;}
.ya6{bottom:773.560000pt;}
.y4e{bottom:776.226667pt;}
.y180{bottom:778.893333pt;}
.y12b{bottom:780.560000pt;}
.yc{bottom:784.157333pt;}
.ya5{bottom:787.560000pt;}
.y4d{bottom:790.893333pt;}
.y17f{bottom:792.560000pt;}
.y12a{bottom:794.226667pt;}
.yb{bottom:797.953333pt;}
.ya4{bottom:801.226667pt;}
.y4c{bottom:805.560000pt;}
.y17e{bottom:806.226667pt;}
.y129{bottom:809.226667pt;}
.ya{bottom:811.749333pt;}
.ya3{bottom:815.226667pt;}
.y4b{bottom:819.226667pt;}
.y17d{bottom:820.226667pt;}
.y9{bottom:825.545333pt;}
.ya2{bottom:828.893333pt;}
.y4a{bottom:833.893333pt;}
.y8{bottom:839.341333pt;}
.ya0{bottom:843.933333pt;}
.y17c{bottom:847.933333pt;}
.y49{bottom:848.600000pt;}
.y7{bottom:853.137333pt;}
.y17b{bottom:861.600000pt;}
.y48{bottom:862.266667pt;}
.y6{bottom:866.933333pt;}
.y17a{bottom:875.266667pt;}
.y47{bottom:877.266667pt;}
.y179{bottom:889.266667pt;}
.y46{bottom:890.933333pt;}
.y5{bottom:894.600000pt;}
.y73{bottom:902.933333pt;}
.y72{bottom:916.933333pt;}
.y45{bottom:930.600000pt;}
.y4{bottom:939.933333pt;}
.y44{bottom:944.266667pt;}
.y43{bottom:958.293333pt;}
.y3{bottom:961.960000pt;}
.y42{bottom:971.960000pt;}
.y2{bottom:979.960000pt;}
.y41{bottom:985.960000pt;}
.y40{bottom:999.626667pt;}
.y1{bottom:1009.293333pt;}
.y9f{bottom:1010.626667pt;}
.y3f{bottom:1013.293333pt;}
.y3a{bottom:1061.399788pt;}
.y3e{bottom:1108.000000pt;}
.h10{height:13.666667pt;}
.h15{height:13.700000pt;}
.h19{height:13.986667pt;}
.h16{height:14.000000pt;}
.h21{height:14.033333pt;}
.h20{height:14.666667pt;}
.h13{height:23.554688pt;}
.h9{height:25.813467pt;}
.h8{height:26.171875pt;}
.hf{height:27.666667pt;}
.h14{height:28.333333pt;}
.h1d{height:28.700000pt;}
.h4{height:31.406250pt;}
.h12{height:37.031250pt;}
.ha{height:44.354167pt;}
.h6{height:47.109375pt;}
.h7{height:47.406250pt;}
.h5{height:48.375000pt;}
.hb{height:49.336436pt;}
.h1f{height:49.968750pt;}
.h1e{height:52.317708pt;}
.hd{height:52.343750pt;}
.h3{height:52.690104pt;}
.h2{height:64.500000pt;}
.h11{height:166.693333pt;}
.hc{height:186.733333pt;}
.he{height:192.066667pt;}
.h22{height:201.400000pt;}
.h17{height:216.066667pt;}
.h1c{height:223.066667pt;}
.h1b{height:292.066667pt;}
.h18{height:430.786667pt;}
.h1a{height:441.466667pt;}
.h0{height:1119.000000pt;}
.h1{height:1119.333333pt;}
.w4{width:11.863987pt;}
.w10{width:31.000000pt;}
.w1e{width:33.366667pt;}
.w17{width:40.366667pt;}
.w1f{width:40.666667pt;}
.w1b{width:41.366667pt;}
.w15{width:45.366667pt;}
.w16{width:45.666667pt;}
.w13{width:45.700000pt;}
.w14{width:46.000000pt;}
.w1c{width:46.700000pt;}
.w1a{width:47.666667pt;}
.wc{width:54.000000pt;}
.w1d{width:56.666667pt;}
.wa{width:59.033333pt;}
.w9{width:71.700000pt;}
.wb{width:122.033333pt;}
.w19{width:132.033333pt;}
.w18{width:137.066667pt;}
.w12{width:137.733333pt;}
.w11{width:138.733333pt;}
.w7{width:209.066667pt;}
.w6{width:213.440000pt;}
.w8{width:220.440000pt;}
.w5{width:310.133333pt;}
.wf{width:321.133333pt;}
.w3{width:495.614667pt;}
.w2{width:608.906667pt;}
.wd{width:642.266667pt;}
.we{width:649.600000pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.000000pt;}
.x22{left:8.000000pt;}
.x35{left:9.366667pt;}
.x1f{left:10.333333pt;}
.xc{left:11.865333pt;}
.x23{left:13.666667pt;}
.x3a{left:15.000000pt;}
.x1d{left:16.333333pt;}
.x9{left:17.797333pt;}
.x27{left:19.000000pt;}
.x37{left:20.666667pt;}
.x25{left:22.000000pt;}
.x40{left:24.666667pt;}
.x28{left:27.026667pt;}
.x24{left:31.360000pt;}
.x3e{left:33.333333pt;}
.x33{left:35.366667pt;}
.x20{left:47.360000pt;}
.x26{left:53.360000pt;}
.x3{left:75.700000pt;}
.x3b{left:83.700000pt;}
.xe{left:85.033333pt;}
.x8{left:92.380005pt;}
.xf{left:94.700000pt;}
.x15{left:97.706667pt;}
.x13{left:99.700000pt;}
.x17{left:103.400000pt;}
.x32{left:108.033333pt;}
.xa{left:149.026001pt;}
.x2f{left:153.740000pt;}
.x31{left:165.400000pt;}
.x5{left:173.066667pt;}
.x1{left:192.274667pt;}
.x2{left:194.376000pt;}
.x36{left:200.773333pt;}
.x19{left:202.066667pt;}
.x18{left:205.766667pt;}
.x1a{left:213.106667pt;}
.x43{left:230.773333pt;}
.x4{left:234.106667pt;}
.x34{left:247.440000pt;}
.x1b{left:267.773333pt;}
.x14{left:289.133333pt;}
.x38{left:293.466667pt;}
.x10{left:296.140000pt;}
.x11{left:305.120000pt;}
.x30{left:310.473333pt;}
.x29{left:311.800000pt;}
.x2c{left:314.140000pt;}
.x39{left:339.800000pt;}
.xd{left:397.173333pt;}
.x7{left:408.506667pt;}
.x3c{left:411.506667pt;}
.x3d{left:450.200000pt;}
.x1c{left:481.533333pt;}
.x16{left:498.200000pt;}
.x6{left:500.866667pt;}
.x2a{left:531.906667pt;}
.x1e{left:541.240000pt;}
.x3f{left:587.933333pt;}
.x2b{left:625.593333pt;}
.x2d{left:632.926667pt;}
.x2e{left:641.940000pt;}
.x41{left:645.266667pt;}
.x21{left:663.973333pt;}
.x42{left:679.306667pt;}
.xb{left:706.211833pt;}
}




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