
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f7c0db02048d4863b5ac8c37.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_845a56cbfca5f3c0bf4b3c01.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a7793256fdd43187f47cc675.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_74ff280cb0fdfe8097f07caf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_d3eb9af6115c272a271b2bde.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_85c8bbdac3c429eafefd1539.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_e429e22f501cb95f7abda00c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1d38589342d3bb407e002312.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b84fb8eee0be6c57a1909fcb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.339600px;}
.ls1f{letter-spacing:-0.299400px;}
.ls20{letter-spacing:-0.261600px;}
.ls14{letter-spacing:-0.232800px;}
.ls12{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.068400px;}
.ls13{letter-spacing:-0.063600px;}
.ls26{letter-spacing:-0.031680px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.060480px;}
.ls1e{letter-spacing:0.060600px;}
.lse{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.097560px;}
.ls1c{letter-spacing:0.098280px;}
.ls23{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.116400px;}
.ls15{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.160560px;}
.ls11{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls27{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.453600px;}
.ls21{letter-spacing:6.573600px;}
.ls28{letter-spacing:47.726640px;}
.ls24{letter-spacing:48.446640px;}
.lsf{letter-spacing:63.566640px;}
.ls22{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.353600px;}
.ws10{word-spacing:-13.342800px;}
.ws14{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.246560px;}
.ws3{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.194720px;}
.wsb{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.993600px;}
.ws13{word-spacing:-12.964800px;}
.wse{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws12{word-spacing:-8.254200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._10{margin-left:-3.306600px;}
._6{margin-left:-2.252040px;}
._0{margin-left:-1.110000px;}
._2{width:1.089480px;}
._9{width:2.164200px;}
._8{width:3.242520px;}
._c{width:4.513080px;}
._f{width:5.654518px;}
._4{width:6.942947px;}
._d{width:8.027053px;}
._3{width:9.174696px;}
._5{width:10.837800px;}
._b{width:11.915400px;}
._7{width:14.484960px;}
._11{width:15.691320px;}
._e{width:17.254200px;}
._a{width:18.697200px;}
._16{width:20.441040px;}
._14{width:21.859200px;}
._15{width:22.896720px;}
._1c{width:29.139480px;}
._17{width:30.240360px;}
._1e{width:35.467920px;}
._1{width:37.075212px;}
._1b{width:100.101000px;}
._18{width:117.503880px;}
._1d{width:127.353240px;}
._13{width:165.668400px;}
._19{width:179.539800px;}
._1a{width:188.927520px;}
._12{width:200.133840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y87{bottom:7.830000px;}
.y84{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:114.960000px;}
.ye2{bottom:115.410000px;}
.y129{bottom:120.990000px;}
.y144{bottom:121.080000px;}
.y89{bottom:122.880000px;}
.y5a{bottom:132.510000px;}
.ye1{bottom:133.050000px;}
.y29{bottom:137.910000px;}
.y128{bottom:138.630000px;}
.yac{bottom:140.610000px;}
.yf8{bottom:143.040000px;}
.y88{bottom:150.240000px;}
.ye0{bottom:150.600000px;}
.y59{bottom:150.960000px;}
.y28{bottom:155.550000px;}
.y127{bottom:156.180000px;}
.yab{bottom:158.160000px;}
.yf7{bottom:160.680000px;}
.y143{bottom:163.650000px;}
.ydf{bottom:168.240000px;}
.y58{bottom:168.510000px;}
.y27{bottom:173.100000px;}
.yaa{bottom:175.800000px;}
.y86{bottom:177.600000px;}
.y126{bottom:181.200000px;}
.y142{bottom:181.290000px;}
.yf6{bottom:185.700000px;}
.yde{bottom:185.790000px;}
.y57{bottom:186.060000px;}
.y26{bottom:190.740000px;}
.y125{bottom:198.930000px;}
.ydd{bottom:203.340000px;}
.y85{bottom:204.870000px;}
.y141{bottom:206.310000px;}
.ya9{bottom:208.740000px;}
.y56{bottom:213.510000px;}
.y25{bottom:217.650000px;}
.ydc{bottom:220.980000px;}
.y124{bottom:223.860000px;}
.y140{bottom:223.950000px;}
.y83{bottom:232.230000px;}
.ya8{bottom:236.100000px;}
.ydb{bottom:238.530000px;}
.y13f{bottom:241.590000px;}
.yf5{bottom:245.910000px;}
.y55{bottom:246.090000px;}
.y123{bottom:248.970000px;}
.yda{bottom:256.170000px;}
.ya7{bottom:263.460000px;}
.y54{bottom:263.640000px;}
.y24{bottom:265.890000px;}
.y13e{bottom:266.520000px;}
.y122{bottom:266.610000px;}
.yd9{bottom:273.720000px;}
.y82{bottom:280.920000px;}
.yf4{bottom:281.190000px;}
.y53{bottom:282.090000px;}
.y23{bottom:283.800000px;}
.y121{bottom:284.250000px;}
.ya6{bottom:290.730000px;}
.yd8{bottom:291.270000px;}
.y52{bottom:299.640000px;}
.y120{bottom:301.800000px;}
.yf3{bottom:306.210000px;}
.y81{bottom:307.830000px;}
.yd7{bottom:308.910000px;}
.y51{bottom:317.190000px;}
.ya5{bottom:318.090000px;}
.y11f{bottom:319.440000px;}
.y22{bottom:320.790000px;}
.yf2{bottom:323.850000px;}
.yd6{bottom:326.460000px;}
.y13d{bottom:326.820000px;}
.y21{bottom:338.430000px;}
.yd5{bottom:344.100000px;}
.y11e{bottom:344.370000px;}
.y13c{bottom:344.460000px;}
.y50{bottom:344.640000px;}
.ya4{bottom:345.450000px;}
.yf1{bottom:348.870000px;}
.y20{bottom:355.980000px;}
.y80{bottom:356.160000px;}
.yd4{bottom:361.650000px;}
.y11d{bottom:362.100000px;}
.yf0{bottom:366.510000px;}
.y13b{bottom:369.480000px;}
.ya3{bottom:372.810000px;}
.y1f{bottom:373.530000px;}
.y7f{bottom:373.710000px;}
.y4f{bottom:377.220000px;}
.yd3{bottom:379.200000px;}
.y11c{bottom:387.030000px;}
.y13a{bottom:387.120000px;}
.y1e{bottom:391.170000px;}
.yef{bottom:393.420000px;}
.y4e{bottom:394.860000px;}
.yd2{bottom:396.840000px;}
.ya2{bottom:400.080000px;}
.y7e{bottom:400.260000px;}
.y11b{bottom:404.760000px;}
.y1d{bottom:408.720000px;}
.y139{bottom:412.140000px;}
.y4d{bottom:412.410000px;}
.yd1{bottom:414.390000px;}
.y1c{bottom:426.360000px;}
.ya1{bottom:427.440000px;}
.y11a{bottom:429.780000px;}
.y138{bottom:429.870000px;}
.y4c{bottom:430.860000px;}
.yd0{bottom:431.940000px;}
.y7d{bottom:435.900000px;}
.yee{bottom:441.750000px;}
.y1b{bottom:443.910000px;}
.y119{bottom:447.420000px;}
.y4b{bottom:448.410000px;}
.ycf{bottom:449.580000px;}
.y7c{bottom:453.450000px;}
.ya0{bottom:454.800000px;}
.y1a{bottom:461.460000px;}
.y4a{bottom:466.860000px;}
.yce{bottom:467.130000px;}
.yed{bottom:468.660000px;}
.y7b{bottom:471.120000px;}
.y118{bottom:472.470000px;}
.y19{bottom:479.130000px;}
.y49{bottom:484.440000px;}
.ycd{bottom:484.800000px;}
.y117{bottom:490.110000px;}
.y18{bottom:496.680000px;}
.y7a{bottom:497.580000px;}
.y48{bottom:502.080000px;}
.ycc{bottom:502.350000px;}
.y9f{bottom:503.520000px;}
.yec{bottom:506.040000px;}
.y116{bottom:507.750000px;}
.y17{bottom:514.320000px;}
.y47{bottom:519.630000px;}
.ycb{bottom:519.900000px;}
.y16{bottom:531.870000px;}
.y115{bottom:532.680000px;}
.y79{bottom:533.220000px;}
.yca{bottom:537.540000px;}
.y9e{bottom:539.070000px;}
.y46{bottom:546.990000px;}
.y15{bottom:549.420000px;}
.y114{bottom:550.410000px;}
.y78{bottom:551.670000px;}
.yeb{bottom:554.280000px;}
.yc9{bottom:555.090000px;}
.y9d{bottom:563.100000px;}
.y14{bottom:567.060000px;}
.y77{bottom:570.030000px;}
.yea{bottom:571.830000px;}
.yc8{bottom:572.730000px;}
.y113{bottom:575.340000px;}
.y45{bottom:579.660000px;}
.y76{bottom:588.480000px;}
.yc7{bottom:590.280000px;}
.y9c{bottom:590.370000px;}
.y112{bottom:593.070000px;}
.y13{bottom:593.970000px;}
.ye9{bottom:607.470000px;}
.yc6{bottom:607.830000px;}
.y44{bottom:615.210000px;}
.y9b{bottom:617.730000px;}
.y111{bottom:618.000000px;}
.y75{bottom:624.930000px;}
.yc5{bottom:625.470000px;}
.y43{bottom:632.760000px;}
.y110{bottom:635.730000px;}
.y12{bottom:640.680000px;}
.y74{bottom:642.480000px;}
.yc4{bottom:643.020000px;}
.y9a{bottom:645.090000px;}
.y42{bottom:659.400000px;}
.yc3{bottom:660.660000px;}
.y10f{bottom:660.750000px;}
.y73{bottom:669.030000px;}
.y99{bottom:672.450000px;}
.y11{bottom:676.500000px;}
.yc2{bottom:678.210000px;}
.y10e{bottom:678.390000px;}
.y41{bottom:694.950000px;}
.yc1{bottom:695.760000px;}
.y98{bottom:699.720000px;}
.y10d{bottom:703.410000px;}
.y72{bottom:704.670000px;}
.y10{bottom:712.500000px;}
.y40{bottom:712.590000px;}
.yc0{bottom:713.400000px;}
.y10c{bottom:721.050000px;}
.y71{bottom:722.220000px;}
.y97{bottom:727.080000px;}
.ybf{bottom:730.950000px;}
.y10b{bottom:738.690000px;}
.y3f{bottom:739.140000px;}
.y70{bottom:739.860000px;}
.ybe{bottom:748.590000px;}
.yf{bottom:752.280000px;}
.y96{bottom:754.440000px;}
.y6f{bottom:757.410000px;}
.y10a{bottom:763.620000px;}
.ybd{bottom:766.140000px;}
.ye{bottom:770.280000px;}
.y3e{bottom:775.050000px;}
.y109{bottom:781.350000px;}
.ybc{bottom:783.690000px;}
.yd{bottom:788.280000px;}
.y6e{bottom:792.600000px;}
.ye8{bottom:793.050000px;}
.y108{bottom:798.900000px;}
.ybb{bottom:801.330000px;}
.y95{bottom:803.130000px;}
.yc{bottom:806.280000px;}
.y6d{bottom:810.150000px;}
.yba{bottom:818.880000px;}
.yb{bottom:820.500000px;}
.y3d{bottom:823.290000px;}
.y107{bottom:823.920000px;}
.y6c{bottom:827.790000px;}
.y137{bottom:831.390000px;}
.yb9{bottom:836.520000px;}
.y94{bottom:838.680000px;}
.y3c{bottom:840.930000px;}
.ye7{bottom:841.290000px;}
.y106{bottom:841.560000px;}
.ya{bottom:842.280000px;}
.y6b{bottom:845.340000px;}
.y136{bottom:849.030000px;}
.yb8{bottom:854.070000px;}
.y3b{bottom:858.480000px;}
.ye6{bottom:858.930000px;}
.y9{bottom:860.280000px;}
.y93{bottom:862.710000px;}
.y6a{bottom:862.980000px;}
.y105{bottom:866.580000px;}
.yb7{bottom:871.620000px;}
.y135{bottom:874.050000px;}
.y3a{bottom:876.030000px;}
.ye5{bottom:876.480000px;}
.y8{bottom:878.280000px;}
.y69{bottom:880.530000px;}
.y104{bottom:884.220000px;}
.yb6{bottom:889.260000px;}
.y92{bottom:889.980000px;}
.y134{bottom:891.780000px;}
.y39{bottom:893.670000px;}
.ye4{bottom:894.030000px;}
.y68{bottom:898.080000px;}
.yb5{bottom:906.810000px;}
.y103{bottom:909.240000px;}
.y7{bottom:910.590000px;}
.ye3{bottom:911.670000px;}
.y67{bottom:916.530000px;}
.y133{bottom:916.710000px;}
.y91{bottom:917.340000px;}
.yb4{bottom:924.450000px;}
.y102{bottom:926.880000px;}
.y38{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y66{bottom:934.080000px;}
.y132{bottom:934.440000px;}
.yb3{bottom:942.000000px;}
.y37{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y65{bottom:951.720000px;}
.y101{bottom:951.900000px;}
.y131{bottom:959.370000px;}
.yb2{bottom:959.550000px;}
.y36{bottom:964.410000px;}
.y90{bottom:966.030000px;}
.y64{bottom:969.270000px;}
.y100{bottom:969.630000px;}
.yb1{bottom:977.190000px;}
.y35{bottom:981.960000px;}
.y130{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.yff{bottom:994.560000px;}
.yb0{bottom:994.740000px;}
.y63{bottom:996.630000px;}
.y34{bottom:999.600000px;}
.y8f{bottom:1000.860000px;}
.y12f{bottom:1002.210000px;}
.y3{bottom:1012.320000px;}
.y33{bottom:1017.180000px;}
.yfe{bottom:1019.700000px;}
.y12e{bottom:1019.790000px;}
.yaf{bottom:1029.960000px;}
.y62{bottom:1032.300000px;}
.y8e{bottom:1033.020000px;}
.y32{bottom:1034.820000px;}
.yfd{bottom:1037.340000px;}
.y12d{bottom:1044.810000px;}
.y8d{bottom:1045.170000px;}
.yae{bottom:1047.510000px;}
.y61{bottom:1049.850000px;}
.y31{bottom:1052.370000px;}
.yfc{bottom:1054.980000px;}
.y12c{bottom:1062.450000px;}
.y60{bottom:1068.300000px;}
.y30{bottom:1069.920000px;}
.y8c{bottom:1072.530000px;}
.yad{bottom:1074.420000px;}
.yfb{bottom:1079.910000px;}
.y12b{bottom:1080.000000px;}
.y5f{bottom:1085.850000px;}
.y2f{bottom:1087.560000px;}
.yfa{bottom:1097.640000px;}
.y8b{bottom:1099.890000px;}
.y5e{bottom:1104.300000px;}
.y12a{bottom:1105.020000px;}
.y2e{bottom:1105.110000px;}
.y5d{bottom:1121.850000px;}
.yf9{bottom:1122.660000px;}
.y2d{bottom:1122.750000px;}
.y8a{bottom:1127.160000px;}
.y5c{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:61.410000px;}
.w7{width:63.000000px;}
.wa{width:101.880000px;}
.w5{width:108.720000px;}
.w8{width:115.740000px;}
.w6{width:148.440000px;}
.w9{width:167.520000px;}
.wb{width:172.020000px;}
.w3{width:177.480000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:3.870000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x13{left:111.419987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.xb{left:285.780000px;}
.x9{left:294.869987px;}
.xe{left:304.590000px;}
.x11{left:309.360000px;}
.x6{left:326.820000px;}
.xc{left:395.220000px;}
.x12{left:411.960000px;}
.x10{left:421.140000px;}
.xa{left:446.609987px;}
.x8{left:505.020000px;}
.xd{left:544.470000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.301867pt;}
.ls1f{letter-spacing:-0.266133pt;}
.ls20{letter-spacing:-0.232533pt;}
.ls14{letter-spacing:-0.206933pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.060800pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls26{letter-spacing:-0.028160pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.053760pt;}
.ls1e{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.086720pt;}
.ls1c{letter-spacing:0.087360pt;}
.ls23{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.103467pt;}
.ls15{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.142720pt;}
.ls11{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls27{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.403200pt;}
.ls21{letter-spacing:5.843200pt;}
.ls28{letter-spacing:42.423680pt;}
.ls24{letter-spacing:43.063680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls22{letter-spacing:72.503680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.869867pt;}
.ws10{word-spacing:-11.860267pt;}
.ws14{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.774720pt;}
.ws3{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.728640pt;}
.wsb{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.549867pt;}
.ws13{word-spacing:-11.524267pt;}
.wse{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws12{word-spacing:-7.337067pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._10{margin-left:-2.939200pt;}
._6{margin-left:-2.001814pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.968427pt;}
._9{width:1.923733pt;}
._8{width:2.882240pt;}
._c{width:4.011627pt;}
._f{width:5.026239pt;}
._4{width:6.171508pt;}
._d{width:7.135159pt;}
._3{width:8.155286pt;}
._5{width:9.633600pt;}
._b{width:10.591467pt;}
._7{width:12.875520pt;}
._11{width:13.947840pt;}
._e{width:15.337066pt;}
._a{width:16.619733pt;}
._16{width:18.169814pt;}
._14{width:19.430400pt;}
._15{width:20.352640pt;}
._1c{width:25.901760pt;}
._17{width:26.880320pt;}
._1e{width:31.527040pt;}
._1{width:32.955744pt;}
._1b{width:88.978667pt;}
._18{width:104.447893pt;}
._1d{width:113.202880pt;}
._13{width:147.260800pt;}
._19{width:159.590934pt;}
._1a{width:167.935573pt;}
._12{width:177.896747pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:6.960000pt;}
.y84{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:102.186667pt;}
.ye2{bottom:102.586667pt;}
.y129{bottom:107.546667pt;}
.y144{bottom:107.626667pt;}
.y89{bottom:109.226667pt;}
.y5a{bottom:117.786667pt;}
.ye1{bottom:118.266667pt;}
.y29{bottom:122.586667pt;}
.y128{bottom:123.226667pt;}
.yac{bottom:124.986667pt;}
.yf8{bottom:127.146667pt;}
.y88{bottom:133.546667pt;}
.ye0{bottom:133.866667pt;}
.y59{bottom:134.186667pt;}
.y28{bottom:138.266667pt;}
.y127{bottom:138.826667pt;}
.yab{bottom:140.586667pt;}
.yf7{bottom:142.826667pt;}
.y143{bottom:145.466667pt;}
.ydf{bottom:149.546667pt;}
.y58{bottom:149.786667pt;}
.y27{bottom:153.866667pt;}
.yaa{bottom:156.266667pt;}
.y86{bottom:157.866667pt;}
.y126{bottom:161.066667pt;}
.y142{bottom:161.146667pt;}
.yf6{bottom:165.066667pt;}
.yde{bottom:165.146667pt;}
.y57{bottom:165.386667pt;}
.y26{bottom:169.546667pt;}
.y125{bottom:176.826667pt;}
.ydd{bottom:180.746667pt;}
.y85{bottom:182.106667pt;}
.y141{bottom:183.386667pt;}
.ya9{bottom:185.546667pt;}
.y56{bottom:189.786667pt;}
.y25{bottom:193.466667pt;}
.ydc{bottom:196.426667pt;}
.y124{bottom:198.986667pt;}
.y140{bottom:199.066667pt;}
.y83{bottom:206.426667pt;}
.ya8{bottom:209.866667pt;}
.ydb{bottom:212.026667pt;}
.y13f{bottom:214.746667pt;}
.yf5{bottom:218.586667pt;}
.y55{bottom:218.746667pt;}
.y123{bottom:221.306667pt;}
.yda{bottom:227.706667pt;}
.ya7{bottom:234.186667pt;}
.y54{bottom:234.346667pt;}
.y24{bottom:236.346667pt;}
.y13e{bottom:236.906667pt;}
.y122{bottom:236.986667pt;}
.yd9{bottom:243.306667pt;}
.y82{bottom:249.706667pt;}
.yf4{bottom:249.946667pt;}
.y53{bottom:250.746667pt;}
.y23{bottom:252.266667pt;}
.y121{bottom:252.666667pt;}
.ya6{bottom:258.426667pt;}
.yd8{bottom:258.906667pt;}
.y52{bottom:266.346667pt;}
.y120{bottom:268.266667pt;}
.yf3{bottom:272.186667pt;}
.y81{bottom:273.626667pt;}
.yd7{bottom:274.586667pt;}
.y51{bottom:281.946667pt;}
.ya5{bottom:282.746667pt;}
.y11f{bottom:283.946667pt;}
.y22{bottom:285.146667pt;}
.yf2{bottom:287.866667pt;}
.yd6{bottom:290.186667pt;}
.y13d{bottom:290.506667pt;}
.y21{bottom:300.826667pt;}
.yd5{bottom:305.866667pt;}
.y11e{bottom:306.106667pt;}
.y13c{bottom:306.186667pt;}
.y50{bottom:306.346667pt;}
.ya4{bottom:307.066667pt;}
.yf1{bottom:310.106667pt;}
.y20{bottom:316.426667pt;}
.y80{bottom:316.586667pt;}
.yd4{bottom:321.466667pt;}
.y11d{bottom:321.866667pt;}
.yf0{bottom:325.786667pt;}
.y13b{bottom:328.426667pt;}
.ya3{bottom:331.386667pt;}
.y1f{bottom:332.026667pt;}
.y7f{bottom:332.186667pt;}
.y4f{bottom:335.306667pt;}
.yd3{bottom:337.066667pt;}
.y11c{bottom:344.026667pt;}
.y13a{bottom:344.106667pt;}
.y1e{bottom:347.706667pt;}
.yef{bottom:349.706667pt;}
.y4e{bottom:350.986667pt;}
.yd2{bottom:352.746667pt;}
.ya2{bottom:355.626667pt;}
.y7e{bottom:355.786667pt;}
.y11b{bottom:359.786667pt;}
.y1d{bottom:363.306667pt;}
.y139{bottom:366.346667pt;}
.y4d{bottom:366.586667pt;}
.yd1{bottom:368.346667pt;}
.y1c{bottom:378.986667pt;}
.ya1{bottom:379.946667pt;}
.y11a{bottom:382.026667pt;}
.y138{bottom:382.106667pt;}
.y4c{bottom:382.986667pt;}
.yd0{bottom:383.946667pt;}
.y7d{bottom:387.466667pt;}
.yee{bottom:392.666667pt;}
.y1b{bottom:394.586667pt;}
.y119{bottom:397.706667pt;}
.y4b{bottom:398.586667pt;}
.ycf{bottom:399.626667pt;}
.y7c{bottom:403.066667pt;}
.ya0{bottom:404.266667pt;}
.y1a{bottom:410.186667pt;}
.y4a{bottom:414.986667pt;}
.yce{bottom:415.226667pt;}
.yed{bottom:416.586667pt;}
.y7b{bottom:418.773333pt;}
.y118{bottom:419.973333pt;}
.y19{bottom:425.893333pt;}
.y49{bottom:430.613333pt;}
.ycd{bottom:430.933333pt;}
.y117{bottom:435.653333pt;}
.y18{bottom:441.493333pt;}
.y7a{bottom:442.293333pt;}
.y48{bottom:446.293333pt;}
.ycc{bottom:446.533333pt;}
.y9f{bottom:447.573333pt;}
.yec{bottom:449.813333pt;}
.y116{bottom:451.333333pt;}
.y17{bottom:457.173333pt;}
.y47{bottom:461.893333pt;}
.ycb{bottom:462.133333pt;}
.y16{bottom:472.773333pt;}
.y115{bottom:473.493333pt;}
.y79{bottom:473.973333pt;}
.yca{bottom:477.813333pt;}
.y9e{bottom:479.173333pt;}
.y46{bottom:486.213333pt;}
.y15{bottom:488.373333pt;}
.y114{bottom:489.253333pt;}
.y78{bottom:490.373333pt;}
.yeb{bottom:492.693333pt;}
.yc9{bottom:493.413333pt;}
.y9d{bottom:500.533333pt;}
.y14{bottom:504.053333pt;}
.y77{bottom:506.693333pt;}
.yea{bottom:508.293333pt;}
.yc8{bottom:509.093333pt;}
.y113{bottom:511.413333pt;}
.y45{bottom:515.253333pt;}
.y76{bottom:523.093333pt;}
.yc7{bottom:524.693333pt;}
.y9c{bottom:524.773333pt;}
.y112{bottom:527.173333pt;}
.y13{bottom:527.973333pt;}
.ye9{bottom:539.973333pt;}
.yc6{bottom:540.293333pt;}
.y44{bottom:546.853333pt;}
.y9b{bottom:549.093333pt;}
.y111{bottom:549.333333pt;}
.y75{bottom:555.493333pt;}
.yc5{bottom:555.973333pt;}
.y43{bottom:562.453333pt;}
.y110{bottom:565.093333pt;}
.y12{bottom:569.493333pt;}
.y74{bottom:571.093333pt;}
.yc4{bottom:571.573333pt;}
.y9a{bottom:573.413333pt;}
.y42{bottom:586.133333pt;}
.yc3{bottom:587.253333pt;}
.y10f{bottom:587.333333pt;}
.y73{bottom:594.693333pt;}
.y99{bottom:597.733333pt;}
.y11{bottom:601.333333pt;}
.yc2{bottom:602.853333pt;}
.y10e{bottom:603.013333pt;}
.y41{bottom:617.733333pt;}
.yc1{bottom:618.453333pt;}
.y98{bottom:621.973333pt;}
.y10d{bottom:625.253333pt;}
.y72{bottom:626.373333pt;}
.y10{bottom:633.333333pt;}
.y40{bottom:633.413333pt;}
.yc0{bottom:634.133333pt;}
.y10c{bottom:640.933333pt;}
.y71{bottom:641.973333pt;}
.y97{bottom:646.293333pt;}
.ybf{bottom:649.733333pt;}
.y10b{bottom:656.613333pt;}
.y3f{bottom:657.013333pt;}
.y70{bottom:657.653333pt;}
.ybe{bottom:665.413333pt;}
.yf{bottom:668.693333pt;}
.y96{bottom:670.613333pt;}
.y6f{bottom:673.253333pt;}
.y10a{bottom:678.773333pt;}
.ybd{bottom:681.013333pt;}
.ye{bottom:684.693333pt;}
.y3e{bottom:688.933333pt;}
.y109{bottom:694.533333pt;}
.ybc{bottom:696.613333pt;}
.yd{bottom:700.693333pt;}
.y6e{bottom:704.533333pt;}
.ye8{bottom:704.933333pt;}
.y108{bottom:710.133333pt;}
.ybb{bottom:712.293333pt;}
.y95{bottom:713.893333pt;}
.yc{bottom:716.693333pt;}
.y6d{bottom:720.133333pt;}
.yba{bottom:727.893333pt;}
.yb{bottom:729.333333pt;}
.y3d{bottom:731.813333pt;}
.y107{bottom:732.373333pt;}
.y6c{bottom:735.813333pt;}
.y137{bottom:739.013333pt;}
.yb9{bottom:743.573333pt;}
.y94{bottom:745.493333pt;}
.y3c{bottom:747.493333pt;}
.ye7{bottom:747.813333pt;}
.y106{bottom:748.053333pt;}
.ya{bottom:748.693333pt;}
.y6b{bottom:751.413333pt;}
.y136{bottom:754.693333pt;}
.yb8{bottom:759.173333pt;}
.y3b{bottom:763.093333pt;}
.ye6{bottom:763.493333pt;}
.y9{bottom:764.693333pt;}
.y93{bottom:766.853333pt;}
.y6a{bottom:767.093333pt;}
.y105{bottom:770.293333pt;}
.yb7{bottom:774.773333pt;}
.y135{bottom:776.933333pt;}
.y3a{bottom:778.693333pt;}
.ye5{bottom:779.093333pt;}
.y8{bottom:780.693333pt;}
.y69{bottom:782.693333pt;}
.y104{bottom:785.973333pt;}
.yb6{bottom:790.453333pt;}
.y92{bottom:791.093333pt;}
.y134{bottom:792.693333pt;}
.y39{bottom:794.373333pt;}
.ye4{bottom:794.693333pt;}
.y68{bottom:798.293333pt;}
.yb5{bottom:806.053333pt;}
.y103{bottom:808.213333pt;}
.y7{bottom:809.413333pt;}
.ye3{bottom:810.373333pt;}
.y67{bottom:814.693333pt;}
.y133{bottom:814.853333pt;}
.y91{bottom:815.413333pt;}
.yb4{bottom:821.733333pt;}
.y102{bottom:823.893333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y66{bottom:830.293333pt;}
.y132{bottom:830.613333pt;}
.yb3{bottom:837.333333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y65{bottom:845.973333pt;}
.y101{bottom:846.133333pt;}
.y131{bottom:852.773333pt;}
.yb2{bottom:852.933333pt;}
.y36{bottom:857.253333pt;}
.y90{bottom:858.693333pt;}
.y64{bottom:861.573333pt;}
.y100{bottom:861.893333pt;}
.yb1{bottom:868.613333pt;}
.y35{bottom:872.853333pt;}
.y130{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.yff{bottom:884.053333pt;}
.yb0{bottom:884.213333pt;}
.y63{bottom:885.893333pt;}
.y34{bottom:888.533333pt;}
.y8f{bottom:889.653333pt;}
.y12f{bottom:890.853333pt;}
.y3{bottom:899.840000pt;}
.y33{bottom:904.160000pt;}
.yfe{bottom:906.400000pt;}
.y12e{bottom:906.480000pt;}
.yaf{bottom:915.520000pt;}
.y62{bottom:917.600000pt;}
.y8e{bottom:918.240000pt;}
.y32{bottom:919.840000pt;}
.yfd{bottom:922.080000pt;}
.y12d{bottom:928.720000pt;}
.y8d{bottom:929.040000pt;}
.yae{bottom:931.120000pt;}
.y61{bottom:933.200000pt;}
.y31{bottom:935.440000pt;}
.yfc{bottom:937.760000pt;}
.y12c{bottom:944.400000pt;}
.y60{bottom:949.600000pt;}
.y30{bottom:951.040000pt;}
.y8c{bottom:953.360000pt;}
.yad{bottom:955.040000pt;}
.yfb{bottom:959.920000pt;}
.y12b{bottom:960.000000pt;}
.y5f{bottom:965.200000pt;}
.y2f{bottom:966.720000pt;}
.yfa{bottom:975.680000pt;}
.y8b{bottom:977.680000pt;}
.y5e{bottom:981.600000pt;}
.y12a{bottom:982.240000pt;}
.y2e{bottom:982.320000pt;}
.y5d{bottom:997.200000pt;}
.yf9{bottom:997.920000pt;}
.y2d{bottom:998.000000pt;}
.y8a{bottom:1001.920000pt;}
.y5c{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:54.586667pt;}
.w7{width:56.000000pt;}
.wa{width:90.560000pt;}
.w5{width:96.640000pt;}
.w8{width:102.880000pt;}
.w6{width:131.946667pt;}
.w9{width:148.906667pt;}
.wb{width:152.906667pt;}
.w3{width:157.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:3.440000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x13{left:99.039988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.xb{left:254.026667pt;}
.x9{left:262.106655pt;}
.xe{left:270.746667pt;}
.x11{left:274.986667pt;}
.x6{left:290.506667pt;}
.xc{left:351.306667pt;}
.x12{left:366.186667pt;}
.x10{left:374.346667pt;}
.xa{left:396.986655pt;}
.x8{left:448.906667pt;}
.xd{left:483.973333pt;}
.x3{left:704.053322pt;}
}




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