
    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_465771e54fc8451655cbe664.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_bf3da015592a8acf5bd65dff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.169000;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_b0d574b9b3924aa8ea1528b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.169000;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_0dfdbb3c931c554dfab5f195.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5f1a4a83d64d566ebd5dce6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_4a011f86c142818fcec6deaf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c66054b661e48abefc049b7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_cecc50a69bc533637eb1cf2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.262800px;}
.ls13{letter-spacing:-0.215400px;}
.ls1a{letter-spacing:-0.160800px;}
.lsd{letter-spacing:-0.103800px;}
.lsb{letter-spacing:-0.094800px;}
.ls18{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.046800px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.024480px;}
.ls7{letter-spacing:0.026640px;}
.ls9{letter-spacing:0.030960px;}
.ls10{letter-spacing:0.100800px;}
.lse{letter-spacing:0.135600px;}
.ls19{letter-spacing:0.195000px;}
.ls0{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.254160px;}
.ls15{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.292200px;}
.lsa{letter-spacing:0.318000px;}
.ls1{letter-spacing:0.321120px;}
.ls12{letter-spacing:0.349200px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.375000px;}
.ls1d{letter-spacing:0.493800px;}
.ls1e{letter-spacing:0.517200px;}
.ls17{letter-spacing:1.080000px;}
.ls11{letter-spacing:29.466720px;}
.ls4{letter-spacing:849.216000px;}
.ls5{letter-spacing:849.360000px;}
.lsf{letter-spacing:850.800000px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(111,164,219),0 0.015em rgb(111,164,219),0.015em 0 rgb(111,164,219),0 -0.015em  rgb(111,164,219);}
.sc6{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(48,111,182),0 0.015em rgb(48,111,182),0.015em 0 rgb(48,111,182),0 -0.015em  rgb(48,111,182);}
.sc3{text-shadow:-0.015em 0 rgb(3,72,96),0 0.015em rgb(3,72,96),0.015em 0 rgb(3,72,96),0 -0.015em  rgb(3,72,96);}
.sc2{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.sc1{text-shadow:-0.015em 0 rgb(129,180,226),0 0.015em rgb(129,180,226),0.015em 0 rgb(129,180,226),0 -0.015em  rgb(129,180,226);}
.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;}
.sc7{-webkit-text-stroke:0.015em rgb(111,164,219);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(48,111,182);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(3,72,96);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(129,180,226);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-18.846720px;}
.ws4{word-spacing:-18.745920px;}
.ws5{word-spacing:-15.949320px;}
.ws13{word-spacing:-15.875520px;}
.ws12{word-spacing:-15.852120px;}
.ws9{word-spacing:-15.792720px;}
.wsb{word-spacing:-15.707520px;}
.ws6{word-spacing:-15.683760px;}
.ws3{word-spacing:-15.678720px;}
.ws2{word-spacing:-15.657120px;}
.ws8{word-spacing:-15.553320px;}
.ws11{word-spacing:-15.382800px;}
.wsf{word-spacing:-15.358320px;}
.wsd{word-spacing:-15.311520px;}
.ws10{word-spacing:-15.197520px;}
.wsc{word-spacing:-15.142920px;}
.ws7{word-spacing:-14.148000px;}
.wse{word-spacing:-14.094000px;}
.ws1{word-spacing:-9.992160px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-15.657120px;}
._14{margin-left:-3.165840px;}
._1{margin-left:-1.562400px;}
._2{width:1.134000px;}
._1b{width:2.164320px;}
._4{width:3.167280px;}
._10{width:5.139360px;}
._5{width:6.517680px;}
._1c{width:7.527360px;}
._15{width:8.665200px;}
._e{width:10.338480px;}
._12{width:11.953440px;}
._13{width:13.097520px;}
._f{width:14.103360px;}
._17{width:16.380000px;}
._c{width:18.047520px;}
._16{width:19.723680px;}
._1f{width:20.750880px;}
._1e{width:21.872160px;}
._1d{width:25.046400px;}
._1a{width:26.234640px;}
._d{width:27.491040px;}
._20{width:29.467200px;}
._21{width:30.758640px;}
._19{width:33.646320px;}
._18{width:34.780320px;}
._22{width:36.395280px;}
._23{width:37.835040px;}
._b{width:60.058800px;}
._6{width:71.400000px;}
._11{width:143.289120px;}
._a{width:171.414720px;}
._7{width:197.496000px;}
._3{width:206.151840px;}
._9{width:367.206000px;}
._8{width:2503.019040px;}
.fc5{color:transparent;}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(129,180,226);}
.fc2{color:rgb(9,56,77);}
.fc6{color:rgb(48,111,182);}
.fc1{color:rgb(3,72,96);}
.fc8{color:rgb(111,164,219);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.780000px;}
.y4a{bottom:8.280000px;}
.y34{bottom:8.460000px;}
.y2d{bottom:12.780000px;}
.y9b{bottom:12.960000px;}
.y2e{bottom:13.140000px;}
.y92{bottom:14.760000px;}
.y3e{bottom:17.280000px;}
.y8b{bottom:20.700000px;}
.ya3{bottom:21.960000px;}
.y5c{bottom:22.140000px;}
.y77{bottom:22.170000px;}
.y85{bottom:22.185000px;}
.y99{bottom:22.500000px;}
.y90{bottom:23.400000px;}
.y93{bottom:23.940000px;}
.y19{bottom:24.120000px;}
.y17{bottom:24.300000px;}
.y1c{bottom:24.345000px;}
.y15{bottom:24.660000px;}
.y36{bottom:26.100000px;}
.y33{bottom:26.280000px;}
.y44{bottom:26.310000px;}
.y38{bottom:26.325000px;}
.y9e{bottom:27.360000px;}
.y94{bottom:29.340000px;}
.y6{bottom:30.420000px;}
.y9d{bottom:30.600000px;}
.y8c{bottom:31.140000px;}
.y29{bottom:31.860000px;}
.y91{bottom:33.120000px;}
.y30{bottom:35.100000px;}
.y41{bottom:35.130000px;}
.y8d{bottom:36.540000px;}
.ya0{bottom:39.825000px;}
.y7d{bottom:40.320000px;}
.y76{bottom:40.350000px;}
.y84{bottom:40.365000px;}
.y5b{bottom:40.500000px;}
.y8a{bottom:40.680000px;}
.y95{bottom:41.760000px;}
.y32{bottom:44.100000px;}
.y43{bottom:44.130000px;}
.y39{bottom:44.145000px;}
.ya4{bottom:45.765000px;}
.y80{bottom:49.005000px;}
.y9a{bottom:49.500000px;}
.y86{bottom:49.545000px;}
.y5{bottom:53.640000px;}
.y87{bottom:54.945000px;}
.y8e{bottom:56.340000px;}
.ya6{bottom:58.140000px;}
.ya2{bottom:58.545000px;}
.y5a{bottom:58.680000px;}
.y75{bottom:58.710000px;}
.y83{bottom:58.725000px;}
.y31{bottom:61.740000px;}
.y3b{bottom:61.920000px;}
.y42{bottom:61.950000px;}
.ya7{bottom:64.080000px;}
.yc7{bottom:64.800000px;}
.y7a{bottom:67.140000px;}
.ya1{bottom:67.725000px;}
.y5f{bottom:67.860000px;}
.yff{bottom:70.596000px;}
.y7e{bottom:73.080000px;}
.y7c{bottom:76.860000px;}
.y74{bottom:76.890000px;}
.y82{bottom:76.905000px;}
.y54{bottom:77.040000px;}
.y4{bottom:77.076000px;}
.y55{bottom:77.580000px;}
.y3d{bottom:79.740000px;}
.y119{bottom:82.656000px;}
.y52{bottom:86.040000px;}
.yfe{bottom:91.656000px;}
.y88{bottom:92.925000px;}
.y53{bottom:95.220000px;}
.y73{bottom:95.250000px;}
.y81{bottom:95.265000px;}
.y3c{bottom:97.560000px;}
.yde{bottom:97.776000px;}
.y118{bottom:103.716000px;}
.yc6{bottom:103.896000px;}
.y5e{bottom:104.400000px;}
.y67{bottom:104.430000px;}
.yfd{bottom:112.536000px;}
.y7b{bottom:113.400000px;}
.y59{bottom:113.580000px;}
.y72{bottom:113.610000px;}
.y135{bottom:121.716000px;}
.y66{bottom:122.610000px;}
.y117{bottom:124.776000px;}
.y58{bottom:131.760000px;}
.y71{bottom:131.790000px;}
.yfc{bottom:133.596000px;}
.ydd{bottom:136.836000px;}
.y65{bottom:140.970000px;}
.yc5{bottom:142.776000px;}
.y116{bottom:145.656000px;}
.y61{bottom:149.610000px;}
.y57{bottom:150.120000px;}
.y68{bottom:150.150000px;}
.y78{bottom:150.690000px;}
.yfb{bottom:154.650000px;}
.y64{bottom:159.330000px;}
.y134{bottom:163.650000px;}
.y70{bottom:168.330000px;}
.y56{bottom:168.480000px;}
.y96{bottom:173.010000px;}
.ydc{bottom:175.890000px;}
.y63{bottom:177.510000px;}
.yc4{bottom:181.830000px;}
.y115{bottom:184.710000px;}
.y6f{bottom:186.690000px;}
.y8f{bottom:189.390000px;}
.yfa{bottom:193.710000px;}
.y62{bottom:195.870000px;}
.y133{bottom:202.710000px;}
.y6e{bottom:204.870000px;}
.y114{bottom:205.770000px;}
.ydb{bottom:214.770000px;}
.yc3{bottom:220.890000px;}
.y6d{bottom:223.230000px;}
.y132{bottom:223.770000px;}
.y113{bottom:226.830000px;}
.yf9{bottom:235.650000px;}
.y6c{bottom:241.590000px;}
.y1f{bottom:244.650000px;}
.y89{bottom:250.950000px;}
.yda{bottom:253.830000px;}
.yf8{bottom:256.710000px;}
.y6b{bottom:259.770000px;}
.yc2{bottom:259.950000px;}
.y4e{bottom:261.030000px;}
.y131{bottom:262.830000px;}
.y112{bottom:265.890000px;}
.y1e{bottom:272.190000px;}
.y4d{bottom:274.890000px;}
.y6a{bottom:278.130000px;}
.y130{bottom:283.890000px;}
.y111{bottom:286.770000px;}
.yd9{bottom:292.890000px;}
.yf7{bottom:295.770000px;}
.y69{bottom:296.355000px;}
.y1d{bottom:297.030000px;}
.yc1{bottom:299.010000px;}
.y12f{bottom:304.770000px;}
.yd8{bottom:313.950000px;}
.y4c{bottom:314.310000px;}
.y1b{bottom:316.830000px;}
.y110{bottom:325.830000px;}
.y7f{bottom:327.090000px;}
.yd7{bottom:335.010000px;}
.yc0{bottom:337.935000px;}
.y12e{bottom:343.875000px;}
.y10f{bottom:346.935000px;}
.y4b{bottom:353.775000px;}
.yd6{bottom:355.935000px;}
.yf6{bottom:358.815000px;}
.y12d{bottom:364.935000px;}
.y10e{bottom:367.995000px;}
.y49{bottom:375.375000px;}
.ybf{bottom:376.995000px;}
.y1a{bottom:381.495000px;}
.y12c{bottom:385.995000px;}
.yd5{bottom:394.995000px;}
.y48{bottom:396.975000px;}
.yf5{bottom:397.875000px;}
.y10d{bottom:407.055000px;}
.ybe{bottom:416.055000px;}
.yf4{bottom:418.935000px;}
.y12b{bottom:425.055000px;}
.y10c{bottom:427.935000px;}
.yd4{bottom:434.055000px;}
.y47{bottom:436.215000px;}
.y79{bottom:439.815000px;}
.yf3{bottom:439.995000px;}
.y18{bottom:445.935000px;}
.y10b{bottom:448.995000px;}
.ybd{bottom:455.115000px;}
.yf2{bottom:461.055000px;}
.yd3{bottom:473.115000px;}
.y46{bottom:475.635000px;}
.y12a{bottom:484.995000px;}
.y10a{bottom:488.055000px;}
.ybc{bottom:493.995000px;}
.yf1{bottom:499.935000px;}
.y129{bottom:506.055000px;}
.y109{bottom:509.115000px;}
.y16{bottom:510.375000px;}
.yf0{bottom:520.995000px;}
.ybb{bottom:533.055000px;}
.yef{bottom:542.055000px;}
.y128{bottom:545.115000px;}
.y108{bottom:547.995000px;}
.y45{bottom:550.695000px;}
.yd2{bottom:554.115000px;}
.yee{bottom:563.115000px;}
.y127{bottom:565.995000px;}
.y107{bottom:569.055000px;}
.yba{bottom:572.115000px;}
.y14{bottom:574.995000px;}
.y60{bottom:589.035000px;}
.y40{bottom:590.115000px;}
.yd1{bottom:593.175000px;}
.yed{bottom:601.995000px;}
.y126{bottom:605.085000px;}
.y106{bottom:608.145000px;}
.yb9{bottom:611.205000px;}
.yd0{bottom:614.265000px;}
.yec{bottom:623.085000px;}
.y105{bottom:629.205000px;}
.y13{bottom:641.085000px;}
.yeb{bottom:644.145000px;}
.yb8{bottom:650.265000px;}
.ycf{bottom:653.145000px;}
.ya9{bottom:662.325000px;}
.y3f{bottom:665.205000px;}
.y12{bottom:670.965000px;}
.yb7{bottom:671.145000px;}
.yce{bottom:674.205000px;}
.ya8{bottom:686.985000px;}
.y104{bottom:689.145000px;}
.yb6{bottom:692.205000px;}
.ya5{bottom:701.925000px;}
.yea{bottom:704.265000px;}
.y11{bottom:704.625000px;}
.y103{bottom:710.205000px;}
.ycd{bottom:713.265000px;}
.ye9{bottom:725.145000px;}
.yb5{bottom:731.265000px;}
.ycc{bottom:734.325000px;}
.y3a{bottom:744.045000px;}
.ye8{bottom:746.205000px;}
.yb4{bottom:752.325000px;}
.y10{bottom:760.245000px;}
.y125{bottom:764.205000px;}
.ye7{bottom:767.265000px;}
.y102{bottom:770.325000px;}
.ycb{bottom:773.385000px;}
.y124{bottom:785.265000px;}
.yb3{bottom:791.385000px;}
.yca{bottom:794.265000px;}
.y28{bottom:797.865000px;}
.ye6{bottom:806.325000px;}
.yb2{bottom:812.265000px;}
.yf{bottom:818.565000px;}
.ye5{bottom:827.385000px;}
.y9f{bottom:832.965000px;}
.yb1{bottom:833.325000px;}
.y27{bottom:839.805000px;}
.y123{bottom:845.385000px;}
.ye4{bottom:848.265000px;}
.y101{bottom:851.325000px;}
.ye{bottom:852.225000px;}
.yb0{bottom:854.385000px;}
.y37{bottom:854.745000px;}
.y122{bottom:866.265000px;}
.y26{bottom:868.785000px;}
.ye3{bottom:869.325000px;}
.y100{bottom:872.430000px;}
.y136{bottom:875.490000px;}
.yd{bottom:882.690000px;}
.yaf{bottom:893.490000px;}
.y25{bottom:896.550000px;}
.y51{bottom:902.850000px;}
.y121{bottom:905.370000px;}
.ye2{bottom:908.430000px;}
.y35{bottom:912.030000px;}
.yc9{bottom:914.550000px;}
.y120{bottom:926.430000px;}
.y9c{bottom:927.330000px;}
.ye1{bottom:929.490000px;}
.yae{bottom:932.550000px;}
.y24{bottom:942.990000px;}
.y11f{bottom:947.490000px;}
.ye0{bottom:950.550000px;}
.y2f{bottom:951.450000px;}
.yc8{bottom:953.430000px;}
.yad{bottom:971.430000px;}
.y11e{bottom:986.550000px;}
.y23{bottom:992.130000px;}
.yac{bottom:992.490000px;}
.yc{bottom:1003.290000px;}
.y98{bottom:1003.470000px;}
.y11d{bottom:1007.430000px;}
.ydf{bottom:1010.490000px;}
.y22{bottom:1016.970000px;}
.y2c{bottom:1026.510000px;}
.y11c{bottom:1028.490000px;}
.yab{bottom:1031.550000px;}
.yb{bottom:1036.950000px;}
.y21{bottom:1039.290000px;}
.ya{bottom:1061.610000px;}
.y11b{bottom:1067.550000px;}
.yaa{bottom:1070.610000px;}
.y20{bottom:1077.450000px;}
.y2b{bottom:1082.130000px;}
.y9{bottom:1086.450000px;}
.y11a{bottom:1088.610000px;}
.y97{bottom:1091.310000px;}
.y50{bottom:1091.490000px;}
.y4f{bottom:1109.670000px;}
.y8{bottom:1111.110000px;}
.y3{bottom:1137.030000px;}
.y2{bottom:1164.420000px;}
.y7{bottom:1183.500000px;}
.y2a{bottom:1186.560000px;}
.y1{bottom:1191.960000px;}
.h23{height:2.522880px;}
.h18{height:20.700000px;}
.h19{height:20.880000px;}
.hf{height:30.420000px;}
.h7{height:37.752480px;}
.h12{height:38.520000px;}
.h15{height:38.700000px;}
.h1a{height:38.736000px;}
.h10{height:40.548960px;}
.h3{height:42.258240px;}
.h1d{height:44.820000px;}
.hb{height:46.841040px;}
.h4{height:47.304000px;}
.h9{height:48.780000px;}
.ha{height:48.816000px;}
.h21{height:49.680000px;}
.h8{height:49.896000px;}
.h2{height:52.349760px;}
.h5{height:52.434000px;}
.h29{height:55.503491px;}
.h13{height:56.556000px;}
.hc{height:58.026960px;}
.h26{height:58.500000px;}
.h1b{height:61.423863px;}
.he{height:64.319040px;}
.h1f{height:68.084282px;}
.hd{height:69.912000px;}
.h25{height:73.080000px;}
.h22{height:74.004654px;}
.h11{height:74.160000px;}
.h17{height:74.340000px;}
.h16{height:74.376000px;}
.h27{height:91.296000px;}
.h24{height:109.656000px;}
.h14{height:109.980000px;}
.h28{height:127.980000px;}
.h20{height:146.340000px;}
.h6{height:151.709040px;}
.h1c{height:182.880000px;}
.h1e{height:310.935000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:40.860000px;}
.w11{width:41.760000px;}
.w14{width:48.276000px;}
.wc{width:51.696000px;}
.wa{width:55.836000px;}
.w16{width:68.256000px;}
.we{width:73.800000px;}
.w17{width:84.780000px;}
.w1a{width:92.736000px;}
.w19{width:99.180000px;}
.w18{width:101.736000px;}
.w12{width:105.120000px;}
.wf{width:105.516000px;}
.w15{width:110.340000px;}
.w1b{width:110.700000px;}
.w10{width:116.136000px;}
.w13{width:117.936000px;}
.wb{width:124.740000px;}
.w8{width:184.170000px;}
.w6{width:184.530000px;}
.w4{width:275.295000px;}
.w5{width:438.375000px;}
.w9{width:536.505000px;}
.w7{width:536.865000px;}
.w3{width:714.390000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:4.140000px;}
.x3{left:5.939987px;}
.xb{left:7.056000px;}
.x13{left:8.280000px;}
.x22{left:10.260000px;}
.x11{left:11.879987px;}
.x23{left:14.220000px;}
.x20{left:15.480000px;}
.x2f{left:16.560000px;}
.x1d{left:18.000000px;}
.x34{left:19.260000px;}
.x19{left:21.285000px;}
.x15{left:22.356000px;}
.x26{left:24.480000px;}
.x29{left:26.460000px;}
.x2b{left:28.440000px;}
.x27{left:32.220000px;}
.x25{left:34.380000px;}
.x28{left:35.820000px;}
.x1f{left:37.620000px;}
.x17{left:39.414000px;}
.x2a{left:45.360000px;}
.x31{left:50.940000px;}
.x1c{left:52.770000px;}
.x36{left:55.440000px;}
.x12{left:77.760000px;}
.x1{left:84.959987px;}
.xe{left:93.635987px;}
.x38{left:120.635987px;}
.x2c{left:135.036000px;}
.xf{left:138.995987px;}
.x16{left:142.416000px;}
.xa{left:143.855987px;}
.x39{left:147.635987px;}
.x2d{left:246.090000px;}
.x14{left:262.290000px;}
.x18{left:267.870000px;}
.x8{left:306.434987px;}
.x2e{left:315.075000px;}
.x1a{left:320.295000px;}
.x9{left:354.134987px;}
.xc{left:361.875000px;}
.x30{left:400.575000px;}
.x1b{left:436.395000px;}
.xd{left:439.274987px;}
.x2{left:440.534987px;}
.x3a{left:441.614987px;}
.x10{left:442.694987px;}
.x4{left:446.474987px;}
.x5{left:450.794987px;}
.x32{left:503.205000px;}
.x7{left:523.724987px;}
.x1e{left:542.805000px;}
.x33{left:603.105000px;}
.x21{left:659.670000px;}
.x35{left:696.570000px;}
.x24{left:702.150000px;}
.x6{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.233600pt;}
.ls13{letter-spacing:-0.191467pt;}
.ls1a{letter-spacing:-0.142933pt;}
.lsd{letter-spacing:-0.092267pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls18{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.041600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.021760pt;}
.ls7{letter-spacing:0.023680pt;}
.ls9{letter-spacing:0.027520pt;}
.ls10{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.120533pt;}
.ls19{letter-spacing:0.173333pt;}
.ls0{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.225920pt;}
.ls15{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.259733pt;}
.lsa{letter-spacing:0.282667pt;}
.ls1{letter-spacing:0.285440pt;}
.ls12{letter-spacing:0.310400pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.333333pt;}
.ls1d{letter-spacing:0.438933pt;}
.ls1e{letter-spacing:0.459733pt;}
.ls17{letter-spacing:0.960000pt;}
.ls11{letter-spacing:26.192640pt;}
.ls4{letter-spacing:754.858667pt;}
.ls5{letter-spacing:754.986667pt;}
.lsf{letter-spacing:756.266667pt;}
.wsa{word-spacing:-16.752640pt;}
.ws4{word-spacing:-16.663040pt;}
.ws5{word-spacing:-14.177173pt;}
.ws13{word-spacing:-14.111573pt;}
.ws12{word-spacing:-14.090773pt;}
.ws9{word-spacing:-14.037973pt;}
.wsb{word-spacing:-13.962240pt;}
.ws6{word-spacing:-13.941120pt;}
.ws3{word-spacing:-13.936640pt;}
.ws2{word-spacing:-13.917440pt;}
.ws8{word-spacing:-13.825173pt;}
.ws11{word-spacing:-13.673600pt;}
.wsf{word-spacing:-13.651840pt;}
.wsd{word-spacing:-13.610240pt;}
.ws10{word-spacing:-13.508907pt;}
.wsc{word-spacing:-13.460373pt;}
.ws7{word-spacing:-12.576000pt;}
.wse{word-spacing:-12.528000pt;}
.ws1{word-spacing:-8.881920pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-13.917440pt;}
._14{margin-left:-2.814080pt;}
._1{margin-left:-1.388800pt;}
._2{width:1.008000pt;}
._1b{width:1.923840pt;}
._4{width:2.815360pt;}
._10{width:4.568320pt;}
._5{width:5.793493pt;}
._1c{width:6.690987pt;}
._15{width:7.702400pt;}
._e{width:9.189760pt;}
._12{width:10.625280pt;}
._13{width:11.642240pt;}
._f{width:12.536320pt;}
._17{width:14.560000pt;}
._c{width:16.042240pt;}
._16{width:17.532160pt;}
._1f{width:18.445227pt;}
._1e{width:19.441920pt;}
._1d{width:22.263467pt;}
._1a{width:23.319680pt;}
._d{width:24.436480pt;}
._20{width:26.193067pt;}
._21{width:27.341013pt;}
._19{width:29.907840pt;}
._18{width:30.915840pt;}
._22{width:32.351360pt;}
._23{width:33.631147pt;}
._b{width:53.385600pt;}
._6{width:63.466667pt;}
._11{width:127.368107pt;}
._a{width:152.368640pt;}
._7{width:175.552000pt;}
._3{width:183.246080pt;}
._9{width:326.405333pt;}
._8{width:2224.905813pt;}
.fs8{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.360000pt;}
.y4a{bottom:7.360000pt;}
.y34{bottom:7.520000pt;}
.y2d{bottom:11.360000pt;}
.y9b{bottom:11.520000pt;}
.y2e{bottom:11.680000pt;}
.y92{bottom:13.120000pt;}
.y3e{bottom:15.360000pt;}
.y8b{bottom:18.400000pt;}
.ya3{bottom:19.520000pt;}
.y5c{bottom:19.680000pt;}
.y77{bottom:19.706667pt;}
.y85{bottom:19.720000pt;}
.y99{bottom:20.000000pt;}
.y90{bottom:20.800000pt;}
.y93{bottom:21.280000pt;}
.y19{bottom:21.440000pt;}
.y17{bottom:21.600000pt;}
.y1c{bottom:21.640000pt;}
.y15{bottom:21.920000pt;}
.y36{bottom:23.200000pt;}
.y33{bottom:23.360000pt;}
.y44{bottom:23.386667pt;}
.y38{bottom:23.400000pt;}
.y9e{bottom:24.320000pt;}
.y94{bottom:26.080000pt;}
.y6{bottom:27.040000pt;}
.y9d{bottom:27.200000pt;}
.y8c{bottom:27.680000pt;}
.y29{bottom:28.320000pt;}
.y91{bottom:29.440000pt;}
.y30{bottom:31.200000pt;}
.y41{bottom:31.226667pt;}
.y8d{bottom:32.480000pt;}
.ya0{bottom:35.400000pt;}
.y7d{bottom:35.840000pt;}
.y76{bottom:35.866667pt;}
.y84{bottom:35.880000pt;}
.y5b{bottom:36.000000pt;}
.y8a{bottom:36.160000pt;}
.y95{bottom:37.120000pt;}
.y32{bottom:39.200000pt;}
.y43{bottom:39.226667pt;}
.y39{bottom:39.240000pt;}
.ya4{bottom:40.680000pt;}
.y80{bottom:43.560000pt;}
.y9a{bottom:44.000000pt;}
.y86{bottom:44.040000pt;}
.y5{bottom:47.680000pt;}
.y87{bottom:48.840000pt;}
.y8e{bottom:50.080000pt;}
.ya6{bottom:51.680000pt;}
.ya2{bottom:52.040000pt;}
.y5a{bottom:52.160000pt;}
.y75{bottom:52.186667pt;}
.y83{bottom:52.200000pt;}
.y31{bottom:54.880000pt;}
.y3b{bottom:55.040000pt;}
.y42{bottom:55.066667pt;}
.ya7{bottom:56.960000pt;}
.yc7{bottom:57.600000pt;}
.y7a{bottom:59.680000pt;}
.ya1{bottom:60.200000pt;}
.y5f{bottom:60.320000pt;}
.yff{bottom:62.752000pt;}
.y7e{bottom:64.960000pt;}
.y7c{bottom:68.320000pt;}
.y74{bottom:68.346667pt;}
.y82{bottom:68.360000pt;}
.y54{bottom:68.480000pt;}
.y4{bottom:68.512000pt;}
.y55{bottom:68.960000pt;}
.y3d{bottom:70.880000pt;}
.y119{bottom:73.472000pt;}
.y52{bottom:76.480000pt;}
.yfe{bottom:81.472000pt;}
.y88{bottom:82.600000pt;}
.y53{bottom:84.640000pt;}
.y73{bottom:84.666667pt;}
.y81{bottom:84.680000pt;}
.y3c{bottom:86.720000pt;}
.yde{bottom:86.912000pt;}
.y118{bottom:92.192000pt;}
.yc6{bottom:92.352000pt;}
.y5e{bottom:92.800000pt;}
.y67{bottom:92.826667pt;}
.yfd{bottom:100.032000pt;}
.y7b{bottom:100.800000pt;}
.y59{bottom:100.960000pt;}
.y72{bottom:100.986667pt;}
.y135{bottom:108.192000pt;}
.y66{bottom:108.986667pt;}
.y117{bottom:110.912000pt;}
.y58{bottom:117.120000pt;}
.y71{bottom:117.146667pt;}
.yfc{bottom:118.752000pt;}
.ydd{bottom:121.632000pt;}
.y65{bottom:125.306667pt;}
.yc5{bottom:126.912000pt;}
.y116{bottom:129.472000pt;}
.y61{bottom:132.986667pt;}
.y57{bottom:133.440000pt;}
.y68{bottom:133.466667pt;}
.y78{bottom:133.946667pt;}
.yfb{bottom:137.466667pt;}
.y64{bottom:141.626667pt;}
.y134{bottom:145.466667pt;}
.y70{bottom:149.626667pt;}
.y56{bottom:149.760000pt;}
.y96{bottom:153.786667pt;}
.ydc{bottom:156.346667pt;}
.y63{bottom:157.786667pt;}
.yc4{bottom:161.626667pt;}
.y115{bottom:164.186667pt;}
.y6f{bottom:165.946667pt;}
.y8f{bottom:168.346667pt;}
.yfa{bottom:172.186667pt;}
.y62{bottom:174.106667pt;}
.y133{bottom:180.186667pt;}
.y6e{bottom:182.106667pt;}
.y114{bottom:182.906667pt;}
.ydb{bottom:190.906667pt;}
.yc3{bottom:196.346667pt;}
.y6d{bottom:198.426667pt;}
.y132{bottom:198.906667pt;}
.y113{bottom:201.626667pt;}
.yf9{bottom:209.466667pt;}
.y6c{bottom:214.746667pt;}
.y1f{bottom:217.466667pt;}
.y89{bottom:223.066667pt;}
.yda{bottom:225.626667pt;}
.yf8{bottom:228.186667pt;}
.y6b{bottom:230.906667pt;}
.yc2{bottom:231.066667pt;}
.y4e{bottom:232.026667pt;}
.y131{bottom:233.626667pt;}
.y112{bottom:236.346667pt;}
.y1e{bottom:241.946667pt;}
.y4d{bottom:244.346667pt;}
.y6a{bottom:247.226667pt;}
.y130{bottom:252.346667pt;}
.y111{bottom:254.906667pt;}
.yd9{bottom:260.346667pt;}
.yf7{bottom:262.906667pt;}
.y69{bottom:263.426667pt;}
.y1d{bottom:264.026667pt;}
.yc1{bottom:265.786667pt;}
.y12f{bottom:270.906667pt;}
.yd8{bottom:279.066667pt;}
.y4c{bottom:279.386667pt;}
.y1b{bottom:281.626667pt;}
.y110{bottom:289.626667pt;}
.y7f{bottom:290.746667pt;}
.yd7{bottom:297.786667pt;}
.yc0{bottom:300.386667pt;}
.y12e{bottom:305.666667pt;}
.y10f{bottom:308.386667pt;}
.y4b{bottom:314.466667pt;}
.yd6{bottom:316.386667pt;}
.yf6{bottom:318.946667pt;}
.y12d{bottom:324.386667pt;}
.y10e{bottom:327.106667pt;}
.y49{bottom:333.666667pt;}
.ybf{bottom:335.106667pt;}
.y1a{bottom:339.106667pt;}
.y12c{bottom:343.106667pt;}
.yd5{bottom:351.106667pt;}
.y48{bottom:352.866667pt;}
.yf5{bottom:353.666667pt;}
.y10d{bottom:361.826667pt;}
.ybe{bottom:369.826667pt;}
.yf4{bottom:372.386667pt;}
.y12b{bottom:377.826667pt;}
.y10c{bottom:380.386667pt;}
.yd4{bottom:385.826667pt;}
.y47{bottom:387.746667pt;}
.y79{bottom:390.946667pt;}
.yf3{bottom:391.106667pt;}
.y18{bottom:396.386667pt;}
.y10b{bottom:399.106667pt;}
.ybd{bottom:404.546667pt;}
.yf2{bottom:409.826667pt;}
.yd3{bottom:420.546667pt;}
.y46{bottom:422.786667pt;}
.y12a{bottom:431.106667pt;}
.y10a{bottom:433.826667pt;}
.ybc{bottom:439.106667pt;}
.yf1{bottom:444.386667pt;}
.y129{bottom:449.826667pt;}
.y109{bottom:452.546667pt;}
.y16{bottom:453.666667pt;}
.yf0{bottom:463.106667pt;}
.ybb{bottom:473.826667pt;}
.yef{bottom:481.826667pt;}
.y128{bottom:484.546667pt;}
.y108{bottom:487.106667pt;}
.y45{bottom:489.506667pt;}
.yd2{bottom:492.546667pt;}
.yee{bottom:500.546667pt;}
.y127{bottom:503.106667pt;}
.y107{bottom:505.826667pt;}
.yba{bottom:508.546667pt;}
.y14{bottom:511.106667pt;}
.y60{bottom:523.586667pt;}
.y40{bottom:524.546667pt;}
.yd1{bottom:527.266667pt;}
.yed{bottom:535.106667pt;}
.y126{bottom:537.853333pt;}
.y106{bottom:540.573333pt;}
.yb9{bottom:543.293333pt;}
.yd0{bottom:546.013333pt;}
.yec{bottom:553.853333pt;}
.y105{bottom:559.293333pt;}
.y13{bottom:569.853333pt;}
.yeb{bottom:572.573333pt;}
.yb8{bottom:578.013333pt;}
.ycf{bottom:580.573333pt;}
.ya9{bottom:588.733333pt;}
.y3f{bottom:591.293333pt;}
.y12{bottom:596.413333pt;}
.yb7{bottom:596.573333pt;}
.yce{bottom:599.293333pt;}
.ya8{bottom:610.653333pt;}
.y104{bottom:612.573333pt;}
.yb6{bottom:615.293333pt;}
.ya5{bottom:623.933333pt;}
.yea{bottom:626.013333pt;}
.y11{bottom:626.333333pt;}
.y103{bottom:631.293333pt;}
.ycd{bottom:634.013333pt;}
.ye9{bottom:644.573333pt;}
.yb5{bottom:650.013333pt;}
.ycc{bottom:652.733333pt;}
.y3a{bottom:661.373333pt;}
.ye8{bottom:663.293333pt;}
.yb4{bottom:668.733333pt;}
.y10{bottom:675.773333pt;}
.y125{bottom:679.293333pt;}
.ye7{bottom:682.013333pt;}
.y102{bottom:684.733333pt;}
.ycb{bottom:687.453333pt;}
.y124{bottom:698.013333pt;}
.yb3{bottom:703.453333pt;}
.yca{bottom:706.013333pt;}
.y28{bottom:709.213333pt;}
.ye6{bottom:716.733333pt;}
.yb2{bottom:722.013333pt;}
.yf{bottom:727.613333pt;}
.ye5{bottom:735.453333pt;}
.y9f{bottom:740.413333pt;}
.yb1{bottom:740.733333pt;}
.y27{bottom:746.493333pt;}
.y123{bottom:751.453333pt;}
.ye4{bottom:754.013333pt;}
.y101{bottom:756.733333pt;}
.ye{bottom:757.533333pt;}
.yb0{bottom:759.453333pt;}
.y37{bottom:759.773333pt;}
.y122{bottom:770.013333pt;}
.y26{bottom:772.253333pt;}
.ye3{bottom:772.733333pt;}
.y100{bottom:775.493333pt;}
.y136{bottom:778.213333pt;}
.yd{bottom:784.613333pt;}
.yaf{bottom:794.213333pt;}
.y25{bottom:796.933333pt;}
.y51{bottom:802.533333pt;}
.y121{bottom:804.773333pt;}
.ye2{bottom:807.493333pt;}
.y35{bottom:810.693333pt;}
.yc9{bottom:812.933333pt;}
.y120{bottom:823.493333pt;}
.y9c{bottom:824.293333pt;}
.ye1{bottom:826.213333pt;}
.yae{bottom:828.933333pt;}
.y24{bottom:838.213333pt;}
.y11f{bottom:842.213333pt;}
.ye0{bottom:844.933333pt;}
.y2f{bottom:845.733333pt;}
.yc8{bottom:847.493333pt;}
.yad{bottom:863.493333pt;}
.y11e{bottom:876.933333pt;}
.y23{bottom:881.893333pt;}
.yac{bottom:882.213333pt;}
.yc{bottom:891.813333pt;}
.y98{bottom:891.973333pt;}
.y11d{bottom:895.493333pt;}
.ydf{bottom:898.213333pt;}
.y22{bottom:903.973333pt;}
.y2c{bottom:912.453333pt;}
.y11c{bottom:914.213333pt;}
.yab{bottom:916.933333pt;}
.yb{bottom:921.733333pt;}
.y21{bottom:923.813333pt;}
.ya{bottom:943.653333pt;}
.y11b{bottom:948.933333pt;}
.yaa{bottom:951.653333pt;}
.y20{bottom:957.733333pt;}
.y2b{bottom:961.893333pt;}
.y9{bottom:965.733333pt;}
.y11a{bottom:967.653333pt;}
.y97{bottom:970.053333pt;}
.y50{bottom:970.213333pt;}
.y4f{bottom:986.373333pt;}
.y8{bottom:987.653333pt;}
.y3{bottom:1010.693333pt;}
.y2{bottom:1035.040000pt;}
.y7{bottom:1052.000000pt;}
.y2a{bottom:1054.720000pt;}
.y1{bottom:1059.520000pt;}
.h23{height:2.242560pt;}
.h18{height:18.400000pt;}
.h19{height:18.560000pt;}
.hf{height:27.040000pt;}
.h7{height:33.557760pt;}
.h12{height:34.240000pt;}
.h15{height:34.400000pt;}
.h1a{height:34.432000pt;}
.h10{height:36.043520pt;}
.h3{height:37.562880pt;}
.h1d{height:39.840000pt;}
.hb{height:41.636480pt;}
.h4{height:42.048000pt;}
.h9{height:43.360000pt;}
.ha{height:43.392000pt;}
.h21{height:44.160000pt;}
.h8{height:44.352000pt;}
.h2{height:46.533120pt;}
.h5{height:46.608000pt;}
.h29{height:49.336436pt;}
.h13{height:50.272000pt;}
.hc{height:51.579520pt;}
.h26{height:52.000000pt;}
.h1b{height:54.598989pt;}
.he{height:57.172480pt;}
.h1f{height:60.519362pt;}
.hd{height:62.144000pt;}
.h25{height:64.960000pt;}
.h22{height:65.781915pt;}
.h11{height:65.920000pt;}
.h17{height:66.080000pt;}
.h16{height:66.112000pt;}
.h27{height:81.152000pt;}
.h24{height:97.472000pt;}
.h14{height:97.760000pt;}
.h28{height:113.760000pt;}
.h20{height:130.080000pt;}
.h6{height:134.852480pt;}
.h1c{height:162.560000pt;}
.h1e{height:276.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:36.320000pt;}
.w11{width:37.120000pt;}
.w14{width:42.912000pt;}
.wc{width:45.952000pt;}
.wa{width:49.632000pt;}
.w16{width:60.672000pt;}
.we{width:65.600000pt;}
.w17{width:75.360000pt;}
.w1a{width:82.432000pt;}
.w19{width:88.160000pt;}
.w18{width:90.432000pt;}
.w12{width:93.440000pt;}
.wf{width:93.792000pt;}
.w15{width:98.080000pt;}
.w1b{width:98.400000pt;}
.w10{width:103.232000pt;}
.w13{width:104.832000pt;}
.wb{width:110.880000pt;}
.w8{width:163.706667pt;}
.w6{width:164.026667pt;}
.w4{width:244.706667pt;}
.w5{width:389.666667pt;}
.w9{width:476.893333pt;}
.w7{width:477.213333pt;}
.w3{width:635.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:3.680000pt;}
.x3{left:5.279988pt;}
.xb{left:6.272000pt;}
.x13{left:7.360000pt;}
.x22{left:9.120000pt;}
.x11{left:10.559988pt;}
.x23{left:12.640000pt;}
.x20{left:13.760000pt;}
.x2f{left:14.720000pt;}
.x1d{left:16.000000pt;}
.x34{left:17.120000pt;}
.x19{left:18.920000pt;}
.x15{left:19.872000pt;}
.x26{left:21.760000pt;}
.x29{left:23.520000pt;}
.x2b{left:25.280000pt;}
.x27{left:28.640000pt;}
.x25{left:30.560000pt;}
.x28{left:31.840000pt;}
.x1f{left:33.440000pt;}
.x17{left:35.034667pt;}
.x2a{left:40.320000pt;}
.x31{left:45.280000pt;}
.x1c{left:46.906667pt;}
.x36{left:49.280000pt;}
.x12{left:69.120000pt;}
.x1{left:75.519988pt;}
.xe{left:83.231988pt;}
.x38{left:107.231988pt;}
.x2c{left:120.032000pt;}
.xf{left:123.551988pt;}
.x16{left:126.592000pt;}
.xa{left:127.871988pt;}
.x39{left:131.231988pt;}
.x2d{left:218.746667pt;}
.x14{left:233.146667pt;}
.x18{left:238.106667pt;}
.x8{left:272.386655pt;}
.x2e{left:280.066667pt;}
.x1a{left:284.706667pt;}
.x9{left:314.786655pt;}
.xc{left:321.666667pt;}
.x30{left:356.066667pt;}
.x1b{left:387.906667pt;}
.xd{left:390.466655pt;}
.x2{left:391.586655pt;}
.x3a{left:392.546655pt;}
.x10{left:393.506655pt;}
.x4{left:396.866655pt;}
.x5{left:400.706655pt;}
.x32{left:447.293333pt;}
.x7{left:465.533322pt;}
.x1e{left:482.493333pt;}
.x33{left:536.093333pt;}
.x21{left:586.373333pt;}
.x35{left:619.173333pt;}
.x24{left:624.133333pt;}
.x6{left:718.213322pt;}
}




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