
    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_2afbdc30de6df650bee1b996.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_fb82e97f1eb987e8ddcba727.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_362203c5a628e4722f23a20c.woff')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_f7d38ccbff18e5d8a02cc643.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c4119b7b1b0e2f428fefaf93.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_40c09409f2d3e17cb6f89a59.woff')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_6848f8aac1798866bfe29123.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-2.364000px;}
.ls5{letter-spacing:-2.052000px;}
.lse{letter-spacing:-1.980000px;}
.ls12{letter-spacing:-1.800000px;}
.ls13{letter-spacing:-1.494000px;}
.ls6{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-1.236000px;}
.ls2{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-1.080000px;}
.ls1{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:6.660000px;}
.ls11{letter-spacing:64.746720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.352000px;}
.ws3{word-spacing:-17.280000px;}
.ws0{word-spacing:-15.336000px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.426400px;}
.ws7{word-spacing:-14.328000px;}
.ws4{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.704000px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-3.767280px;}
._9{margin-left:-2.608080px;}
._0{margin-left:-1.368000px;}
._3{width:1.092000px;}
._8{width:2.148000px;}
._1a{width:3.153600px;}
._e{width:4.218720px;}
._d{width:5.357040px;}
._14{width:6.373440px;}
._13{width:7.512480px;}
._16{width:8.806320px;}
._17{width:10.068960px;}
._4{width:11.160000px;}
._6{width:12.168000px;}
._5{width:13.248000px;}
._1{width:15.048000px;}
._2{width:16.464000px;}
._11{width:17.620080px;}
._7{width:19.416000px;}
._b{width:20.720160px;}
._c{width:22.269120px;}
._1b{width:23.664960px;}
._1c{width:24.768000px;}
._15{width:26.022720px;}
._12{width:27.320880px;}
._f{width:28.917360px;}
._10{width:30.573360px;}
._30{width:31.660080px;}
._36{width:32.673360px;}
._1f{width:34.051440px;}
._1e{width:35.547120px;}
._23{width:36.921840px;}
._19{width:38.191200px;}
._18{width:39.765840px;}
._26{width:40.803120px;}
._27{width:42.499920px;}
._28{width:43.797600px;}
._32{width:44.926080px;}
._2b{width:46.855920px;}
._1d{width:49.067040px;}
._2f{width:50.550480px;}
._22{width:51.931440px;}
._21{width:53.510640px;}
._35{width:54.853200px;}
._34{width:55.854240px;}
._2c{width:57.734160px;}
._20{width:62.468160px;}
._24{width:67.780320px;}
._37{width:68.781360px;}
._25{width:69.838080px;}
._33{width:70.857840px;}
._2a{width:72.000000px;}
._29{width:73.440000px;}
._39{width:77.700480px;}
._2d{width:90.017520px;}
._2e{width:91.484160px;}
._3a{width:99.675360px;}
._38{width:118.179840px;}
._31{width:158.376000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:104.580000px;}
.ya6{bottom:106.380000px;}
.y142{bottom:107.640000px;}
.y5e{bottom:108.360000px;}
.ye6{bottom:109.080000px;}
.y173{bottom:109.440000px;}
.ycc{bottom:121.860000px;}
.y106{bottom:122.220000px;}
.y141{bottom:124.920000px;}
.y5d{bottom:125.640000px;}
.ye5{bottom:126.360000px;}
.y172{bottom:126.720000px;}
.y90{bottom:127.800000px;}
.ybe{bottom:133.380000px;}
.y105{bottom:136.080000px;}
.ycb{bottom:139.140000px;}
.y3a{bottom:140.760000px;}
.y140{bottom:142.200000px;}
.y5c{bottom:142.920000px;}
.ye4{bottom:143.640000px;}
.y171{bottom:144.000000px;}
.y8f{bottom:145.620000px;}
.y159{bottom:148.320000px;}
.ybd{bottom:150.660000px;}
.y39{bottom:158.040000px;}
.y13f{bottom:159.480000px;}
.y5b{bottom:160.200000px;}
.ye3{bottom:160.920000px;}
.y170{bottom:161.100000px;}
.y158{bottom:165.600000px;}
.y8e{bottom:166.320000px;}
.ybc{bottom:167.940000px;}
.y38{bottom:175.320000px;}
.y13e{bottom:176.760000px;}
.y5a{bottom:177.480000px;}
.ye2{bottom:178.200000px;}
.y16f{bottom:178.380000px;}
.y113{bottom:179.820000px;}
.y157{bottom:182.880000px;}
.yee{bottom:184.140000px;}
.ybb{bottom:185.220000px;}
.yca{bottom:186.300000px;}
.y37{bottom:192.600000px;}
.y112{bottom:193.860000px;}
.y13d{bottom:194.040000px;}
.y59{bottom:194.580000px;}
.ye1{bottom:195.300000px;}
.y16e{bottom:195.660000px;}
.y156{bottom:200.190000px;}
.yed{bottom:201.450000px;}
.yc9{bottom:203.610000px;}
.y36{bottom:209.910000px;}
.y13c{bottom:211.170000px;}
.y58{bottom:211.890000px;}
.ye0{bottom:212.610000px;}
.y16d{bottom:212.970000px;}
.yec{bottom:215.490000px;}
.y8d{bottom:216.390000px;}
.y155{bottom:217.470000px;}
.yc8{bottom:220.890000px;}
.y35{bottom:227.010000px;}
.y57{bottom:229.170000px;}
.y16c{bottom:230.250000px;}
.yba{bottom:232.410000px;}
.y8c{bottom:233.670000px;}
.y154{bottom:234.750000px;}
.yc7{bottom:238.170000px;}
.y34{bottom:244.290000px;}
.y56{bottom:246.450000px;}
.y16b{bottom:247.530000px;}
.yb9{bottom:249.690000px;}
.yf9{bottom:250.410000px;}
.y8b{bottom:250.950000px;}
.y153{bottom:252.030000px;}
.yc6{bottom:255.450000px;}
.y13b{bottom:258.510000px;}
.ydf{bottom:259.950000px;}
.y33{bottom:261.570000px;}
.y55{bottom:263.730000px;}
.yf8{bottom:264.450000px;}
.y16a{bottom:264.630000px;}
.yb8{bottom:266.970000px;}
.y8a{bottom:268.230000px;}
.yc5{bottom:272.730000px;}
.y13a{bottom:275.790000px;}
.yde{bottom:277.230000px;}
.y32{bottom:278.850000px;}
.y54{bottom:281.010000px;}
.y169{bottom:281.910000px;}
.yb7{bottom:284.250000px;}
.y89{bottom:285.330000px;}
.yc4{bottom:289.830000px;}
.y139{bottom:293.070000px;}
.ydd{bottom:294.330000px;}
.y31{bottom:296.130000px;}
.y53{bottom:298.110000px;}
.y152{bottom:299.190000px;}
.y111{bottom:300.810000px;}
.yb6{bottom:301.350000px;}
.y88{bottom:302.610000px;}
.yc3{bottom:307.110000px;}
.y138{bottom:310.170000px;}
.ydc{bottom:311.610000px;}
.y30{bottom:313.410000px;}
.y110{bottom:314.850000px;}
.y52{bottom:315.390000px;}
.y151{bottom:316.470000px;}
.yb5{bottom:318.630000px;}
.y87{bottom:319.890000px;}
.yc2{bottom:324.390000px;}
.y137{bottom:327.450000px;}
.ydb{bottom:328.890000px;}
.y2f{bottom:330.510000px;}
.y150{bottom:333.750000px;}
.yb4{bottom:335.910000px;}
.y86{bottom:337.170000px;}
.yc1{bottom:341.670000px;}
.y136{bottom:344.730000px;}
.yda{bottom:346.170000px;}
.y2e{bottom:347.790000px;}
.y14f{bottom:351.030000px;}
.yb3{bottom:353.190000px;}
.y85{bottom:354.450000px;}
.yc0{bottom:358.950000px;}
.yf7{bottom:359.310000px;}
.y135{bottom:362.010000px;}
.y51{bottom:362.550000px;}
.yd9{bottom:363.450000px;}
.y2d{bottom:365.070000px;}
.y14e{bottom:368.130000px;}
.yb2{bottom:370.470000px;}
.y84{bottom:371.730000px;}
.yf6{bottom:376.590000px;}
.y134{bottom:379.290000px;}
.y50{bottom:379.830000px;}
.yd8{bottom:380.730000px;}
.y2c{bottom:382.350000px;}
.y168{bottom:385.410000px;}
.y14d{bottom:386.130000px;}
.yb1{bottom:388.290000px;}
.y83{bottom:388.830000px;}
.yf5{bottom:390.630000px;}
.y133{bottom:396.570000px;}
.y4f{bottom:397.110000px;}
.y2b{bottom:399.630000px;}
.y167{bottom:402.690000px;}
.y82{bottom:406.110000px;}
.yb0{bottom:408.990000px;}
.y18e{bottom:409.890000px;}
.y132{bottom:413.670000px;}
.y4e{bottom:414.390000px;}
.y2a{bottom:416.730000px;}
.y166{bottom:419.970000px;}
.y81{bottom:423.390000px;}
.y18d{bottom:427.170000px;}
.yd7{bottom:427.890000px;}
.yeb{bottom:428.250000px;}
.yaf{bottom:429.690000px;}
.y131{bottom:430.950000px;}
.y4d{bottom:431.670000px;}
.y29{bottom:434.010000px;}
.y14c{bottom:436.215000px;}
.y165{bottom:437.295000px;}
.y80{bottom:440.715000px;}
.y18c{bottom:444.495000px;}
.yd6{bottom:445.215000px;}
.yea{bottom:445.395000px;}
.y130{bottom:448.275000px;}
.y4c{bottom:448.995000px;}
.yae{bottom:449.715000px;}
.y28{bottom:451.335000px;}
.y14b{bottom:453.495000px;}
.y164{bottom:454.575000px;}
.y7f{bottom:457.995000px;}
.ye9{bottom:459.615000px;}
.y18b{bottom:461.775000px;}
.yd5{bottom:462.495000px;}
.y12f{bottom:465.555000px;}
.y4b{bottom:466.275000px;}
.yad{bottom:466.995000px;}
.y27{bottom:468.615000px;}
.y14a{bottom:470.775000px;}
.y163{bottom:471.675000px;}
.y104{bottom:472.935000px;}
.y7e{bottom:475.275000px;}
.y18a{bottom:478.875000px;}
.yd4{bottom:479.595000px;}
.y12e{bottom:482.835000px;}
.y4a{bottom:483.375000px;}
.y26{bottom:485.895000px;}
.y149{bottom:487.875000px;}
.y162{bottom:488.955000px;}
.y103{bottom:490.215000px;}
.y7d{bottom:492.375000px;}
.y10f{bottom:492.915000px;}
.y189{bottom:496.155000px;}
.yd3{bottom:496.875000px;}
.y12d{bottom:499.935000px;}
.y49{bottom:500.655000px;}
.y25{bottom:503.175000px;}
.y102{bottom:504.255000px;}
.y148{bottom:505.155000px;}
.y161{bottom:506.235000px;}
.y7c{bottom:509.655000px;}
.y10e{bottom:510.195000px;}
.yac{bottom:510.915000px;}
.y188{bottom:513.435000px;}
.yd2{bottom:514.155000px;}
.y48{bottom:517.935000px;}
.y12c{bottom:518.295000px;}
.y24{bottom:520.275000px;}
.y147{bottom:522.435000px;}
.y160{bottom:523.515000px;}
.y10d{bottom:524.235000px;}
.y7b{bottom:526.935000px;}
.y187{bottom:530.715000px;}
.y47{bottom:535.215000px;}
.y12b{bottom:535.575000px;}
.y23{bottom:537.555000px;}
.y146{bottom:539.715000px;}
.y15f{bottom:540.795000px;}
.y7a{bottom:544.215000px;}
.y186{bottom:547.995000px;}
.y46{bottom:552.495000px;}
.y12a{bottom:552.855000px;}
.y22{bottom:554.835000px;}
.ya5{bottom:556.815000px;}
.y145{bottom:556.995000px;}
.y15e{bottom:557.895000px;}
.yd1{bottom:561.315000px;}
.y79{bottom:561.495000px;}
.y185{bottom:565.275000px;}
.y45{bottom:569.775000px;}
.y129{bottom:570.135000px;}
.y21{bottom:572.115000px;}
.ya4{bottom:574.095000px;}
.y15d{bottom:575.895000px;}
.y78{bottom:578.595000px;}
.y184{bottom:582.375000px;}
.y44{bottom:586.875000px;}
.y128{bottom:588.495000px;}
.y20{bottom:589.395000px;}
.ya3{bottom:591.375000px;}
.y77{bottom:595.875000px;}
.yf4{bottom:596.415000px;}
.y183{bottom:599.655000px;}
.y43{bottom:604.155000px;}
.y127{bottom:605.595000px;}
.y1f{bottom:606.675000px;}
.ya2{bottom:608.655000px;}
.y76{bottom:613.155000px;}
.yf3{bottom:613.695000px;}
.y182{bottom:616.935000px;}
.y42{bottom:621.435000px;}
.y126{bottom:622.875000px;}
.y1e{bottom:623.775000px;}
.ya1{bottom:625.935000px;}
.yf2{bottom:627.735000px;}
.yd0{bottom:630.435000px;}
.y181{bottom:634.215000px;}
.y41{bottom:638.715000px;}
.y125{bottom:640.155000px;}
.y1d{bottom:641.055000px;}
.ya0{bottom:643.215000px;}
.ycf{bottom:647.715000px;}
.y180{bottom:651.495000px;}
.y40{bottom:655.995000px;}
.y1c{bottom:658.335000px;}
.y124{bottom:658.515000px;}
.y75{bottom:660.315000px;}
.ybf{bottom:660.495000px;}
.yce{bottom:664.995000px;}
.y17f{bottom:668.595000px;}
.y3f{bottom:673.095000px;}
.y1b{bottom:675.645000px;}
.y123{bottom:675.825000px;}
.y74{bottom:677.625000px;}
.y10c{bottom:677.805000px;}
.y17e{bottom:685.905000px;}
.y3e{bottom:690.405000px;}
.y1a{bottom:692.925000px;}
.y73{bottom:694.905000px;}
.y10b{bottom:695.085000px;}
.y17d{bottom:703.185000px;}
.y3d{bottom:707.685000px;}
.y10a{bottom:709.125000px;}
.y19{bottom:710.025000px;}
.y72{bottom:712.185000px;}
.y17c{bottom:720.465000px;}
.y122{bottom:724.065000px;}
.y9f{bottom:724.965000px;}
.y3c{bottom:725.685000px;}
.y18{bottom:727.305000px;}
.y71{bottom:729.465000px;}
.y101{bottom:733.785000px;}
.y17b{bottom:737.745000px;}
.y121{bottom:741.345000px;}
.y9e{bottom:742.245000px;}
.y17{bottom:744.585000px;}
.y3b{bottom:746.385000px;}
.y70{bottom:746.745000px;}
.y100{bottom:750.885000px;}
.y17a{bottom:755.025000px;}
.y120{bottom:758.625000px;}
.y9d{bottom:759.525000px;}
.y16{bottom:761.865000px;}
.y6f{bottom:764.025000px;}
.yff{bottom:768.165000px;}
.y179{bottom:772.125000px;}
.y11f{bottom:775.905000px;}
.y9c{bottom:776.625000px;}
.y15{bottom:779.145000px;}
.y6e{bottom:781.125000px;}
.yfe{bottom:785.445000px;}
.y178{bottom:789.405000px;}
.y9b{bottom:793.905000px;}
.y14{bottom:796.425000px;}
.y6d{bottom:798.405000px;}
.yfd{bottom:799.485000px;}
.y177{bottom:806.685000px;}
.y9a{bottom:811.185000px;}
.y13{bottom:813.525000px;}
.y6c{bottom:815.685000px;}
.y11e{bottom:823.065000px;}
.y176{bottom:823.965000px;}
.y99{bottom:828.465000px;}
.y12{bottom:830.805000px;}
.y6b{bottom:832.965000px;}
.y11d{bottom:840.345000px;}
.y175{bottom:841.245000px;}
.yab{bottom:845.745000px;}
.y11{bottom:848.805000px;}
.ye8{bottom:850.245000px;}
.y11c{bottom:857.625000px;}
.y174{bottom:858.525000px;}
.y144{bottom:862.845000px;}
.yaa{bottom:863.025000px;}
.yf1{bottom:865.545000px;}
.ye7{bottom:867.525000px;}
.y10{bottom:869.505000px;}
.y109{bottom:870.585000px;}
.y11b{bottom:874.905000px;}
.y98{bottom:875.625000px;}
.y6a{bottom:880.125000px;}
.yf0{bottom:882.645000px;}
.y15c{bottom:884.625000px;}
.y108{bottom:887.865000px;}
.yf{bottom:889.485000px;}
.yfc{bottom:889.665000px;}
.y11a{bottom:892.005000px;}
.y97{bottom:892.905000px;}
.yef{bottom:896.685000px;}
.y69{bottom:897.405000px;}
.y107{bottom:901.905000px;}
.yfb{bottom:906.945000px;}
.ye{bottom:907.485000px;}
.y119{bottom:909.285000px;}
.y96{bottom:910.185000px;}
.y68{bottom:914.730000px;}
.yfa{bottom:921.030000px;}
.y118{bottom:926.610000px;}
.y95{bottom:927.510000px;}
.yd{bottom:928.230000px;}
.y67{bottom:932.010000px;}
.y117{bottom:944.610000px;}
.y94{bottom:944.790000px;}
.yc{bottom:948.210000px;}
.y15b{bottom:949.110000px;}
.y66{bottom:949.290000px;}
.y93{bottom:961.890000px;}
.yb{bottom:966.210000px;}
.y65{bottom:966.390000px;}
.y92{bottom:979.170000px;}
.ya9{bottom:983.670000px;}
.ya{bottom:986.190000px;}
.y116{bottom:994.470000px;}
.y91{bottom:996.450000px;}
.ya8{bottom:1000.950000px;}
.y9{bottom:1005.450000px;}
.y115{bottom:1011.750000px;}
.y64{bottom:1013.730000px;}
.ya7{bottom:1018.230000px;}
.y114{bottom:1025.790000px;}
.y63{bottom:1031.010000px;}
.y8{bottom:1032.990000px;}
.y143{bottom:1035.510000px;}
.y15a{bottom:1048.110000px;}
.y62{bottom:1048.290000px;}
.y7{bottom:1060.530000px;}
.y61{bottom:1065.390000px;}
.y60{bottom:1082.670000px;}
.y6{bottom:1087.890000px;}
.y5f{bottom:1099.950000px;}
.y5{bottom:1108.950000px;}
.y4{bottom:1129.650000px;}
.y3{bottom:1150.350000px;}
.y2{bottom:1171.080000px;}
.y1{bottom:1192.680000px;}
.hc{height:53.573906px;}
.ha{height:58.621992px;}
.h9{height:58.651172px;}
.h6{height:60.226875px;}
.hb{height:61.423863px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h4{height:71.613281px;}
.h3{height:72.562500px;}
.h2{height:73.722656px;}
.h5{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2c{left:107.495987px;}
.x6{left:115.775987px;}
.xf{left:122.975987px;}
.xc{left:124.235987px;}
.x5{left:134.135987px;}
.x17{left:139.535987px;}
.x2{left:140.795987px;}
.x2a{left:148.895987px;}
.x1a{left:151.589987px;}
.x1c{left:158.789987px;}
.x30{left:160.409987px;}
.x8{left:176.969987px;}
.x26{left:178.229987px;}
.xd{left:185.609987px;}
.x10{left:207.389987px;}
.x28{left:240.149987px;}
.x3{left:250.589987px;}
.x18{left:265.169987px;}
.x7{left:273.269987px;}
.x9{left:356.834987px;}
.x19{left:404.174987px;}
.x27{left:405.974987px;}
.x25{left:408.674987px;}
.xe{left:421.814987px;}
.x16{left:423.614987px;}
.x2b{left:432.074987px;}
.x1b{left:436.574987px;}
.x29{left:444.854987px;}
.x4{left:450.794987px;}
.xa{left:477.464987px;}
.x2e{left:481.784987px;}
.x20{left:488.984987px;}
.x1e{left:491.864987px;}
.x2f{left:504.464987px;}
.x12{left:511.304987px;}
.x15{left:520.664987px;}
.x23{left:531.644987px;}
.x21{left:616.064987px;}
.x13{left:636.224987px;}
.x22{left:753.809987px;}
.x2d{left:768.929987px;}
.x1d{left:772.169987px;}
.x24{left:774.689987px;}
.xb{left:789.629987px;}
.x14{left:791.789987px;}
.x11{left:793.769987px;}
.x1f{left:842.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-2.101333pt;}
.ls5{letter-spacing:-1.824000pt;}
.lse{letter-spacing:-1.760000pt;}
.ls12{letter-spacing:-1.600000pt;}
.ls13{letter-spacing:-1.328000pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-1.098667pt;}
.ls2{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls1{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:5.920000pt;}
.ls11{letter-spacing:57.552640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.424000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws0{word-spacing:-13.632000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.823467pt;}
.ws7{word-spacing:-12.736000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.181333pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-3.348693pt;}
._9{margin-left:-2.318293pt;}
._0{margin-left:-1.216000pt;}
._3{width:0.970667pt;}
._8{width:1.909333pt;}
._1a{width:2.803200pt;}
._e{width:3.749973pt;}
._d{width:4.761813pt;}
._14{width:5.665280pt;}
._13{width:6.677760pt;}
._16{width:7.827840pt;}
._17{width:8.950187pt;}
._4{width:9.920000pt;}
._6{width:10.816000pt;}
._5{width:11.776000pt;}
._1{width:13.376000pt;}
._2{width:14.634667pt;}
._11{width:15.662293pt;}
._7{width:17.258667pt;}
._b{width:18.417920pt;}
._c{width:19.794773pt;}
._1b{width:21.035520pt;}
._1c{width:22.016000pt;}
._15{width:23.131307pt;}
._12{width:24.285227pt;}
._f{width:25.704320pt;}
._10{width:27.176320pt;}
._30{width:28.142293pt;}
._36{width:29.042987pt;}
._1f{width:30.267947pt;}
._1e{width:31.597440pt;}
._23{width:32.819413pt;}
._19{width:33.947733pt;}
._18{width:35.347413pt;}
._26{width:36.269440pt;}
._27{width:37.777707pt;}
._28{width:38.931200pt;}
._32{width:39.934293pt;}
._2b{width:41.649707pt;}
._1d{width:43.615147pt;}
._2f{width:44.933760pt;}
._22{width:46.161280pt;}
._21{width:47.565013pt;}
._35{width:48.758400pt;}
._34{width:49.648213pt;}
._2c{width:51.319253pt;}
._20{width:55.527253pt;}
._24{width:60.249173pt;}
._37{width:61.138987pt;}
._25{width:62.078293pt;}
._33{width:62.984747pt;}
._2a{width:64.000000pt;}
._29{width:65.280000pt;}
._39{width:69.067093pt;}
._2d{width:80.015573pt;}
._2e{width:81.319253pt;}
._3a{width:88.600320pt;}
._38{width:105.048747pt;}
._31{width:140.778667pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:92.960000pt;}
.ya6{bottom:94.560000pt;}
.y142{bottom:95.680000pt;}
.y5e{bottom:96.320000pt;}
.ye6{bottom:96.960000pt;}
.y173{bottom:97.280000pt;}
.ycc{bottom:108.320000pt;}
.y106{bottom:108.640000pt;}
.y141{bottom:111.040000pt;}
.y5d{bottom:111.680000pt;}
.ye5{bottom:112.320000pt;}
.y172{bottom:112.640000pt;}
.y90{bottom:113.600000pt;}
.ybe{bottom:118.560000pt;}
.y105{bottom:120.960000pt;}
.ycb{bottom:123.680000pt;}
.y3a{bottom:125.120000pt;}
.y140{bottom:126.400000pt;}
.y5c{bottom:127.040000pt;}
.ye4{bottom:127.680000pt;}
.y171{bottom:128.000000pt;}
.y8f{bottom:129.440000pt;}
.y159{bottom:131.840000pt;}
.ybd{bottom:133.920000pt;}
.y39{bottom:140.480000pt;}
.y13f{bottom:141.760000pt;}
.y5b{bottom:142.400000pt;}
.ye3{bottom:143.040000pt;}
.y170{bottom:143.200000pt;}
.y158{bottom:147.200000pt;}
.y8e{bottom:147.840000pt;}
.ybc{bottom:149.280000pt;}
.y38{bottom:155.840000pt;}
.y13e{bottom:157.120000pt;}
.y5a{bottom:157.760000pt;}
.ye2{bottom:158.400000pt;}
.y16f{bottom:158.560000pt;}
.y113{bottom:159.840000pt;}
.y157{bottom:162.560000pt;}
.yee{bottom:163.680000pt;}
.ybb{bottom:164.640000pt;}
.yca{bottom:165.600000pt;}
.y37{bottom:171.200000pt;}
.y112{bottom:172.320000pt;}
.y13d{bottom:172.480000pt;}
.y59{bottom:172.960000pt;}
.ye1{bottom:173.600000pt;}
.y16e{bottom:173.920000pt;}
.y156{bottom:177.946667pt;}
.yed{bottom:179.066667pt;}
.yc9{bottom:180.986667pt;}
.y36{bottom:186.586667pt;}
.y13c{bottom:187.706667pt;}
.y58{bottom:188.346667pt;}
.ye0{bottom:188.986667pt;}
.y16d{bottom:189.306667pt;}
.yec{bottom:191.546667pt;}
.y8d{bottom:192.346667pt;}
.y155{bottom:193.306667pt;}
.yc8{bottom:196.346667pt;}
.y35{bottom:201.786667pt;}
.y57{bottom:203.706667pt;}
.y16c{bottom:204.666667pt;}
.yba{bottom:206.586667pt;}
.y8c{bottom:207.706667pt;}
.y154{bottom:208.666667pt;}
.yc7{bottom:211.706667pt;}
.y34{bottom:217.146667pt;}
.y56{bottom:219.066667pt;}
.y16b{bottom:220.026667pt;}
.yb9{bottom:221.946667pt;}
.yf9{bottom:222.586667pt;}
.y8b{bottom:223.066667pt;}
.y153{bottom:224.026667pt;}
.yc6{bottom:227.066667pt;}
.y13b{bottom:229.786667pt;}
.ydf{bottom:231.066667pt;}
.y33{bottom:232.506667pt;}
.y55{bottom:234.426667pt;}
.yf8{bottom:235.066667pt;}
.y16a{bottom:235.226667pt;}
.yb8{bottom:237.306667pt;}
.y8a{bottom:238.426667pt;}
.yc5{bottom:242.426667pt;}
.y13a{bottom:245.146667pt;}
.yde{bottom:246.426667pt;}
.y32{bottom:247.866667pt;}
.y54{bottom:249.786667pt;}
.y169{bottom:250.586667pt;}
.yb7{bottom:252.666667pt;}
.y89{bottom:253.626667pt;}
.yc4{bottom:257.626667pt;}
.y139{bottom:260.506667pt;}
.ydd{bottom:261.626667pt;}
.y31{bottom:263.226667pt;}
.y53{bottom:264.986667pt;}
.y152{bottom:265.946667pt;}
.y111{bottom:267.386667pt;}
.yb6{bottom:267.866667pt;}
.y88{bottom:268.986667pt;}
.yc3{bottom:272.986667pt;}
.y138{bottom:275.706667pt;}
.ydc{bottom:276.986667pt;}
.y30{bottom:278.586667pt;}
.y110{bottom:279.866667pt;}
.y52{bottom:280.346667pt;}
.y151{bottom:281.306667pt;}
.yb5{bottom:283.226667pt;}
.y87{bottom:284.346667pt;}
.yc2{bottom:288.346667pt;}
.y137{bottom:291.066667pt;}
.ydb{bottom:292.346667pt;}
.y2f{bottom:293.786667pt;}
.y150{bottom:296.666667pt;}
.yb4{bottom:298.586667pt;}
.y86{bottom:299.706667pt;}
.yc1{bottom:303.706667pt;}
.y136{bottom:306.426667pt;}
.yda{bottom:307.706667pt;}
.y2e{bottom:309.146667pt;}
.y14f{bottom:312.026667pt;}
.yb3{bottom:313.946667pt;}
.y85{bottom:315.066667pt;}
.yc0{bottom:319.066667pt;}
.yf7{bottom:319.386667pt;}
.y135{bottom:321.786667pt;}
.y51{bottom:322.266667pt;}
.yd9{bottom:323.066667pt;}
.y2d{bottom:324.506667pt;}
.y14e{bottom:327.226667pt;}
.yb2{bottom:329.306667pt;}
.y84{bottom:330.426667pt;}
.yf6{bottom:334.746667pt;}
.y134{bottom:337.146667pt;}
.y50{bottom:337.626667pt;}
.yd8{bottom:338.426667pt;}
.y2c{bottom:339.866667pt;}
.y168{bottom:342.586667pt;}
.y14d{bottom:343.226667pt;}
.yb1{bottom:345.146667pt;}
.y83{bottom:345.626667pt;}
.yf5{bottom:347.226667pt;}
.y133{bottom:352.506667pt;}
.y4f{bottom:352.986667pt;}
.y2b{bottom:355.226667pt;}
.y167{bottom:357.946667pt;}
.y82{bottom:360.986667pt;}
.yb0{bottom:363.546667pt;}
.y18e{bottom:364.346667pt;}
.y132{bottom:367.706667pt;}
.y4e{bottom:368.346667pt;}
.y2a{bottom:370.426667pt;}
.y166{bottom:373.306667pt;}
.y81{bottom:376.346667pt;}
.y18d{bottom:379.706667pt;}
.yd7{bottom:380.346667pt;}
.yeb{bottom:380.666667pt;}
.yaf{bottom:381.946667pt;}
.y131{bottom:383.066667pt;}
.y4d{bottom:383.706667pt;}
.y29{bottom:385.786667pt;}
.y14c{bottom:387.746667pt;}
.y165{bottom:388.706667pt;}
.y80{bottom:391.746667pt;}
.y18c{bottom:395.106667pt;}
.yd6{bottom:395.746667pt;}
.yea{bottom:395.906667pt;}
.y130{bottom:398.466667pt;}
.y4c{bottom:399.106667pt;}
.yae{bottom:399.746667pt;}
.y28{bottom:401.186667pt;}
.y14b{bottom:403.106667pt;}
.y164{bottom:404.066667pt;}
.y7f{bottom:407.106667pt;}
.ye9{bottom:408.546667pt;}
.y18b{bottom:410.466667pt;}
.yd5{bottom:411.106667pt;}
.y12f{bottom:413.826667pt;}
.y4b{bottom:414.466667pt;}
.yad{bottom:415.106667pt;}
.y27{bottom:416.546667pt;}
.y14a{bottom:418.466667pt;}
.y163{bottom:419.266667pt;}
.y104{bottom:420.386667pt;}
.y7e{bottom:422.466667pt;}
.y18a{bottom:425.666667pt;}
.yd4{bottom:426.306667pt;}
.y12e{bottom:429.186667pt;}
.y4a{bottom:429.666667pt;}
.y26{bottom:431.906667pt;}
.y149{bottom:433.666667pt;}
.y162{bottom:434.626667pt;}
.y103{bottom:435.746667pt;}
.y7d{bottom:437.666667pt;}
.y10f{bottom:438.146667pt;}
.y189{bottom:441.026667pt;}
.yd3{bottom:441.666667pt;}
.y12d{bottom:444.386667pt;}
.y49{bottom:445.026667pt;}
.y25{bottom:447.266667pt;}
.y102{bottom:448.226667pt;}
.y148{bottom:449.026667pt;}
.y161{bottom:449.986667pt;}
.y7c{bottom:453.026667pt;}
.y10e{bottom:453.506667pt;}
.yac{bottom:454.146667pt;}
.y188{bottom:456.386667pt;}
.yd2{bottom:457.026667pt;}
.y48{bottom:460.386667pt;}
.y12c{bottom:460.706667pt;}
.y24{bottom:462.466667pt;}
.y147{bottom:464.386667pt;}
.y160{bottom:465.346667pt;}
.y10d{bottom:465.986667pt;}
.y7b{bottom:468.386667pt;}
.y187{bottom:471.746667pt;}
.y47{bottom:475.746667pt;}
.y12b{bottom:476.066667pt;}
.y23{bottom:477.826667pt;}
.y146{bottom:479.746667pt;}
.y15f{bottom:480.706667pt;}
.y7a{bottom:483.746667pt;}
.y186{bottom:487.106667pt;}
.y46{bottom:491.106667pt;}
.y12a{bottom:491.426667pt;}
.y22{bottom:493.186667pt;}
.ya5{bottom:494.946667pt;}
.y145{bottom:495.106667pt;}
.y15e{bottom:495.906667pt;}
.yd1{bottom:498.946667pt;}
.y79{bottom:499.106667pt;}
.y185{bottom:502.466667pt;}
.y45{bottom:506.466667pt;}
.y129{bottom:506.786667pt;}
.y21{bottom:508.546667pt;}
.ya4{bottom:510.306667pt;}
.y15d{bottom:511.906667pt;}
.y78{bottom:514.306667pt;}
.y184{bottom:517.666667pt;}
.y44{bottom:521.666667pt;}
.y128{bottom:523.106667pt;}
.y20{bottom:523.906667pt;}
.ya3{bottom:525.666667pt;}
.y77{bottom:529.666667pt;}
.yf4{bottom:530.146667pt;}
.y183{bottom:533.026667pt;}
.y43{bottom:537.026667pt;}
.y127{bottom:538.306667pt;}
.y1f{bottom:539.266667pt;}
.ya2{bottom:541.026667pt;}
.y76{bottom:545.026667pt;}
.yf3{bottom:545.506667pt;}
.y182{bottom:548.386667pt;}
.y42{bottom:552.386667pt;}
.y126{bottom:553.666667pt;}
.y1e{bottom:554.466667pt;}
.ya1{bottom:556.386667pt;}
.yf2{bottom:557.986667pt;}
.yd0{bottom:560.386667pt;}
.y181{bottom:563.746667pt;}
.y41{bottom:567.746667pt;}
.y125{bottom:569.026667pt;}
.y1d{bottom:569.826667pt;}
.ya0{bottom:571.746667pt;}
.ycf{bottom:575.746667pt;}
.y180{bottom:579.106667pt;}
.y40{bottom:583.106667pt;}
.y1c{bottom:585.186667pt;}
.y124{bottom:585.346667pt;}
.y75{bottom:586.946667pt;}
.ybf{bottom:587.106667pt;}
.yce{bottom:591.106667pt;}
.y17f{bottom:594.306667pt;}
.y3f{bottom:598.306667pt;}
.y1b{bottom:600.573333pt;}
.y123{bottom:600.733333pt;}
.y74{bottom:602.333333pt;}
.y10c{bottom:602.493333pt;}
.y17e{bottom:609.693333pt;}
.y3e{bottom:613.693333pt;}
.y1a{bottom:615.933333pt;}
.y73{bottom:617.693333pt;}
.y10b{bottom:617.853333pt;}
.y17d{bottom:625.053333pt;}
.y3d{bottom:629.053333pt;}
.y10a{bottom:630.333333pt;}
.y19{bottom:631.133333pt;}
.y72{bottom:633.053333pt;}
.y17c{bottom:640.413333pt;}
.y122{bottom:643.613333pt;}
.y9f{bottom:644.413333pt;}
.y3c{bottom:645.053333pt;}
.y18{bottom:646.493333pt;}
.y71{bottom:648.413333pt;}
.y101{bottom:652.253333pt;}
.y17b{bottom:655.773333pt;}
.y121{bottom:658.973333pt;}
.y9e{bottom:659.773333pt;}
.y17{bottom:661.853333pt;}
.y3b{bottom:663.453333pt;}
.y70{bottom:663.773333pt;}
.y100{bottom:667.453333pt;}
.y17a{bottom:671.133333pt;}
.y120{bottom:674.333333pt;}
.y9d{bottom:675.133333pt;}
.y16{bottom:677.213333pt;}
.y6f{bottom:679.133333pt;}
.yff{bottom:682.813333pt;}
.y179{bottom:686.333333pt;}
.y11f{bottom:689.693333pt;}
.y9c{bottom:690.333333pt;}
.y15{bottom:692.573333pt;}
.y6e{bottom:694.333333pt;}
.yfe{bottom:698.173333pt;}
.y178{bottom:701.693333pt;}
.y9b{bottom:705.693333pt;}
.y14{bottom:707.933333pt;}
.y6d{bottom:709.693333pt;}
.yfd{bottom:710.653333pt;}
.y177{bottom:717.053333pt;}
.y9a{bottom:721.053333pt;}
.y13{bottom:723.133333pt;}
.y6c{bottom:725.053333pt;}
.y11e{bottom:731.613333pt;}
.y176{bottom:732.413333pt;}
.y99{bottom:736.413333pt;}
.y12{bottom:738.493333pt;}
.y6b{bottom:740.413333pt;}
.y11d{bottom:746.973333pt;}
.y175{bottom:747.773333pt;}
.yab{bottom:751.773333pt;}
.y11{bottom:754.493333pt;}
.ye8{bottom:755.773333pt;}
.y11c{bottom:762.333333pt;}
.y174{bottom:763.133333pt;}
.y144{bottom:766.973333pt;}
.yaa{bottom:767.133333pt;}
.yf1{bottom:769.373333pt;}
.ye7{bottom:771.133333pt;}
.y10{bottom:772.893333pt;}
.y109{bottom:773.853333pt;}
.y11b{bottom:777.693333pt;}
.y98{bottom:778.333333pt;}
.y6a{bottom:782.333333pt;}
.yf0{bottom:784.573333pt;}
.y15c{bottom:786.333333pt;}
.y108{bottom:789.213333pt;}
.yf{bottom:790.653333pt;}
.yfc{bottom:790.813333pt;}
.y11a{bottom:792.893333pt;}
.y97{bottom:793.693333pt;}
.yef{bottom:797.053333pt;}
.y69{bottom:797.693333pt;}
.y107{bottom:801.693333pt;}
.yfb{bottom:806.173333pt;}
.ye{bottom:806.653333pt;}
.y119{bottom:808.253333pt;}
.y96{bottom:809.053333pt;}
.y68{bottom:813.093333pt;}
.yfa{bottom:818.693333pt;}
.y118{bottom:823.653333pt;}
.y95{bottom:824.453333pt;}
.yd{bottom:825.093333pt;}
.y67{bottom:828.453333pt;}
.y117{bottom:839.653333pt;}
.y94{bottom:839.813333pt;}
.yc{bottom:842.853333pt;}
.y15b{bottom:843.653333pt;}
.y66{bottom:843.813333pt;}
.y93{bottom:855.013333pt;}
.yb{bottom:858.853333pt;}
.y65{bottom:859.013333pt;}
.y92{bottom:870.373333pt;}
.ya9{bottom:874.373333pt;}
.ya{bottom:876.613333pt;}
.y116{bottom:883.973333pt;}
.y91{bottom:885.733333pt;}
.ya8{bottom:889.733333pt;}
.y9{bottom:893.733333pt;}
.y115{bottom:899.333333pt;}
.y64{bottom:901.093333pt;}
.ya7{bottom:905.093333pt;}
.y114{bottom:911.813333pt;}
.y63{bottom:916.453333pt;}
.y8{bottom:918.213333pt;}
.y143{bottom:920.453333pt;}
.y15a{bottom:931.653333pt;}
.y62{bottom:931.813333pt;}
.y7{bottom:942.693333pt;}
.y61{bottom:947.013333pt;}
.y60{bottom:962.373333pt;}
.y6{bottom:967.013333pt;}
.y5f{bottom:977.733333pt;}
.y5{bottom:985.733333pt;}
.y4{bottom:1004.133333pt;}
.y3{bottom:1022.533333pt;}
.y2{bottom:1040.960000pt;}
.y1{bottom:1060.160000pt;}
.hc{height:47.621250pt;}
.ha{height:52.108438pt;}
.h9{height:52.134375pt;}
.h6{height:53.535000pt;}
.hb{height:54.598989pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h4{height:63.656250pt;}
.h3{height:64.500000pt;}
.h2{height:65.531250pt;}
.h5{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2c{left:95.551988pt;}
.x6{left:102.911988pt;}
.xf{left:109.311988pt;}
.xc{left:110.431988pt;}
.x5{left:119.231988pt;}
.x17{left:124.031988pt;}
.x2{left:125.151988pt;}
.x2a{left:132.351988pt;}
.x1a{left:134.746655pt;}
.x1c{left:141.146655pt;}
.x30{left:142.586655pt;}
.x8{left:157.306655pt;}
.x26{left:158.426655pt;}
.xd{left:164.986655pt;}
.x10{left:184.346655pt;}
.x28{left:213.466655pt;}
.x3{left:222.746655pt;}
.x18{left:235.706655pt;}
.x7{left:242.906655pt;}
.x9{left:317.186655pt;}
.x19{left:359.266655pt;}
.x27{left:360.866655pt;}
.x25{left:363.266655pt;}
.xe{left:374.946655pt;}
.x16{left:376.546655pt;}
.x2b{left:384.066655pt;}
.x1b{left:388.066655pt;}
.x29{left:395.426655pt;}
.x4{left:400.706655pt;}
.xa{left:424.413322pt;}
.x2e{left:428.253322pt;}
.x20{left:434.653322pt;}
.x1e{left:437.213322pt;}
.x2f{left:448.413322pt;}
.x12{left:454.493322pt;}
.x15{left:462.813322pt;}
.x23{left:472.573322pt;}
.x21{left:547.613322pt;}
.x13{left:565.533322pt;}
.x22{left:670.053322pt;}
.x2d{left:683.493322pt;}
.x1d{left:686.373322pt;}
.x24{left:688.613322pt;}
.xb{left:701.893322pt;}
.x14{left:703.813322pt;}
.x11{left:705.573322pt;}
.x1f{left:748.773322pt;}
}




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