
    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_321b25cc6ba8adb7cb3d87c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c6c7f3dbab1f17cf995262df.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1aae6c60f4fa5e4cb18234f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_e674aa79c0e12bea1448bd11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9f97cc55ee1a8edabb20a05a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_23cd8b05e56d19e163d49369.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls17{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.277200px;}
.ls19{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.365760px;}
.ls1f{letter-spacing:0.900000px;}
.ls20{letter-spacing:8.100000px;}
.ls1e{letter-spacing:11.466720px;}
.ls7{letter-spacing:16.020000px;}
.ls1b{letter-spacing:24.660000px;}
.ls9{letter-spacing:41.682720px;}
.ls8{letter-spacing:44.562720px;}
.ls16{letter-spacing:46.002720px;}
.ls1d{letter-spacing:55.386720px;}
.lse{letter-spacing:64.002720px;}
.ls4{letter-spacing:91.362720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws10{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.080960px;}
._1{width:1.002960px;}
._9{width:2.481600px;}
._2{width:4.209360px;}
._5{width:5.519760px;}
._d{width:6.546720px;}
._a{width:8.127360px;}
._8{width:9.979920px;}
._7{width:11.712960px;}
._f{width:13.638240px;}
._6{width:16.083840px;}
._b{width:17.748720px;}
._11{width:18.816480px;}
._25{width:20.092080px;}
._e{width:21.155040px;}
._c{width:22.542480px;}
._12{width:23.677920px;}
._3d{width:24.693840px;}
._13{width:25.773600px;}
._29{width:26.893920px;}
._14{width:27.967680px;}
._15{width:29.159760px;}
._20{width:30.298320px;}
._28{width:31.626000px;}
._17{width:33.226560px;}
._31{width:36.931680px;}
._1f{width:38.246400px;}
._1e{width:39.740400px;}
._38{width:43.326000px;}
._2f{width:44.401680px;}
._16{width:46.266720px;}
._18{width:47.509680px;}
._2a{width:51.333840px;}
._33{width:53.139600px;}
._1c{width:54.514080px;}
._1b{width:55.534080px;}
._2d{width:56.592720px;}
._26{width:58.656720px;}
._1d{width:60.549840px;}
._3c{width:62.927280px;}
._3b{width:64.361520px;}
._2c{width:72.907200px;}
._39{width:74.359920px;}
._30{width:83.617200px;}
._37{width:86.018400px;}
._23{width:99.440640px;}
._3a{width:109.838880px;}
._36{width:111.153600px;}
._34{width:134.041680px;}
._4{width:136.056000px;}
._24{width:149.950800px;}
._21{width:156.152880px;}
._2e{width:163.085040px;}
._2b{width:164.711520px;}
._19{width:169.313040px;}
._35{width:171.464400px;}
._32{width:192.845520px;}
._27{width:225.300000px;}
._22{width:269.457840px;}
._1a{width:311.840640px;}
._3{width:636.906000px;}
._10{width:1116.921360px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.240000px;}
.y11b{bottom:17.280000px;}
.y164{bottom:20.340000px;}
.y161{bottom:20.514000px;}
.y7c{bottom:20.520000px;}
.y118{bottom:34.560000px;}
.yc{bottom:36.720000px;}
.y160{bottom:37.614000px;}
.y80{bottom:37.620000px;}
.ydb{bottom:37.665000px;}
.y7b{bottom:37.800000px;}
.y15b{bottom:37.845000px;}
.y105{bottom:49.320000px;}
.y107{bottom:50.040000px;}
.y10b{bottom:50.220000px;}
.y15f{bottom:54.894000px;}
.y7f{bottom:54.900000px;}
.y16f{bottom:54.930000px;}
.yda{bottom:54.945000px;}
.y7a{bottom:55.080000px;}
.y15a{bottom:55.125000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y15e{bottom:72.174000px;}
.y7e{bottom:72.180000px;}
.y16e{bottom:72.210000px;}
.y82{bottom:72.390000px;}
.y171{bottom:89.460000px;}
.y16d{bottom:89.490000px;}
.y162{bottom:111.816000px;}
.y150{bottom:113.976000px;}
.y11a{bottom:114.336000px;}
.y158{bottom:115.596000px;}
.ybc{bottom:116.676000px;}
.y76{bottom:118.836000px;}
.y40{bottom:122.256000px;}
.ye3{bottom:124.236000px;}
.y15d{bottom:129.816000px;}
.y93{bottom:130.716000px;}
.y14f{bottom:131.256000px;}
.y119{bottom:132.336000px;}
.yf5{bottom:132.696000px;}
.ybb{bottom:133.776000px;}
.y75{bottom:135.936000px;}
.y3f{bottom:139.536000px;}
.ye2{bottom:141.516000px;}
.y92{bottom:147.996000px;}
.y14e{bottom:148.536000px;}
.yf4{bottom:149.976000px;}
.y117{bottom:150.330000px;}
.yba{bottom:151.050000px;}
.y74{bottom:153.210000px;}
.y3e{bottom:156.630000px;}
.ye1{bottom:158.790000px;}
.y91{bottom:165.270000px;}
.y14d{bottom:165.810000px;}
.yf3{bottom:167.250000px;}
.yb9{bottom:168.330000px;}
.y73{bottom:170.490000px;}
.y3d{bottom:173.910000px;}
.ye0{bottom:176.070000px;}
.y90{bottom:182.550000px;}
.y14c{bottom:183.090000px;}
.yf2{bottom:184.530000px;}
.yb8{bottom:185.610000px;}
.y72{bottom:187.770000px;}
.y3c{bottom:191.190000px;}
.ydf{bottom:193.350000px;}
.y180{bottom:196.050000px;}
.y8f{bottom:199.650000px;}
.y14b{bottom:200.190000px;}
.yf1{bottom:201.810000px;}
.yb7{bottom:202.890000px;}
.y71{bottom:205.050000px;}
.y3b{bottom:208.470000px;}
.yde{bottom:210.450000px;}
.y17f{bottom:213.330000px;}
.y15c{bottom:216.750000px;}
.y8e{bottom:216.930000px;}
.y14a{bottom:217.470000px;}
.y116{bottom:217.650000px;}
.yf0{bottom:219.090000px;}
.yb6{bottom:220.170000px;}
.y70{bottom:222.150000px;}
.y3a{bottom:225.750000px;}
.ydd{bottom:227.730000px;}
.y17e{bottom:230.610000px;}
.y8d{bottom:234.210000px;}
.y149{bottom:234.750000px;}
.y115{bottom:235.650000px;}
.yef{bottom:236.190000px;}
.yb5{bottom:237.270000px;}
.y6f{bottom:239.430000px;}
.ydc{bottom:242.490000px;}
.y39{bottom:242.850000px;}
.y17d{bottom:247.890000px;}
.y8c{bottom:251.490000px;}
.y148{bottom:252.030000px;}
.yee{bottom:253.470000px;}
.y114{bottom:253.650000px;}
.yb4{bottom:254.550000px;}
.y6e{bottom:256.710000px;}
.y38{bottom:260.130000px;}
.y17c{bottom:264.990000px;}
.y8b{bottom:268.770000px;}
.y147{bottom:269.310000px;}
.yed{bottom:270.750000px;}
.y113{bottom:271.650000px;}
.yb3{bottom:271.830000px;}
.y6d{bottom:273.990000px;}
.y37{bottom:277.410000px;}
.y17b{bottom:282.270000px;}
.y8a{bottom:286.050000px;}
.y146{bottom:286.410000px;}
.yec{bottom:288.030000px;}
.yb2{bottom:289.110000px;}
.y6c{bottom:291.270000px;}
.y112{bottom:292.890000px;}
.y36{bottom:294.690000px;}
.y17a{bottom:299.550000px;}
.y89{bottom:303.150000px;}
.y145{bottom:303.690000px;}
.yeb{bottom:305.310000px;}
.yb1{bottom:306.390000px;}
.y6b{bottom:308.550000px;}
.y111{bottom:310.170000px;}
.y35{bottom:311.970000px;}
.yd9{bottom:312.330000px;}
.y179{bottom:316.830000px;}
.y88{bottom:320.430000px;}
.y144{bottom:320.970000px;}
.yea{bottom:322.410000px;}
.yb0{bottom:323.490000px;}
.y6a{bottom:325.650000px;}
.y110{bottom:327.450000px;}
.y34{bottom:329.250000px;}
.y178{bottom:334.110000px;}
.y87{bottom:337.755000px;}
.y143{bottom:338.295000px;}
.ye9{bottom:339.735000px;}
.yaf{bottom:340.815000px;}
.y69{bottom:342.975000px;}
.y10f{bottom:344.775000px;}
.y33{bottom:346.395000px;}
.y177{bottom:352.515000px;}
.y86{bottom:355.035000px;}
.y142{bottom:355.575000px;}
.ye8{bottom:357.015000px;}
.yae{bottom:358.095000px;}
.y68{bottom:360.255000px;}
.y10e{bottom:361.875000px;}
.y32{bottom:363.675000px;}
.y176{bottom:370.695000px;}
.y85{bottom:372.315000px;}
.y141{bottom:372.855000px;}
.y159{bottom:373.575000px;}
.ye7{bottom:374.295000px;}
.yad{bottom:375.375000px;}
.y67{bottom:377.535000px;}
.y10d{bottom:379.155000px;}
.y31{bottom:380.955000px;}
.yd8{bottom:382.035000px;}
.y84{bottom:387.075000px;}
.y175{bottom:387.975000px;}
.y140{bottom:389.955000px;}
.ye6{bottom:391.575000px;}
.yac{bottom:392.655000px;}
.y66{bottom:394.815000px;}
.y10c{bottom:396.435000px;}
.y30{bottom:398.235000px;}
.y174{bottom:405.255000px;}
.y13f{bottom:407.235000px;}
.y157{bottom:408.855000px;}
.yab{bottom:409.935000px;}
.y10a{bottom:411.195000px;}
.y65{bottom:412.095000px;}
.y2f{bottom:415.515000px;}
.y173{bottom:422.535000px;}
.y13e{bottom:424.515000px;}
.y156{bottom:425.955000px;}
.yaa{bottom:427.035000px;}
.y64{bottom:429.195000px;}
.y2e{bottom:432.795000px;}
.yd7{bottom:434.595000px;}
.y172{bottom:439.815000px;}
.y13d{bottom:441.795000px;}
.y155{bottom:443.235000px;}
.ya9{bottom:444.315000px;}
.y63{bottom:446.475000px;}
.y2d{bottom:449.895000px;}
.y170{bottom:454.575000px;}
.y83{bottom:456.735000px;}
.y13c{bottom:459.075000px;}
.y154{bottom:460.515000px;}
.ya8{bottom:461.595000px;}
.ye5{bottom:462.675000px;}
.y62{bottom:463.755000px;}
.y2c{bottom:467.175000px;}
.y109{bottom:476.175000px;}
.y13b{bottom:476.355000px;}
.y153{bottom:477.795000px;}
.ya7{bottom:478.875000px;}
.ye4{bottom:479.955000px;}
.y61{bottom:481.035000px;}
.y2b{bottom:481.215000px;}
.yd6{bottom:486.975000px;}
.y13a{bottom:494.535000px;}
.ya6{bottom:496.155000px;}
.y60{bottom:498.315000px;}
.y2a{bottom:501.735000px;}
.y139{bottom:511.815000px;}
.ya5{bottom:513.435000px;}
.y5f{bottom:515.415000px;}
.y29{bottom:519.015000px;}
.yd5{bottom:522.255000px;}
.y138{bottom:529.095000px;}
.ya4{bottom:530.535000px;}
.y152{bottom:531.615000px;}
.y5e{bottom:532.695000px;}
.y28{bottom:536.115000px;}
.y108{bottom:540.255000px;}
.yd4{bottom:543.495000px;}
.y81{bottom:543.675000px;}
.y137{bottom:546.375000px;}
.ya3{bottom:547.815000px;}
.y151{bottom:548.895000px;}
.y5d{bottom:549.975000px;}
.y27{bottom:553.395000px;}
.y16c{bottom:558.795000px;}
.yd3{bottom:560.775000px;}
.y136{bottom:564.735000px;}
.ya2{bottom:565.095000px;}
.y5c{bottom:567.255000px;}
.y26{bottom:570.675000px;}
.yd2{bottom:578.055000px;}
.y135{bottom:581.835000px;}
.ya1{bottom:582.375000px;}
.y5b{bottom:584.535000px;}
.y25{bottom:587.955000px;}
.yd1{bottom:595.335000px;}
.y134{bottom:599.115000px;}
.ya0{bottom:599.655000px;}
.y5a{bottom:601.815000px;}
.y106{bottom:604.365000px;}
.y24{bottom:605.265000px;}
.yd0{bottom:612.645000px;}
.y133{bottom:616.425000px;}
.y9f{bottom:616.785000px;}
.yc0{bottom:617.865000px;}
.y59{bottom:618.945000px;}
.y23{bottom:622.545000px;}
.y7d{bottom:630.825000px;}
.y132{bottom:633.705000px;}
.y9e{bottom:634.065000px;}
.ybf{bottom:635.145000px;}
.y58{bottom:636.225000px;}
.y22{bottom:639.645000px;}
.ycf{bottom:648.105000px;}
.y131{bottom:650.985000px;}
.y9d{bottom:651.345000px;}
.ybe{bottom:652.425000px;}
.y57{bottom:653.505000px;}
.y21{bottom:656.925000px;}
.y16b{bottom:663.045000px;}
.yce{bottom:666.465000px;}
.y9c{bottom:668.625000px;}
.y104{bottom:669.165000px;}
.y130{bottom:669.345000px;}
.ybd{bottom:669.705000px;}
.y56{bottom:670.785000px;}
.y20{bottom:674.205000px;}
.ycd{bottom:683.745000px;}
.y9b{bottom:685.905000px;}
.y12f{bottom:686.445000px;}
.y55{bottom:688.065000px;}
.y1f{bottom:691.485000px;}
.ycc{bottom:701.025000px;}
.y9a{bottom:703.185000px;}
.y12e{bottom:703.725000px;}
.y54{bottom:705.345000px;}
.y1e{bottom:708.765000px;}
.y79{bottom:717.765000px;}
.ycb{bottom:718.125000px;}
.y99{bottom:720.285000px;}
.y12d{bottom:721.005000px;}
.y53{bottom:722.445000px;}
.y1d{bottom:722.805000px;}
.yca{bottom:736.485000px;}
.y98{bottom:737.565000px;}
.y12c{bottom:738.285000px;}
.y52{bottom:739.725000px;}
.y1c{bottom:743.685000px;}
.y16a{bottom:749.985000px;}
.yc9{bottom:753.765000px;}
.y97{bottom:754.845000px;}
.y12b{bottom:755.565000px;}
.y51{bottom:757.005000px;}
.y1b{bottom:762.585000px;}
.yc8{bottom:771.045000px;}
.y96{bottom:772.125000px;}
.y12a{bottom:772.845000px;}
.y50{bottom:774.285000px;}
.y1a{bottom:781.665000px;}
.y77{bottom:787.605000px;}
.yc7{bottom:788.325000px;}
.y129{bottom:789.945000px;}
.y95{bottom:790.485000px;}
.y4f{bottom:791.565000px;}
.y19{bottom:800.565000px;}
.y103{bottom:805.605000px;}
.y169{bottom:805.785000px;}
.yc6{bottom:806.685000px;}
.y128{bottom:807.225000px;}
.y94{bottom:807.765000px;}
.y4e{bottom:808.845000px;}
.y18{bottom:819.465000px;}
.y102{bottom:822.705000px;}
.y168{bottom:823.065000px;}
.yc5{bottom:823.785000px;}
.y127{bottom:824.505000px;}
.y4d{bottom:825.945000px;}
.y17{bottom:838.545000px;}
.y101{bottom:839.985000px;}
.y167{bottom:840.345000px;}
.yc4{bottom:841.065000px;}
.y126{bottom:841.785000px;}
.y4c{bottom:843.225000px;}
.y100{bottom:857.265000px;}
.y16{bottom:857.445000px;}
.y125{bottom:859.065000px;}
.yc3{bottom:859.425000px;}
.y4b{bottom:860.505000px;}
.yff{bottom:874.590000px;}
.y166{bottom:874.770000px;}
.y124{bottom:876.210000px;}
.y15{bottom:876.570000px;}
.yc2{bottom:876.750000px;}
.y4a{bottom:877.830000px;}
.y165{bottom:889.530000px;}
.yfe{bottom:891.870000px;}
.y123{bottom:893.490000px;}
.yc1{bottom:894.030000px;}
.y49{bottom:895.110000px;}
.y14{bottom:895.470000px;}
.yfd{bottom:909.150000px;}
.y122{bottom:910.770000px;}
.y48{bottom:912.210000px;}
.y13{bottom:914.370000px;}
.yfc{bottom:926.250000px;}
.y121{bottom:928.050000px;}
.y47{bottom:929.490000px;}
.y12{bottom:933.450000px;}
.yfb{bottom:943.530000px;}
.y120{bottom:945.330000px;}
.y46{bottom:946.770000px;}
.y11{bottom:952.350000px;}
.y163{bottom:959.370000px;}
.yfa{bottom:961.890000px;}
.y11f{bottom:962.610000px;}
.y45{bottom:964.050000px;}
.y10{bottom:971.430000px;}
.yf9{bottom:979.170000px;}
.y11e{bottom:979.710000px;}
.y44{bottom:981.330000px;}
.yf{bottom:990.330000px;}
.yf8{bottom:996.450000px;}
.y11d{bottom:996.990000px;}
.y43{bottom:998.610000px;}
.ye{bottom:1009.590000px;}
.y11c{bottom:1011.750000px;}
.yf7{bottom:1014.630000px;}
.y42{bottom:1015.710000px;}
.yd{bottom:1030.290000px;}
.yf6{bottom:1031.910000px;}
.y41{bottom:1032.990000px;}
.y9{bottom:1051.530000px;}
.y8{bottom:1070.430000px;}
.y7{bottom:1087.710000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1122.450000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hb{height:17.100000px;}
.h10{height:17.280000px;}
.h11{height:34.560000px;}
.h7{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.h9{height:43.506914px;}
.ha{height:45.024258px;}
.hf{height:45.549492px;}
.h8{height:46.736719px;}
.h3{height:47.901094px;}
.h1a{height:48.600000px;}
.h4{height:50.800781px;}
.h12{height:51.660000px;}
.h13{height:51.840000px;}
.h18{height:63.180000px;}
.h16{height:63.360000px;}
.h17{height:64.080000px;}
.h19{height:64.260000px;}
.h6{height:65.884219px;}
.hc{height:68.940000px;}
.h14{height:68.976000px;}
.h15{height:69.120000px;}
.h1b{height:69.156000px;}
.hd{height:86.220000px;}
.he{height:86.436000px;}
.h1d{height:103.500000px;}
.h1c{height:103.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:46.440000px;}
.w14{width:63.900000px;}
.wd{width:64.260000px;}
.wb{width:64.800000px;}
.w12{width:71.820000px;}
.w11{width:88.956000px;}
.wc{width:93.456000px;}
.w1c{width:101.700000px;}
.wf{width:105.876000px;}
.w13{width:107.640000px;}
.w17{width:129.960000px;}
.w3{width:131.580000px;}
.w16{width:136.116000px;}
.w6{width:138.960000px;}
.w1a{width:145.440000px;}
.wa{width:147.816000px;}
.w10{width:147.960000px;}
.w19{width:160.050000px;}
.w5{width:189.210000px;}
.w7{width:196.050000px;}
.w1b{width:235.875000px;}
.w15{width:251.895000px;}
.w9{width:271.470000px;}
.we{width:275.070000px;}
.w8{width:355.935000px;}
.w4{width:370.155000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x1c{left:100.296000px;}
.x8{left:108.035987px;}
.x2{left:110.015987px;}
.x19{left:118.835987px;}
.x1{left:123.335987px;}
.x17{left:127.115987px;}
.x1a{left:135.035987px;}
.x9{left:147.455987px;}
.x5{left:157.169987px;}
.x18{left:162.029987px;}
.xa{left:163.469987px;}
.x2b{left:168.329987px;}
.x30{left:189.029987px;}
.x34{left:208.650000px;}
.x31{left:216.029987px;}
.x26{left:222.149987px;}
.x1e{left:232.770000px;}
.x23{left:239.970000px;}
.x22{left:263.549987px;}
.x35{left:273.270000px;}
.x13{left:276.149987px;}
.x14{left:283.034987px;}
.x25{left:294.194987px;}
.x38{left:308.415000px;}
.x21{left:328.394987px;}
.x11{left:351.974987px;}
.x20{left:354.314987px;}
.xf{left:370.154987px;}
.x1b{left:372.134987px;}
.x2c{left:376.095000px;}
.x16{left:379.874987px;}
.x7{left:386.354987px;}
.xb{left:389.054987px;}
.xd{left:392.294987px;}
.xe{left:394.454987px;}
.x32{left:396.074987px;}
.xc{left:400.754987px;}
.x10{left:402.374987px;}
.x12{left:405.254987px;}
.x33{left:407.774987px;}
.x6{left:412.274987px;}
.x24{left:436.935000px;}
.x3{left:446.474987px;}
.x39{left:454.575000px;}
.x2d{left:482.685000px;}
.x4{left:518.324987px;}
.x27{left:521.025000px;}
.x36{left:526.065000px;}
.x28{left:586.545000px;}
.x1f{left:603.645000px;}
.x2e{left:631.365000px;}
.x37{left:662.910000px;}
.x29{left:680.730000px;}
.x3a{left:691.170000px;}
.x2f{left:721.050000px;}
.x2a{left:745.710000px;}
.x15{left:785.129987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls17{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.246400pt;}
.ls19{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.325120pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls20{letter-spacing:7.200000pt;}
.ls1e{letter-spacing:10.192640pt;}
.ls7{letter-spacing:14.240000pt;}
.ls1b{letter-spacing:21.920000pt;}
.ls9{letter-spacing:37.051307pt;}
.ls8{letter-spacing:39.611307pt;}
.ls16{letter-spacing:40.891307pt;}
.ls1d{letter-spacing:49.232640pt;}
.lse{letter-spacing:56.891307pt;}
.ls4{letter-spacing:81.211307pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws9{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws10{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-0.960853pt;}
._1{width:0.891520pt;}
._9{width:2.205867pt;}
._2{width:3.741653pt;}
._5{width:4.906453pt;}
._d{width:5.819307pt;}
._a{width:7.224320pt;}
._8{width:8.871040pt;}
._7{width:10.411520pt;}
._f{width:12.122880pt;}
._6{width:14.296747pt;}
._b{width:15.776640pt;}
._11{width:16.725760pt;}
._25{width:17.859627pt;}
._e{width:18.804480pt;}
._c{width:20.037760pt;}
._12{width:21.047040pt;}
._3d{width:21.950080pt;}
._13{width:22.909867pt;}
._29{width:23.905707pt;}
._14{width:24.860160pt;}
._15{width:25.919787pt;}
._20{width:26.931840pt;}
._28{width:28.112000pt;}
._17{width:29.534720pt;}
._31{width:32.828160pt;}
._1f{width:33.996800pt;}
._1e{width:35.324800pt;}
._38{width:38.512000pt;}
._2f{width:39.468160pt;}
._16{width:41.125973pt;}
._18{width:42.230827pt;}
._2a{width:45.630080pt;}
._33{width:47.235200pt;}
._1c{width:48.456960pt;}
._1b{width:49.363627pt;}
._2d{width:50.304640pt;}
._26{width:52.139307pt;}
._1d{width:53.822080pt;}
._3c{width:55.935360pt;}
._3b{width:57.210240pt;}
._2c{width:64.806400pt;}
._39{width:66.097707pt;}
._30{width:74.326400pt;}
._37{width:76.460800pt;}
._23{width:88.391680pt;}
._3a{width:97.634560pt;}
._36{width:98.803200pt;}
._34{width:119.148160pt;}
._4{width:120.938667pt;}
._24{width:133.289600pt;}
._21{width:138.802560pt;}
._2e{width:144.964480pt;}
._2b{width:146.410240pt;}
._19{width:150.500480pt;}
._35{width:152.412800pt;}
._32{width:171.418240pt;}
._27{width:200.266667pt;}
._22{width:239.518080pt;}
._1a{width:277.191680pt;}
._3{width:566.138667pt;}
._10{width:992.818987pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.880000pt;}
.y11b{bottom:15.360000pt;}
.y164{bottom:18.080000pt;}
.y161{bottom:18.234667pt;}
.y7c{bottom:18.240000pt;}
.y118{bottom:30.720000pt;}
.yc{bottom:32.640000pt;}
.y160{bottom:33.434667pt;}
.y80{bottom:33.440000pt;}
.ydb{bottom:33.480000pt;}
.y7b{bottom:33.600000pt;}
.y15b{bottom:33.640000pt;}
.y105{bottom:43.840000pt;}
.y107{bottom:44.480000pt;}
.y10b{bottom:44.640000pt;}
.y15f{bottom:48.794667pt;}
.y7f{bottom:48.800000pt;}
.y16f{bottom:48.826667pt;}
.yda{bottom:48.840000pt;}
.y7a{bottom:48.960000pt;}
.y15a{bottom:49.000000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y15e{bottom:64.154667pt;}
.y7e{bottom:64.160000pt;}
.y16e{bottom:64.186667pt;}
.y82{bottom:64.346667pt;}
.y171{bottom:79.520000pt;}
.y16d{bottom:79.546667pt;}
.y162{bottom:99.392000pt;}
.y150{bottom:101.312000pt;}
.y11a{bottom:101.632000pt;}
.y158{bottom:102.752000pt;}
.ybc{bottom:103.712000pt;}
.y76{bottom:105.632000pt;}
.y40{bottom:108.672000pt;}
.ye3{bottom:110.432000pt;}
.y15d{bottom:115.392000pt;}
.y93{bottom:116.192000pt;}
.y14f{bottom:116.672000pt;}
.y119{bottom:117.632000pt;}
.yf5{bottom:117.952000pt;}
.ybb{bottom:118.912000pt;}
.y75{bottom:120.832000pt;}
.y3f{bottom:124.032000pt;}
.ye2{bottom:125.792000pt;}
.y92{bottom:131.552000pt;}
.y14e{bottom:132.032000pt;}
.yf4{bottom:133.312000pt;}
.y117{bottom:133.626667pt;}
.yba{bottom:134.266667pt;}
.y74{bottom:136.186667pt;}
.y3e{bottom:139.226667pt;}
.ye1{bottom:141.146667pt;}
.y91{bottom:146.906667pt;}
.y14d{bottom:147.386667pt;}
.yf3{bottom:148.666667pt;}
.yb9{bottom:149.626667pt;}
.y73{bottom:151.546667pt;}
.y3d{bottom:154.586667pt;}
.ye0{bottom:156.506667pt;}
.y90{bottom:162.266667pt;}
.y14c{bottom:162.746667pt;}
.yf2{bottom:164.026667pt;}
.yb8{bottom:164.986667pt;}
.y72{bottom:166.906667pt;}
.y3c{bottom:169.946667pt;}
.ydf{bottom:171.866667pt;}
.y180{bottom:174.266667pt;}
.y8f{bottom:177.466667pt;}
.y14b{bottom:177.946667pt;}
.yf1{bottom:179.386667pt;}
.yb7{bottom:180.346667pt;}
.y71{bottom:182.266667pt;}
.y3b{bottom:185.306667pt;}
.yde{bottom:187.066667pt;}
.y17f{bottom:189.626667pt;}
.y15c{bottom:192.666667pt;}
.y8e{bottom:192.826667pt;}
.y14a{bottom:193.306667pt;}
.y116{bottom:193.466667pt;}
.yf0{bottom:194.746667pt;}
.yb6{bottom:195.706667pt;}
.y70{bottom:197.466667pt;}
.y3a{bottom:200.666667pt;}
.ydd{bottom:202.426667pt;}
.y17e{bottom:204.986667pt;}
.y8d{bottom:208.186667pt;}
.y149{bottom:208.666667pt;}
.y115{bottom:209.466667pt;}
.yef{bottom:209.946667pt;}
.yb5{bottom:210.906667pt;}
.y6f{bottom:212.826667pt;}
.ydc{bottom:215.546667pt;}
.y39{bottom:215.866667pt;}
.y17d{bottom:220.346667pt;}
.y8c{bottom:223.546667pt;}
.y148{bottom:224.026667pt;}
.yee{bottom:225.306667pt;}
.y114{bottom:225.466667pt;}
.yb4{bottom:226.266667pt;}
.y6e{bottom:228.186667pt;}
.y38{bottom:231.226667pt;}
.y17c{bottom:235.546667pt;}
.y8b{bottom:238.906667pt;}
.y147{bottom:239.386667pt;}
.yed{bottom:240.666667pt;}
.y113{bottom:241.466667pt;}
.yb3{bottom:241.626667pt;}
.y6d{bottom:243.546667pt;}
.y37{bottom:246.586667pt;}
.y17b{bottom:250.906667pt;}
.y8a{bottom:254.266667pt;}
.y146{bottom:254.586667pt;}
.yec{bottom:256.026667pt;}
.yb2{bottom:256.986667pt;}
.y6c{bottom:258.906667pt;}
.y112{bottom:260.346667pt;}
.y36{bottom:261.946667pt;}
.y17a{bottom:266.266667pt;}
.y89{bottom:269.466667pt;}
.y145{bottom:269.946667pt;}
.yeb{bottom:271.386667pt;}
.yb1{bottom:272.346667pt;}
.y6b{bottom:274.266667pt;}
.y111{bottom:275.706667pt;}
.y35{bottom:277.306667pt;}
.yd9{bottom:277.626667pt;}
.y179{bottom:281.626667pt;}
.y88{bottom:284.826667pt;}
.y144{bottom:285.306667pt;}
.yea{bottom:286.586667pt;}
.yb0{bottom:287.546667pt;}
.y6a{bottom:289.466667pt;}
.y110{bottom:291.066667pt;}
.y34{bottom:292.666667pt;}
.y178{bottom:296.986667pt;}
.y87{bottom:300.226667pt;}
.y143{bottom:300.706667pt;}
.ye9{bottom:301.986667pt;}
.yaf{bottom:302.946667pt;}
.y69{bottom:304.866667pt;}
.y10f{bottom:306.466667pt;}
.y33{bottom:307.906667pt;}
.y177{bottom:313.346667pt;}
.y86{bottom:315.586667pt;}
.y142{bottom:316.066667pt;}
.ye8{bottom:317.346667pt;}
.yae{bottom:318.306667pt;}
.y68{bottom:320.226667pt;}
.y10e{bottom:321.666667pt;}
.y32{bottom:323.266667pt;}
.y176{bottom:329.506667pt;}
.y85{bottom:330.946667pt;}
.y141{bottom:331.426667pt;}
.y159{bottom:332.066667pt;}
.ye7{bottom:332.706667pt;}
.yad{bottom:333.666667pt;}
.y67{bottom:335.586667pt;}
.y10d{bottom:337.026667pt;}
.y31{bottom:338.626667pt;}
.yd8{bottom:339.586667pt;}
.y84{bottom:344.066667pt;}
.y175{bottom:344.866667pt;}
.y140{bottom:346.626667pt;}
.ye6{bottom:348.066667pt;}
.yac{bottom:349.026667pt;}
.y66{bottom:350.946667pt;}
.y10c{bottom:352.386667pt;}
.y30{bottom:353.986667pt;}
.y174{bottom:360.226667pt;}
.y13f{bottom:361.986667pt;}
.y157{bottom:363.426667pt;}
.yab{bottom:364.386667pt;}
.y10a{bottom:365.506667pt;}
.y65{bottom:366.306667pt;}
.y2f{bottom:369.346667pt;}
.y173{bottom:375.586667pt;}
.y13e{bottom:377.346667pt;}
.y156{bottom:378.626667pt;}
.yaa{bottom:379.586667pt;}
.y64{bottom:381.506667pt;}
.y2e{bottom:384.706667pt;}
.yd7{bottom:386.306667pt;}
.y172{bottom:390.946667pt;}
.y13d{bottom:392.706667pt;}
.y155{bottom:393.986667pt;}
.ya9{bottom:394.946667pt;}
.y63{bottom:396.866667pt;}
.y2d{bottom:399.906667pt;}
.y170{bottom:404.066667pt;}
.y83{bottom:405.986667pt;}
.y13c{bottom:408.066667pt;}
.y154{bottom:409.346667pt;}
.ya8{bottom:410.306667pt;}
.ye5{bottom:411.266667pt;}
.y62{bottom:412.226667pt;}
.y2c{bottom:415.266667pt;}
.y109{bottom:423.266667pt;}
.y13b{bottom:423.426667pt;}
.y153{bottom:424.706667pt;}
.ya7{bottom:425.666667pt;}
.ye4{bottom:426.626667pt;}
.y61{bottom:427.586667pt;}
.y2b{bottom:427.746667pt;}
.yd6{bottom:432.866667pt;}
.y13a{bottom:439.586667pt;}
.ya6{bottom:441.026667pt;}
.y60{bottom:442.946667pt;}
.y2a{bottom:445.986667pt;}
.y139{bottom:454.946667pt;}
.ya5{bottom:456.386667pt;}
.y5f{bottom:458.146667pt;}
.y29{bottom:461.346667pt;}
.yd5{bottom:464.226667pt;}
.y138{bottom:470.306667pt;}
.ya4{bottom:471.586667pt;}
.y152{bottom:472.546667pt;}
.y5e{bottom:473.506667pt;}
.y28{bottom:476.546667pt;}
.y108{bottom:480.226667pt;}
.yd4{bottom:483.106667pt;}
.y81{bottom:483.266667pt;}
.y137{bottom:485.666667pt;}
.ya3{bottom:486.946667pt;}
.y151{bottom:487.906667pt;}
.y5d{bottom:488.866667pt;}
.y27{bottom:491.906667pt;}
.y16c{bottom:496.706667pt;}
.yd3{bottom:498.466667pt;}
.y136{bottom:501.986667pt;}
.ya2{bottom:502.306667pt;}
.y5c{bottom:504.226667pt;}
.y26{bottom:507.266667pt;}
.yd2{bottom:513.826667pt;}
.y135{bottom:517.186667pt;}
.ya1{bottom:517.666667pt;}
.y5b{bottom:519.586667pt;}
.y25{bottom:522.626667pt;}
.yd1{bottom:529.186667pt;}
.y134{bottom:532.546667pt;}
.ya0{bottom:533.026667pt;}
.y5a{bottom:534.946667pt;}
.y106{bottom:537.213333pt;}
.y24{bottom:538.013333pt;}
.yd0{bottom:544.573333pt;}
.y133{bottom:547.933333pt;}
.y9f{bottom:548.253333pt;}
.yc0{bottom:549.213333pt;}
.y59{bottom:550.173333pt;}
.y23{bottom:553.373333pt;}
.y7d{bottom:560.733333pt;}
.y132{bottom:563.293333pt;}
.y9e{bottom:563.613333pt;}
.ybf{bottom:564.573333pt;}
.y58{bottom:565.533333pt;}
.y22{bottom:568.573333pt;}
.ycf{bottom:576.093333pt;}
.y131{bottom:578.653333pt;}
.y9d{bottom:578.973333pt;}
.ybe{bottom:579.933333pt;}
.y57{bottom:580.893333pt;}
.y21{bottom:583.933333pt;}
.y16b{bottom:589.373333pt;}
.yce{bottom:592.413333pt;}
.y9c{bottom:594.333333pt;}
.y104{bottom:594.813333pt;}
.y130{bottom:594.973333pt;}
.ybd{bottom:595.293333pt;}
.y56{bottom:596.253333pt;}
.y20{bottom:599.293333pt;}
.ycd{bottom:607.773333pt;}
.y9b{bottom:609.693333pt;}
.y12f{bottom:610.173333pt;}
.y55{bottom:611.613333pt;}
.y1f{bottom:614.653333pt;}
.ycc{bottom:623.133333pt;}
.y9a{bottom:625.053333pt;}
.y12e{bottom:625.533333pt;}
.y54{bottom:626.973333pt;}
.y1e{bottom:630.013333pt;}
.y79{bottom:638.013333pt;}
.ycb{bottom:638.333333pt;}
.y99{bottom:640.253333pt;}
.y12d{bottom:640.893333pt;}
.y53{bottom:642.173333pt;}
.y1d{bottom:642.493333pt;}
.yca{bottom:654.653333pt;}
.y98{bottom:655.613333pt;}
.y12c{bottom:656.253333pt;}
.y52{bottom:657.533333pt;}
.y1c{bottom:661.053333pt;}
.y16a{bottom:666.653333pt;}
.yc9{bottom:670.013333pt;}
.y97{bottom:670.973333pt;}
.y12b{bottom:671.613333pt;}
.y51{bottom:672.893333pt;}
.y1b{bottom:677.853333pt;}
.yc8{bottom:685.373333pt;}
.y96{bottom:686.333333pt;}
.y12a{bottom:686.973333pt;}
.y50{bottom:688.253333pt;}
.y1a{bottom:694.813333pt;}
.y77{bottom:700.093333pt;}
.yc7{bottom:700.733333pt;}
.y129{bottom:702.173333pt;}
.y95{bottom:702.653333pt;}
.y4f{bottom:703.613333pt;}
.y19{bottom:711.613333pt;}
.y103{bottom:716.093333pt;}
.y169{bottom:716.253333pt;}
.yc6{bottom:717.053333pt;}
.y128{bottom:717.533333pt;}
.y94{bottom:718.013333pt;}
.y4e{bottom:718.973333pt;}
.y18{bottom:728.413333pt;}
.y102{bottom:731.293333pt;}
.y168{bottom:731.613333pt;}
.yc5{bottom:732.253333pt;}
.y127{bottom:732.893333pt;}
.y4d{bottom:734.173333pt;}
.y17{bottom:745.373333pt;}
.y101{bottom:746.653333pt;}
.y167{bottom:746.973333pt;}
.yc4{bottom:747.613333pt;}
.y126{bottom:748.253333pt;}
.y4c{bottom:749.533333pt;}
.y100{bottom:762.013333pt;}
.y16{bottom:762.173333pt;}
.y125{bottom:763.613333pt;}
.yc3{bottom:763.933333pt;}
.y4b{bottom:764.893333pt;}
.yff{bottom:777.413333pt;}
.y166{bottom:777.573333pt;}
.y124{bottom:778.853333pt;}
.y15{bottom:779.173333pt;}
.yc2{bottom:779.333333pt;}
.y4a{bottom:780.293333pt;}
.y165{bottom:790.693333pt;}
.yfe{bottom:792.773333pt;}
.y123{bottom:794.213333pt;}
.yc1{bottom:794.693333pt;}
.y49{bottom:795.653333pt;}
.y14{bottom:795.973333pt;}
.yfd{bottom:808.133333pt;}
.y122{bottom:809.573333pt;}
.y48{bottom:810.853333pt;}
.y13{bottom:812.773333pt;}
.yfc{bottom:823.333333pt;}
.y121{bottom:824.933333pt;}
.y47{bottom:826.213333pt;}
.y12{bottom:829.733333pt;}
.yfb{bottom:838.693333pt;}
.y120{bottom:840.293333pt;}
.y46{bottom:841.573333pt;}
.y11{bottom:846.533333pt;}
.y163{bottom:852.773333pt;}
.yfa{bottom:855.013333pt;}
.y11f{bottom:855.653333pt;}
.y45{bottom:856.933333pt;}
.y10{bottom:863.493333pt;}
.yf9{bottom:870.373333pt;}
.y11e{bottom:870.853333pt;}
.y44{bottom:872.293333pt;}
.yf{bottom:880.293333pt;}
.yf8{bottom:885.733333pt;}
.y11d{bottom:886.213333pt;}
.y43{bottom:887.653333pt;}
.ye{bottom:897.413333pt;}
.y11c{bottom:899.333333pt;}
.yf7{bottom:901.893333pt;}
.y42{bottom:902.853333pt;}
.yd{bottom:915.813333pt;}
.yf6{bottom:917.253333pt;}
.y41{bottom:918.213333pt;}
.y9{bottom:934.693333pt;}
.y8{bottom:951.493333pt;}
.y7{bottom:966.853333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:997.733333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hb{height:15.200000pt;}
.h10{height:15.360000pt;}
.h11{height:30.720000pt;}
.h7{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.h9{height:38.672812pt;}
.ha{height:40.021563pt;}
.hf{height:40.488438pt;}
.h8{height:41.543750pt;}
.h3{height:42.578750pt;}
.h1a{height:43.200000pt;}
.h4{height:45.156250pt;}
.h12{height:45.920000pt;}
.h13{height:46.080000pt;}
.h18{height:56.160000pt;}
.h16{height:56.320000pt;}
.h17{height:56.960000pt;}
.h19{height:57.120000pt;}
.h6{height:58.563750pt;}
.hc{height:61.280000pt;}
.h14{height:61.312000pt;}
.h15{height:61.440000pt;}
.h1b{height:61.472000pt;}
.hd{height:76.640000pt;}
.he{height:76.832000pt;}
.h1d{height:92.000000pt;}
.h1c{height:92.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:41.280000pt;}
.w14{width:56.800000pt;}
.wd{width:57.120000pt;}
.wb{width:57.600000pt;}
.w12{width:63.840000pt;}
.w11{width:79.072000pt;}
.wc{width:83.072000pt;}
.w1c{width:90.400000pt;}
.wf{width:94.112000pt;}
.w13{width:95.680000pt;}
.w17{width:115.520000pt;}
.w3{width:116.960000pt;}
.w16{width:120.992000pt;}
.w6{width:123.520000pt;}
.w1a{width:129.280000pt;}
.wa{width:131.392000pt;}
.w10{width:131.520000pt;}
.w19{width:142.266667pt;}
.w5{width:168.186667pt;}
.w7{width:174.266667pt;}
.w1b{width:209.666667pt;}
.w15{width:223.906667pt;}
.w9{width:241.306667pt;}
.we{width:244.506667pt;}
.w8{width:316.386667pt;}
.w4{width:329.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x1c{left:89.152000pt;}
.x8{left:96.031988pt;}
.x2{left:97.791988pt;}
.x19{left:105.631988pt;}
.x1{left:109.631988pt;}
.x17{left:112.991988pt;}
.x1a{left:120.031988pt;}
.x9{left:131.071988pt;}
.x5{left:139.706655pt;}
.x18{left:144.026655pt;}
.xa{left:145.306655pt;}
.x2b{left:149.626655pt;}
.x30{left:168.026655pt;}
.x34{left:185.466667pt;}
.x31{left:192.026655pt;}
.x26{left:197.466655pt;}
.x1e{left:206.906667pt;}
.x23{left:213.306667pt;}
.x22{left:234.266655pt;}
.x35{left:242.906667pt;}
.x13{left:245.466655pt;}
.x14{left:251.586655pt;}
.x25{left:261.506655pt;}
.x38{left:274.146667pt;}
.x21{left:291.906655pt;}
.x11{left:312.866655pt;}
.x20{left:314.946655pt;}
.xf{left:329.026655pt;}
.x1b{left:330.786655pt;}
.x2c{left:334.306667pt;}
.x16{left:337.666655pt;}
.x7{left:343.426655pt;}
.xb{left:345.826655pt;}
.xd{left:348.706655pt;}
.xe{left:350.626655pt;}
.x32{left:352.066655pt;}
.xc{left:356.226655pt;}
.x10{left:357.666655pt;}
.x12{left:360.226655pt;}
.x33{left:362.466655pt;}
.x6{left:366.466655pt;}
.x24{left:388.386667pt;}
.x3{left:396.866655pt;}
.x39{left:404.066667pt;}
.x2d{left:429.053333pt;}
.x4{left:460.733322pt;}
.x27{left:463.133333pt;}
.x36{left:467.613333pt;}
.x28{left:521.373333pt;}
.x1f{left:536.573333pt;}
.x2e{left:561.213333pt;}
.x37{left:589.253333pt;}
.x29{left:605.093333pt;}
.x3a{left:614.373333pt;}
.x2f{left:640.933333pt;}
.x2a{left:662.853333pt;}
.x15{left:697.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; }
  