
    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_4f536ced48256815bc25e9a4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_8e4df6b72ddd8ec18e57574f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_996f48335f6cb0c6abdfa1d8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_e52a26f92187d29216de6b00.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_2c51307af7cd3099bb6a0938.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_e68fb8ba036b4603dafea793.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_0b8ec664fc5cd19c83c3a482.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_df44cfeb1d36637543bbb2df.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_f630f183a128fb3e55986647.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fc29fc9675d82e53a249cde1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.925293;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_58182813ece09de09e65ddc7.woff')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-33.120000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v9{vertical-align:-5.940000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v4{vertical-align:12.240000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.ls13{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.012960px;}
.ls22{letter-spacing:0.017280px;}
.ls23{letter-spacing:0.029280px;}
.ls16{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.197280px;}
.lse{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.666000px;}
.ls14{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.319040px;}
.lsa{letter-spacing:1.332000px;}
.ls8{letter-spacing:1.386000px;}
.ls4{letter-spacing:1.589760px;}
.ls2{letter-spacing:1.590000px;}
.lsc{letter-spacing:2.034000px;}
.ls9{letter-spacing:2.052000px;}
.ls1{letter-spacing:2.053440px;}
.ls3{letter-spacing:2.100000px;}
.lsb{letter-spacing:2.106000px;}
.ls0{letter-spacing:2.106720px;}
.ls1c{letter-spacing:13.491360px;}
.ls1a{letter-spacing:16.559280px;}
.ls20{letter-spacing:17.071200px;}
.ls21{letter-spacing:17.465760px;}
.ls1f{letter-spacing:17.679600px;}
.ls27{letter-spacing:40.986720px;}
.ls17{letter-spacing:46.026720px;}
.ls26{letter-spacing:56.826720px;}
.ls10{letter-spacing:64.026720px;}
.ls1b{letter-spacing:74.892960px;}
.lsf{letter-spacing:91.386720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws7{word-spacing:-39.474000px;}
.ws2{word-spacing:-18.666720px;}
.ws0{word-spacing:-18.665280px;}
.ws1{word-spacing:-17.945280px;}
.ws9{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.605760px;}
.ws6{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.120000px;}
.ws1d{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.160160px;}
.ws11{word-spacing:-13.147200px;}
.wsc{word-spacing:-12.060000px;}
.ws8{word-spacing:-10.440000px;}
.ws1b{word-spacing:-9.737280px;}
.ws1c{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.187200px;}
.wsd{word-spacing:0.000000px;}
.ws14{word-spacing:0.212400px;}
.ws18{word-spacing:0.344160px;}
.ws1a{word-spacing:0.652080px;}
.ws17{word-spacing:4.132080px;}
.ws19{word-spacing:8.713440px;}
.ws16{word-spacing:12.160800px;}
.ws12{word-spacing:12.464640px;}
._12{margin-left:-5.916240px;}
._e{margin-left:-4.325040px;}
._3{margin-left:-3.231600px;}
._2{margin-left:-2.152800px;}
._6{margin-left:-1.013760px;}
._0{width:1.374480px;}
._1{width:3.016800px;}
._d{width:4.302720px;}
._b{width:5.910720px;}
._c{width:6.966720px;}
._9{width:8.086800px;}
._8{width:9.234000px;}
._7{width:10.314000px;}
._a{width:11.772000px;}
._f{width:13.565520px;}
._14{width:16.374240px;}
._15{width:17.405040px;}
._13{width:18.585360px;}
._11{width:19.959840px;}
._10{width:21.245040px;}
._16{width:27.718560px;}
._5{width:43.465440px;}
._4{width:201.060000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:3.240000px;}
.ydb{bottom:11.700000px;}
.ye3{bottom:11.874000px;}
.yd3{bottom:11.880000px;}
.yda{bottom:20.340000px;}
.ye2{bottom:20.514000px;}
.yd4{bottom:20.520000px;}
.y7{bottom:25.560000px;}
.ye0{bottom:29.160000px;}
.ye4{bottom:37.620000px;}
.ydf{bottom:37.800000px;}
.y6{bottom:45.900000px;}
.y139{bottom:89.676000px;}
.y7a{bottom:92.916000px;}
.y107{bottom:96.696000px;}
.y3e{bottom:101.556000px;}
.y164{bottom:101.736000px;}
.y138{bottom:106.956000px;}
.y180{bottom:110.016000px;}
.y79{bottom:110.196000px;}
.y106{bottom:113.976000px;}
.yae{bottom:115.236000px;}
.y3d{bottom:118.836000px;}
.y163{bottom:119.016000px;}
.y196{bottom:119.916000px;}
.y137{bottom:124.236000px;}
.y17f{bottom:127.296000px;}
.y78{bottom:127.476000px;}
.y105{bottom:131.256000px;}
.yad{bottom:132.516000px;}
.y3c{bottom:136.116000px;}
.y162{bottom:136.296000px;}
.y195{bottom:138.456000px;}
.y136{bottom:141.336000px;}
.y17e{bottom:144.576000px;}
.y77{bottom:144.756000px;}
.ye1{bottom:145.296000px;}
.y104{bottom:148.536000px;}
.yac{bottom:149.796000px;}
.y161{bottom:150.330000px;}
.y3b{bottom:153.390000px;}
.y194{bottom:157.170000px;}
.y135{bottom:158.610000px;}
.y76{bottom:161.850000px;}
.y103{bottom:165.810000px;}
.yab{bottom:167.070000px;}
.y3a{bottom:170.670000px;}
.y193{bottom:175.710000px;}
.y134{bottom:175.890000px;}
.y75{bottom:179.130000px;}
.yde{bottom:180.570000px;}
.y102{bottom:182.910000px;}
.yaa{bottom:184.170000px;}
.y39{bottom:187.770000px;}
.y133{bottom:193.170000px;}
.y192{bottom:194.430000px;}
.y74{bottom:196.410000px;}
.y101{bottom:200.190000px;}
.ya9{bottom:201.450000px;}
.y38{bottom:205.050000px;}
.y132{bottom:210.450000px;}
.y191{bottom:212.970000px;}
.y17d{bottom:213.510000px;}
.y73{bottom:213.690000px;}
.y100{bottom:217.470000px;}
.ya8{bottom:218.730000px;}
.y37{bottom:222.330000px;}
.y131{bottom:228.810000px;}
.y17c{bottom:230.790000px;}
.y72{bottom:230.970000px;}
.y190{bottom:231.510000px;}
.ydd{bottom:233.130000px;}
.yff{bottom:234.750000px;}
.ya7{bottom:236.010000px;}
.y36{bottom:239.610000px;}
.y130{bottom:246.990000px;}
.y17b{bottom:248.070000px;}
.y71{bottom:248.250000px;}
.y18f{bottom:250.230000px;}
.yfe{bottom:252.030000px;}
.ya6{bottom:253.290000px;}
.y35{bottom:256.890000px;}
.y70{bottom:265.350000px;}
.ydc{bottom:268.410000px;}
.y18e{bottom:268.770000px;}
.yfd{bottom:270.210000px;}
.ya5{bottom:270.570000px;}
.y34{bottom:274.170000px;}
.y6f{bottom:282.630000px;}
.y18d{bottom:287.490000px;}
.ya4{bottom:287.670000px;}
.yfc{bottom:288.570000px;}
.y33{bottom:291.270000px;}
.y17a{bottom:299.730000px;}
.y6e{bottom:299.910000px;}
.yd9{bottom:303.690000px;}
.ya3{bottom:304.950000px;}
.yfb{bottom:305.850000px;}
.y18c{bottom:306.030000px;}
.y32{bottom:308.550000px;}
.y179{bottom:317.010000px;}
.y6d{bottom:317.190000px;}
.y12f{bottom:318.270000px;}
.ya2{bottom:322.230000px;}
.yfa{bottom:324.210000px;}
.y18b{bottom:324.570000px;}
.y31{bottom:325.830000px;}
.y178{bottom:334.290000px;}
.y6c{bottom:334.470000px;}
.y12e{bottom:336.495000px;}
.yd8{bottom:338.835000px;}
.ya1{bottom:339.555000px;}
.yf9{bottom:342.615000px;}
.y30{bottom:343.155000px;}
.y18a{bottom:343.335000px;}
.y177{bottom:351.615000px;}
.y6b{bottom:351.795000px;}
.y12d{bottom:354.855000px;}
.ya0{bottom:356.835000px;}
.yf8{bottom:359.895000px;}
.y2f{bottom:360.435000px;}
.y189{bottom:361.875000px;}
.y6a{bottom:368.895000px;}
.y12c{bottom:372.135000px;}
.y9f{bottom:373.935000px;}
.yd7{bottom:374.115000px;}
.yf7{bottom:376.995000px;}
.y2e{bottom:377.715000px;}
.y188{bottom:379.155000px;}
.y69{bottom:386.175000px;}
.y9e{bottom:391.215000px;}
.yf6{bottom:394.275000px;}
.y2d{bottom:394.815000px;}
.y187{bottom:396.435000px;}
.y176{bottom:403.275000px;}
.y68{bottom:403.455000px;}
.y9d{bottom:408.495000px;}
.y12b{bottom:408.675000px;}
.yd6{bottom:409.395000px;}
.yf5{bottom:411.555000px;}
.y2c{bottom:412.095000px;}
.y186{bottom:412.995000px;}
.y175{bottom:420.555000px;}
.y67{bottom:420.735000px;}
.yf4{bottom:425.595000px;}
.y9c{bottom:425.775000px;}
.y12a{bottom:425.955000px;}
.y185{bottom:427.575000px;}
.y2b{bottom:429.375000px;}
.y160{bottom:432.615000px;}
.y174{bottom:437.835000px;}
.y66{bottom:438.015000px;}
.y9b{bottom:443.055000px;}
.y129{bottom:443.235000px;}
.yd2{bottom:444.675000px;}
.y2a{bottom:446.655000px;}
.y15f{bottom:449.895000px;}
.y173{bottom:455.115000px;}
.y65{bottom:455.295000px;}
.y9a{bottom:460.335000px;}
.y184{bottom:461.235000px;}
.y128{bottom:461.595000px;}
.y29{bottom:463.935000px;}
.y15e{bottom:467.175000px;}
.y64{bottom:472.395000px;}
.y183{bottom:475.815000px;}
.y99{bottom:477.435000px;}
.y127{bottom:479.955000px;}
.y28{bottom:481.215000px;}
.yd1{bottom:483.195000px;}
.y15d{bottom:484.275000px;}
.y63{bottom:489.675000px;}
.y182{bottom:493.095000px;}
.y98{bottom:494.715000px;}
.y126{bottom:497.055000px;}
.y27{bottom:498.315000px;}
.yd0{bottom:500.295000px;}
.y15c{bottom:501.555000px;}
.y172{bottom:506.775000px;}
.y62{bottom:506.955000px;}
.y181{bottom:509.655000px;}
.y97{bottom:511.995000px;}
.y125{bottom:514.335000px;}
.y26{bottom:515.595000px;}
.ycf{bottom:517.575000px;}
.y15b{bottom:518.835000px;}
.y171{bottom:524.055000px;}
.y61{bottom:524.235000px;}
.y96{bottom:529.275000px;}
.y124{bottom:531.615000px;}
.y25{bottom:532.875000px;}
.yce{bottom:534.855000px;}
.y15a{bottom:536.115000px;}
.y170{bottom:541.335000px;}
.y60{bottom:541.515000px;}
.y95{bottom:546.555000px;}
.y123{bottom:548.895000px;}
.y24{bottom:550.155000px;}
.ycd{bottom:552.135000px;}
.y159{bottom:553.395000px;}
.y16f{bottom:558.615000px;}
.y5f{bottom:558.795000px;}
.y94{bottom:563.835000px;}
.y122{bottom:566.175000px;}
.y23{bottom:567.435000px;}
.yf3{bottom:568.335000px;}
.ycc{bottom:569.415000px;}
.y158{bottom:570.675000px;}
.y5e{bottom:575.895000px;}
.y93{bottom:580.935000px;}
.y121{bottom:583.455000px;}
.y22{bottom:584.715000px;}
.yf2{bottom:585.615000px;}
.ycb{bottom:586.695000px;}
.y157{bottom:587.775000px;}
.y16e{bottom:592.995000px;}
.y5d{bottom:593.175000px;}
.y92{bottom:598.215000px;}
.y120{bottom:600.555000px;}
.y21{bottom:601.635000px;}
.yf1{bottom:602.715000px;}
.yca{bottom:603.825000px;}
.y156{bottom:605.085000px;}
.y16d{bottom:610.305000px;}
.y5c{bottom:610.485000px;}
.y91{bottom:615.525000px;}
.y11f{bottom:618.045000px;}
.y20{bottom:618.945000px;}
.yf0{bottom:620.025000px;}
.yc9{bottom:622.185000px;}
.y155{bottom:622.365000px;}
.y16c{bottom:627.585000px;}
.y5b{bottom:627.765000px;}
.y90{bottom:632.805000px;}
.y11e{bottom:635.505000px;}
.y1f{bottom:636.225000px;}
.yef{bottom:637.305000px;}
.y154{bottom:639.645000px;}
.yc8{bottom:640.545000px;}
.y16b{bottom:644.865000px;}
.y5a{bottom:645.045000px;}
.y8f{bottom:650.085000px;}
.y11d{bottom:652.785000px;}
.y1e{bottom:653.145000px;}
.yee{bottom:654.585000px;}
.y153{bottom:656.925000px;}
.yc7{bottom:658.905000px;}
.y16a{bottom:662.145000px;}
.y59{bottom:662.325000px;}
.y1d{bottom:667.365000px;}
.y11c{bottom:670.065000px;}
.yed{bottom:671.865000px;}
.y152{bottom:674.025000px;}
.yc6{bottom:676.185000px;}
.y1c{bottom:677.265000px;}
.y58{bottom:679.425000px;}
.y8e{bottom:684.465000px;}
.y11b{bottom:687.165000px;}
.yec{bottom:689.145000px;}
.y151{bottom:691.305000px;}
.y1b{bottom:692.745000px;}
.yc5{bottom:693.465000px;}
.y169{bottom:696.525000px;}
.y57{bottom:696.705000px;}
.y8d{bottom:701.745000px;}
.y11a{bottom:705.525000px;}
.yeb{bottom:706.245000px;}
.y1a{bottom:708.405000px;}
.y150{bottom:708.585000px;}
.yc4{bottom:710.565000px;}
.y168{bottom:713.805000px;}
.y56{bottom:713.985000px;}
.y8c{bottom:719.025000px;}
.y19{bottom:723.885000px;}
.yea{bottom:724.605000px;}
.y14f{bottom:725.865000px;}
.yc3{bottom:727.845000px;}
.y167{bottom:731.085000px;}
.y55{bottom:731.265000px;}
.y8b{bottom:736.305000px;}
.y18{bottom:739.365000px;}
.y119{bottom:742.245000px;}
.ye9{bottom:742.965000px;}
.y14e{bottom:743.145000px;}
.yc2{bottom:745.125000px;}
.y166{bottom:748.365000px;}
.y54{bottom:748.545000px;}
.y8a{bottom:753.585000px;}
.y17{bottom:754.845000px;}
.y118{bottom:759.525000px;}
.y14d{bottom:760.425000px;}
.ye8{bottom:761.325000px;}
.yc1{bottom:763.485000px;}
.y165{bottom:765.645000px;}
.y53{bottom:765.825000px;}
.y16{bottom:770.505000px;}
.y89{bottom:770.685000px;}
.y117{bottom:776.625000px;}
.y14c{bottom:777.525000px;}
.ye7{bottom:779.685000px;}
.yc0{bottom:781.845000px;}
.y52{bottom:782.925000px;}
.y15{bottom:785.985000px;}
.y88{bottom:787.965000px;}
.y116{bottom:793.905000px;}
.y14b{bottom:794.805000px;}
.ye6{bottom:797.865000px;}
.ybf{bottom:800.025000px;}
.y51{bottom:800.205000px;}
.y14{bottom:801.465000px;}
.y87{bottom:805.245000px;}
.y115{bottom:811.185000px;}
.y14a{bottom:812.085000px;}
.ye5{bottom:816.225000px;}
.ybe{bottom:817.305000px;}
.y50{bottom:817.485000px;}
.y13{bottom:817.845000px;}
.y86{bottom:822.525000px;}
.y114{bottom:828.465000px;}
.y149{bottom:829.365000px;}
.ybd{bottom:834.585000px;}
.y4f{bottom:834.765000px;}
.y12{bottom:836.565000px;}
.y85{bottom:839.805000px;}
.y148{bottom:846.645000px;}
.y113{bottom:846.825000px;}
.y1a4{bottom:849.885000px;}
.ybc{bottom:851.865000px;}
.y4e{bottom:852.045000px;}
.y11{bottom:854.565000px;}
.y84{bottom:857.085000px;}
.y147{bottom:863.925000px;}
.y112{bottom:865.185000px;}
.y1a3{bottom:868.605000px;}
.ybb{bottom:869.145000px;}
.y4d{bottom:869.325000px;}
.y83{bottom:874.230000px;}
.y10{bottom:878.010000px;}
.y146{bottom:881.070000px;}
.y111{bottom:883.410000px;}
.y4c{bottom:886.470000px;}
.y1a2{bottom:887.190000px;}
.yf{bottom:890.790000px;}
.y82{bottom:891.510000px;}
.y145{bottom:898.350000px;}
.y110{bottom:900.690000px;}
.yba{bottom:903.570000px;}
.y4b{bottom:903.750000px;}
.y1a1{bottom:905.910000px;}
.y81{bottom:908.790000px;}
.ye{bottom:914.190000px;}
.y10f{bottom:914.730000px;}
.y144{bottom:915.630000px;}
.yb9{bottom:920.850000px;}
.y4a{bottom:921.030000px;}
.y1a0{bottom:924.450000px;}
.y10e{bottom:924.810000px;}
.y80{bottom:926.070000px;}
.yd{bottom:932.010000px;}
.y143{bottom:932.910000px;}
.yb8{bottom:938.130000px;}
.y49{bottom:938.310000px;}
.y19f{bottom:942.990000px;}
.y7f{bottom:943.350000px;}
.y142{bottom:950.190000px;}
.y10d{bottom:952.170000px;}
.yc{bottom:954.150000px;}
.yb7{bottom:955.410000px;}
.y48{bottom:955.590000px;}
.y7e{bottom:960.630000px;}
.y19e{bottom:961.710000px;}
.y141{bottom:967.290000px;}
.y10c{bottom:969.450000px;}
.yb6{bottom:972.690000px;}
.y47{bottom:972.870000px;}
.yb{bottom:973.950000px;}
.y7d{bottom:977.730000px;}
.y19d{bottom:980.250000px;}
.y140{bottom:984.570000px;}
.y10b{bottom:986.730000px;}
.yb5{bottom:989.790000px;}
.y46{bottom:989.970000px;}
.y7c{bottom:994.110000px;}
.y19c{bottom:998.970000px;}
.y13f{bottom:999.330000px;}
.y10a{bottom:1003.830000px;}
.ya{bottom:1006.890000px;}
.y7b{bottom:1007.070000px;}
.y45{bottom:1007.250000px;}
.y13e{bottom:1017.330000px;}
.y19b{bottom:1017.510000px;}
.y109{bottom:1022.190000px;}
.yb4{bottom:1024.350000px;}
.y44{bottom:1024.530000px;}
.y13d{bottom:1035.330000px;}
.y19a{bottom:1036.050000px;}
.y108{bottom:1040.550000px;}
.yb3{bottom:1041.630000px;}
.y43{bottom:1041.810000px;}
.y9{bottom:1049.010000px;}
.y13c{bottom:1053.330000px;}
.y199{bottom:1054.770000px;}
.yb2{bottom:1058.910000px;}
.y42{bottom:1059.090000px;}
.y13b{bottom:1071.330000px;}
.y198{bottom:1073.310000px;}
.yb1{bottom:1076.190000px;}
.y41{bottom:1076.370000px;}
.y13a{bottom:1089.330000px;}
.y8{bottom:1090.950000px;}
.y197{bottom:1092.030000px;}
.yb0{bottom:1093.290000px;}
.y40{bottom:1093.470000px;}
.yaf{bottom:1110.570000px;}
.y3f{bottom:1110.750000px;}
.y5{bottom:1140.120000px;}
.y4{bottom:1160.280000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.360000px;}
.h1d{height:17.280000px;}
.h10{height:21.129609px;}
.ha{height:25.154297px;}
.hd{height:29.178984px;}
.hb{height:31.342500px;}
.h1e{height:33.706758px;}
.h14{height:34.380000px;}
.h16{height:34.416000px;}
.h15{height:34.560000px;}
.h8{height:37.731445px;}
.hf{height:38.100586px;}
.h12{height:41.756133px;}
.h11{height:42.164648px;}
.h9{height:42.342891px;}
.h13{height:43.506914px;}
.h3{height:43.681992px;}
.hc{height:44.271563px;}
.h2{height:46.283906px;}
.h5{height:48.774375px;}
.h1f{height:49.255313px;}
.h1c{height:50.364141px;}
.h18{height:51.660000px;}
.h17{height:51.840000px;}
.he{height:52.222500px;}
.h1b{height:52.524141px;}
.h4{height:63.070312px;}
.h6{height:65.884219px;}
.h1a{height:90.684141px;}
.h19{height:96.444141px;}
.h7{height:105.665625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:81.396000px;}
.w8{width:96.336000px;}
.w9{width:100.080000px;}
.w6{width:132.120000px;}
.wa{width:132.696000px;}
.w3{width:134.856000px;}
.w4{width:142.416000px;}
.w5{width:154.290000px;}
.w7{width:207.750000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x6{left:63.899987px;}
.x28{left:78.479987px;}
.xd{left:81.539987px;}
.x13{left:85.139987px;}
.x7{left:87.299987px;}
.x1b{left:90.935987px;}
.x10{left:100.475987px;}
.x8{left:103.355987px;}
.xf{left:104.615987px;}
.xc{left:108.035987px;}
.x11{left:112.535987px;}
.x1a{left:117.935987px;}
.x12{left:139.535987px;}
.x1c{left:144.935987px;}
.xb{left:171.389987px;}
.x1{left:183.449987px;}
.x16{left:200.190000px;}
.x2{left:223.409987px;}
.x24{left:245.550000px;}
.x14{left:300.854987px;}
.x22{left:315.614987px;}
.x21{left:320.654987px;}
.x23{left:325.514987px;}
.x17{left:343.515000px;}
.x3{left:354.314987px;}
.x1f{left:360.254987px;}
.x4{left:364.754987px;}
.x1e{left:369.254987px;}
.xe{left:370.874987px;}
.x9{left:375.194987px;}
.x25{left:443.415000px;}
.xa{left:452.054987px;}
.x20{left:477.644987px;}
.x5{left:494.744987px;}
.x18{left:498.525000px;}
.x27{left:549.824987px;}
.x26{left:576.825000px;}
.x1d{left:613.904987px;}
.x19{left:631.365000px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v9{vertical-align:-5.280000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v4{vertical-align:10.880000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.ls13{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.011520pt;}
.ls22{letter-spacing:0.015360pt;}
.ls23{letter-spacing:0.026027pt;}
.ls16{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.175360pt;}
.lse{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.172480pt;}
.lsa{letter-spacing:1.184000pt;}
.ls8{letter-spacing:1.232000pt;}
.ls4{letter-spacing:1.413120pt;}
.ls2{letter-spacing:1.413333pt;}
.lsc{letter-spacing:1.808000pt;}
.ls9{letter-spacing:1.824000pt;}
.ls1{letter-spacing:1.825280pt;}
.ls3{letter-spacing:1.866667pt;}
.lsb{letter-spacing:1.872000pt;}
.ls0{letter-spacing:1.872640pt;}
.ls1c{letter-spacing:11.992320pt;}
.ls1a{letter-spacing:14.719360pt;}
.ls20{letter-spacing:15.174400pt;}
.ls21{letter-spacing:15.525120pt;}
.ls1f{letter-spacing:15.715200pt;}
.ls27{letter-spacing:36.432640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls26{letter-spacing:50.512640pt;}
.ls10{letter-spacing:56.912640pt;}
.ls1b{letter-spacing:66.571520pt;}
.lsf{letter-spacing:81.232640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws7{word-spacing:-35.088000pt;}
.ws2{word-spacing:-16.592640pt;}
.ws0{word-spacing:-16.591360pt;}
.ws1{word-spacing:-15.951360pt;}
.ws9{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.871787pt;}
.ws6{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.440000pt;}
.ws1d{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.697920pt;}
.ws11{word-spacing:-11.686400pt;}
.wsc{word-spacing:-10.720000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.655360pt;}
.ws1c{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.166400pt;}
.wsd{word-spacing:0.000000pt;}
.ws14{word-spacing:0.188800pt;}
.ws18{word-spacing:0.305920pt;}
.ws1a{word-spacing:0.579627pt;}
.ws17{word-spacing:3.672960pt;}
.ws19{word-spacing:7.745280pt;}
.ws16{word-spacing:10.809600pt;}
.ws12{word-spacing:11.079680pt;}
._12{margin-left:-5.258880pt;}
._e{margin-left:-3.844480pt;}
._3{margin-left:-2.872533pt;}
._2{margin-left:-1.913600pt;}
._6{margin-left:-0.901120pt;}
._0{width:1.221760pt;}
._1{width:2.681600pt;}
._d{width:3.824640pt;}
._b{width:5.253973pt;}
._c{width:6.192640pt;}
._9{width:7.188267pt;}
._8{width:8.208000pt;}
._7{width:9.168000pt;}
._a{width:10.464000pt;}
._f{width:12.058240pt;}
._14{width:14.554880pt;}
._15{width:15.471147pt;}
._13{width:16.520320pt;}
._11{width:17.742080pt;}
._10{width:18.884480pt;}
._16{width:24.638720pt;}
._5{width:38.635947pt;}
._4{width:178.720000pt;}
.fsa{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.880000pt;}
.ydb{bottom:10.400000pt;}
.ye3{bottom:10.554667pt;}
.yd3{bottom:10.560000pt;}
.yda{bottom:18.080000pt;}
.ye2{bottom:18.234667pt;}
.yd4{bottom:18.240000pt;}
.y7{bottom:22.720000pt;}
.ye0{bottom:25.920000pt;}
.ye4{bottom:33.440000pt;}
.ydf{bottom:33.600000pt;}
.y6{bottom:40.800000pt;}
.y139{bottom:79.712000pt;}
.y7a{bottom:82.592000pt;}
.y107{bottom:85.952000pt;}
.y3e{bottom:90.272000pt;}
.y164{bottom:90.432000pt;}
.y138{bottom:95.072000pt;}
.y180{bottom:97.792000pt;}
.y79{bottom:97.952000pt;}
.y106{bottom:101.312000pt;}
.yae{bottom:102.432000pt;}
.y3d{bottom:105.632000pt;}
.y163{bottom:105.792000pt;}
.y196{bottom:106.592000pt;}
.y137{bottom:110.432000pt;}
.y17f{bottom:113.152000pt;}
.y78{bottom:113.312000pt;}
.y105{bottom:116.672000pt;}
.yad{bottom:117.792000pt;}
.y3c{bottom:120.992000pt;}
.y162{bottom:121.152000pt;}
.y195{bottom:123.072000pt;}
.y136{bottom:125.632000pt;}
.y17e{bottom:128.512000pt;}
.y77{bottom:128.672000pt;}
.ye1{bottom:129.152000pt;}
.y104{bottom:132.032000pt;}
.yac{bottom:133.152000pt;}
.y161{bottom:133.626667pt;}
.y3b{bottom:136.346667pt;}
.y194{bottom:139.706667pt;}
.y135{bottom:140.986667pt;}
.y76{bottom:143.866667pt;}
.y103{bottom:147.386667pt;}
.yab{bottom:148.506667pt;}
.y3a{bottom:151.706667pt;}
.y193{bottom:156.186667pt;}
.y134{bottom:156.346667pt;}
.y75{bottom:159.226667pt;}
.yde{bottom:160.506667pt;}
.y102{bottom:162.586667pt;}
.yaa{bottom:163.706667pt;}
.y39{bottom:166.906667pt;}
.y133{bottom:171.706667pt;}
.y192{bottom:172.826667pt;}
.y74{bottom:174.586667pt;}
.y101{bottom:177.946667pt;}
.ya9{bottom:179.066667pt;}
.y38{bottom:182.266667pt;}
.y132{bottom:187.066667pt;}
.y191{bottom:189.306667pt;}
.y17d{bottom:189.786667pt;}
.y73{bottom:189.946667pt;}
.y100{bottom:193.306667pt;}
.ya8{bottom:194.426667pt;}
.y37{bottom:197.626667pt;}
.y131{bottom:203.386667pt;}
.y17c{bottom:205.146667pt;}
.y72{bottom:205.306667pt;}
.y190{bottom:205.786667pt;}
.ydd{bottom:207.226667pt;}
.yff{bottom:208.666667pt;}
.ya7{bottom:209.786667pt;}
.y36{bottom:212.986667pt;}
.y130{bottom:219.546667pt;}
.y17b{bottom:220.506667pt;}
.y71{bottom:220.666667pt;}
.y18f{bottom:222.426667pt;}
.yfe{bottom:224.026667pt;}
.ya6{bottom:225.146667pt;}
.y35{bottom:228.346667pt;}
.y70{bottom:235.866667pt;}
.ydc{bottom:238.586667pt;}
.y18e{bottom:238.906667pt;}
.yfd{bottom:240.186667pt;}
.ya5{bottom:240.506667pt;}
.y34{bottom:243.706667pt;}
.y6f{bottom:251.226667pt;}
.y18d{bottom:255.546667pt;}
.ya4{bottom:255.706667pt;}
.yfc{bottom:256.506667pt;}
.y33{bottom:258.906667pt;}
.y17a{bottom:266.426667pt;}
.y6e{bottom:266.586667pt;}
.yd9{bottom:269.946667pt;}
.ya3{bottom:271.066667pt;}
.yfb{bottom:271.866667pt;}
.y18c{bottom:272.026667pt;}
.y32{bottom:274.266667pt;}
.y179{bottom:281.786667pt;}
.y6d{bottom:281.946667pt;}
.y12f{bottom:282.906667pt;}
.ya2{bottom:286.426667pt;}
.yfa{bottom:288.186667pt;}
.y18b{bottom:288.506667pt;}
.y31{bottom:289.626667pt;}
.y178{bottom:297.146667pt;}
.y6c{bottom:297.306667pt;}
.y12e{bottom:299.106667pt;}
.yd8{bottom:301.186667pt;}
.ya1{bottom:301.826667pt;}
.yf9{bottom:304.546667pt;}
.y30{bottom:305.026667pt;}
.y18a{bottom:305.186667pt;}
.y177{bottom:312.546667pt;}
.y6b{bottom:312.706667pt;}
.y12d{bottom:315.426667pt;}
.ya0{bottom:317.186667pt;}
.yf8{bottom:319.906667pt;}
.y2f{bottom:320.386667pt;}
.y189{bottom:321.666667pt;}
.y6a{bottom:327.906667pt;}
.y12c{bottom:330.786667pt;}
.y9f{bottom:332.386667pt;}
.yd7{bottom:332.546667pt;}
.yf7{bottom:335.106667pt;}
.y2e{bottom:335.746667pt;}
.y188{bottom:337.026667pt;}
.y69{bottom:343.266667pt;}
.y9e{bottom:347.746667pt;}
.yf6{bottom:350.466667pt;}
.y2d{bottom:350.946667pt;}
.y187{bottom:352.386667pt;}
.y176{bottom:358.466667pt;}
.y68{bottom:358.626667pt;}
.y9d{bottom:363.106667pt;}
.y12b{bottom:363.266667pt;}
.yd6{bottom:363.906667pt;}
.yf5{bottom:365.826667pt;}
.y2c{bottom:366.306667pt;}
.y186{bottom:367.106667pt;}
.y175{bottom:373.826667pt;}
.y67{bottom:373.986667pt;}
.yf4{bottom:378.306667pt;}
.y9c{bottom:378.466667pt;}
.y12a{bottom:378.626667pt;}
.y185{bottom:380.066667pt;}
.y2b{bottom:381.666667pt;}
.y160{bottom:384.546667pt;}
.y174{bottom:389.186667pt;}
.y66{bottom:389.346667pt;}
.y9b{bottom:393.826667pt;}
.y129{bottom:393.986667pt;}
.yd2{bottom:395.266667pt;}
.y2a{bottom:397.026667pt;}
.y15f{bottom:399.906667pt;}
.y173{bottom:404.546667pt;}
.y65{bottom:404.706667pt;}
.y9a{bottom:409.186667pt;}
.y184{bottom:409.986667pt;}
.y128{bottom:410.306667pt;}
.y29{bottom:412.386667pt;}
.y15e{bottom:415.266667pt;}
.y64{bottom:419.906667pt;}
.y183{bottom:422.946667pt;}
.y99{bottom:424.386667pt;}
.y127{bottom:426.626667pt;}
.y28{bottom:427.746667pt;}
.yd1{bottom:429.506667pt;}
.y15d{bottom:430.466667pt;}
.y63{bottom:435.266667pt;}
.y182{bottom:438.306667pt;}
.y98{bottom:439.746667pt;}
.y126{bottom:441.826667pt;}
.y27{bottom:442.946667pt;}
.yd0{bottom:444.706667pt;}
.y15c{bottom:445.826667pt;}
.y172{bottom:450.466667pt;}
.y62{bottom:450.626667pt;}
.y181{bottom:453.026667pt;}
.y97{bottom:455.106667pt;}
.y125{bottom:457.186667pt;}
.y26{bottom:458.306667pt;}
.ycf{bottom:460.066667pt;}
.y15b{bottom:461.186667pt;}
.y171{bottom:465.826667pt;}
.y61{bottom:465.986667pt;}
.y96{bottom:470.466667pt;}
.y124{bottom:472.546667pt;}
.y25{bottom:473.666667pt;}
.yce{bottom:475.426667pt;}
.y15a{bottom:476.546667pt;}
.y170{bottom:481.186667pt;}
.y60{bottom:481.346667pt;}
.y95{bottom:485.826667pt;}
.y123{bottom:487.906667pt;}
.y24{bottom:489.026667pt;}
.ycd{bottom:490.786667pt;}
.y159{bottom:491.906667pt;}
.y16f{bottom:496.546667pt;}
.y5f{bottom:496.706667pt;}
.y94{bottom:501.186667pt;}
.y122{bottom:503.266667pt;}
.y23{bottom:504.386667pt;}
.yf3{bottom:505.186667pt;}
.ycc{bottom:506.146667pt;}
.y158{bottom:507.266667pt;}
.y5e{bottom:511.906667pt;}
.y93{bottom:516.386667pt;}
.y121{bottom:518.626667pt;}
.y22{bottom:519.746667pt;}
.yf2{bottom:520.546667pt;}
.ycb{bottom:521.506667pt;}
.y157{bottom:522.466667pt;}
.y16e{bottom:527.106667pt;}
.y5d{bottom:527.266667pt;}
.y92{bottom:531.746667pt;}
.y120{bottom:533.826667pt;}
.y21{bottom:534.786667pt;}
.yf1{bottom:535.746667pt;}
.yca{bottom:536.733333pt;}
.y156{bottom:537.853333pt;}
.y16d{bottom:542.493333pt;}
.y5c{bottom:542.653333pt;}
.y91{bottom:547.133333pt;}
.y11f{bottom:549.373333pt;}
.y20{bottom:550.173333pt;}
.yf0{bottom:551.133333pt;}
.yc9{bottom:553.053333pt;}
.y155{bottom:553.213333pt;}
.y16c{bottom:557.853333pt;}
.y5b{bottom:558.013333pt;}
.y90{bottom:562.493333pt;}
.y11e{bottom:564.893333pt;}
.y1f{bottom:565.533333pt;}
.yef{bottom:566.493333pt;}
.y154{bottom:568.573333pt;}
.yc8{bottom:569.373333pt;}
.y16b{bottom:573.213333pt;}
.y5a{bottom:573.373333pt;}
.y8f{bottom:577.853333pt;}
.y11d{bottom:580.253333pt;}
.y1e{bottom:580.573333pt;}
.yee{bottom:581.853333pt;}
.y153{bottom:583.933333pt;}
.yc7{bottom:585.693333pt;}
.y16a{bottom:588.573333pt;}
.y59{bottom:588.733333pt;}
.y1d{bottom:593.213333pt;}
.y11c{bottom:595.613333pt;}
.yed{bottom:597.213333pt;}
.y152{bottom:599.133333pt;}
.yc6{bottom:601.053333pt;}
.y1c{bottom:602.013333pt;}
.y58{bottom:603.933333pt;}
.y8e{bottom:608.413333pt;}
.y11b{bottom:610.813333pt;}
.yec{bottom:612.573333pt;}
.y151{bottom:614.493333pt;}
.y1b{bottom:615.773333pt;}
.yc5{bottom:616.413333pt;}
.y169{bottom:619.133333pt;}
.y57{bottom:619.293333pt;}
.y8d{bottom:623.773333pt;}
.y11a{bottom:627.133333pt;}
.yeb{bottom:627.773333pt;}
.y1a{bottom:629.693333pt;}
.y150{bottom:629.853333pt;}
.yc4{bottom:631.613333pt;}
.y168{bottom:634.493333pt;}
.y56{bottom:634.653333pt;}
.y8c{bottom:639.133333pt;}
.y19{bottom:643.453333pt;}
.yea{bottom:644.093333pt;}
.y14f{bottom:645.213333pt;}
.yc3{bottom:646.973333pt;}
.y167{bottom:649.853333pt;}
.y55{bottom:650.013333pt;}
.y8b{bottom:654.493333pt;}
.y18{bottom:657.213333pt;}
.y119{bottom:659.773333pt;}
.ye9{bottom:660.413333pt;}
.y14e{bottom:660.573333pt;}
.yc2{bottom:662.333333pt;}
.y166{bottom:665.213333pt;}
.y54{bottom:665.373333pt;}
.y8a{bottom:669.853333pt;}
.y17{bottom:670.973333pt;}
.y118{bottom:675.133333pt;}
.y14d{bottom:675.933333pt;}
.ye8{bottom:676.733333pt;}
.yc1{bottom:678.653333pt;}
.y165{bottom:680.573333pt;}
.y53{bottom:680.733333pt;}
.y16{bottom:684.893333pt;}
.y89{bottom:685.053333pt;}
.y117{bottom:690.333333pt;}
.y14c{bottom:691.133333pt;}
.ye7{bottom:693.053333pt;}
.yc0{bottom:694.973333pt;}
.y52{bottom:695.933333pt;}
.y15{bottom:698.653333pt;}
.y88{bottom:700.413333pt;}
.y116{bottom:705.693333pt;}
.y14b{bottom:706.493333pt;}
.ye6{bottom:709.213333pt;}
.ybf{bottom:711.133333pt;}
.y51{bottom:711.293333pt;}
.y14{bottom:712.413333pt;}
.y87{bottom:715.773333pt;}
.y115{bottom:721.053333pt;}
.y14a{bottom:721.853333pt;}
.ye5{bottom:725.533333pt;}
.ybe{bottom:726.493333pt;}
.y50{bottom:726.653333pt;}
.y13{bottom:726.973333pt;}
.y86{bottom:731.133333pt;}
.y114{bottom:736.413333pt;}
.y149{bottom:737.213333pt;}
.ybd{bottom:741.853333pt;}
.y4f{bottom:742.013333pt;}
.y12{bottom:743.613333pt;}
.y85{bottom:746.493333pt;}
.y148{bottom:752.573333pt;}
.y113{bottom:752.733333pt;}
.y1a4{bottom:755.453333pt;}
.ybc{bottom:757.213333pt;}
.y4e{bottom:757.373333pt;}
.y11{bottom:759.613333pt;}
.y84{bottom:761.853333pt;}
.y147{bottom:767.933333pt;}
.y112{bottom:769.053333pt;}
.y1a3{bottom:772.093333pt;}
.ybb{bottom:772.573333pt;}
.y4d{bottom:772.733333pt;}
.y83{bottom:777.093333pt;}
.y10{bottom:780.453333pt;}
.y146{bottom:783.173333pt;}
.y111{bottom:785.253333pt;}
.y4c{bottom:787.973333pt;}
.y1a2{bottom:788.613333pt;}
.yf{bottom:791.813333pt;}
.y82{bottom:792.453333pt;}
.y145{bottom:798.533333pt;}
.y110{bottom:800.613333pt;}
.yba{bottom:803.173333pt;}
.y4b{bottom:803.333333pt;}
.y1a1{bottom:805.253333pt;}
.y81{bottom:807.813333pt;}
.ye{bottom:812.613333pt;}
.y10f{bottom:813.093333pt;}
.y144{bottom:813.893333pt;}
.yb9{bottom:818.533333pt;}
.y4a{bottom:818.693333pt;}
.y1a0{bottom:821.733333pt;}
.y10e{bottom:822.053333pt;}
.y80{bottom:823.173333pt;}
.yd{bottom:828.453333pt;}
.y143{bottom:829.253333pt;}
.yb8{bottom:833.893333pt;}
.y49{bottom:834.053333pt;}
.y19f{bottom:838.213333pt;}
.y7f{bottom:838.533333pt;}
.y142{bottom:844.613333pt;}
.y10d{bottom:846.373333pt;}
.yc{bottom:848.133333pt;}
.yb7{bottom:849.253333pt;}
.y48{bottom:849.413333pt;}
.y7e{bottom:853.893333pt;}
.y19e{bottom:854.853333pt;}
.y141{bottom:859.813333pt;}
.y10c{bottom:861.733333pt;}
.yb6{bottom:864.613333pt;}
.y47{bottom:864.773333pt;}
.yb{bottom:865.733333pt;}
.y7d{bottom:869.093333pt;}
.y19d{bottom:871.333333pt;}
.y140{bottom:875.173333pt;}
.y10b{bottom:877.093333pt;}
.yb5{bottom:879.813333pt;}
.y46{bottom:879.973333pt;}
.y7c{bottom:883.653333pt;}
.y19c{bottom:887.973333pt;}
.y13f{bottom:888.293333pt;}
.y10a{bottom:892.293333pt;}
.ya{bottom:895.013333pt;}
.y7b{bottom:895.173333pt;}
.y45{bottom:895.333333pt;}
.y13e{bottom:904.293333pt;}
.y19b{bottom:904.453333pt;}
.y109{bottom:908.613333pt;}
.yb4{bottom:910.533333pt;}
.y44{bottom:910.693333pt;}
.y13d{bottom:920.293333pt;}
.y19a{bottom:920.933333pt;}
.y108{bottom:924.933333pt;}
.yb3{bottom:925.893333pt;}
.y43{bottom:926.053333pt;}
.y9{bottom:932.453333pt;}
.y13c{bottom:936.293333pt;}
.y199{bottom:937.573333pt;}
.yb2{bottom:941.253333pt;}
.y42{bottom:941.413333pt;}
.y13b{bottom:952.293333pt;}
.y198{bottom:954.053333pt;}
.yb1{bottom:956.613333pt;}
.y41{bottom:956.773333pt;}
.y13a{bottom:968.293333pt;}
.y8{bottom:969.733333pt;}
.y197{bottom:970.693333pt;}
.yb0{bottom:971.813333pt;}
.y40{bottom:971.973333pt;}
.yaf{bottom:987.173333pt;}
.y3f{bottom:987.333333pt;}
.y5{bottom:1013.440000pt;}
.y4{bottom:1031.360000pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.320000pt;}
.h1d{height:15.360000pt;}
.h10{height:18.781875pt;}
.ha{height:22.359375pt;}
.hd{height:25.936875pt;}
.hb{height:27.860000pt;}
.h1e{height:29.961562pt;}
.h14{height:30.560000pt;}
.h16{height:30.592000pt;}
.h15{height:30.720000pt;}
.h8{height:33.539062pt;}
.hf{height:33.867188pt;}
.h12{height:37.116563pt;}
.h11{height:37.479688pt;}
.h9{height:37.638125pt;}
.h13{height:38.672812pt;}
.h3{height:38.828437pt;}
.hc{height:39.352500pt;}
.h2{height:41.141250pt;}
.h5{height:43.355000pt;}
.h1f{height:43.782500pt;}
.h1c{height:44.768125pt;}
.h18{height:45.920000pt;}
.h17{height:46.080000pt;}
.he{height:46.420000pt;}
.h1b{height:46.688125pt;}
.h4{height:56.062500pt;}
.h6{height:58.563750pt;}
.h1a{height:80.608125pt;}
.h19{height:85.728125pt;}
.h7{height:93.925000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:72.352000pt;}
.w8{width:85.632000pt;}
.w9{width:88.960000pt;}
.w6{width:117.440000pt;}
.wa{width:117.952000pt;}
.w3{width:119.872000pt;}
.w4{width:126.592000pt;}
.w5{width:137.146667pt;}
.w7{width:184.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x6{left:56.799988pt;}
.x28{left:69.759988pt;}
.xd{left:72.479988pt;}
.x13{left:75.679988pt;}
.x7{left:77.599988pt;}
.x1b{left:80.831988pt;}
.x10{left:89.311988pt;}
.x8{left:91.871988pt;}
.xf{left:92.991988pt;}
.xc{left:96.031988pt;}
.x11{left:100.031988pt;}
.x1a{left:104.831988pt;}
.x12{left:124.031988pt;}
.x1c{left:128.831988pt;}
.xb{left:152.346655pt;}
.x1{left:163.066655pt;}
.x16{left:177.946667pt;}
.x2{left:198.586655pt;}
.x24{left:218.266667pt;}
.x14{left:267.426655pt;}
.x22{left:280.546655pt;}
.x21{left:285.026655pt;}
.x23{left:289.346655pt;}
.x17{left:305.346667pt;}
.x3{left:314.946655pt;}
.x1f{left:320.226655pt;}
.x4{left:324.226655pt;}
.x1e{left:328.226655pt;}
.xe{left:329.666655pt;}
.x9{left:333.506655pt;}
.x25{left:394.146667pt;}
.xa{left:401.826655pt;}
.x20{left:424.573322pt;}
.x5{left:439.773322pt;}
.x18{left:443.133333pt;}
.x27{left:488.733322pt;}
.x26{left:512.733333pt;}
.x1d{left:545.693322pt;}
.x19{left:561.213333pt;}
}




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