
    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_793cdbeea5c2ca51f692993a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3061403a17c6251cd5859e77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_6164a2129e56de8eda3b0ed6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061035;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_e34b6a40af4872db42c25799.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_18030aeeee4e4bc762062074.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_551e20929124e1fa74e88a67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_ac46d88b59309b6d0235fd48.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041016;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_3688a0d497c77fb9a6573925.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894043;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_4b878cccf67f9a4c925c03b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041016;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_7390cd9dd09a5d4953d2b6c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894043;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.696000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.900000px;}
.ls8{letter-spacing:8.064000px;}
.lsc{letter-spacing:9.360000px;}
.lsa{letter-spacing:240.480000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.ws7{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-5.146560px;}
._2{margin-left:-4.091520px;}
._1{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._3{width:1.264320px;}
._9{width:3.096000px;}
._a{width:4.392000px;}
._c{width:6.172320px;}
._b{width:7.272000px;}
._7{width:9.072000px;}
._8{width:10.080000px;}
._18{width:11.088000px;}
._4{width:12.096000px;}
._6{width:13.176000px;}
._10{width:14.256000px;}
._11{width:15.355680px;}
._17{width:16.704000px;}
._d{width:19.944000px;}
._5{width:21.528000px;}
._1a{width:22.567680px;}
._1b{width:23.760000px;}
._14{width:24.768000px;}
._15{width:26.136000px;}
._16{width:27.432000px;}
._e{width:29.088000px;}
._f{width:30.168000px;}
._1f{width:31.579680px;}
._19{width:33.336000px;}
._22{width:34.824000px;}
._23{width:36.000000px;}
._1e{width:37.224000px;}
._21{width:38.776320px;}
._20{width:39.816000px;}
._24{width:41.472000px;}
._26{width:43.776000px;}
._25{width:44.928000px;}
._27{width:46.800000px;}
._13{width:48.096000px;}
._1c{width:50.400000px;}
._1d{width:51.408000px;}
._2b{width:78.984000px;}
._2c{width:80.568000px;}
._32{width:93.672000px;}
._33{width:94.968000px;}
._35{width:96.379680px;}
._36{width:108.864000px;}
._37{width:110.211360px;}
._2d{width:148.824000px;}
._2e{width:150.408000px;}
._28{width:156.024000px;}
._29{width:157.608000px;}
._2f{width:166.968000px;}
._34{width:241.240320px;}
._38{width:247.464000px;}
._39{width:248.544000px;}
._31{width:274.903680px;}
._30{width:472.296000px;}
._2a{width:2201.760000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.ya{bottom:-27.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.340000px;}
.y2{bottom:4.680000px;}
.y9{bottom:11.700000px;}
.y11{bottom:12.600000px;}
.y3{bottom:21.420000px;}
.y1{bottom:23.760000px;}
.y6{bottom:24.840000px;}
.y8{bottom:45.900000px;}
.yf{bottom:57.420000px;}
.ye{bottom:77.580000px;}
.yd{bottom:93.420000px;}
.y6d{bottom:110.160000px;}
.y99{bottom:112.860000px;}
.y155{bottom:114.660000px;}
.ye8{bottom:115.560000px;}
.y3c{bottom:117.360000px;}
.y113{bottom:118.260000px;}
.yac{bottom:121.860000px;}
.y171{bottom:123.660000px;}
.y130{bottom:124.560000px;}
.yca{bottom:127.260000px;}
.y6c{bottom:130.860000px;}
.y98{bottom:133.560000px;}
.y154{bottom:135.360000px;}
.ye7{bottom:136.260000px;}
.y3b{bottom:138.060000px;}
.y112{bottom:138.960000px;}
.yab{bottom:142.560000px;}
.y170{bottom:144.360000px;}
.y12f{bottom:145.260000px;}
.y18d{bottom:147.060000px;}
.y6b{bottom:151.560000px;}
.y97{bottom:154.260000px;}
.y153{bottom:156.060000px;}
.yc9{bottom:156.960000px;}
.y3a{bottom:158.760000px;}
.y111{bottom:159.660000px;}
.yaa{bottom:163.260000px;}
.y16f{bottom:165.060000px;}
.y18c{bottom:167.760000px;}
.y12e{bottom:168.660000px;}
.y6a{bottom:172.260000px;}
.y17e{bottom:174.060000px;}
.y96{bottom:174.960000px;}
.yc8{bottom:177.660000px;}
.y39{bottom:179.460000px;}
.y110{bottom:180.360000px;}
.y127{bottom:181.260000px;}
.ya9{bottom:183.960000px;}
.y152{bottom:185.760000px;}
.y12d{bottom:189.360000px;}
.y16e{bottom:194.760000px;}
.y95{bottom:195.660000px;}
.y18b{bottom:197.490000px;}
.yc7{bottom:198.390000px;}
.y38{bottom:200.190000px;}
.y10f{bottom:201.090000px;}
.y69{bottom:201.990000px;}
.ya8{bottom:204.690000px;}
.y151{bottom:206.490000px;}
.y12c{bottom:210.090000px;}
.y16d{bottom:215.490000px;}
.y94{bottom:216.390000px;}
.y18a{bottom:218.190000px;}
.yc6{bottom:219.090000px;}
.y37{bottom:220.890000px;}
.y10e{bottom:221.790000px;}
.y68{bottom:222.690000px;}
.ya7{bottom:225.390000px;}
.y150{bottom:227.190000px;}
.y12b{bottom:230.790000px;}
.y93{bottom:237.090000px;}
.yc5{bottom:239.790000px;}
.y67{bottom:243.390000px;}
.y16c{bottom:245.190000px;}
.ya6{bottom:246.090000px;}
.y14f{bottom:247.890000px;}
.y133{bottom:248.790000px;}
.y36{bottom:250.590000px;}
.y10d{bottom:251.490000px;}
.yc4{bottom:260.490000px;}
.y66{bottom:264.090000px;}
.y16b{bottom:265.890000px;}
.y92{bottom:266.790000px;}
.y14e{bottom:268.590000px;}
.y132{bottom:269.490000px;}
.y10c{bottom:272.190000px;}
.y35{bottom:280.290000px;}
.yc3{bottom:281.190000px;}
.y65{bottom:284.790000px;}
.y16a{bottom:286.590000px;}
.y91{bottom:287.490000px;}
.y189{bottom:289.290000px;}
.ye6{bottom:290.190000px;}
.y10b{bottom:292.890000px;}
.y17d{bottom:295.590000px;}
.ya5{bottom:296.490000px;}
.y14d{bottom:298.290000px;}
.yc2{bottom:301.890000px;}
.y64{bottom:305.490000px;}
.y169{bottom:307.290000px;}
.y90{bottom:308.190000px;}
.y34{bottom:309.990000px;}
.ye5{bottom:310.890000px;}
.y10a{bottom:313.590000px;}
.y17c{bottom:316.290000px;}
.ya4{bottom:317.190000px;}
.y14c{bottom:318.990000px;}
.y131{bottom:319.890000px;}
.yc1{bottom:322.590000px;}
.y63{bottom:326.190000px;}
.y8f{bottom:328.890000px;}
.y188{bottom:330.690000px;}
.ye4{bottom:331.590000px;}
.y109{bottom:334.290000px;}
.y168{bottom:336.990000px;}
.ya3{bottom:337.890000px;}
.y33{bottom:339.690000px;}
.yc0{bottom:343.290000px;}
.y17b{bottom:345.990000px;}
.y62{bottom:346.890000px;}
.y8e{bottom:349.590000px;}
.ye3{bottom:352.290000px;}
.y108{bottom:354.990000px;}
.y167{bottom:357.690000px;}
.ya2{bottom:358.590000px;}
.y32{bottom:360.390000px;}
.y17a{bottom:366.690000px;}
.yee{bottom:367.590000px;}
.y14b{bottom:369.390000px;}
.y8d{bottom:370.290000px;}
.ybf{bottom:372.990000px;}
.y107{bottom:375.690000px;}
.y61{bottom:376.590000px;}
.y166{bottom:378.390000px;}
.ya1{bottom:379.290000px;}
.y31{bottom:381.090000px;}
.yf5{bottom:381.990000px;}
.y179{bottom:387.390000px;}
.yed{bottom:388.290000px;}
.y14a{bottom:390.090000px;}
.y8c{bottom:390.990000px;}
.ye2{bottom:393.690000px;}
.y106{bottom:396.390000px;}
.ya0{bottom:399.990000px;}
.y30{bottom:401.790000px;}
.ybe{bottom:402.690000px;}
.y60{bottom:406.290000px;}
.y165{bottom:408.090000px;}
.yec{bottom:408.990000px;}
.y187{bottom:410.790000px;}
.y8b{bottom:411.690000px;}
.ye1{bottom:414.390000px;}
.y105{bottom:417.090000px;}
.y149{bottom:419.790000px;}
.y9f{bottom:420.690000px;}
.y2f{bottom:422.490000px;}
.ybd{bottom:423.390000px;}
.y5f{bottom:426.990000px;}
.y164{bottom:428.790000px;}
.yeb{bottom:429.690000px;}
.y117{bottom:432.390000px;}
.y12a{bottom:435.090000px;}
.y104{bottom:437.835000px;}
.y148{bottom:440.535000px;}
.y8a{bottom:441.435000px;}
.y2e{bottom:443.235000px;}
.ybc{bottom:444.135000px;}
.y5e{bottom:447.735000px;}
.y163{bottom:449.535000px;}
.yd3{bottom:450.435000px;}
.y116{bottom:453.135000px;}
.y129{bottom:455.835000px;}
.y178{bottom:458.535000px;}
.y147{bottom:461.235000px;}
.y89{bottom:462.135000px;}
.y2d{bottom:463.935000px;}
.ybb{bottom:464.835000px;}
.y103{bottom:467.535000px;}
.y5d{bottom:468.435000px;}
.y162{bottom:470.235000px;}
.yd2{bottom:471.135000px;}
.ye0{bottom:473.835000px;}
.y128{bottom:476.535000px;}
.y88{bottom:482.835000px;}
.y2c{bottom:484.635000px;}
.yba{bottom:485.535000px;}
.y177{bottom:488.235000px;}
.y5c{bottom:489.135000px;}
.y146{bottom:490.935000px;}
.yd1{bottom:491.835000px;}
.ydf{bottom:494.535000px;}
.y102{bottom:497.235000px;}
.y126{bottom:500.835000px;}
.y87{bottom:503.535000px;}
.y2b{bottom:505.335000px;}
.yf4{bottom:506.235000px;}
.y176{bottom:508.935000px;}
.y5b{bottom:509.835000px;}
.y145{bottom:511.635000px;}
.yd0{bottom:512.535000px;}
.yb9{bottom:515.235000px;}
.y101{bottom:517.935000px;}
.y161{bottom:520.635000px;}
.y125{bottom:521.535000px;}
.y86{bottom:524.235000px;}
.y2a{bottom:526.035000px;}
.yf3{bottom:526.935000px;}
.y175{bottom:529.635000px;}
.y5a{bottom:530.535000px;}
.y144{bottom:532.335000px;}
.y9e{bottom:533.235000px;}
.yb8{bottom:535.935000px;}
.y100{bottom:538.635000px;}
.y124{bottom:542.235000px;}
.y85{bottom:544.935000px;}
.y29{bottom:546.735000px;}
.yf2{bottom:547.635000px;}
.y160{bottom:550.335000px;}
.y59{bottom:551.235000px;}
.y9d{bottom:553.935000px;}
.yb7{bottom:556.635000px;}
.yff{bottom:559.335000px;}
.y143{bottom:562.035000px;}
.y123{bottom:562.935000px;}
.y84{bottom:565.635000px;}
.y28{bottom:567.435000px;}
.y15f{bottom:571.035000px;}
.y58{bottom:571.935000px;}
.y9c{bottom:574.635000px;}
.yb6{bottom:577.335000px;}
.y174{bottom:580.035000px;}
.y142{bottom:582.735000px;}
.y122{bottom:583.635000px;}
.y115{bottom:586.335000px;}
.y27{bottom:588.135000px;}
.yfe{bottom:589.035000px;}
.y15e{bottom:591.735000px;}
.y57{bottom:592.635000px;}
.y83{bottom:595.335000px;}
.yb5{bottom:598.035000px;}
.y173{bottom:600.735000px;}
.y141{bottom:603.435000px;}
.y121{bottom:604.335000px;}
.yf1{bottom:607.035000px;}
.y26{bottom:608.835000px;}
.yfd{bottom:609.735000px;}
.y56{bottom:613.335000px;}
.y82{bottom:616.035000px;}
.y10{bottom:617.475000px;}
.yb4{bottom:618.735000px;}
.y15d{bottom:621.435000px;}
.y120{bottom:625.035000px;}
.yf0{bottom:627.735000px;}
.y25{bottom:629.535000px;}
.yfc{bottom:630.435000px;}
.y140{bottom:633.135000px;}
.y55{bottom:634.035000px;}
.y81{bottom:636.735000px;}
.yde{bottom:639.435000px;}
.y15c{bottom:642.135000px;}
.y11f{bottom:645.735000px;}
.yb3{bottom:648.435000px;}
.y24{bottom:650.235000px;}
.yfb{bottom:651.135000px;}
.y13f{bottom:653.835000px;}
.y80{bottom:657.435000px;}
.ydd{bottom:660.135000px;}
.y15b{bottom:662.835000px;}
.y54{bottom:663.735000px;}
.y11e{bottom:666.435000px;}
.yef{bottom:669.135000px;}
.y23{bottom:670.935000px;}
.y172{bottom:671.835000px;}
.y186{bottom:674.565000px;}
.y7f{bottom:678.165000px;}
.yfa{bottom:680.865000px;}
.y13e{bottom:683.565000px;}
.y53{bottom:684.465000px;}
.ydc{bottom:689.865000px;}
.y15a{bottom:692.565000px;}
.y11d{bottom:696.165000px;}
.y7e{bottom:698.865000px;}
.y22{bottom:700.665000px;}
.yf9{bottom:701.565000px;}
.y185{bottom:704.265000px;}
.y52{bottom:705.165000px;}
.yea{bottom:707.865000px;}
.y114{bottom:710.565000px;}
.y13d{bottom:713.265000px;}
.y11c{bottom:716.865000px;}
.y7d{bottom:719.565000px;}
.yf8{bottom:722.265000px;}
.y184{bottom:724.965000px;}
.y51{bottom:725.865000px;}
.ye9{bottom:728.565000px;}
.y21{bottom:737.205000px;}
.y11b{bottom:737.565000px;}
.yb2{bottom:740.265000px;}
.y13c{bottom:742.965000px;}
.y50{bottom:746.565000px;}
.y7c{bottom:749.265000px;}
.yf7{bottom:751.965000px;}
.y183{bottom:754.665000px;}
.y11a{bottom:758.265000px;}
.y20{bottom:760.065000px;}
.yb1{bottom:760.965000px;}
.y13b{bottom:763.665000px;}
.y4f{bottom:767.265000px;}
.y7b{bottom:769.965000px;}
.yf6{bottom:772.665000px;}
.y182{bottom:775.365000px;}
.y119{bottom:778.965000px;}
.yb0{bottom:781.665000px;}
.y13a{bottom:784.365000px;}
.y1f{bottom:787.605000px;}
.y4e{bottom:787.965000px;}
.y7a{bottom:790.665000px;}
.y159{bottom:793.365000px;}
.y118{bottom:799.665000px;}
.yaf{bottom:802.365000px;}
.y139{bottom:805.065000px;}
.y4d{bottom:808.665000px;}
.y1e{bottom:810.465000px;}
.y79{bottom:811.365000px;}
.y158{bottom:814.065000px;}
.ycf{bottom:820.365000px;}
.yae{bottom:823.065000px;}
.y138{bottom:825.765000px;}
.y4c{bottom:829.365000px;}
.y78{bottom:832.065000px;}
.y157{bottom:834.765000px;}
.y1d{bottom:838.005000px;}
.yce{bottom:841.065000px;}
.ydb{bottom:843.765000px;}
.y181{bottom:846.465000px;}
.y4b{bottom:850.065000px;}
.y77{bottom:852.765000px;}
.y137{bottom:855.465000px;}
.y1c{bottom:860.865000px;}
.ycd{bottom:861.765000px;}
.yda{bottom:864.465000px;}
.y4a{bottom:870.765000px;}
.y76{bottom:873.465000px;}
.y136{bottom:876.165000px;}
.y9b{bottom:882.465000px;}
.y156{bottom:885.165000px;}
.y1b{bottom:888.405000px;}
.y49{bottom:891.465000px;}
.y75{bottom:894.165000px;}
.y180{bottom:896.865000px;}
.y9a{bottom:903.165000px;}
.y135{bottom:905.865000px;}
.y1a{bottom:911.265000px;}
.y48{bottom:912.165000px;}
.yd9{bottom:914.910000px;}
.y74{bottom:923.910000px;}
.y134{bottom:926.610000px;}
.y47{bottom:932.910000px;}
.yd8{bottom:935.610000px;}
.y19{bottom:938.850000px;}
.y73{bottom:944.610000px;}
.y17f{bottom:947.310000px;}
.y46{bottom:953.610000px;}
.yd7{bottom:956.310000px;}
.y18{bottom:961.710000px;}
.y72{bottom:965.310000px;}
.y45{bottom:974.310000px;}
.yd6{bottom:977.010000px;}
.y71{bottom:986.010000px;}
.y17{bottom:991.410000px;}
.y44{bottom:995.010000px;}
.yd5{bottom:997.710000px;}
.y70{bottom:1006.710000px;}
.y18f{bottom:1009.410000px;}
.y43{bottom:1015.710000px;}
.yd4{bottom:1018.410000px;}
.y16{bottom:1021.110000px;}
.y6f{bottom:1027.410000px;}
.y42{bottom:1036.410000px;}
.y18e{bottom:1039.110000px;}
.y15{bottom:1041.810000px;}
.y6e{bottom:1048.110000px;}
.y41{bottom:1057.110000px;}
.yad{bottom:1068.810000px;}
.y14{bottom:1071.510000px;}
.y40{bottom:1077.810000px;}
.ycc{bottom:1089.510000px;}
.y3f{bottom:1098.510000px;}
.y13{bottom:1101.210000px;}
.ycb{bottom:1110.210000px;}
.y3e{bottom:1119.210000px;}
.y12{bottom:1130.910000px;}
.y3d{bottom:1139.910000px;}
.yc{bottom:1193.220000px;}
.y7{bottom:1200.960000px;}
.y5{bottom:1205.280000px;}
.yb{bottom:1208.880000px;}
.h4{height:15.660000px;}
.h2{height:18.000000px;}
.h9{height:28.260000px;}
.h5{height:39.600000px;}
.hd{height:40.254961px;}
.h8{height:49.868086px;}
.he{height:59.343750px;}
.hb{height:60.082031px;}
.h7{height:60.660000px;}
.ha{height:61.734375px;}
.hc{height:65.122031px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w6{width:88.236000px;}
.w2{width:165.810000px;}
.w3{width:184.530000px;}
.w4{width:189.390000px;}
.w5{width:397.515000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xb{left:10.800000px;}
.x8{left:21.780000px;}
.x6{left:39.600000px;}
.x3{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x10{left:113.075987px;}
.x13{left:114.515987px;}
.x11{left:116.315987px;}
.x15{left:122.795987px;}
.x17{left:127.475987px;}
.xd{left:153.749987px;}
.x19{left:160.229987px;}
.x18{left:172.829987px;}
.x5{left:208.290000px;}
.x14{left:251.309987px;}
.xe{left:253.649987px;}
.x16{left:269.129987px;}
.x12{left:304.454987px;}
.x4{left:364.575000px;}
.xf{left:446.474987px;}
.x1{left:694.950000px;}
.x7{left:767.850000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.618667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls8{letter-spacing:7.168000pt;}
.lsc{letter-spacing:8.320000pt;}
.lsa{letter-spacing:213.760000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-4.574720pt;}
._2{margin-left:-3.636907pt;}
._1{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.123840pt;}
._9{width:2.752000pt;}
._a{width:3.904000pt;}
._c{width:5.486507pt;}
._b{width:6.464000pt;}
._7{width:8.064000pt;}
._8{width:8.960000pt;}
._18{width:9.856000pt;}
._4{width:10.752000pt;}
._6{width:11.712000pt;}
._10{width:12.672000pt;}
._11{width:13.649493pt;}
._17{width:14.848000pt;}
._d{width:17.728000pt;}
._5{width:19.136000pt;}
._1a{width:20.060160pt;}
._1b{width:21.120000pt;}
._14{width:22.016000pt;}
._15{width:23.232000pt;}
._16{width:24.384000pt;}
._e{width:25.856000pt;}
._f{width:26.816000pt;}
._1f{width:28.070827pt;}
._19{width:29.632000pt;}
._22{width:30.954667pt;}
._23{width:32.000000pt;}
._1e{width:33.088000pt;}
._21{width:34.467840pt;}
._20{width:35.392000pt;}
._24{width:36.864000pt;}
._26{width:38.912000pt;}
._25{width:39.936000pt;}
._27{width:41.600000pt;}
._13{width:42.752000pt;}
._1c{width:44.800000pt;}
._1d{width:45.696000pt;}
._2b{width:70.208000pt;}
._2c{width:71.616000pt;}
._32{width:83.264000pt;}
._33{width:84.416000pt;}
._35{width:85.670827pt;}
._36{width:96.768000pt;}
._37{width:97.965653pt;}
._2d{width:132.288000pt;}
._2e{width:133.696000pt;}
._28{width:138.688000pt;}
._29{width:140.096000pt;}
._2f{width:148.416000pt;}
._34{width:214.435840pt;}
._38{width:219.968000pt;}
._39{width:220.928000pt;}
._31{width:244.358827pt;}
._30{width:419.818667pt;}
._2a{width:1957.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.ya{bottom:-24.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.080000pt;}
.y2{bottom:4.160000pt;}
.y9{bottom:10.400000pt;}
.y11{bottom:11.200000pt;}
.y3{bottom:19.040000pt;}
.y1{bottom:21.120000pt;}
.y6{bottom:22.080000pt;}
.y8{bottom:40.800000pt;}
.yf{bottom:51.040000pt;}
.ye{bottom:68.960000pt;}
.yd{bottom:83.040000pt;}
.y6d{bottom:97.920000pt;}
.y99{bottom:100.320000pt;}
.y155{bottom:101.920000pt;}
.ye8{bottom:102.720000pt;}
.y3c{bottom:104.320000pt;}
.y113{bottom:105.120000pt;}
.yac{bottom:108.320000pt;}
.y171{bottom:109.920000pt;}
.y130{bottom:110.720000pt;}
.yca{bottom:113.120000pt;}
.y6c{bottom:116.320000pt;}
.y98{bottom:118.720000pt;}
.y154{bottom:120.320000pt;}
.ye7{bottom:121.120000pt;}
.y3b{bottom:122.720000pt;}
.y112{bottom:123.520000pt;}
.yab{bottom:126.720000pt;}
.y170{bottom:128.320000pt;}
.y12f{bottom:129.120000pt;}
.y18d{bottom:130.720000pt;}
.y6b{bottom:134.720000pt;}
.y97{bottom:137.120000pt;}
.y153{bottom:138.720000pt;}
.yc9{bottom:139.520000pt;}
.y3a{bottom:141.120000pt;}
.y111{bottom:141.920000pt;}
.yaa{bottom:145.120000pt;}
.y16f{bottom:146.720000pt;}
.y18c{bottom:149.120000pt;}
.y12e{bottom:149.920000pt;}
.y6a{bottom:153.120000pt;}
.y17e{bottom:154.720000pt;}
.y96{bottom:155.520000pt;}
.yc8{bottom:157.920000pt;}
.y39{bottom:159.520000pt;}
.y110{bottom:160.320000pt;}
.y127{bottom:161.120000pt;}
.ya9{bottom:163.520000pt;}
.y152{bottom:165.120000pt;}
.y12d{bottom:168.320000pt;}
.y16e{bottom:173.120000pt;}
.y95{bottom:173.920000pt;}
.y18b{bottom:175.546667pt;}
.yc7{bottom:176.346667pt;}
.y38{bottom:177.946667pt;}
.y10f{bottom:178.746667pt;}
.y69{bottom:179.546667pt;}
.ya8{bottom:181.946667pt;}
.y151{bottom:183.546667pt;}
.y12c{bottom:186.746667pt;}
.y16d{bottom:191.546667pt;}
.y94{bottom:192.346667pt;}
.y18a{bottom:193.946667pt;}
.yc6{bottom:194.746667pt;}
.y37{bottom:196.346667pt;}
.y10e{bottom:197.146667pt;}
.y68{bottom:197.946667pt;}
.ya7{bottom:200.346667pt;}
.y150{bottom:201.946667pt;}
.y12b{bottom:205.146667pt;}
.y93{bottom:210.746667pt;}
.yc5{bottom:213.146667pt;}
.y67{bottom:216.346667pt;}
.y16c{bottom:217.946667pt;}
.ya6{bottom:218.746667pt;}
.y14f{bottom:220.346667pt;}
.y133{bottom:221.146667pt;}
.y36{bottom:222.746667pt;}
.y10d{bottom:223.546667pt;}
.yc4{bottom:231.546667pt;}
.y66{bottom:234.746667pt;}
.y16b{bottom:236.346667pt;}
.y92{bottom:237.146667pt;}
.y14e{bottom:238.746667pt;}
.y132{bottom:239.546667pt;}
.y10c{bottom:241.946667pt;}
.y35{bottom:249.146667pt;}
.yc3{bottom:249.946667pt;}
.y65{bottom:253.146667pt;}
.y16a{bottom:254.746667pt;}
.y91{bottom:255.546667pt;}
.y189{bottom:257.146667pt;}
.ye6{bottom:257.946667pt;}
.y10b{bottom:260.346667pt;}
.y17d{bottom:262.746667pt;}
.ya5{bottom:263.546667pt;}
.y14d{bottom:265.146667pt;}
.yc2{bottom:268.346667pt;}
.y64{bottom:271.546667pt;}
.y169{bottom:273.146667pt;}
.y90{bottom:273.946667pt;}
.y34{bottom:275.546667pt;}
.ye5{bottom:276.346667pt;}
.y10a{bottom:278.746667pt;}
.y17c{bottom:281.146667pt;}
.ya4{bottom:281.946667pt;}
.y14c{bottom:283.546667pt;}
.y131{bottom:284.346667pt;}
.yc1{bottom:286.746667pt;}
.y63{bottom:289.946667pt;}
.y8f{bottom:292.346667pt;}
.y188{bottom:293.946667pt;}
.ye4{bottom:294.746667pt;}
.y109{bottom:297.146667pt;}
.y168{bottom:299.546667pt;}
.ya3{bottom:300.346667pt;}
.y33{bottom:301.946667pt;}
.yc0{bottom:305.146667pt;}
.y17b{bottom:307.546667pt;}
.y62{bottom:308.346667pt;}
.y8e{bottom:310.746667pt;}
.ye3{bottom:313.146667pt;}
.y108{bottom:315.546667pt;}
.y167{bottom:317.946667pt;}
.ya2{bottom:318.746667pt;}
.y32{bottom:320.346667pt;}
.y17a{bottom:325.946667pt;}
.yee{bottom:326.746667pt;}
.y14b{bottom:328.346667pt;}
.y8d{bottom:329.146667pt;}
.ybf{bottom:331.546667pt;}
.y107{bottom:333.946667pt;}
.y61{bottom:334.746667pt;}
.y166{bottom:336.346667pt;}
.ya1{bottom:337.146667pt;}
.y31{bottom:338.746667pt;}
.yf5{bottom:339.546667pt;}
.y179{bottom:344.346667pt;}
.yed{bottom:345.146667pt;}
.y14a{bottom:346.746667pt;}
.y8c{bottom:347.546667pt;}
.ye2{bottom:349.946667pt;}
.y106{bottom:352.346667pt;}
.ya0{bottom:355.546667pt;}
.y30{bottom:357.146667pt;}
.ybe{bottom:357.946667pt;}
.y60{bottom:361.146667pt;}
.y165{bottom:362.746667pt;}
.yec{bottom:363.546667pt;}
.y187{bottom:365.146667pt;}
.y8b{bottom:365.946667pt;}
.ye1{bottom:368.346667pt;}
.y105{bottom:370.746667pt;}
.y149{bottom:373.146667pt;}
.y9f{bottom:373.946667pt;}
.y2f{bottom:375.546667pt;}
.ybd{bottom:376.346667pt;}
.y5f{bottom:379.546667pt;}
.y164{bottom:381.146667pt;}
.yeb{bottom:381.946667pt;}
.y117{bottom:384.346667pt;}
.y12a{bottom:386.746667pt;}
.y104{bottom:389.186667pt;}
.y148{bottom:391.586667pt;}
.y8a{bottom:392.386667pt;}
.y2e{bottom:393.986667pt;}
.ybc{bottom:394.786667pt;}
.y5e{bottom:397.986667pt;}
.y163{bottom:399.586667pt;}
.yd3{bottom:400.386667pt;}
.y116{bottom:402.786667pt;}
.y129{bottom:405.186667pt;}
.y178{bottom:407.586667pt;}
.y147{bottom:409.986667pt;}
.y89{bottom:410.786667pt;}
.y2d{bottom:412.386667pt;}
.ybb{bottom:413.186667pt;}
.y103{bottom:415.586667pt;}
.y5d{bottom:416.386667pt;}
.y162{bottom:417.986667pt;}
.yd2{bottom:418.786667pt;}
.ye0{bottom:421.186667pt;}
.y128{bottom:423.586667pt;}
.y88{bottom:429.186667pt;}
.y2c{bottom:430.786667pt;}
.yba{bottom:431.586667pt;}
.y177{bottom:433.986667pt;}
.y5c{bottom:434.786667pt;}
.y146{bottom:436.386667pt;}
.yd1{bottom:437.186667pt;}
.ydf{bottom:439.586667pt;}
.y102{bottom:441.986667pt;}
.y126{bottom:445.186667pt;}
.y87{bottom:447.586667pt;}
.y2b{bottom:449.186667pt;}
.yf4{bottom:449.986667pt;}
.y176{bottom:452.386667pt;}
.y5b{bottom:453.186667pt;}
.y145{bottom:454.786667pt;}
.yd0{bottom:455.586667pt;}
.yb9{bottom:457.986667pt;}
.y101{bottom:460.386667pt;}
.y161{bottom:462.786667pt;}
.y125{bottom:463.586667pt;}
.y86{bottom:465.986667pt;}
.y2a{bottom:467.586667pt;}
.yf3{bottom:468.386667pt;}
.y175{bottom:470.786667pt;}
.y5a{bottom:471.586667pt;}
.y144{bottom:473.186667pt;}
.y9e{bottom:473.986667pt;}
.yb8{bottom:476.386667pt;}
.y100{bottom:478.786667pt;}
.y124{bottom:481.986667pt;}
.y85{bottom:484.386667pt;}
.y29{bottom:485.986667pt;}
.yf2{bottom:486.786667pt;}
.y160{bottom:489.186667pt;}
.y59{bottom:489.986667pt;}
.y9d{bottom:492.386667pt;}
.yb7{bottom:494.786667pt;}
.yff{bottom:497.186667pt;}
.y143{bottom:499.586667pt;}
.y123{bottom:500.386667pt;}
.y84{bottom:502.786667pt;}
.y28{bottom:504.386667pt;}
.y15f{bottom:507.586667pt;}
.y58{bottom:508.386667pt;}
.y9c{bottom:510.786667pt;}
.yb6{bottom:513.186667pt;}
.y174{bottom:515.586667pt;}
.y142{bottom:517.986667pt;}
.y122{bottom:518.786667pt;}
.y115{bottom:521.186667pt;}
.y27{bottom:522.786667pt;}
.yfe{bottom:523.586667pt;}
.y15e{bottom:525.986667pt;}
.y57{bottom:526.786667pt;}
.y83{bottom:529.186667pt;}
.yb5{bottom:531.586667pt;}
.y173{bottom:533.986667pt;}
.y141{bottom:536.386667pt;}
.y121{bottom:537.186667pt;}
.yf1{bottom:539.586667pt;}
.y26{bottom:541.186667pt;}
.yfd{bottom:541.986667pt;}
.y56{bottom:545.186667pt;}
.y82{bottom:547.586667pt;}
.y10{bottom:548.866667pt;}
.yb4{bottom:549.986667pt;}
.y15d{bottom:552.386667pt;}
.y120{bottom:555.586667pt;}
.yf0{bottom:557.986667pt;}
.y25{bottom:559.586667pt;}
.yfc{bottom:560.386667pt;}
.y140{bottom:562.786667pt;}
.y55{bottom:563.586667pt;}
.y81{bottom:565.986667pt;}
.yde{bottom:568.386667pt;}
.y15c{bottom:570.786667pt;}
.y11f{bottom:573.986667pt;}
.yb3{bottom:576.386667pt;}
.y24{bottom:577.986667pt;}
.yfb{bottom:578.786667pt;}
.y13f{bottom:581.186667pt;}
.y80{bottom:584.386667pt;}
.ydd{bottom:586.786667pt;}
.y15b{bottom:589.186667pt;}
.y54{bottom:589.986667pt;}
.y11e{bottom:592.386667pt;}
.yef{bottom:594.786667pt;}
.y23{bottom:596.386667pt;}
.y172{bottom:597.186667pt;}
.y186{bottom:599.613333pt;}
.y7f{bottom:602.813333pt;}
.yfa{bottom:605.213333pt;}
.y13e{bottom:607.613333pt;}
.y53{bottom:608.413333pt;}
.ydc{bottom:613.213333pt;}
.y15a{bottom:615.613333pt;}
.y11d{bottom:618.813333pt;}
.y7e{bottom:621.213333pt;}
.y22{bottom:622.813333pt;}
.yf9{bottom:623.613333pt;}
.y185{bottom:626.013333pt;}
.y52{bottom:626.813333pt;}
.yea{bottom:629.213333pt;}
.y114{bottom:631.613333pt;}
.y13d{bottom:634.013333pt;}
.y11c{bottom:637.213333pt;}
.y7d{bottom:639.613333pt;}
.yf8{bottom:642.013333pt;}
.y184{bottom:644.413333pt;}
.y51{bottom:645.213333pt;}
.ye9{bottom:647.613333pt;}
.y21{bottom:655.293333pt;}
.y11b{bottom:655.613333pt;}
.yb2{bottom:658.013333pt;}
.y13c{bottom:660.413333pt;}
.y50{bottom:663.613333pt;}
.y7c{bottom:666.013333pt;}
.yf7{bottom:668.413333pt;}
.y183{bottom:670.813333pt;}
.y11a{bottom:674.013333pt;}
.y20{bottom:675.613333pt;}
.yb1{bottom:676.413333pt;}
.y13b{bottom:678.813333pt;}
.y4f{bottom:682.013333pt;}
.y7b{bottom:684.413333pt;}
.yf6{bottom:686.813333pt;}
.y182{bottom:689.213333pt;}
.y119{bottom:692.413333pt;}
.yb0{bottom:694.813333pt;}
.y13a{bottom:697.213333pt;}
.y1f{bottom:700.093333pt;}
.y4e{bottom:700.413333pt;}
.y7a{bottom:702.813333pt;}
.y159{bottom:705.213333pt;}
.y118{bottom:710.813333pt;}
.yaf{bottom:713.213333pt;}
.y139{bottom:715.613333pt;}
.y4d{bottom:718.813333pt;}
.y1e{bottom:720.413333pt;}
.y79{bottom:721.213333pt;}
.y158{bottom:723.613333pt;}
.ycf{bottom:729.213333pt;}
.yae{bottom:731.613333pt;}
.y138{bottom:734.013333pt;}
.y4c{bottom:737.213333pt;}
.y78{bottom:739.613333pt;}
.y157{bottom:742.013333pt;}
.y1d{bottom:744.893333pt;}
.yce{bottom:747.613333pt;}
.ydb{bottom:750.013333pt;}
.y181{bottom:752.413333pt;}
.y4b{bottom:755.613333pt;}
.y77{bottom:758.013333pt;}
.y137{bottom:760.413333pt;}
.y1c{bottom:765.213333pt;}
.ycd{bottom:766.013333pt;}
.yda{bottom:768.413333pt;}
.y4a{bottom:774.013333pt;}
.y76{bottom:776.413333pt;}
.y136{bottom:778.813333pt;}
.y9b{bottom:784.413333pt;}
.y156{bottom:786.813333pt;}
.y1b{bottom:789.693333pt;}
.y49{bottom:792.413333pt;}
.y75{bottom:794.813333pt;}
.y180{bottom:797.213333pt;}
.y9a{bottom:802.813333pt;}
.y135{bottom:805.213333pt;}
.y1a{bottom:810.013333pt;}
.y48{bottom:810.813333pt;}
.yd9{bottom:813.253333pt;}
.y74{bottom:821.253333pt;}
.y134{bottom:823.653333pt;}
.y47{bottom:829.253333pt;}
.yd8{bottom:831.653333pt;}
.y19{bottom:834.533333pt;}
.y73{bottom:839.653333pt;}
.y17f{bottom:842.053333pt;}
.y46{bottom:847.653333pt;}
.yd7{bottom:850.053333pt;}
.y18{bottom:854.853333pt;}
.y72{bottom:858.053333pt;}
.y45{bottom:866.053333pt;}
.yd6{bottom:868.453333pt;}
.y71{bottom:876.453333pt;}
.y17{bottom:881.253333pt;}
.y44{bottom:884.453333pt;}
.yd5{bottom:886.853333pt;}
.y70{bottom:894.853333pt;}
.y18f{bottom:897.253333pt;}
.y43{bottom:902.853333pt;}
.yd4{bottom:905.253333pt;}
.y16{bottom:907.653333pt;}
.y6f{bottom:913.253333pt;}
.y42{bottom:921.253333pt;}
.y18e{bottom:923.653333pt;}
.y15{bottom:926.053333pt;}
.y6e{bottom:931.653333pt;}
.y41{bottom:939.653333pt;}
.yad{bottom:950.053333pt;}
.y14{bottom:952.453333pt;}
.y40{bottom:958.053333pt;}
.ycc{bottom:968.453333pt;}
.y3f{bottom:976.453333pt;}
.y13{bottom:978.853333pt;}
.ycb{bottom:986.853333pt;}
.y3e{bottom:994.853333pt;}
.y12{bottom:1005.253333pt;}
.y3d{bottom:1013.253333pt;}
.yc{bottom:1060.640000pt;}
.y7{bottom:1067.520000pt;}
.y5{bottom:1071.360000pt;}
.yb{bottom:1074.560000pt;}
.h4{height:13.920000pt;}
.h2{height:16.000000pt;}
.h9{height:25.120000pt;}
.h5{height:35.200000pt;}
.hd{height:35.782187pt;}
.h8{height:44.327188pt;}
.he{height:52.750000pt;}
.hb{height:53.406250pt;}
.h7{height:53.920000pt;}
.ha{height:54.875000pt;}
.hc{height:57.886250pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w6{width:78.432000pt;}
.w2{width:147.386667pt;}
.w3{width:164.026667pt;}
.w4{width:168.346667pt;}
.w5{width:353.346667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xb{left:9.600000pt;}
.x8{left:19.360000pt;}
.x6{left:35.200000pt;}
.x3{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x10{left:100.511988pt;}
.x13{left:101.791988pt;}
.x11{left:103.391988pt;}
.x15{left:109.151988pt;}
.x17{left:113.311988pt;}
.xd{left:136.666655pt;}
.x19{left:142.426655pt;}
.x18{left:153.626655pt;}
.x5{left:185.146667pt;}
.x14{left:223.386655pt;}
.xe{left:225.466655pt;}
.x16{left:239.226655pt;}
.x12{left:270.626655pt;}
.x4{left:324.066667pt;}
.xf{left:396.866655pt;}
.x1{left:617.733333pt;}
.x7{left:682.533333pt;}
.xa{left:718.213333pt;}
}




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