
    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_cad2d85e61807cd36511d567.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_3cf8dd9765d226e17d586255.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_9c0a78d92db6c4306d70fd5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2a2d26d54a617074224f70cb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea467df0ef5ba9ba07d2c40a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_15b108f54db26145e6451bd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_ae51a1f159229cea0b196a1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_d96da0ce97de5ec732091b1a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_c7ee4599c41cc7fb663bc366.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_57803780593f3802c2d49dd7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_280bccbe562e06b441819502.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_b180c9006613fcdd42decf8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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);}
.m3{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-113.040000px;}
.v5{vertical-align:-97.920000px;}
.v3{vertical-align:-95.760000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.ls2a{letter-spacing:-2.016000px;}
.ls15{letter-spacing:-1.656000px;}
.ls8{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.378600px;}
.ls12{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.207600px;}
.ls22{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.141000px;}
.ls9{letter-spacing:-0.109200px;}
.ls27{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.089280px;}
.ls3{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls1d{letter-spacing:1.080000px;}
.lse{letter-spacing:1.440000px;}
.ls1f{letter-spacing:54.840000px;}
.ls20{letter-spacing:59.321280px;}
.ls10{letter-spacing:87.084000px;}
.ls2{letter-spacing:90.144000px;}
.ls0{letter-spacing:156.204000px;}
.ls1e{letter-spacing:306.120000px;}
.ls18{letter-spacing:306.840000px;}
.ls28{letter-spacing:1083.900000px;}
.ls1{letter-spacing:1467.660000px;}
.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;}
}
.ws21{word-spacing:-72.000000px;}
.ws22{word-spacing:-66.240000px;}
.ws6{word-spacing:-24.300000px;}
.wsc{word-spacing:-21.420000px;}
.ws0{word-spacing:-20.718600px;}
.ws12{word-spacing:-20.700000px;}
.ws11{word-spacing:-20.681400px;}
.wse{word-spacing:-19.440000px;}
.ws13{word-spacing:-18.864000px;}
.ws26{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.504000px;}
.ws27{word-spacing:-18.288000px;}
.ws25{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws28{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws29{word-spacing:-17.928000px;}
.ws24{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws23{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.280000px;}
.ws2a{word-spacing:-17.208000px;}
.wsd{word-spacing:-17.064000px;}
.ws2b{word-spacing:-16.613280px;}
.ws1c{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.344000px;}
.ws20{word-spacing:-16.020000px;}
.ws1b{word-spacing:-15.840000px;}
.ws1f{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.970240px;}
.ws1a{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.861040px;}
.ws2{word-spacing:-14.829240px;}
.ws1{word-spacing:-14.762640px;}
.ws19{word-spacing:-14.580000px;}
.ws18{word-spacing:-13.860000px;}
.ws1e{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.386240px;}
.ws10{word-spacing:-12.060000px;}
.wsa{word-spacing:0.000000px;}
._19{margin-left:-5.312040px;}
._2{margin-left:-3.711960px;}
._1{margin-left:-2.340000px;}
._0{margin-left:-1.094640px;}
._3{width:1.090200px;}
._7{width:2.232000px;}
._8{width:3.291600px;}
._4{width:4.392000px;}
._6{width:5.472000px;}
._9{width:6.840000px;}
._c{width:8.568000px;}
._13{width:9.609360px;}
._10{width:10.636440px;}
._5{width:11.640000px;}
._a{width:13.608000px;}
._b{width:14.940000px;}
._d{width:16.633800px;}
._18{width:17.992200px;}
._e{width:19.308000px;}
._f{width:20.401800px;}
._14{width:21.640800px;}
._11{width:24.120000px;}
._12{width:25.128000px;}
._17{width:26.517360px;}
._16{width:27.770640px;}
._15{width:28.980000px;}
.fc2{color:rgb(0,112,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y100{bottom:4.140000px;}
.y148{bottom:4.485000px;}
.yde{bottom:4.500000px;}
.y137{bottom:4.530000px;}
.ye4{bottom:4.665000px;}
.yd8{bottom:4.680000px;}
.y145{bottom:4.845000px;}
.yda{bottom:4.860000px;}
.y127{bottom:4.875000px;}
.y2{bottom:5.580000px;}
.y5{bottom:5.751000px;}
.ye0{bottom:6.480000px;}
.ydb{bottom:6.840000px;}
.y10c{bottom:20.865000px;}
.y125{bottom:20.880000px;}
.y106{bottom:20.925000px;}
.yff{bottom:21.420000px;}
.y4{bottom:25.011000px;}
.y3{bottom:90.765000px;}
.y7{bottom:114.156000px;}
.y1a9{bottom:157.890000px;}
.y1a8{bottom:175.710000px;}
.ya4{bottom:191.370000px;}
.y169{bottom:192.090000px;}
.y72{bottom:194.610000px;}
.y50{bottom:195.510000px;}
.y14b{bottom:196.050000px;}
.y26{bottom:196.590000px;}
.y17d{bottom:196.770000px;}
.y197{bottom:205.590000px;}
.yb4{bottom:210.270000px;}
.ya3{bottom:212.070000px;}
.y168{bottom:212.790000px;}
.y14a{bottom:212.805000px;}
.y1a7{bottom:213.690000px;}
.y71{bottom:215.130000px;}
.y4f{bottom:216.210000px;}
.y25{bottom:217.110000px;}
.y17c{bottom:227.730000px;}
.y149{bottom:229.725000px;}
.yb3{bottom:230.970000px;}
.y1a6{bottom:232.590000px;}
.ya2{bottom:232.770000px;}
.y167{bottom:233.490000px;}
.y70{bottom:236.010000px;}
.y196{bottom:236.730000px;}
.y4e{bottom:236.910000px;}
.y147{bottom:247.005000px;}
.y1a5{bottom:251.490000px;}
.yb2{bottom:251.670000px;}
.ya1{bottom:253.470000px;}
.y166{bottom:254.190000px;}
.y6f{bottom:256.710000px;}
.y4d{bottom:257.610000px;}
.y17b{bottom:258.870000px;}
.y146{bottom:264.105000px;}
.y195{bottom:267.870000px;}
.y1a4{bottom:270.570000px;}
.yb1{bottom:272.370000px;}
.ya0{bottom:274.170000px;}
.y165{bottom:274.890000px;}
.y6e{bottom:277.410000px;}
.yfc{bottom:278.130000px;}
.y4c{bottom:278.310000px;}
.y24{bottom:279.750000px;}
.y144{bottom:281.385000px;}
.y1a3{bottom:289.470000px;}
.y17a{bottom:290.010000px;}
.yb0{bottom:293.430000px;}
.y9f{bottom:294.870000px;}
.y164{bottom:295.410000px;}
.y6d{bottom:298.110000px;}
.yfb{bottom:298.650000px;}
.y194{bottom:298.830000px;}
.y4b{bottom:299.010000px;}
.y23{bottom:300.630000px;}
.y1a2{bottom:308.595000px;}
.yaf{bottom:315.075000px;}
.y9e{bottom:315.615000px;}
.y143{bottom:315.975000px;}
.y163{bottom:317.595000px;}
.y6c{bottom:318.855000px;}
.y4a{bottom:319.755000px;}
.y179{bottom:321.195000px;}
.y11e{bottom:327.495000px;}
.y193{bottom:330.015000px;}
.yfa{bottom:332.175000px;}
.y142{bottom:333.255000px;}
.yae{bottom:335.775000px;}
.y9d{bottom:336.315000px;}
.y162{bottom:338.295000px;}
.y6b{bottom:339.555000px;}
.y49{bottom:340.455000px;}
.y22{bottom:342.075000px;}
.y1a1{bottom:346.395000px;}
.y11d{bottom:348.195000px;}
.yf9{bottom:349.275000px;}
.y141{bottom:350.355000px;}
.y178{bottom:352.335000px;}
.yad{bottom:356.835000px;}
.y9c{bottom:357.015000px;}
.y161{bottom:358.995000px;}
.y6a{bottom:360.255000px;}
.y192{bottom:360.975000px;}
.y48{bottom:361.155000px;}
.y21{bottom:362.775000px;}
.y1a0{bottom:365.475000px;}
.yf8{bottom:366.555000px;}
.y140{bottom:367.635000px;}
.y11c{bottom:368.895000px;}
.y9b{bottom:377.715000px;}
.yac{bottom:378.795000px;}
.y160{bottom:379.695000px;}
.y69{bottom:380.955000px;}
.y7c{bottom:381.135000px;}
.y47{bottom:381.855000px;}
.y177{bottom:383.295000px;}
.y20{bottom:383.475000px;}
.y19f{bottom:384.375000px;}
.y13f{bottom:384.900000px;}
.yf7{bottom:384.915000px;}
.y11b{bottom:389.595000px;}
.y191{bottom:392.115000px;}
.y9a{bottom:398.415000px;}
.yd2{bottom:400.035000px;}
.yab{bottom:400.395000px;}
.y68{bottom:401.655000px;}
.y7b{bottom:401.835000px;}
.y46{bottom:402.555000px;}
.y19e{bottom:403.455000px;}
.y1f{bottom:404.175000px;}
.y11a{bottom:410.295000px;}
.y176{bottom:414.435000px;}
.y99{bottom:419.115000px;}
.y13e{bottom:419.295000px;}
.yd1{bottom:420.735000px;}
.yaa{bottom:421.095000px;}
.y67{bottom:422.355000px;}
.y7a{bottom:422.535000px;}
.y190{bottom:422.895000px;}
.y45{bottom:423.255000px;}
.y1e{bottom:424.875000px;}
.yf6{bottom:427.935000px;}
.y119{bottom:430.995000px;}
.y13d{bottom:436.575000px;}
.y98{bottom:439.815000px;}
.y19d{bottom:441.255000px;}
.yd0{bottom:441.615000px;}
.ya9{bottom:442.335000px;}
.y66{bottom:443.055000px;}
.y79{bottom:443.235000px;}
.y44{bottom:443.955000px;}
.y175{bottom:445.395000px;}
.y1d{bottom:445.575000px;}
.yf5{bottom:448.815000px;}
.y118{bottom:451.695000px;}
.y13c{bottom:453.675000px;}
.y18f{bottom:453.855000px;}
.y19c{bottom:460.335000px;}
.y97{bottom:460.515000px;}
.ycf{bottom:462.675000px;}
.y65{bottom:463.755000px;}
.y78{bottom:463.935000px;}
.y43{bottom:464.655000px;}
.y1c{bottom:466.275000px;}
.yf4{bottom:469.515000px;}
.y13b{bottom:470.955000px;}
.y117{bottom:472.395000px;}
.y174{bottom:476.535000px;}
.y19b{bottom:479.235000px;}
.y96{bottom:481.215000px;}
.yce{bottom:483.375000px;}
.y64{bottom:484.455000px;}
.y77{bottom:484.635000px;}
.y18e{bottom:484.815000px;}
.y42{bottom:485.355000px;}
.y1b{bottom:486.975000px;}
.y13a{bottom:488.220000px;}
.y139{bottom:488.235000px;}
.yf3{bottom:490.215000px;}
.y116{bottom:493.095000px;}
.y19a{bottom:498.315000px;}
.y95{bottom:501.915000px;}
.ycd{bottom:504.075000px;}
.y63{bottom:505.155000px;}
.y76{bottom:505.335000px;}
.ya8{bottom:505.875000px;}
.y41{bottom:506.055000px;}
.y173{bottom:507.495000px;}
.y1a{bottom:507.675000px;}
.yf2{bottom:510.915000px;}
.y115{bottom:513.795000px;}
.y18d{bottom:515.775000px;}
.y199{bottom:517.215000px;}
.y94{bottom:522.615000px;}
.ycc{bottom:524.595000px;}
.y62{bottom:525.855000px;}
.y75{bottom:526.035000px;}
.y40{bottom:526.575000px;}
.ya7{bottom:526.755000px;}
.y19{bottom:528.375000px;}
.yf1{bottom:531.615000px;}
.y114{bottom:534.495000px;}
.y172{bottom:538.635000px;}
.y138{bottom:539.895000px;}
.y93{bottom:543.315000px;}
.ycb{bottom:545.475000px;}
.y61{bottom:546.735000px;}
.y18c{bottom:547.095000px;}
.y3f{bottom:547.275000px;}
.ya6{bottom:547.455000px;}
.y18{bottom:549.075000px;}
.yf0{bottom:552.315000px;}
.y136{bottom:557.175000px;}
.y92{bottom:564.045000px;}
.yca{bottom:566.205000px;}
.y60{bottom:567.465000px;}
.y3e{bottom:568.005000px;}
.ya5{bottom:568.185000px;}
.y171{bottom:569.625000px;}
.y17{bottom:569.805000px;}
.yef{bottom:573.045000px;}
.y135{bottom:574.305000px;}
.y113{bottom:575.745000px;}
.y18b{bottom:578.265000px;}
.y91{bottom:584.745000px;}
.yc9{bottom:586.905000px;}
.y5f{bottom:588.165000px;}
.y3d{bottom:588.885000px;}
.y16{bottom:590.505000px;}
.y134{bottom:591.585000px;}
.yee{bottom:593.745000px;}
.y170{bottom:600.765000px;}
.y90{bottom:605.445000px;}
.yc8{bottom:607.605000px;}
.y5e{bottom:608.865000px;}
.y198{bottom:609.225000px;}
.y18a{bottom:609.405000px;}
.y3c{bottom:609.585000px;}
.y15{bottom:611.025000px;}
.y112{bottom:611.385000px;}
.yed{bottom:614.445000px;}
.y8f{bottom:626.145000px;}
.y133{bottom:627.240000px;}
.y111{bottom:628.125000px;}
.yc7{bottom:628.305000px;}
.y5d{bottom:629.565000px;}
.y3b{bottom:630.285000px;}
.y15f{bottom:631.005000px;}
.y16f{bottom:631.725000px;}
.y189{bottom:640.365000px;}
.y110{bottom:644.865000px;}
.y8e{bottom:646.845000px;}
.yc6{bottom:649.005000px;}
.y132{bottom:649.725000px;}
.y5c{bottom:650.265000px;}
.y3a{bottom:650.985000px;}
.y15e{bottom:651.885000px;}
.yec{bottom:655.665000px;}
.y10f{bottom:662.160000px;}
.y16e{bottom:662.685000px;}
.y8d{bottom:667.545000px;}
.yc5{bottom:669.705000px;}
.y5b{bottom:670.965000px;}
.y188{bottom:671.505000px;}
.y39{bottom:671.685000px;}
.y15d{bottom:672.585000px;}
.y14{bottom:674.025000px;}
.yeb{bottom:676.365000px;}
.y10e{bottom:679.425000px;}
.y8c{bottom:688.065000px;}
.yc4{bottom:690.405000px;}
.y131{bottom:690.945000px;}
.y5a{bottom:691.665000px;}
.y38{bottom:692.385000px;}
.yea{bottom:692.925000px;}
.y15c{bottom:693.285000px;}
.y16d{bottom:694.005000px;}
.y13{bottom:694.905000px;}
.y10d{bottom:696.525000px;}
.y10b{bottom:696.540000px;}
.y187{bottom:702.465000px;}
.y8b{bottom:708.765000px;}
.ye9{bottom:709.845000px;}
.yc3{bottom:711.105000px;}
.y130{bottom:711.645000px;}
.y59{bottom:712.365000px;}
.y37{bottom:713.085000px;}
.y15b{bottom:713.985000px;}
.y16c{bottom:724.965000px;}
.ye8{bottom:727.125000px;}
.y8a{bottom:729.465000px;}
.y10a{bottom:731.085000px;}
.yc2{bottom:731.805000px;}
.y12f{bottom:732.345000px;}
.y58{bottom:733.065000px;}
.y186{bottom:733.605000px;}
.y36{bottom:733.785000px;}
.y15a{bottom:734.685000px;}
.y12{bottom:736.305000px;}
.ye7{bottom:744.240000px;}
.y109{bottom:748.365000px;}
.y89{bottom:750.165000px;}
.yc1{bottom:752.505000px;}
.y12e{bottom:753.045000px;}
.y57{bottom:753.765000px;}
.y35{bottom:754.485000px;}
.y159{bottom:755.385000px;}
.y16b{bottom:756.105000px;}
.y11{bottom:757.005000px;}
.ye6{bottom:761.505000px;}
.y185{bottom:764.565000px;}
.y108{bottom:765.465000px;}
.y88{bottom:771.045000px;}
.yc0{bottom:773.205000px;}
.y56{bottom:774.465000px;}
.y34{bottom:775.185000px;}
.y158{bottom:776.085000px;}
.y10{bottom:777.345000px;}
.ye5{bottom:778.605000px;}
.y107{bottom:782.745000px;}
.y87{bottom:791.745000px;}
.ybf{bottom:793.905000px;}
.y12d{bottom:794.265000px;}
.y55{bottom:795.165000px;}
.y184{bottom:795.705000px;}
.y33{bottom:795.885000px;}
.ye3{bottom:795.900000px;}
.y157{bottom:796.785000px;}
.yf{bottom:798.585000px;}
.y105{bottom:799.845000px;}
.y86{bottom:812.490000px;}
.y16a{bottom:813.030000px;}
.ye2{bottom:813.210000px;}
.ybe{bottom:814.650000px;}
.y12c{bottom:815.010000px;}
.y74{bottom:815.730000px;}
.y54{bottom:815.910000px;}
.y32{bottom:816.630000px;}
.y156{bottom:817.530000px;}
.y183{bottom:826.710000px;}
.ye1{bottom:830.490000px;}
.y12b{bottom:831.570000px;}
.y85{bottom:833.190000px;}
.y104{bottom:834.450000px;}
.ybd{bottom:835.170000px;}
.y53{bottom:836.610000px;}
.y31{bottom:837.330000px;}
.y155{bottom:838.230000px;}
.ye{bottom:843.270000px;}
.ydf{bottom:847.590000px;}
.y12a{bottom:848.490000px;}
.y103{bottom:851.730000px;}
.y84{bottom:853.890000px;}
.y52{bottom:857.130000px;}
.y182{bottom:857.850000px;}
.y30{bottom:858.030000px;}
.y154{bottom:858.930000px;}
.yd{bottom:863.970000px;}
.ydd{bottom:864.870000px;}
.y129{bottom:865.590000px;}
.y102{bottom:869.010000px;}
.y83{bottom:874.590000px;}
.y73{bottom:878.550000px;}
.y2f{bottom:878.730000px;}
.y153{bottom:879.630000px;}
.ydc{bottom:881.970000px;}
.y128{bottom:882.870000px;}
.yc{bottom:884.670000px;}
.y101{bottom:886.110000px;}
.y181{bottom:888.810000px;}
.y82{bottom:895.290000px;}
.ybc{bottom:898.170000px;}
.yd9{bottom:899.250000px;}
.y2e{bottom:899.430000px;}
.y126{bottom:899.955000px;}
.y124{bottom:899.970000px;}
.y152{bottom:900.330000px;}
.yfe{bottom:903.390000px;}
.yb{bottom:905.370000px;}
.y81{bottom:915.990000px;}
.yd7{bottom:917.610000px;}
.ybb{bottom:918.870000px;}
.y51{bottom:919.950000px;}
.y2d{bottom:920.130000px;}
.y151{bottom:921.030000px;}
.ya{bottom:926.430000px;}
.y123{bottom:934.530000px;}
.y80{bottom:936.690000px;}
.yfd{bottom:939.030000px;}
.yba{bottom:939.570000px;}
.y2c{bottom:940.830000px;}
.y150{bottom:941.730000px;}
.y180{bottom:950.910000px;}
.y122{bottom:951.810000px;}
.y7f{bottom:957.210000px;}
.yb9{bottom:960.270000px;}
.yd6{bottom:960.810000px;}
.y2b{bottom:961.530000px;}
.y14f{bottom:962.430000px;}
.y121{bottom:968.910000px;}
.y9{bottom:978.990000px;}
.yb8{bottom:980.970000px;}
.yd5{bottom:981.510000px;}
.y17f{bottom:982.050000px;}
.y2a{bottom:982.230000px;}
.y14e{bottom:983.130000px;}
.y120{bottom:986.190000px;}
.yb7{bottom:1001.670000px;}
.yd4{bottom:1002.030000px;}
.y29{bottom:1002.930000px;}
.y14d{bottom:1003.830000px;}
.y17e{bottom:1013.010000px;}
.y7e{bottom:1020.750000px;}
.y11f{bottom:1021.830000px;}
.yb6{bottom:1022.370000px;}
.y28{bottom:1023.630000px;}
.y8{bottom:1038.930000px;}
.yd3{bottom:1041.090000px;}
.yb5{bottom:1043.430000px;}
.y27{bottom:1044.150000px;}
.y14c{bottom:1045.230000px;}
.y7d{bottom:1047.390000px;}
.y1{bottom:1097.640000px;}
.y6{bottom:1133.280000px;}
.h1c{height:16.740000px;}
.h1e{height:16.905000px;}
.h15{height:16.920000px;}
.h11{height:17.085000px;}
.h14{height:17.100000px;}
.h20{height:17.130000px;}
.hd{height:17.265000px;}
.h13{height:17.280000px;}
.h12{height:17.301000px;}
.hf{height:17.625000px;}
.h1{height:26.280000px;}
.h21{height:34.375500px;}
.h22{height:34.380000px;}
.h1d{height:34.551000px;}
.h1a{height:34.555500px;}
.h1b{height:34.560000px;}
.h19{height:34.582500px;}
.h18{height:34.905000px;}
.h1f{height:34.920000px;}
.h3{height:39.780000px;}
.h10{height:47.344922px;}
.ha{height:50.273438px;}
.h4{height:50.585625px;}
.h5{height:58.651172px;}
.he{height:60.226875px;}
.h24{height:65.010937px;}
.h17{height:67.837500px;}
.h16{height:69.660000px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h23{height:74.004654px;}
.hb{height:74.704922px;}
.hc{height:82.676953px;}
.h2{height:84.898125px;}
.h6{height:93.983203px;}
.h7{height:96.508125px;}
.h0{height:1188.000000px;}
.wf{width:171.195000px;}
.wa{width:182.355000px;}
.we{width:188.475000px;}
.w3{width:189.915000px;}
.w8{width:198.741000px;}
.w6{width:209.901000px;}
.w5{width:220.515000px;}
.wc{width:220.881000px;}
.w7{width:272.910000px;}
.w4{width:292.890000px;}
.wd{width:293.970000px;}
.w9{width:322.230000px;}
.w1{width:631.890000px;}
.w2{width:685.350000px;}
.wb{width:703.350000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:1.431000px;}
.x15{left:9.171000px;}
.x3d{left:32.250000px;}
.x2f{left:38.331000px;}
.x28{left:43.230000px;}
.x30{left:49.485000px;}
.x19{left:54.525000px;}
.x21{left:65.520000px;}
.x3f{left:68.610000px;}
.x42{left:72.210000px;}
.x41{left:74.190000px;}
.x44{left:77.610000px;}
.x2a{left:79.770000px;}
.x4{left:81.000000px;}
.x2c{left:83.550000px;}
.x17{left:85.500000px;}
.x2e{left:88.770000px;}
.x1b{left:91.110000px;}
.x23{left:92.730000px;}
.x1f{left:94.710000px;}
.x1a{left:96.330000px;}
.x1d{left:100.110000px;}
.x37{left:102.060000px;}
.x3{left:106.605000px;}
.xe{left:108.036000px;}
.x47{left:110.196000px;}
.x45{left:111.276000px;}
.x24{left:112.536000px;}
.x31{left:118.245000px;}
.x26{left:125.820000px;}
.x46{left:127.476000px;}
.x1{left:132.345000px;}
.x12{left:135.036000px;}
.x3b{left:136.980000px;}
.x22{left:138.600000px;}
.x32{left:140.565000px;}
.xf{left:150.510000px;}
.x33{left:151.905000px;}
.x1c{left:154.980000px;}
.x1e{left:158.760000px;}
.x11{left:162.030000px;}
.x10{left:166.530000px;}
.x3a{left:169.590000px;}
.x39{left:173.190000px;}
.x48{left:182.550000px;}
.x29{left:191.910000px;}
.x2b{left:195.510000px;}
.x2d{left:198.930000px;}
.x40{left:203.070000px;}
.x3e{left:206.670000px;}
.x43{left:210.090000px;}
.xc{left:234.750000px;}
.x9{left:241.230000px;}
.x34{left:242.850000px;}
.x35{left:254.010000px;}
.x16{left:297.435000px;}
.x25{left:306.255000px;}
.x20{left:317.415000px;}
.x8{left:322.995000px;}
.x36{left:328.395000px;}
.xa{left:352.155000px;}
.x5{left:359.535000px;}
.xb{left:364.575000px;}
.x7{left:371.055000px;}
.x6{left:400.215000px;}
.xd{left:401.475000px;}
.x18{left:590.340000px;}
.x38{left:622.380000px;}
.x27{left:628.500000px;}
.x3c{left:639.660000px;}
.x13{left:675.330000px;}
.x14{left:687.210000px;}
@media print{
.v1{vertical-align:-100.480000pt;}
.v5{vertical-align:-87.040000pt;}
.v3{vertical-align:-85.120000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.ls2a{letter-spacing:-1.792000pt;}
.ls15{letter-spacing:-1.472000pt;}
.ls8{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.336533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.184533pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.125333pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.079360pt;}
.ls3{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:48.746667pt;}
.ls20{letter-spacing:52.730027pt;}
.ls10{letter-spacing:77.408000pt;}
.ls2{letter-spacing:80.128000pt;}
.ls0{letter-spacing:138.848000pt;}
.ls1e{letter-spacing:272.106667pt;}
.ls18{letter-spacing:272.746667pt;}
.ls28{letter-spacing:963.466667pt;}
.ls1{letter-spacing:1304.586667pt;}
.ws21{word-spacing:-64.000000pt;}
.ws22{word-spacing:-58.880000pt;}
.ws6{word-spacing:-21.600000pt;}
.wsc{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.416533pt;}
.ws12{word-spacing:-18.400000pt;}
.ws11{word-spacing:-18.383467pt;}
.wse{word-spacing:-17.280000pt;}
.ws13{word-spacing:-16.768000pt;}
.ws26{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.448000pt;}
.ws27{word-spacing:-16.256000pt;}
.ws25{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws28{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws29{word-spacing:-15.936000pt;}
.ws24{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws23{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws2a{word-spacing:-15.296000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws2b{word-spacing:-14.767360pt;}
.ws1c{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.528000pt;}
.ws20{word-spacing:-14.240000pt;}
.ws1b{word-spacing:-14.080000pt;}
.ws1f{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.209813pt;}
.ws2{word-spacing:-13.181547pt;}
.ws1{word-spacing:-13.122347pt;}
.ws19{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.320000pt;}
.ws1e{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.898880pt;}
.ws10{word-spacing:-10.720000pt;}
.wsa{word-spacing:0.000000pt;}
._19{margin-left:-4.721813pt;}
._2{margin-left:-3.299520pt;}
._1{margin-left:-2.080000pt;}
._0{margin-left:-0.973013pt;}
._3{width:0.969067pt;}
._7{width:1.984000pt;}
._8{width:2.925867pt;}
._4{width:3.904000pt;}
._6{width:4.864000pt;}
._9{width:6.080000pt;}
._c{width:7.616000pt;}
._13{width:8.541653pt;}
._10{width:9.454613pt;}
._5{width:10.346667pt;}
._a{width:12.096000pt;}
._b{width:13.280000pt;}
._d{width:14.785600pt;}
._18{width:15.993067pt;}
._e{width:17.162667pt;}
._f{width:18.134933pt;}
._14{width:19.236267pt;}
._11{width:21.440000pt;}
._12{width:22.336000pt;}
._17{width:23.570987pt;}
._16{width:24.685013pt;}
._15{width:25.760000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:3.680000pt;}
.y148{bottom:3.986667pt;}
.yde{bottom:4.000000pt;}
.y137{bottom:4.026667pt;}
.ye4{bottom:4.146667pt;}
.yd8{bottom:4.160000pt;}
.y145{bottom:4.306667pt;}
.yda{bottom:4.320000pt;}
.y127{bottom:4.333333pt;}
.y2{bottom:4.960000pt;}
.y5{bottom:5.112000pt;}
.ye0{bottom:5.760000pt;}
.ydb{bottom:6.080000pt;}
.y10c{bottom:18.546667pt;}
.y125{bottom:18.560000pt;}
.y106{bottom:18.600000pt;}
.yff{bottom:19.040000pt;}
.y4{bottom:22.232000pt;}
.y3{bottom:80.680000pt;}
.y7{bottom:101.472000pt;}
.y1a9{bottom:140.346667pt;}
.y1a8{bottom:156.186667pt;}
.ya4{bottom:170.106667pt;}
.y169{bottom:170.746667pt;}
.y72{bottom:172.986667pt;}
.y50{bottom:173.786667pt;}
.y14b{bottom:174.266667pt;}
.y26{bottom:174.746667pt;}
.y17d{bottom:174.906667pt;}
.y197{bottom:182.746667pt;}
.yb4{bottom:186.906667pt;}
.ya3{bottom:188.506667pt;}
.y168{bottom:189.146667pt;}
.y14a{bottom:189.160000pt;}
.y1a7{bottom:189.946667pt;}
.y71{bottom:191.226667pt;}
.y4f{bottom:192.186667pt;}
.y25{bottom:192.986667pt;}
.y17c{bottom:202.426667pt;}
.y149{bottom:204.200000pt;}
.yb3{bottom:205.306667pt;}
.y1a6{bottom:206.746667pt;}
.ya2{bottom:206.906667pt;}
.y167{bottom:207.546667pt;}
.y70{bottom:209.786667pt;}
.y196{bottom:210.426667pt;}
.y4e{bottom:210.586667pt;}
.y147{bottom:219.560000pt;}
.y1a5{bottom:223.546667pt;}
.yb2{bottom:223.706667pt;}
.ya1{bottom:225.306667pt;}
.y166{bottom:225.946667pt;}
.y6f{bottom:228.186667pt;}
.y4d{bottom:228.986667pt;}
.y17b{bottom:230.106667pt;}
.y146{bottom:234.760000pt;}
.y195{bottom:238.106667pt;}
.y1a4{bottom:240.506667pt;}
.yb1{bottom:242.106667pt;}
.ya0{bottom:243.706667pt;}
.y165{bottom:244.346667pt;}
.y6e{bottom:246.586667pt;}
.yfc{bottom:247.226667pt;}
.y4c{bottom:247.386667pt;}
.y24{bottom:248.666667pt;}
.y144{bottom:250.120000pt;}
.y1a3{bottom:257.306667pt;}
.y17a{bottom:257.786667pt;}
.yb0{bottom:260.826667pt;}
.y9f{bottom:262.106667pt;}
.y164{bottom:262.586667pt;}
.y6d{bottom:264.986667pt;}
.yfb{bottom:265.466667pt;}
.y194{bottom:265.626667pt;}
.y4b{bottom:265.786667pt;}
.y23{bottom:267.226667pt;}
.y1a2{bottom:274.306667pt;}
.yaf{bottom:280.066667pt;}
.y9e{bottom:280.546667pt;}
.y143{bottom:280.866667pt;}
.y163{bottom:282.306667pt;}
.y6c{bottom:283.426667pt;}
.y4a{bottom:284.226667pt;}
.y179{bottom:285.506667pt;}
.y11e{bottom:291.106667pt;}
.y193{bottom:293.346667pt;}
.yfa{bottom:295.266667pt;}
.y142{bottom:296.226667pt;}
.yae{bottom:298.466667pt;}
.y9d{bottom:298.946667pt;}
.y162{bottom:300.706667pt;}
.y6b{bottom:301.826667pt;}
.y49{bottom:302.626667pt;}
.y22{bottom:304.066667pt;}
.y1a1{bottom:307.906667pt;}
.y11d{bottom:309.506667pt;}
.yf9{bottom:310.466667pt;}
.y141{bottom:311.426667pt;}
.y178{bottom:313.186667pt;}
.yad{bottom:317.186667pt;}
.y9c{bottom:317.346667pt;}
.y161{bottom:319.106667pt;}
.y6a{bottom:320.226667pt;}
.y192{bottom:320.866667pt;}
.y48{bottom:321.026667pt;}
.y21{bottom:322.466667pt;}
.y1a0{bottom:324.866667pt;}
.yf8{bottom:325.826667pt;}
.y140{bottom:326.786667pt;}
.y11c{bottom:327.906667pt;}
.y9b{bottom:335.746667pt;}
.yac{bottom:336.706667pt;}
.y160{bottom:337.506667pt;}
.y69{bottom:338.626667pt;}
.y7c{bottom:338.786667pt;}
.y47{bottom:339.426667pt;}
.y177{bottom:340.706667pt;}
.y20{bottom:340.866667pt;}
.y19f{bottom:341.666667pt;}
.y13f{bottom:342.133333pt;}
.yf7{bottom:342.146667pt;}
.y11b{bottom:346.306667pt;}
.y191{bottom:348.546667pt;}
.y9a{bottom:354.146667pt;}
.yd2{bottom:355.586667pt;}
.yab{bottom:355.906667pt;}
.y68{bottom:357.026667pt;}
.y7b{bottom:357.186667pt;}
.y46{bottom:357.826667pt;}
.y19e{bottom:358.626667pt;}
.y1f{bottom:359.266667pt;}
.y11a{bottom:364.706667pt;}
.y176{bottom:368.386667pt;}
.y99{bottom:372.546667pt;}
.y13e{bottom:372.706667pt;}
.yd1{bottom:373.986667pt;}
.yaa{bottom:374.306667pt;}
.y67{bottom:375.426667pt;}
.y7a{bottom:375.586667pt;}
.y190{bottom:375.906667pt;}
.y45{bottom:376.226667pt;}
.y1e{bottom:377.666667pt;}
.yf6{bottom:380.386667pt;}
.y119{bottom:383.106667pt;}
.y13d{bottom:388.066667pt;}
.y98{bottom:390.946667pt;}
.y19d{bottom:392.226667pt;}
.yd0{bottom:392.546667pt;}
.ya9{bottom:393.186667pt;}
.y66{bottom:393.826667pt;}
.y79{bottom:393.986667pt;}
.y44{bottom:394.626667pt;}
.y175{bottom:395.906667pt;}
.y1d{bottom:396.066667pt;}
.yf5{bottom:398.946667pt;}
.y118{bottom:401.506667pt;}
.y13c{bottom:403.266667pt;}
.y18f{bottom:403.426667pt;}
.y19c{bottom:409.186667pt;}
.y97{bottom:409.346667pt;}
.ycf{bottom:411.266667pt;}
.y65{bottom:412.226667pt;}
.y78{bottom:412.386667pt;}
.y43{bottom:413.026667pt;}
.y1c{bottom:414.466667pt;}
.yf4{bottom:417.346667pt;}
.y13b{bottom:418.626667pt;}
.y117{bottom:419.906667pt;}
.y174{bottom:423.586667pt;}
.y19b{bottom:425.986667pt;}
.y96{bottom:427.746667pt;}
.yce{bottom:429.666667pt;}
.y64{bottom:430.626667pt;}
.y77{bottom:430.786667pt;}
.y18e{bottom:430.946667pt;}
.y42{bottom:431.426667pt;}
.y1b{bottom:432.866667pt;}
.y13a{bottom:433.973333pt;}
.y139{bottom:433.986667pt;}
.yf3{bottom:435.746667pt;}
.y116{bottom:438.306667pt;}
.y19a{bottom:442.946667pt;}
.y95{bottom:446.146667pt;}
.ycd{bottom:448.066667pt;}
.y63{bottom:449.026667pt;}
.y76{bottom:449.186667pt;}
.ya8{bottom:449.666667pt;}
.y41{bottom:449.826667pt;}
.y173{bottom:451.106667pt;}
.y1a{bottom:451.266667pt;}
.yf2{bottom:454.146667pt;}
.y115{bottom:456.706667pt;}
.y18d{bottom:458.466667pt;}
.y199{bottom:459.746667pt;}
.y94{bottom:464.546667pt;}
.ycc{bottom:466.306667pt;}
.y62{bottom:467.426667pt;}
.y75{bottom:467.586667pt;}
.y40{bottom:468.066667pt;}
.ya7{bottom:468.226667pt;}
.y19{bottom:469.666667pt;}
.yf1{bottom:472.546667pt;}
.y114{bottom:475.106667pt;}
.y172{bottom:478.786667pt;}
.y138{bottom:479.906667pt;}
.y93{bottom:482.946667pt;}
.ycb{bottom:484.866667pt;}
.y61{bottom:485.986667pt;}
.y18c{bottom:486.306667pt;}
.y3f{bottom:486.466667pt;}
.ya6{bottom:486.626667pt;}
.y18{bottom:488.066667pt;}
.yf0{bottom:490.946667pt;}
.y136{bottom:495.266667pt;}
.y92{bottom:501.373333pt;}
.yca{bottom:503.293333pt;}
.y60{bottom:504.413333pt;}
.y3e{bottom:504.893333pt;}
.ya5{bottom:505.053333pt;}
.y171{bottom:506.333333pt;}
.y17{bottom:506.493333pt;}
.yef{bottom:509.373333pt;}
.y135{bottom:510.493333pt;}
.y113{bottom:511.773333pt;}
.y18b{bottom:514.013333pt;}
.y91{bottom:519.773333pt;}
.yc9{bottom:521.693333pt;}
.y5f{bottom:522.813333pt;}
.y3d{bottom:523.453333pt;}
.y16{bottom:524.893333pt;}
.y134{bottom:525.853333pt;}
.yee{bottom:527.773333pt;}
.y170{bottom:534.013333pt;}
.y90{bottom:538.173333pt;}
.yc8{bottom:540.093333pt;}
.y5e{bottom:541.213333pt;}
.y198{bottom:541.533333pt;}
.y18a{bottom:541.693333pt;}
.y3c{bottom:541.853333pt;}
.y15{bottom:543.133333pt;}
.y112{bottom:543.453333pt;}
.yed{bottom:546.173333pt;}
.y8f{bottom:556.573333pt;}
.y133{bottom:557.546667pt;}
.y111{bottom:558.333333pt;}
.yc7{bottom:558.493333pt;}
.y5d{bottom:559.613333pt;}
.y3b{bottom:560.253333pt;}
.y15f{bottom:560.893333pt;}
.y16f{bottom:561.533333pt;}
.y189{bottom:569.213333pt;}
.y110{bottom:573.213333pt;}
.y8e{bottom:574.973333pt;}
.yc6{bottom:576.893333pt;}
.y132{bottom:577.533333pt;}
.y5c{bottom:578.013333pt;}
.y3a{bottom:578.653333pt;}
.y15e{bottom:579.453333pt;}
.yec{bottom:582.813333pt;}
.y10f{bottom:588.586667pt;}
.y16e{bottom:589.053333pt;}
.y8d{bottom:593.373333pt;}
.yc5{bottom:595.293333pt;}
.y5b{bottom:596.413333pt;}
.y188{bottom:596.893333pt;}
.y39{bottom:597.053333pt;}
.y15d{bottom:597.853333pt;}
.y14{bottom:599.133333pt;}
.yeb{bottom:601.213333pt;}
.y10e{bottom:603.933333pt;}
.y8c{bottom:611.613333pt;}
.yc4{bottom:613.693333pt;}
.y131{bottom:614.173333pt;}
.y5a{bottom:614.813333pt;}
.y38{bottom:615.453333pt;}
.yea{bottom:615.933333pt;}
.y15c{bottom:616.253333pt;}
.y16d{bottom:616.893333pt;}
.y13{bottom:617.693333pt;}
.y10d{bottom:619.133333pt;}
.y10b{bottom:619.146667pt;}
.y187{bottom:624.413333pt;}
.y8b{bottom:630.013333pt;}
.ye9{bottom:630.973333pt;}
.yc3{bottom:632.093333pt;}
.y130{bottom:632.573333pt;}
.y59{bottom:633.213333pt;}
.y37{bottom:633.853333pt;}
.y15b{bottom:634.653333pt;}
.y16c{bottom:644.413333pt;}
.ye8{bottom:646.333333pt;}
.y8a{bottom:648.413333pt;}
.y10a{bottom:649.853333pt;}
.yc2{bottom:650.493333pt;}
.y12f{bottom:650.973333pt;}
.y58{bottom:651.613333pt;}
.y186{bottom:652.093333pt;}
.y36{bottom:652.253333pt;}
.y15a{bottom:653.053333pt;}
.y12{bottom:654.493333pt;}
.ye7{bottom:661.546667pt;}
.y109{bottom:665.213333pt;}
.y89{bottom:666.813333pt;}
.yc1{bottom:668.893333pt;}
.y12e{bottom:669.373333pt;}
.y57{bottom:670.013333pt;}
.y35{bottom:670.653333pt;}
.y159{bottom:671.453333pt;}
.y16b{bottom:672.093333pt;}
.y11{bottom:672.893333pt;}
.ye6{bottom:676.893333pt;}
.y185{bottom:679.613333pt;}
.y108{bottom:680.413333pt;}
.y88{bottom:685.373333pt;}
.yc0{bottom:687.293333pt;}
.y56{bottom:688.413333pt;}
.y34{bottom:689.053333pt;}
.y158{bottom:689.853333pt;}
.y10{bottom:690.973333pt;}
.ye5{bottom:692.093333pt;}
.y107{bottom:695.773333pt;}
.y87{bottom:703.773333pt;}
.ybf{bottom:705.693333pt;}
.y12d{bottom:706.013333pt;}
.y55{bottom:706.813333pt;}
.y184{bottom:707.293333pt;}
.y33{bottom:707.453333pt;}
.ye3{bottom:707.466667pt;}
.y157{bottom:708.253333pt;}
.yf{bottom:709.853333pt;}
.y105{bottom:710.973333pt;}
.y86{bottom:722.213333pt;}
.y16a{bottom:722.693333pt;}
.ye2{bottom:722.853333pt;}
.ybe{bottom:724.133333pt;}
.y12c{bottom:724.453333pt;}
.y74{bottom:725.093333pt;}
.y54{bottom:725.253333pt;}
.y32{bottom:725.893333pt;}
.y156{bottom:726.693333pt;}
.y183{bottom:734.853333pt;}
.ye1{bottom:738.213333pt;}
.y12b{bottom:739.173333pt;}
.y85{bottom:740.613333pt;}
.y104{bottom:741.733333pt;}
.ybd{bottom:742.373333pt;}
.y53{bottom:743.653333pt;}
.y31{bottom:744.293333pt;}
.y155{bottom:745.093333pt;}
.ye{bottom:749.573333pt;}
.ydf{bottom:753.413333pt;}
.y12a{bottom:754.213333pt;}
.y103{bottom:757.093333pt;}
.y84{bottom:759.013333pt;}
.y52{bottom:761.893333pt;}
.y182{bottom:762.533333pt;}
.y30{bottom:762.693333pt;}
.y154{bottom:763.493333pt;}
.yd{bottom:767.973333pt;}
.ydd{bottom:768.773333pt;}
.y129{bottom:769.413333pt;}
.y102{bottom:772.453333pt;}
.y83{bottom:777.413333pt;}
.y73{bottom:780.933333pt;}
.y2f{bottom:781.093333pt;}
.y153{bottom:781.893333pt;}
.ydc{bottom:783.973333pt;}
.y128{bottom:784.773333pt;}
.yc{bottom:786.373333pt;}
.y101{bottom:787.653333pt;}
.y181{bottom:790.053333pt;}
.y82{bottom:795.813333pt;}
.ybc{bottom:798.373333pt;}
.yd9{bottom:799.333333pt;}
.y2e{bottom:799.493333pt;}
.y126{bottom:799.960000pt;}
.y124{bottom:799.973333pt;}
.y152{bottom:800.293333pt;}
.yfe{bottom:803.013333pt;}
.yb{bottom:804.773333pt;}
.y81{bottom:814.213333pt;}
.yd7{bottom:815.653333pt;}
.ybb{bottom:816.773333pt;}
.y51{bottom:817.733333pt;}
.y2d{bottom:817.893333pt;}
.y151{bottom:818.693333pt;}
.ya{bottom:823.493333pt;}
.y123{bottom:830.693333pt;}
.y80{bottom:832.613333pt;}
.yfd{bottom:834.693333pt;}
.yba{bottom:835.173333pt;}
.y2c{bottom:836.293333pt;}
.y150{bottom:837.093333pt;}
.y180{bottom:845.253333pt;}
.y122{bottom:846.053333pt;}
.y7f{bottom:850.853333pt;}
.yb9{bottom:853.573333pt;}
.yd6{bottom:854.053333pt;}
.y2b{bottom:854.693333pt;}
.y14f{bottom:855.493333pt;}
.y121{bottom:861.253333pt;}
.y9{bottom:870.213333pt;}
.yb8{bottom:871.973333pt;}
.yd5{bottom:872.453333pt;}
.y17f{bottom:872.933333pt;}
.y2a{bottom:873.093333pt;}
.y14e{bottom:873.893333pt;}
.y120{bottom:876.613333pt;}
.yb7{bottom:890.373333pt;}
.yd4{bottom:890.693333pt;}
.y29{bottom:891.493333pt;}
.y14d{bottom:892.293333pt;}
.y17e{bottom:900.453333pt;}
.y7e{bottom:907.333333pt;}
.y11f{bottom:908.293333pt;}
.yb6{bottom:908.773333pt;}
.y28{bottom:909.893333pt;}
.y8{bottom:923.493333pt;}
.yd3{bottom:925.413333pt;}
.yb5{bottom:927.493333pt;}
.y27{bottom:928.133333pt;}
.y14c{bottom:929.093333pt;}
.y7d{bottom:931.013333pt;}
.y1{bottom:975.680000pt;}
.y6{bottom:1007.360000pt;}
.h1c{height:14.880000pt;}
.h1e{height:15.026667pt;}
.h15{height:15.040000pt;}
.h11{height:15.186667pt;}
.h14{height:15.200000pt;}
.h20{height:15.226667pt;}
.hd{height:15.346667pt;}
.h13{height:15.360000pt;}
.h12{height:15.378667pt;}
.hf{height:15.666667pt;}
.h1{height:23.360000pt;}
.h21{height:30.556000pt;}
.h22{height:30.560000pt;}
.h1d{height:30.712000pt;}
.h1a{height:30.716000pt;}
.h1b{height:30.720000pt;}
.h19{height:30.740000pt;}
.h18{height:31.026667pt;}
.h1f{height:31.040000pt;}
.h3{height:35.360000pt;}
.h10{height:42.084375pt;}
.ha{height:44.687500pt;}
.h4{height:44.965000pt;}
.h5{height:52.134375pt;}
.he{height:53.535000pt;}
.h24{height:57.787500pt;}
.h17{height:60.300000pt;}
.h16{height:61.920000pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h23{height:65.781915pt;}
.hb{height:66.404375pt;}
.hc{height:73.490625pt;}
.h2{height:75.465000pt;}
.h6{height:83.540625pt;}
.h7{height:85.785000pt;}
.h0{height:1056.000000pt;}
.wf{width:152.173333pt;}
.wa{width:162.093333pt;}
.we{width:167.533333pt;}
.w3{width:168.813333pt;}
.w8{width:176.658667pt;}
.w6{width:186.578667pt;}
.w5{width:196.013333pt;}
.wc{width:196.338667pt;}
.w7{width:242.586667pt;}
.w4{width:260.346667pt;}
.wd{width:261.306667pt;}
.w9{width:286.426667pt;}
.w1{width:561.680000pt;}
.w2{width:609.200000pt;}
.wb{width:625.200000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.272000pt;}
.x15{left:8.152000pt;}
.x3d{left:28.666667pt;}
.x2f{left:34.072000pt;}
.x28{left:38.426667pt;}
.x30{left:43.986667pt;}
.x19{left:48.466667pt;}
.x21{left:58.240000pt;}
.x3f{left:60.986667pt;}
.x42{left:64.186667pt;}
.x41{left:65.946667pt;}
.x44{left:68.986667pt;}
.x2a{left:70.906667pt;}
.x4{left:72.000000pt;}
.x2c{left:74.266667pt;}
.x17{left:76.000000pt;}
.x2e{left:78.906667pt;}
.x1b{left:80.986667pt;}
.x23{left:82.426667pt;}
.x1f{left:84.186667pt;}
.x1a{left:85.626667pt;}
.x1d{left:88.986667pt;}
.x37{left:90.720000pt;}
.x3{left:94.760000pt;}
.xe{left:96.032000pt;}
.x47{left:97.952000pt;}
.x45{left:98.912000pt;}
.x24{left:100.032000pt;}
.x31{left:105.106667pt;}
.x26{left:111.840000pt;}
.x46{left:113.312000pt;}
.x1{left:117.640000pt;}
.x12{left:120.032000pt;}
.x3b{left:121.760000pt;}
.x22{left:123.200000pt;}
.x32{left:124.946667pt;}
.xf{left:133.786667pt;}
.x33{left:135.026667pt;}
.x1c{left:137.760000pt;}
.x1e{left:141.120000pt;}
.x11{left:144.026667pt;}
.x10{left:148.026667pt;}
.x3a{left:150.746667pt;}
.x39{left:153.946667pt;}
.x48{left:162.266667pt;}
.x29{left:170.586667pt;}
.x2b{left:173.786667pt;}
.x2d{left:176.826667pt;}
.x40{left:180.506667pt;}
.x3e{left:183.706667pt;}
.x43{left:186.746667pt;}
.xc{left:208.666667pt;}
.x9{left:214.426667pt;}
.x34{left:215.866667pt;}
.x35{left:225.786667pt;}
.x16{left:264.386667pt;}
.x25{left:272.226667pt;}
.x20{left:282.146667pt;}
.x8{left:287.106667pt;}
.x36{left:291.906667pt;}
.xa{left:313.026667pt;}
.x5{left:319.586667pt;}
.xb{left:324.066667pt;}
.x7{left:329.826667pt;}
.x6{left:355.746667pt;}
.xd{left:356.866667pt;}
.x18{left:524.746667pt;}
.x38{left:553.226667pt;}
.x27{left:558.666667pt;}
.x3c{left:568.586667pt;}
.x13{left:600.293333pt;}
.x14{left:610.853333pt;}
}




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