
    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_89f7b91eec09a1213c4b4467.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_43cfc0842fa6e00c1f7862e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cc9b5bb0e3cedb3a85b911c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0c2711f420371d2be13990f2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3186c027f97998d751846108.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894043;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_63fe04fd5c73da56ea14b426.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0631a204ff73bf75d583ff08.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1d0086ef06416b0640e4add4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v7{vertical-align:-74.160000px;}
.v8{vertical-align:-70.560000px;}
.v9{vertical-align:-68.400000px;}
.v4{vertical-align:-62.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.960000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v5{vertical-align:35.280000px;}
.ls10{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.538800px;}
.ls1a{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls17{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493800px;}
.ls14{letter-spacing:0.828000px;}
.ls13{letter-spacing:1.548000px;}
.lsd{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.340000px;}
.ls12{letter-spacing:3.780000px;}
.ls15{letter-spacing:13.140000px;}
.ls5{letter-spacing:66.960000px;}
.ls4{letter-spacing:67.680000px;}
.ls18{letter-spacing:86.940000px;}
.ls19{letter-spacing:93.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;}
}
.wsf{word-spacing:-54.360000px;}
.wsd{word-spacing:-54.000000px;}
.ws14{word-spacing:-42.706080px;}
.ws15{word-spacing:-41.760000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.ws18{word-spacing:-15.768000px;}
.ws13{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsc{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.241200px;}
.ws7{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.836200px;}
.ws6{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.521200px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.ws9{word-spacing:-7.560000px;}
.ws10{word-spacing:0.000000px;}
._11{margin-left:-6.330243px;}
._1c{margin-left:-2.083440px;}
._4{margin-left:-1.049760px;}
._1{width:1.085760px;}
._e{width:2.479680px;}
._0{width:3.591360px;}
._3{width:4.707840px;}
._2{width:5.852640px;}
._9{width:7.398000px;}
._a{width:8.856000px;}
._18{width:10.068480px;}
._10{width:11.238480px;}
._d{width:12.251520px;}
._13{width:13.272000px;}
._f{width:15.120000px;}
._17{width:16.356000px;}
._b{width:17.550000px;}
._c{width:18.810000px;}
._16{width:20.561760px;}
._19{width:21.812400px;}
._1a{width:23.963760px;}
._1b{width:25.053120px;}
._14{width:26.055360px;}
._15{width:27.758160px;}
._1e{width:34.346880px;}
._1d{width:35.725200px;}
._22{width:38.350800px;}
._21{width:39.400560px;}
._23{width:41.010240px;}
._24{width:48.421440px;}
._1f{width:64.834560px;}
._20{width:66.435600px;}
._8{width:68.148480px;}
._7{width:72.599760px;}
._6{width:73.653840px;}
._12{width:1834.296000px;}
._5{width:2067.186240px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs8{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:4.320000px;}
.y10c{bottom:5.220000px;}
.y116{bottom:5.400000px;}
.y2b{bottom:5.580000px;}
.yba{bottom:5.760000px;}
.ybf{bottom:7.920000px;}
.ybb{bottom:8.820000px;}
.yb7{bottom:9.360000px;}
.y10a{bottom:14.580000px;}
.y127{bottom:14.610000px;}
.ybd{bottom:17.280000px;}
.yb9{bottom:17.820000px;}
.y46{bottom:18.180000px;}
.y4a{bottom:18.900000px;}
.y73{bottom:19.260000px;}
.y2a{bottom:19.620000px;}
.y3{bottom:19.800000px;}
.yb5{bottom:22.860000px;}
.y129{bottom:23.430000px;}
.y10d{bottom:23.580000px;}
.y29{bottom:27.180000px;}
.y2{bottom:33.840000px;}
.y28{bottom:42.660000px;}
.y1{bottom:46.620000px;}
.y27{bottom:58.140000px;}
.y1bc{bottom:68.400000px;}
.yac{bottom:68.580000px;}
.y108{bottom:69.120000px;}
.y26{bottom:73.800000px;}
.y17c{bottom:74.880000px;}
.y145{bottom:77.040000px;}
.y70{bottom:80.100000px;}
.y1bb{bottom:82.080000px;}
.yab{bottom:88.380000px;}
.y17b{bottom:88.740000px;}
.y107{bottom:89.100000px;}
.y25{bottom:89.280000px;}
.y144{bottom:94.320000px;}
.y44{bottom:94.860000px;}
.y1ba{bottom:95.940000px;}
.yd8{bottom:99.360000px;}
.y24{bottom:104.790000px;}
.y17a{bottom:106.920000px;}
.yaa{bottom:108.180000px;}
.y106{bottom:108.900000px;}
.y1b9{bottom:109.800000px;}
.y143{bottom:111.600000px;}
.y43{bottom:114.660000px;}
.yd7{bottom:119.160000px;}
.y23{bottom:120.270000px;}
.y179{bottom:120.780000px;}
.y1b8{bottom:123.480000px;}
.ya9{bottom:127.980000px;}
.y105{bottom:128.700000px;}
.y142{bottom:128.880000px;}
.y42{bottom:134.460000px;}
.y22{bottom:135.750000px;}
.y1b7{bottom:137.340000px;}
.yd6{bottom:138.960000px;}
.y178{bottom:139.140000px;}
.ya8{bottom:145.080000px;}
.y141{bottom:146.160000px;}
.y104{bottom:148.500000px;}
.y1b6{bottom:151.230000px;}
.y21{bottom:151.410000px;}
.y177{bottom:152.850000px;}
.y41{bottom:154.470000px;}
.yd5{bottom:158.970000px;}
.ya7{bottom:162.390000px;}
.y140{bottom:163.290000px;}
.y1b5{bottom:164.010000px;}
.y20{bottom:166.890000px;}
.y103{bottom:168.330000px;}
.y2d{bottom:170.670000px;}
.y176{bottom:171.210000px;}
.y1b4{bottom:173.550000px;}
.y40{bottom:174.270000px;}
.yd4{bottom:178.770000px;}
.ya6{bottom:179.670000px;}
.y13f{bottom:180.570000px;}
.y1f{bottom:182.370000px;}
.y175{bottom:185.070000px;}
.y102{bottom:188.310000px;}
.y3f{bottom:194.070000px;}
.y1b3{bottom:195.690000px;}
.y1e{bottom:197.850000px;}
.yd3{bottom:198.570000px;}
.y174{bottom:198.750000px;}
.ya5{bottom:199.650000px;}
.y101{bottom:208.110000px;}
.y1d{bottom:213.510000px;}
.y3e{bottom:213.870000px;}
.y13e{bottom:215.130000px;}
.y173{bottom:217.110000px;}
.yd2{bottom:218.370000px;}
.ya4{bottom:219.450000px;}
.y100{bottom:227.910000px;}
.y1c{bottom:228.990000px;}
.y172{bottom:230.970000px;}
.y1b2{bottom:232.230000px;}
.y13d{bottom:232.410000px;}
.y3d{bottom:233.670000px;}
.yd1{bottom:238.170000px;}
.ya3{bottom:239.250000px;}
.y1b{bottom:244.470000px;}
.y1b1{bottom:246.090000px;}
.yff{bottom:247.710000px;}
.y171{bottom:249.150000px;}
.y13c{bottom:249.510000px;}
.y3c{bottom:253.650000px;}
.yd0{bottom:258.150000px;}
.ya2{bottom:259.230000px;}
.y1b0{bottom:259.770000px;}
.y1a{bottom:259.950000px;}
.y170{bottom:263.010000px;}
.y13b{bottom:266.790000px;}
.yfe{bottom:267.510000px;}
.y3b{bottom:273.450000px;}
.y19{bottom:275.610000px;}
.y16f{bottom:276.870000px;}
.ycf{bottom:277.950000px;}
.y1af{bottom:278.130000px;}
.ya1{bottom:279.030000px;}
.yfd{bottom:287.490000px;}
.y18{bottom:291.090000px;}
.y1ae{bottom:291.990000px;}
.y3a{bottom:293.250000px;}
.y16e{bottom:295.050000px;}
.yce{bottom:297.750000px;}
.ya0{bottom:298.830000px;}
.y13a{bottom:301.350000px;}
.y17{bottom:306.570000px;}
.yfc{bottom:307.290000px;}
.y16d{bottom:308.910000px;}
.y1ad{bottom:310.170000px;}
.y39{bottom:313.050000px;}
.ycd{bottom:317.550000px;}
.y9f{bottom:318.630000px;}
.y1ac{bottom:324.030000px;}
.yfb{bottom:327.090000px;}
.y16c{bottom:327.270000px;}
.y16{bottom:328.530000px;}
.y38{bottom:332.850000px;}
.y139{bottom:335.910000px;}
.ycc{bottom:337.350000px;}
.y1ab{bottom:337.890000px;}
.y9e{bottom:338.430000px;}
.y16b{bottom:340.950000px;}
.y2c{bottom:341.130000px;}
.yfa{bottom:346.890000px;}
.y37{bottom:352.830000px;}
.y138{bottom:353.010000px;}
.y1aa{bottom:356.070000px;}
.ycb{bottom:357.330000px;}
.y16a{bottom:358.050000px;}
.y9d{bottom:358.410000px;}
.yf9{bottom:366.690000px;}
.y1a9{bottom:369.930000px;}
.y137{bottom:370.290000px;}
.y36{bottom:372.630000px;}
.yca{bottom:377.130000px;}
.y169{bottom:377.490000px;}
.y9c{bottom:378.210000px;}
.yf8{bottom:386.670000px;}
.y136{bottom:387.570000px;}
.y1a8{bottom:388.290000px;}
.y35{bottom:392.430000px;}
.yc9{bottom:396.930000px;}
.y9b{bottom:398.010000px;}
.y168{bottom:398.955000px;}
.y1a7{bottom:402.015000px;}
.y135{bottom:404.895000px;}
.yf7{bottom:406.155000px;}
.y34{bottom:412.275000px;}
.y1a6{bottom:415.875000px;}
.yc8{bottom:416.775000px;}
.y9a{bottom:417.855000px;}
.y167{bottom:419.115000px;}
.y134{bottom:422.175000px;}
.yf6{bottom:426.315000px;}
.y33{bottom:432.075000px;}
.y1a5{bottom:434.235000px;}
.yc7{bottom:436.575000px;}
.y6f{bottom:436.755000px;}
.y99{bottom:437.655000px;}
.y133{bottom:439.455000px;}
.yf5{bottom:446.115000px;}
.y1a4{bottom:447.915000px;}
.y32{bottom:452.055000px;}
.y166{bottom:453.135000px;}
.yc6{bottom:456.555000px;}
.y6e{bottom:456.915000px;}
.y98{bottom:457.635000px;}
.yf4{bottom:465.915000px;}
.y1a3{bottom:466.275000px;}
.y165{bottom:470.775000px;}
.y31{bottom:471.855000px;}
.yc5{bottom:476.355000px;}
.y6d{bottom:476.895000px;}
.y97{bottom:477.435000px;}
.y1a2{bottom:480.135000px;}
.yf3{bottom:485.895000px;}
.y164{bottom:488.055000px;}
.y30{bottom:491.655000px;}
.y132{bottom:492.015000px;}
.yc4{bottom:496.155000px;}
.y6c{bottom:496.695000px;}
.y96{bottom:497.235000px;}
.y1a1{bottom:498.315000px;}
.yf2{bottom:505.695000px;}
.y2f{bottom:511.095000px;}
.y1a0{bottom:512.175000px;}
.yc3{bottom:515.955000px;}
.y131{bottom:516.315000px;}
.y6b{bottom:516.495000px;}
.y95{bottom:517.035000px;}
.y163{bottom:522.615000px;}
.yf1{bottom:525.495000px;}
.y130{bottom:528.735000px;}
.y19f{bottom:530.535000px;}
.y2e{bottom:531.255000px;}
.y12f{bottom:532.155000px;}
.yc2{bottom:535.755000px;}
.y6a{bottom:536.295000px;}
.y94{bottom:536.835000px;}
.y162{bottom:539.895000px;}
.y19e{bottom:544.215000px;}
.y15{bottom:544.935000px;}
.yf0{bottom:545.295000px;}
.y12e{bottom:549.975000px;}
.yc1{bottom:554.475000px;}
.y69{bottom:556.095000px;}
.y93{bottom:556.815000px;}
.y19d{bottom:562.575000px;}
.yef{bottom:565.095000px;}
.yc0{bottom:566.715000px;}
.y12d{bottom:567.795000px;}
.ybc{bottom:570.135000px;}
.y161{bottom:573.915000px;}
.y68{bottom:576.075000px;}
.y19c{bottom:576.435000px;}
.y92{bottom:576.615000px;}
.yee{bottom:585.075000px;}
.y12c{bottom:585.615000px;}
.y160{bottom:591.555000px;}
.ybe{bottom:593.355000px;}
.y19b{bottom:594.615000px;}
.y67{bottom:595.875000px;}
.y91{bottom:596.415000px;}
.y12b{bottom:603.435000px;}
.yed{bottom:604.875000px;}
.y15f{bottom:608.835000px;}
.yb8{bottom:611.895000px;}
.y19a{bottom:612.975000px;}
.y66{bottom:615.675000px;}
.y90{bottom:616.215000px;}
.y12a{bottom:621.435000px;}
.yec{bottom:624.675000px;}
.y199{bottom:626.835000px;}
.y65{bottom:635.475000px;}
.y8f{bottom:636.015000px;}
.y126{bottom:639.975000px;}
.y15e{bottom:643.035000px;}
.yeb{bottom:644.475000px;}
.y198{bottom:645.015000px;}
.yb4{bottom:654.765000px;}
.y64{bottom:655.305000px;}
.y8e{bottom:656.025000px;}
.y128{bottom:658.545000px;}
.y197{bottom:658.905000px;}
.y15d{bottom:660.525000px;}
.yea{bottom:664.305000px;}
.y63{bottom:675.285000px;}
.y8d{bottom:675.825000px;}
.y196{bottom:677.265000px;}
.y15c{bottom:677.805000px;}
.yb6{bottom:681.765000px;}
.y125{bottom:683.385000px;}
.ye9{bottom:684.285000px;}
.y195{bottom:690.945000px;}
.y62{bottom:695.085000px;}
.y8c{bottom:695.625000px;}
.y124{bottom:703.185000px;}
.ye8{bottom:704.085000px;}
.y194{bottom:709.305000px;}
.y15b{bottom:712.365000px;}
.y61{bottom:714.885000px;}
.y8b{bottom:715.425000px;}
.y193{bottom:723.165000px;}
.ye7{bottom:723.885000px;}
.y123{bottom:725.505000px;}
.y15a{bottom:729.645000px;}
.y60{bottom:734.325000px;}
.yb3{bottom:734.685000px;}
.y8a{bottom:735.225000px;}
.y192{bottom:741.345000px;}
.ye6{bottom:743.685000px;}
.y159{bottom:746.745000px;}
.y122{bottom:749.445000px;}
.y5f{bottom:754.125000px;}
.yb2{bottom:754.485000px;}
.y89{bottom:755.205000px;}
.y121{bottom:761.865000px;}
.ye5{bottom:763.485000px;}
.y158{bottom:763.665000px;}
.y120{bottom:765.285000px;}
.y191{bottom:773.565000px;}
.y5e{bottom:774.465000px;}
.y88{bottom:775.005000px;}
.y157{bottom:780.945000px;}
.y11f{bottom:783.105000px;}
.ye4{bottom:783.465000px;}
.y190{bottom:787.245000px;}
.y5d{bottom:794.265000px;}
.y87{bottom:794.805000px;}
.y156{bottom:798.585000px;}
.y11e{bottom:800.925000px;}
.ye3{bottom:803.265000px;}
.y18f{bottom:805.605000px;}
.y5c{bottom:814.065000px;}
.y86{bottom:814.605000px;}
.y155{bottom:815.865000px;}
.y11d{bottom:818.745000px;}
.y18e{bottom:819.285000px;}
.ye2{bottom:823.065000px;}
.y5b{bottom:833.865000px;}
.y85{bottom:834.405000px;}
.y11c{bottom:836.565000px;}
.y18d{bottom:837.645000px;}
.ye1{bottom:842.865000px;}
.y154{bottom:849.885000px;}
.y5a{bottom:853.305000px;}
.yb1{bottom:853.665000px;}
.y84{bottom:854.385000px;}
.y11b{bottom:854.565000px;}
.y18c{bottom:856.005000px;}
.ye0{bottom:862.665000px;}
.y153{bottom:869.685000px;}
.y11a{bottom:872.385000px;}
.y59{bottom:873.285000px;}
.yb0{bottom:873.645000px;}
.y83{bottom:874.185000px;}
.ydf{bottom:882.645000px;}
.y18b{bottom:888.045000px;}
.y119{bottom:890.205000px;}
.y152{bottom:890.745000px;}
.y14{bottom:892.005000px;}
.y58{bottom:893.085000px;}
.yaf{bottom:893.445000px;}
.y82{bottom:893.985000px;}
.y18a{bottom:901.950000px;}
.yde{bottom:902.490000px;}
.y118{bottom:908.070000px;}
.y13{bottom:910.950000px;}
.y151{bottom:911.310000px;}
.y57{bottom:913.290000px;}
.y81{bottom:913.470000px;}
.y189{bottom:915.630000px;}
.ydd{bottom:921.930000px;}
.y12{bottom:923.190000px;}
.y117{bottom:925.890000px;}
.y150{bottom:928.590000px;}
.y56{bottom:933.090000px;}
.y80{bottom:933.270000px;}
.y11{bottom:933.990000px;}
.ydc{bottom:941.730000px;}
.y115{bottom:943.710000px;}
.y14f{bottom:945.690000px;}
.y10{bottom:947.850000px;}
.y55{bottom:952.890000px;}
.y7f{bottom:953.610000px;}
.yf{bottom:961.710000px;}
.ydb{bottom:961.890000px;}
.y114{bottom:962.430000px;}
.y14e{bottom:962.970000px;}
.y188{bottom:966.030000px;}
.ye{bottom:969.630000px;}
.y7e{bottom:970.350000px;}
.yae{bottom:972.510000px;}
.y54{bottom:972.870000px;}
.y7d{bottom:977.910000px;}
.y187{bottom:979.890000px;}
.y113{bottom:980.250000px;}
.yda{bottom:981.870000px;}
.yd{bottom:985.110000px;}
.yad{bottom:992.310000px;}
.y53{bottom:992.670000px;}
.y14d{bottom:997.530000px;}
.y112{bottom:998.070000px;}
.y186{bottom:998.250000px;}
.y7c{bottom:1001.670000px;}
.yc{bottom:1007.790000px;}
.y185{bottom:1011.930000px;}
.y52{bottom:1012.470000px;}
.y14c{bottom:1014.810000px;}
.y111{bottom:1015.890000px;}
.y7b{bottom:1021.470000px;}
.yb{bottom:1029.210000px;}
.y184{bottom:1030.290000px;}
.y14b{bottom:1031.910000px;}
.y51{bottom:1032.270000px;}
.y110{bottom:1033.890000px;}
.y7a{bottom:1041.270000px;}
.y183{bottom:1044.150000px;}
.y14a{bottom:1049.190000px;}
.y10f{bottom:1051.710000px;}
.y50{bottom:1052.070000px;}
.y79{bottom:1061.070000px;}
.y182{bottom:1062.330000px;}
.y149{bottom:1066.470000px;}
.ya{bottom:1067.190000px;}
.y10e{bottom:1069.530000px;}
.y4f{bottom:1072.050000px;}
.y181{bottom:1076.190000px;}
.y78{bottom:1081.050000px;}
.y148{bottom:1083.750000px;}
.y109{bottom:1088.070000px;}
.y4e{bottom:1091.850000px;}
.y180{bottom:1094.550000px;}
.y77{bottom:1100.850000px;}
.y147{bottom:1101.030000px;}
.y9{bottom:1101.210000px;}
.y10b{bottom:1106.790000px;}
.y17f{bottom:1108.230000px;}
.y4d{bottom:1111.650000px;}
.y45{bottom:1112.730000px;}
.y8{bottom:1117.950000px;}
.y76{bottom:1120.650000px;}
.y17e{bottom:1122.090000px;}
.y4c{bottom:1131.450000px;}
.y146{bottom:1140.090000px;}
.y75{bottom:1140.450000px;}
.y4b{bottom:1151.280000px;}
.y17d{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y74{bottom:1159.920000px;}
.yd9{bottom:1160.280000px;}
.y6{bottom:1167.480000px;}
.y49{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y72{bottom:1178.460000px;}
.y48{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y71{bottom:1197.720000px;}
.h6{height:5.650313px;}
.he{height:12.012891px;}
.h20{height:17.805000px;}
.h25{height:17.820000px;}
.h24{height:17.842500px;}
.h29{height:17.850000px;}
.h23{height:17.985000px;}
.h26{height:18.000000px;}
.h1d{height:18.030000px;}
.h10{height:18.140625px;}
.h21{height:22.485000px;}
.h1e{height:24.105000px;}
.h1b{height:26.280000px;}
.h14{height:27.705000px;}
.hd{height:29.664141px;}
.h2b{height:29.678906px;}
.h28{height:36.390000px;}
.h22{height:36.525000px;}
.h3{height:40.985156px;}
.h1f{height:41.025000px;}
.hc{height:42.086250px;}
.h1c{height:42.150000px;}
.h15{height:42.922699px;}
.h17{height:43.215117px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h2{height:52.998047px;}
.h1a{height:53.280000px;}
.h8{height:54.421875px;}
.h12{height:55.503468px;}
.h13{height:58.651172px;}
.h9{height:60.226875px;}
.hb{height:66.543750px;}
.h11{height:66.757500px;}
.h18{height:70.474219px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.h27{height:82.676953px;}
.h2a{height:84.898125px;}
.h19{height:88.891172px;}
.ha{height:132.789375px;}
.hf{height:341.130000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:32.220000px;}
.w11{width:36.360000px;}
.w1a{width:36.540000px;}
.w13{width:37.116000px;}
.w1b{width:41.025000px;}
.w14{width:42.105000px;}
.w15{width:46.785000px;}
.wf{width:69.465000px;}
.w18{width:69.690000px;}
.w19{width:81.000000px;}
.w9{width:90.165000px;}
.wa{width:90.201000px;}
.wb{width:90.210000px;}
.w10{width:99.210000px;}
.w3{width:101.730000px;}
.w6{width:102.261000px;}
.w5{width:124.009500px;}
.w7{width:138.636000px;}
.we{width:145.461000px;}
.w17{width:189.030000px;}
.wd{width:194.610000px;}
.wc{width:225.019500px;}
.w4{width:232.050000px;}
.w16{width:249.679500px;}
.w8{width:360.780000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x14{left:8.089500px;}
.x3a{left:9.360000px;}
.x9{left:10.650000px;}
.x2f{left:11.700000px;}
.x16{left:13.305000px;}
.x1e{left:14.745000px;}
.x2e{left:16.020000px;}
.x2c{left:17.625000px;}
.x25{left:19.605000px;}
.x1f{left:21.405000px;}
.x28{left:22.890000px;}
.x8{left:26.850000px;}
.x33{left:30.060000px;}
.x18{left:32.400000px;}
.x21{left:35.460000px;}
.x20{left:38.880000px;}
.x1b{left:40.125000px;}
.x24{left:41.385000px;}
.x7{left:42.510000px;}
.x31{left:49.530000px;}
.x6{left:58.710000px;}
.x3b{left:62.490000px;}
.x30{left:72.750000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x13{left:85.546500px;}
.xc{left:108.036000px;}
.x1a{left:131.250000px;}
.x3c{left:158.250000px;}
.x12{left:178.770000px;}
.x15{left:209.565000px;}
.x22{left:303.915000px;}
.x17{left:311.835000px;}
.x32{left:328.575000px;}
.x29{left:340.275000px;}
.x10{left:359.715000px;}
.x37{left:365.115000px;}
.x2a{left:372.495000px;}
.xe{left:387.795000px;}
.x38{left:397.335000px;}
.x2b{left:409.620000px;}
.x11{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x19{left:450.480000px;}
.x2d{left:451.740000px;}
.x39{left:476.580000px;}
.x23{left:498.540000px;}
.x34{left:517.620000px;}
.x1c{left:540.660000px;}
.xf{left:556.125000px;}
.xd{left:590.370000px;}
.x1d{left:630.870000px;}
.x26{left:644.010000px;}
.x35{left:663.090000px;}
.x27{left:713.490000px;}
.x4{left:721.950000px;}
.x36{left:732.780000px;}
@media print{
.v7{vertical-align:-65.920000pt;}
.v8{vertical-align:-62.720000pt;}
.v9{vertical-align:-60.800000pt;}
.v4{vertical-align:-55.786667pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.520000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v5{vertical-align:31.360000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.478933pt;}
.ls1a{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls17{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.438933pt;}
.ls14{letter-spacing:0.736000pt;}
.ls13{letter-spacing:1.376000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls12{letter-spacing:3.360000pt;}
.ls15{letter-spacing:11.680000pt;}
.ls5{letter-spacing:59.520000pt;}
.ls4{letter-spacing:60.160000pt;}
.ls18{letter-spacing:77.280000pt;}
.ls19{letter-spacing:82.720000pt;}
.wsf{word-spacing:-48.320000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws14{word-spacing:-37.960960pt;}
.ws15{word-spacing:-37.120000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws18{word-spacing:-14.016000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.881067pt;}
.ws7{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.521067pt;}
.ws6{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-10.241067pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws9{word-spacing:-6.720000pt;}
.ws10{word-spacing:0.000000pt;}
._11{margin-left:-5.626883pt;}
._1c{margin-left:-1.851947pt;}
._4{margin-left:-0.933120pt;}
._1{width:0.965120pt;}
._e{width:2.204160pt;}
._0{width:3.192320pt;}
._3{width:4.184747pt;}
._2{width:5.202347pt;}
._9{width:6.576000pt;}
._a{width:7.872000pt;}
._18{width:8.949760pt;}
._10{width:9.989760pt;}
._d{width:10.890240pt;}
._13{width:11.797333pt;}
._f{width:13.440000pt;}
._17{width:14.538667pt;}
._b{width:15.600000pt;}
._c{width:16.720000pt;}
._16{width:18.277120pt;}
._19{width:19.388800pt;}
._1a{width:21.301120pt;}
._1b{width:22.269440pt;}
._14{width:23.160320pt;}
._15{width:24.673920pt;}
._1e{width:30.530560pt;}
._1d{width:31.755733pt;}
._22{width:34.089600pt;}
._21{width:35.022720pt;}
._23{width:36.453547pt;}
._24{width:43.041280pt;}
._1f{width:57.630720pt;}
._20{width:59.053867pt;}
._8{width:60.576427pt;}
._7{width:64.533120pt;}
._6{width:65.470080pt;}
._12{width:1630.485333pt;}
._5{width:1837.498880pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs8{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:3.840000pt;}
.y10c{bottom:4.640000pt;}
.y116{bottom:4.800000pt;}
.y2b{bottom:4.960000pt;}
.yba{bottom:5.120000pt;}
.ybf{bottom:7.040000pt;}
.ybb{bottom:7.840000pt;}
.yb7{bottom:8.320000pt;}
.y10a{bottom:12.960000pt;}
.y127{bottom:12.986667pt;}
.ybd{bottom:15.360000pt;}
.yb9{bottom:15.840000pt;}
.y46{bottom:16.160000pt;}
.y4a{bottom:16.800000pt;}
.y73{bottom:17.120000pt;}
.y2a{bottom:17.440000pt;}
.y3{bottom:17.600000pt;}
.yb5{bottom:20.320000pt;}
.y129{bottom:20.826667pt;}
.y10d{bottom:20.960000pt;}
.y29{bottom:24.160000pt;}
.y2{bottom:30.080000pt;}
.y28{bottom:37.920000pt;}
.y1{bottom:41.440000pt;}
.y27{bottom:51.680000pt;}
.y1bc{bottom:60.800000pt;}
.yac{bottom:60.960000pt;}
.y108{bottom:61.440000pt;}
.y26{bottom:65.600000pt;}
.y17c{bottom:66.560000pt;}
.y145{bottom:68.480000pt;}
.y70{bottom:71.200000pt;}
.y1bb{bottom:72.960000pt;}
.yab{bottom:78.560000pt;}
.y17b{bottom:78.880000pt;}
.y107{bottom:79.200000pt;}
.y25{bottom:79.360000pt;}
.y144{bottom:83.840000pt;}
.y44{bottom:84.320000pt;}
.y1ba{bottom:85.280000pt;}
.yd8{bottom:88.320000pt;}
.y24{bottom:93.146667pt;}
.y17a{bottom:95.040000pt;}
.yaa{bottom:96.160000pt;}
.y106{bottom:96.800000pt;}
.y1b9{bottom:97.600000pt;}
.y143{bottom:99.200000pt;}
.y43{bottom:101.920000pt;}
.yd7{bottom:105.920000pt;}
.y23{bottom:106.906667pt;}
.y179{bottom:107.360000pt;}
.y1b8{bottom:109.760000pt;}
.ya9{bottom:113.760000pt;}
.y105{bottom:114.400000pt;}
.y142{bottom:114.560000pt;}
.y42{bottom:119.520000pt;}
.y22{bottom:120.666667pt;}
.y1b7{bottom:122.080000pt;}
.yd6{bottom:123.520000pt;}
.y178{bottom:123.680000pt;}
.ya8{bottom:128.960000pt;}
.y141{bottom:129.920000pt;}
.y104{bottom:132.000000pt;}
.y1b6{bottom:134.426667pt;}
.y21{bottom:134.586667pt;}
.y177{bottom:135.866667pt;}
.y41{bottom:137.306667pt;}
.yd5{bottom:141.306667pt;}
.ya7{bottom:144.346667pt;}
.y140{bottom:145.146667pt;}
.y1b5{bottom:145.786667pt;}
.y20{bottom:148.346667pt;}
.y103{bottom:149.626667pt;}
.y2d{bottom:151.706667pt;}
.y176{bottom:152.186667pt;}
.y1b4{bottom:154.266667pt;}
.y40{bottom:154.906667pt;}
.yd4{bottom:158.906667pt;}
.ya6{bottom:159.706667pt;}
.y13f{bottom:160.506667pt;}
.y1f{bottom:162.106667pt;}
.y175{bottom:164.506667pt;}
.y102{bottom:167.386667pt;}
.y3f{bottom:172.506667pt;}
.y1b3{bottom:173.946667pt;}
.y1e{bottom:175.866667pt;}
.yd3{bottom:176.506667pt;}
.y174{bottom:176.666667pt;}
.ya5{bottom:177.466667pt;}
.y101{bottom:184.986667pt;}
.y1d{bottom:189.786667pt;}
.y3e{bottom:190.106667pt;}
.y13e{bottom:191.226667pt;}
.y173{bottom:192.986667pt;}
.yd2{bottom:194.106667pt;}
.ya4{bottom:195.066667pt;}
.y100{bottom:202.586667pt;}
.y1c{bottom:203.546667pt;}
.y172{bottom:205.306667pt;}
.y1b2{bottom:206.426667pt;}
.y13d{bottom:206.586667pt;}
.y3d{bottom:207.706667pt;}
.yd1{bottom:211.706667pt;}
.ya3{bottom:212.666667pt;}
.y1b{bottom:217.306667pt;}
.y1b1{bottom:218.746667pt;}
.yff{bottom:220.186667pt;}
.y171{bottom:221.466667pt;}
.y13c{bottom:221.786667pt;}
.y3c{bottom:225.466667pt;}
.yd0{bottom:229.466667pt;}
.ya2{bottom:230.426667pt;}
.y1b0{bottom:230.906667pt;}
.y1a{bottom:231.066667pt;}
.y170{bottom:233.786667pt;}
.y13b{bottom:237.146667pt;}
.yfe{bottom:237.786667pt;}
.y3b{bottom:243.066667pt;}
.y19{bottom:244.986667pt;}
.y16f{bottom:246.106667pt;}
.ycf{bottom:247.066667pt;}
.y1af{bottom:247.226667pt;}
.ya1{bottom:248.026667pt;}
.yfd{bottom:255.546667pt;}
.y18{bottom:258.746667pt;}
.y1ae{bottom:259.546667pt;}
.y3a{bottom:260.666667pt;}
.y16e{bottom:262.266667pt;}
.yce{bottom:264.666667pt;}
.ya0{bottom:265.626667pt;}
.y13a{bottom:267.866667pt;}
.y17{bottom:272.506667pt;}
.yfc{bottom:273.146667pt;}
.y16d{bottom:274.586667pt;}
.y1ad{bottom:275.706667pt;}
.y39{bottom:278.266667pt;}
.ycd{bottom:282.266667pt;}
.y9f{bottom:283.226667pt;}
.y1ac{bottom:288.026667pt;}
.yfb{bottom:290.746667pt;}
.y16c{bottom:290.906667pt;}
.y16{bottom:292.026667pt;}
.y38{bottom:295.866667pt;}
.y139{bottom:298.586667pt;}
.ycc{bottom:299.866667pt;}
.y1ab{bottom:300.346667pt;}
.y9e{bottom:300.826667pt;}
.y16b{bottom:303.066667pt;}
.y2c{bottom:303.226667pt;}
.yfa{bottom:308.346667pt;}
.y37{bottom:313.626667pt;}
.y138{bottom:313.786667pt;}
.y1aa{bottom:316.506667pt;}
.ycb{bottom:317.626667pt;}
.y16a{bottom:318.266667pt;}
.y9d{bottom:318.586667pt;}
.yf9{bottom:325.946667pt;}
.y1a9{bottom:328.826667pt;}
.y137{bottom:329.146667pt;}
.y36{bottom:331.226667pt;}
.yca{bottom:335.226667pt;}
.y169{bottom:335.546667pt;}
.y9c{bottom:336.186667pt;}
.yf8{bottom:343.706667pt;}
.y136{bottom:344.506667pt;}
.y1a8{bottom:345.146667pt;}
.y35{bottom:348.826667pt;}
.yc9{bottom:352.826667pt;}
.y9b{bottom:353.786667pt;}
.y168{bottom:354.626667pt;}
.y1a7{bottom:357.346667pt;}
.y135{bottom:359.906667pt;}
.yf7{bottom:361.026667pt;}
.y34{bottom:366.466667pt;}
.y1a6{bottom:369.666667pt;}
.yc8{bottom:370.466667pt;}
.y9a{bottom:371.426667pt;}
.y167{bottom:372.546667pt;}
.y134{bottom:375.266667pt;}
.yf6{bottom:378.946667pt;}
.y33{bottom:384.066667pt;}
.y1a5{bottom:385.986667pt;}
.yc7{bottom:388.066667pt;}
.y6f{bottom:388.226667pt;}
.y99{bottom:389.026667pt;}
.y133{bottom:390.626667pt;}
.yf5{bottom:396.546667pt;}
.y1a4{bottom:398.146667pt;}
.y32{bottom:401.826667pt;}
.y166{bottom:402.786667pt;}
.yc6{bottom:405.826667pt;}
.y6e{bottom:406.146667pt;}
.y98{bottom:406.786667pt;}
.yf4{bottom:414.146667pt;}
.y1a3{bottom:414.466667pt;}
.y165{bottom:418.466667pt;}
.y31{bottom:419.426667pt;}
.yc5{bottom:423.426667pt;}
.y6d{bottom:423.906667pt;}
.y97{bottom:424.386667pt;}
.y1a2{bottom:426.786667pt;}
.yf3{bottom:431.906667pt;}
.y164{bottom:433.826667pt;}
.y30{bottom:437.026667pt;}
.y132{bottom:437.346667pt;}
.yc4{bottom:441.026667pt;}
.y6c{bottom:441.506667pt;}
.y96{bottom:441.986667pt;}
.y1a1{bottom:442.946667pt;}
.yf2{bottom:449.506667pt;}
.y2f{bottom:454.306667pt;}
.y1a0{bottom:455.266667pt;}
.yc3{bottom:458.626667pt;}
.y131{bottom:458.946667pt;}
.y6b{bottom:459.106667pt;}
.y95{bottom:459.586667pt;}
.y163{bottom:464.546667pt;}
.yf1{bottom:467.106667pt;}
.y130{bottom:469.986667pt;}
.y19f{bottom:471.586667pt;}
.y2e{bottom:472.226667pt;}
.y12f{bottom:473.026667pt;}
.yc2{bottom:476.226667pt;}
.y6a{bottom:476.706667pt;}
.y94{bottom:477.186667pt;}
.y162{bottom:479.906667pt;}
.y19e{bottom:483.746667pt;}
.y15{bottom:484.386667pt;}
.yf0{bottom:484.706667pt;}
.y12e{bottom:488.866667pt;}
.yc1{bottom:492.866667pt;}
.y69{bottom:494.306667pt;}
.y93{bottom:494.946667pt;}
.y19d{bottom:500.066667pt;}
.yef{bottom:502.306667pt;}
.yc0{bottom:503.746667pt;}
.y12d{bottom:504.706667pt;}
.ybc{bottom:506.786667pt;}
.y161{bottom:510.146667pt;}
.y68{bottom:512.066667pt;}
.y19c{bottom:512.386667pt;}
.y92{bottom:512.546667pt;}
.yee{bottom:520.066667pt;}
.y12c{bottom:520.546667pt;}
.y160{bottom:525.826667pt;}
.ybe{bottom:527.426667pt;}
.y19b{bottom:528.546667pt;}
.y67{bottom:529.666667pt;}
.y91{bottom:530.146667pt;}
.y12b{bottom:536.386667pt;}
.yed{bottom:537.666667pt;}
.y15f{bottom:541.186667pt;}
.yb8{bottom:543.906667pt;}
.y19a{bottom:544.866667pt;}
.y66{bottom:547.266667pt;}
.y90{bottom:547.746667pt;}
.y12a{bottom:552.386667pt;}
.yec{bottom:555.266667pt;}
.y199{bottom:557.186667pt;}
.y65{bottom:564.866667pt;}
.y8f{bottom:565.346667pt;}
.y126{bottom:568.866667pt;}
.y15e{bottom:571.586667pt;}
.yeb{bottom:572.866667pt;}
.y198{bottom:573.346667pt;}
.yb4{bottom:582.013333pt;}
.y64{bottom:582.493333pt;}
.y8e{bottom:583.133333pt;}
.y128{bottom:585.373333pt;}
.y197{bottom:585.693333pt;}
.y15d{bottom:587.133333pt;}
.yea{bottom:590.493333pt;}
.y63{bottom:600.253333pt;}
.y8d{bottom:600.733333pt;}
.y196{bottom:602.013333pt;}
.y15c{bottom:602.493333pt;}
.yb6{bottom:606.013333pt;}
.y125{bottom:607.453333pt;}
.ye9{bottom:608.253333pt;}
.y195{bottom:614.173333pt;}
.y62{bottom:617.853333pt;}
.y8c{bottom:618.333333pt;}
.y124{bottom:625.053333pt;}
.ye8{bottom:625.853333pt;}
.y194{bottom:630.493333pt;}
.y15b{bottom:633.213333pt;}
.y61{bottom:635.453333pt;}
.y8b{bottom:635.933333pt;}
.y193{bottom:642.813333pt;}
.ye7{bottom:643.453333pt;}
.y123{bottom:644.893333pt;}
.y15a{bottom:648.573333pt;}
.y60{bottom:652.733333pt;}
.yb3{bottom:653.053333pt;}
.y8a{bottom:653.533333pt;}
.y192{bottom:658.973333pt;}
.ye6{bottom:661.053333pt;}
.y159{bottom:663.773333pt;}
.y122{bottom:666.173333pt;}
.y5f{bottom:670.333333pt;}
.yb2{bottom:670.653333pt;}
.y89{bottom:671.293333pt;}
.y121{bottom:677.213333pt;}
.ye5{bottom:678.653333pt;}
.y158{bottom:678.813333pt;}
.y120{bottom:680.253333pt;}
.y191{bottom:687.613333pt;}
.y5e{bottom:688.413333pt;}
.y88{bottom:688.893333pt;}
.y157{bottom:694.173333pt;}
.y11f{bottom:696.093333pt;}
.ye4{bottom:696.413333pt;}
.y190{bottom:699.773333pt;}
.y5d{bottom:706.013333pt;}
.y87{bottom:706.493333pt;}
.y156{bottom:709.853333pt;}
.y11e{bottom:711.933333pt;}
.ye3{bottom:714.013333pt;}
.y18f{bottom:716.093333pt;}
.y5c{bottom:723.613333pt;}
.y86{bottom:724.093333pt;}
.y155{bottom:725.213333pt;}
.y11d{bottom:727.773333pt;}
.y18e{bottom:728.253333pt;}
.ye2{bottom:731.613333pt;}
.y5b{bottom:741.213333pt;}
.y85{bottom:741.693333pt;}
.y11c{bottom:743.613333pt;}
.y18d{bottom:744.573333pt;}
.ye1{bottom:749.213333pt;}
.y154{bottom:755.453333pt;}
.y5a{bottom:758.493333pt;}
.yb1{bottom:758.813333pt;}
.y84{bottom:759.453333pt;}
.y11b{bottom:759.613333pt;}
.y18c{bottom:760.893333pt;}
.ye0{bottom:766.813333pt;}
.y153{bottom:773.053333pt;}
.y11a{bottom:775.453333pt;}
.y59{bottom:776.253333pt;}
.yb0{bottom:776.573333pt;}
.y83{bottom:777.053333pt;}
.ydf{bottom:784.573333pt;}
.y18b{bottom:789.373333pt;}
.y119{bottom:791.293333pt;}
.y152{bottom:791.773333pt;}
.y14{bottom:792.893333pt;}
.y58{bottom:793.853333pt;}
.yaf{bottom:794.173333pt;}
.y82{bottom:794.653333pt;}
.y18a{bottom:801.733333pt;}
.yde{bottom:802.213333pt;}
.y118{bottom:807.173333pt;}
.y13{bottom:809.733333pt;}
.y151{bottom:810.053333pt;}
.y57{bottom:811.813333pt;}
.y81{bottom:811.973333pt;}
.y189{bottom:813.893333pt;}
.ydd{bottom:819.493333pt;}
.y12{bottom:820.613333pt;}
.y117{bottom:823.013333pt;}
.y150{bottom:825.413333pt;}
.y56{bottom:829.413333pt;}
.y80{bottom:829.573333pt;}
.y11{bottom:830.213333pt;}
.ydc{bottom:837.093333pt;}
.y115{bottom:838.853333pt;}
.y14f{bottom:840.613333pt;}
.y10{bottom:842.533333pt;}
.y55{bottom:847.013333pt;}
.y7f{bottom:847.653333pt;}
.yf{bottom:854.853333pt;}
.ydb{bottom:855.013333pt;}
.y114{bottom:855.493333pt;}
.y14e{bottom:855.973333pt;}
.y188{bottom:858.693333pt;}
.ye{bottom:861.893333pt;}
.y7e{bottom:862.533333pt;}
.yae{bottom:864.453333pt;}
.y54{bottom:864.773333pt;}
.y7d{bottom:869.253333pt;}
.y187{bottom:871.013333pt;}
.y113{bottom:871.333333pt;}
.yda{bottom:872.773333pt;}
.yd{bottom:875.653333pt;}
.yad{bottom:882.053333pt;}
.y53{bottom:882.373333pt;}
.y14d{bottom:886.693333pt;}
.y112{bottom:887.173333pt;}
.y186{bottom:887.333333pt;}
.y7c{bottom:890.373333pt;}
.yc{bottom:895.813333pt;}
.y185{bottom:899.493333pt;}
.y52{bottom:899.973333pt;}
.y14c{bottom:902.053333pt;}
.y111{bottom:903.013333pt;}
.y7b{bottom:907.973333pt;}
.yb{bottom:914.853333pt;}
.y184{bottom:915.813333pt;}
.y14b{bottom:917.253333pt;}
.y51{bottom:917.573333pt;}
.y110{bottom:919.013333pt;}
.y7a{bottom:925.573333pt;}
.y183{bottom:928.133333pt;}
.y14a{bottom:932.613333pt;}
.y10f{bottom:934.853333pt;}
.y50{bottom:935.173333pt;}
.y79{bottom:943.173333pt;}
.y182{bottom:944.293333pt;}
.y149{bottom:947.973333pt;}
.ya{bottom:948.613333pt;}
.y10e{bottom:950.693333pt;}
.y4f{bottom:952.933333pt;}
.y181{bottom:956.613333pt;}
.y78{bottom:960.933333pt;}
.y148{bottom:963.333333pt;}
.y109{bottom:967.173333pt;}
.y4e{bottom:970.533333pt;}
.y180{bottom:972.933333pt;}
.y77{bottom:978.533333pt;}
.y147{bottom:978.693333pt;}
.y9{bottom:978.853333pt;}
.y10b{bottom:983.813333pt;}
.y17f{bottom:985.093333pt;}
.y4d{bottom:988.133333pt;}
.y45{bottom:989.093333pt;}
.y8{bottom:993.733333pt;}
.y76{bottom:996.133333pt;}
.y17e{bottom:997.413333pt;}
.y4c{bottom:1005.733333pt;}
.y146{bottom:1013.413333pt;}
.y75{bottom:1013.733333pt;}
.y4b{bottom:1023.360000pt;}
.y17d{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y74{bottom:1031.040000pt;}
.yd9{bottom:1031.360000pt;}
.y6{bottom:1037.760000pt;}
.y49{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y72{bottom:1047.520000pt;}
.y48{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y71{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.he{height:10.678125pt;}
.h20{height:15.826667pt;}
.h25{height:15.840000pt;}
.h24{height:15.860000pt;}
.h29{height:15.866667pt;}
.h23{height:15.986667pt;}
.h26{height:16.000000pt;}
.h1d{height:16.026667pt;}
.h10{height:16.125000pt;}
.h21{height:19.986667pt;}
.h1e{height:21.426667pt;}
.h1b{height:23.360000pt;}
.h14{height:24.626667pt;}
.hd{height:26.368125pt;}
.h2b{height:26.381250pt;}
.h28{height:32.346667pt;}
.h22{height:32.466667pt;}
.h3{height:36.431250pt;}
.h1f{height:36.466667pt;}
.hc{height:37.410000pt;}
.h1c{height:37.466667pt;}
.h15{height:38.153511pt;}
.h17{height:38.413438pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2{height:47.109375pt;}
.h1a{height:47.360000pt;}
.h8{height:48.375000pt;}
.h12{height:49.336416pt;}
.h13{height:52.134375pt;}
.h9{height:53.535000pt;}
.hb{height:59.150000pt;}
.h11{height:59.340000pt;}
.h18{height:62.643750pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.h27{height:73.490625pt;}
.h2a{height:75.465000pt;}
.h19{height:79.014375pt;}
.ha{height:118.035000pt;}
.hf{height:303.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:28.640000pt;}
.w11{width:32.320000pt;}
.w1a{width:32.480000pt;}
.w13{width:32.992000pt;}
.w1b{width:36.466667pt;}
.w14{width:37.426667pt;}
.w15{width:41.586667pt;}
.wf{width:61.746667pt;}
.w18{width:61.946667pt;}
.w19{width:72.000000pt;}
.w9{width:80.146667pt;}
.wa{width:80.178667pt;}
.wb{width:80.186667pt;}
.w10{width:88.186667pt;}
.w3{width:90.426667pt;}
.w6{width:90.898667pt;}
.w5{width:110.230667pt;}
.w7{width:123.232000pt;}
.we{width:129.298667pt;}
.w17{width:168.026667pt;}
.wd{width:172.986667pt;}
.wc{width:200.017333pt;}
.w4{width:206.266667pt;}
.w16{width:221.937333pt;}
.w8{width:320.693333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x14{left:7.190667pt;}
.x3a{left:8.320000pt;}
.x9{left:9.466667pt;}
.x2f{left:10.400000pt;}
.x16{left:11.826667pt;}
.x1e{left:13.106667pt;}
.x2e{left:14.240000pt;}
.x2c{left:15.666667pt;}
.x25{left:17.426667pt;}
.x1f{left:19.026667pt;}
.x28{left:20.346667pt;}
.x8{left:23.866667pt;}
.x33{left:26.720000pt;}
.x18{left:28.800000pt;}
.x21{left:31.520000pt;}
.x20{left:34.560000pt;}
.x1b{left:35.666667pt;}
.x24{left:36.786667pt;}
.x7{left:37.786667pt;}
.x31{left:44.026667pt;}
.x6{left:52.186667pt;}
.x3b{left:55.546667pt;}
.x30{left:64.666667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x13{left:76.041333pt;}
.xc{left:96.032000pt;}
.x1a{left:116.666667pt;}
.x3c{left:140.666667pt;}
.x12{left:158.906667pt;}
.x15{left:186.280000pt;}
.x22{left:270.146667pt;}
.x17{left:277.186667pt;}
.x32{left:292.066667pt;}
.x29{left:302.466667pt;}
.x10{left:319.746667pt;}
.x37{left:324.546667pt;}
.x2a{left:331.106667pt;}
.xe{left:344.706667pt;}
.x38{left:353.186667pt;}
.x2b{left:364.106667pt;}
.x11{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x19{left:400.426667pt;}
.x2d{left:401.546667pt;}
.x39{left:423.626667pt;}
.x23{left:443.146667pt;}
.x34{left:460.106667pt;}
.x1c{left:480.586667pt;}
.xf{left:494.333333pt;}
.xd{left:524.773333pt;}
.x1d{left:560.773333pt;}
.x26{left:572.453333pt;}
.x35{left:589.413333pt;}
.x27{left:634.213333pt;}
.x4{left:641.733333pt;}
.x36{left:651.360000pt;}
}




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