
    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_14f84f209e91e4eb1498679a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_07f4b92c4a3c21ca1d66672a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_46c9862989ec03a923f08b0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060547;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_31828af9a036db652262f136.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_536df8458708f9b9c50cc8fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060547;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_498da9a51b156f79fe2b12e3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.259920px;}
.lse{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.666000px;}
.ls4{letter-spacing:15.989760px;}
.ls12{letter-spacing:29.520000px;}
.lsc{letter-spacing:33.984000px;}
.lsf{letter-spacing:54.864000px;}
.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;}
}
.wsb{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.225280px;}
.ws1{word-spacing:-16.613280px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.226440px;}
.ws9{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.080000px;}
._0{width:1.140720px;}
._7{width:2.370720px;}
._10{width:3.487680px;}
._2{width:4.874880px;}
._32{width:5.946960px;}
._6{width:6.975360px;}
._3{width:8.478720px;}
._4{width:9.604800px;}
._5{width:11.459520px;}
._c{width:12.553920px;}
._15{width:13.674240px;}
._4a{width:14.688000px;}
._21{width:15.696000px;}
._1a{width:16.920000px;}
._14{width:19.080000px;}
._b{width:20.880000px;}
._1b{width:22.176000px;}
._16{width:23.256000px;}
._2c{width:24.480000px;}
._e{width:25.776000px;}
._f{width:27.504000px;}
._1e{width:28.512000px;}
._13{width:30.024000px;}
._11{width:31.176000px;}
._12{width:32.616000px;}
._22{width:33.624000px;}
._18{width:34.632000px;}
._8{width:35.928000px;}
._1d{width:37.019280px;}
._1c{width:38.088000px;}
._31{width:39.528000px;}
._2a{width:40.752000px;}
._20{width:41.760000px;}
._52{width:42.768000px;}
._9{width:43.776000px;}
._a{width:45.144000px;}
._38{width:46.440000px;}
._17{width:47.448000px;}
._d{width:48.672000px;}
._27{width:50.040000px;}
._3a{width:51.552000px;}
._37{width:52.920000px;}
._29{width:54.072000px;}
._23{width:55.152000px;}
._34{width:56.304000px;}
._36{width:57.528000px;}
._35{width:58.536000px;}
._42{width:59.616000px;}
._24{width:60.624000px;}
._25{width:62.136000px;}
._39{width:63.216000px;}
._2d{width:64.224000px;}
._2e{width:65.592000px;}
._30{width:67.104000px;}
._43{width:68.267280px;}
._1f{width:69.624000px;}
._46{width:71.784000px;}
._47{width:73.992000px;}
._2f{width:75.456000px;}
._19{width:76.608000px;}
._26{width:78.408000px;}
._33{width:79.776000px;}
._40{width:83.520000px;}
._2b{width:84.528000px;}
._28{width:86.976000px;}
._4b{width:88.272000px;}
._4c{width:90.576000px;}
._41{width:91.584000px;}
._4e{width:93.648000px;}
._3d{width:95.256000px;}
._5c{width:96.408000px;}
._4d{width:97.416000px;}
._50{width:98.688000px;}
._3b{width:100.656000px;}
._3c{width:102.024000px;}
._58{width:103.176000px;}
._55{width:104.328000px;}
._56{width:105.696000px;}
._5d{width:110.448000px;}
._4f{width:111.528000px;}
._6c{width:112.968000px;}
._57{width:115.992000px;}
._61{width:119.448000px;}
._6b{width:120.600000px;}
._5e{width:122.544000px;}
._66{width:124.200000px;}
._64{width:125.208000px;}
._53{width:126.576000px;}
._54{width:127.800000px;}
._68{width:129.312000px;}
._60{width:131.112000px;}
._5f{width:132.912000px;}
._44{width:134.496000px;}
._45{width:136.080000px;}
._67{width:142.416000px;}
._6d{width:153.288000px;}
._6e{width:154.452000px;}
._3e{width:169.416000px;}
._3f{width:170.784000px;}
._51{width:172.296000px;}
._62{width:175.320000px;}
._63{width:176.400000px;}
._5b{width:179.136000px;}
._59{width:202.824000px;}
._5a{width:204.696000px;}
._65{width:251.352000px;}
._48{width:256.824000px;}
._49{width:258.696000px;}
._6a{width:270.768000px;}
._69{width:301.464000px;}
.fc1{color:rgb(0,81,122);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.600000px;}
.y35{bottom:3.630000px;}
.y23{bottom:3.780000px;}
.y22{bottom:22.680000px;}
.y21{bottom:41.580000px;}
.yd7{bottom:41.760000px;}
.y4{bottom:54.756000px;}
.yd6{bottom:60.660000px;}
.y20{bottom:60.690000px;}
.y1f{bottom:79.590000px;}
.y3{bottom:92.916000px;}
.y1e{bottom:98.670000px;}
.y8e{bottom:113.076000px;}
.y1d{bottom:117.570000px;}
.y33{bottom:119.916000px;}
.y146{bottom:121.716000px;}
.yf1{bottom:124.416000px;}
.yc6{bottom:124.596000px;}
.yd4{bottom:124.776000px;}
.yce{bottom:125.856000px;}
.yd1{bottom:127.296000px;}
.y62{bottom:133.956000px;}
.yc3{bottom:134.496000px;}
.y1c{bottom:136.470000px;}
.y8d{bottom:136.836000px;}
.yee{bottom:137.736000px;}
.y32{bottom:143.856000px;}
.y145{bottom:145.656000px;}
.yf0{bottom:148.176000px;}
.yc5{bottom:148.536000px;}
.yd3{bottom:148.716000px;}
.ycd{bottom:149.616000px;}
.yd0{bottom:151.230000px;}
.y124{bottom:153.570000px;}
.y1b{bottom:155.550000px;}
.yed{bottom:156.810000px;}
.y61{bottom:157.710000px;}
.yc2{bottom:158.250000px;}
.y8c{bottom:160.590000px;}
.y31{bottom:167.610000px;}
.yef{bottom:167.970000px;}
.yd2{bottom:168.330000px;}
.y144{bottom:169.410000px;}
.ycf{bottom:170.850000px;}
.ya9{bottom:172.290000px;}
.ycc{bottom:173.550000px;}
.y1a{bottom:174.450000px;}
.y123{bottom:177.330000px;}
.yec{bottom:180.210000px;}
.y60{bottom:181.650000px;}
.yc1{bottom:182.010000px;}
.y8b{bottom:184.530000px;}
.y30{bottom:191.370000px;}
.ycb{bottom:193.170000px;}
.y19{bottom:193.530000px;}
.ya8{bottom:196.050000px;}
.y122{bottom:196.410000px;}
.yeb{bottom:203.430000px;}
.y5f{bottom:205.410000px;}
.yc0{bottom:205.950000px;}
.y8a{bottom:208.290000px;}
.y18{bottom:212.430000px;}
.y2f{bottom:215.130000px;}
.y143{bottom:216.930000px;}
.ya7{bottom:219.810000px;}
.yea{bottom:226.830000px;}
.y5e{bottom:229.170000px;}
.ybf{bottom:229.710000px;}
.y17{bottom:231.510000px;}
.y89{bottom:232.050000px;}
.y2e{bottom:239.070000px;}
.y142{bottom:240.870000px;}
.y121{bottom:243.030000px;}
.ya6{bottom:243.750000px;}
.ye9{bottom:250.230000px;}
.y5d{bottom:252.930000px;}
.ybe{bottom:253.470000px;}
.y88{bottom:255.810000px;}
.y2d{bottom:262.830000px;}
.y141{bottom:264.630000px;}
.y120{bottom:266.430000px;}
.ya5{bottom:267.510000px;}
.ye8{bottom:273.450000px;}
.y5c{bottom:276.870000px;}
.ybd{bottom:277.230000px;}
.y87{bottom:279.750000px;}
.y2c{bottom:286.635000px;}
.y140{bottom:288.435000px;}
.y11f{bottom:289.695000px;}
.ya4{bottom:291.315000px;}
.ye7{bottom:296.895000px;}
.y5b{bottom:300.675000px;}
.ybc{bottom:301.215000px;}
.y86{bottom:303.555000px;}
.y2b{bottom:310.395000px;}
.y13f{bottom:312.195000px;}
.y11e{bottom:313.095000px;}
.ya3{bottom:315.075000px;}
.ye6{bottom:320.115000px;}
.y5a{bottom:324.435000px;}
.ybb{bottom:324.975000px;}
.y85{bottom:327.315000px;}
.y125{bottom:333.075000px;}
.y2a{bottom:334.335000px;}
.y13e{bottom:335.955000px;}
.y11d{bottom:336.315000px;}
.ya2{bottom:339.015000px;}
.ye5{bottom:343.515000px;}
.y59{bottom:348.195000px;}
.yba{bottom:348.735000px;}
.y84{bottom:351.075000px;}
.y29{bottom:358.095000px;}
.y11c{bottom:359.715000px;}
.y13d{bottom:359.895000px;}
.ya1{bottom:362.775000px;}
.ye4{bottom:366.735000px;}
.y58{bottom:371.955000px;}
.yb9{bottom:372.495000px;}
.y83{bottom:375.015000px;}
.y147{bottom:380.775000px;}
.y28{bottom:381.855000px;}
.y11b{bottom:383.115000px;}
.y13c{bottom:383.655000px;}
.ya0{bottom:386.535000px;}
.ye3{bottom:390.135000px;}
.y57{bottom:395.895000px;}
.yb8{bottom:396.435000px;}
.y82{bottom:398.775000px;}
.yc4{bottom:404.535000px;}
.y11a{bottom:406.335000px;}
.y13b{bottom:407.415000px;}
.y9f{bottom:410.295000px;}
.ye2{bottom:413.535000px;}
.y56{bottom:419.655000px;}
.yb7{bottom:420.195000px;}
.y27{bottom:420.555000px;}
.y81{bottom:422.535000px;}
.y119{bottom:429.735000px;}
.y13a{bottom:431.175000px;}
.y9e{bottom:434.055000px;}
.ye1{bottom:436.755000px;}
.y55{bottom:443.415000px;}
.yb6{bottom:443.955000px;}
.y80{bottom:446.295000px;}
.y118{bottom:452.955000px;}
.y139{bottom:455.115000px;}
.y9d{bottom:457.995000px;}
.y26{bottom:459.255000px;}
.ye0{bottom:460.155000px;}
.y54{bottom:467.175000px;}
.yb5{bottom:467.715000px;}
.y7f{bottom:470.055000px;}
.y117{bottom:476.355000px;}
.y138{bottom:478.875000px;}
.y25{bottom:479.595000px;}
.y9c{bottom:481.755000px;}
.ydf{bottom:483.375000px;}
.y53{bottom:491.115000px;}
.yb4{bottom:491.655000px;}
.y7e{bottom:493.995000px;}
.y24{bottom:498.675000px;}
.y116{bottom:499.575000px;}
.y137{bottom:502.635000px;}
.y9b{bottom:505.515000px;}
.yde{bottom:506.775000px;}
.y52{bottom:514.875000px;}
.y16{bottom:515.415000px;}
.y7d{bottom:517.755000px;}
.y115{bottom:522.975000px;}
.y136{bottom:526.395000px;}
.y9a{bottom:529.275000px;}
.ydd{bottom:529.995000px;}
.y51{bottom:538.635000px;}
.yb3{bottom:539.175000px;}
.y7c{bottom:541.515000px;}
.y114{bottom:546.375000px;}
.y135{bottom:550.335000px;}
.y99{bottom:553.215000px;}
.ydc{bottom:553.395000px;}
.y50{bottom:562.395000px;}
.yb2{bottom:562.935000px;}
.y7b{bottom:565.305000px;}
.y113{bottom:569.625000px;}
.y134{bottom:574.125000px;}
.ydb{bottom:576.825000px;}
.y98{bottom:577.005000px;}
.y4f{bottom:586.365000px;}
.yb1{bottom:586.905000px;}
.y7a{bottom:589.245000px;}
.y112{bottom:593.025000px;}
.y133{bottom:597.885000px;}
.yda{bottom:600.045000px;}
.y97{bottom:600.765000px;}
.yca{bottom:603.645000px;}
.y4e{bottom:610.125000px;}
.yb0{bottom:610.665000px;}
.y79{bottom:613.005000px;}
.y111{bottom:616.245000px;}
.y132{bottom:621.645000px;}
.yd8{bottom:623.445000px;}
.y96{bottom:624.525000px;}
.yc9{bottom:627.585000px;}
.y4d{bottom:633.885000px;}
.yaf{bottom:634.425000px;}
.y78{bottom:636.765000px;}
.y110{bottom:639.645000px;}
.y131{bottom:645.585000px;}
.yd5{bottom:646.665000px;}
.y95{bottom:648.465000px;}
.yc8{bottom:651.345000px;}
.y4c{bottom:657.645000px;}
.yae{bottom:658.185000px;}
.y77{bottom:660.525000px;}
.y10f{bottom:662.865000px;}
.y130{bottom:669.345000px;}
.yc7{bottom:671.145000px;}
.y94{bottom:672.225000px;}
.y4b{bottom:681.585000px;}
.yad{bottom:681.945000px;}
.y76{bottom:684.465000px;}
.y10e{bottom:686.265000px;}
.y12f{bottom:693.105000px;}
.y93{bottom:695.985000px;}
.y4a{bottom:705.345000px;}
.yac{bottom:705.885000px;}
.y75{bottom:708.225000px;}
.y12e{bottom:716.865000px;}
.y92{bottom:719.745000px;}
.y49{bottom:729.105000px;}
.yab{bottom:729.645000px;}
.y74{bottom:731.985000px;}
.y12d{bottom:740.805000px;}
.y91{bottom:743.685000px;}
.yaa{bottom:749.445000px;}
.y48{bottom:752.865000px;}
.y73{bottom:755.745000px;}
.y12c{bottom:764.565000px;}
.y90{bottom:767.445000px;}
.y15{bottom:767.625000px;}
.y10d{bottom:771.585000px;}
.y47{bottom:776.805000px;}
.y72{bottom:779.685000px;}
.y14{bottom:788.325000px;}
.y10c{bottom:795.345000px;}
.y46{bottom:800.565000px;}
.y71{bottom:803.445000px;}
.y13{bottom:809.025000px;}
.y8f{bottom:809.205000px;}
.y12b{bottom:812.085000px;}
.y10b{bottom:819.105000px;}
.y45{bottom:824.325000px;}
.y70{bottom:827.205000px;}
.y12{bottom:832.785000px;}
.y12a{bottom:835.845000px;}
.y10a{bottom:843.045000px;}
.yff{bottom:845.565000px;}
.y44{bottom:848.130000px;}
.y6f{bottom:851.010000px;}
.y11{bottom:856.590000px;}
.y129{bottom:859.830000px;}
.y109{bottom:866.850000px;}
.yfe{bottom:869.370000px;}
.y43{bottom:871.890000px;}
.y6e{bottom:874.950000px;}
.y10{bottom:877.290000px;}
.y128{bottom:883.590000px;}
.y108{bottom:890.610000px;}
.yfd{bottom:893.130000px;}
.y42{bottom:895.830000px;}
.y6d{bottom:898.710000px;}
.yf{bottom:901.230000px;}
.y127{bottom:907.350000px;}
.y107{bottom:914.190000px;}
.yfc{bottom:917.070000px;}
.y41{bottom:919.590000px;}
.y6c{bottom:922.470000px;}
.ye{bottom:924.270000px;}
.y106{bottom:939.570000px;}
.yfb{bottom:940.830000px;}
.y40{bottom:943.350000px;}
.y6b{bottom:946.230000px;}
.y126{bottom:949.110000px;}
.yd{bottom:951.990000px;}
.y105{bottom:963.330000px;}
.yfa{bottom:964.590000px;}
.yc{bottom:965.490000px;}
.y3f{bottom:967.110000px;}
.y6a{bottom:969.990000px;}
.yb{bottom:986.190000px;}
.y104{bottom:987.090000px;}
.yf9{bottom:988.350000px;}
.y3e{bottom:991.050000px;}
.y69{bottom:993.930000px;}
.ya{bottom:1009.950000px;}
.y103{bottom:1010.850000px;}
.yf8{bottom:1012.290000px;}
.y3d{bottom:1014.810000px;}
.y68{bottom:1017.690000px;}
.y9{bottom:1030.650000px;}
.yf7{bottom:1035.870000px;}
.y102{bottom:1036.050000px;}
.y3c{bottom:1038.570000px;}
.y67{bottom:1041.450000px;}
.y8{bottom:1054.230000px;}
.y101{bottom:1059.630000px;}
.yf6{bottom:1061.070000px;}
.y3b{bottom:1062.330000px;}
.y66{bottom:1065.210000px;}
.y7{bottom:1078.170000px;}
.yf5{bottom:1084.830000px;}
.y3a{bottom:1086.270000px;}
.y65{bottom:1089.150000px;}
.y6{bottom:1101.930000px;}
.y100{bottom:1108.590000px;}
.yf4{bottom:1108.770000px;}
.y39{bottom:1110.030000px;}
.y64{bottom:1112.910000px;}
.y5{bottom:1121.910000px;}
.y34{bottom:1127.130000px;}
.yf3{bottom:1132.560000px;}
.y38{bottom:1133.820000px;}
.y63{bottom:1136.700000px;}
.yf2{bottom:1156.140000px;}
.y37{bottom:1157.580000px;}
.y2{bottom:1171.440000px;}
.y36{bottom:1174.320000px;}
.y1{bottom:1194.840000px;}
.h10{height:18.900000px;}
.h12{height:18.936000px;}
.h11{height:19.080000px;}
.h13{height:19.116000px;}
.he{height:20.556000px;}
.h9{height:42.124219px;}
.h2{height:43.681992px;}
.hd{height:46.736719px;}
.h8{height:50.800781px;}
.h4{height:52.628906px;}
.h5{height:54.140625px;}
.ha{height:55.243125px;}
.h6{height:60.046875px;}
.h3{height:65.884219px;}
.h7{height:67.591406px;}
.hc{height:67.824844px;}
.hf{height:75.960000px;}
.hb{height:246.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:47.340000px;}
.wc{width:68.256000px;}
.w6{width:79.560000px;}
.wd{width:80.280000px;}
.wf{width:80.460000px;}
.w11{width:80.640000px;}
.w10{width:80.676000px;}
.w12{width:80.820000px;}
.w13{width:80.856000px;}
.we{width:93.276000px;}
.w8{width:94.680000px;}
.wa{width:99.576000px;}
.wb{width:103.680000px;}
.w7{width:108.576000px;}
.w9{width:136.296000px;}
.w4{width:717.630000px;}
.w3{width:738.690000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:2.160000px;}
.x35{left:3.240000px;}
.x2c{left:4.860000px;}
.xc{left:8.100000px;}
.x2f{left:9.360000px;}
.x10{left:10.836000px;}
.x38{left:12.420000px;}
.x36{left:13.500000px;}
.x2e{left:14.940000px;}
.x2a{left:16.596000px;}
.x31{left:18.180000px;}
.x32{left:19.620000px;}
.x34{left:21.420000px;}
.x3d{left:23.940000px;}
.x3c{left:25.920000px;}
.x3b{left:40.320000px;}
.xb{left:77.220000px;}
.x1{left:86.219987px;}
.xf{left:87.660000px;}
.x9{left:89.099987px;}
.x18{left:92.015987px;}
.x16{left:100.835987px;}
.x1a{left:105.515987px;}
.x26{left:107.855987px;}
.x14{left:112.355987px;}
.xd{left:117.755987px;}
.x28{left:131.975987px;}
.x6{left:140.975987px;}
.x1d{left:143.315987px;}
.x1c{left:152.129987px;}
.x2b{left:153.930000px;}
.x20{left:158.790000px;}
.x7{left:167.069987px;}
.x19{left:191.549987px;}
.x17{left:194.609987px;}
.x1e{left:219.989987px;}
.xa{left:221.789987px;}
.x2d{left:234.210000px;}
.x21{left:238.530000px;}
.x27{left:244.829987px;}
.x1b{left:274.349987px;}
.x30{left:327.675000px;}
.x22{left:347.295000px;}
.x8{left:358.274987px;}
.x13{left:366.914987px;}
.x29{left:378.794987px;}
.x11{left:384.914987px;}
.x33{left:408.315000px;}
.x23{left:441.975000px;}
.x5{left:446.474987px;}
.xe{left:462.674987px;}
.x15{left:489.704987px;}
.x12{left:495.104987px;}
.x37{left:569.805000px;}
.x24{left:578.445000px;}
.x39{left:650.625000px;}
.x25{left:678.030000px;}
.x3a{left:731.490000px;}
.x3{left:791.069987px;}
.x4{left:805.469987px;}
.x2{left:807.809987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.592000pt;}
.ls4{letter-spacing:14.213120pt;}
.ls12{letter-spacing:26.240000pt;}
.lsc{letter-spacing:30.208000pt;}
.lsf{letter-spacing:48.768000pt;}
.wsb{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.311360pt;}
.ws1{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.534613pt;}
.ws9{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.013973pt;}
._7{width:2.107307pt;}
._10{width:3.100160pt;}
._2{width:4.333227pt;}
._32{width:5.286187pt;}
._6{width:6.200320pt;}
._3{width:7.536640pt;}
._4{width:8.537600pt;}
._5{width:10.186240pt;}
._c{width:11.159040pt;}
._15{width:12.154880pt;}
._4a{width:13.056000pt;}
._21{width:13.952000pt;}
._1a{width:15.040000pt;}
._14{width:16.960000pt;}
._b{width:18.560000pt;}
._1b{width:19.712000pt;}
._16{width:20.672000pt;}
._2c{width:21.760000pt;}
._e{width:22.912000pt;}
._f{width:24.448000pt;}
._1e{width:25.344000pt;}
._13{width:26.688000pt;}
._11{width:27.712000pt;}
._12{width:28.992000pt;}
._22{width:29.888000pt;}
._18{width:30.784000pt;}
._8{width:31.936000pt;}
._1d{width:32.906027pt;}
._1c{width:33.856000pt;}
._31{width:35.136000pt;}
._2a{width:36.224000pt;}
._20{width:37.120000pt;}
._52{width:38.016000pt;}
._9{width:38.912000pt;}
._a{width:40.128000pt;}
._38{width:41.280000pt;}
._17{width:42.176000pt;}
._d{width:43.264000pt;}
._27{width:44.480000pt;}
._3a{width:45.824000pt;}
._37{width:47.040000pt;}
._29{width:48.064000pt;}
._23{width:49.024000pt;}
._34{width:50.048000pt;}
._36{width:51.136000pt;}
._35{width:52.032000pt;}
._42{width:52.992000pt;}
._24{width:53.888000pt;}
._25{width:55.232000pt;}
._39{width:56.192000pt;}
._2d{width:57.088000pt;}
._2e{width:58.304000pt;}
._30{width:59.648000pt;}
._43{width:60.682027pt;}
._1f{width:61.888000pt;}
._46{width:63.808000pt;}
._47{width:65.770667pt;}
._2f{width:67.072000pt;}
._19{width:68.096000pt;}
._26{width:69.696000pt;}
._33{width:70.912000pt;}
._40{width:74.240000pt;}
._2b{width:75.136000pt;}
._28{width:77.312000pt;}
._4b{width:78.464000pt;}
._4c{width:80.512000pt;}
._41{width:81.408000pt;}
._4e{width:83.242667pt;}
._3d{width:84.672000pt;}
._5c{width:85.696000pt;}
._4d{width:86.592000pt;}
._50{width:87.722667pt;}
._3b{width:89.472000pt;}
._3c{width:90.688000pt;}
._58{width:91.712000pt;}
._55{width:92.736000pt;}
._56{width:93.952000pt;}
._5d{width:98.176000pt;}
._4f{width:99.136000pt;}
._6c{width:100.416000pt;}
._57{width:103.104000pt;}
._61{width:106.176000pt;}
._6b{width:107.200000pt;}
._5e{width:108.928000pt;}
._66{width:110.400000pt;}
._64{width:111.296000pt;}
._53{width:112.512000pt;}
._54{width:113.600000pt;}
._68{width:114.944000pt;}
._60{width:116.544000pt;}
._5f{width:118.144000pt;}
._44{width:119.552000pt;}
._45{width:120.960000pt;}
._67{width:126.592000pt;}
._6d{width:136.256000pt;}
._6e{width:137.290667pt;}
._3e{width:150.592000pt;}
._3f{width:151.808000pt;}
._51{width:153.152000pt;}
._62{width:155.840000pt;}
._63{width:156.800000pt;}
._5b{width:159.232000pt;}
._59{width:180.288000pt;}
._5a{width:181.952000pt;}
._65{width:223.424000pt;}
._48{width:228.288000pt;}
._49{width:229.952000pt;}
._6a{width:240.682667pt;}
._69{width:267.968000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:3.200000pt;}
.y35{bottom:3.226667pt;}
.y23{bottom:3.360000pt;}
.y22{bottom:20.160000pt;}
.y21{bottom:36.960000pt;}
.yd7{bottom:37.120000pt;}
.y4{bottom:48.672000pt;}
.yd6{bottom:53.920000pt;}
.y20{bottom:53.946667pt;}
.y1f{bottom:70.746667pt;}
.y3{bottom:82.592000pt;}
.y1e{bottom:87.706667pt;}
.y8e{bottom:100.512000pt;}
.y1d{bottom:104.506667pt;}
.y33{bottom:106.592000pt;}
.y146{bottom:108.192000pt;}
.yf1{bottom:110.592000pt;}
.yc6{bottom:110.752000pt;}
.yd4{bottom:110.912000pt;}
.yce{bottom:111.872000pt;}
.yd1{bottom:113.152000pt;}
.y62{bottom:119.072000pt;}
.yc3{bottom:119.552000pt;}
.y1c{bottom:121.306667pt;}
.y8d{bottom:121.632000pt;}
.yee{bottom:122.432000pt;}
.y32{bottom:127.872000pt;}
.y145{bottom:129.472000pt;}
.yf0{bottom:131.712000pt;}
.yc5{bottom:132.032000pt;}
.yd3{bottom:132.192000pt;}
.ycd{bottom:132.992000pt;}
.yd0{bottom:134.426667pt;}
.y124{bottom:136.506667pt;}
.y1b{bottom:138.266667pt;}
.yed{bottom:139.386667pt;}
.y61{bottom:140.186667pt;}
.yc2{bottom:140.666667pt;}
.y8c{bottom:142.746667pt;}
.y31{bottom:148.986667pt;}
.yef{bottom:149.306667pt;}
.yd2{bottom:149.626667pt;}
.y144{bottom:150.586667pt;}
.ycf{bottom:151.866667pt;}
.ya9{bottom:153.146667pt;}
.ycc{bottom:154.266667pt;}
.y1a{bottom:155.066667pt;}
.y123{bottom:157.626667pt;}
.yec{bottom:160.186667pt;}
.y60{bottom:161.466667pt;}
.yc1{bottom:161.786667pt;}
.y8b{bottom:164.026667pt;}
.y30{bottom:170.106667pt;}
.ycb{bottom:171.706667pt;}
.y19{bottom:172.026667pt;}
.ya8{bottom:174.266667pt;}
.y122{bottom:174.586667pt;}
.yeb{bottom:180.826667pt;}
.y5f{bottom:182.586667pt;}
.yc0{bottom:183.066667pt;}
.y8a{bottom:185.146667pt;}
.y18{bottom:188.826667pt;}
.y2f{bottom:191.226667pt;}
.y143{bottom:192.826667pt;}
.ya7{bottom:195.386667pt;}
.yea{bottom:201.626667pt;}
.y5e{bottom:203.706667pt;}
.ybf{bottom:204.186667pt;}
.y17{bottom:205.786667pt;}
.y89{bottom:206.266667pt;}
.y2e{bottom:212.506667pt;}
.y142{bottom:214.106667pt;}
.y121{bottom:216.026667pt;}
.ya6{bottom:216.666667pt;}
.ye9{bottom:222.426667pt;}
.y5d{bottom:224.826667pt;}
.ybe{bottom:225.306667pt;}
.y88{bottom:227.386667pt;}
.y2d{bottom:233.626667pt;}
.y141{bottom:235.226667pt;}
.y120{bottom:236.826667pt;}
.ya5{bottom:237.786667pt;}
.ye8{bottom:243.066667pt;}
.y5c{bottom:246.106667pt;}
.ybd{bottom:246.426667pt;}
.y87{bottom:248.666667pt;}
.y2c{bottom:254.786667pt;}
.y140{bottom:256.386667pt;}
.y11f{bottom:257.506667pt;}
.ya4{bottom:258.946667pt;}
.ye7{bottom:263.906667pt;}
.y5b{bottom:267.266667pt;}
.ybc{bottom:267.746667pt;}
.y86{bottom:269.826667pt;}
.y2b{bottom:275.906667pt;}
.y13f{bottom:277.506667pt;}
.y11e{bottom:278.306667pt;}
.ya3{bottom:280.066667pt;}
.ye6{bottom:284.546667pt;}
.y5a{bottom:288.386667pt;}
.ybb{bottom:288.866667pt;}
.y85{bottom:290.946667pt;}
.y125{bottom:296.066667pt;}
.y2a{bottom:297.186667pt;}
.y13e{bottom:298.626667pt;}
.y11d{bottom:298.946667pt;}
.ya2{bottom:301.346667pt;}
.ye5{bottom:305.346667pt;}
.y59{bottom:309.506667pt;}
.yba{bottom:309.986667pt;}
.y84{bottom:312.066667pt;}
.y29{bottom:318.306667pt;}
.y11c{bottom:319.746667pt;}
.y13d{bottom:319.906667pt;}
.ya1{bottom:322.466667pt;}
.ye4{bottom:325.986667pt;}
.y58{bottom:330.626667pt;}
.yb9{bottom:331.106667pt;}
.y83{bottom:333.346667pt;}
.y147{bottom:338.466667pt;}
.y28{bottom:339.426667pt;}
.y11b{bottom:340.546667pt;}
.y13c{bottom:341.026667pt;}
.ya0{bottom:343.586667pt;}
.ye3{bottom:346.786667pt;}
.y57{bottom:351.906667pt;}
.yb8{bottom:352.386667pt;}
.y82{bottom:354.466667pt;}
.yc4{bottom:359.586667pt;}
.y11a{bottom:361.186667pt;}
.y13b{bottom:362.146667pt;}
.y9f{bottom:364.706667pt;}
.ye2{bottom:367.586667pt;}
.y56{bottom:373.026667pt;}
.yb7{bottom:373.506667pt;}
.y27{bottom:373.826667pt;}
.y81{bottom:375.586667pt;}
.y119{bottom:381.986667pt;}
.y13a{bottom:383.266667pt;}
.y9e{bottom:385.826667pt;}
.ye1{bottom:388.226667pt;}
.y55{bottom:394.146667pt;}
.yb6{bottom:394.626667pt;}
.y80{bottom:396.706667pt;}
.y118{bottom:402.626667pt;}
.y139{bottom:404.546667pt;}
.y9d{bottom:407.106667pt;}
.y26{bottom:408.226667pt;}
.ye0{bottom:409.026667pt;}
.y54{bottom:415.266667pt;}
.yb5{bottom:415.746667pt;}
.y7f{bottom:417.826667pt;}
.y117{bottom:423.426667pt;}
.y138{bottom:425.666667pt;}
.y25{bottom:426.306667pt;}
.y9c{bottom:428.226667pt;}
.ydf{bottom:429.666667pt;}
.y53{bottom:436.546667pt;}
.yb4{bottom:437.026667pt;}
.y7e{bottom:439.106667pt;}
.y24{bottom:443.266667pt;}
.y116{bottom:444.066667pt;}
.y137{bottom:446.786667pt;}
.y9b{bottom:449.346667pt;}
.yde{bottom:450.466667pt;}
.y52{bottom:457.666667pt;}
.y16{bottom:458.146667pt;}
.y7d{bottom:460.226667pt;}
.y115{bottom:464.866667pt;}
.y136{bottom:467.906667pt;}
.y9a{bottom:470.466667pt;}
.ydd{bottom:471.106667pt;}
.y51{bottom:478.786667pt;}
.yb3{bottom:479.266667pt;}
.y7c{bottom:481.346667pt;}
.y114{bottom:485.666667pt;}
.y135{bottom:489.186667pt;}
.y99{bottom:491.746667pt;}
.ydc{bottom:491.906667pt;}
.y50{bottom:499.906667pt;}
.yb2{bottom:500.386667pt;}
.y7b{bottom:502.493333pt;}
.y113{bottom:506.333333pt;}
.y134{bottom:510.333333pt;}
.ydb{bottom:512.733333pt;}
.y98{bottom:512.893333pt;}
.y4f{bottom:521.213333pt;}
.yb1{bottom:521.693333pt;}
.y7a{bottom:523.773333pt;}
.y112{bottom:527.133333pt;}
.y133{bottom:531.453333pt;}
.yda{bottom:533.373333pt;}
.y97{bottom:534.013333pt;}
.yca{bottom:536.573333pt;}
.y4e{bottom:542.333333pt;}
.yb0{bottom:542.813333pt;}
.y79{bottom:544.893333pt;}
.y111{bottom:547.773333pt;}
.y132{bottom:552.573333pt;}
.yd8{bottom:554.173333pt;}
.y96{bottom:555.133333pt;}
.yc9{bottom:557.853333pt;}
.y4d{bottom:563.453333pt;}
.yaf{bottom:563.933333pt;}
.y78{bottom:566.013333pt;}
.y110{bottom:568.573333pt;}
.y131{bottom:573.853333pt;}
.yd5{bottom:574.813333pt;}
.y95{bottom:576.413333pt;}
.yc8{bottom:578.973333pt;}
.y4c{bottom:584.573333pt;}
.yae{bottom:585.053333pt;}
.y77{bottom:587.133333pt;}
.y10f{bottom:589.213333pt;}
.y130{bottom:594.973333pt;}
.yc7{bottom:596.573333pt;}
.y94{bottom:597.533333pt;}
.y4b{bottom:605.853333pt;}
.yad{bottom:606.173333pt;}
.y76{bottom:608.413333pt;}
.y10e{bottom:610.013333pt;}
.y12f{bottom:616.093333pt;}
.y93{bottom:618.653333pt;}
.y4a{bottom:626.973333pt;}
.yac{bottom:627.453333pt;}
.y75{bottom:629.533333pt;}
.y12e{bottom:637.213333pt;}
.y92{bottom:639.773333pt;}
.y49{bottom:648.093333pt;}
.yab{bottom:648.573333pt;}
.y74{bottom:650.653333pt;}
.y12d{bottom:658.493333pt;}
.y91{bottom:661.053333pt;}
.yaa{bottom:666.173333pt;}
.y48{bottom:669.213333pt;}
.y73{bottom:671.773333pt;}
.y12c{bottom:679.613333pt;}
.y90{bottom:682.173333pt;}
.y15{bottom:682.333333pt;}
.y10d{bottom:685.853333pt;}
.y47{bottom:690.493333pt;}
.y72{bottom:693.053333pt;}
.y14{bottom:700.733333pt;}
.y10c{bottom:706.973333pt;}
.y46{bottom:711.613333pt;}
.y71{bottom:714.173333pt;}
.y13{bottom:719.133333pt;}
.y8f{bottom:719.293333pt;}
.y12b{bottom:721.853333pt;}
.y10b{bottom:728.093333pt;}
.y45{bottom:732.733333pt;}
.y70{bottom:735.293333pt;}
.y12{bottom:740.253333pt;}
.y12a{bottom:742.973333pt;}
.y10a{bottom:749.373333pt;}
.yff{bottom:751.613333pt;}
.y44{bottom:753.893333pt;}
.y6f{bottom:756.453333pt;}
.y11{bottom:761.413333pt;}
.y129{bottom:764.293333pt;}
.y109{bottom:770.533333pt;}
.yfe{bottom:772.773333pt;}
.y43{bottom:775.013333pt;}
.y6e{bottom:777.733333pt;}
.y10{bottom:779.813333pt;}
.y128{bottom:785.413333pt;}
.y108{bottom:791.653333pt;}
.yfd{bottom:793.893333pt;}
.y42{bottom:796.293333pt;}
.y6d{bottom:798.853333pt;}
.yf{bottom:801.093333pt;}
.y127{bottom:806.533333pt;}
.y107{bottom:812.613333pt;}
.yfc{bottom:815.173333pt;}
.y41{bottom:817.413333pt;}
.y6c{bottom:819.973333pt;}
.ye{bottom:821.573333pt;}
.y106{bottom:835.173333pt;}
.yfb{bottom:836.293333pt;}
.y40{bottom:838.533333pt;}
.y6b{bottom:841.093333pt;}
.y126{bottom:843.653333pt;}
.yd{bottom:846.213333pt;}
.y105{bottom:856.293333pt;}
.yfa{bottom:857.413333pt;}
.yc{bottom:858.213333pt;}
.y3f{bottom:859.653333pt;}
.y6a{bottom:862.213333pt;}
.yb{bottom:876.613333pt;}
.y104{bottom:877.413333pt;}
.yf9{bottom:878.533333pt;}
.y3e{bottom:880.933333pt;}
.y69{bottom:883.493333pt;}
.ya{bottom:897.733333pt;}
.y103{bottom:898.533333pt;}
.yf8{bottom:899.813333pt;}
.y3d{bottom:902.053333pt;}
.y68{bottom:904.613333pt;}
.y9{bottom:916.133333pt;}
.yf7{bottom:920.773333pt;}
.y102{bottom:920.933333pt;}
.y3c{bottom:923.173333pt;}
.y67{bottom:925.733333pt;}
.y8{bottom:937.093333pt;}
.y101{bottom:941.893333pt;}
.yf6{bottom:943.173333pt;}
.y3b{bottom:944.293333pt;}
.y66{bottom:946.853333pt;}
.y7{bottom:958.373333pt;}
.yf5{bottom:964.293333pt;}
.y3a{bottom:965.573333pt;}
.y65{bottom:968.133333pt;}
.y6{bottom:979.493333pt;}
.y100{bottom:985.413333pt;}
.yf4{bottom:985.573333pt;}
.y39{bottom:986.693333pt;}
.y64{bottom:989.253333pt;}
.y5{bottom:997.253333pt;}
.y34{bottom:1001.893333pt;}
.yf3{bottom:1006.720000pt;}
.y38{bottom:1007.840000pt;}
.y63{bottom:1010.400000pt;}
.yf2{bottom:1027.680000pt;}
.y37{bottom:1028.960000pt;}
.y2{bottom:1041.280000pt;}
.y36{bottom:1043.840000pt;}
.y1{bottom:1062.080000pt;}
.h10{height:16.800000pt;}
.h12{height:16.832000pt;}
.h11{height:16.960000pt;}
.h13{height:16.992000pt;}
.he{height:18.272000pt;}
.h9{height:37.443750pt;}
.h2{height:38.828437pt;}
.hd{height:41.543750pt;}
.h8{height:45.156250pt;}
.h4{height:46.781250pt;}
.h5{height:48.125000pt;}
.ha{height:49.105000pt;}
.h6{height:53.375000pt;}
.h3{height:58.563750pt;}
.h7{height:60.081250pt;}
.hc{height:60.288750pt;}
.hf{height:67.520000pt;}
.hb{height:219.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:42.080000pt;}
.wc{width:60.672000pt;}
.w6{width:70.720000pt;}
.wd{width:71.360000pt;}
.wf{width:71.520000pt;}
.w11{width:71.680000pt;}
.w10{width:71.712000pt;}
.w12{width:71.840000pt;}
.w13{width:71.872000pt;}
.we{width:82.912000pt;}
.w8{width:84.160000pt;}
.wa{width:88.512000pt;}
.wb{width:92.160000pt;}
.w7{width:96.512000pt;}
.w9{width:121.152000pt;}
.w4{width:637.893333pt;}
.w3{width:656.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.920000pt;}
.x35{left:2.880000pt;}
.x2c{left:4.320000pt;}
.xc{left:7.200000pt;}
.x2f{left:8.320000pt;}
.x10{left:9.632000pt;}
.x38{left:11.040000pt;}
.x36{left:12.000000pt;}
.x2e{left:13.280000pt;}
.x2a{left:14.752000pt;}
.x31{left:16.160000pt;}
.x32{left:17.440000pt;}
.x34{left:19.040000pt;}
.x3d{left:21.280000pt;}
.x3c{left:23.040000pt;}
.x3b{left:35.840000pt;}
.xb{left:68.640000pt;}
.x1{left:76.639988pt;}
.xf{left:77.920000pt;}
.x9{left:79.199988pt;}
.x18{left:81.791988pt;}
.x16{left:89.631988pt;}
.x1a{left:93.791988pt;}
.x26{left:95.871988pt;}
.x14{left:99.871988pt;}
.xd{left:104.671988pt;}
.x28{left:117.311988pt;}
.x6{left:125.311988pt;}
.x1d{left:127.391988pt;}
.x1c{left:135.226655pt;}
.x2b{left:136.826667pt;}
.x20{left:141.146667pt;}
.x7{left:148.506655pt;}
.x19{left:170.266655pt;}
.x17{left:172.986655pt;}
.x1e{left:195.546655pt;}
.xa{left:197.146655pt;}
.x2d{left:208.186667pt;}
.x21{left:212.026667pt;}
.x27{left:217.626655pt;}
.x1b{left:243.866655pt;}
.x30{left:291.266667pt;}
.x22{left:308.706667pt;}
.x8{left:318.466655pt;}
.x13{left:326.146655pt;}
.x29{left:336.706655pt;}
.x11{left:342.146655pt;}
.x33{left:362.946667pt;}
.x23{left:392.866667pt;}
.x5{left:396.866655pt;}
.xe{left:411.266655pt;}
.x15{left:435.293322pt;}
.x12{left:440.093322pt;}
.x37{left:506.493333pt;}
.x24{left:514.173333pt;}
.x39{left:578.333333pt;}
.x25{left:602.693333pt;}
.x3a{left:650.213333pt;}
.x3{left:703.173322pt;}
.x4{left:715.973322pt;}
.x2{left:718.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  