
    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_68284f0a4be7a4268b800e13.woff2')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_30f8fcf5053c3dc12af80c20.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_19f944b0b820bbf9e7e3822e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b76f460bbea7ff2c8c204045.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_3003c15b02359d1487eab002.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cfdbb0bd28d802b172ee336f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_f0a45662150e7ef008e2239d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_a1d06c5ccb5ea302fead7d3d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8934686ae94c3bcaa75b90c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_3d3c506a70268037ae53fd12.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3876e45445db11bdfe38b32e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939941;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:ffc;src:url('chunks/assets/font_ad58a30f6c5b0642a4163691.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-74.880000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-2.520000px;}
.ls8{letter-spacing:-1.980000px;}
.ls5{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-0.924000px;}
.lsf{letter-spacing:-0.804000px;}
.ls14{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.427800px;}
.ls10{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.085200px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.468000px;}
.ls11{letter-spacing:5.220000px;}
.lsb{letter-spacing:49.788000px;}
.ls13{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsd{word-spacing:-54.000000px;}
.wse{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wsc{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws5{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.980000px;}
.wsb{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.185000px;}
.ws2{word-spacing:-9.978240px;}
.wsa{word-spacing:-9.808800px;}
.ws4{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._31{margin-left:-5.142960px;}
._25{margin-left:-4.104000px;}
._9{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._14{width:4.212000px;}
._d{width:5.595120px;}
._c{width:6.970320px;}
._11{width:8.050320px;}
._e{width:9.612000px;}
._4{width:10.912320px;}
._12{width:11.934000px;}
._f{width:14.850000px;}
._10{width:15.876000px;}
._a{width:17.424000px;}
._b{width:18.513360px;}
._1a{width:20.470320px;}
._19{width:21.600000px;}
._20{width:22.680000px;}
._1f{width:23.872320px;}
._15{width:25.272000px;}
._16{width:26.285040px;}
._23{width:27.457920px;}
._29{width:28.702080px;}
._1e{width:29.816640px;}
._1d{width:30.996000px;}
._17{width:32.454000px;}
._18{width:33.750000px;}
._1b{width:34.920000px;}
._1c{width:36.396000px;}
._2a{width:37.530000px;}
._24{width:38.880000px;}
._13{width:40.473360px;}
._2d{width:41.796000px;}
._2e{width:43.200000px;}
._28{width:44.388000px;}
._26{width:45.792000px;}
._21{width:50.274000px;}
._22{width:51.719040px;}
._2c{width:53.892000px;}
._27{width:55.080000px;}
._32{width:57.834000px;}
._33{width:58.860000px;}
._5{width:60.966000px;}
._8{width:63.828000px;}
._2b{width:67.662000px;}
._2f{width:80.946000px;}
._6{width:97.308000px;}
._7{width:98.496000px;}
._3{width:432.814560px;}
._30{width:1660.020000px;}
.fc7{color:rgb(31,73,125);}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:5.205000px;}
.y39{bottom:5.565000px;}
.y35{bottom:5.580000px;}
.ycd{bottom:5.760000px;}
.yc9{bottom:23.040000px;}
.ydb{bottom:23.070000px;}
.y38{bottom:23.385000px;}
.ycb{bottom:23.400000px;}
.ye2{bottom:23.430000px;}
.y34{bottom:23.580000px;}
.yc8{bottom:40.860000px;}
.yca{bottom:41.220000px;}
.y37{bottom:41.250000px;}
.y33{bottom:50.400000px;}
.y4f{bottom:57.060000px;}
.y32{bottom:68.220000px;}
.y4e{bottom:72.540000px;}
.y4{bottom:77.220000px;}
.y31{bottom:86.040000px;}
.ybd{bottom:90.540000px;}
.y4c{bottom:91.800000px;}
.ye5{bottom:97.200000px;}
.y87{bottom:99.360000px;}
.y11e{bottom:102.060000px;}
.y30{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.ybc{bottom:108.360000px;}
.y49{bottom:109.800000px;}
.y192{bottom:116.100000px;}
.y86{bottom:117.360000px;}
.y166{bottom:118.800000px;}
.y2f{bottom:121.860000px;}
.ye4{bottom:123.480000px;}
.ybb{bottom:126.180000px;}
.y48{bottom:127.620000px;}
.y14a{bottom:127.800000px;}
.y11d{bottom:129.240000px;}
.y191{bottom:134.100000px;}
.y85{bottom:135.360000px;}
.y165{bottom:136.620000px;}
.y2e{bottom:139.680000px;}
.yba{bottom:144.000000px;}
.y47{bottom:145.440000px;}
.y149{bottom:145.620000px;}
.y11c{bottom:147.060000px;}
.y190{bottom:152.100000px;}
.ye3{bottom:152.640000px;}
.y84{bottom:153.360000px;}
.y164{bottom:154.440000px;}
.yb9{bottom:161.820000px;}
.y46{bottom:163.260000px;}
.y148{bottom:163.440000px;}
.y11b{bottom:164.880000px;}
.y2d{bottom:166.500000px;}
.y18f{bottom:170.100000px;}
.y83{bottom:171.360000px;}
.y163{bottom:172.260000px;}
.yb8{bottom:179.820000px;}
.y45{bottom:181.080000px;}
.y147{bottom:181.260000px;}
.y11a{bottom:182.880000px;}
.y2c{bottom:184.320000px;}
.y18e{bottom:188.100000px;}
.y162{bottom:190.260000px;}
.y1d{bottom:192.960000px;}
.yb7{bottom:197.640000px;}
.y82{bottom:198.000000px;}
.ye1{bottom:198.180000px;}
.y44{bottom:199.080000px;}
.y146{bottom:199.260000px;}
.y119{bottom:200.700000px;}
.y2b{bottom:202.170000px;}
.y18d{bottom:205.950000px;}
.y161{bottom:208.110000px;}
.yb6{bottom:215.490000px;}
.y43{bottom:216.930000px;}
.y145{bottom:217.110000px;}
.y118{bottom:218.550000px;}
.y1c{bottom:219.810000px;}
.y2a{bottom:219.990000px;}
.y18c{bottom:223.950000px;}
.y81{bottom:224.490000px;}
.y160{bottom:225.930000px;}
.yb5{bottom:233.310000px;}
.y42{bottom:234.750000px;}
.y144{bottom:234.930000px;}
.y117{bottom:236.370000px;}
.y29{bottom:237.990000px;}
.y18b{bottom:241.950000px;}
.y15f{bottom:243.750000px;}
.ye0{bottom:243.765000px;}
.y1b{bottom:246.630000px;}
.yb4{bottom:251.130000px;}
.y80{bottom:252.030000px;}
.y41{bottom:252.570000px;}
.y143{bottom:252.750000px;}
.y116{bottom:254.190000px;}
.y28{bottom:255.810000px;}
.y18a{bottom:259.950000px;}
.y15e{bottom:261.570000px;}
.yb3{bottom:268.950000px;}
.y7f{bottom:270.030000px;}
.y40{bottom:270.390000px;}
.y142{bottom:270.570000px;}
.y115{bottom:272.190000px;}
.y1a{bottom:273.090000px;}
.y27{bottom:273.630000px;}
.y189{bottom:277.950000px;}
.y15d{bottom:279.390000px;}
.yb2{bottom:286.950000px;}
.y7e{bottom:288.030000px;}
.y3f{bottom:288.210000px;}
.ydf{bottom:289.125000px;}
.y26{bottom:291.450000px;}
.y188{bottom:295.950000px;}
.y141{bottom:297.390000px;}
.y114{bottom:299.010000px;}
.y19{bottom:300.270000px;}
.y7d{bottom:306.030000px;}
.y3e{bottom:306.210000px;}
.y187{bottom:313.950000px;}
.yb1{bottom:315.210000px;}
.y140{bottom:315.390000px;}
.y113{bottom:316.830000px;}
.y25{bottom:318.270000px;}
.y3d{bottom:324.030000px;}
.y18{bottom:327.270000px;}
.y186{bottom:331.950000px;}
.y13f{bottom:333.210000px;}
.y112{bottom:334.650000px;}
.yde{bottom:334.665000px;}
.y24{bottom:336.270000px;}
.y15c{bottom:341.670000px;}
.y3c{bottom:341.850000px;}
.y7c{bottom:342.030000px;}
.y17{bottom:345.090000px;}
.yb0{bottom:346.530000px;}
.y185{bottom:349.950000px;}
.y4b{bottom:350.850000px;}
.y13e{bottom:351.030000px;}
.y111{bottom:352.470000px;}
.y23{bottom:354.090000px;}
.y3b{bottom:359.670000px;}
.y7b{bottom:359.850000px;}
.y16{bottom:362.910000px;}
.yaf{bottom:364.350000px;}
.y184{bottom:367.950000px;}
.y15b{bottom:368.490000px;}
.y4a{bottom:368.670000px;}
.y13d{bottom:368.850000px;}
.y110{bottom:370.290000px;}
.y22{bottom:371.910000px;}
.y7a{bottom:377.850000px;}
.ydd{bottom:380.025000px;}
.y15{bottom:380.730000px;}
.yae{bottom:382.170000px;}
.y183{bottom:385.770000px;}
.y13c{bottom:386.670000px;}
.y3a{bottom:387.930000px;}
.y10f{bottom:388.290000px;}
.y21{bottom:389.730000px;}
.y15a{bottom:395.670000px;}
.y14{bottom:398.550000px;}
.yad{bottom:400.170000px;}
.y182{bottom:403.770000px;}
.y79{bottom:404.670000px;}
.y10e{bottom:406.110000px;}
.y20{bottom:407.550000px;}
.y159{bottom:413.670000px;}
.y36{bottom:414.585000px;}
.yac{bottom:417.990000px;}
.y181{bottom:421.770000px;}
.y13b{bottom:422.490000px;}
.y10d{bottom:423.930000px;}
.y13{bottom:425.010000px;}
.y1f{bottom:425.370000px;}
.yda{bottom:425.565000px;}
.y78{bottom:431.130000px;}
.y158{bottom:431.490000px;}
.yab{bottom:435.810000px;}
.y180{bottom:439.770000px;}
.y10c{bottom:441.795000px;}
.y12{bottom:443.055000px;}
.y1e{bottom:443.415000px;}
.y13a{bottom:449.355000px;}
.yaa{bottom:453.675000px;}
.y17f{bottom:457.815000px;}
.y77{bottom:458.355000px;}
.y10b{bottom:459.615000px;}
.y139{bottom:467.175000px;}
.y17e{bottom:475.815000px;}
.y76{bottom:476.175000px;}
.y11{bottom:477.795000px;}
.ya9{bottom:480.495000px;}
.y138{bottom:484.995000px;}
.yd9{bottom:485.175000px;}
.y10a{bottom:486.075000px;}
.y17d{bottom:493.815000px;}
.y75{bottom:493.995000px;}
.ya8{bottom:498.495000px;}
.y137{bottom:502.815000px;}
.y74{bottom:511.815000px;}
.yd7{bottom:512.535000px;}
.y109{bottom:514.875000px;}
.ya7{bottom:516.315000px;}
.y136{bottom:520.815000px;}
.y17c{bottom:521.895000px;}
.y73{bottom:529.815000px;}
.yd6{bottom:530.355000px;}
.ya6{bottom:534.135000px;}
.y135{bottom:538.635000px;}
.yd8{bottom:538.815000px;}
.y108{bottom:546.195000px;}
.y72{bottom:547.635000px;}
.yd5{bottom:548.175000px;}
.ya5{bottom:551.955000px;}
.y17b{bottom:553.215000px;}
.y134{bottom:556.455000px;}
.y107{bottom:564.015000px;}
.y71{bottom:565.455000px;}
.yd4{bottom:565.995000px;}
.ya4{bottom:569.775000px;}
.y17a{bottom:571.035000px;}
.y133{bottom:574.275000px;}
.y106{bottom:581.835000px;}
.y70{bottom:582.915000px;}
.y157{bottom:583.275000px;}
.yd3{bottom:583.815000px;}
.ya3{bottom:587.595000px;}
.y179{bottom:589.035000px;}
.y132{bottom:592.095000px;}
.y105{bottom:599.655000px;}
.y6f{bottom:601.095000px;}
.yd2{bottom:601.635000px;}
.y178{bottom:606.855000px;}
.ya2{bottom:614.595000px;}
.yd1{bottom:614.775000px;}
.y104{bottom:617.655000px;}
.y6e{bottom:619.095000px;}
.y131{bottom:620.535000px;}
.ya1{bottom:632.415000px;}
.y177{bottom:633.315000px;}
.y103{bottom:635.475000px;}
.y6d{bottom:636.915000px;}
.ya0{bottom:650.235000px;}
.yd0{bottom:651.135000px;}
.y130{bottom:651.855000px;}
.y102{bottom:653.295000px;}
.y6c{bottom:654.735000px;}
.y176{bottom:660.495000px;}
.y9f{bottom:668.055000px;}
.ycf{bottom:669.675000px;}
.y101{bottom:671.115000px;}
.y6b{bottom:672.555000px;}
.y175{bottom:678.345000px;}
.y9e{bottom:685.905000px;}
.y12f{bottom:687.525000px;}
.yce{bottom:688.425000px;}
.y100{bottom:688.965000px;}
.y6a{bottom:690.405000px;}
.y174{bottom:696.165000px;}
.y156{bottom:699.405000px;}
.y9d{bottom:703.725000px;}
.y12e{bottom:705.345000px;}
.y69{bottom:708.225000px;}
.y173{bottom:714.165000px;}
.yff{bottom:716.145000px;}
.y155{bottom:717.225000px;}
.y9c{bottom:721.725000px;}
.y12d{bottom:723.165000px;}
.ycc{bottom:724.785000px;}
.y68{bottom:726.225000px;}
.y172{bottom:731.985000px;}
.yfe{bottom:734.145000px;}
.y154{bottom:735.225000px;}
.y9b{bottom:739.545000px;}
.y12c{bottom:741.165000px;}
.yc7{bottom:743.505000px;}
.y67{bottom:744.045000px;}
.y171{bottom:749.805000px;}
.yfd{bottom:752.145000px;}
.y153{bottom:753.045000px;}
.y66{bottom:761.865000px;}
.y9a{bottom:766.365000px;}
.y170{bottom:767.625000px;}
.y12b{bottom:767.985000px;}
.yfc{bottom:770.145000px;}
.y152{bottom:770.865000px;}
.y65{bottom:779.685000px;}
.y99{bottom:784.185000px;}
.y12a{bottom:785.805000px;}
.yfb{bottom:788.145000px;}
.y151{bottom:788.685000px;}
.y16f{bottom:794.085000px;}
.y64{bottom:797.505000px;}
.y98{bottom:802.005000px;}
.y129{bottom:803.625000px;}
.yfa{bottom:806.145000px;}
.y150{bottom:806.505000px;}
.yc6{bottom:812.085000px;}
.y63{bottom:815.505000px;}
.y97{bottom:820.005000px;}
.y128{bottom:821.445000px;}
.yf9{bottom:824.145000px;}
.y14f{bottom:824.505000px;}
.y96{bottom:837.825000px;}
.yc4{bottom:839.265000px;}
.y127{bottom:839.445000px;}
.yf8{bottom:842.145000px;}
.y14e{bottom:842.325000px;}
.y62{bottom:843.765000px;}
.y95{bottom:855.645000px;}
.yc3{bottom:857.085000px;}
.yc5{bottom:857.265000px;}
.yf7{bottom:859.965000px;}
.y14d{bottom:860.145000px;}
.y94{bottom:873.465000px;}
.y16e{bottom:874.905000px;}
.y61{bottom:875.085000px;}
.yf6{bottom:877.965000px;}
.yc2{bottom:883.545000px;}
.y93{bottom:891.285000px;}
.y16d{bottom:892.725000px;}
.y60{bottom:892.905000px;}
.yf5{bottom:895.965000px;}
.y14c{bottom:906.225000px;}
.y16c{bottom:910.545000px;}
.y5f{bottom:910.770000px;}
.y92{bottom:918.150000px;}
.yf4{bottom:922.290000px;}
.y5e{bottom:928.590000px;}
.y126{bottom:937.590000px;}
.y91{bottom:944.790000px;}
.y16b{bottom:946.410000px;}
.y5d{bottom:946.590000px;}
.yf3{bottom:949.650000px;}
.y10{bottom:954.690000px;}
.y125{bottom:955.590000px;}
.y5c{bottom:964.410000px;}
.yf2{bottom:967.470000px;}
.y90{bottom:972.330000px;}
.y16a{bottom:972.870000px;}
.y124{bottom:973.410000px;}
.yf{bottom:975.570000px;}
.y5b{bottom:982.230000px;}
.yf1{bottom:985.290000px;}
.y8f{bottom:990.150000px;}
.y123{bottom:991.230000px;}
.ye{bottom:999.330000px;}
.y5a{bottom:1000.050000px;}
.yf0{bottom:1003.110000px;}
.y8e{bottom:1008.150000px;}
.y122{bottom:1009.050000px;}
.y59{bottom:1017.870000px;}
.yef{bottom:1020.930000px;}
.yd{bottom:1026.150000px;}
.y121{bottom:1026.870000px;}
.y58{bottom:1035.870000px;}
.yee{bottom:1038.930000px;}
.y8d{bottom:1044.150000px;}
.y120{bottom:1044.870000px;}
.yc{bottom:1046.850000px;}
.y57{bottom:1053.690000px;}
.yed{bottom:1056.750000px;}
.y8c{bottom:1062.150000px;}
.yc1{bottom:1062.330000px;}
.y14b{bottom:1062.690000px;}
.y56{bottom:1071.510000px;}
.y11f{bottom:1071.690000px;}
.yec{bottom:1074.570000px;}
.yb{bottom:1076.730000px;}
.y8b{bottom:1080.150000px;}
.y55{bottom:1089.330000px;}
.yc0{bottom:1089.510000px;}
.yeb{bottom:1092.390000px;}
.ya{bottom:1104.450000px;}
.y8a{bottom:1106.790000px;}
.y169{bottom:1107.150000px;}
.ybf{bottom:1107.330000px;}
.yea{bottom:1110.210000px;}
.y194{bottom:1112.370000px;}
.y5{bottom:1112.940000px;}
.y54{bottom:1115.790000px;}
.y168{bottom:1124.970000px;}
.ybe{bottom:1125.150000px;}
.ye9{bottom:1128.030000px;}
.y9{bottom:1132.350000px;}
.y89{bottom:1133.250000px;}
.y193{bottom:1133.610000px;}
.y53{bottom:1142.970000px;}
.ye8{bottom:1146.060000px;}
.y167{bottom:1151.640000px;}
.y88{bottom:1160.820000px;}
.y52{bottom:1161.000000px;}
.ye7{bottom:1163.880000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y51{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y7{bottom:1191.240000px;}
.ye6{bottom:1192.140000px;}
.y50{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y4d{bottom:1224.540000px;}
.h1f{height:5.805000px;}
.h19{height:17.805000px;}
.h16{height:18.000000px;}
.h18{height:18.030000px;}
.hb{height:35.332031px;}
.h1a{height:35.625000px;}
.h17{height:35.640000px;}
.hf{height:39.049805px;}
.h13{height:40.843828px;}
.h20{height:44.507812px;}
.h1c{height:44.625000px;}
.h1b{height:44.661000px;}
.h1d{height:44.676000px;}
.h1e{height:44.820000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h15{height:53.460000px;}
.he{height:54.421875px;}
.h14{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h11{height:62.481000px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h12{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hd{height:464.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.wc{width:108.756000px;}
.w6{width:134.989500px;}
.w7{width:135.021000px;}
.w8{width:135.036000px;}
.wa{width:135.165000px;}
.w9{width:135.201000px;}
.w3{width:211.933500px;}
.wb{width:248.599500px;}
.wd{width:320.055000px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.098500px;}
.x3{left:12.090000px;}
.x1c{left:18.529500px;}
.x1{left:54.000000px;}
.x13{left:55.440000px;}
.xb{left:65.340000px;}
.x7{left:69.120000px;}
.x6{left:79.560000px;}
.x16{left:81.000000px;}
.xa{left:83.160000px;}
.x10{left:95.256000px;}
.x17{left:108.036000px;}
.xd{left:121.716000px;}
.x20{left:217.470000px;}
.x1d{left:243.045000px;}
.x1b{left:248.790000px;}
.x9{left:253.830000px;}
.xf{left:282.315000px;}
.x8{left:290.775000px;}
.xc{left:347.115000px;}
.x21{left:356.475000px;}
.x1e{left:378.975000px;}
.x15{left:439.815000px;}
.x22{left:465.960000px;}
.x11{left:473.505000px;}
.x1a{left:484.305000px;}
.x18{left:500.505000px;}
.x12{left:514.725000px;}
.x19{left:527.505000px;}
.x1f{left:650.850000px;}
.x14{left:668.490000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-2.240000pt;}
.ls8{letter-spacing:-1.760000pt;}
.ls5{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-0.821333pt;}
.lsf{letter-spacing:-0.714667pt;}
.ls14{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.380267pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.075733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.416000pt;}
.ls11{letter-spacing:4.640000pt;}
.lsb{letter-spacing:44.256000pt;}
.ls13{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsd{word-spacing:-48.000000pt;}
.wse{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wsc{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.760000pt;}
.wsb{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.053333pt;}
.ws2{word-spacing:-8.869547pt;}
.wsa{word-spacing:-8.718933pt;}
.ws4{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._31{margin-left:-4.571520pt;}
._25{margin-left:-3.648000pt;}
._9{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._14{width:3.744000pt;}
._d{width:4.973440pt;}
._c{width:6.195840pt;}
._11{width:7.155840pt;}
._e{width:8.544000pt;}
._4{width:9.699840pt;}
._12{width:10.608000pt;}
._f{width:13.200000pt;}
._10{width:14.112000pt;}
._a{width:15.488000pt;}
._b{width:16.456320pt;}
._1a{width:18.195840pt;}
._19{width:19.200000pt;}
._20{width:20.160000pt;}
._1f{width:21.219840pt;}
._15{width:22.464000pt;}
._16{width:23.364480pt;}
._23{width:24.407040pt;}
._29{width:25.512960pt;}
._1e{width:26.503680pt;}
._1d{width:27.552000pt;}
._17{width:28.848000pt;}
._18{width:30.000000pt;}
._1b{width:31.040000pt;}
._1c{width:32.352000pt;}
._2a{width:33.360000pt;}
._24{width:34.560000pt;}
._13{width:35.976320pt;}
._2d{width:37.152000pt;}
._2e{width:38.400000pt;}
._28{width:39.456000pt;}
._26{width:40.704000pt;}
._21{width:44.688000pt;}
._22{width:45.972480pt;}
._2c{width:47.904000pt;}
._27{width:48.960000pt;}
._32{width:51.408000pt;}
._33{width:52.320000pt;}
._5{width:54.192000pt;}
._8{width:56.736000pt;}
._2b{width:60.144000pt;}
._2f{width:71.952000pt;}
._6{width:86.496000pt;}
._7{width:87.552000pt;}
._3{width:384.724053pt;}
._30{width:1475.573333pt;}
.fs8{font-size:5.120000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:4.626667pt;}
.y39{bottom:4.946667pt;}
.y35{bottom:4.960000pt;}
.ycd{bottom:5.120000pt;}
.yc9{bottom:20.480000pt;}
.ydb{bottom:20.506667pt;}
.y38{bottom:20.786667pt;}
.ycb{bottom:20.800000pt;}
.ye2{bottom:20.826667pt;}
.y34{bottom:20.960000pt;}
.yc8{bottom:36.320000pt;}
.yca{bottom:36.640000pt;}
.y37{bottom:36.666667pt;}
.y33{bottom:44.800000pt;}
.y4f{bottom:50.720000pt;}
.y32{bottom:60.640000pt;}
.y4e{bottom:64.480000pt;}
.y4{bottom:68.640000pt;}
.y31{bottom:76.480000pt;}
.ybd{bottom:80.480000pt;}
.y4c{bottom:81.600000pt;}
.ye5{bottom:86.400000pt;}
.y87{bottom:88.320000pt;}
.y11e{bottom:90.720000pt;}
.y30{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.ybc{bottom:96.320000pt;}
.y49{bottom:97.600000pt;}
.y192{bottom:103.200000pt;}
.y86{bottom:104.320000pt;}
.y166{bottom:105.600000pt;}
.y2f{bottom:108.320000pt;}
.ye4{bottom:109.760000pt;}
.ybb{bottom:112.160000pt;}
.y48{bottom:113.440000pt;}
.y14a{bottom:113.600000pt;}
.y11d{bottom:114.880000pt;}
.y191{bottom:119.200000pt;}
.y85{bottom:120.320000pt;}
.y165{bottom:121.440000pt;}
.y2e{bottom:124.160000pt;}
.yba{bottom:128.000000pt;}
.y47{bottom:129.280000pt;}
.y149{bottom:129.440000pt;}
.y11c{bottom:130.720000pt;}
.y190{bottom:135.200000pt;}
.ye3{bottom:135.680000pt;}
.y84{bottom:136.320000pt;}
.y164{bottom:137.280000pt;}
.yb9{bottom:143.840000pt;}
.y46{bottom:145.120000pt;}
.y148{bottom:145.280000pt;}
.y11b{bottom:146.560000pt;}
.y2d{bottom:148.000000pt;}
.y18f{bottom:151.200000pt;}
.y83{bottom:152.320000pt;}
.y163{bottom:153.120000pt;}
.yb8{bottom:159.840000pt;}
.y45{bottom:160.960000pt;}
.y147{bottom:161.120000pt;}
.y11a{bottom:162.560000pt;}
.y2c{bottom:163.840000pt;}
.y18e{bottom:167.200000pt;}
.y162{bottom:169.120000pt;}
.y1d{bottom:171.520000pt;}
.yb7{bottom:175.680000pt;}
.y82{bottom:176.000000pt;}
.ye1{bottom:176.160000pt;}
.y44{bottom:176.960000pt;}
.y146{bottom:177.120000pt;}
.y119{bottom:178.400000pt;}
.y2b{bottom:179.706667pt;}
.y18d{bottom:183.066667pt;}
.y161{bottom:184.986667pt;}
.yb6{bottom:191.546667pt;}
.y43{bottom:192.826667pt;}
.y145{bottom:192.986667pt;}
.y118{bottom:194.266667pt;}
.y1c{bottom:195.386667pt;}
.y2a{bottom:195.546667pt;}
.y18c{bottom:199.066667pt;}
.y81{bottom:199.546667pt;}
.y160{bottom:200.826667pt;}
.yb5{bottom:207.386667pt;}
.y42{bottom:208.666667pt;}
.y144{bottom:208.826667pt;}
.y117{bottom:210.106667pt;}
.y29{bottom:211.546667pt;}
.y18b{bottom:215.066667pt;}
.y15f{bottom:216.666667pt;}
.ye0{bottom:216.680000pt;}
.y1b{bottom:219.226667pt;}
.yb4{bottom:223.226667pt;}
.y80{bottom:224.026667pt;}
.y41{bottom:224.506667pt;}
.y143{bottom:224.666667pt;}
.y116{bottom:225.946667pt;}
.y28{bottom:227.386667pt;}
.y18a{bottom:231.066667pt;}
.y15e{bottom:232.506667pt;}
.yb3{bottom:239.066667pt;}
.y7f{bottom:240.026667pt;}
.y40{bottom:240.346667pt;}
.y142{bottom:240.506667pt;}
.y115{bottom:241.946667pt;}
.y1a{bottom:242.746667pt;}
.y27{bottom:243.226667pt;}
.y189{bottom:247.066667pt;}
.y15d{bottom:248.346667pt;}
.yb2{bottom:255.066667pt;}
.y7e{bottom:256.026667pt;}
.y3f{bottom:256.186667pt;}
.ydf{bottom:257.000000pt;}
.y26{bottom:259.066667pt;}
.y188{bottom:263.066667pt;}
.y141{bottom:264.346667pt;}
.y114{bottom:265.786667pt;}
.y19{bottom:266.906667pt;}
.y7d{bottom:272.026667pt;}
.y3e{bottom:272.186667pt;}
.y187{bottom:279.066667pt;}
.yb1{bottom:280.186667pt;}
.y140{bottom:280.346667pt;}
.y113{bottom:281.626667pt;}
.y25{bottom:282.906667pt;}
.y3d{bottom:288.026667pt;}
.y18{bottom:290.906667pt;}
.y186{bottom:295.066667pt;}
.y13f{bottom:296.186667pt;}
.y112{bottom:297.466667pt;}
.yde{bottom:297.480000pt;}
.y24{bottom:298.906667pt;}
.y15c{bottom:303.706667pt;}
.y3c{bottom:303.866667pt;}
.y7c{bottom:304.026667pt;}
.y17{bottom:306.746667pt;}
.yb0{bottom:308.026667pt;}
.y185{bottom:311.066667pt;}
.y4b{bottom:311.866667pt;}
.y13e{bottom:312.026667pt;}
.y111{bottom:313.306667pt;}
.y23{bottom:314.746667pt;}
.y3b{bottom:319.706667pt;}
.y7b{bottom:319.866667pt;}
.y16{bottom:322.586667pt;}
.yaf{bottom:323.866667pt;}
.y184{bottom:327.066667pt;}
.y15b{bottom:327.546667pt;}
.y4a{bottom:327.706667pt;}
.y13d{bottom:327.866667pt;}
.y110{bottom:329.146667pt;}
.y22{bottom:330.586667pt;}
.y7a{bottom:335.866667pt;}
.ydd{bottom:337.800000pt;}
.y15{bottom:338.426667pt;}
.yae{bottom:339.706667pt;}
.y183{bottom:342.906667pt;}
.y13c{bottom:343.706667pt;}
.y3a{bottom:344.826667pt;}
.y10f{bottom:345.146667pt;}
.y21{bottom:346.426667pt;}
.y15a{bottom:351.706667pt;}
.y14{bottom:354.266667pt;}
.yad{bottom:355.706667pt;}
.y182{bottom:358.906667pt;}
.y79{bottom:359.706667pt;}
.y10e{bottom:360.986667pt;}
.y20{bottom:362.266667pt;}
.y159{bottom:367.706667pt;}
.y36{bottom:368.520000pt;}
.yac{bottom:371.546667pt;}
.y181{bottom:374.906667pt;}
.y13b{bottom:375.546667pt;}
.y10d{bottom:376.826667pt;}
.y13{bottom:377.786667pt;}
.y1f{bottom:378.106667pt;}
.yda{bottom:378.280000pt;}
.y78{bottom:383.226667pt;}
.y158{bottom:383.546667pt;}
.yab{bottom:387.386667pt;}
.y180{bottom:390.906667pt;}
.y10c{bottom:392.706667pt;}
.y12{bottom:393.826667pt;}
.y1e{bottom:394.146667pt;}
.y13a{bottom:399.426667pt;}
.yaa{bottom:403.266667pt;}
.y17f{bottom:406.946667pt;}
.y77{bottom:407.426667pt;}
.y10b{bottom:408.546667pt;}
.y139{bottom:415.266667pt;}
.y17e{bottom:422.946667pt;}
.y76{bottom:423.266667pt;}
.y11{bottom:424.706667pt;}
.ya9{bottom:427.106667pt;}
.y138{bottom:431.106667pt;}
.yd9{bottom:431.266667pt;}
.y10a{bottom:432.066667pt;}
.y17d{bottom:438.946667pt;}
.y75{bottom:439.106667pt;}
.ya8{bottom:443.106667pt;}
.y137{bottom:446.946667pt;}
.y74{bottom:454.946667pt;}
.yd7{bottom:455.586667pt;}
.y109{bottom:457.666667pt;}
.ya7{bottom:458.946667pt;}
.y136{bottom:462.946667pt;}
.y17c{bottom:463.906667pt;}
.y73{bottom:470.946667pt;}
.yd6{bottom:471.426667pt;}
.ya6{bottom:474.786667pt;}
.y135{bottom:478.786667pt;}
.yd8{bottom:478.946667pt;}
.y108{bottom:485.506667pt;}
.y72{bottom:486.786667pt;}
.yd5{bottom:487.266667pt;}
.ya5{bottom:490.626667pt;}
.y17b{bottom:491.746667pt;}
.y134{bottom:494.626667pt;}
.y107{bottom:501.346667pt;}
.y71{bottom:502.626667pt;}
.yd4{bottom:503.106667pt;}
.ya4{bottom:506.466667pt;}
.y17a{bottom:507.586667pt;}
.y133{bottom:510.466667pt;}
.y106{bottom:517.186667pt;}
.y70{bottom:518.146667pt;}
.y157{bottom:518.466667pt;}
.yd3{bottom:518.946667pt;}
.ya3{bottom:522.306667pt;}
.y179{bottom:523.586667pt;}
.y132{bottom:526.306667pt;}
.y105{bottom:533.026667pt;}
.y6f{bottom:534.306667pt;}
.yd2{bottom:534.786667pt;}
.y178{bottom:539.426667pt;}
.ya2{bottom:546.306667pt;}
.yd1{bottom:546.466667pt;}
.y104{bottom:549.026667pt;}
.y6e{bottom:550.306667pt;}
.y131{bottom:551.586667pt;}
.ya1{bottom:562.146667pt;}
.y177{bottom:562.946667pt;}
.y103{bottom:564.866667pt;}
.y6d{bottom:566.146667pt;}
.ya0{bottom:577.986667pt;}
.yd0{bottom:578.786667pt;}
.y130{bottom:579.426667pt;}
.y102{bottom:580.706667pt;}
.y6c{bottom:581.986667pt;}
.y176{bottom:587.106667pt;}
.y9f{bottom:593.826667pt;}
.ycf{bottom:595.266667pt;}
.y101{bottom:596.546667pt;}
.y6b{bottom:597.826667pt;}
.y175{bottom:602.973333pt;}
.y9e{bottom:609.693333pt;}
.y12f{bottom:611.133333pt;}
.yce{bottom:611.933333pt;}
.y100{bottom:612.413333pt;}
.y6a{bottom:613.693333pt;}
.y174{bottom:618.813333pt;}
.y156{bottom:621.693333pt;}
.y9d{bottom:625.533333pt;}
.y12e{bottom:626.973333pt;}
.y69{bottom:629.533333pt;}
.y173{bottom:634.813333pt;}
.yff{bottom:636.573333pt;}
.y155{bottom:637.533333pt;}
.y9c{bottom:641.533333pt;}
.y12d{bottom:642.813333pt;}
.ycc{bottom:644.253333pt;}
.y68{bottom:645.533333pt;}
.y172{bottom:650.653333pt;}
.yfe{bottom:652.573333pt;}
.y154{bottom:653.533333pt;}
.y9b{bottom:657.373333pt;}
.y12c{bottom:658.813333pt;}
.yc7{bottom:660.893333pt;}
.y67{bottom:661.373333pt;}
.y171{bottom:666.493333pt;}
.yfd{bottom:668.573333pt;}
.y153{bottom:669.373333pt;}
.y66{bottom:677.213333pt;}
.y9a{bottom:681.213333pt;}
.y170{bottom:682.333333pt;}
.y12b{bottom:682.653333pt;}
.yfc{bottom:684.573333pt;}
.y152{bottom:685.213333pt;}
.y65{bottom:693.053333pt;}
.y99{bottom:697.053333pt;}
.y12a{bottom:698.493333pt;}
.yfb{bottom:700.573333pt;}
.y151{bottom:701.053333pt;}
.y16f{bottom:705.853333pt;}
.y64{bottom:708.893333pt;}
.y98{bottom:712.893333pt;}
.y129{bottom:714.333333pt;}
.yfa{bottom:716.573333pt;}
.y150{bottom:716.893333pt;}
.yc6{bottom:721.853333pt;}
.y63{bottom:724.893333pt;}
.y97{bottom:728.893333pt;}
.y128{bottom:730.173333pt;}
.yf9{bottom:732.573333pt;}
.y14f{bottom:732.893333pt;}
.y96{bottom:744.733333pt;}
.yc4{bottom:746.013333pt;}
.y127{bottom:746.173333pt;}
.yf8{bottom:748.573333pt;}
.y14e{bottom:748.733333pt;}
.y62{bottom:750.013333pt;}
.y95{bottom:760.573333pt;}
.yc3{bottom:761.853333pt;}
.yc5{bottom:762.013333pt;}
.yf7{bottom:764.413333pt;}
.y14d{bottom:764.573333pt;}
.y94{bottom:776.413333pt;}
.y16e{bottom:777.693333pt;}
.y61{bottom:777.853333pt;}
.yf6{bottom:780.413333pt;}
.yc2{bottom:785.373333pt;}
.y93{bottom:792.253333pt;}
.y16d{bottom:793.533333pt;}
.y60{bottom:793.693333pt;}
.yf5{bottom:796.413333pt;}
.y14c{bottom:805.533333pt;}
.y16c{bottom:809.373333pt;}
.y5f{bottom:809.573333pt;}
.y92{bottom:816.133333pt;}
.yf4{bottom:819.813333pt;}
.y5e{bottom:825.413333pt;}
.y126{bottom:833.413333pt;}
.y91{bottom:839.813333pt;}
.y16b{bottom:841.253333pt;}
.y5d{bottom:841.413333pt;}
.yf3{bottom:844.133333pt;}
.y10{bottom:848.613333pt;}
.y125{bottom:849.413333pt;}
.y5c{bottom:857.253333pt;}
.yf2{bottom:859.973333pt;}
.y90{bottom:864.293333pt;}
.y16a{bottom:864.773333pt;}
.y124{bottom:865.253333pt;}
.yf{bottom:867.173333pt;}
.y5b{bottom:873.093333pt;}
.yf1{bottom:875.813333pt;}
.y8f{bottom:880.133333pt;}
.y123{bottom:881.093333pt;}
.ye{bottom:888.293333pt;}
.y5a{bottom:888.933333pt;}
.yf0{bottom:891.653333pt;}
.y8e{bottom:896.133333pt;}
.y122{bottom:896.933333pt;}
.y59{bottom:904.773333pt;}
.yef{bottom:907.493333pt;}
.yd{bottom:912.133333pt;}
.y121{bottom:912.773333pt;}
.y58{bottom:920.773333pt;}
.yee{bottom:923.493333pt;}
.y8d{bottom:928.133333pt;}
.y120{bottom:928.773333pt;}
.yc{bottom:930.533333pt;}
.y57{bottom:936.613333pt;}
.yed{bottom:939.333333pt;}
.y8c{bottom:944.133333pt;}
.yc1{bottom:944.293333pt;}
.y14b{bottom:944.613333pt;}
.y56{bottom:952.453333pt;}
.y11f{bottom:952.613333pt;}
.yec{bottom:955.173333pt;}
.yb{bottom:957.093333pt;}
.y8b{bottom:960.133333pt;}
.y55{bottom:968.293333pt;}
.yc0{bottom:968.453333pt;}
.yeb{bottom:971.013333pt;}
.ya{bottom:981.733333pt;}
.y8a{bottom:983.813333pt;}
.y169{bottom:984.133333pt;}
.ybf{bottom:984.293333pt;}
.yea{bottom:986.853333pt;}
.y194{bottom:988.773333pt;}
.y5{bottom:989.280000pt;}
.y54{bottom:991.813333pt;}
.y168{bottom:999.973333pt;}
.ybe{bottom:1000.133333pt;}
.ye9{bottom:1002.693333pt;}
.y9{bottom:1006.533333pt;}
.y89{bottom:1007.333333pt;}
.y193{bottom:1007.653333pt;}
.y53{bottom:1015.973333pt;}
.ye8{bottom:1018.720000pt;}
.y167{bottom:1023.680000pt;}
.y88{bottom:1031.840000pt;}
.y52{bottom:1032.000000pt;}
.ye7{bottom:1034.560000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y51{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y7{bottom:1058.880000pt;}
.ye6{bottom:1059.680000pt;}
.y50{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y4d{bottom:1088.480000pt;}
.h1f{height:5.160000pt;}
.h19{height:15.826667pt;}
.h16{height:16.000000pt;}
.h18{height:16.026667pt;}
.hb{height:31.406250pt;}
.h1a{height:31.666667pt;}
.h17{height:31.680000pt;}
.hf{height:34.710938pt;}
.h13{height:36.305625pt;}
.h20{height:39.562500pt;}
.h1c{height:39.666667pt;}
.h1b{height:39.698667pt;}
.h1d{height:39.712000pt;}
.h1e{height:39.840000pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h15{height:47.520000pt;}
.he{height:48.375000pt;}
.h14{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h11{height:55.538667pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h12{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hd{height:413.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.wc{width:96.672000pt;}
.w6{width:119.990667pt;}
.w7{width:120.018667pt;}
.w8{width:120.032000pt;}
.wa{width:120.146667pt;}
.w9{width:120.178667pt;}
.w3{width:188.385333pt;}
.wb{width:220.977333pt;}
.wd{width:284.493333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1c{left:16.470667pt;}
.x1{left:48.000000pt;}
.x13{left:49.280000pt;}
.xb{left:58.080000pt;}
.x7{left:61.440000pt;}
.x6{left:70.720000pt;}
.x16{left:72.000000pt;}
.xa{left:73.920000pt;}
.x10{left:84.672000pt;}
.x17{left:96.032000pt;}
.xd{left:108.192000pt;}
.x20{left:193.306667pt;}
.x1d{left:216.040000pt;}
.x1b{left:221.146667pt;}
.x9{left:225.626667pt;}
.xf{left:250.946667pt;}
.x8{left:258.466667pt;}
.xc{left:308.546667pt;}
.x21{left:316.866667pt;}
.x1e{left:336.866667pt;}
.x15{left:390.946667pt;}
.x22{left:414.186667pt;}
.x11{left:420.893333pt;}
.x1a{left:430.493333pt;}
.x18{left:444.893333pt;}
.x12{left:457.533333pt;}
.x19{left:468.893333pt;}
.x1f{left:578.533333pt;}
.x14{left:594.213333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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