
    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_90c2843d88e87dee9f81ae5c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_56aad14f36d5238b518988af.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d3bcb037264071f2ad7457a1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f27373ea919ea797c9dbcad.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_09c17500d049259ea2450b04.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6575ed47146de66dd676a3af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_72618e33ec2d28fc3f6b3c1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_c16a91a66cea8fc2f72041c8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-2.520000px;}
.ls18{letter-spacing:-1.800000px;}
.ls12{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.269400px;}
.ls14{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.010080px;}
.ls17{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.045360px;}
.ls21{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.053400px;}
.ls2{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.223800px;}
.lse{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.900000px;}
.ls10{letter-spacing:11.700000px;}
.ls20{letter-spacing:12.420000px;}
.ls1b{letter-spacing:25.866720px;}
.ls1f{letter-spacing:34.109280px;}
.ls1c{letter-spacing:41.130720px;}
.ls1e{letter-spacing:57.869280px;}
.ls1d{letter-spacing:58.013280px;}
.ls1a{letter-spacing:169.380000px;}
.ls15{letter-spacing:201.060000px;}
.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;}
}
.ws1c{word-spacing:-59.760000px;}
.ws4{word-spacing:-36.144000px;}
.ws3{word-spacing:-36.000000px;}
.ws8{word-spacing:-30.060000px;}
.ws0{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993400px;}
.ws1b{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.886720px;}
.wsa{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.716000px;}
.ws6{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.283800px;}
.ws17{word-spacing:-12.212400px;}
.ws16{word-spacing:-12.105360px;}
.ws2{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.836200px;}
.wsc{word-spacing:-11.790600px;}
.ws15{word-spacing:-11.700000px;}
.ws1a{word-spacing:-10.260000px;}
.ws1d{word-spacing:-7.570080px;}
.ws14{word-spacing:0.000000px;}
.wsf{word-spacing:11.893080px;}
.ws7{word-spacing:28.132560px;}
.ws13{word-spacing:28.852080px;}
.wse{word-spacing:28.852320px;}
._2d{margin-left:-121.078319px;}
._4{margin-left:-7.699800px;}
._23{margin-left:-6.673442px;}
._3{margin-left:-4.960200px;}
._1{margin-left:-3.227399px;}
._2{margin-left:-1.399439px;}
._0{width:1.075800px;}
._5{width:2.700000px;}
._6{width:3.846000px;}
._18{width:4.876201px;}
._7{width:5.940000px;}
._11{width:6.948000px;}
._a{width:8.100000px;}
._15{width:9.621599px;}
._1a{width:11.047201px;}
._b{width:12.078000px;}
._10{width:13.267440px;}
._c{width:14.580000px;}
._9{width:15.744000px;}
._8{width:16.992000px;}
._19{width:18.107400px;}
._1c{width:19.481999px;}
._20{width:20.677199px;}
._16{width:21.812400px;}
._17{width:23.665199px;}
._1d{width:24.740401px;}
._13{width:25.781041px;}
._14{width:27.370200px;}
._12{width:29.043599px;}
._3d{width:30.246959px;}
._26{width:31.314120px;}
._21{width:33.346200px;}
._3c{width:34.660680px;}
._1f{width:39.470042px;}
._1e{width:40.803240px;}
._2f{width:51.029040px;}
._1b{width:54.145440px;}
._e{width:61.013399px;}
._d{width:62.238000px;}
._f{width:63.612000px;}
._36{width:68.546280px;}
._3b{width:76.322161px;}
._22{width:78.763740px;}
._27{width:90.297240px;}
._28{width:91.552320px;}
._2a{width:115.086361px;}
._32{width:129.848881px;}
._25{width:138.463800px;}
._24{width:139.957920px;}
._34{width:155.513520px;}
._30{width:176.701201px;}
._38{width:185.962083px;}
._2b{width:201.060000px;}
._29{width:1064.460000px;}
._2c{width:1110.540000px;}
._35{width:1180.380000px;}
._33{width:1189.740000px;}
._37{width:1197.660000px;}
._39{width:1227.900000px;}
._3a{width:1268.940000px;}
._2e{width:1298.460000px;}
._31{width:2133.816000px;}
.fc3{color:rgb(51,51,255);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(33,33,33);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.520000px;}
.y8b{bottom:3.240000px;}
.y8e{bottom:3.420000px;}
.ybe{bottom:3.960000px;}
.yd0{bottom:4.005000px;}
.yc0{bottom:4.140000px;}
.ya4{bottom:10.620000px;}
.yaa{bottom:10.980000px;}
.y4{bottom:11.340000px;}
.y8{bottom:13.860000px;}
.y6{bottom:16.380000px;}
.ya5{bottom:17.820000px;}
.yb6{bottom:18.720000px;}
.y3{bottom:19.260000px;}
.y5{bottom:30.240000px;}
.y198{bottom:81.036000px;}
.y110{bottom:81.216000px;}
.y11e{bottom:85.536000px;}
.y89{bottom:85.716000px;}
.y153{bottom:88.416000px;}
.y73{bottom:92.016000px;}
.y197{bottom:94.896000px;}
.y41{bottom:96.516000px;}
.y10f{bottom:101.016000px;}
.y152{bottom:104.256000px;}
.y11d{bottom:105.336000px;}
.y196{bottom:108.756000px;}
.y88{bottom:108.936000px;}
.y72{bottom:110.016000px;}
.y40{bottom:110.376000px;}
.y151{bottom:120.096000px;}
.y10e{bottom:120.996000px;}
.y195{bottom:122.436000px;}
.y3f{bottom:124.056000px;}
.y11c{bottom:125.136000px;}
.y71{bottom:128.196000px;}
.y87{bottom:132.156000px;}
.y150{bottom:136.116000px;}
.y194{bottom:136.296000px;}
.y10d{bottom:140.796000px;}
.y11b{bottom:144.936000px;}
.y70{bottom:146.376000px;}
.y90{bottom:148.170000px;}
.yf8{bottom:149.256000px;}
.y193{bottom:150.150000px;}
.y3e{bottom:151.770000px;}
.y14f{bottom:151.950000px;}
.y86{bottom:155.550000px;}
.y10c{bottom:160.590000px;}
.y192{bottom:163.830000px;}
.y6f{bottom:164.370000px;}
.y11a{bottom:164.730000px;}
.y3d{bottom:165.450000px;}
.y14e{bottom:167.790000px;}
.yf7{bottom:169.230000px;}
.y191{bottom:177.690000px;}
.y85{bottom:178.770000px;}
.y3c{bottom:180.030000px;}
.y10b{bottom:180.390000px;}
.ye0{bottom:180.930000px;}
.y6e{bottom:182.550000px;}
.y14d{bottom:183.630000px;}
.y119{bottom:184.710000px;}
.y190{bottom:191.550000px;}
.y3b{bottom:196.590000px;}
.y14c{bottom:199.470000px;}
.y10a{bottom:200.190000px;}
.y6d{bottom:200.550000px;}
.ydf{bottom:200.910000px;}
.y84{bottom:201.990000px;}
.y118{bottom:204.510000px;}
.y18f{bottom:205.230000px;}
.y3a{bottom:210.270000px;}
.y14b{bottom:215.310000px;}
.y6c{bottom:218.730000px;}
.y18e{bottom:219.090000px;}
.y83{bottom:219.270000px;}
.y109{bottom:220.170000px;}
.y117{bottom:222.510000px;}
.y39{bottom:224.130000px;}
.y14a{bottom:231.150000px;}
.y18d{bottom:232.950000px;}
.y6b{bottom:236.910000px;}
.y38{bottom:237.990000px;}
.ybb{bottom:239.970000px;}
.y116{bottom:240.690000px;}
.y18c{bottom:246.630000px;}
.y149{bottom:247.170000px;}
.y37{bottom:251.670000px;}
.y6a{bottom:254.910000px;}
.yba{bottom:255.270000px;}
.y115{bottom:258.870000px;}
.y108{bottom:259.770000px;}
.y18b{bottom:260.490000px;}
.y148{bottom:263.010000px;}
.y36{bottom:265.530000px;}
.yb9{bottom:270.570000px;}
.y69{bottom:273.090000px;}
.y18a{bottom:274.350000px;}
.y114{bottom:276.870000px;}
.y147{bottom:278.850000px;}
.y107{bottom:279.570000px;}
.y35{bottom:279.750000px;}
.yb8{bottom:285.690000px;}
.y189{bottom:288.030000px;}
.y68{bottom:291.270000px;}
.y146{bottom:294.690000px;}
.y113{bottom:295.050000px;}
.y34{bottom:295.230000px;}
.y106{bottom:299.370000px;}
.y188{bottom:301.890000px;}
.y67{bottom:309.270000px;}
.y145{bottom:310.530000px;}
.y33{bottom:310.890000px;}
.y112{bottom:314.850000px;}
.yb5{bottom:315.390000px;}
.y187{bottom:315.750000px;}
.y105{bottom:325.650000px;}
.y32{bottom:326.370000px;}
.y66{bottom:327.450000px;}
.y186{bottom:329.430000px;}
.yb7{bottom:330.690000px;}
.y144{bottom:334.110000px;}
.y111{bottom:334.650000px;}
.y185{bottom:343.335000px;}
.y65{bottom:345.495000px;}
.yb4{bottom:346.035000px;}
.yf6{bottom:349.635000px;}
.y184{bottom:357.195000px;}
.y104{bottom:358.095000px;}
.yb3{bottom:361.155000px;}
.y64{bottom:363.675000px;}
.y31{bottom:364.215000px;}
.yf5{bottom:369.615000px;}
.y143{bottom:370.335000px;}
.y183{bottom:370.875000px;}
.yb2{bottom:376.455000px;}
.y103{bottom:378.075000px;}
.y63{bottom:381.855000px;}
.y30{bottom:382.215000px;}
.y182{bottom:384.735000px;}
.y142{bottom:388.335000px;}
.yb1{bottom:391.755000px;}
.y181{bottom:398.595000px;}
.y62{bottom:399.855000px;}
.y2f{bottom:400.395000px;}
.y141{bottom:406.515000px;}
.yb0{bottom:406.875000px;}
.y180{bottom:412.275000px;}
.y61{bottom:418.035000px;}
.y2e{bottom:418.575000px;}
.yaf{bottom:422.175000px;}
.y140{bottom:424.695000px;}
.y17f{bottom:428.655000px;}
.y60{bottom:436.215000px;}
.y2d{bottom:436.575000px;}
.yae{bottom:437.475000px;}
.yde{bottom:441.975000px;}
.y13f{bottom:442.695000px;}
.y17e{bottom:446.655000px;}
.yad{bottom:452.595000px;}
.y2c{bottom:454.755000px;}
.y17d{bottom:460.335000px;}
.y13e{bottom:460.875000px;}
.ydd{bottom:461.955000px;}
.y5f{bottom:462.315000px;}
.yac{bottom:467.895000px;}
.y2b{bottom:472.755000px;}
.y17c{bottom:474.195000px;}
.y13d{bottom:478.875000px;}
.yab{bottom:483.195000px;}
.y17b{bottom:488.055000px;}
.y2a{bottom:490.935000px;}
.y13c{bottom:497.055000px;}
.ya9{bottom:498.315000px;}
.y5e{bottom:498.495000px;}
.y17a{bottom:501.735000px;}
.y29{bottom:509.115000px;}
.ya8{bottom:513.615000px;}
.y13b{bottom:515.235000px;}
.y179{bottom:515.595000px;}
.y5d{bottom:516.675000px;}
.y28{bottom:527.115000px;}
.ya7{bottom:528.915000px;}
.y178{bottom:529.455000px;}
.y13a{bottom:533.235000px;}
.y5c{bottom:534.675000px;}
.y177{bottom:543.135000px;}
.ya6{bottom:544.035000px;}
.y27{bottom:545.295000px;}
.y139{bottom:551.415000px;}
.y5b{bottom:552.855000px;}
.y176{bottom:556.995000px;}
.ya3{bottom:559.335000px;}
.y26{bottom:563.475000px;}
.y102{bottom:564.915000px;}
.yf4{bottom:567.795000px;}
.y138{bottom:569.415000px;}
.y5a{bottom:570.855000px;}
.y25{bottom:581.475000px;}
.y175{bottom:584.535000px;}
.yf3{bottom:585.075000px;}
.y137{bottom:587.595000px;}
.y101{bottom:588.135000px;}
.y59{bottom:589.035000px;}
.y174{bottom:598.395000px;}
.y24{bottom:599.655000px;}
.ya2{bottom:604.365000px;}
.y136{bottom:605.805000px;}
.y58{bottom:607.245000px;}
.yf2{bottom:608.325000px;}
.y100{bottom:611.565000px;}
.y173{bottom:612.285000px;}
.y23{bottom:617.685000px;}
.ya1{bottom:619.485000px;}
.y135{bottom:623.805000px;}
.y57{bottom:625.245000px;}
.y172{bottom:625.965000px;}
.yf1{bottom:631.545000px;}
.ya0{bottom:634.785000px;}
.y22{bottom:635.865000px;}
.y171{bottom:639.825000px;}
.y56{bottom:643.425000px;}
.y9f{bottom:650.085000px;}
.y170{bottom:653.685000px;}
.y21{bottom:654.045000px;}
.yf0{bottom:654.765000px;}
.yff{bottom:658.005000px;}
.y55{bottom:661.605000px;}
.y9e{bottom:665.205000px;}
.y16f{bottom:667.365000px;}
.y20{bottom:676.185000px;}
.yef{bottom:677.985000px;}
.y54{bottom:679.605000px;}
.y9d{bottom:680.505000px;}
.yfe{bottom:681.225000px;}
.y134{bottom:687.885000px;}
.y16e{bottom:695.085000px;}
.y9c{bottom:695.805000px;}
.y53{bottom:697.785000px;}
.yee{bottom:701.205000px;}
.yfd{bottom:704.445000px;}
.y133{bottom:707.865000px;}
.y16d{bottom:708.765000px;}
.y9b{bottom:710.925000px;}
.y52{bottom:715.785000px;}
.y1f{bottom:716.505000px;}
.y16c{bottom:722.625000px;}
.yed{bottom:724.605000px;}
.y9a{bottom:726.225000px;}
.y132{bottom:727.665000px;}
.yfc{bottom:727.845000px;}
.ydc{bottom:732.165000px;}
.y51{bottom:733.965000px;}
.y16b{bottom:736.485000px;}
.y99{bottom:741.525000px;}
.yd6{bottom:745.305000px;}
.y131{bottom:747.465000px;}
.yec{bottom:748.545000px;}
.ydb{bottom:749.445000px;}
.y16a{bottom:750.165000px;}
.y1e{bottom:751.425000px;}
.yfb{bottom:751.785000px;}
.y50{bottom:752.145000px;}
.y98{bottom:756.645000px;}
.y1d{bottom:766.905000px;}
.y130{bottom:767.265000px;}
.yda{bottom:769.425000px;}
.y4f{bottom:770.145000px;}
.y97{bottom:771.945000px;}
.y169{bottom:773.565000px;}
.yeb{bottom:774.465000px;}
.yfa{bottom:777.705000px;}
.yd5{bottom:779.685000px;}
.y12f{bottom:787.065000px;}
.y96{bottom:787.245000px;}
.y4e{bottom:788.325000px;}
.y1c{bottom:788.505000px;}
.yd4{bottom:797.145000px;}
.yea{bottom:797.685000px;}
.yf9{bottom:797.865000px;}
.y95{bottom:802.365000px;}
.y1b{bottom:803.985000px;}
.y4d{bottom:806.325000px;}
.y168{bottom:810.465000px;}
.y12e{bottom:813.345000px;}
.yd3{bottom:814.785000px;}
.y94{bottom:817.665000px;}
.y1a{bottom:819.465000px;}
.ye9{bottom:820.905000px;}
.y4c{bottom:824.505000px;}
.y167{bottom:826.125000px;}
.yd2{bottom:832.245000px;}
.y93{bottom:832.965000px;}
.y19{bottom:834.945000px;}
.y166{bottom:841.965000px;}
.y4b{bottom:842.685000px;}
.ye8{bottom:844.305000px;}
.y92{bottom:848.085000px;}
.yd1{bottom:849.885000px;}
.y18{bottom:850.605000px;}
.y12d{bottom:851.145000px;}
.y165{bottom:859.605000px;}
.y4a{bottom:860.685000px;}
.y91{bottom:863.385000px;}
.y17{bottom:866.085000px;}
.ycf{bottom:867.345000px;}
.ye7{bottom:867.525000px;}
.y12c{bottom:871.170000px;}
.y164{bottom:875.310000px;}
.y8f{bottom:878.730000px;}
.y16{bottom:881.610000px;}
.y49{bottom:882.510000px;}
.yce{bottom:885.030000px;}
.ye6{bottom:890.790000px;}
.y12b{bottom:890.970000px;}
.y163{bottom:891.150000px;}
.y8d{bottom:893.850000px;}
.y15{bottom:897.090000px;}
.ycd{bottom:902.490000px;}
.y162{bottom:908.610000px;}
.y48{bottom:908.790000px;}
.y8c{bottom:909.150000px;}
.y12a{bottom:910.770000px;}
.y14{bottom:912.750000px;}
.ye5{bottom:914.010000px;}
.ycc{bottom:920.130000px;}
.y8a{bottom:924.450000px;}
.y161{bottom:926.070000px;}
.y13{bottom:928.230000px;}
.y129{bottom:930.570000px;}
.ye4{bottom:937.410000px;}
.ycb{bottom:937.590000px;}
.y160{bottom:941.730000px;}
.y12{bottom:943.710000px;}
.y47{bottom:944.970000px;}
.y128{bottom:950.370000px;}
.yca{bottom:955.230000px;}
.y82{bottom:955.950000px;}
.y11{bottom:959.190000px;}
.y15f{bottom:959.370000px;}
.ye3{bottom:961.350000px;}
.y46{bottom:962.970000px;}
.yd9{bottom:964.410000px;}
.y127{bottom:970.350000px;}
.yc9{bottom:972.690000px;}
.y81{bottom:973.950000px;}
.y10{bottom:974.850000px;}
.y15e{bottom:976.650000px;}
.y45{bottom:981.150000px;}
.yd8{bottom:981.690000px;}
.ye2{bottom:987.270000px;}
.yc8{bottom:990.150000px;}
.yf{bottom:990.330000px;}
.y80{bottom:992.130000px;}
.y15d{bottom:992.310000px;}
.y1a4{bottom:993.210000px;}
.y126{bottom:996.450000px;}
.y44{bottom:999.150000px;}
.yd7{bottom:1001.670000px;}
.ye{bottom:1005.810000px;}
.y1a3{bottom:1006.890000px;}
.ye1{bottom:1007.250000px;}
.yc7{bottom:1007.790000px;}
.y15c{bottom:1009.950000px;}
.y7f{bottom:1010.130000px;}
.y43{bottom:1017.330000px;}
.y1a2{bottom:1020.750000px;}
.yd{bottom:1021.290000px;}
.yc6{bottom:1025.250000px;}
.y15b{bottom:1027.230000px;}
.y7e{bottom:1028.310000px;}
.y125{bottom:1034.430000px;}
.y1a1{bottom:1035.330000px;}
.y42{bottom:1035.510000px;}
.yc{bottom:1036.950000px;}
.yc5{bottom:1042.890000px;}
.y7d{bottom:1046.490000px;}
.y1a0{bottom:1052.430000px;}
.y124{bottom:1054.230000px;}
.y15a{bottom:1058.910000px;}
.yc4{bottom:1060.350000px;}
.y7c{bottom:1064.490000px;}
.y19f{bottom:1069.710000px;}
.yb{bottom:1070.970000px;}
.y123{bottom:1074.030000px;}
.y159{bottom:1076.370000px;}
.yc3{bottom:1077.990000px;}
.y7b{bottom:1082.670000px;}
.y19e{bottom:1086.990000px;}
.y122{bottom:1093.830000px;}
.yc2{bottom:1095.450000px;}
.y7a{bottom:1100.850000px;}
.y19d{bottom:1104.270000px;}
.y158{bottom:1109.490000px;}
.ya{bottom:1112.190000px;}
.yc1{bottom:1113.090000px;}
.y121{bottom:1113.630000px;}
.y79{bottom:1118.850000px;}
.y19c{bottom:1121.550000px;}
.y157{bottom:1125.330000px;}
.ybf{bottom:1130.550000px;}
.y120{bottom:1133.610000px;}
.y78{bottom:1137.030000px;}
.y19b{bottom:1138.860000px;}
.y156{bottom:1142.820000px;}
.ybd{bottom:1148.220000px;}
.y11f{bottom:1153.440000px;}
.y9{bottom:1153.620000px;}
.y77{bottom:1155.060000px;}
.y19a{bottom:1155.960000px;}
.y155{bottom:1160.280000px;}
.y199{bottom:1170.000000px;}
.y76{bottom:1173.240000px;}
.ybc{bottom:1174.500000px;}
.y154{bottom:1175.940000px;}
.y75{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y74{bottom:1233.540000px;}
.y1{bottom:1234.800000px;}
.h10{height:14.400000px;}
.h13{height:14.436000px;}
.h11{height:14.580000px;}
.h14{height:14.616000px;}
.h18{height:16.740000px;}
.h1b{height:16.776000px;}
.h1a{height:16.920000px;}
.h19{height:16.956000px;}
.h15{height:28.980000px;}
.h16{height:29.700000px;}
.hd{height:33.683203px;}
.hc{height:34.036523px;}
.hb{height:38.100586px;}
.h5{height:39.760312px;}
.h4{height:41.400000px;}
.h6{height:41.580000px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h22{height:42.924375px;}
.h20{height:43.506914px;}
.h9{height:43.822266px;}
.h21{height:44.265586px;}
.h17{height:45.036000px;}
.h1d{height:46.251562px;}
.hf{height:46.736719px;}
.he{height:49.255313px;}
.h1e{height:50.273438px;}
.h1c{height:50.800781px;}
.h8{height:53.224453px;}
.h1f{height:59.343750px;}
.ha{height:83.956641px;}
.h7{height:100.546875px;}
.h12{height:304.095000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:51.300000px;}
.w5{width:52.056000px;}
.wd{width:52.380000px;}
.w8{width:84.240000px;}
.wc{width:90.936000px;}
.wb{width:99.540000px;}
.w6{width:105.480000px;}
.w9{width:169.410000px;}
.w3{width:189.210000px;}
.w7{width:243.975000px;}
.w2{width:264.855000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:8.280000px;}
.x5{left:10.800000px;}
.x1d{left:12.060000px;}
.x34{left:13.320000px;}
.x3d{left:14.580000px;}
.x33{left:16.560000px;}
.x28{left:17.820000px;}
.x22{left:19.800000px;}
.x20{left:21.240000px;}
.x1f{left:23.076000px;}
.x24{left:24.300000px;}
.x27{left:25.920000px;}
.x38{left:27.000000px;}
.x3a{left:28.080000px;}
.x26{left:29.160000px;}
.x18{left:30.954000px;}
.x39{left:32.220000px;}
.x29{left:33.840000px;}
.x2d{left:35.280000px;}
.x32{left:36.900000px;}
.x25{left:38.880000px;}
.x36{left:41.400000px;}
.x2c{left:42.840000px;}
.x3b{left:44.820000px;}
.x31{left:46.080000px;}
.x2a{left:47.160000px;}
.x2b{left:49.185000px;}
.x3c{left:50.445000px;}
.x2f{left:51.525000px;}
.x2e{left:57.465000px;}
.x21{left:60.885000px;}
.x4{left:70.200000px;}
.x7{left:73.620000px;}
.x30{left:75.960000px;}
.x23{left:77.040000px;}
.x1a{left:79.425000px;}
.xa{left:80.820000px;}
.x5b{left:91.475987px;}
.x4d{left:94.715987px;}
.x4f{left:97.595987px;}
.x5c{left:102.095987px;}
.x3f{left:104.796000px;}
.x3e{left:107.865000px;}
.x35{left:114.165000px;}
.x17{left:123.876000px;}
.x4c{left:149.435987px;}
.x40{left:156.810000px;}
.x5a{left:168.689987px;}
.x55{left:172.289987px;}
.xb{left:178.050000px;}
.x59{left:181.469987px;}
.x52{left:185.789987px;}
.x58{left:191.189987px;}
.x13{left:195.869987px;}
.x57{left:200.549987px;}
.x50{left:206.489987px;}
.x11{left:207.929987px;}
.x4a{left:210.629987px;}
.x4e{left:216.029987px;}
.x19{left:230.070000px;}
.x14{left:252.929987px;}
.x9{left:254.910000px;}
.x41{left:257.070000px;}
.x12{left:263.369987px;}
.x49{left:265.889987px;}
.x8{left:327.495000px;}
.x42{left:348.735000px;}
.x4b{left:425.234987px;}
.x3{left:432.214500px;}
.x62{left:435.674987px;}
.x56{left:437.114987px;}
.x51{left:438.374987px;}
.x54{left:439.634987px;}
.x53{left:443.234987px;}
.x2{left:444.675000px;}
.x10{left:446.474987px;}
.x48{left:450.794987px;}
.xc{left:457.275000px;}
.x5d{left:462.314987px;}
.x44{left:465.374987px;}
.xd{left:467.925000px;}
.x1b{left:474.765000px;}
.x5e{left:489.164987px;}
.x6{left:491.325000px;}
.xe{left:516.345000px;}
.x60{left:526.604987px;}
.x61{left:533.804987px;}
.x1{left:536.685000px;}
.x16{left:548.924987px;}
.x1c{left:559.725000px;}
.x5f{left:565.124987px;}
.xf{left:579.885000px;}
.x47{left:617.504987px;}
.x45{left:623.624987px;}
.x15{left:640.004987px;}
.x1e{left:729.870000px;}
.x43{left:816.629987px;}
.x46{left:821.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-2.240000pt;}
.ls18{letter-spacing:-1.600000pt;}
.ls12{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls14{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.008960pt;}
.ls17{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.040320pt;}
.ls21{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.047467pt;}
.ls2{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.198933pt;}
.lse{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls10{letter-spacing:10.400000pt;}
.ls20{letter-spacing:11.040000pt;}
.ls1b{letter-spacing:22.992640pt;}
.ls1f{letter-spacing:30.319360pt;}
.ls1c{letter-spacing:36.560640pt;}
.ls1e{letter-spacing:51.439360pt;}
.ls1d{letter-spacing:51.567360pt;}
.ls1a{letter-spacing:150.560000pt;}
.ls15{letter-spacing:178.720000pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws4{word-spacing:-32.128000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws8{word-spacing:-26.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327467pt;}
.ws1b{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws17{word-spacing:-10.855467pt;}
.ws16{word-spacing:-10.760320pt;}
.ws2{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.521067pt;}
.wsc{word-spacing:-10.480533pt;}
.ws15{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-9.120000pt;}
.ws1d{word-spacing:-6.728960pt;}
.ws14{word-spacing:0.000000pt;}
.wsf{word-spacing:10.571627pt;}
.ws7{word-spacing:25.006720pt;}
.ws13{word-spacing:25.646293pt;}
.wse{word-spacing:25.646507pt;}
._2d{margin-left:-107.625172pt;}
._4{margin-left:-6.844267pt;}
._23{margin-left:-5.931948pt;}
._3{margin-left:-4.409066pt;}
._1{margin-left:-2.868799pt;}
._2{margin-left:-1.243946pt;}
._0{width:0.956266pt;}
._5{width:2.400000pt;}
._6{width:3.418667pt;}
._18{width:4.334401pt;}
._7{width:5.280000pt;}
._11{width:6.176000pt;}
._a{width:7.200000pt;}
._15{width:8.552532pt;}
._1a{width:9.819734pt;}
._b{width:10.736000pt;}
._10{width:11.793280pt;}
._c{width:12.960000pt;}
._9{width:13.994667pt;}
._8{width:15.104000pt;}
._19{width:16.095466pt;}
._1c{width:17.317332pt;}
._20{width:18.379732pt;}
._16{width:19.388800pt;}
._17{width:21.035732pt;}
._1d{width:21.991468pt;}
._13{width:22.916481pt;}
._14{width:24.329066pt;}
._12{width:25.816532pt;}
._3d{width:26.886186pt;}
._26{width:27.834774pt;}
._21{width:29.641066pt;}
._3c{width:30.809494pt;}
._1f{width:35.084482pt;}
._1e{width:36.269546pt;}
._2f{width:45.359147pt;}
._1b{width:48.129280pt;}
._e{width:54.234132pt;}
._d{width:55.322667pt;}
._f{width:56.544000pt;}
._36{width:60.930026pt;}
._3b{width:67.841921pt;}
._22{width:70.012213pt;}
._27{width:80.264214pt;}
._28{width:81.379840pt;}
._2a{width:102.298988pt;}
._32{width:115.421228pt;}
._25{width:123.078934pt;}
._24{width:124.407040pt;}
._34{width:138.234240pt;}
._30{width:157.067734pt;}
._38{width:165.299629pt;}
._2b{width:178.720000pt;}
._29{width:946.186667pt;}
._2c{width:987.146667pt;}
._35{width:1049.226667pt;}
._33{width:1057.546667pt;}
._37{width:1064.586667pt;}
._39{width:1091.466667pt;}
._3a{width:1127.946667pt;}
._2e{width:1154.186667pt;}
._31{width:1896.725333pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.240000pt;}
.y8b{bottom:2.880000pt;}
.y8e{bottom:3.040000pt;}
.ybe{bottom:3.520000pt;}
.yd0{bottom:3.560000pt;}
.yc0{bottom:3.680000pt;}
.ya4{bottom:9.440000pt;}
.yaa{bottom:9.760000pt;}
.y4{bottom:10.080000pt;}
.y8{bottom:12.320000pt;}
.y6{bottom:14.560000pt;}
.ya5{bottom:15.840000pt;}
.yb6{bottom:16.640000pt;}
.y3{bottom:17.120000pt;}
.y5{bottom:26.880000pt;}
.y198{bottom:72.032000pt;}
.y110{bottom:72.192000pt;}
.y11e{bottom:76.032000pt;}
.y89{bottom:76.192000pt;}
.y153{bottom:78.592000pt;}
.y73{bottom:81.792000pt;}
.y197{bottom:84.352000pt;}
.y41{bottom:85.792000pt;}
.y10f{bottom:89.792000pt;}
.y152{bottom:92.672000pt;}
.y11d{bottom:93.632000pt;}
.y196{bottom:96.672000pt;}
.y88{bottom:96.832000pt;}
.y72{bottom:97.792000pt;}
.y40{bottom:98.112000pt;}
.y151{bottom:106.752000pt;}
.y10e{bottom:107.552000pt;}
.y195{bottom:108.832000pt;}
.y3f{bottom:110.272000pt;}
.y11c{bottom:111.232000pt;}
.y71{bottom:113.952000pt;}
.y87{bottom:117.472000pt;}
.y150{bottom:120.992000pt;}
.y194{bottom:121.152000pt;}
.y10d{bottom:125.152000pt;}
.y11b{bottom:128.832000pt;}
.y70{bottom:130.112000pt;}
.y90{bottom:131.706667pt;}
.yf8{bottom:132.672000pt;}
.y193{bottom:133.466667pt;}
.y3e{bottom:134.906667pt;}
.y14f{bottom:135.066667pt;}
.y86{bottom:138.266667pt;}
.y10c{bottom:142.746667pt;}
.y192{bottom:145.626667pt;}
.y6f{bottom:146.106667pt;}
.y11a{bottom:146.426667pt;}
.y3d{bottom:147.066667pt;}
.y14e{bottom:149.146667pt;}
.yf7{bottom:150.426667pt;}
.y191{bottom:157.946667pt;}
.y85{bottom:158.906667pt;}
.y3c{bottom:160.026667pt;}
.y10b{bottom:160.346667pt;}
.ye0{bottom:160.826667pt;}
.y6e{bottom:162.266667pt;}
.y14d{bottom:163.226667pt;}
.y119{bottom:164.186667pt;}
.y190{bottom:170.266667pt;}
.y3b{bottom:174.746667pt;}
.y14c{bottom:177.306667pt;}
.y10a{bottom:177.946667pt;}
.y6d{bottom:178.266667pt;}
.ydf{bottom:178.586667pt;}
.y84{bottom:179.546667pt;}
.y118{bottom:181.786667pt;}
.y18f{bottom:182.426667pt;}
.y3a{bottom:186.906667pt;}
.y14b{bottom:191.386667pt;}
.y6c{bottom:194.426667pt;}
.y18e{bottom:194.746667pt;}
.y83{bottom:194.906667pt;}
.y109{bottom:195.706667pt;}
.y117{bottom:197.786667pt;}
.y39{bottom:199.226667pt;}
.y14a{bottom:205.466667pt;}
.y18d{bottom:207.066667pt;}
.y6b{bottom:210.586667pt;}
.y38{bottom:211.546667pt;}
.ybb{bottom:213.306667pt;}
.y116{bottom:213.946667pt;}
.y18c{bottom:219.226667pt;}
.y149{bottom:219.706667pt;}
.y37{bottom:223.706667pt;}
.y6a{bottom:226.586667pt;}
.yba{bottom:226.906667pt;}
.y115{bottom:230.106667pt;}
.y108{bottom:230.906667pt;}
.y18b{bottom:231.546667pt;}
.y148{bottom:233.786667pt;}
.y36{bottom:236.026667pt;}
.yb9{bottom:240.506667pt;}
.y69{bottom:242.746667pt;}
.y18a{bottom:243.866667pt;}
.y114{bottom:246.106667pt;}
.y147{bottom:247.866667pt;}
.y107{bottom:248.506667pt;}
.y35{bottom:248.666667pt;}
.yb8{bottom:253.946667pt;}
.y189{bottom:256.026667pt;}
.y68{bottom:258.906667pt;}
.y146{bottom:261.946667pt;}
.y113{bottom:262.266667pt;}
.y34{bottom:262.426667pt;}
.y106{bottom:266.106667pt;}
.y188{bottom:268.346667pt;}
.y67{bottom:274.906667pt;}
.y145{bottom:276.026667pt;}
.y33{bottom:276.346667pt;}
.y112{bottom:279.866667pt;}
.yb5{bottom:280.346667pt;}
.y187{bottom:280.666667pt;}
.y105{bottom:289.466667pt;}
.y32{bottom:290.106667pt;}
.y66{bottom:291.066667pt;}
.y186{bottom:292.826667pt;}
.yb7{bottom:293.946667pt;}
.y144{bottom:296.986667pt;}
.y111{bottom:297.466667pt;}
.y185{bottom:305.186667pt;}
.y65{bottom:307.106667pt;}
.yb4{bottom:307.586667pt;}
.yf6{bottom:310.786667pt;}
.y184{bottom:317.506667pt;}
.y104{bottom:318.306667pt;}
.yb3{bottom:321.026667pt;}
.y64{bottom:323.266667pt;}
.y31{bottom:323.746667pt;}
.yf5{bottom:328.546667pt;}
.y143{bottom:329.186667pt;}
.y183{bottom:329.666667pt;}
.yb2{bottom:334.626667pt;}
.y103{bottom:336.066667pt;}
.y63{bottom:339.426667pt;}
.y30{bottom:339.746667pt;}
.y182{bottom:341.986667pt;}
.y142{bottom:345.186667pt;}
.yb1{bottom:348.226667pt;}
.y181{bottom:354.306667pt;}
.y62{bottom:355.426667pt;}
.y2f{bottom:355.906667pt;}
.y141{bottom:361.346667pt;}
.yb0{bottom:361.666667pt;}
.y180{bottom:366.466667pt;}
.y61{bottom:371.586667pt;}
.y2e{bottom:372.066667pt;}
.yaf{bottom:375.266667pt;}
.y140{bottom:377.506667pt;}
.y17f{bottom:381.026667pt;}
.y60{bottom:387.746667pt;}
.y2d{bottom:388.066667pt;}
.yae{bottom:388.866667pt;}
.yde{bottom:392.866667pt;}
.y13f{bottom:393.506667pt;}
.y17e{bottom:397.026667pt;}
.yad{bottom:402.306667pt;}
.y2c{bottom:404.226667pt;}
.y17d{bottom:409.186667pt;}
.y13e{bottom:409.666667pt;}
.ydd{bottom:410.626667pt;}
.y5f{bottom:410.946667pt;}
.yac{bottom:415.906667pt;}
.y2b{bottom:420.226667pt;}
.y17c{bottom:421.506667pt;}
.y13d{bottom:425.666667pt;}
.yab{bottom:429.506667pt;}
.y17b{bottom:433.826667pt;}
.y2a{bottom:436.386667pt;}
.y13c{bottom:441.826667pt;}
.ya9{bottom:442.946667pt;}
.y5e{bottom:443.106667pt;}
.y17a{bottom:445.986667pt;}
.y29{bottom:452.546667pt;}
.ya8{bottom:456.546667pt;}
.y13b{bottom:457.986667pt;}
.y179{bottom:458.306667pt;}
.y5d{bottom:459.266667pt;}
.y28{bottom:468.546667pt;}
.ya7{bottom:470.146667pt;}
.y178{bottom:470.626667pt;}
.y13a{bottom:473.986667pt;}
.y5c{bottom:475.266667pt;}
.y177{bottom:482.786667pt;}
.ya6{bottom:483.586667pt;}
.y27{bottom:484.706667pt;}
.y139{bottom:490.146667pt;}
.y5b{bottom:491.426667pt;}
.y176{bottom:495.106667pt;}
.ya3{bottom:497.186667pt;}
.y26{bottom:500.866667pt;}
.y102{bottom:502.146667pt;}
.yf4{bottom:504.706667pt;}
.y138{bottom:506.146667pt;}
.y5a{bottom:507.426667pt;}
.y25{bottom:516.866667pt;}
.y175{bottom:519.586667pt;}
.yf3{bottom:520.066667pt;}
.y137{bottom:522.306667pt;}
.y101{bottom:522.786667pt;}
.y59{bottom:523.586667pt;}
.y174{bottom:531.906667pt;}
.y24{bottom:533.026667pt;}
.ya2{bottom:537.213333pt;}
.y136{bottom:538.493333pt;}
.y58{bottom:539.773333pt;}
.yf2{bottom:540.733333pt;}
.y100{bottom:543.613333pt;}
.y173{bottom:544.253333pt;}
.y23{bottom:549.053333pt;}
.ya1{bottom:550.653333pt;}
.y135{bottom:554.493333pt;}
.y57{bottom:555.773333pt;}
.y172{bottom:556.413333pt;}
.yf1{bottom:561.373333pt;}
.ya0{bottom:564.253333pt;}
.y22{bottom:565.213333pt;}
.y171{bottom:568.733333pt;}
.y56{bottom:571.933333pt;}
.y9f{bottom:577.853333pt;}
.y170{bottom:581.053333pt;}
.y21{bottom:581.373333pt;}
.yf0{bottom:582.013333pt;}
.yff{bottom:584.893333pt;}
.y55{bottom:588.093333pt;}
.y9e{bottom:591.293333pt;}
.y16f{bottom:593.213333pt;}
.y20{bottom:601.053333pt;}
.yef{bottom:602.653333pt;}
.y54{bottom:604.093333pt;}
.y9d{bottom:604.893333pt;}
.yfe{bottom:605.533333pt;}
.y134{bottom:611.453333pt;}
.y16e{bottom:617.853333pt;}
.y9c{bottom:618.493333pt;}
.y53{bottom:620.253333pt;}
.yee{bottom:623.293333pt;}
.yfd{bottom:626.173333pt;}
.y133{bottom:629.213333pt;}
.y16d{bottom:630.013333pt;}
.y9b{bottom:631.933333pt;}
.y52{bottom:636.253333pt;}
.y1f{bottom:636.893333pt;}
.y16c{bottom:642.333333pt;}
.yed{bottom:644.093333pt;}
.y9a{bottom:645.533333pt;}
.y132{bottom:646.813333pt;}
.yfc{bottom:646.973333pt;}
.ydc{bottom:650.813333pt;}
.y51{bottom:652.413333pt;}
.y16b{bottom:654.653333pt;}
.y99{bottom:659.133333pt;}
.yd6{bottom:662.493333pt;}
.y131{bottom:664.413333pt;}
.yec{bottom:665.373333pt;}
.ydb{bottom:666.173333pt;}
.y16a{bottom:666.813333pt;}
.y1e{bottom:667.933333pt;}
.yfb{bottom:668.253333pt;}
.y50{bottom:668.573333pt;}
.y98{bottom:672.573333pt;}
.y1d{bottom:681.693333pt;}
.y130{bottom:682.013333pt;}
.yda{bottom:683.933333pt;}
.y4f{bottom:684.573333pt;}
.y97{bottom:686.173333pt;}
.y169{bottom:687.613333pt;}
.yeb{bottom:688.413333pt;}
.yfa{bottom:691.293333pt;}
.yd5{bottom:693.053333pt;}
.y12f{bottom:699.613333pt;}
.y96{bottom:699.773333pt;}
.y4e{bottom:700.733333pt;}
.y1c{bottom:700.893333pt;}
.yd4{bottom:708.573333pt;}
.yea{bottom:709.053333pt;}
.yf9{bottom:709.213333pt;}
.y95{bottom:713.213333pt;}
.y1b{bottom:714.653333pt;}
.y4d{bottom:716.733333pt;}
.y168{bottom:720.413333pt;}
.y12e{bottom:722.973333pt;}
.yd3{bottom:724.253333pt;}
.y94{bottom:726.813333pt;}
.y1a{bottom:728.413333pt;}
.ye9{bottom:729.693333pt;}
.y4c{bottom:732.893333pt;}
.y167{bottom:734.333333pt;}
.yd2{bottom:739.773333pt;}
.y93{bottom:740.413333pt;}
.y19{bottom:742.173333pt;}
.y166{bottom:748.413333pt;}
.y4b{bottom:749.053333pt;}
.ye8{bottom:750.493333pt;}
.y92{bottom:753.853333pt;}
.yd1{bottom:755.453333pt;}
.y18{bottom:756.093333pt;}
.y12d{bottom:756.573333pt;}
.y165{bottom:764.093333pt;}
.y4a{bottom:765.053333pt;}
.y91{bottom:767.453333pt;}
.y17{bottom:769.853333pt;}
.ycf{bottom:770.973333pt;}
.ye7{bottom:771.133333pt;}
.y12c{bottom:774.373333pt;}
.y164{bottom:778.053333pt;}
.y8f{bottom:781.093333pt;}
.y16{bottom:783.653333pt;}
.y49{bottom:784.453333pt;}
.yce{bottom:786.693333pt;}
.ye6{bottom:791.813333pt;}
.y12b{bottom:791.973333pt;}
.y163{bottom:792.133333pt;}
.y8d{bottom:794.533333pt;}
.y15{bottom:797.413333pt;}
.ycd{bottom:802.213333pt;}
.y162{bottom:807.653333pt;}
.y48{bottom:807.813333pt;}
.y8c{bottom:808.133333pt;}
.y12a{bottom:809.573333pt;}
.y14{bottom:811.333333pt;}
.ye5{bottom:812.453333pt;}
.ycc{bottom:817.893333pt;}
.y8a{bottom:821.733333pt;}
.y161{bottom:823.173333pt;}
.y13{bottom:825.093333pt;}
.y129{bottom:827.173333pt;}
.ye4{bottom:833.253333pt;}
.ycb{bottom:833.413333pt;}
.y160{bottom:837.093333pt;}
.y12{bottom:838.853333pt;}
.y47{bottom:839.973333pt;}
.y128{bottom:844.773333pt;}
.yca{bottom:849.093333pt;}
.y82{bottom:849.733333pt;}
.y11{bottom:852.613333pt;}
.y15f{bottom:852.773333pt;}
.ye3{bottom:854.533333pt;}
.y46{bottom:855.973333pt;}
.yd9{bottom:857.253333pt;}
.y127{bottom:862.533333pt;}
.yc9{bottom:864.613333pt;}
.y81{bottom:865.733333pt;}
.y10{bottom:866.533333pt;}
.y15e{bottom:868.133333pt;}
.y45{bottom:872.133333pt;}
.yd8{bottom:872.613333pt;}
.ye2{bottom:877.573333pt;}
.yc8{bottom:880.133333pt;}
.yf{bottom:880.293333pt;}
.y80{bottom:881.893333pt;}
.y15d{bottom:882.053333pt;}
.y1a4{bottom:882.853333pt;}
.y126{bottom:885.733333pt;}
.y44{bottom:888.133333pt;}
.yd7{bottom:890.373333pt;}
.ye{bottom:894.053333pt;}
.y1a3{bottom:895.013333pt;}
.ye1{bottom:895.333333pt;}
.yc7{bottom:895.813333pt;}
.y15c{bottom:897.733333pt;}
.y7f{bottom:897.893333pt;}
.y43{bottom:904.293333pt;}
.y1a2{bottom:907.333333pt;}
.yd{bottom:907.813333pt;}
.yc6{bottom:911.333333pt;}
.y15b{bottom:913.093333pt;}
.y7e{bottom:914.053333pt;}
.y125{bottom:919.493333pt;}
.y1a1{bottom:920.293333pt;}
.y42{bottom:920.453333pt;}
.yc{bottom:921.733333pt;}
.yc5{bottom:927.013333pt;}
.y7d{bottom:930.213333pt;}
.y1a0{bottom:935.493333pt;}
.y124{bottom:937.093333pt;}
.y15a{bottom:941.253333pt;}
.yc4{bottom:942.533333pt;}
.y7c{bottom:946.213333pt;}
.y19f{bottom:950.853333pt;}
.yb{bottom:951.973333pt;}
.y123{bottom:954.693333pt;}
.y159{bottom:956.773333pt;}
.yc3{bottom:958.213333pt;}
.y7b{bottom:962.373333pt;}
.y19e{bottom:966.213333pt;}
.y122{bottom:972.293333pt;}
.yc2{bottom:973.733333pt;}
.y7a{bottom:978.533333pt;}
.y19d{bottom:981.573333pt;}
.y158{bottom:986.213333pt;}
.ya{bottom:988.613333pt;}
.yc1{bottom:989.413333pt;}
.y121{bottom:989.893333pt;}
.y79{bottom:994.533333pt;}
.y19c{bottom:996.933333pt;}
.y157{bottom:1000.293333pt;}
.ybf{bottom:1004.933333pt;}
.y120{bottom:1007.653333pt;}
.y78{bottom:1010.693333pt;}
.y19b{bottom:1012.320000pt;}
.y156{bottom:1015.840000pt;}
.ybd{bottom:1020.640000pt;}
.y11f{bottom:1025.280000pt;}
.y9{bottom:1025.440000pt;}
.y77{bottom:1026.720000pt;}
.y19a{bottom:1027.520000pt;}
.y155{bottom:1031.360000pt;}
.y199{bottom:1040.000000pt;}
.y76{bottom:1042.880000pt;}
.ybc{bottom:1044.000000pt;}
.y154{bottom:1045.280000pt;}
.y75{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y74{bottom:1096.480000pt;}
.y1{bottom:1097.600000pt;}
.h10{height:12.800000pt;}
.h13{height:12.832000pt;}
.h11{height:12.960000pt;}
.h14{height:12.992000pt;}
.h18{height:14.880000pt;}
.h1b{height:14.912000pt;}
.h1a{height:15.040000pt;}
.h19{height:15.072000pt;}
.h15{height:25.760000pt;}
.h16{height:26.400000pt;}
.hd{height:29.940625pt;}
.hc{height:30.254687pt;}
.hb{height:33.867188pt;}
.h5{height:35.342500pt;}
.h4{height:36.800000pt;}
.h6{height:36.960000pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h22{height:38.155000pt;}
.h20{height:38.672812pt;}
.h9{height:38.953125pt;}
.h21{height:39.347188pt;}
.h17{height:40.032000pt;}
.h1d{height:41.112500pt;}
.hf{height:41.543750pt;}
.he{height:43.782500pt;}
.h1e{height:44.687500pt;}
.h1c{height:45.156250pt;}
.h8{height:47.310625pt;}
.h1f{height:52.750000pt;}
.ha{height:74.628125pt;}
.h7{height:89.375000pt;}
.h12{height:270.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:45.600000pt;}
.w5{width:46.272000pt;}
.wd{width:46.560000pt;}
.w8{width:74.880000pt;}
.wc{width:80.832000pt;}
.wb{width:88.480000pt;}
.w6{width:93.760000pt;}
.w9{width:150.586667pt;}
.w3{width:168.186667pt;}
.w7{width:216.866667pt;}
.w2{width:235.426667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:7.360000pt;}
.x5{left:9.600000pt;}
.x1d{left:10.720000pt;}
.x34{left:11.840000pt;}
.x3d{left:12.960000pt;}
.x33{left:14.720000pt;}
.x28{left:15.840000pt;}
.x22{left:17.600000pt;}
.x20{left:18.880000pt;}
.x1f{left:20.512000pt;}
.x24{left:21.600000pt;}
.x27{left:23.040000pt;}
.x38{left:24.000000pt;}
.x3a{left:24.960000pt;}
.x26{left:25.920000pt;}
.x18{left:27.514667pt;}
.x39{left:28.640000pt;}
.x29{left:30.080000pt;}
.x2d{left:31.360000pt;}
.x32{left:32.800000pt;}
.x25{left:34.560000pt;}
.x36{left:36.800000pt;}
.x2c{left:38.080000pt;}
.x3b{left:39.840000pt;}
.x31{left:40.960000pt;}
.x2a{left:41.920000pt;}
.x2b{left:43.720000pt;}
.x3c{left:44.840000pt;}
.x2f{left:45.800000pt;}
.x2e{left:51.080000pt;}
.x21{left:54.120000pt;}
.x4{left:62.400000pt;}
.x7{left:65.440000pt;}
.x30{left:67.520000pt;}
.x23{left:68.480000pt;}
.x1a{left:70.600000pt;}
.xa{left:71.840000pt;}
.x5b{left:81.311988pt;}
.x4d{left:84.191988pt;}
.x4f{left:86.751988pt;}
.x5c{left:90.751988pt;}
.x3f{left:93.152000pt;}
.x3e{left:95.880000pt;}
.x35{left:101.480000pt;}
.x17{left:110.112000pt;}
.x4c{left:132.831988pt;}
.x40{left:139.386667pt;}
.x5a{left:149.946655pt;}
.x55{left:153.146655pt;}
.xb{left:158.266667pt;}
.x59{left:161.306655pt;}
.x52{left:165.146655pt;}
.x58{left:169.946655pt;}
.x13{left:174.106655pt;}
.x57{left:178.266655pt;}
.x50{left:183.546655pt;}
.x11{left:184.826655pt;}
.x4a{left:187.226655pt;}
.x4e{left:192.026655pt;}
.x19{left:204.506667pt;}
.x14{left:224.826655pt;}
.x9{left:226.586667pt;}
.x41{left:228.506667pt;}
.x12{left:234.106655pt;}
.x49{left:236.346655pt;}
.x8{left:291.106667pt;}
.x42{left:309.986667pt;}
.x4b{left:377.986655pt;}
.x3{left:384.190667pt;}
.x62{left:387.266655pt;}
.x56{left:388.546655pt;}
.x51{left:389.666655pt;}
.x54{left:390.786655pt;}
.x53{left:393.986655pt;}
.x2{left:395.266667pt;}
.x10{left:396.866655pt;}
.x48{left:400.706655pt;}
.xc{left:406.466667pt;}
.x5d{left:410.946655pt;}
.x44{left:413.666655pt;}
.xd{left:415.933333pt;}
.x1b{left:422.013333pt;}
.x5e{left:434.813322pt;}
.x6{left:436.733333pt;}
.xe{left:458.973333pt;}
.x60{left:468.093322pt;}
.x61{left:474.493322pt;}
.x1{left:477.053333pt;}
.x16{left:487.933322pt;}
.x1c{left:497.533333pt;}
.x5f{left:502.333322pt;}
.xf{left:515.453333pt;}
.x47{left:548.893322pt;}
.x45{left:554.333322pt;}
.x15{left:568.893322pt;}
.x1e{left:648.773333pt;}
.x43{left:725.893322pt;}
.x46{left:729.893322pt;}
}




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