
    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_e299a4c686912a0b8617dd50.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c96d9e6e71dba002797a2b7.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_82e2ea770685e3076b3a6438.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9ff747376a93a2eec2fb5d35.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3b00b5728b3a918d2dd6796.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_fb06b6d0be488586f384fdeb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9c0be5fac3cd4e647b1fc5ad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls25{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.513600px;}
.ls20{letter-spacing:-0.413400px;}
.ls1c{letter-spacing:-0.373200px;}
.ls24{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.234000px;}
.ls13{letter-spacing:-0.220200px;}
.ls18{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.166800px;}
.ls16{letter-spacing:-0.153600px;}
.ls22{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.017280px;}
.ls1a{letter-spacing:-0.013320px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.026640px;}
.ls2{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.064800px;}
.ls19{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.139800px;}
.lsd{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.372960px;}
.ls21{letter-spacing:0.450000px;}
.ls6{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.666000px;}
.ls23{letter-spacing:1.260000px;}
.ls7{letter-spacing:18.828000px;}
.ls12{letter-spacing:62.486640px;}
.ls8{letter-spacing:114.264000px;}
.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:-18.000000px;}
.ws19{word-spacing:-15.696000px;}
.ws0{word-spacing:-15.210000px;}
.ws12{word-spacing:-15.183600px;}
.ws16{word-spacing:-15.169800px;}
.ws7{word-spacing:-15.138000px;}
.ws1{word-spacing:-15.030000px;}
.ws15{word-spacing:-15.016680px;}
.ws6{word-spacing:-15.012000px;}
.ws13{word-spacing:-14.976720px;}
.ws18{word-spacing:-14.876400px;}
.ws1a{word-spacing:-14.863200px;}
.ws11{word-spacing:-14.850000px;}
.ws14{word-spacing:-14.823600px;}
.ws17{word-spacing:-14.656800px;}
.ws2{word-spacing:-14.516400px;}
.ws1e{word-spacing:-13.680000px;}
.ws1b{word-spacing:-13.644000px;}
.ws8{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws1c{word-spacing:-13.320000px;}
.wsc{word-spacing:-13.266000px;}
.wsb{word-spacing:-13.248000px;}
.ws1d{word-spacing:-13.140000px;}
.ws4{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.702720px;}
.ws5{word-spacing:-9.000000px;}
.ws10{word-spacing:0.000000px;}
._0{margin-left:-3.870000px;}
._11{margin-left:-2.825640px;}
._1{margin-left:-1.563120px;}
._4{width:1.026360px;}
._d{width:3.024000px;}
._8{width:4.590000px;}
._18{width:5.594640px;}
._a{width:6.602880px;}
._9{width:8.523120px;}
._6{width:10.098000px;}
._7{width:11.106000px;}
._13{width:13.050000px;}
._e{width:14.634000px;}
._f{width:16.397400px;}
._5{width:17.643960px;}
._3{width:19.058040px;}
._2{width:20.140200px;}
._10{width:21.169800px;}
._17{width:22.672080px;}
._12{width:24.210360px;}
._14{width:25.731360px;}
._c{width:27.540000px;}
._b{width:28.656000px;}
._15{width:29.999880px;}
._16{width:31.355280px;}
._1a{width:33.155640px;}
._19{width:34.208280px;}
._1d{width:35.532000px;}
._27{width:40.338000px;}
._22{width:44.460000px;}
._23{width:46.278000px;}
._21{width:48.384000px;}
._20{width:49.536000px;}
._38{width:53.460000px;}
._26{width:54.684000px;}
._25{width:55.692000px;}
._31{width:69.336000px;}
._30{width:70.380000px;}
._36{width:75.888000px;}
._1c{width:77.628000px;}
._1b{width:78.732000px;}
._33{width:82.242000px;}
._32{width:83.340000px;}
._2f{width:85.212000px;}
._2b{width:90.396000px;}
._2a{width:91.422000px;}
._28{width:97.362000px;}
._2c{width:101.142000px;}
._29{width:109.080000px;}
._24{width:122.058000px;}
._34{width:125.334000px;}
._2d{width:126.360000px;}
._2e{width:127.587120px;}
._1f{width:139.806000px;}
._35{width:440.424000px;}
._1e{width:706.428000px;}
._37{width:1656.342000px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.240000px;}
.ya2{bottom:6.480000px;}
.y9f{bottom:6.570000px;}
.y6{bottom:109.440000px;}
.y5{bottom:127.440000px;}
.y4{bottom:145.440000px;}
.y3{bottom:163.440000px;}
.y2{bottom:181.440000px;}
.y113{bottom:227.010000px;}
.y2b{bottom:229.080000px;}
.y190{bottom:232.050000px;}
.y55{bottom:233.040000px;}
.y95{bottom:234.930000px;}
.y141{bottom:236.550000px;}
.y6c{bottom:238.980000px;}
.y8e{bottom:239.430000px;}
.y112{bottom:242.580000px;}
.y16c{bottom:243.030000px;}
.y2a{bottom:247.080000px;}
.y18f{bottom:247.530000px;}
.yc0{bottom:247.980000px;}
.y54{bottom:251.310000px;}
.y140{bottom:252.030000px;}
.y94{bottom:252.930000px;}
.y17a{bottom:254.010000px;}
.y1b0{bottom:256.530000px;}
.y6b{bottom:256.980000px;}
.y8d{bottom:257.430000px;}
.y16b{bottom:258.510000px;}
.y111{bottom:262.560000px;}
.ybf{bottom:265.980000px;}
.y13f{bottom:267.510000px;}
.y179{bottom:269.580000px;}
.y53{bottom:269.670000px;}
.y93{bottom:270.930000px;}
.y1af{bottom:272.010000px;}
.y6a{bottom:274.980000px;}
.y8c{bottom:275.430000px;}
.y16a{bottom:278.580000px;}
.y110{bottom:282.630000px;}
.y18e{bottom:283.080000px;}
.y29{bottom:283.710000px;}
.ybe{bottom:283.980000px;}
.y178{bottom:285.060000px;}
.y13e{bottom:287.580000px;}
.y52{bottom:287.940000px;}
.y92{bottom:288.930000px;}
.y69{bottom:292.980000px;}
.y99{bottom:293.430000px;}
.y169{bottom:294.060000px;}
.y10f{bottom:298.110000px;}
.y18d{bottom:298.560000px;}
.ybd{bottom:301.980000px;}
.y13d{bottom:303.060000px;}
.y177{bottom:305.130000px;}
.y51{bottom:306.300000px;}
.y91{bottom:306.930000px;}
.y1ae{bottom:307.560000px;}
.y168{bottom:309.630000px;}
.y68{bottom:310.980000px;}
.y98{bottom:311.430000px;}
.y8b{bottom:312.060000px;}
.y10e{bottom:313.680000px;}
.y18c{bottom:314.130000px;}
.y13c{bottom:318.630000px;}
.ybc{bottom:319.980000px;}
.ye7{bottom:320.430000px;}
.y176{bottom:320.610000px;}
.y1ad{bottom:323.130000px;}
.y50{bottom:324.660000px;}
.y90{bottom:324.930000px;}
.y167{bottom:325.110000px;}
.y67{bottom:328.980000px;}
.y10d{bottom:329.160000px;}
.y97{bottom:329.430000px;}
.y18b{bottom:329.610000px;}
.y28{bottom:332.310000px;}
.y13b{bottom:334.110000px;}
.ybb{bottom:337.980000px;}
.ye6{bottom:338.430000px;}
.y1ac{bottom:338.610000px;}
.y175{bottom:340.680000px;}
.y8f{bottom:342.930000px;}
.y166{bottom:345.180000px;}
.y66{bottom:346.980000px;}
.y4f{bottom:347.430000px;}
.y27{bottom:347.790000px;}
.y10c{bottom:349.230000px;}
.y18a{bottom:349.680000px;}
.y13a{bottom:354.180000px;}
.yba{bottom:355.980000px;}
.y174{bottom:356.160000px;}
.ye5{bottom:356.430000px;}
.y1ab{bottom:358.680000px;}
.y165{bottom:360.660000px;}
.y8a{bottom:360.930000px;}
.y26{bottom:363.360000px;}
.y10b{bottom:364.710000px;}
.y65{bottom:364.980000px;}
.y189{bottom:365.160000px;}
.y4e{bottom:365.430000px;}
.y139{bottom:369.660000px;}
.y173{bottom:371.730000px;}
.yb9{bottom:373.980000px;}
.y1aa{bottom:374.160000px;}
.ye4{bottom:374.430000px;}
.y25{bottom:378.840000px;}
.y89{bottom:378.930000px;}
.y10a{bottom:380.280000px;}
.y164{bottom:380.730000px;}
.y64{bottom:382.980000px;}
.y4d{bottom:383.430000px;}
.y138{bottom:385.230000px;}
.y1a9{bottom:389.730000px;}
.y172{bottom:391.710000px;}
.yb8{bottom:391.980000px;}
.ye3{bottom:392.430000px;}
.y163{bottom:396.210000px;}
.y88{bottom:396.930000px;}
.y109{bottom:400.260000px;}
.y4c{bottom:401.430000px;}
.y137{bottom:405.210000px;}
.y171{bottom:407.280000px;}
.y1a8{bottom:409.710000px;}
.yb7{bottom:409.980000px;}
.ye2{bottom:410.430000px;}
.y162{bottom:411.780000px;}
.y87{bottom:414.930000px;}
.y108{bottom:415.830000px;}
.y188{bottom:416.280000px;}
.y63{bottom:418.710000px;}
.y4b{bottom:419.430000px;}
.y136{bottom:420.780000px;}
.y24{bottom:421.410000px;}
.y170{bottom:422.760000px;}
.y1a7{bottom:425.280000px;}
.y161{bottom:427.260000px;}
.yb6{bottom:427.980000px;}
.ye1{bottom:428.430000px;}
.y107{bottom:431.310000px;}
.y187{bottom:431.760000px;}
.y86{bottom:432.930000px;}
.y135{bottom:436.260000px;}
.y4a{bottom:437.430000px;}
.y23{bottom:437.880000px;}
.y62{bottom:441.300000px;}
.y160{bottom:442.830000px;}
.y1a6{bottom:445.260000px;}
.yb5{bottom:445.980000px;}
.ye0{bottom:446.430000px;}
.y106{bottom:446.880000px;}
.y186{bottom:447.330000px;}
.y85{bottom:450.930000px;}
.y22{bottom:454.350000px;}
.y49{bottom:455.430000px;}
.y134{bottom:456.330000px;}
.y16f{bottom:458.310000px;}
.y1a5{bottom:460.830000px;}
.y15f{bottom:462.810000px;}
.yb4{bottom:463.980000px;}
.ydf{bottom:464.430000px;}
.y105{bottom:466.860000px;}
.y84{bottom:468.930000px;}
.y21{bottom:470.910000px;}
.y133{bottom:471.810000px;}
.y48{bottom:473.430000px;}
.y15e{bottom:478.380000px;}
.y1a4{bottom:480.810000px;}
.yb3{bottom:481.980000px;}
.yde{bottom:482.430000px;}
.y185{bottom:482.880000px;}
.y83{bottom:486.930000px;}
.y20{bottom:487.380000px;}
.y47{bottom:491.430000px;}
.y15d{bottom:493.860000px;}
.y1a3{bottom:496.380000px;}
.y104{bottom:497.910000px;}
.y184{bottom:498.360000px;}
.yb2{bottom:499.980000px;}
.ydd{bottom:500.430000px;}
.y1f{bottom:503.850000px;}
.y82{bottom:504.930000px;}
.y132{bottom:507.360000px;}
.y46{bottom:509.430000px;}
.y103{bottom:513.480000px;}
.y183{bottom:513.930000px;}
.y1a2{bottom:516.360000px;}
.yb1{bottom:517.980000px;}
.ydc{bottom:518.430000px;}
.y1e{bottom:520.410000px;}
.y81{bottom:522.930000px;}
.y16e{bottom:524.910000px;}
.y45{bottom:527.430000px;}
.y9a{bottom:528.060000px;}
.y102{bottom:528.960000px;}
.y15c{bottom:529.410000px;}
.y1a1{bottom:531.930000px;}
.y182{bottom:533.910000px;}
.yb0{bottom:535.980000px;}
.ydb{bottom:536.430000px;}
.y1d{bottom:536.880000px;}
.y131{bottom:538.410000px;}
.y80{bottom:540.930000px;}
.y15b{bottom:544.980000px;}
.y44{bottom:545.430000px;}
.y1a0{bottom:547.410000px;}
.y101{bottom:549.030000px;}
.y181{bottom:549.480000px;}
.y1c{bottom:553.350000px;}
.yaf{bottom:553.980000px;}
.yda{bottom:554.430000px;}
.y130{bottom:558.480000px;}
.y7f{bottom:558.930000px;}
.y15a{bottom:560.460000px;}
.y19f{bottom:562.980000px;}
.y43{bottom:563.430000px;}
.y100{bottom:564.510000px;}
.y180{bottom:564.960000px;}
.y1b{bottom:569.910000px;}
.yae{bottom:571.980000px;}
.yd9{bottom:572.430000px;}
.y12f{bottom:573.960000px;}
.y159{bottom:576.030000px;}
.y7e{bottom:576.930000px;}
.yff{bottom:580.080000px;}
.y17f{bottom:580.530000px;}
.y42{bottom:581.430000px;}
.y19e{bottom:582.960000px;}
.y1a{bottom:586.380000px;}
.yad{bottom:589.980000px;}
.yd8{bottom:590.430000px;}
.y12e{bottom:594.030000px;}
.y7d{bottom:594.930000px;}
.yfe{bottom:595.560000px;}
.y158{bottom:596.010000px;}
.y19d{bottom:598.530000px;}
.y41{bottom:599.430000px;}
.y17e{bottom:600.510000px;}
.y19{bottom:602.850000px;}
.yac{bottom:607.980000px;}
.yd7{bottom:608.430000px;}
.y12d{bottom:609.510000px;}
.y157{bottom:611.580000px;}
.y7c{bottom:612.930000px;}
.y19c{bottom:614.010000px;}
.yfd{bottom:615.630000px;}
.y17d{bottom:616.080000px;}
.y40{bottom:617.430000px;}
.y18{bottom:619.410000px;}
.y12c{bottom:625.080000px;}
.yab{bottom:625.980000px;}
.yd6{bottom:626.430000px;}
.y19b{bottom:629.580000px;}
.y7b{bottom:630.930000px;}
.yfc{bottom:631.110000px;}
.y156{bottom:631.560000px;}
.y3f{bottom:635.430000px;}
.y17{bottom:635.880000px;}
.yaa{bottom:643.980000px;}
.yd5{bottom:644.430000px;}
.y12b{bottom:645.060000px;}
.yfb{bottom:646.710000px;}
.y155{bottom:647.160000px;}
.y7a{bottom:648.960000px;}
.y19a{bottom:649.590000px;}
.y17c{bottom:651.660000px;}
.y16{bottom:652.380000px;}
.y3e{bottom:653.460000px;}
.y12a{bottom:660.660000px;}
.ya9{bottom:662.010000px;}
.yd4{bottom:662.460000px;}
.y199{bottom:665.160000px;}
.yfa{bottom:666.690000px;}
.y79{bottom:666.960000px;}
.y154{bottom:667.140000px;}
.y15{bottom:668.940000px;}
.y3d{bottom:671.460000px;}
.y129{bottom:676.140000px;}
.ya8{bottom:680.010000px;}
.yd3{bottom:680.460000px;}
.y198{bottom:680.640000px;}
.yf9{bottom:682.260000px;}
.y153{bottom:682.710000px;}
.y78{bottom:684.960000px;}
.y14{bottom:685.410000px;}
.y3c{bottom:689.460000px;}
.y128{bottom:691.710000px;}
.y197{bottom:696.210000px;}
.ya7{bottom:698.010000px;}
.y152{bottom:698.190000px;}
.yd2{bottom:698.460000px;}
.y13{bottom:701.880000px;}
.yf8{bottom:702.240000px;}
.y17b{bottom:702.690000px;}
.y77{bottom:702.960000px;}
.y127{bottom:707.190000px;}
.y3b{bottom:707.460000px;}
.y1b2{bottom:711.690000px;}
.ya6{bottom:716.010000px;}
.y196{bottom:716.190000px;}
.yd1{bottom:716.460000px;}
.yf7{bottom:717.810000px;}
.y151{bottom:718.260000px;}
.y12{bottom:718.440000px;}
.y76{bottom:720.960000px;}
.y3a{bottom:725.460000px;}
.y126{bottom:727.260000px;}
.y195{bottom:731.760000px;}
.yf6{bottom:733.290000px;}
.y150{bottom:733.740000px;}
.ya5{bottom:734.010000px;}
.yd0{bottom:734.460000px;}
.y11{bottom:734.910000px;}
.y61{bottom:737.070000px;}
.y75{bottom:738.960000px;}
.y125{bottom:742.740000px;}
.y39{bottom:743.460000px;}
.y194{bottom:747.240000px;}
.yf5{bottom:748.860000px;}
.y10{bottom:751.380000px;}
.ya4{bottom:752.010000px;}
.ycf{bottom:752.460000px;}
.y14f{bottom:753.810000px;}
.y60{bottom:755.070000px;}
.y74{bottom:756.960000px;}
.y124{bottom:758.310000px;}
.y38{bottom:761.460000px;}
.y193{bottom:762.810000px;}
.yf{bottom:767.940000px;}
.yf4{bottom:768.840000px;}
.y14e{bottom:769.290000px;}
.ya3{bottom:770.010000px;}
.yce{bottom:770.460000px;}
.y5f{bottom:773.070000px;}
.y73{bottom:774.960000px;}
.y123{bottom:778.290000px;}
.y37{bottom:779.460000px;}
.y96{bottom:780.090000px;}
.ye{bottom:784.410000px;}
.y14d{bottom:784.860000px;}
.ya1{bottom:787.020000px;}
.ycd{bottom:788.460000px;}
.y5e{bottom:791.070000px;}
.y72{bottom:792.960000px;}
.y122{bottom:793.860000px;}
.y36{bottom:797.460000px;}
.y192{bottom:798.360000px;}
.yf3{bottom:799.890000px;}
.y14c{bottom:804.840000px;}
.ycc{bottom:806.460000px;}
.ya0{bottom:808.260000px;}
.y5d{bottom:809.070000px;}
.y121{bottom:809.340000px;}
.y71{bottom:810.960000px;}
.y191{bottom:813.840000px;}
.y35{bottom:815.460000px;}
.yf2{bottom:819.870000px;}
.y14b{bottom:820.410000px;}
.ycb{bottom:824.460000px;}
.y70{bottom:828.960000px;}
.y120{bottom:829.410000px;}
.y9e{bottom:829.590000px;}
.yf1{bottom:835.440000px;}
.y14a{bottom:835.890000px;}
.yca{bottom:842.460000px;}
.y11f{bottom:844.890000px;}
.y5c{bottom:845.700000px;}
.y6f{bottom:846.960000px;}
.yd{bottom:850.290000px;}
.yf0{bottom:850.920000px;}
.y9c{bottom:852.000000px;}
.y34{bottom:852.090000px;}
.y149{bottom:855.870000px;}
.y11e{bottom:860.370000px;}
.yc9{bottom:860.460000px;}
.y1b1{bottom:864.870000px;}
.y6e{bottom:864.960000px;}
.yc{bottom:866.940000px;}
.yef{bottom:870.990000px;}
.y148{bottom:871.440000px;}
.yc8{bottom:878.460000px;}
.y11d{bottom:880.440000px;}
.y6d{bottom:882.960000px;}
.yb{bottom:883.410000px;}
.y9b{bottom:884.130000px;}
.yee{bottom:886.470000px;}
.y147{bottom:891.420000px;}
.y5b{bottom:894.570000px;}
.y11c{bottom:895.920000px;}
.yc7{bottom:896.460000px;}
.y33{bottom:900.960000px;}
.yed{bottom:902.040000px;}
.y16d{bottom:906.990000px;}
.ya{bottom:910.680000px;}
.y146{bottom:911.490000px;}
.y5a{bottom:912.840000px;}
.yc6{bottom:914.460000px;}
.y11b{bottom:915.990000px;}
.y32{bottom:918.960000px;}
.yec{bottom:922.020000px;}
.y145{bottom:926.970000px;}
.y59{bottom:931.200000px;}
.y11a{bottom:931.470000px;}
.yc5{bottom:932.460000px;}
.y31{bottom:936.960000px;}
.yeb{bottom:937.590000px;}
.y144{bottom:942.540000px;}
.y119{bottom:947.040000px;}
.y58{bottom:949.470000px;}
.yc4{bottom:950.460000px;}
.yea{bottom:953.070000px;}
.y30{bottom:954.960000px;}
.y118{bottom:962.520000px;}
.y9{bottom:965.220000px;}
.y57{bottom:967.830000px;}
.yc3{bottom:968.460000px;}
.y2f{bottom:972.960000px;}
.ye9{bottom:973.140000px;}
.y143{bottom:978.090000px;}
.y117{bottom:982.590000px;}
.y56{bottom:986.190000px;}
.yc2{bottom:986.460000px;}
.ye8{bottom:988.620000px;}
.y2e{bottom:990.960000px;}
.y8{bottom:992.220000px;}
.y142{bottom:993.570000px;}
.y116{bottom:998.070000px;}
.y2d{bottom:1008.960000px;}
.y115{bottom:1013.640000px;}
.y7{bottom:1019.220000px;}
.yc1{bottom:1023.090000px;}
.y2c{bottom:1026.960000px;}
.y114{bottom:1029.120000px;}
.y1{bottom:1069.200000px;}
.hc{height:18.000000px;}
.he{height:21.240000px;}
.hd{height:21.330000px;}
.h6{height:35.332031px;}
.h7{height:38.320312px;}
.h10{height:52.971680px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h9{height:56.320312px;}
.h3{height:59.004492px;}
.h5{height:60.589687px;}
.hb{height:62.703281px;}
.hf{height:72.562500px;}
.ha{height:75.093750px;}
.h4{height:84.535312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:172.170000px;}
.w5{width:172.200000px;}
.w3{width:172.380000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:10.440000px;}
.x19{left:19.350000px;}
.x13{left:26.280000px;}
.x15{left:27.990000px;}
.x16{left:30.060000px;}
.x11{left:36.450000px;}
.x17{left:38.160000px;}
.x1a{left:40.860000px;}
.x2{left:178.679987px;}
.x1b{left:180.569987px;}
.x1{left:187.139987px;}
.xc{left:194.069987px;}
.x5{left:196.049987px;}
.x3{left:204.149987px;}
.x6{left:213.149987px;}
.xb{left:229.709987px;}
.xd{left:231.419987px;}
.x10{left:244.469987px;}
.x9{left:263.009987px;}
.xf{left:273.989987px;}
.x7{left:283.439987px;}
.x4{left:316.919987px;}
.x12{left:360.510000px;}
.x8{left:361.949987px;}
.xa{left:374.009987px;}
.x14{left:532.680000px;}
.xe{left:706.949987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls25{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.456533pt;}
.ls20{letter-spacing:-0.367467pt;}
.ls1c{letter-spacing:-0.331733pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.208000pt;}
.ls13{letter-spacing:-0.195733pt;}
.ls18{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.148267pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls22{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls1a{letter-spacing:-0.011840pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.023680pt;}
.ls2{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.057600pt;}
.ls19{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.124267pt;}
.lsd{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.331520pt;}
.ls21{letter-spacing:0.400000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls7{letter-spacing:16.736000pt;}
.ls12{letter-spacing:55.543680pt;}
.ls8{letter-spacing:101.568000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws19{word-spacing:-13.952000pt;}
.ws0{word-spacing:-13.520000pt;}
.ws12{word-spacing:-13.496533pt;}
.ws16{word-spacing:-13.484267pt;}
.ws7{word-spacing:-13.456000pt;}
.ws1{word-spacing:-13.360000pt;}
.ws15{word-spacing:-13.348160pt;}
.ws6{word-spacing:-13.344000pt;}
.ws13{word-spacing:-13.312640pt;}
.ws18{word-spacing:-13.223467pt;}
.ws1a{word-spacing:-13.211733pt;}
.ws11{word-spacing:-13.200000pt;}
.ws14{word-spacing:-13.176533pt;}
.ws17{word-spacing:-13.028267pt;}
.ws2{word-spacing:-12.903467pt;}
.ws1e{word-spacing:-12.160000pt;}
.ws1b{word-spacing:-12.128000pt;}
.ws8{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws1c{word-spacing:-11.840000pt;}
.wsc{word-spacing:-11.792000pt;}
.wsb{word-spacing:-11.776000pt;}
.ws1d{word-spacing:-11.680000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.624640pt;}
.ws5{word-spacing:-8.000000pt;}
.ws10{word-spacing:0.000000pt;}
._0{margin-left:-3.440000pt;}
._11{margin-left:-2.511680pt;}
._1{margin-left:-1.389440pt;}
._4{width:0.912320pt;}
._d{width:2.688000pt;}
._8{width:4.080000pt;}
._18{width:4.973013pt;}
._a{width:5.869227pt;}
._9{width:7.576107pt;}
._6{width:8.976000pt;}
._7{width:9.872000pt;}
._13{width:11.600000pt;}
._e{width:13.008000pt;}
._f{width:14.575467pt;}
._5{width:15.683520pt;}
._3{width:16.940480pt;}
._2{width:17.902400pt;}
._10{width:18.817600pt;}
._17{width:20.152960pt;}
._12{width:21.520320pt;}
._14{width:22.872320pt;}
._c{width:24.480000pt;}
._b{width:25.472000pt;}
._15{width:26.666560pt;}
._16{width:27.871360pt;}
._1a{width:29.471680pt;}
._19{width:30.407360pt;}
._1d{width:31.584000pt;}
._27{width:35.856000pt;}
._22{width:39.520000pt;}
._23{width:41.136000pt;}
._21{width:43.008000pt;}
._20{width:44.032000pt;}
._38{width:47.520000pt;}
._26{width:48.608000pt;}
._25{width:49.504000pt;}
._31{width:61.632000pt;}
._30{width:62.560000pt;}
._36{width:67.456000pt;}
._1c{width:69.002667pt;}
._1b{width:69.984000pt;}
._33{width:73.104000pt;}
._32{width:74.080000pt;}
._2f{width:75.744000pt;}
._2b{width:80.352000pt;}
._2a{width:81.264000pt;}
._28{width:86.544000pt;}
._2c{width:89.904000pt;}
._29{width:96.960000pt;}
._24{width:108.496000pt;}
._34{width:111.408000pt;}
._2d{width:112.320000pt;}
._2e{width:113.410773pt;}
._1f{width:124.272000pt;}
._35{width:391.488000pt;}
._1e{width:627.936000pt;}
._37{width:1472.304000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:2.880000pt;}
.ya2{bottom:5.760000pt;}
.y9f{bottom:5.840000pt;}
.y6{bottom:97.280000pt;}
.y5{bottom:113.280000pt;}
.y4{bottom:129.280000pt;}
.y3{bottom:145.280000pt;}
.y2{bottom:161.280000pt;}
.y113{bottom:201.786667pt;}
.y2b{bottom:203.626667pt;}
.y190{bottom:206.266667pt;}
.y55{bottom:207.146667pt;}
.y95{bottom:208.826667pt;}
.y141{bottom:210.266667pt;}
.y6c{bottom:212.426667pt;}
.y8e{bottom:212.826667pt;}
.y112{bottom:215.626667pt;}
.y16c{bottom:216.026667pt;}
.y2a{bottom:219.626667pt;}
.y18f{bottom:220.026667pt;}
.yc0{bottom:220.426667pt;}
.y54{bottom:223.386667pt;}
.y140{bottom:224.026667pt;}
.y94{bottom:224.826667pt;}
.y17a{bottom:225.786667pt;}
.y1b0{bottom:228.026667pt;}
.y6b{bottom:228.426667pt;}
.y8d{bottom:228.826667pt;}
.y16b{bottom:229.786667pt;}
.y111{bottom:233.386667pt;}
.ybf{bottom:236.426667pt;}
.y13f{bottom:237.786667pt;}
.y179{bottom:239.626667pt;}
.y53{bottom:239.706667pt;}
.y93{bottom:240.826667pt;}
.y1af{bottom:241.786667pt;}
.y6a{bottom:244.426667pt;}
.y8c{bottom:244.826667pt;}
.y16a{bottom:247.626667pt;}
.y110{bottom:251.226667pt;}
.y18e{bottom:251.626667pt;}
.y29{bottom:252.186667pt;}
.ybe{bottom:252.426667pt;}
.y178{bottom:253.386667pt;}
.y13e{bottom:255.626667pt;}
.y52{bottom:255.946667pt;}
.y92{bottom:256.826667pt;}
.y69{bottom:260.426667pt;}
.y99{bottom:260.826667pt;}
.y169{bottom:261.386667pt;}
.y10f{bottom:264.986667pt;}
.y18d{bottom:265.386667pt;}
.ybd{bottom:268.426667pt;}
.y13d{bottom:269.386667pt;}
.y177{bottom:271.226667pt;}
.y51{bottom:272.266667pt;}
.y91{bottom:272.826667pt;}
.y1ae{bottom:273.386667pt;}
.y168{bottom:275.226667pt;}
.y68{bottom:276.426667pt;}
.y98{bottom:276.826667pt;}
.y8b{bottom:277.386667pt;}
.y10e{bottom:278.826667pt;}
.y18c{bottom:279.226667pt;}
.y13c{bottom:283.226667pt;}
.ybc{bottom:284.426667pt;}
.ye7{bottom:284.826667pt;}
.y176{bottom:284.986667pt;}
.y1ad{bottom:287.226667pt;}
.y50{bottom:288.586667pt;}
.y90{bottom:288.826667pt;}
.y167{bottom:288.986667pt;}
.y67{bottom:292.426667pt;}
.y10d{bottom:292.586667pt;}
.y97{bottom:292.826667pt;}
.y18b{bottom:292.986667pt;}
.y28{bottom:295.386667pt;}
.y13b{bottom:296.986667pt;}
.ybb{bottom:300.426667pt;}
.ye6{bottom:300.826667pt;}
.y1ac{bottom:300.986667pt;}
.y175{bottom:302.826667pt;}
.y8f{bottom:304.826667pt;}
.y166{bottom:306.826667pt;}
.y66{bottom:308.426667pt;}
.y4f{bottom:308.826667pt;}
.y27{bottom:309.146667pt;}
.y10c{bottom:310.426667pt;}
.y18a{bottom:310.826667pt;}
.y13a{bottom:314.826667pt;}
.yba{bottom:316.426667pt;}
.y174{bottom:316.586667pt;}
.ye5{bottom:316.826667pt;}
.y1ab{bottom:318.826667pt;}
.y165{bottom:320.586667pt;}
.y8a{bottom:320.826667pt;}
.y26{bottom:322.986667pt;}
.y10b{bottom:324.186667pt;}
.y65{bottom:324.426667pt;}
.y189{bottom:324.586667pt;}
.y4e{bottom:324.826667pt;}
.y139{bottom:328.586667pt;}
.y173{bottom:330.426667pt;}
.yb9{bottom:332.426667pt;}
.y1aa{bottom:332.586667pt;}
.ye4{bottom:332.826667pt;}
.y25{bottom:336.746667pt;}
.y89{bottom:336.826667pt;}
.y10a{bottom:338.026667pt;}
.y164{bottom:338.426667pt;}
.y64{bottom:340.426667pt;}
.y4d{bottom:340.826667pt;}
.y138{bottom:342.426667pt;}
.y1a9{bottom:346.426667pt;}
.y172{bottom:348.186667pt;}
.yb8{bottom:348.426667pt;}
.ye3{bottom:348.826667pt;}
.y163{bottom:352.186667pt;}
.y88{bottom:352.826667pt;}
.y109{bottom:355.786667pt;}
.y4c{bottom:356.826667pt;}
.y137{bottom:360.186667pt;}
.y171{bottom:362.026667pt;}
.y1a8{bottom:364.186667pt;}
.yb7{bottom:364.426667pt;}
.ye2{bottom:364.826667pt;}
.y162{bottom:366.026667pt;}
.y87{bottom:368.826667pt;}
.y108{bottom:369.626667pt;}
.y188{bottom:370.026667pt;}
.y63{bottom:372.186667pt;}
.y4b{bottom:372.826667pt;}
.y136{bottom:374.026667pt;}
.y24{bottom:374.586667pt;}
.y170{bottom:375.786667pt;}
.y1a7{bottom:378.026667pt;}
.y161{bottom:379.786667pt;}
.yb6{bottom:380.426667pt;}
.ye1{bottom:380.826667pt;}
.y107{bottom:383.386667pt;}
.y187{bottom:383.786667pt;}
.y86{bottom:384.826667pt;}
.y135{bottom:387.786667pt;}
.y4a{bottom:388.826667pt;}
.y23{bottom:389.226667pt;}
.y62{bottom:392.266667pt;}
.y160{bottom:393.626667pt;}
.y1a6{bottom:395.786667pt;}
.yb5{bottom:396.426667pt;}
.ye0{bottom:396.826667pt;}
.y106{bottom:397.226667pt;}
.y186{bottom:397.626667pt;}
.y85{bottom:400.826667pt;}
.y22{bottom:403.866667pt;}
.y49{bottom:404.826667pt;}
.y134{bottom:405.626667pt;}
.y16f{bottom:407.386667pt;}
.y1a5{bottom:409.626667pt;}
.y15f{bottom:411.386667pt;}
.yb4{bottom:412.426667pt;}
.ydf{bottom:412.826667pt;}
.y105{bottom:414.986667pt;}
.y84{bottom:416.826667pt;}
.y21{bottom:418.586667pt;}
.y133{bottom:419.386667pt;}
.y48{bottom:420.826667pt;}
.y15e{bottom:425.226667pt;}
.y1a4{bottom:427.386667pt;}
.yb3{bottom:428.426667pt;}
.yde{bottom:428.826667pt;}
.y185{bottom:429.226667pt;}
.y83{bottom:432.826667pt;}
.y20{bottom:433.226667pt;}
.y47{bottom:436.826667pt;}
.y15d{bottom:438.986667pt;}
.y1a3{bottom:441.226667pt;}
.y104{bottom:442.586667pt;}
.y184{bottom:442.986667pt;}
.yb2{bottom:444.426667pt;}
.ydd{bottom:444.826667pt;}
.y1f{bottom:447.866667pt;}
.y82{bottom:448.826667pt;}
.y132{bottom:450.986667pt;}
.y46{bottom:452.826667pt;}
.y103{bottom:456.426667pt;}
.y183{bottom:456.826667pt;}
.y1a2{bottom:458.986667pt;}
.yb1{bottom:460.426667pt;}
.ydc{bottom:460.826667pt;}
.y1e{bottom:462.586667pt;}
.y81{bottom:464.826667pt;}
.y16e{bottom:466.586667pt;}
.y45{bottom:468.826667pt;}
.y9a{bottom:469.386667pt;}
.y102{bottom:470.186667pt;}
.y15c{bottom:470.586667pt;}
.y1a1{bottom:472.826667pt;}
.y182{bottom:474.586667pt;}
.yb0{bottom:476.426667pt;}
.ydb{bottom:476.826667pt;}
.y1d{bottom:477.226667pt;}
.y131{bottom:478.586667pt;}
.y80{bottom:480.826667pt;}
.y15b{bottom:484.426667pt;}
.y44{bottom:484.826667pt;}
.y1a0{bottom:486.586667pt;}
.y101{bottom:488.026667pt;}
.y181{bottom:488.426667pt;}
.y1c{bottom:491.866667pt;}
.yaf{bottom:492.426667pt;}
.yda{bottom:492.826667pt;}
.y130{bottom:496.426667pt;}
.y7f{bottom:496.826667pt;}
.y15a{bottom:498.186667pt;}
.y19f{bottom:500.426667pt;}
.y43{bottom:500.826667pt;}
.y100{bottom:501.786667pt;}
.y180{bottom:502.186667pt;}
.y1b{bottom:506.586667pt;}
.yae{bottom:508.426667pt;}
.yd9{bottom:508.826667pt;}
.y12f{bottom:510.186667pt;}
.y159{bottom:512.026667pt;}
.y7e{bottom:512.826667pt;}
.yff{bottom:515.626667pt;}
.y17f{bottom:516.026667pt;}
.y42{bottom:516.826667pt;}
.y19e{bottom:518.186667pt;}
.y1a{bottom:521.226667pt;}
.yad{bottom:524.426667pt;}
.yd8{bottom:524.826667pt;}
.y12e{bottom:528.026667pt;}
.y7d{bottom:528.826667pt;}
.yfe{bottom:529.386667pt;}
.y158{bottom:529.786667pt;}
.y19d{bottom:532.026667pt;}
.y41{bottom:532.826667pt;}
.y17e{bottom:533.786667pt;}
.y19{bottom:535.866667pt;}
.yac{bottom:540.426667pt;}
.yd7{bottom:540.826667pt;}
.y12d{bottom:541.786667pt;}
.y157{bottom:543.626667pt;}
.y7c{bottom:544.826667pt;}
.y19c{bottom:545.786667pt;}
.yfd{bottom:547.226667pt;}
.y17d{bottom:547.626667pt;}
.y40{bottom:548.826667pt;}
.y18{bottom:550.586667pt;}
.y12c{bottom:555.626667pt;}
.yab{bottom:556.426667pt;}
.yd6{bottom:556.826667pt;}
.y19b{bottom:559.626667pt;}
.y7b{bottom:560.826667pt;}
.yfc{bottom:560.986667pt;}
.y156{bottom:561.386667pt;}
.y3f{bottom:564.826667pt;}
.y17{bottom:565.226667pt;}
.yaa{bottom:572.426667pt;}
.yd5{bottom:572.826667pt;}
.y12b{bottom:573.386667pt;}
.yfb{bottom:574.853333pt;}
.y155{bottom:575.253333pt;}
.y7a{bottom:576.853333pt;}
.y19a{bottom:577.413333pt;}
.y17c{bottom:579.253333pt;}
.y16{bottom:579.893333pt;}
.y3e{bottom:580.853333pt;}
.y12a{bottom:587.253333pt;}
.ya9{bottom:588.453333pt;}
.yd4{bottom:588.853333pt;}
.y199{bottom:591.253333pt;}
.yfa{bottom:592.613333pt;}
.y79{bottom:592.853333pt;}
.y154{bottom:593.013333pt;}
.y15{bottom:594.613333pt;}
.y3d{bottom:596.853333pt;}
.y129{bottom:601.013333pt;}
.ya8{bottom:604.453333pt;}
.yd3{bottom:604.853333pt;}
.y198{bottom:605.013333pt;}
.yf9{bottom:606.453333pt;}
.y153{bottom:606.853333pt;}
.y78{bottom:608.853333pt;}
.y14{bottom:609.253333pt;}
.y3c{bottom:612.853333pt;}
.y128{bottom:614.853333pt;}
.y197{bottom:618.853333pt;}
.ya7{bottom:620.453333pt;}
.y152{bottom:620.613333pt;}
.yd2{bottom:620.853333pt;}
.y13{bottom:623.893333pt;}
.yf8{bottom:624.213333pt;}
.y17b{bottom:624.613333pt;}
.y77{bottom:624.853333pt;}
.y127{bottom:628.613333pt;}
.y3b{bottom:628.853333pt;}
.y1b2{bottom:632.613333pt;}
.ya6{bottom:636.453333pt;}
.y196{bottom:636.613333pt;}
.yd1{bottom:636.853333pt;}
.yf7{bottom:638.053333pt;}
.y151{bottom:638.453333pt;}
.y12{bottom:638.613333pt;}
.y76{bottom:640.853333pt;}
.y3a{bottom:644.853333pt;}
.y126{bottom:646.453333pt;}
.y195{bottom:650.453333pt;}
.yf6{bottom:651.813333pt;}
.y150{bottom:652.213333pt;}
.ya5{bottom:652.453333pt;}
.yd0{bottom:652.853333pt;}
.y11{bottom:653.253333pt;}
.y61{bottom:655.173333pt;}
.y75{bottom:656.853333pt;}
.y125{bottom:660.213333pt;}
.y39{bottom:660.853333pt;}
.y194{bottom:664.213333pt;}
.yf5{bottom:665.653333pt;}
.y10{bottom:667.893333pt;}
.ya4{bottom:668.453333pt;}
.ycf{bottom:668.853333pt;}
.y14f{bottom:670.053333pt;}
.y60{bottom:671.173333pt;}
.y74{bottom:672.853333pt;}
.y124{bottom:674.053333pt;}
.y38{bottom:676.853333pt;}
.y193{bottom:678.053333pt;}
.yf{bottom:682.613333pt;}
.yf4{bottom:683.413333pt;}
.y14e{bottom:683.813333pt;}
.ya3{bottom:684.453333pt;}
.yce{bottom:684.853333pt;}
.y5f{bottom:687.173333pt;}
.y73{bottom:688.853333pt;}
.y123{bottom:691.813333pt;}
.y37{bottom:692.853333pt;}
.y96{bottom:693.413333pt;}
.ye{bottom:697.253333pt;}
.y14d{bottom:697.653333pt;}
.ya1{bottom:699.573333pt;}
.ycd{bottom:700.853333pt;}
.y5e{bottom:703.173333pt;}
.y72{bottom:704.853333pt;}
.y122{bottom:705.653333pt;}
.y36{bottom:708.853333pt;}
.y192{bottom:709.653333pt;}
.yf3{bottom:711.013333pt;}
.y14c{bottom:715.413333pt;}
.ycc{bottom:716.853333pt;}
.ya0{bottom:718.453333pt;}
.y5d{bottom:719.173333pt;}
.y121{bottom:719.413333pt;}
.y71{bottom:720.853333pt;}
.y191{bottom:723.413333pt;}
.y35{bottom:724.853333pt;}
.yf2{bottom:728.773333pt;}
.y14b{bottom:729.253333pt;}
.ycb{bottom:732.853333pt;}
.y70{bottom:736.853333pt;}
.y120{bottom:737.253333pt;}
.y9e{bottom:737.413333pt;}
.yf1{bottom:742.613333pt;}
.y14a{bottom:743.013333pt;}
.yca{bottom:748.853333pt;}
.y11f{bottom:751.013333pt;}
.y5c{bottom:751.733333pt;}
.y6f{bottom:752.853333pt;}
.yd{bottom:755.813333pt;}
.yf0{bottom:756.373333pt;}
.y9c{bottom:757.333333pt;}
.y34{bottom:757.413333pt;}
.y149{bottom:760.773333pt;}
.y11e{bottom:764.773333pt;}
.yc9{bottom:764.853333pt;}
.y1b1{bottom:768.773333pt;}
.y6e{bottom:768.853333pt;}
.yc{bottom:770.613333pt;}
.yef{bottom:774.213333pt;}
.y148{bottom:774.613333pt;}
.yc8{bottom:780.853333pt;}
.y11d{bottom:782.613333pt;}
.y6d{bottom:784.853333pt;}
.yb{bottom:785.253333pt;}
.y9b{bottom:785.893333pt;}
.yee{bottom:787.973333pt;}
.y147{bottom:792.373333pt;}
.y5b{bottom:795.173333pt;}
.y11c{bottom:796.373333pt;}
.yc7{bottom:796.853333pt;}
.y33{bottom:800.853333pt;}
.yed{bottom:801.813333pt;}
.y16d{bottom:806.213333pt;}
.ya{bottom:809.493333pt;}
.y146{bottom:810.213333pt;}
.y5a{bottom:811.413333pt;}
.yc6{bottom:812.853333pt;}
.y11b{bottom:814.213333pt;}
.y32{bottom:816.853333pt;}
.yec{bottom:819.573333pt;}
.y145{bottom:823.973333pt;}
.y59{bottom:827.733333pt;}
.y11a{bottom:827.973333pt;}
.yc5{bottom:828.853333pt;}
.y31{bottom:832.853333pt;}
.yeb{bottom:833.413333pt;}
.y144{bottom:837.813333pt;}
.y119{bottom:841.813333pt;}
.y58{bottom:843.973333pt;}
.yc4{bottom:844.853333pt;}
.yea{bottom:847.173333pt;}
.y30{bottom:848.853333pt;}
.y118{bottom:855.573333pt;}
.y9{bottom:857.973333pt;}
.y57{bottom:860.293333pt;}
.yc3{bottom:860.853333pt;}
.y2f{bottom:864.853333pt;}
.ye9{bottom:865.013333pt;}
.y143{bottom:869.413333pt;}
.y117{bottom:873.413333pt;}
.y56{bottom:876.613333pt;}
.yc2{bottom:876.853333pt;}
.ye8{bottom:878.773333pt;}
.y2e{bottom:880.853333pt;}
.y8{bottom:881.973333pt;}
.y142{bottom:883.173333pt;}
.y116{bottom:887.173333pt;}
.y2d{bottom:896.853333pt;}
.y115{bottom:901.013333pt;}
.y7{bottom:905.973333pt;}
.yc1{bottom:909.413333pt;}
.y2c{bottom:912.853333pt;}
.y114{bottom:914.773333pt;}
.y1{bottom:950.400000pt;}
.hc{height:16.000000pt;}
.he{height:18.880000pt;}
.hd{height:18.960000pt;}
.h6{height:31.406250pt;}
.h7{height:34.062500pt;}
.h10{height:47.085938pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h9{height:50.062500pt;}
.h3{height:52.448437pt;}
.h5{height:53.857500pt;}
.hb{height:55.736250pt;}
.hf{height:64.500000pt;}
.ha{height:66.750000pt;}
.h4{height:75.142500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:153.040000pt;}
.w5{width:153.066667pt;}
.w3{width:153.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.280000pt;}
.x19{left:17.200000pt;}
.x13{left:23.360000pt;}
.x15{left:24.880000pt;}
.x16{left:26.720000pt;}
.x11{left:32.400000pt;}
.x17{left:33.920000pt;}
.x1a{left:36.320000pt;}
.x2{left:158.826655pt;}
.x1b{left:160.506655pt;}
.x1{left:166.346655pt;}
.xc{left:172.506655pt;}
.x5{left:174.266655pt;}
.x3{left:181.466655pt;}
.x6{left:189.466655pt;}
.xb{left:204.186655pt;}
.xd{left:205.706655pt;}
.x10{left:217.306655pt;}
.x9{left:233.786655pt;}
.xf{left:243.546655pt;}
.x7{left:251.946655pt;}
.x4{left:281.706655pt;}
.x12{left:320.453333pt;}
.x8{left:321.733322pt;}
.xa{left:332.453322pt;}
.x14{left:473.493333pt;}
.xe{left:628.399988pt;}
}




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