
    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_e43c3699a11d8264017063f6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5108764593a867436942c5d5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7b8bf6d872e67b3201320304.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_7f9f1431ad9b2cd7b0d6b55e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_beba2c036a6a23cbc8c9b083.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_7b0121ec39a74766056720ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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);}
.v4{vertical-align:-69.120000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls21{letter-spacing:-5.490000px;}
.lsb{letter-spacing:-1.260000px;}
.ls22{letter-spacing:-0.942000px;}
.ls14{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.538800px;}
.ls6{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.206400px;}
.ls28{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls16{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.144720px;}
.lsa{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.181200px;}
.lse{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.289440px;}
.ls18{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.900000px;}
.ls26{letter-spacing:6.566400px;}
.ls17{letter-spacing:6.660000px;}
.ls24{letter-spacing:8.726400px;}
.ls19{letter-spacing:10.260000px;}
.ls27{letter-spacing:19.620000px;}
.ls1d{letter-spacing:29.700000px;}
.ls11{letter-spacing:31.140000px;}
.ls25{letter-spacing:59.220000px;}
.ls4{letter-spacing:66.162720px;}
.ls10{letter-spacing:111.036000px;}
.lsf{letter-spacing:811.776000px;}
.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:-59.760000px;}
.ws8{word-spacing:-15.606000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.400000px;}
.ws5{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.284000px;}
.ws10{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.349440px;}
.wsa{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.118000px;}
.ws2{word-spacing:-9.720000px;}
.ws3{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
.ws12{word-spacing:4.679280px;}
.ws11{word-spacing:5.399280px;}
._15{margin-left:-7.020000px;}
._f{margin-left:-3.546720px;}
._e{margin-left:-2.178000px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._9{width:4.050000px;}
._6{width:5.778000px;}
._4{width:6.840000px;}
._18{width:7.888320px;}
._10{width:8.964000px;}
._19{width:9.969120px;}
._12{width:10.976400px;}
._a{width:12.420000px;}
._11{width:13.465200px;}
._b{width:14.514960px;}
._29{width:15.525600px;}
._d{width:16.848000px;}
._c{width:17.928000px;}
._1c{width:19.862640px;}
._5{width:21.114000px;}
._1b{width:22.170960px;}
._1a{width:23.306400px;}
._23{width:25.793040px;}
._1e{width:26.873280px;}
._8{width:29.808000px;}
._7{width:30.834000px;}
._1f{width:33.506640px;}
._22{width:35.708160px;}
._20{width:36.793440px;}
._24{width:43.246800px;}
._26{width:44.264880px;}
._25{width:46.366320px;}
._1d{width:50.119920px;}
._21{width:59.828160px;}
._27{width:61.000560px;}
._28{width:62.258880px;}
._13{width:509.086560px;}
._16{width:736.380000px;}
._14{width:865.686720px;}
._17{width:1073.100000px;}
._3{width:1101.912000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:2.520000px;}
.y30{bottom:2.880000px;}
.y10{bottom:3.240000px;}
.yf0{bottom:3.780000px;}
.y39{bottom:9.000000px;}
.y3f{bottom:12.240000px;}
.yb4{bottom:16.380000px;}
.yb7{bottom:17.100000px;}
.y2f{bottom:18.360000px;}
.y16c{bottom:18.540000px;}
.y15{bottom:20.520000px;}
.yee{bottom:20.880000px;}
.y3e{bottom:29.520000px;}
.yb6{bottom:30.960000px;}
.y2e{bottom:34.020000px;}
.y14{bottom:37.800000px;}
.y166{bottom:45.360000px;}
.y3d{bottom:46.800000px;}
.y2d{bottom:49.500000px;}
.yf4{bottom:54.900000px;}
.y13{bottom:55.080000px;}
.y3c{bottom:64.125000px;}
.y2c{bottom:64.980000px;}
.y38{bottom:66.060000px;}
.y163{bottom:66.420000px;}
.yf3{bottom:72.180000px;}
.y2b{bottom:80.460000px;}
.y16b{bottom:80.640000px;}
.y12{bottom:81.360000px;}
.y162{bottom:81.900000px;}
.y5{bottom:88.200000px;}
.y3b{bottom:90.225000px;}
.y2a{bottom:95.940000px;}
.y16a{bottom:96.120000px;}
.y161{bottom:97.380000px;}
.y85{bottom:111.600000px;}
.y29{bottom:111.630000px;}
.y160{bottom:112.860000px;}
.y105{bottom:116.280000px;}
.y169{bottom:127.080000px;}
.y28{bottom:127.110000px;}
.y15f{bottom:128.520000px;}
.y84{bottom:128.880000px;}
.y104{bottom:133.560000px;}
.y14b{bottom:134.280000px;}
.yc3{bottom:136.656000px;}
.y4a{bottom:138.096000px;}
.y27{bottom:142.590000px;}
.y168{bottom:142.770000px;}
.y15e{bottom:144.000000px;}
.yeb{bottom:145.476000px;}
.y83{bottom:146.196000px;}
.y14a{bottom:148.176000px;}
.y103{bottom:150.870000px;}
.yc2{bottom:153.930000px;}
.y49{bottom:155.190000px;}
.y26{bottom:158.070000px;}
.y167{bottom:158.250000px;}
.y149{bottom:162.030000px;}
.yea{bottom:162.750000px;}
.y82{bottom:163.470000px;}
.y102{bottom:168.150000px;}
.yc1{bottom:171.210000px;}
.y48{bottom:172.470000px;}
.y25{bottom:173.730000px;}
.y148{bottom:175.710000px;}
.ye9{bottom:179.850000px;}
.y81{bottom:180.750000px;}
.y101{bottom:185.250000px;}
.y24{bottom:189.210000px;}
.y147{bottom:189.570000px;}
.y47{bottom:189.750000px;}
.ye8{bottom:197.130000px;}
.y80{bottom:197.850000px;}
.y100{bottom:202.530000px;}
.y146{bottom:203.430000px;}
.y23{bottom:204.690000px;}
.yc0{bottom:205.770000px;}
.y46{bottom:207.030000px;}
.ye7{bottom:214.410000px;}
.y7f{bottom:215.130000px;}
.y145{bottom:217.110000px;}
.yff{bottom:219.810000px;}
.y22{bottom:220.170000px;}
.ybf{bottom:223.050000px;}
.y45{bottom:224.310000px;}
.y37{bottom:229.530000px;}
.y144{bottom:230.970000px;}
.ye6{bottom:231.690000px;}
.y7e{bottom:232.410000px;}
.y21{bottom:235.830000px;}
.yfe{bottom:237.090000px;}
.ybe{bottom:237.810000px;}
.y44{bottom:241.410000px;}
.y143{bottom:244.830000px;}
.y36{bottom:246.630000px;}
.ye5{bottom:248.970000px;}
.y7d{bottom:249.690000px;}
.y20{bottom:251.310000px;}
.ybd{bottom:251.490000px;}
.yfd{bottom:254.370000px;}
.y142{bottom:258.510000px;}
.y43{bottom:258.690000px;}
.y35{bottom:263.910000px;}
.ye4{bottom:266.250000px;}
.y1f{bottom:266.790000px;}
.y7c{bottom:266.970000px;}
.yfc{bottom:271.650000px;}
.y141{bottom:272.370000px;}
.y42{bottom:275.970000px;}
.ybc{bottom:279.210000px;}
.y34{bottom:281.190000px;}
.y1e{bottom:282.270000px;}
.ye3{bottom:283.350000px;}
.y7b{bottom:284.250000px;}
.y140{bottom:286.230000px;}
.yfb{bottom:288.750000px;}
.ybb{bottom:292.890000px;}
.y41{bottom:293.250000px;}
.y1d{bottom:297.930000px;}
.y33{bottom:298.470000px;}
.y13f{bottom:299.910000px;}
.ye2{bottom:300.630000px;}
.y7a{bottom:301.350000px;}
.yfa{bottom:306.030000px;}
.yba{bottom:306.750000px;}
.y40{bottom:310.530000px;}
.y1c{bottom:313.410000px;}
.y13e{bottom:313.770000px;}
.y32{bottom:315.750000px;}
.ye1{bottom:317.910000px;}
.y79{bottom:318.630000px;}
.yb9{bottom:320.610000px;}
.yf9{bottom:323.310000px;}
.y3a{bottom:326.730000px;}
.y13d{bottom:327.630000px;}
.y1b{bottom:328.890000px;}
.yb8{bottom:334.290000px;}
.ye0{bottom:335.190000px;}
.y78{bottom:335.910000px;}
.yf8{bottom:340.590000px;}
.y13c{bottom:341.310000px;}
.y31{bottom:341.850000px;}
.y1a{bottom:344.370000px;}
.yb5{bottom:348.870000px;}
.ydf{bottom:352.470000px;}
.y77{bottom:353.190000px;}
.y13b{bottom:355.170000px;}
.yf7{bottom:357.870000px;}
.y19{bottom:360.030000px;}
.yb3{bottom:363.450000px;}
.y13a{bottom:369.030000px;}
.yde{bottom:369.750000px;}
.y76{bottom:370.470000px;}
.yf6{bottom:374.430000px;}
.y139{bottom:382.710000px;}
.ydd{bottom:386.850000px;}
.y75{bottom:387.795000px;}
.yf5{bottom:388.155000px;}
.y138{bottom:396.615000px;}
.yf2{bottom:399.495000px;}
.ydc{bottom:404.175000px;}
.y74{bottom:404.895000px;}
.y137{bottom:410.475000px;}
.yb2{bottom:412.275000px;}
.ydb{bottom:421.455000px;}
.y73{bottom:422.175000px;}
.y136{bottom:424.155000px;}
.yb1{bottom:429.555000px;}
.y135{bottom:438.015000px;}
.yda{bottom:438.735000px;}
.y72{bottom:439.455000px;}
.y16{bottom:440.715000px;}
.yb0{bottom:446.835000px;}
.y17{bottom:446.970000px;}
.y134{bottom:451.875000px;}
.yd9{bottom:456.015000px;}
.y71{bottom:456.735000px;}
.yaf{bottom:464.115000px;}
.y133{bottom:465.555000px;}
.yd8{bottom:473.115000px;}
.y70{bottom:474.015000px;}
.y132{bottom:479.415000px;}
.yae{bottom:481.215000px;}
.yf1{bottom:488.955000px;}
.yd7{bottom:490.395000px;}
.y6f{bottom:491.115000px;}
.y131{bottom:493.095000px;}
.yad{bottom:498.495000px;}
.yef{bottom:503.715000px;}
.y130{bottom:506.955000px;}
.y165{bottom:507.135000px;}
.yd6{bottom:507.675000px;}
.y6e{bottom:508.395000px;}
.yac{bottom:515.775000px;}
.y12f{bottom:520.815000px;}
.yed{bottom:520.995000px;}
.yd5{bottom:524.955000px;}
.y6d{bottom:525.675000px;}
.y18{bottom:529.095000px;}
.yab{bottom:533.055000px;}
.y12e{bottom:534.495000px;}
.yd4{bottom:542.235000px;}
.y6c{bottom:542.955000px;}
.y12d{bottom:548.355000px;}
.yaa{bottom:550.335000px;}
.yec{bottom:556.275000px;}
.yd3{bottom:559.515000px;}
.y6b{bottom:560.235000px;}
.y12c{bottom:562.215000px;}
.ya9{bottom:567.615000px;}
.y12b{bottom:575.895000px;}
.yd2{bottom:576.615000px;}
.y6a{bottom:577.515000px;}
.ya8{bottom:584.715000px;}
.y12a{bottom:589.755000px;}
.yd1{bottom:593.895000px;}
.y69{bottom:594.615000px;}
.ya7{bottom:601.995000px;}
.y129{bottom:603.615000px;}
.yd0{bottom:611.175000px;}
.y68{bottom:611.895000px;}
.y128{bottom:617.295000px;}
.ya6{bottom:619.275000px;}
.ycf{bottom:628.455000px;}
.y67{bottom:629.175000px;}
.y127{bottom:631.155000px;}
.ya5{bottom:636.555000px;}
.y126{bottom:645.045000px;}
.yce{bottom:645.765000px;}
.y66{bottom:646.485000px;}
.ya4{bottom:653.865000px;}
.y125{bottom:658.725000px;}
.ycd{bottom:663.045000px;}
.y65{bottom:663.765000px;}
.ya3{bottom:671.145000px;}
.y124{bottom:672.585000px;}
.ycc{bottom:680.145000px;}
.y64{bottom:681.045000px;}
.y123{bottom:686.445000px;}
.ya2{bottom:688.245000px;}
.ycb{bottom:697.425000px;}
.y63{bottom:698.145000px;}
.y122{bottom:700.125000px;}
.ya1{bottom:703.005000px;}
.y164{bottom:710.025000px;}
.y121{bottom:713.985000px;}
.yca{bottom:714.705000px;}
.y62{bottom:715.425000px;}
.ya0{bottom:716.865000px;}
.y15d{bottom:723.705000px;}
.y120{bottom:727.845000px;}
.y9f{bottom:730.725000px;}
.yc9{bottom:731.985000px;}
.y61{bottom:732.705000px;}
.y11f{bottom:741.525000px;}
.y9e{bottom:744.405000px;}
.yc8{bottom:749.265000px;}
.y60{bottom:749.985000px;}
.y11e{bottom:755.385000px;}
.y9d{bottom:758.265000px;}
.yc7{bottom:766.545000px;}
.y5f{bottom:767.265000px;}
.y11d{bottom:769.245000px;}
.y9c{bottom:772.125000px;}
.y11c{bottom:782.925000px;}
.yc6{bottom:783.645000px;}
.y5e{bottom:784.545000px;}
.y9b{bottom:785.805000px;}
.y11b{bottom:796.785000px;}
.y99{bottom:800.385000px;}
.yc5{bottom:800.925000px;}
.y5d{bottom:801.645000px;}
.y11{bottom:806.325000px;}
.y11a{bottom:810.645000px;}
.yc4{bottom:818.205000px;}
.y5c{bottom:818.925000px;}
.y119{bottom:824.325000px;}
.y98{bottom:835.485000px;}
.y5b{bottom:836.205000px;}
.y118{bottom:838.185000px;}
.y117{bottom:852.045000px;}
.y97{bottom:852.765000px;}
.y5a{bottom:853.485000px;}
.y116{bottom:865.725000px;}
.y96{bottom:869.865000px;}
.y59{bottom:870.765000px;}
.y115{bottom:879.585000px;}
.y15c{bottom:884.445000px;}
.y95{bottom:887.145000px;}
.y58{bottom:887.865000px;}
.y114{bottom:893.490000px;}
.y15b{bottom:901.770000px;}
.y94{bottom:904.470000px;}
.y57{bottom:905.190000px;}
.y113{bottom:907.170000px;}
.yf{bottom:911.490000px;}
.y15a{bottom:919.050000px;}
.y112{bottom:921.030000px;}
.y93{bottom:921.750000px;}
.y56{bottom:922.470000px;}
.y111{bottom:934.890000px;}
.y159{bottom:936.330000px;}
.y92{bottom:939.030000px;}
.y55{bottom:939.750000px;}
.ye{bottom:943.170000px;}
.y110{bottom:948.570000px;}
.y158{bottom:952.890000px;}
.y91{bottom:956.310000px;}
.y54{bottom:957.030000px;}
.yd{bottom:960.450000px;}
.y10f{bottom:962.430000px;}
.y157{bottom:966.570000px;}
.y90{bottom:973.410000px;}
.y53{bottom:974.310000px;}
.y10e{bottom:976.290000px;}
.y156{bottom:980.430000px;}
.yc{bottom:981.510000px;}
.y10d{bottom:989.970000px;}
.y8f{bottom:990.690000px;}
.y52{bottom:991.410000px;}
.y155{bottom:994.290000px;}
.yb{bottom:995.190000px;}
.y10c{bottom:1003.830000px;}
.ya{bottom:1005.270000px;}
.y8e{bottom:1007.970000px;}
.y51{bottom:1008.690000px;}
.y10b{bottom:1017.690000px;}
.y154{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y8d{bottom:1025.250000px;}
.y50{bottom:1025.970000px;}
.y10a{bottom:1031.370000px;}
.y153{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y8c{bottom:1042.530000px;}
.y4f{bottom:1043.250000px;}
.y109{bottom:1045.230000px;}
.y152{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y8b{bottom:1059.810000px;}
.y4e{bottom:1060.530000px;}
.y151{bottom:1063.230000px;}
.y108{bottom:1072.770000px;}
.y8a{bottom:1076.910000px;}
.y150{bottom:1077.090000px;}
.y4d{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y14f{bottom:1090.770000px;}
.y89{bottom:1094.190000px;}
.y4c{bottom:1094.910000px;}
.y107{bottom:1100.490000px;}
.y14e{bottom:1104.630000px;}
.y88{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y106{bottom:1114.170000px;}
.y14d{bottom:1118.490000px;}
.y87{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y14c{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y4b{bottom:1160.640000px;}
.y86{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h17{height:13.680000px;}
.h1b{height:13.680150px;}
.h14{height:13.860000px;}
.h13{height:17.100000px;}
.h12{height:17.280000px;}
.h7{height:26.280000px;}
.h18{height:27.576000px;}
.h1a{height:27.720000px;}
.h6{height:29.678906px;}
.h1c{height:34.380000px;}
.h19{height:42.156000px;}
.h15{height:47.344922px;}
.h21{height:48.410156px;}
.h16{height:48.616875px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h1f{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h8{height:70.664062px;}
.h1d{height:86.220000px;}
.he{height:87.660000px;}
.h5{height:96.508125px;}
.h9{height:104.436000px;}
.h10{height:113.256000px;}
.h1e{height:157.500000px;}
.h20{height:202.890000px;}
.hd{height:364.890000px;}
.hb{height:381.675000px;}
.ha{height:470.055000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w1a{width:35.100000px;}
.w15{width:35.280000px;}
.w19{width:35.316000px;}
.w16{width:35.640000px;}
.w1b{width:36.036000px;}
.w17{width:36.180000px;}
.w1c{width:36.360000px;}
.w1d{width:36.540000px;}
.w18{width:36.720000px;}
.wc{width:42.480000px;}
.w10{width:43.236000px;}
.wa{width:43.560000px;}
.we{width:63.936000px;}
.w11{width:73.800000px;}
.w13{width:74.340000px;}
.w12{width:84.960000px;}
.wd{width:85.140000px;}
.w9{width:121.896000px;}
.w21{width:131.040000px;}
.wb{width:138.276000px;}
.w14{width:158.070000px;}
.wf{width:159.300000px;}
.w20{width:198.570000px;}
.w3{width:209.010000px;}
.w1e{width:214.770000px;}
.w1f{width:244.290000px;}
.w5{width:433.155000px;}
.w22{width:539.205000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:2.340000px;}
.x9{left:8.100000px;}
.xb{left:10.620000px;}
.x23{left:12.240000px;}
.x1a{left:13.680000px;}
.x1d{left:14.940000px;}
.x1f{left:16.380000px;}
.x16{left:18.720000px;}
.x15{left:20.880000px;}
.x18{left:22.140000px;}
.x27{left:23.400000px;}
.x25{left:28.620000px;}
.x17{left:43.740000px;}
.x20{left:54.900000px;}
.x24{left:65.880000px;}
.xd{left:106.740000px;}
.x38{left:116.496000px;}
.x39{left:122.754000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x3{left:140.435987px;}
.x10{left:154.649987px;}
.x12{left:157.349987px;}
.x2{left:159.509987px;}
.x28{left:170.129987px;}
.xf{left:181.649987px;}
.x6{left:235.109987px;}
.x3a{left:247.530000px;}
.x7{left:271.289987px;}
.x29{left:286.095000px;}
.x19{left:292.395000px;}
.x5{left:297.974987px;}
.x2a{left:321.375000px;}
.xa{left:334.515000px;}
.x36{left:343.155000px;}
.xc{left:355.755000px;}
.x2b{left:357.015000px;}
.x13{left:374.475000px;}
.x2c{left:393.195000px;}
.x1c{left:420.015000px;}
.xe{left:425.235000px;}
.x2d{left:429.915000px;}
.x4{left:457.274987px;}
.x2e{left:466.095000px;}
.x1e{left:483.945000px;}
.x14{left:496.365000px;}
.x2f{left:501.405000px;}
.x30{left:536.685000px;}
.x26{left:568.905000px;}
.x31{left:571.965000px;}
.x37{left:587.445000px;}
.x32{left:607.065000px;}
.x21{left:643.245000px;}
.x33{left:678.390000px;}
.x22{left:686.490000px;}
.x34{left:714.750000px;}
.x35{left:749.850000px;}
.x11{left:756.870000px;}
@media print{
.v4{vertical-align:-61.440000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls21{letter-spacing:-4.880000pt;}
.lsb{letter-spacing:-1.120000pt;}
.ls22{letter-spacing:-0.837333pt;}
.ls14{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.478933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls16{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.128640pt;}
.lsa{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.161067pt;}
.lse{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.257280pt;}
.ls18{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls26{letter-spacing:5.836800pt;}
.ls17{letter-spacing:5.920000pt;}
.ls24{letter-spacing:7.756800pt;}
.ls19{letter-spacing:9.120000pt;}
.ls27{letter-spacing:17.440000pt;}
.ls1d{letter-spacing:26.400000pt;}
.ls11{letter-spacing:27.680000pt;}
.ls25{letter-spacing:52.640000pt;}
.ls4{letter-spacing:58.811307pt;}
.ls10{letter-spacing:98.698667pt;}
.lsf{letter-spacing:721.578667pt;}
.wsf{word-spacing:-53.120000pt;}
.ws8{word-spacing:-13.872000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.800000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.977280pt;}
.wsa{word-spacing:-10.720000pt;}
.ws13{word-spacing:-9.882667pt;}
.ws2{word-spacing:-8.640000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws12{word-spacing:4.159360pt;}
.ws11{word-spacing:4.799360pt;}
._15{margin-left:-6.240000pt;}
._f{margin-left:-3.152640pt;}
._e{margin-left:-1.936000pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._9{width:3.600000pt;}
._6{width:5.136000pt;}
._4{width:6.080000pt;}
._18{width:7.011840pt;}
._10{width:7.968000pt;}
._19{width:8.861440pt;}
._12{width:9.756800pt;}
._a{width:11.040000pt;}
._11{width:11.969067pt;}
._b{width:12.902187pt;}
._29{width:13.800533pt;}
._d{width:14.976000pt;}
._c{width:15.936000pt;}
._1c{width:17.655680pt;}
._5{width:18.768000pt;}
._1b{width:19.707520pt;}
._1a{width:20.716800pt;}
._23{width:22.927147pt;}
._1e{width:23.887360pt;}
._8{width:26.496000pt;}
._7{width:27.408000pt;}
._1f{width:29.783680pt;}
._22{width:31.740587pt;}
._20{width:32.705280pt;}
._24{width:38.441600pt;}
._26{width:39.346560pt;}
._25{width:41.214507pt;}
._1d{width:44.551040pt;}
._21{width:53.180587pt;}
._27{width:54.222720pt;}
._28{width:55.341227pt;}
._13{width:452.521387pt;}
._16{width:654.560000pt;}
._14{width:769.499307pt;}
._17{width:953.866667pt;}
._3{width:979.477333pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.240000pt;}
.y30{bottom:2.560000pt;}
.y10{bottom:2.880000pt;}
.yf0{bottom:3.360000pt;}
.y39{bottom:8.000000pt;}
.y3f{bottom:10.880000pt;}
.yb4{bottom:14.560000pt;}
.yb7{bottom:15.200000pt;}
.y2f{bottom:16.320000pt;}
.y16c{bottom:16.480000pt;}
.y15{bottom:18.240000pt;}
.yee{bottom:18.560000pt;}
.y3e{bottom:26.240000pt;}
.yb6{bottom:27.520000pt;}
.y2e{bottom:30.240000pt;}
.y14{bottom:33.600000pt;}
.y166{bottom:40.320000pt;}
.y3d{bottom:41.600000pt;}
.y2d{bottom:44.000000pt;}
.yf4{bottom:48.800000pt;}
.y13{bottom:48.960000pt;}
.y3c{bottom:57.000000pt;}
.y2c{bottom:57.760000pt;}
.y38{bottom:58.720000pt;}
.y163{bottom:59.040000pt;}
.yf3{bottom:64.160000pt;}
.y2b{bottom:71.520000pt;}
.y16b{bottom:71.680000pt;}
.y12{bottom:72.320000pt;}
.y162{bottom:72.800000pt;}
.y5{bottom:78.400000pt;}
.y3b{bottom:80.200000pt;}
.y2a{bottom:85.280000pt;}
.y16a{bottom:85.440000pt;}
.y161{bottom:86.560000pt;}
.y85{bottom:99.200000pt;}
.y29{bottom:99.226667pt;}
.y160{bottom:100.320000pt;}
.y105{bottom:103.360000pt;}
.y169{bottom:112.960000pt;}
.y28{bottom:112.986667pt;}
.y15f{bottom:114.240000pt;}
.y84{bottom:114.560000pt;}
.y104{bottom:118.720000pt;}
.y14b{bottom:119.360000pt;}
.yc3{bottom:121.472000pt;}
.y4a{bottom:122.752000pt;}
.y27{bottom:126.746667pt;}
.y168{bottom:126.906667pt;}
.y15e{bottom:128.000000pt;}
.yeb{bottom:129.312000pt;}
.y83{bottom:129.952000pt;}
.y14a{bottom:131.712000pt;}
.y103{bottom:134.106667pt;}
.yc2{bottom:136.826667pt;}
.y49{bottom:137.946667pt;}
.y26{bottom:140.506667pt;}
.y167{bottom:140.666667pt;}
.y149{bottom:144.026667pt;}
.yea{bottom:144.666667pt;}
.y82{bottom:145.306667pt;}
.y102{bottom:149.466667pt;}
.yc1{bottom:152.186667pt;}
.y48{bottom:153.306667pt;}
.y25{bottom:154.426667pt;}
.y148{bottom:156.186667pt;}
.ye9{bottom:159.866667pt;}
.y81{bottom:160.666667pt;}
.y101{bottom:164.666667pt;}
.y24{bottom:168.186667pt;}
.y147{bottom:168.506667pt;}
.y47{bottom:168.666667pt;}
.ye8{bottom:175.226667pt;}
.y80{bottom:175.866667pt;}
.y100{bottom:180.026667pt;}
.y146{bottom:180.826667pt;}
.y23{bottom:181.946667pt;}
.yc0{bottom:182.906667pt;}
.y46{bottom:184.026667pt;}
.ye7{bottom:190.586667pt;}
.y7f{bottom:191.226667pt;}
.y145{bottom:192.986667pt;}
.yff{bottom:195.386667pt;}
.y22{bottom:195.706667pt;}
.ybf{bottom:198.266667pt;}
.y45{bottom:199.386667pt;}
.y37{bottom:204.026667pt;}
.y144{bottom:205.306667pt;}
.ye6{bottom:205.946667pt;}
.y7e{bottom:206.586667pt;}
.y21{bottom:209.626667pt;}
.yfe{bottom:210.746667pt;}
.ybe{bottom:211.386667pt;}
.y44{bottom:214.586667pt;}
.y143{bottom:217.626667pt;}
.y36{bottom:219.226667pt;}
.ye5{bottom:221.306667pt;}
.y7d{bottom:221.946667pt;}
.y20{bottom:223.386667pt;}
.ybd{bottom:223.546667pt;}
.yfd{bottom:226.106667pt;}
.y142{bottom:229.786667pt;}
.y43{bottom:229.946667pt;}
.y35{bottom:234.586667pt;}
.ye4{bottom:236.666667pt;}
.y1f{bottom:237.146667pt;}
.y7c{bottom:237.306667pt;}
.yfc{bottom:241.466667pt;}
.y141{bottom:242.106667pt;}
.y42{bottom:245.306667pt;}
.ybc{bottom:248.186667pt;}
.y34{bottom:249.946667pt;}
.y1e{bottom:250.906667pt;}
.ye3{bottom:251.866667pt;}
.y7b{bottom:252.666667pt;}
.y140{bottom:254.426667pt;}
.yfb{bottom:256.666667pt;}
.ybb{bottom:260.346667pt;}
.y41{bottom:260.666667pt;}
.y1d{bottom:264.826667pt;}
.y33{bottom:265.306667pt;}
.y13f{bottom:266.586667pt;}
.ye2{bottom:267.226667pt;}
.y7a{bottom:267.866667pt;}
.yfa{bottom:272.026667pt;}
.yba{bottom:272.666667pt;}
.y40{bottom:276.026667pt;}
.y1c{bottom:278.586667pt;}
.y13e{bottom:278.906667pt;}
.y32{bottom:280.666667pt;}
.ye1{bottom:282.586667pt;}
.y79{bottom:283.226667pt;}
.yb9{bottom:284.986667pt;}
.yf9{bottom:287.386667pt;}
.y3a{bottom:290.426667pt;}
.y13d{bottom:291.226667pt;}
.y1b{bottom:292.346667pt;}
.yb8{bottom:297.146667pt;}
.ye0{bottom:297.946667pt;}
.y78{bottom:298.586667pt;}
.yf8{bottom:302.746667pt;}
.y13c{bottom:303.386667pt;}
.y31{bottom:303.866667pt;}
.y1a{bottom:306.106667pt;}
.yb5{bottom:310.106667pt;}
.ydf{bottom:313.306667pt;}
.y77{bottom:313.946667pt;}
.y13b{bottom:315.706667pt;}
.yf7{bottom:318.106667pt;}
.y19{bottom:320.026667pt;}
.yb3{bottom:323.066667pt;}
.y13a{bottom:328.026667pt;}
.yde{bottom:328.666667pt;}
.y76{bottom:329.306667pt;}
.yf6{bottom:332.826667pt;}
.y139{bottom:340.186667pt;}
.ydd{bottom:343.866667pt;}
.y75{bottom:344.706667pt;}
.yf5{bottom:345.026667pt;}
.y138{bottom:352.546667pt;}
.yf2{bottom:355.106667pt;}
.ydc{bottom:359.266667pt;}
.y74{bottom:359.906667pt;}
.y137{bottom:364.866667pt;}
.yb2{bottom:366.466667pt;}
.ydb{bottom:374.626667pt;}
.y73{bottom:375.266667pt;}
.y136{bottom:377.026667pt;}
.yb1{bottom:381.826667pt;}
.y135{bottom:389.346667pt;}
.yda{bottom:389.986667pt;}
.y72{bottom:390.626667pt;}
.y16{bottom:391.746667pt;}
.yb0{bottom:397.186667pt;}
.y17{bottom:397.306667pt;}
.y134{bottom:401.666667pt;}
.yd9{bottom:405.346667pt;}
.y71{bottom:405.986667pt;}
.yaf{bottom:412.546667pt;}
.y133{bottom:413.826667pt;}
.yd8{bottom:420.546667pt;}
.y70{bottom:421.346667pt;}
.y132{bottom:426.146667pt;}
.yae{bottom:427.746667pt;}
.yf1{bottom:434.626667pt;}
.yd7{bottom:435.906667pt;}
.y6f{bottom:436.546667pt;}
.y131{bottom:438.306667pt;}
.yad{bottom:443.106667pt;}
.yef{bottom:447.746667pt;}
.y130{bottom:450.626667pt;}
.y165{bottom:450.786667pt;}
.yd6{bottom:451.266667pt;}
.y6e{bottom:451.906667pt;}
.yac{bottom:458.466667pt;}
.y12f{bottom:462.946667pt;}
.yed{bottom:463.106667pt;}
.yd5{bottom:466.626667pt;}
.y6d{bottom:467.266667pt;}
.y18{bottom:470.306667pt;}
.yab{bottom:473.826667pt;}
.y12e{bottom:475.106667pt;}
.yd4{bottom:481.986667pt;}
.y6c{bottom:482.626667pt;}
.y12d{bottom:487.426667pt;}
.yaa{bottom:489.186667pt;}
.yec{bottom:494.466667pt;}
.yd3{bottom:497.346667pt;}
.y6b{bottom:497.986667pt;}
.y12c{bottom:499.746667pt;}
.ya9{bottom:504.546667pt;}
.y12b{bottom:511.906667pt;}
.yd2{bottom:512.546667pt;}
.y6a{bottom:513.346667pt;}
.ya8{bottom:519.746667pt;}
.y12a{bottom:524.226667pt;}
.yd1{bottom:527.906667pt;}
.y69{bottom:528.546667pt;}
.ya7{bottom:535.106667pt;}
.y129{bottom:536.546667pt;}
.yd0{bottom:543.266667pt;}
.y68{bottom:543.906667pt;}
.y128{bottom:548.706667pt;}
.ya6{bottom:550.466667pt;}
.ycf{bottom:558.626667pt;}
.y67{bottom:559.266667pt;}
.y127{bottom:561.026667pt;}
.ya5{bottom:565.826667pt;}
.y126{bottom:573.373333pt;}
.yce{bottom:574.013333pt;}
.y66{bottom:574.653333pt;}
.ya4{bottom:581.213333pt;}
.y125{bottom:585.533333pt;}
.ycd{bottom:589.373333pt;}
.y65{bottom:590.013333pt;}
.ya3{bottom:596.573333pt;}
.y124{bottom:597.853333pt;}
.ycc{bottom:604.573333pt;}
.y64{bottom:605.373333pt;}
.y123{bottom:610.173333pt;}
.ya2{bottom:611.773333pt;}
.ycb{bottom:619.933333pt;}
.y63{bottom:620.573333pt;}
.y122{bottom:622.333333pt;}
.ya1{bottom:624.893333pt;}
.y164{bottom:631.133333pt;}
.y121{bottom:634.653333pt;}
.yca{bottom:635.293333pt;}
.y62{bottom:635.933333pt;}
.ya0{bottom:637.213333pt;}
.y15d{bottom:643.293333pt;}
.y120{bottom:646.973333pt;}
.y9f{bottom:649.533333pt;}
.yc9{bottom:650.653333pt;}
.y61{bottom:651.293333pt;}
.y11f{bottom:659.133333pt;}
.y9e{bottom:661.693333pt;}
.yc8{bottom:666.013333pt;}
.y60{bottom:666.653333pt;}
.y11e{bottom:671.453333pt;}
.y9d{bottom:674.013333pt;}
.yc7{bottom:681.373333pt;}
.y5f{bottom:682.013333pt;}
.y11d{bottom:683.773333pt;}
.y9c{bottom:686.333333pt;}
.y11c{bottom:695.933333pt;}
.yc6{bottom:696.573333pt;}
.y5e{bottom:697.373333pt;}
.y9b{bottom:698.493333pt;}
.y11b{bottom:708.253333pt;}
.y99{bottom:711.453333pt;}
.yc5{bottom:711.933333pt;}
.y5d{bottom:712.573333pt;}
.y11{bottom:716.733333pt;}
.y11a{bottom:720.573333pt;}
.yc4{bottom:727.293333pt;}
.y5c{bottom:727.933333pt;}
.y119{bottom:732.733333pt;}
.y98{bottom:742.653333pt;}
.y5b{bottom:743.293333pt;}
.y118{bottom:745.053333pt;}
.y117{bottom:757.373333pt;}
.y97{bottom:758.013333pt;}
.y5a{bottom:758.653333pt;}
.y116{bottom:769.533333pt;}
.y96{bottom:773.213333pt;}
.y59{bottom:774.013333pt;}
.y115{bottom:781.853333pt;}
.y15c{bottom:786.173333pt;}
.y95{bottom:788.573333pt;}
.y58{bottom:789.213333pt;}
.y114{bottom:794.213333pt;}
.y15b{bottom:801.573333pt;}
.y94{bottom:803.973333pt;}
.y57{bottom:804.613333pt;}
.y113{bottom:806.373333pt;}
.yf{bottom:810.213333pt;}
.y15a{bottom:816.933333pt;}
.y112{bottom:818.693333pt;}
.y93{bottom:819.333333pt;}
.y56{bottom:819.973333pt;}
.y111{bottom:831.013333pt;}
.y159{bottom:832.293333pt;}
.y92{bottom:834.693333pt;}
.y55{bottom:835.333333pt;}
.ye{bottom:838.373333pt;}
.y110{bottom:843.173333pt;}
.y158{bottom:847.013333pt;}
.y91{bottom:850.053333pt;}
.y54{bottom:850.693333pt;}
.yd{bottom:853.733333pt;}
.y10f{bottom:855.493333pt;}
.y157{bottom:859.173333pt;}
.y90{bottom:865.253333pt;}
.y53{bottom:866.053333pt;}
.y10e{bottom:867.813333pt;}
.y156{bottom:871.493333pt;}
.yc{bottom:872.453333pt;}
.y10d{bottom:879.973333pt;}
.y8f{bottom:880.613333pt;}
.y52{bottom:881.253333pt;}
.y155{bottom:883.813333pt;}
.yb{bottom:884.613333pt;}
.y10c{bottom:892.293333pt;}
.ya{bottom:893.573333pt;}
.y8e{bottom:895.973333pt;}
.y51{bottom:896.613333pt;}
.y10b{bottom:904.613333pt;}
.y154{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y8d{bottom:911.333333pt;}
.y50{bottom:911.973333pt;}
.y10a{bottom:916.773333pt;}
.y153{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y8c{bottom:926.693333pt;}
.y4f{bottom:927.333333pt;}
.y109{bottom:929.093333pt;}
.y152{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y8b{bottom:942.053333pt;}
.y4e{bottom:942.693333pt;}
.y151{bottom:945.093333pt;}
.y108{bottom:953.573333pt;}
.y8a{bottom:957.253333pt;}
.y150{bottom:957.413333pt;}
.y4d{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y14f{bottom:969.573333pt;}
.y89{bottom:972.613333pt;}
.y4c{bottom:973.253333pt;}
.y107{bottom:978.213333pt;}
.y14e{bottom:981.893333pt;}
.y88{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y106{bottom:990.373333pt;}
.y14d{bottom:994.213333pt;}
.y87{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y14c{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y4b{bottom:1031.680000pt;}
.y86{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h17{height:12.160000pt;}
.h1b{height:12.160133pt;}
.h14{height:12.320000pt;}
.h13{height:15.200000pt;}
.h12{height:15.360000pt;}
.h7{height:23.360000pt;}
.h18{height:24.512000pt;}
.h1a{height:24.640000pt;}
.h6{height:26.381250pt;}
.h1c{height:30.560000pt;}
.h19{height:37.472000pt;}
.h15{height:42.084375pt;}
.h21{height:43.031250pt;}
.h16{height:43.215000pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h1f{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h8{height:62.812500pt;}
.h1d{height:76.640000pt;}
.he{height:77.920000pt;}
.h5{height:85.785000pt;}
.h9{height:92.832000pt;}
.h10{height:100.672000pt;}
.h1e{height:140.000000pt;}
.h20{height:180.346667pt;}
.hd{height:324.346667pt;}
.hb{height:339.266667pt;}
.ha{height:417.826667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w1a{width:31.200000pt;}
.w15{width:31.360000pt;}
.w19{width:31.392000pt;}
.w16{width:31.680000pt;}
.w1b{width:32.032000pt;}
.w17{width:32.160000pt;}
.w1c{width:32.320000pt;}
.w1d{width:32.480000pt;}
.w18{width:32.640000pt;}
.wc{width:37.760000pt;}
.w10{width:38.432000pt;}
.wa{width:38.720000pt;}
.we{width:56.832000pt;}
.w11{width:65.600000pt;}
.w13{width:66.080000pt;}
.w12{width:75.520000pt;}
.wd{width:75.680000pt;}
.w9{width:108.352000pt;}
.w21{width:116.480000pt;}
.wb{width:122.912000pt;}
.w14{width:140.506667pt;}
.wf{width:141.600000pt;}
.w20{width:176.506667pt;}
.w3{width:185.786667pt;}
.w1e{width:190.906667pt;}
.w1f{width:217.146667pt;}
.w5{width:385.026667pt;}
.w22{width:479.293333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:2.080000pt;}
.x9{left:7.200000pt;}
.xb{left:9.440000pt;}
.x23{left:10.880000pt;}
.x1a{left:12.160000pt;}
.x1d{left:13.280000pt;}
.x1f{left:14.560000pt;}
.x16{left:16.640000pt;}
.x15{left:18.560000pt;}
.x18{left:19.680000pt;}
.x27{left:20.800000pt;}
.x25{left:25.440000pt;}
.x17{left:38.880000pt;}
.x20{left:48.800000pt;}
.x24{left:58.560000pt;}
.xd{left:94.880000pt;}
.x38{left:103.552000pt;}
.x39{left:109.114667pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x3{left:124.831988pt;}
.x10{left:137.466655pt;}
.x12{left:139.866655pt;}
.x2{left:141.786655pt;}
.x28{left:151.226655pt;}
.xf{left:161.466655pt;}
.x6{left:208.986655pt;}
.x3a{left:220.026667pt;}
.x7{left:241.146655pt;}
.x29{left:254.306667pt;}
.x19{left:259.906667pt;}
.x5{left:264.866655pt;}
.x2a{left:285.666667pt;}
.xa{left:297.346667pt;}
.x36{left:305.026667pt;}
.xc{left:316.226667pt;}
.x2b{left:317.346667pt;}
.x13{left:332.866667pt;}
.x2c{left:349.506667pt;}
.x1c{left:373.346667pt;}
.xe{left:377.986667pt;}
.x2d{left:382.146667pt;}
.x4{left:406.466655pt;}
.x2e{left:414.306667pt;}
.x1e{left:430.173333pt;}
.x14{left:441.213333pt;}
.x2f{left:445.693333pt;}
.x30{left:477.053333pt;}
.x26{left:505.693333pt;}
.x31{left:508.413333pt;}
.x37{left:522.173333pt;}
.x32{left:539.613333pt;}
.x21{left:571.773333pt;}
.x33{left:603.013333pt;}
.x22{left:610.213333pt;}
.x34{left:635.333333pt;}
.x35{left:666.533333pt;}
.x11{left:672.773333pt;}
}




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