
    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_663d71dfc1f545249100199a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d5d76fa523da8b318cb3ab72.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f81e248ab0337c76afaa6e8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_ad1d5aa95d6c82cc13c69657.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b932cbdd53ccbec248e899a2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5599040c47aa527950b76a62.woff2')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_17f775550165ffd66b23edaa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_79f949b39dfe89f4a3c90d27.woff2')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_1a141101d55fa920715e3b73.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_ff5bcac9611540b5dab41267.woff2')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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.vb{vertical-align:-69.840000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-13.680000px;}
.v4{vertical-align:-5.760000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.760000px;}
.v7{vertical-align:13.680000px;}
.vc{vertical-align:17.999992px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:29.520000px;}
.v8{vertical-align:39.600000px;}
.ls2a{letter-spacing:-0.870000px;}
.lsd{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.414600px;}
.ls28{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.023040px;}
.ls12{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.089280px;}
.lsa{letter-spacing:0.109200px;}
.ls29{letter-spacing:0.109440px;}
.ls25{letter-spacing:0.148800px;}
.ls2b{letter-spacing:0.152400px;}
.ls15{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.262080px;}
.ls17{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.273600px;}
.ls9{letter-spacing:0.305400px;}
.ls24{letter-spacing:0.345600px;}
.ls13{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.224000px;}
.ls20{letter-spacing:1.370880px;}
.ls8{letter-spacing:1.386000px;}
.ls0{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.620000px;}
.ls1{letter-spacing:1.800000px;}
.ls1c{letter-spacing:1.959840px;}
.ls4{letter-spacing:1.980000px;}
.ls1d{letter-spacing:3.067200px;}
.ls1a{letter-spacing:3.855600px;}
.ls1b{letter-spacing:12.495600px;}
.ls22{letter-spacing:39.005040px;}
.ls1f{letter-spacing:39.029040px;}
.ls11{letter-spacing:44.225280px;}
.ls27{letter-spacing:60.296400px;}
.lsb{letter-spacing:61.505280px;}
.lsc{letter-spacing:71.585280px;}
.ls23{letter-spacing:87.119040px;}
.ls21{letter-spacing:87.143040px;}
.ls26{letter-spacing:485.976000px;}
.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:-18.000000px;}
.wse{word-spacing:-16.905600px;}
.wsc{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.ws20{word-spacing:-16.712400px;}
.ws2{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.145400px;}
.ws1f{word-spacing:-15.690000px;}
.wsa{word-spacing:-15.606000px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.572800px;}
.ws1b{word-spacing:-13.500000px;}
.ws14{word-spacing:-10.761600px;}
.ws10{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.440000px;}
.ws1d{word-spacing:-10.080000px;}
.ws9{word-spacing:-9.720000px;}
.ws17{word-spacing:-8.553600px;}
.ws1c{word-spacing:-7.560000px;}
.ws15{word-spacing:-0.100080px;}
.ws19{word-spacing:-0.098640px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.025920px;}
.ws1a{word-spacing:0.655200px;}
.wsf{word-spacing:1.378800px;}
.ws18{word-spacing:1.471680px;}
.ws13{word-spacing:1.503360px;}
.ws1e{word-spacing:1.770000px;}
.ws11{word-spacing:7.244400px;}
._11{margin-left:-10.070400px;}
._12{margin-left:-8.835600px;}
._14{margin-left:-5.371200px;}
._d{margin-left:-4.152960px;}
._6{margin-left:-3.096000px;}
._1{margin-left:-1.445760px;}
._0{width:1.015920px;}
._2{width:2.707680px;}
._7{width:4.205760px;}
._3{width:5.255040px;}
._8{width:6.921840px;}
._c{width:8.942400px;}
._a{width:10.929600px;}
._b{width:12.044160px;}
._10{width:13.229760px;}
._f{width:15.229440px;}
._e{width:18.336960px;}
._15{width:19.416480px;}
._4{width:20.598480px;}
._9{width:22.578480px;}
._13{width:189.852000px;}
._5{width:201.060000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:40.320000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.540000px;}
.y8a{bottom:3.240000px;}
.y8f{bottom:3.420000px;}
.y88{bottom:3.600000px;}
.y3{bottom:3.780000px;}
.yd7{bottom:4.140000px;}
.y127{bottom:4.890000px;}
.y6{bottom:5.580000px;}
.y125{bottom:6.045000px;}
.y11a{bottom:10.080000px;}
.y2{bottom:20.520000px;}
.y8e{bottom:20.700000px;}
.y87{bottom:20.880000px;}
.y92{bottom:21.060000px;}
.yd6{bottom:23.040000px;}
.y116{bottom:25.485000px;}
.y123{bottom:26.565000px;}
.y119{bottom:27.105000px;}
.y8d{bottom:37.980000px;}
.y86{bottom:38.160000px;}
.y91{bottom:38.340000px;}
.y11c{bottom:42.405000px;}
.y10d{bottom:51.990000px;}
.y8c{bottom:55.260000px;}
.y90{bottom:55.620000px;}
.y8{bottom:55.980000px;}
.y5{bottom:64.080000px;}
.y11d{bottom:72.180000px;}
.y10e{bottom:74.130000px;}
.y114{bottom:85.215000px;}
.y117{bottom:91.110000px;}
.y118{bottom:92.550000px;}
.y10f{bottom:96.270000px;}
.y11e{bottom:101.910000px;}
.y149{bottom:117.360000px;}
.y110{bottom:118.410000px;}
.y10b{bottom:121.140000px;}
.y3f{bottom:121.500000px;}
.yd3{bottom:129.060000px;}
.yfb{bottom:129.240000px;}
.ya3{bottom:131.400000px;}
.y11f{bottom:131.655000px;}
.y76{bottom:136.260000px;}
.y10a{bottom:140.040000px;}
.y3e{bottom:140.400000px;}
.y111{bottom:140.550000px;}
.yfa{bottom:146.700000px;}
.yb7{bottom:147.240000px;}
.yd2{bottom:148.140000px;}
.yf9{bottom:150.120000px;}
.ya2{bottom:150.300000px;}
.y115{bottom:151.635000px;}
.y75{bottom:155.160000px;}
.y109{bottom:158.940000px;}
.y3d{bottom:159.480000px;}
.y120{bottom:161.430000px;}
.y112{bottom:162.690000px;}
.yd1{bottom:167.070000px;}
.ya1{bottom:169.410000px;}
.yf8{bottom:169.590000px;}
.yb6{bottom:169.950000px;}
.y74{bottom:174.270000px;}
.y124{bottom:177.870000px;}
.y108{bottom:178.050000px;}
.y3c{bottom:178.410000px;}
.y113{bottom:184.860000px;}
.yd0{bottom:186.150000px;}
.ya0{bottom:188.310000px;}
.yf7{bottom:188.490000px;}
.y121{bottom:191.160000px;}
.y73{bottom:193.170000px;}
.y107{bottom:196.950000px;}
.y3b{bottom:197.490000px;}
.ycf{bottom:205.050000px;}
.y9f{bottom:207.210000px;}
.yf6{bottom:207.570000px;}
.y148{bottom:211.890000px;}
.y72{bottom:212.250000px;}
.y106{bottom:215.670000px;}
.y3a{bottom:216.390000px;}
.y122{bottom:220.935000px;}
.yce{bottom:223.950000px;}
.y9e{bottom:226.290000px;}
.yf5{bottom:226.470000px;}
.y147{bottom:230.790000px;}
.y71{bottom:231.150000px;}
.y105{bottom:234.570000px;}
.y39{bottom:235.290000px;}
.ycd{bottom:242.670000px;}
.y9d{bottom:245.190000px;}
.yf4{bottom:245.550000px;}
.y70{bottom:250.050000px;}
.y104{bottom:251.850000px;}
.y38{bottom:254.370000px;}
.ycc{bottom:259.950000px;}
.y9c{bottom:264.270000px;}
.yf3{bottom:264.450000px;}
.y6f{bottom:269.130000px;}
.y37{bottom:273.270000px;}
.y9b{bottom:283.170000px;}
.yf2{bottom:283.350000px;}
.y103{bottom:286.590000px;}
.y6e{bottom:288.030000px;}
.y36{bottom:292.350000px;}
.ycb{bottom:297.210000px;}
.y102{bottom:301.710000px;}
.y11b{bottom:301.860000px;}
.y9a{bottom:302.070000px;}
.yf0{bottom:302.430000px;}
.yf1{bottom:302.970000px;}
.y126{bottom:304.200000px;}
.y6d{bottom:307.110000px;}
.y35{bottom:311.250000px;}
.yca{bottom:316.110000px;}
.y99{bottom:321.150000px;}
.yef{bottom:324.210000px;}
.y6c{bottom:325.650000px;}
.y146{bottom:326.010000px;}
.y34{bottom:330.150000px;}
.yc9{bottom:335.190000px;}
.y98{bottom:340.050000px;}
.y145{bottom:345.090000px;}
.yed{bottom:345.630000px;}
.yee{bottom:346.170000px;}
.y33{bottom:349.230000px;}
.yc8{bottom:354.090000px;}
.y97{bottom:359.130000px;}
.y6b{bottom:363.090000px;}
.y144{bottom:363.990000px;}
.yec{bottom:365.610000px;}
.y32{bottom:368.130000px;}
.yc7{bottom:373.170000px;}
.y96{bottom:377.670000px;}
.yeb{bottom:381.270000px;}
.y6a{bottom:381.990000px;}
.y143{bottom:382.890000px;}
.yea{bottom:384.690000px;}
.y31{bottom:387.210000px;}
.yc6{bottom:392.070000px;}
.y95{bottom:397.110000px;}
.y69{bottom:400.890000px;}
.y142{bottom:401.970000px;}
.ye9{bottom:405.615000px;}
.y30{bottom:406.155000px;}
.yc5{bottom:411.015000px;}
.y94{bottom:415.695000px;}
.y68{bottom:420.015000px;}
.y141{bottom:420.915000px;}
.y2f{bottom:424.695000px;}
.ye8{bottom:426.675000px;}
.y93{bottom:430.095000px;}
.y67{bottom:438.915000px;}
.y140{bottom:439.995000px;}
.y2e{bottom:444.135000px;}
.ye7{bottom:444.675000px;}
.y8b{bottom:447.195000px;}
.ye6{bottom:448.095000px;}
.yc4{bottom:448.995000px;}
.y66{bottom:457.995000px;}
.y13f{bottom:458.895000px;}
.y2d{bottom:463.035000px;}
.ye5{bottom:467.535000px;}
.yc3{bottom:468.075000px;}
.y65{bottom:476.895000px;}
.y13e{bottom:477.795000px;}
.y2c{bottom:482.115000px;}
.ye4{bottom:486.435000px;}
.yc2{bottom:486.975000px;}
.y64{bottom:495.795000px;}
.y13d{bottom:496.875000px;}
.y2b{bottom:500.835000px;}
.ye3{bottom:505.515000px;}
.yc1{bottom:505.875000px;}
.yb5{bottom:509.115000px;}
.y63{bottom:514.875000px;}
.y13c{bottom:515.775000px;}
.y89{bottom:516.315000px;}
.y2a{bottom:517.935000px;}
.ye2{bottom:524.415000px;}
.yc0{bottom:524.955000px;}
.yb4{bottom:528.015000px;}
.y62{bottom:533.775000px;}
.y85{bottom:534.315000px;}
.y13b{bottom:534.855000px;}
.y29{bottom:535.215000px;}
.ybf{bottom:543.855000px;}
.ye1{bottom:545.295000px;}
.yb3{bottom:547.095000px;}
.y28{bottom:552.495000px;}
.y61{bottom:552.855000px;}
.y13a{bottom:553.755000px;}
.y101{bottom:558.795000px;}
.ybe{bottom:562.935000px;}
.ye0{bottom:564.915000px;}
.yb2{bottom:565.995000px;}
.y27{bottom:569.775000px;}
.y60{bottom:571.395000px;}
.y139{bottom:572.655000px;}
.y100{bottom:579.675000px;}
.ybd{bottom:581.835000px;}
.ydf{bottom:583.815000px;}
.yb1{bottom:585.075000px;}
.y26{bottom:587.055000px;}
.y5f{bottom:588.675000px;}
.y138{bottom:591.735000px;}
.yff{bottom:599.115000px;}
.y84{bottom:599.475000px;}
.ybc{bottom:600.915000px;}
.yde{bottom:602.715000px;}
.yb0{bottom:603.975000px;}
.y25{bottom:604.155000px;}
.y5e{bottom:607.935000px;}
.y137{bottom:610.635000px;}
.yfe{bottom:618.195000px;}
.ybb{bottom:619.815000px;}
.y24{bottom:621.435000px;}
.ydd{bottom:621.795000px;}
.yaf{bottom:622.875000px;}
.y5d{bottom:627.015000px;}
.y136{bottom:629.715000px;}
.y83{bottom:635.115000px;}
.yfd{bottom:637.095000px;}
.y23{bottom:638.715000px;}
.ydc{bottom:640.695000px;}
.yae{bottom:641.955000px;}
.y5c{bottom:645.915000px;}
.y135{bottom:648.615000px;}
.y82{bottom:654.045000px;}
.y22{bottom:656.025000px;}
.yba{bottom:657.825000px;}
.ydb{bottom:659.805000px;}
.yad{bottom:660.885000px;}
.y5b{bottom:664.845000px;}
.y134{bottom:667.545000px;}
.y81{bottom:672.945000px;}
.y21{bottom:673.305000px;}
.yda{bottom:678.705000px;}
.yac{bottom:679.965000px;}
.y5a{bottom:683.925000px;}
.yb9{bottom:685.545000px;}
.y133{bottom:686.625000px;}
.yfc{bottom:688.425000px;}
.y10c{bottom:688.860000px;}
.y20{bottom:690.585000px;}
.y80{bottom:692.025000px;}
.yd9{bottom:697.245000px;}
.yab{bottom:698.865000px;}
.y59{bottom:702.825000px;}
.y132{bottom:705.525000px;}
.y1f{bottom:707.685000px;}
.yb8{bottom:708.045000px;}
.y7f{bottom:710.925000px;}
.yaa{bottom:717.765000px;}
.y58{bottom:721.905000px;}
.y131{bottom:724.605000px;}
.y1e{bottom:724.965000px;}
.y7e{bottom:730.005000px;}
.yd8{bottom:734.325000px;}
.ya9{bottom:736.845000px;}
.y57{bottom:740.805000px;}
.y1d{bottom:742.245000px;}
.y130{bottom:743.505000px;}
.yd5{bottom:747.825000px;}
.y7d{bottom:748.905000px;}
.ya8{bottom:755.745000px;}
.y1c{bottom:759.525000px;}
.y56{bottom:759.885000px;}
.y12f{bottom:762.405000px;}
.y7c{bottom:767.805000px;}
.ya7{bottom:774.465000px;}
.y1b{bottom:776.805000px;}
.y55{bottom:778.785000px;}
.y12e{bottom:781.485000px;}
.ya6{bottom:793.365000px;}
.y1a{bottom:794.085000px;}
.y7b{bottom:795.525000px;}
.y54{bottom:797.685000px;}
.y12d{bottom:800.385000px;}
.yd4{bottom:803.805000px;}
.y19{bottom:811.185000px;}
.y7a{bottom:812.805000px;}
.y53{bottom:816.765000px;}
.y12c{bottom:819.465000px;}
.ya5{bottom:821.445000px;}
.y18{bottom:828.465000px;}
.y52{bottom:835.665000px;}
.y12b{bottom:838.365000px;}
.y79{bottom:839.265000px;}
.y17{bottom:845.745000px;}
.ya4{bottom:847.905000px;}
.y78{bottom:854.205000px;}
.y51{bottom:854.745000px;}
.y12a{bottom:857.445000px;}
.y16{bottom:863.025000px;}
.y50{bottom:873.645000px;}
.y129{bottom:875.985000px;}
.y15{bottom:880.305000px;}
.y4f{bottom:892.545000px;}
.y128{bottom:895.065000px;}
.y14{bottom:897.630000px;}
.y4e{bottom:911.670000px;}
.y13{bottom:914.730000px;}
.y4d{bottom:930.570000px;}
.y12{bottom:932.730000px;}
.y4c{bottom:949.650000px;}
.y11{bottom:953.070000px;}
.y4b{bottom:968.550000px;}
.y10{bottom:973.770000px;}
.y4a{bottom:987.450000px;}
.yf{bottom:994.830000px;}
.y49{bottom:1006.530000px;}
.ye{bottom:1015.530000px;}
.y48{bottom:1025.430000px;}
.yd{bottom:1035.870000px;}
.y47{bottom:1044.510000px;}
.yc{bottom:1056.570000px;}
.y46{bottom:1063.410000px;}
.yb{bottom:1077.270000px;}
.y45{bottom:1082.310000px;}
.ya{bottom:1097.970000px;}
.y44{bottom:1101.390000px;}
.y9{bottom:1118.670000px;}
.y43{bottom:1119.930000px;}
.y77{bottom:1120.290000px;}
.y4{bottom:1152.180000px;}
.y42{bottom:1156.680000px;}
.y1{bottom:1166.400000px;}
.y41{bottom:1170.900000px;}
.y40{bottom:1192.680000px;}
.h6{height:5.653125px;}
.h11{height:17.085000px;}
.hc{height:17.280000px;}
.h5{height:19.080000px;}
.h1e{height:19.800000px;}
.h1c{height:29.678906px;}
.h7{height:35.332031px;}
.h14{height:37.980000px;}
.h2{height:42.480000px;}
.hf{height:51.645000px;}
.h1b{height:52.998047px;}
.h15{height:55.825312px;}
.h4{height:58.651172px;}
.h10{height:59.038594px;}
.he{height:59.383125px;}
.h3{height:60.226875px;}
.h19{height:62.850937px;}
.ha{height:65.010937px;}
.h18{height:65.135391px;}
.hb{height:66.757500px;}
.h13{height:68.084282px;}
.hd{height:68.956875px;}
.h12{height:69.105000px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.h16{height:78.690937px;}
.h17{height:80.255391px;}
.h1a{height:199.800000px;}
.h1d{height:253.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:1.605000px;}
.wa{width:73.605000px;}
.wc{width:73.620000px;}
.wb{width:73.821000px;}
.w9{width:84.051000px;}
.wf{width:105.501000px;}
.we{width:116.265000px;}
.wd{width:116.316000px;}
.w2{width:158.031000px;}
.w4{width:323.301000px;}
.w14{width:331.740000px;}
.w7{width:340.221000px;}
.w8{width:340.275000px;}
.w5{width:357.195000px;}
.w15{width:415.440000px;}
.w13{width:460.080000px;}
.w12{width:498.240000px;}
.w3{width:522.450000px;}
.w10{width:679.950000px;}
.w6{width:680.490000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.091000px;}
.x4{left:9.705000px;}
.x2a{left:12.630000px;}
.x27{left:14.565000px;}
.x33{left:16.551000px;}
.x34{left:19.785000px;}
.x6e{left:21.525000px;}
.x28{left:24.465000px;}
.x2c{left:25.740000px;}
.x29{left:27.525000px;}
.x35{left:31.890000px;}
.x32{left:35.850000px;}
.x30{left:40.485000px;}
.x25{left:41.925000px;}
.x4d{left:45.690000px;}
.x2e{left:47.190000px;}
.x36{left:53.130000px;}
.x4e{left:58.290000px;}
.x4f{left:70.845000px;}
.x50{left:83.445000px;}
.x51{left:96.045000px;}
.x1{left:106.425000px;}
.x40{left:107.496000px;}
.x52{left:108.615000px;}
.xe{left:115.236000px;}
.xd{left:116.316000px;}
.xc{left:117.756000px;}
.x53{left:121.215000px;}
.x24{left:122.805000px;}
.x21{left:127.836000px;}
.x48{left:129.636000px;}
.x54{left:133.770000px;}
.x49{left:141.156000px;}
.x70{left:142.275000px;}
.x55{left:146.370000px;}
.x44{left:147.816000px;}
.x2{left:149.925000px;}
.x56{left:158.940000px;}
.x37{left:160.410000px;}
.x57{left:171.540000px;}
.xf{left:173.010000px;}
.x1d{left:176.745000px;}
.x58{left:184.140000px;}
.x3c{left:185.610000px;}
.x4b{left:197.280000px;}
.x26{left:207.585000px;}
.x59{left:209.310000px;}
.x6c{left:212.685000px;}
.x6d{left:216.360000px;}
.x5a{left:222.015000px;}
.x10{left:228.990000px;}
.x39{left:230.610000px;}
.x5b{left:234.570000px;}
.x6f{left:242.280000px;}
.x5c{left:247.170000px;}
.x23{left:255.990000px;}
.x5d{left:259.770000px;}
.x71{left:261.000000px;}
.x3{left:264.465000px;}
.x5e{left:272.340000px;}
.x18{left:282.630000px;}
.x5f{left:284.940000px;}
.x15{left:297.435000px;}
.x60{left:310.110000px;}
.x5{left:313.980000px;}
.x61{left:322.710000px;}
.x1e{left:324.615000px;}
.x3b{left:327.855000px;}
.x1f{left:332.175000px;}
.x62{left:335.265000px;}
.x3d{left:340.050000px;}
.x8{left:341.355000px;}
.x22{left:344.235000px;}
.x14{left:346.755000px;}
.x63{left:347.865000px;}
.x9{left:348.915000px;}
.x3f{left:351.435000px;}
.x2b{left:356.475000px;}
.x64{left:360.435000px;}
.x11{left:361.695000px;}
.x16{left:362.955000px;}
.x19{left:370.335000px;}
.x65{left:373.035000px;}
.x12{left:376.635000px;}
.x13{left:383.475000px;}
.x66{left:385.590000px;}
.x1a{left:392.655000px;}
.x1b{left:395.535000px;}
.x67{left:398.190000px;}
.x17{left:402.735000px;}
.xa{left:407.055000px;}
.x42{left:411.195000px;}
.x1c{left:419.655000px;}
.x68{left:423.360000px;}
.x7{left:429.735000px;}
.x2d{left:430.815000px;}
.x69{left:435.960000px;}
.xb{left:446.655000px;}
.x6b{left:452.160000px;}
.x4c{left:456.015000px;}
.x4a{left:457.275000px;}
.x6a{left:493.095000px;}
.x41{left:541.005000px;}
.x2f{left:547.860000px;}
.x31{left:664.860000px;}
.x45{left:674.970000px;}
.x47{left:676.770000px;}
.x38{left:694.770000px;}
.x46{left:695.850000px;}
.x3a{left:701.970000px;}
.x20{left:704.310000px;}
.x43{left:745.170000px;}
.x3e{left:786.390000px;}
@media print{
.vb{vertical-align:-62.080000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-12.160000pt;}
.v4{vertical-align:-5.120000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.120000pt;}
.v7{vertical-align:12.160000pt;}
.vc{vertical-align:15.999993pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:26.240000pt;}
.v8{vertical-align:35.200000pt;}
.ls2a{letter-spacing:-0.773333pt;}
.lsd{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.368533pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.020480pt;}
.ls12{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.079360pt;}
.lsa{letter-spacing:0.097067pt;}
.ls29{letter-spacing:0.097280pt;}
.ls25{letter-spacing:0.132267pt;}
.ls2b{letter-spacing:0.135467pt;}
.ls15{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.232960pt;}
.ls17{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.243200pt;}
.ls9{letter-spacing:0.271467pt;}
.ls24{letter-spacing:0.307200pt;}
.ls13{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.088000pt;}
.ls20{letter-spacing:1.218560pt;}
.ls8{letter-spacing:1.232000pt;}
.ls0{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls1{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.742080pt;}
.ls4{letter-spacing:1.760000pt;}
.ls1d{letter-spacing:2.726400pt;}
.ls1a{letter-spacing:3.427200pt;}
.ls1b{letter-spacing:11.107200pt;}
.ls22{letter-spacing:34.671147pt;}
.ls1f{letter-spacing:34.692480pt;}
.ls11{letter-spacing:39.311360pt;}
.ls27{letter-spacing:53.596800pt;}
.lsb{letter-spacing:54.671360pt;}
.lsc{letter-spacing:63.631360pt;}
.ls23{letter-spacing:77.439147pt;}
.ls21{letter-spacing:77.460480pt;}
.ls26{letter-spacing:431.978667pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.027200pt;}
.wsc{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.ws20{word-spacing:-14.855467pt;}
.ws2{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.351467pt;}
.ws1f{word-spacing:-13.946667pt;}
.wsa{word-spacing:-13.872000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws16{word-spacing:-12.953600pt;}
.ws1b{word-spacing:-12.000000pt;}
.ws14{word-spacing:-9.565867pt;}
.ws10{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.280000pt;}
.ws1d{word-spacing:-8.960000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws17{word-spacing:-7.603200pt;}
.ws1c{word-spacing:-6.720000pt;}
.ws15{word-spacing:-0.088960pt;}
.ws19{word-spacing:-0.087680pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.023040pt;}
.ws1a{word-spacing:0.582400pt;}
.wsf{word-spacing:1.225600pt;}
.ws18{word-spacing:1.308160pt;}
.ws13{word-spacing:1.336320pt;}
.ws1e{word-spacing:1.573333pt;}
.ws11{word-spacing:6.439467pt;}
._11{margin-left:-8.951467pt;}
._12{margin-left:-7.853867pt;}
._14{margin-left:-4.774400pt;}
._d{margin-left:-3.691520pt;}
._6{margin-left:-2.752000pt;}
._1{margin-left:-1.285120pt;}
._0{width:0.903040pt;}
._2{width:2.406827pt;}
._7{width:3.738453pt;}
._3{width:4.671147pt;}
._8{width:6.152747pt;}
._c{width:7.948800pt;}
._a{width:9.715200pt;}
._b{width:10.705920pt;}
._10{width:11.759787pt;}
._f{width:13.537280pt;}
._e{width:16.299520pt;}
._15{width:17.259093pt;}
._4{width:18.309760pt;}
._9{width:20.069760pt;}
._13{width:168.757333pt;}
._5{width:178.720000pt;}
.fs1{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:35.840000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.480000pt;}
.y8a{bottom:2.880000pt;}
.y8f{bottom:3.040000pt;}
.y88{bottom:3.200000pt;}
.y3{bottom:3.360000pt;}
.yd7{bottom:3.680000pt;}
.y127{bottom:4.346667pt;}
.y6{bottom:4.960000pt;}
.y125{bottom:5.373333pt;}
.y11a{bottom:8.960000pt;}
.y2{bottom:18.240000pt;}
.y8e{bottom:18.400000pt;}
.y87{bottom:18.560000pt;}
.y92{bottom:18.720000pt;}
.yd6{bottom:20.480000pt;}
.y116{bottom:22.653333pt;}
.y123{bottom:23.613333pt;}
.y119{bottom:24.093333pt;}
.y8d{bottom:33.760000pt;}
.y86{bottom:33.920000pt;}
.y91{bottom:34.080000pt;}
.y11c{bottom:37.693333pt;}
.y10d{bottom:46.213333pt;}
.y8c{bottom:49.120000pt;}
.y90{bottom:49.440000pt;}
.y8{bottom:49.760000pt;}
.y5{bottom:56.960000pt;}
.y11d{bottom:64.160000pt;}
.y10e{bottom:65.893333pt;}
.y114{bottom:75.746667pt;}
.y117{bottom:80.986667pt;}
.y118{bottom:82.266667pt;}
.y10f{bottom:85.573333pt;}
.y11e{bottom:90.586667pt;}
.y149{bottom:104.320000pt;}
.y110{bottom:105.253333pt;}
.y10b{bottom:107.680000pt;}
.y3f{bottom:108.000000pt;}
.yd3{bottom:114.720000pt;}
.yfb{bottom:114.880000pt;}
.ya3{bottom:116.800000pt;}
.y11f{bottom:117.026667pt;}
.y76{bottom:121.120000pt;}
.y10a{bottom:124.480000pt;}
.y3e{bottom:124.800000pt;}
.y111{bottom:124.933333pt;}
.yfa{bottom:130.400000pt;}
.yb7{bottom:130.880000pt;}
.yd2{bottom:131.680000pt;}
.yf9{bottom:133.440000pt;}
.ya2{bottom:133.600000pt;}
.y115{bottom:134.786667pt;}
.y75{bottom:137.920000pt;}
.y109{bottom:141.280000pt;}
.y3d{bottom:141.760000pt;}
.y120{bottom:143.493333pt;}
.y112{bottom:144.613333pt;}
.yd1{bottom:148.506667pt;}
.ya1{bottom:150.586667pt;}
.yf8{bottom:150.746667pt;}
.yb6{bottom:151.066667pt;}
.y74{bottom:154.906667pt;}
.y124{bottom:158.106667pt;}
.y108{bottom:158.266667pt;}
.y3c{bottom:158.586667pt;}
.y113{bottom:164.320000pt;}
.yd0{bottom:165.466667pt;}
.ya0{bottom:167.386667pt;}
.yf7{bottom:167.546667pt;}
.y121{bottom:169.920000pt;}
.y73{bottom:171.706667pt;}
.y107{bottom:175.066667pt;}
.y3b{bottom:175.546667pt;}
.ycf{bottom:182.266667pt;}
.y9f{bottom:184.186667pt;}
.yf6{bottom:184.506667pt;}
.y148{bottom:188.346667pt;}
.y72{bottom:188.666667pt;}
.y106{bottom:191.706667pt;}
.y3a{bottom:192.346667pt;}
.y122{bottom:196.386667pt;}
.yce{bottom:199.066667pt;}
.y9e{bottom:201.146667pt;}
.yf5{bottom:201.306667pt;}
.y147{bottom:205.146667pt;}
.y71{bottom:205.466667pt;}
.y105{bottom:208.506667pt;}
.y39{bottom:209.146667pt;}
.ycd{bottom:215.706667pt;}
.y9d{bottom:217.946667pt;}
.yf4{bottom:218.266667pt;}
.y70{bottom:222.266667pt;}
.y104{bottom:223.866667pt;}
.y38{bottom:226.106667pt;}
.ycc{bottom:231.066667pt;}
.y9c{bottom:234.906667pt;}
.yf3{bottom:235.066667pt;}
.y6f{bottom:239.226667pt;}
.y37{bottom:242.906667pt;}
.y9b{bottom:251.706667pt;}
.yf2{bottom:251.866667pt;}
.y103{bottom:254.746667pt;}
.y6e{bottom:256.026667pt;}
.y36{bottom:259.866667pt;}
.ycb{bottom:264.186667pt;}
.y102{bottom:268.186667pt;}
.y11b{bottom:268.320000pt;}
.y9a{bottom:268.506667pt;}
.yf0{bottom:268.826667pt;}
.yf1{bottom:269.306667pt;}
.y126{bottom:270.400000pt;}
.y6d{bottom:272.986667pt;}
.y35{bottom:276.666667pt;}
.yca{bottom:280.986667pt;}
.y99{bottom:285.466667pt;}
.yef{bottom:288.186667pt;}
.y6c{bottom:289.466667pt;}
.y146{bottom:289.786667pt;}
.y34{bottom:293.466667pt;}
.yc9{bottom:297.946667pt;}
.y98{bottom:302.266667pt;}
.y145{bottom:306.746667pt;}
.yed{bottom:307.226667pt;}
.yee{bottom:307.706667pt;}
.y33{bottom:310.426667pt;}
.yc8{bottom:314.746667pt;}
.y97{bottom:319.226667pt;}
.y6b{bottom:322.746667pt;}
.y144{bottom:323.546667pt;}
.yec{bottom:324.986667pt;}
.y32{bottom:327.226667pt;}
.yc7{bottom:331.706667pt;}
.y96{bottom:335.706667pt;}
.yeb{bottom:338.906667pt;}
.y6a{bottom:339.546667pt;}
.y143{bottom:340.346667pt;}
.yea{bottom:341.946667pt;}
.y31{bottom:344.186667pt;}
.yc6{bottom:348.506667pt;}
.y95{bottom:352.986667pt;}
.y69{bottom:356.346667pt;}
.y142{bottom:357.306667pt;}
.ye9{bottom:360.546667pt;}
.y30{bottom:361.026667pt;}
.yc5{bottom:365.346667pt;}
.y94{bottom:369.506667pt;}
.y68{bottom:373.346667pt;}
.y141{bottom:374.146667pt;}
.y2f{bottom:377.506667pt;}
.ye8{bottom:379.266667pt;}
.y93{bottom:382.306667pt;}
.y67{bottom:390.146667pt;}
.y140{bottom:391.106667pt;}
.y2e{bottom:394.786667pt;}
.ye7{bottom:395.266667pt;}
.y8b{bottom:397.506667pt;}
.ye6{bottom:398.306667pt;}
.yc4{bottom:399.106667pt;}
.y66{bottom:407.106667pt;}
.y13f{bottom:407.906667pt;}
.y2d{bottom:411.586667pt;}
.ye5{bottom:415.586667pt;}
.yc3{bottom:416.066667pt;}
.y65{bottom:423.906667pt;}
.y13e{bottom:424.706667pt;}
.y2c{bottom:428.546667pt;}
.ye4{bottom:432.386667pt;}
.yc2{bottom:432.866667pt;}
.y64{bottom:440.706667pt;}
.y13d{bottom:441.666667pt;}
.y2b{bottom:445.186667pt;}
.ye3{bottom:449.346667pt;}
.yc1{bottom:449.666667pt;}
.yb5{bottom:452.546667pt;}
.y63{bottom:457.666667pt;}
.y13c{bottom:458.466667pt;}
.y89{bottom:458.946667pt;}
.y2a{bottom:460.386667pt;}
.ye2{bottom:466.146667pt;}
.yc0{bottom:466.626667pt;}
.yb4{bottom:469.346667pt;}
.y62{bottom:474.466667pt;}
.y85{bottom:474.946667pt;}
.y13b{bottom:475.426667pt;}
.y29{bottom:475.746667pt;}
.ybf{bottom:483.426667pt;}
.ye1{bottom:484.706667pt;}
.yb3{bottom:486.306667pt;}
.y28{bottom:491.106667pt;}
.y61{bottom:491.426667pt;}
.y13a{bottom:492.226667pt;}
.y101{bottom:496.706667pt;}
.ybe{bottom:500.386667pt;}
.ye0{bottom:502.146667pt;}
.yb2{bottom:503.106667pt;}
.y27{bottom:506.466667pt;}
.y60{bottom:507.906667pt;}
.y139{bottom:509.026667pt;}
.y100{bottom:515.266667pt;}
.ybd{bottom:517.186667pt;}
.ydf{bottom:518.946667pt;}
.yb1{bottom:520.066667pt;}
.y26{bottom:521.826667pt;}
.y5f{bottom:523.266667pt;}
.y138{bottom:525.986667pt;}
.yff{bottom:532.546667pt;}
.y84{bottom:532.866667pt;}
.ybc{bottom:534.146667pt;}
.yde{bottom:535.746667pt;}
.yb0{bottom:536.866667pt;}
.y25{bottom:537.026667pt;}
.y5e{bottom:540.386667pt;}
.y137{bottom:542.786667pt;}
.yfe{bottom:549.506667pt;}
.ybb{bottom:550.946667pt;}
.y24{bottom:552.386667pt;}
.ydd{bottom:552.706667pt;}
.yaf{bottom:553.666667pt;}
.y5d{bottom:557.346667pt;}
.y136{bottom:559.746667pt;}
.y83{bottom:564.546667pt;}
.yfd{bottom:566.306667pt;}
.y23{bottom:567.746667pt;}
.ydc{bottom:569.506667pt;}
.yae{bottom:570.626667pt;}
.y5c{bottom:574.146667pt;}
.y135{bottom:576.546667pt;}
.y82{bottom:581.373333pt;}
.y22{bottom:583.133333pt;}
.yba{bottom:584.733333pt;}
.ydb{bottom:586.493333pt;}
.yad{bottom:587.453333pt;}
.y5b{bottom:590.973333pt;}
.y134{bottom:593.373333pt;}
.y81{bottom:598.173333pt;}
.y21{bottom:598.493333pt;}
.yda{bottom:603.293333pt;}
.yac{bottom:604.413333pt;}
.y5a{bottom:607.933333pt;}
.yb9{bottom:609.373333pt;}
.y133{bottom:610.333333pt;}
.yfc{bottom:611.933333pt;}
.y10c{bottom:612.320000pt;}
.y20{bottom:613.853333pt;}
.y80{bottom:615.133333pt;}
.yd9{bottom:619.773333pt;}
.yab{bottom:621.213333pt;}
.y59{bottom:624.733333pt;}
.y132{bottom:627.133333pt;}
.y1f{bottom:629.053333pt;}
.yb8{bottom:629.373333pt;}
.y7f{bottom:631.933333pt;}
.yaa{bottom:638.013333pt;}
.y58{bottom:641.693333pt;}
.y131{bottom:644.093333pt;}
.y1e{bottom:644.413333pt;}
.y7e{bottom:648.893333pt;}
.yd8{bottom:652.733333pt;}
.ya9{bottom:654.973333pt;}
.y57{bottom:658.493333pt;}
.y1d{bottom:659.773333pt;}
.y130{bottom:660.893333pt;}
.yd5{bottom:664.733333pt;}
.y7d{bottom:665.693333pt;}
.ya8{bottom:671.773333pt;}
.y1c{bottom:675.133333pt;}
.y56{bottom:675.453333pt;}
.y12f{bottom:677.693333pt;}
.y7c{bottom:682.493333pt;}
.ya7{bottom:688.413333pt;}
.y1b{bottom:690.493333pt;}
.y55{bottom:692.253333pt;}
.y12e{bottom:694.653333pt;}
.ya6{bottom:705.213333pt;}
.y1a{bottom:705.853333pt;}
.y7b{bottom:707.133333pt;}
.y54{bottom:709.053333pt;}
.y12d{bottom:711.453333pt;}
.yd4{bottom:714.493333pt;}
.y19{bottom:721.053333pt;}
.y7a{bottom:722.493333pt;}
.y53{bottom:726.013333pt;}
.y12c{bottom:728.413333pt;}
.ya5{bottom:730.173333pt;}
.y18{bottom:736.413333pt;}
.y52{bottom:742.813333pt;}
.y12b{bottom:745.213333pt;}
.y79{bottom:746.013333pt;}
.y17{bottom:751.773333pt;}
.ya4{bottom:753.693333pt;}
.y78{bottom:759.293333pt;}
.y51{bottom:759.773333pt;}
.y12a{bottom:762.173333pt;}
.y16{bottom:767.133333pt;}
.y50{bottom:776.573333pt;}
.y129{bottom:778.653333pt;}
.y15{bottom:782.493333pt;}
.y4f{bottom:793.373333pt;}
.y128{bottom:795.613333pt;}
.y14{bottom:797.893333pt;}
.y4e{bottom:810.373333pt;}
.y13{bottom:813.093333pt;}
.y4d{bottom:827.173333pt;}
.y12{bottom:829.093333pt;}
.y4c{bottom:844.133333pt;}
.y11{bottom:847.173333pt;}
.y4b{bottom:860.933333pt;}
.y10{bottom:865.573333pt;}
.y4a{bottom:877.733333pt;}
.yf{bottom:884.293333pt;}
.y49{bottom:894.693333pt;}
.ye{bottom:902.693333pt;}
.y48{bottom:911.493333pt;}
.yd{bottom:920.773333pt;}
.y47{bottom:928.453333pt;}
.yc{bottom:939.173333pt;}
.y46{bottom:945.253333pt;}
.yb{bottom:957.573333pt;}
.y45{bottom:962.053333pt;}
.ya{bottom:975.973333pt;}
.y44{bottom:979.013333pt;}
.y9{bottom:994.373333pt;}
.y43{bottom:995.493333pt;}
.y77{bottom:995.813333pt;}
.y4{bottom:1024.160000pt;}
.y42{bottom:1028.160000pt;}
.y1{bottom:1036.800000pt;}
.y41{bottom:1040.800000pt;}
.y40{bottom:1060.160000pt;}
.h6{height:5.025000pt;}
.h11{height:15.186667pt;}
.hc{height:15.360000pt;}
.h5{height:16.960000pt;}
.h1e{height:17.600000pt;}
.h1c{height:26.381250pt;}
.h7{height:31.406250pt;}
.h14{height:33.760000pt;}
.h2{height:37.760000pt;}
.hf{height:45.906667pt;}
.h1b{height:47.109375pt;}
.h15{height:49.622500pt;}
.h4{height:52.134375pt;}
.h10{height:52.478750pt;}
.he{height:52.785000pt;}
.h3{height:53.535000pt;}
.h19{height:55.867500pt;}
.ha{height:57.787500pt;}
.h18{height:57.898125pt;}
.hb{height:59.340000pt;}
.h13{height:60.519362pt;}
.hd{height:61.295000pt;}
.h12{height:61.426667pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.h16{height:69.947500pt;}
.h17{height:71.338125pt;}
.h1a{height:177.600000pt;}
.h1d{height:224.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:1.426667pt;}
.wa{width:65.426667pt;}
.wc{width:65.440000pt;}
.wb{width:65.618667pt;}
.w9{width:74.712000pt;}
.wf{width:93.778667pt;}
.we{width:103.346667pt;}
.wd{width:103.392000pt;}
.w2{width:140.472000pt;}
.w4{width:287.378667pt;}
.w14{width:294.880000pt;}
.w7{width:302.418667pt;}
.w8{width:302.466667pt;}
.w5{width:317.506667pt;}
.w15{width:369.280000pt;}
.w13{width:408.960000pt;}
.w12{width:442.880000pt;}
.w3{width:464.400000pt;}
.w10{width:604.400000pt;}
.w6{width:604.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.192000pt;}
.x4{left:8.626667pt;}
.x2a{left:11.226667pt;}
.x27{left:12.946667pt;}
.x33{left:14.712000pt;}
.x34{left:17.586667pt;}
.x6e{left:19.133333pt;}
.x28{left:21.746667pt;}
.x2c{left:22.880000pt;}
.x29{left:24.466667pt;}
.x35{left:28.346667pt;}
.x32{left:31.866667pt;}
.x30{left:35.986667pt;}
.x25{left:37.266667pt;}
.x4d{left:40.613333pt;}
.x2e{left:41.946667pt;}
.x36{left:47.226667pt;}
.x4e{left:51.813333pt;}
.x4f{left:62.973333pt;}
.x50{left:74.173333pt;}
.x51{left:85.373333pt;}
.x1{left:94.600000pt;}
.x40{left:95.552000pt;}
.x52{left:96.546667pt;}
.xe{left:102.432000pt;}
.xd{left:103.392000pt;}
.xc{left:104.672000pt;}
.x53{left:107.746667pt;}
.x24{left:109.160000pt;}
.x21{left:113.632000pt;}
.x48{left:115.232000pt;}
.x54{left:118.906667pt;}
.x49{left:125.472000pt;}
.x70{left:126.466667pt;}
.x55{left:130.106667pt;}
.x44{left:131.392000pt;}
.x2{left:133.266667pt;}
.x56{left:141.280000pt;}
.x37{left:142.586667pt;}
.x57{left:152.480000pt;}
.xf{left:153.786667pt;}
.x1d{left:157.106667pt;}
.x58{left:163.680000pt;}
.x3c{left:164.986667pt;}
.x4b{left:175.360000pt;}
.x26{left:184.520000pt;}
.x59{left:186.053333pt;}
.x6c{left:189.053333pt;}
.x6d{left:192.320000pt;}
.x5a{left:197.346667pt;}
.x10{left:203.546667pt;}
.x39{left:204.986667pt;}
.x5b{left:208.506667pt;}
.x6f{left:215.360000pt;}
.x5c{left:219.706667pt;}
.x23{left:227.546667pt;}
.x5d{left:230.906667pt;}
.x71{left:232.000000pt;}
.x3{left:235.080000pt;}
.x5e{left:242.080000pt;}
.x18{left:251.226667pt;}
.x5f{left:253.280000pt;}
.x15{left:264.386667pt;}
.x60{left:275.653333pt;}
.x5{left:279.093333pt;}
.x61{left:286.853333pt;}
.x1e{left:288.546667pt;}
.x3b{left:291.426667pt;}
.x1f{left:295.266667pt;}
.x62{left:298.013333pt;}
.x3d{left:302.266667pt;}
.x8{left:303.426667pt;}
.x22{left:305.986667pt;}
.x14{left:308.226667pt;}
.x63{left:309.213333pt;}
.x9{left:310.146667pt;}
.x3f{left:312.386667pt;}
.x2b{left:316.866667pt;}
.x64{left:320.386667pt;}
.x11{left:321.506667pt;}
.x16{left:322.626667pt;}
.x19{left:329.186667pt;}
.x65{left:331.586667pt;}
.x12{left:334.786667pt;}
.x13{left:340.866667pt;}
.x66{left:342.746667pt;}
.x1a{left:349.026667pt;}
.x1b{left:351.586667pt;}
.x67{left:353.946667pt;}
.x17{left:357.986667pt;}
.xa{left:361.826667pt;}
.x42{left:365.506667pt;}
.x1c{left:373.026667pt;}
.x68{left:376.320000pt;}
.x7{left:381.986667pt;}
.x2d{left:382.946667pt;}
.x69{left:387.520000pt;}
.xb{left:397.026667pt;}
.x6b{left:401.920000pt;}
.x4c{left:405.346667pt;}
.x4a{left:406.466667pt;}
.x6a{left:438.306667pt;}
.x41{left:480.893333pt;}
.x2f{left:486.986667pt;}
.x31{left:590.986667pt;}
.x45{left:599.973333pt;}
.x47{left:601.573333pt;}
.x38{left:617.573333pt;}
.x46{left:618.533333pt;}
.x3a{left:623.973333pt;}
.x20{left:626.053333pt;}
.x43{left:662.373333pt;}
.x3e{left:699.013333pt;}
}




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