
    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_0e447c4c00671bd6c7dca5b7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c28b6725b3d6bb072d32be62.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_0fad3bff90ce6060b6779e30.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_665444fa75b57b481f0a3efc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1d6d239e6d79184a555e6b68.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_f644da75b58863622c77b4ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_5af54cd61d470a0cc1ee1bec.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2cdae50ea051e1b361dfb864.woff')format("woff");}.ff8{font-family:ff8;line-height:1.120605;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_c8b64f9a4e73362544c1dde1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c8bf8b418177e817b96ad08e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.116699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c69ec489b22c8e6b66c43b72.woff')format("woff");}.ffb{font-family:ffb;line-height:0.761719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-6.540000px;}
.ls5{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.072000px;}
.ls2a{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.109200px;}
.ls25{letter-spacing:0.109440px;}
.ls9{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.152640px;}
.lsf{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.305280px;}
.ls23{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.894240px;}
.ls18{letter-spacing:1.044000px;}
.ls11{letter-spacing:3.744000px;}
.ls3{letter-spacing:5.760000px;}
.lsa{letter-spacing:11.664000px;}
.lsb{letter-spacing:15.984000px;}
.ls12{letter-spacing:23.904000px;}
.lsd{letter-spacing:28.224000px;}
.lsc{letter-spacing:31.824000px;}
.ls15{letter-spacing:33.960000px;}
.ls1{letter-spacing:33.984000px;}
.ls1f{letter-spacing:39.060000px;}
.ls21{letter-spacing:39.600000px;}
.ls20{letter-spacing:39.749760px;}
.ls1d{letter-spacing:39.905280px;}
.ls22{letter-spacing:271.020000px;}
.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;}
}
.ws8{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws10{word-spacing:-16.865400px;}
.wse{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.392000px;}
.ws5{word-spacing:-11.460000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-16.260000px;}
._5{margin-left:-15.120000px;}
._b{margin-left:-14.112000px;}
._29{margin-left:-11.952000px;}
._9{margin-left:-10.200000px;}
._7{margin-left:-8.700000px;}
._6{margin-left:-7.668000px;}
._8{margin-left:-6.552000px;}
._0{margin-left:-5.544000px;}
._a{margin-left:-4.212000px;}
._2{margin-left:-2.268000px;}
._4{margin-left:-1.080000px;}
._1{width:1.164000px;}
._c{width:2.232000px;}
._12{width:3.456000px;}
._10{width:5.040000px;}
._11{width:6.108000px;}
._14{width:7.284000px;}
._17{width:8.364000px;}
._e{width:10.080000px;}
._f{width:11.376000px;}
._1a{width:12.504000px;}
._25{width:13.536000px;}
._21{width:14.760000px;}
._d{width:15.780000px;}
._13{width:16.896000px;}
._19{width:19.344000px;}
._27{width:20.496000px;}
._22{width:21.600000px;}
._23{width:22.908000px;}
._1d{width:24.120000px;}
._1e{width:25.200000px;}
._1b{width:26.652000px;}
._16{width:27.936000px;}
._18{width:29.160000px;}
._1f{width:30.240000px;}
._20{width:31.920000px;}
._26{width:33.060000px;}
._15{width:34.416000px;}
._2b{width:35.784000px;}
._28{width:38.571840px;}
._2e{width:40.198320px;}
._1c{width:48.951360px;}
._2a{width:83.880000px;}
._2c{width:86.256000px;}
._24{width:105.924000px;}
._2d{width:148.320000px;}
._2f{width:270.819360px;}
._30{width:272.730720px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc4{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1a9{bottom:3.960000px;}
.y19c{bottom:14.220000px;}
.y1a1{bottom:14.400000px;}
.y1a8{bottom:24.660000px;}
.y19b{bottom:45.360000px;}
.y1a0{bottom:45.390000px;}
.y21{bottom:57.420000px;}
.y1a5{bottom:66.060000px;}
.y19f{bottom:76.350000px;}
.y20{bottom:77.580000px;}
.y1a7{bottom:86.760000px;}
.y1{bottom:90.720000px;}
.y1a4{bottom:97.020000px;}
.y1a6{bottom:107.460000px;}
.y19e{bottom:107.490000px;}
.yab{bottom:109.440000px;}
.y112{bottom:112.680000px;}
.y149{bottom:114.660000px;}
.y180{bottom:116.820000px;}
.y92{bottom:122.580000px;}
.yd5{bottom:123.120000px;}
.y1bc{bottom:124.200000px;}
.y122{bottom:126.540000px;}
.y78{bottom:126.720000px;}
.yaa{bottom:127.260000px;}
.y1a3{bottom:128.160000px;}
.yea{bottom:130.860000px;}
.y121{bottom:131.760000px;}
.ya9{bottom:132.480000px;}
.y199{bottom:135.180000px;}
.y1f{bottom:135.900000px;}
.y19d{bottom:138.450000px;}
.y12f{bottom:140.400000px;}
.y5b{bottom:141.660000px;}
.y16b{bottom:143.820000px;}
.y120{bottom:145.080000px;}
.ya8{bottom:146.160000px;}
.y1ae{bottom:148.905000px;}
.y16a{bottom:149.040000px;}
.y17f{bottom:149.580000px;}
.y91{bottom:153.720000px;}
.yd4{bottom:155.700000px;}
.y1e{bottom:156.600000px;}
.y77{bottom:157.860000px;}
.y1ac{bottom:159.165000px;}
.yfc{bottom:160.740000px;}
.y169{bottom:161.100000px;}
.ye9{bottom:161.820000px;}
.y3e{bottom:163.980000px;}
.y168{bottom:166.320000px;}
.y1bb{bottom:167.400000px;}
.y198{bottom:167.940000px;}
.y1ad{bottom:169.605000px;}
.y167{bottom:178.410000px;}
.y17e{bottom:182.190000px;}
.y12e{bottom:183.450000px;}
.y166{bottom:183.630000px;}
.y5a{bottom:184.710000px;}
.y111{bottom:186.870000px;}
.yd3{bottom:188.490000px;}
.y76{bottom:188.850000px;}
.y1ab{bottom:190.305000px;}
.yfb{bottom:191.730000px;}
.ye8{bottom:192.990000px;}
.y3d{bottom:195.150000px;}
.y165{bottom:195.690000px;}
.y1d{bottom:195.870000px;}
.ya7{bottom:198.750000px;}
.y197{bottom:200.550000px;}
.y164{bottom:200.910000px;}
.y11f{bottom:202.530000px;}
.y1ba{bottom:210.450000px;}
.y148{bottom:211.350000px;}
.y163{bottom:214.230000px;}
.y17d{bottom:214.950000px;}
.y1c{bottom:215.490000px;}
.y59{bottom:215.850000px;}
.y193{bottom:216.390000px;}
.y110{bottom:217.830000px;}
.y75{bottom:219.990000px;}
.yfa{bottom:222.870000px;}
.yc0{bottom:226.110000px;}
.y12d{bottom:226.650000px;}
.y90{bottom:227.730000px;}
.yd2{bottom:231.510000px;}
.y196{bottom:233.310000px;}
.ye7{bottom:236.010000px;}
.y3c{bottom:238.170000px;}
.ya6{bottom:241.950000px;}
.y11e{bottom:245.550000px;}
.y58{bottom:246.810000px;}
.y10f{bottom:248.970000px;}
.y74{bottom:250.950000px;}
.y147{bottom:251.310000px;}
.y1b9{bottom:253.470000px;}
.yf9{bottom:253.830000px;}
.y1b{bottom:254.730000px;}
.y12c{bottom:257.610000px;}
.y17c{bottom:257.970000px;}
.y192{bottom:259.410000px;}
.y8f{bottom:260.490000px;}
.yd1{bottom:262.650000px;}
.y195{bottom:266.070000px;}
.ye6{bottom:266.970000px;}
.y3b{bottom:269.130000px;}
.ya5{bottom:272.910000px;}
.y1a{bottom:274.350000px;}
.y162{bottom:275.250000px;}
.y73{bottom:282.090000px;}
.y1aa{bottom:283.530000px;}
.y1b8{bottom:284.430000px;}
.y11d{bottom:288.750000px;}
.y17b{bottom:289.110000px;}
.y57{bottom:289.830000px;}
.y146{bottom:291.270000px;}
.y10e{bottom:291.990000px;}
.yd0{bottom:293.610000px;}
.yf8{bottom:296.850000px;}
.ye5{bottom:298.110000px;}
.y3a{bottom:300.270000px;}
.y191{bottom:302.430000px;}
.y8e{bottom:303.510000px;}
.ya4{bottom:304.050000px;}
.y161{bottom:306.390000px;}
.y19{bottom:313.050000px;}
.y1b7{bottom:315.570000px;}
.y56{bottom:320.970000px;}
.y10d{bottom:322.950000px;}
.y72{bottom:325.110000px;}
.yf7{bottom:327.990000px;}
.ye4{bottom:329.070000px;}
.ybf{bottom:331.230000px;}
.y145{bottom:331.410000px;}
.y11c{bottom:331.770000px;}
.y17a{bottom:332.130000px;}
.y8d{bottom:334.650000px;}
.ya3{bottom:335.010000px;}
.ycf{bottom:336.630000px;}
.y39{bottom:343.290000px;}
.y190{bottom:345.450000px;}
.y1b6{bottom:346.530000px;}
.y160{bottom:349.410000px;}
.y18{bottom:351.750000px;}
.y55{bottom:351.930000px;}
.y10c{bottom:354.090000px;}
.y71{bottom:356.070000px;}
.yf6{bottom:358.950000px;}
.ye3{bottom:360.210000px;}
.ybe{bottom:362.370000px;}
.y179{bottom:363.090000px;}
.y8c{bottom:365.610000px;}
.yce{bottom:367.770000px;}
.y144{bottom:371.370000px;}
.y38{bottom:374.250000px;}
.y11b{bottom:374.790000px;}
.y18f{bottom:376.410000px;}
.y1b5{bottom:377.670000px;}
.ya2{bottom:378.030000px;}
.y54{bottom:383.070000px;}
.y10b{bottom:385.050000px;}
.y70{bottom:387.210000px;}
.yf5{bottom:390.090000px;}
.y17{bottom:390.450000px;}
.ye2{bottom:391.170000px;}
.y15f{bottom:392.430000px;}
.y178{bottom:394.230000px;}
.ycd{bottom:398.730000px;}
.y143{bottom:402.510000px;}
.y37{bottom:405.390000px;}
.y12b{bottom:405.750000px;}
.y18e{bottom:407.550000px;}
.y8b{bottom:408.630000px;}
.ya1{bottom:409.170000px;}
.y53{bottom:414.030000px;}
.y11a{bottom:417.810000px;}
.y6f{bottom:418.170000px;}
.y1b4{bottom:420.735000px;}
.yf4{bottom:421.095000px;}
.y177{bottom:425.235000px;}
.y10a{bottom:428.295000px;}
.y16{bottom:429.195000px;}
.ycc{bottom:429.915000px;}
.ye1{bottom:434.235000px;}
.y15e{bottom:435.495000px;}
.y36{bottom:436.395000px;}
.y12a{bottom:436.935000px;}
.y8a{bottom:439.815000px;}
.ya0{bottom:440.175000px;}
.y52{bottom:445.215000px;}
.y142{bottom:445.575000px;}
.y119{bottom:448.995000px;}
.y6e{bottom:449.355000px;}
.y18d{bottom:450.615000px;}
.y1b3{bottom:451.695000px;}
.y1cf{bottom:451.875000px;}
.y176{bottom:456.375000px;}
.y109{bottom:459.255000px;}
.ycb{bottom:460.875000px;}
.yf3{bottom:464.295000px;}
.ybd{bottom:467.535000px;}
.y15{bottom:467.895000px;}
.y89{bottom:470.775000px;}
.y9f{bottom:471.315000px;}
.y51{bottom:476.175000px;}
.y141{bottom:476.715000px;}
.ye0{bottom:477.255000px;}
.y15d{bottom:478.515000px;}
.y35{bottom:479.595000px;}
.y6d{bottom:480.315000px;}
.y118{bottom:481.575000px;}
.y18c{bottom:482.835000px;}
.y175{bottom:487.335000px;}
.y108{bottom:490.215000px;}
.y1a2{bottom:491.295000px;}
.y1ce{bottom:492.195000px;}
.ybc{bottom:498.495000px;}
.y88{bottom:501.915000px;}
.y9e{bottom:502.275000px;}
.yca{bottom:503.895000px;}
.y14{bottom:506.955000px;}
.yf2{bottom:507.315000px;}
.y140{bottom:507.675000px;}
.ydf{bottom:508.395000px;}
.y34{bottom:510.555000px;}
.y129{bottom:510.915000px;}
.y6c{bottom:511.455000px;}
.y1b2{bottom:513.795000px;}
.y117{bottom:514.335000px;}
.y174{bottom:518.475000px;}
.y50{bottom:519.195000px;}
.y107{bottom:521.355000px;}
.y15c{bottom:521.535000px;}
.y18b{bottom:521.715000px;}
.y13{bottom:526.575000px;}
.ybb{bottom:529.635000px;}
.y1cd{bottom:532.695000px;}
.y87{bottom:532.875000px;}
.y9d{bottom:533.415000px;}
.y13f{bottom:538.815000px;}
.y33{bottom:541.695000px;}
.y6b{bottom:542.415000px;}
.y1b1{bottom:544.935000px;}
.yc9{bottom:546.915000px;}
.yde{bottom:547.095000px;}
.y173{bottom:549.435000px;}
.y4f{bottom:550.335000px;}
.y106{bottom:552.315000px;}
.y15b{bottom:552.675000px;}
.y128{bottom:554.115000px;}
.yba{bottom:560.595000px;}
.y1cc{bottom:561.135000px;}
.y18a{bottom:561.675000px;}
.y12{bottom:565.275000px;}
.y13e{bottom:569.775000px;}
.y32{bottom:572.655000px;}
.y6a{bottom:573.555000px;}
.ydd{bottom:575.535000px;}
.y86{bottom:575.895000px;}
.y9c{bottom:576.435000px;}
.y116{bottom:579.675000px;}
.y4e{bottom:581.295000px;}
.y1cb{bottom:589.575000px;}
.yc8{bottom:590.115000px;}
.yb9{bottom:591.735000px;}
.y172{bottom:592.455000px;}
.yf1{bottom:593.355000px;}
.y105{bottom:595.515000px;}
.y15a{bottom:595.695000px;}
.y127{bottom:597.135000px;}
.y189{bottom:601.815000px;}
.y31{bottom:603.795000px;}
.y11{bottom:603.975000px;}
.y69{bottom:604.515000px;}
.y85{bottom:607.035000px;}
.y13d{bottom:608.475000px;}
.y4d{bottom:612.435000px;}
.y1ca{bottom:618.195000px;}
.y9b{bottom:619.455000px;}
.yb8{bottom:622.695000px;}
.y159{bottom:626.655000px;}
.y171{bottom:631.335000px;}
.ydc{bottom:632.415000px;}
.y188{bottom:632.775000px;}
.yc7{bottom:633.135000px;}
.y30{bottom:634.755000px;}
.y68{bottom:635.655000px;}
.yf0{bottom:636.375000px;}
.y13c{bottom:636.915000px;}
.y84{bottom:637.995000px;}
.y104{bottom:638.535000px;}
.y126{bottom:640.155000px;}
.y10{bottom:642.675000px;}
.y4c{bottom:643.395000px;}
.y115{bottom:645.015000px;}
.yb7{bottom:653.835000px;}
.y158{bottom:657.795000px;}
.y1c9{bottom:658.515000px;}
.ydb{bottom:660.855000px;}
.y9a{bottom:662.475000px;}
.y67{bottom:666.645000px;}
.y13b{bottom:667.005000px;}
.yef{bottom:667.545000px;}
.y170{bottom:668.805000px;}
.y83{bottom:669.165000px;}
.y103{bottom:671.145000px;}
.y187{bottom:672.945000px;}
.y4b{bottom:674.565000px;}
.yc6{bottom:676.185000px;}
.y2f{bottom:677.805000px;}
.y1b0{bottom:681.045000px;}
.yf{bottom:681.405000px;}
.y125{bottom:683.205000px;}
.yb6{bottom:684.825000px;}
.y1c8{bottom:686.985000px;}
.y114{bottom:688.245000px;}
.y157{bottom:688.785000px;}
.yda{bottom:689.505000px;}
.y13a{bottom:697.245000px;}
.y66{bottom:697.785000px;}
.yee{bottom:698.505000px;}
.y82{bottom:700.125000px;}
.y186{bottom:702.645000px;}
.y4a{bottom:705.525000px;}
.y2e{bottom:708.945000px;}
.y1af{bottom:712.185000px;}
.y102{bottom:714.345000px;}
.yc5{bottom:719.205000px;}
.ye{bottom:720.105000px;}
.y16f{bottom:725.685000px;}
.y139{bottom:725.865000px;}
.y1c7{bottom:727.485000px;}
.yb5{bottom:727.845000px;}
.yed{bottom:729.645000px;}
.yd9{bottom:731.265000px;}
.y156{bottom:731.985000px;}
.y65{bottom:736.485000px;}
.y2d{bottom:739.905000px;}
.y185{bottom:742.605000px;}
.y81{bottom:743.145000px;}
.y124{bottom:745.305000px;}
.y49{bottom:748.545000px;}
.y16e{bottom:754.125000px;}
.y1c6{bottom:755.925000px;}
.y101{bottom:757.365000px;}
.yd{bottom:758.985000px;}
.yec{bottom:760.605000px;}
.yc4{bottom:762.225000px;}
.y155{bottom:762.945000px;}
.y138{bottom:767.625000px;}
.yb4{bottom:769.245000px;}
.y2c{bottom:771.045000px;}
.y184{bottom:773.745000px;}
.y64{bottom:773.925000px;}
.y80{bottom:774.285000px;}
.y123{bottom:776.445000px;}
.y16d{bottom:782.565000px;}
.y100{bottom:788.325000px;}
.y48{bottom:791.745000px;}
.y19a{bottom:793.005000px;}
.yd8{bottom:793.365000px;}
.y154{bottom:794.085000px;}
.y1c5{bottom:796.425000px;}
.yc{bottom:798.045000px;}
.y137{bottom:798.765000px;}
.yb3{bottom:800.385000px;}
.y63{bottom:802.365000px;}
.yeb{bottom:803.625000px;}
.y183{bottom:804.705000px;}
.y7f{bottom:805.245000px;}
.y2b{bottom:814.065000px;}
.yb{bottom:817.665000px;}
.yff{bottom:819.465000px;}
.y47{bottom:822.705000px;}
.yd7{bottom:824.325000px;}
.y1c4{bottom:824.865000px;}
.y153{bottom:825.045000px;}
.y62{bottom:830.805000px;}
.yb2{bottom:831.345000px;}
.y99{bottom:834.765000px;}
.y182{bottom:835.845000px;}
.y7e{bottom:836.385000px;}
.y135{bottom:841.785000px;}
.y2a{bottom:845.025000px;}
.yc3{bottom:848.445000px;}
.y136{bottom:848.625000px;}
.y1c3{bottom:853.305000px;}
.y46{bottom:853.845000px;}
.y16c{bottom:855.465000px;}
.ya{bottom:856.365000px;}
.y61{bottom:859.245000px;}
.y152{bottom:859.425000px;}
.yb1{bottom:862.485000px;}
.y98{bottom:865.725000px;}
.y7d{bottom:867.345000px;}
.y134{bottom:872.745000px;}
.y181{bottom:875.805000px;}
.y29{bottom:876.165000px;}
.yc2{bottom:879.405000px;}
.y45{bottom:884.805000px;}
.y60{bottom:887.685000px;}
.yb0{bottom:893.445000px;}
.y151{bottom:893.805000px;}
.y9{bottom:895.065000px;}
.y97{bottom:896.865000px;}
.yd6{bottom:898.485000px;}
.y133{bottom:903.885000px;}
.yfe{bottom:905.505000px;}
.y28{bottom:907.170000px;}
.y7c{bottom:910.590000px;}
.y44{bottom:915.810000px;}
.y113{bottom:917.430000px;}
.yaf{bottom:924.630000px;}
.y150{bottom:928.050000px;}
.y5f{bottom:929.490000px;}
.y8{bottom:933.810000px;}
.y1c2{bottom:934.350000px;}
.y132{bottom:934.890000px;}
.y194{bottom:936.510000px;}
.y27{bottom:938.310000px;}
.y96{bottom:939.930000px;}
.y7b{bottom:941.550000px;}
.yfd{bottom:948.570000px;}
.y7{bottom:954.510000px;}
.y43{bottom:959.010000px;}
.y5e{bottom:960.630000px;}
.y14f{bottom:962.430000px;}
.y1c1{bottom:962.790000px;}
.yae{bottom:967.650000px;}
.y7a{bottom:972.510000px;}
.y131{bottom:977.910000px;}
.y26{bottom:981.330000px;}
.yc1{bottom:984.570000px;}
.y42{bottom:991.590000px;}
.y6{bottom:993.210000px;}
.y14e{bottom:996.810000px;}
.y1c0{bottom:1003.290000px;}
.y5d{bottom:1003.650000px;}
.yad{bottom:1010.670000px;}
.y25{bottom:1012.290000px;}
.y94{bottom:1015.710000px;}
.y130{bottom:1021.110000px;}
.y95{bottom:1022.550000px;}
.y14d{bottom:1031.190000px;}
.y1bf{bottom:1031.730000px;}
.y5{bottom:1032.090000px;}
.y41{bottom:1034.610000px;}
.y24{bottom:1043.430000px;}
.y93{bottom:1046.670000px;}
.yac{bottom:1053.690000px;}
.y14b{bottom:1065.390000px;}
.y40{bottom:1065.750000px;}
.y4{bottom:1071.150000px;}
.y14c{bottom:1072.230000px;}
.y23{bottom:1074.390000px;}
.y79{bottom:1077.810000px;}
.y3{bottom:1090.770000px;}
.y5c{bottom:1096.710000px;}
.y14a{bottom:1099.770000px;}
.y1be{bottom:1100.670000px;}
.y22{bottom:1105.530000px;}
.y3f{bottom:1108.770000px;}
.y2{bottom:1139.910000px;}
.y1bd{bottom:1141.170000px;}
.h11{height:38.158594px;}
.he{height:38.671172px;}
.hd{height:47.344922px;}
.h12{height:53.573906px;}
.h10{height:58.651172px;}
.hb{height:59.383125px;}
.hf{height:59.439023px;}
.hc{height:59.674219px;}
.h13{height:62.100000px;}
.h8{height:64.546875px;}
.h9{height:64.863281px;}
.h2{height:65.010937px;}
.h5{height:65.884219px;}
.h17{height:68.956875px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.h4{height:74.004654px;}
.h7{height:74.953125px;}
.h15{height:144.900000px;}
.h14{height:155.190000px;}
.h16{height:207.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:211.530000px;}
.w5{width:211.710000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x22{left:14.580000px;}
.x23{left:21.060000px;}
.x24{left:25.914000px;}
.x21{left:49.674000px;}
.x1{left:127.655987px;}
.xd{left:132.515987px;}
.x1d{left:137.375987px;}
.x16{left:153.569973px;}
.x2{left:154.649987px;}
.x17{left:159.689987px;}
.x3{left:170.309987px;}
.x18{left:181.829973px;}
.xa{left:188.669973px;}
.x7{left:191.549987px;}
.xb{left:194.789987px;}
.x4{left:197.309987px;}
.x5{left:208.649987px;}
.x8{left:218.189987px;}
.x12{left:227.189973px;}
.x9{left:234.029987px;}
.xe{left:297.794987px;}
.x13{left:337.214973px;}
.x1f{left:340.815000px;}
.xc{left:343.694987px;}
.x19{left:403.094973px;}
.x1a{left:409.214987px;}
.x20{left:553.065000px;}
.x10{left:595.724973px;}
.x11{left:601.844987px;}
.x1b{left:603.824973px;}
.x14{left:607.604973px;}
.x15{left:613.724987px;}
.x1c{left:616.064987px;}
.xf{left:748.769987px;}
.x6{left:757.229987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-5.813333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls2a{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.097067pt;}
.ls25{letter-spacing:0.097280pt;}
.ls9{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.135680pt;}
.lsf{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.271360pt;}
.ls23{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.794880pt;}
.ls18{letter-spacing:0.928000pt;}
.ls11{letter-spacing:3.328000pt;}
.ls3{letter-spacing:5.120000pt;}
.lsa{letter-spacing:10.368000pt;}
.lsb{letter-spacing:14.208000pt;}
.ls12{letter-spacing:21.248000pt;}
.lsd{letter-spacing:25.088000pt;}
.lsc{letter-spacing:28.288000pt;}
.ls15{letter-spacing:30.186667pt;}
.ls1{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:34.720000pt;}
.ls21{letter-spacing:35.200000pt;}
.ls20{letter-spacing:35.333120pt;}
.ls1d{letter-spacing:35.471360pt;}
.ls22{letter-spacing:240.906667pt;}
.ws8{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws10{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws5{word-spacing:-10.186667pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-14.453333pt;}
._5{margin-left:-13.440000pt;}
._b{margin-left:-12.544000pt;}
._29{margin-left:-10.624000pt;}
._9{margin-left:-9.066667pt;}
._7{margin-left:-7.733333pt;}
._6{margin-left:-6.816000pt;}
._8{margin-left:-5.824000pt;}
._0{margin-left:-4.928000pt;}
._a{margin-left:-3.744000pt;}
._2{margin-left:-2.016000pt;}
._4{margin-left:-0.960000pt;}
._1{width:1.034667pt;}
._c{width:1.984000pt;}
._12{width:3.072000pt;}
._10{width:4.480000pt;}
._11{width:5.429333pt;}
._14{width:6.474667pt;}
._17{width:7.434667pt;}
._e{width:8.960000pt;}
._f{width:10.112000pt;}
._1a{width:11.114667pt;}
._25{width:12.032000pt;}
._21{width:13.120000pt;}
._d{width:14.026667pt;}
._13{width:15.018667pt;}
._19{width:17.194667pt;}
._27{width:18.218667pt;}
._22{width:19.200000pt;}
._23{width:20.362667pt;}
._1d{width:21.440000pt;}
._1e{width:22.400000pt;}
._1b{width:23.690667pt;}
._16{width:24.832000pt;}
._18{width:25.920000pt;}
._1f{width:26.880000pt;}
._20{width:28.373333pt;}
._26{width:29.386667pt;}
._15{width:30.592000pt;}
._2b{width:31.808000pt;}
._28{width:34.286080pt;}
._2e{width:35.731840pt;}
._1c{width:43.512320pt;}
._2a{width:74.560000pt;}
._2c{width:76.672000pt;}
._24{width:94.154667pt;}
._2d{width:131.840000pt;}
._2f{width:240.728320pt;}
._30{width:242.427307pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1a9{bottom:3.520000pt;}
.y19c{bottom:12.640000pt;}
.y1a1{bottom:12.800000pt;}
.y1a8{bottom:21.920000pt;}
.y19b{bottom:40.320000pt;}
.y1a0{bottom:40.346667pt;}
.y21{bottom:51.040000pt;}
.y1a5{bottom:58.720000pt;}
.y19f{bottom:67.866667pt;}
.y20{bottom:68.960000pt;}
.y1a7{bottom:77.120000pt;}
.y1{bottom:80.640000pt;}
.y1a4{bottom:86.240000pt;}
.y1a6{bottom:95.520000pt;}
.y19e{bottom:95.546667pt;}
.yab{bottom:97.280000pt;}
.y112{bottom:100.160000pt;}
.y149{bottom:101.920000pt;}
.y180{bottom:103.840000pt;}
.y92{bottom:108.960000pt;}
.yd5{bottom:109.440000pt;}
.y1bc{bottom:110.400000pt;}
.y122{bottom:112.480000pt;}
.y78{bottom:112.640000pt;}
.yaa{bottom:113.120000pt;}
.y1a3{bottom:113.920000pt;}
.yea{bottom:116.320000pt;}
.y121{bottom:117.120000pt;}
.ya9{bottom:117.760000pt;}
.y199{bottom:120.160000pt;}
.y1f{bottom:120.800000pt;}
.y19d{bottom:123.066667pt;}
.y12f{bottom:124.800000pt;}
.y5b{bottom:125.920000pt;}
.y16b{bottom:127.840000pt;}
.y120{bottom:128.960000pt;}
.ya8{bottom:129.920000pt;}
.y1ae{bottom:132.360000pt;}
.y16a{bottom:132.480000pt;}
.y17f{bottom:132.960000pt;}
.y91{bottom:136.640000pt;}
.yd4{bottom:138.400000pt;}
.y1e{bottom:139.200000pt;}
.y77{bottom:140.320000pt;}
.y1ac{bottom:141.480000pt;}
.yfc{bottom:142.880000pt;}
.y169{bottom:143.200000pt;}
.ye9{bottom:143.840000pt;}
.y3e{bottom:145.760000pt;}
.y168{bottom:147.840000pt;}
.y1bb{bottom:148.800000pt;}
.y198{bottom:149.280000pt;}
.y1ad{bottom:150.760000pt;}
.y167{bottom:158.586667pt;}
.y17e{bottom:161.946667pt;}
.y12e{bottom:163.066667pt;}
.y166{bottom:163.226667pt;}
.y5a{bottom:164.186667pt;}
.y111{bottom:166.106667pt;}
.yd3{bottom:167.546667pt;}
.y76{bottom:167.866667pt;}
.y1ab{bottom:169.160000pt;}
.yfb{bottom:170.426667pt;}
.ye8{bottom:171.546667pt;}
.y3d{bottom:173.466667pt;}
.y165{bottom:173.946667pt;}
.y1d{bottom:174.106667pt;}
.ya7{bottom:176.666667pt;}
.y197{bottom:178.266667pt;}
.y164{bottom:178.586667pt;}
.y11f{bottom:180.026667pt;}
.y1ba{bottom:187.066667pt;}
.y148{bottom:187.866667pt;}
.y163{bottom:190.426667pt;}
.y17d{bottom:191.066667pt;}
.y1c{bottom:191.546667pt;}
.y59{bottom:191.866667pt;}
.y193{bottom:192.346667pt;}
.y110{bottom:193.626667pt;}
.y75{bottom:195.546667pt;}
.yfa{bottom:198.106667pt;}
.yc0{bottom:200.986667pt;}
.y12d{bottom:201.466667pt;}
.y90{bottom:202.426667pt;}
.yd2{bottom:205.786667pt;}
.y196{bottom:207.386667pt;}
.ye7{bottom:209.786667pt;}
.y3c{bottom:211.706667pt;}
.ya6{bottom:215.066667pt;}
.y11e{bottom:218.266667pt;}
.y58{bottom:219.386667pt;}
.y10f{bottom:221.306667pt;}
.y74{bottom:223.066667pt;}
.y147{bottom:223.386667pt;}
.y1b9{bottom:225.306667pt;}
.yf9{bottom:225.626667pt;}
.y1b{bottom:226.426667pt;}
.y12c{bottom:228.986667pt;}
.y17c{bottom:229.306667pt;}
.y192{bottom:230.586667pt;}
.y8f{bottom:231.546667pt;}
.yd1{bottom:233.466667pt;}
.y195{bottom:236.506667pt;}
.ye6{bottom:237.306667pt;}
.y3b{bottom:239.226667pt;}
.ya5{bottom:242.586667pt;}
.y1a{bottom:243.866667pt;}
.y162{bottom:244.666667pt;}
.y73{bottom:250.746667pt;}
.y1aa{bottom:252.026667pt;}
.y1b8{bottom:252.826667pt;}
.y11d{bottom:256.666667pt;}
.y17b{bottom:256.986667pt;}
.y57{bottom:257.626667pt;}
.y146{bottom:258.906667pt;}
.y10e{bottom:259.546667pt;}
.yd0{bottom:260.986667pt;}
.yf8{bottom:263.866667pt;}
.ye5{bottom:264.986667pt;}
.y3a{bottom:266.906667pt;}
.y191{bottom:268.826667pt;}
.y8e{bottom:269.786667pt;}
.ya4{bottom:270.266667pt;}
.y161{bottom:272.346667pt;}
.y19{bottom:278.266667pt;}
.y1b7{bottom:280.506667pt;}
.y56{bottom:285.306667pt;}
.y10d{bottom:287.066667pt;}
.y72{bottom:288.986667pt;}
.yf7{bottom:291.546667pt;}
.ye4{bottom:292.506667pt;}
.ybf{bottom:294.426667pt;}
.y145{bottom:294.586667pt;}
.y11c{bottom:294.906667pt;}
.y17a{bottom:295.226667pt;}
.y8d{bottom:297.466667pt;}
.ya3{bottom:297.786667pt;}
.ycf{bottom:299.226667pt;}
.y39{bottom:305.146667pt;}
.y190{bottom:307.066667pt;}
.y1b6{bottom:308.026667pt;}
.y160{bottom:310.586667pt;}
.y18{bottom:312.666667pt;}
.y55{bottom:312.826667pt;}
.y10c{bottom:314.746667pt;}
.y71{bottom:316.506667pt;}
.yf6{bottom:319.066667pt;}
.ye3{bottom:320.186667pt;}
.ybe{bottom:322.106667pt;}
.y179{bottom:322.746667pt;}
.y8c{bottom:324.986667pt;}
.yce{bottom:326.906667pt;}
.y144{bottom:330.106667pt;}
.y38{bottom:332.666667pt;}
.y11b{bottom:333.146667pt;}
.y18f{bottom:334.586667pt;}
.y1b5{bottom:335.706667pt;}
.ya2{bottom:336.026667pt;}
.y54{bottom:340.506667pt;}
.y10b{bottom:342.266667pt;}
.y70{bottom:344.186667pt;}
.yf5{bottom:346.746667pt;}
.y17{bottom:347.066667pt;}
.ye2{bottom:347.706667pt;}
.y15f{bottom:348.826667pt;}
.y178{bottom:350.426667pt;}
.ycd{bottom:354.426667pt;}
.y143{bottom:357.786667pt;}
.y37{bottom:360.346667pt;}
.y12b{bottom:360.666667pt;}
.y18e{bottom:362.266667pt;}
.y8b{bottom:363.226667pt;}
.ya1{bottom:363.706667pt;}
.y53{bottom:368.026667pt;}
.y11a{bottom:371.386667pt;}
.y6f{bottom:371.706667pt;}
.y1b4{bottom:373.986667pt;}
.yf4{bottom:374.306667pt;}
.y177{bottom:377.986667pt;}
.y10a{bottom:380.706667pt;}
.y16{bottom:381.506667pt;}
.ycc{bottom:382.146667pt;}
.ye1{bottom:385.986667pt;}
.y15e{bottom:387.106667pt;}
.y36{bottom:387.906667pt;}
.y12a{bottom:388.386667pt;}
.y8a{bottom:390.946667pt;}
.ya0{bottom:391.266667pt;}
.y52{bottom:395.746667pt;}
.y142{bottom:396.066667pt;}
.y119{bottom:399.106667pt;}
.y6e{bottom:399.426667pt;}
.y18d{bottom:400.546667pt;}
.y1b3{bottom:401.506667pt;}
.y1cf{bottom:401.666667pt;}
.y176{bottom:405.666667pt;}
.y109{bottom:408.226667pt;}
.ycb{bottom:409.666667pt;}
.yf3{bottom:412.706667pt;}
.ybd{bottom:415.586667pt;}
.y15{bottom:415.906667pt;}
.y89{bottom:418.466667pt;}
.y9f{bottom:418.946667pt;}
.y51{bottom:423.266667pt;}
.y141{bottom:423.746667pt;}
.ye0{bottom:424.226667pt;}
.y15d{bottom:425.346667pt;}
.y35{bottom:426.306667pt;}
.y6d{bottom:426.946667pt;}
.y118{bottom:428.066667pt;}
.y18c{bottom:429.186667pt;}
.y175{bottom:433.186667pt;}
.y108{bottom:435.746667pt;}
.y1a2{bottom:436.706667pt;}
.y1ce{bottom:437.506667pt;}
.ybc{bottom:443.106667pt;}
.y88{bottom:446.146667pt;}
.y9e{bottom:446.466667pt;}
.yca{bottom:447.906667pt;}
.y14{bottom:450.626667pt;}
.yf2{bottom:450.946667pt;}
.y140{bottom:451.266667pt;}
.ydf{bottom:451.906667pt;}
.y34{bottom:453.826667pt;}
.y129{bottom:454.146667pt;}
.y6c{bottom:454.626667pt;}
.y1b2{bottom:456.706667pt;}
.y117{bottom:457.186667pt;}
.y174{bottom:460.866667pt;}
.y50{bottom:461.506667pt;}
.y107{bottom:463.426667pt;}
.y15c{bottom:463.586667pt;}
.y18b{bottom:463.746667pt;}
.y13{bottom:468.066667pt;}
.ybb{bottom:470.786667pt;}
.y1cd{bottom:473.506667pt;}
.y87{bottom:473.666667pt;}
.y9d{bottom:474.146667pt;}
.y13f{bottom:478.946667pt;}
.y33{bottom:481.506667pt;}
.y6b{bottom:482.146667pt;}
.y1b1{bottom:484.386667pt;}
.yc9{bottom:486.146667pt;}
.yde{bottom:486.306667pt;}
.y173{bottom:488.386667pt;}
.y4f{bottom:489.186667pt;}
.y106{bottom:490.946667pt;}
.y15b{bottom:491.266667pt;}
.y128{bottom:492.546667pt;}
.yba{bottom:498.306667pt;}
.y1cc{bottom:498.786667pt;}
.y18a{bottom:499.266667pt;}
.y12{bottom:502.466667pt;}
.y13e{bottom:506.466667pt;}
.y32{bottom:509.026667pt;}
.y6a{bottom:509.826667pt;}
.ydd{bottom:511.586667pt;}
.y86{bottom:511.906667pt;}
.y9c{bottom:512.386667pt;}
.y116{bottom:515.266667pt;}
.y4e{bottom:516.706667pt;}
.y1cb{bottom:524.066667pt;}
.yc8{bottom:524.546667pt;}
.yb9{bottom:525.986667pt;}
.y172{bottom:526.626667pt;}
.yf1{bottom:527.426667pt;}
.y105{bottom:529.346667pt;}
.y15a{bottom:529.506667pt;}
.y127{bottom:530.786667pt;}
.y189{bottom:534.946667pt;}
.y31{bottom:536.706667pt;}
.y11{bottom:536.866667pt;}
.y69{bottom:537.346667pt;}
.y85{bottom:539.586667pt;}
.y13d{bottom:540.866667pt;}
.y4d{bottom:544.386667pt;}
.y1ca{bottom:549.506667pt;}
.y9b{bottom:550.626667pt;}
.yb8{bottom:553.506667pt;}
.y159{bottom:557.026667pt;}
.y171{bottom:561.186667pt;}
.ydc{bottom:562.146667pt;}
.y188{bottom:562.466667pt;}
.yc7{bottom:562.786667pt;}
.y30{bottom:564.226667pt;}
.y68{bottom:565.026667pt;}
.yf0{bottom:565.666667pt;}
.y13c{bottom:566.146667pt;}
.y84{bottom:567.106667pt;}
.y104{bottom:567.586667pt;}
.y126{bottom:569.026667pt;}
.y10{bottom:571.266667pt;}
.y4c{bottom:571.906667pt;}
.y115{bottom:573.346667pt;}
.yb7{bottom:581.186667pt;}
.y158{bottom:584.706667pt;}
.y1c9{bottom:585.346667pt;}
.ydb{bottom:587.426667pt;}
.y9a{bottom:588.866667pt;}
.y67{bottom:592.573333pt;}
.y13b{bottom:592.893333pt;}
.yef{bottom:593.373333pt;}
.y170{bottom:594.493333pt;}
.y83{bottom:594.813333pt;}
.y103{bottom:596.573333pt;}
.y187{bottom:598.173333pt;}
.y4b{bottom:599.613333pt;}
.yc6{bottom:601.053333pt;}
.y2f{bottom:602.493333pt;}
.y1b0{bottom:605.373333pt;}
.yf{bottom:605.693333pt;}
.y125{bottom:607.293333pt;}
.yb6{bottom:608.733333pt;}
.y1c8{bottom:610.653333pt;}
.y114{bottom:611.773333pt;}
.y157{bottom:612.253333pt;}
.yda{bottom:612.893333pt;}
.y13a{bottom:619.773333pt;}
.y66{bottom:620.253333pt;}
.yee{bottom:620.893333pt;}
.y82{bottom:622.333333pt;}
.y186{bottom:624.573333pt;}
.y4a{bottom:627.133333pt;}
.y2e{bottom:630.173333pt;}
.y1af{bottom:633.053333pt;}
.y102{bottom:634.973333pt;}
.yc5{bottom:639.293333pt;}
.ye{bottom:640.093333pt;}
.y16f{bottom:645.053333pt;}
.y139{bottom:645.213333pt;}
.y1c7{bottom:646.653333pt;}
.yb5{bottom:646.973333pt;}
.yed{bottom:648.573333pt;}
.yd9{bottom:650.013333pt;}
.y156{bottom:650.653333pt;}
.y65{bottom:654.653333pt;}
.y2d{bottom:657.693333pt;}
.y185{bottom:660.093333pt;}
.y81{bottom:660.573333pt;}
.y124{bottom:662.493333pt;}
.y49{bottom:665.373333pt;}
.y16e{bottom:670.333333pt;}
.y1c6{bottom:671.933333pt;}
.y101{bottom:673.213333pt;}
.yd{bottom:674.653333pt;}
.yec{bottom:676.093333pt;}
.yc4{bottom:677.533333pt;}
.y155{bottom:678.173333pt;}
.y138{bottom:682.333333pt;}
.yb4{bottom:683.773333pt;}
.y2c{bottom:685.373333pt;}
.y184{bottom:687.773333pt;}
.y64{bottom:687.933333pt;}
.y80{bottom:688.253333pt;}
.y123{bottom:690.173333pt;}
.y16d{bottom:695.613333pt;}
.y100{bottom:700.733333pt;}
.y48{bottom:703.773333pt;}
.y19a{bottom:704.893333pt;}
.yd8{bottom:705.213333pt;}
.y154{bottom:705.853333pt;}
.y1c5{bottom:707.933333pt;}
.yc{bottom:709.373333pt;}
.y137{bottom:710.013333pt;}
.yb3{bottom:711.453333pt;}
.y63{bottom:713.213333pt;}
.yeb{bottom:714.333333pt;}
.y183{bottom:715.293333pt;}
.y7f{bottom:715.773333pt;}
.y2b{bottom:723.613333pt;}
.yb{bottom:726.813333pt;}
.yff{bottom:728.413333pt;}
.y47{bottom:731.293333pt;}
.yd7{bottom:732.733333pt;}
.y1c4{bottom:733.213333pt;}
.y153{bottom:733.373333pt;}
.y62{bottom:738.493333pt;}
.yb2{bottom:738.973333pt;}
.y99{bottom:742.013333pt;}
.y182{bottom:742.973333pt;}
.y7e{bottom:743.453333pt;}
.y135{bottom:748.253333pt;}
.y2a{bottom:751.133333pt;}
.yc3{bottom:754.173333pt;}
.y136{bottom:754.333333pt;}
.y1c3{bottom:758.493333pt;}
.y46{bottom:758.973333pt;}
.y16c{bottom:760.413333pt;}
.ya{bottom:761.213333pt;}
.y61{bottom:763.773333pt;}
.y152{bottom:763.933333pt;}
.yb1{bottom:766.653333pt;}
.y98{bottom:769.533333pt;}
.y7d{bottom:770.973333pt;}
.y134{bottom:775.773333pt;}
.y181{bottom:778.493333pt;}
.y29{bottom:778.813333pt;}
.yc2{bottom:781.693333pt;}
.y45{bottom:786.493333pt;}
.y60{bottom:789.053333pt;}
.yb0{bottom:794.173333pt;}
.y151{bottom:794.493333pt;}
.y9{bottom:795.613333pt;}
.y97{bottom:797.213333pt;}
.yd6{bottom:798.653333pt;}
.y133{bottom:803.453333pt;}
.yfe{bottom:804.893333pt;}
.y28{bottom:806.373333pt;}
.y7c{bottom:809.413333pt;}
.y44{bottom:814.053333pt;}
.y113{bottom:815.493333pt;}
.yaf{bottom:821.893333pt;}
.y150{bottom:824.933333pt;}
.y5f{bottom:826.213333pt;}
.y8{bottom:830.053333pt;}
.y1c2{bottom:830.533333pt;}
.y132{bottom:831.013333pt;}
.y194{bottom:832.453333pt;}
.y27{bottom:834.053333pt;}
.y96{bottom:835.493333pt;}
.y7b{bottom:836.933333pt;}
.yfd{bottom:843.173333pt;}
.y7{bottom:848.453333pt;}
.y43{bottom:852.453333pt;}
.y5e{bottom:853.893333pt;}
.y14f{bottom:855.493333pt;}
.y1c1{bottom:855.813333pt;}
.yae{bottom:860.133333pt;}
.y7a{bottom:864.453333pt;}
.y131{bottom:869.253333pt;}
.y26{bottom:872.293333pt;}
.yc1{bottom:875.173333pt;}
.y42{bottom:881.413333pt;}
.y6{bottom:882.853333pt;}
.y14e{bottom:886.053333pt;}
.y1c0{bottom:891.813333pt;}
.y5d{bottom:892.133333pt;}
.yad{bottom:898.373333pt;}
.y25{bottom:899.813333pt;}
.y94{bottom:902.853333pt;}
.y130{bottom:907.653333pt;}
.y95{bottom:908.933333pt;}
.y14d{bottom:916.613333pt;}
.y1bf{bottom:917.093333pt;}
.y5{bottom:917.413333pt;}
.y41{bottom:919.653333pt;}
.y24{bottom:927.493333pt;}
.y93{bottom:930.373333pt;}
.yac{bottom:936.613333pt;}
.y14b{bottom:947.013333pt;}
.y40{bottom:947.333333pt;}
.y4{bottom:952.133333pt;}
.y14c{bottom:953.093333pt;}
.y23{bottom:955.013333pt;}
.y79{bottom:958.053333pt;}
.y3{bottom:969.573333pt;}
.y5c{bottom:974.853333pt;}
.y14a{bottom:977.573333pt;}
.y1be{bottom:978.373333pt;}
.y22{bottom:982.693333pt;}
.y3f{bottom:985.573333pt;}
.y2{bottom:1013.253333pt;}
.y1bd{bottom:1014.373333pt;}
.h11{height:33.918750pt;}
.he{height:34.374375pt;}
.hd{height:42.084375pt;}
.h12{height:47.621250pt;}
.h10{height:52.134375pt;}
.hb{height:52.785000pt;}
.hf{height:52.834688pt;}
.hc{height:53.043750pt;}
.h13{height:55.200000pt;}
.h8{height:57.375000pt;}
.h9{height:57.656250pt;}
.h2{height:57.787500pt;}
.h5{height:58.563750pt;}
.h17{height:61.295000pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.h4{height:65.781915pt;}
.h7{height:66.625000pt;}
.h15{height:128.800000pt;}
.h14{height:137.946667pt;}
.h16{height:184.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:188.026667pt;}
.w5{width:188.186667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x22{left:12.960000pt;}
.x23{left:18.720000pt;}
.x24{left:23.034667pt;}
.x21{left:44.154667pt;}
.x1{left:113.471988pt;}
.xd{left:117.791988pt;}
.x1d{left:122.111988pt;}
.x16{left:136.506643pt;}
.x2{left:137.466655pt;}
.x17{left:141.946655pt;}
.x3{left:151.386655pt;}
.x18{left:161.626643pt;}
.xa{left:167.706643pt;}
.x7{left:170.266655pt;}
.xb{left:173.146655pt;}
.x4{left:175.386655pt;}
.x5{left:185.466655pt;}
.x8{left:193.946655pt;}
.x12{left:201.946643pt;}
.x9{left:208.026655pt;}
.xe{left:264.706655pt;}
.x13{left:299.746643pt;}
.x1f{left:302.946667pt;}
.xc{left:305.506655pt;}
.x19{left:358.306643pt;}
.x1a{left:363.746655pt;}
.x20{left:491.613333pt;}
.x10{left:529.533310pt;}
.x11{left:534.973322pt;}
.x1b{left:536.733310pt;}
.x14{left:540.093310pt;}
.x15{left:545.533322pt;}
.x1c{left:547.613322pt;}
.xf{left:665.573322pt;}
.x6{left:673.093322pt;}
}




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