
    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_6d7fe4dca10c442f96be7f0e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_710340d7cec780c003c9c27b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e20265adf908ccecdb615006.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c5326e77d7cf24c09330eb77.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6130132be30a79c88c605aac.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_45fff8491e83473f24beb270.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da5bb7f1bd33ce2775798e3d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_69cd48a2da9e8119cbed17de.woff')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-4.680000px;}
.ls15{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-1.182000px;}
.ls12{letter-spacing:-0.942000px;}
.ls14{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.223200px;}
.ls6{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.825120px;}
.ls17{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws4{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.220000px;}
.ws2{word-spacing:-10.440000px;}
.ws10{word-spacing:-10.260000px;}
.wse{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._32{margin-left:-8.759760px;}
._2d{margin-left:-7.530480px;}
._1b{margin-left:-5.677200px;}
._12{margin-left:-3.948960px;}
._c{margin-left:-2.269440px;}
._0{margin-left:-1.080000px;}
._4{width:1.200000px;}
._1{width:2.220000px;}
._1f{width:3.229200px;}
._13{width:4.230720px;}
._14{width:5.277840px;}
._15{width:6.449280px;}
._17{width:7.975200px;}
._11{width:9.657840px;}
._7{width:10.800000px;}
._18{width:11.892240px;}
._19{width:13.799760px;}
._16{width:16.290480px;}
._23{width:17.625360px;}
._2c{width:18.645120px;}
._2b{width:20.978160px;}
._2a{width:22.230720px;}
._26{width:35.856000px;}
._27{width:37.467840px;}
._1d{width:40.338000px;}
._2e{width:41.447040px;}
._1c{width:43.684560px;}
._29{width:54.859680px;}
._1e{width:59.286720px;}
._22{width:66.388560px;}
._1a{width:68.783760px;}
._8{width:76.284960px;}
._28{width:78.644160px;}
._30{width:98.355360px;}
._31{width:99.739440px;}
._2f{width:100.934640px;}
._25{width:110.735280px;}
._21{width:127.348560px;}
._9{width:154.080000px;}
._20{width:165.475440px;}
._e{width:195.120000px;}
._24{width:207.964800px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._6{width:436.440000px;}
._5{width:443.406240px;}
._a{width:604.364160px;}
._f{width:653.880000px;}
._10{width:703.560000px;}
._b{width:1096.860000px;}
._d{width:1176.060000px;}
._33{width:2115.240000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y46{bottom:5.760000px;}
.y4f{bottom:5.790000px;}
.y4b{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.yf7{bottom:6.840000px;}
.yf5{bottom:7.020000px;}
.y110{bottom:7.200000px;}
.y6{bottom:12.420000px;}
.yf3{bottom:15.660000px;}
.y123{bottom:15.840000px;}
.y14d{bottom:15.885000px;}
.y8{bottom:18.180000px;}
.y45{bottom:25.560000px;}
.y4e{bottom:25.590000px;}
.y48{bottom:25.740000px;}
.y14c{bottom:25.785000px;}
.y15b{bottom:35.460000px;}
.y149{bottom:35.640000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y51{bottom:45.360000px;}
.y4d{bottom:45.390000px;}
.y44{bottom:45.540000px;}
.yb{bottom:60.480000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.120000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y11a{bottom:106.200000px;}
.y147{bottom:108.180000px;}
.yb7{bottom:108.540000px;}
.y68{bottom:111.600000px;}
.y90{bottom:112.320000px;}
.y16d{bottom:117.540000px;}
.y168{bottom:119.340000px;}
.y170{bottom:120.420000px;}
.y3a{bottom:121.320000px;}
.y2{bottom:125.670000px;}
.y119{bottom:126.000000px;}
.yb6{bottom:128.340000px;}
.y146{bottom:129.600000px;}
.y67{bottom:131.400000px;}
.y8f{bottom:132.120000px;}
.y16c{bottom:137.340000px;}
.y16f{bottom:138.060000px;}
.y167{bottom:139.320000px;}
.y118{bottom:140.760000px;}
.y39{bottom:141.300000px;}
.yfa{bottom:144.180000px;}
.yb5{bottom:148.320000px;}
.y145{bottom:149.400000px;}
.ydb{bottom:150.120000px;}
.y66{bottom:151.200000px;}
.y8e{bottom:151.950000px;}
.y16e{bottom:155.730000px;}
.y16b{bottom:157.350000px;}
.y166{bottom:159.150000px;}
.y38{bottom:161.130000px;}
.y117{bottom:164.010000px;}
.yf9{bottom:166.890000px;}
.yb4{bottom:168.150000px;}
.y144{bottom:169.410000px;}
.yda{bottom:169.950000px;}
.y65{bottom:171.030000px;}
.y8d{bottom:171.930000px;}
.y16a{bottom:177.150000px;}
.y37{bottom:180.930000px;}
.y116{bottom:187.410000px;}
.yb3{bottom:187.950000px;}
.y143{bottom:189.210000px;}
.yf8{bottom:189.750000px;}
.y64{bottom:191.010000px;}
.y8c{bottom:191.730000px;}
.y169{bottom:196.950000px;}
.yd9{bottom:198.750000px;}
.y36{bottom:200.730000px;}
.yb2{bottom:207.750000px;}
.y142{bottom:209.010000px;}
.y115{bottom:210.630000px;}
.y63{bottom:210.810000px;}
.y8b{bottom:211.530000px;}
.yf6{bottom:212.610000px;}
.y121{bottom:216.750000px;}
.yd8{bottom:218.550000px;}
.y35{bottom:220.530000px;}
.yb1{bottom:227.550000px;}
.y141{bottom:228.810000px;}
.y62{bottom:230.610000px;}
.y8a{bottom:231.330000px;}
.y114{bottom:233.850000px;}
.yf4{bottom:235.290000px;}
.y120{bottom:236.550000px;}
.yd7{bottom:238.530000px;}
.y34{bottom:240.510000px;}
.yb0{bottom:247.530000px;}
.y140{bottom:248.610000px;}
.y61{bottom:250.410000px;}
.y89{bottom:251.130000px;}
.y11f{bottom:256.530000px;}
.yf2{bottom:258.150000px;}
.yd6{bottom:258.330000px;}
.y33{bottom:260.310000px;}
.yaf{bottom:267.330000px;}
.y13f{bottom:268.590000px;}
.y60{bottom:270.210000px;}
.y88{bottom:271.110000px;}
.y11e{bottom:276.330000px;}
.yd5{bottom:278.130000px;}
.y32{bottom:280.110000px;}
.yae{bottom:287.130000px;}
.y13e{bottom:288.390000px;}
.y5f{bottom:290.190000px;}
.y87{bottom:290.910000px;}
.y11d{bottom:296.130000px;}
.yd4{bottom:297.930000px;}
.y31{bottom:299.910000px;}
.yf1{bottom:304.410000px;}
.yad{bottom:306.930000px;}
.y13d{bottom:308.190000px;}
.y5e{bottom:309.990000px;}
.y86{bottom:310.710000px;}
.y11c{bottom:315.930000px;}
.yd3{bottom:317.730000px;}
.y30{bottom:319.710000px;}
.y13c{bottom:322.950000px;}
.yf0{bottom:324.210000px;}
.yac{bottom:326.730000px;}
.y5d{bottom:329.790000px;}
.y85{bottom:330.510000px;}
.y11b{bottom:335.730000px;}
.yd2{bottom:337.710000px;}
.y113{bottom:339.510000px;}
.y2f{bottom:339.690000px;}
.yef{bottom:344.010000px;}
.y13b{bottom:346.170000px;}
.y165{bottom:346.710000px;}
.y5c{bottom:349.590000px;}
.y84{bottom:350.310000px;}
.yab{bottom:355.710000px;}
.yd1{bottom:357.510000px;}
.y2e{bottom:359.490000px;}
.yee{bottom:363.810000px;}
.y164{bottom:366.510000px;}
.y5b{bottom:369.390000px;}
.y13a{bottom:369.570000px;}
.y83{bottom:370.290000px;}
.yaa{bottom:375.510000px;}
.yd0{bottom:377.310000px;}
.y12f{bottom:377.490000px;}
.y2d{bottom:379.290000px;}
.yed{bottom:383.610000px;}
.y163{bottom:386.310000px;}
.y5a{bottom:389.370000px;}
.y82{bottom:390.090000px;}
.ya9{bottom:395.310000px;}
.ycf{bottom:397.110000px;}
.y139{bottom:398.550000px;}
.y2c{bottom:399.090000px;}
.y12e{bottom:400.755000px;}
.yec{bottom:403.635000px;}
.y162{bottom:406.155000px;}
.y59{bottom:409.215000px;}
.y81{bottom:409.935000px;}
.ya8{bottom:415.155000px;}
.yce{bottom:416.955000px;}
.y138{bottom:418.395000px;}
.y2b{bottom:418.935000px;}
.yeb{bottom:423.435000px;}
.y12d{bottom:424.155000px;}
.y161{bottom:425.955000px;}
.y58{bottom:429.015000px;}
.y80{bottom:429.735000px;}
.ya7{bottom:434.955000px;}
.ycd{bottom:436.935000px;}
.y137{bottom:438.195000px;}
.y112{bottom:438.735000px;}
.y2a{bottom:438.915000px;}
.yea{bottom:443.235000px;}
.y160{bottom:445.935000px;}
.y12c{bottom:447.375000px;}
.y57{bottom:448.815000px;}
.y7f{bottom:449.535000px;}
.ya6{bottom:454.935000px;}
.ycc{bottom:456.735000px;}
.y136{bottom:458.175000px;}
.y29{bottom:458.715000px;}
.ye9{bottom:463.035000px;}
.y15d{bottom:463.575000px;}
.y15f{bottom:465.735000px;}
.y56{bottom:468.615000px;}
.y7e{bottom:469.515000px;}
.y12b{bottom:470.595000px;}
.ya5{bottom:474.735000px;}
.ycb{bottom:476.535000px;}
.y135{bottom:477.975000px;}
.y28{bottom:478.515000px;}
.ye8{bottom:482.835000px;}
.y15e{bottom:485.535000px;}
.y55{bottom:488.595000px;}
.y7d{bottom:489.315000px;}
.y12a{bottom:493.815000px;}
.ya4{bottom:494.535000px;}
.y134{bottom:497.775000px;}
.y27{bottom:498.315000px;}
.ye7{bottom:502.815000px;}
.yca{bottom:505.335000px;}
.y54{bottom:508.395000px;}
.y7c{bottom:509.115000px;}
.ya3{bottom:514.335000px;}
.y129{bottom:517.035000px;}
.y133{bottom:517.575000px;}
.y26{bottom:518.115000px;}
.ye6{bottom:522.615000px;}
.y15c{bottom:523.875000px;}
.yc9{bottom:525.135000px;}
.y53{bottom:528.195000px;}
.y7b{bottom:528.915000px;}
.y111{bottom:532.875000px;}
.ya2{bottom:534.135000px;}
.y132{bottom:537.375000px;}
.y25{bottom:538.095000px;}
.y128{bottom:540.255000px;}
.ye5{bottom:542.415000px;}
.y52{bottom:542.955000px;}
.yc8{bottom:545.115000px;}
.y7a{bottom:548.715000px;}
.ya1{bottom:554.115000px;}
.y10f{bottom:556.095000px;}
.y131{bottom:557.355000px;}
.y24{bottom:557.895000px;}
.ye4{bottom:562.215000px;}
.y127{bottom:563.655000px;}
.yc7{bottom:564.915000px;}
.y79{bottom:568.695000px;}
.y130{bottom:573.735000px;}
.ya0{bottom:573.915000px;}
.y23{bottom:577.695000px;}
.y10e{bottom:579.495000px;}
.ye3{bottom:582.015000px;}
.y50{bottom:583.455000px;}
.y15a{bottom:584.175000px;}
.yc6{bottom:584.715000px;}
.y126{bottom:586.875000px;}
.y78{bottom:588.495000px;}
.y9f{bottom:593.715000px;}
.y22{bottom:597.495000px;}
.ye2{bottom:601.995000px;}
.y10d{bottom:602.715000px;}
.yc5{bottom:604.515000px;}
.y77{bottom:608.295000px;}
.y125{bottom:610.095000px;}
.y9e{bottom:613.515000px;}
.y21{bottom:617.295000px;}
.ye1{bottom:621.795000px;}
.yc4{bottom:624.315000px;}
.y10c{bottom:625.935000px;}
.y76{bottom:628.095000px;}
.y9d{bottom:633.315000px;}
.y20{bottom:637.275000px;}
.ye0{bottom:641.595000px;}
.y4c{bottom:643.755000px;}
.yc3{bottom:644.295000px;}
.y75{bottom:647.895000px;}
.y159{bottom:650.265000px;}
.y9c{bottom:653.325000px;}
.y124{bottom:656.565000px;}
.y1f{bottom:657.105000px;}
.ydf{bottom:661.425000px;}
.yc2{bottom:664.125000px;}
.y74{bottom:667.905000px;}
.y158{bottom:670.065000px;}
.y10b{bottom:672.225000px;}
.y9b{bottom:673.125000px;}
.y1e{bottom:676.905000px;}
.y122{bottom:679.785000px;}
.yde{bottom:681.225000px;}
.yc1{bottom:683.925000px;}
.y73{bottom:687.705000px;}
.y157{bottom:689.865000px;}
.y10a{bottom:692.025000px;}
.y9a{bottom:692.925000px;}
.y1d{bottom:696.705000px;}
.ydd{bottom:701.205000px;}
.yc0{bottom:703.725000px;}
.y4a{bottom:703.905000px;}
.y72{bottom:707.505000px;}
.y156{bottom:709.845000px;}
.y109{bottom:711.825000px;}
.y99{bottom:712.725000px;}
.y1c{bottom:716.505000px;}
.ybf{bottom:723.525000px;}
.y49{bottom:724.605000px;}
.ydc{bottom:726.585000px;}
.y71{bottom:727.305000px;}
.y155{bottom:729.645000px;}
.y108{bottom:731.625000px;}
.y98{bottom:732.525000px;}
.y1b{bottom:736.485000px;}
.ybe{bottom:743.505000px;}
.y70{bottom:747.105000px;}
.y154{bottom:749.445000px;}
.y107{bottom:751.605000px;}
.y97{bottom:752.505000px;}
.y1a{bottom:756.285000px;}
.ybd{bottom:763.305000px;}
.y47{bottom:764.925000px;}
.y6f{bottom:767.085000px;}
.y153{bottom:769.245000px;}
.y106{bottom:771.405000px;}
.y96{bottom:772.305000px;}
.y19{bottom:776.085000px;}
.y6e{bottom:781.845000px;}
.ybc{bottom:783.105000px;}
.y152{bottom:789.045000px;}
.y105{bottom:791.205000px;}
.y95{bottom:792.105000px;}
.y18{bottom:795.885000px;}
.y6d{bottom:802.365000px;}
.ybb{bottom:802.905000px;}
.y151{bottom:809.025000px;}
.y104{bottom:811.005000px;}
.y94{bottom:811.905000px;}
.y17{bottom:815.685000px;}
.yba{bottom:822.705000px;}
.y6c{bottom:823.065000px;}
.y43{bottom:825.225000px;}
.y150{bottom:828.825000px;}
.y103{bottom:830.805000px;}
.y93{bottom:831.705000px;}
.y16{bottom:835.665000px;}
.yb9{bottom:842.685000px;}
.y6b{bottom:843.585000px;}
.y14f{bottom:848.625000px;}
.y102{bottom:850.785000px;}
.y92{bottom:851.685000px;}
.y15{bottom:855.465000px;}
.yb8{bottom:862.485000px;}
.y14e{bottom:868.425000px;}
.y101{bottom:870.585000px;}
.y91{bottom:871.485000px;}
.y14{bottom:880.485000px;}
.y14b{bottom:883.185000px;}
.y6a{bottom:883.905000px;}
.y100{bottom:885.345000px;}
.y42{bottom:891.285000px;}
.y13{bottom:895.605000px;}
.y69{bottom:904.650000px;}
.yff{bottom:908.250000px;}
.y41{bottom:911.130000px;}
.y12{bottom:916.890000px;}
.y14a{bottom:923.730000px;}
.y40{bottom:930.930000px;}
.y11{bottom:940.470000px;}
.y3f{bottom:950.910000px;}
.yfe{bottom:953.790000px;}
.y148{bottom:964.050000px;}
.y3e{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.yfd{bottom:976.650000px;}
.y3d{bottom:990.510000px;}
.yfc{bottom:999.330000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.yfb{bottom:1022.190000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.h17{height:19.800000px;}
.h13{height:19.980000px;}
.h18{height:20.016000px;}
.hb{height:21.780000px;}
.h1a{height:21.960000px;}
.h1b{height:21.996000px;}
.h19{height:22.140000px;}
.h1d{height:22.500000px;}
.h1f{height:22.536000px;}
.he{height:28.115859px;}
.h7{height:33.480000px;}
.h12{height:39.600000px;}
.h1c{height:39.636000px;}
.h16{height:39.780000px;}
.h21{height:39.816000px;}
.h10{height:42.164648px;}
.h24{height:42.854414px;}
.h8{height:43.215117px;}
.h22{height:43.506914px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.hf{height:48.995859px;}
.h1e{height:49.255313px;}
.h9{height:53.224453px;}
.hd{height:53.404453px;}
.h23{height:56.574492px;}
.h15{height:59.400000px;}
.h14{height:59.436000px;}
.h11{height:59.580000px;}
.h3{height:63.500977px;}
.h20{height:65.884219px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wa{width:41.400000px;}
.wd{width:61.416000px;}
.w1d{width:67.500000px;}
.w20{width:71.280000px;}
.w30{width:72.936000px;}
.w2a{width:74.196000px;}
.w2d{width:79.920000px;}
.w2f{width:81.000000px;}
.w11{width:84.060000px;}
.w29{width:85.680000px;}
.wc{width:86.580000px;}
.w32{width:90.540000px;}
.we{width:91.080000px;}
.w17{width:91.980000px;}
.w2b{width:95.220000px;}
.w1e{width:97.740000px;}
.w26{width:102.276000px;}
.w31{width:103.680000px;}
.w1c{width:104.976000px;}
.w23{width:106.020000px;}
.w24{width:106.056000px;}
.w10{width:110.520000px;}
.w14{width:111.060000px;}
.w6{width:113.940000px;}
.w2c{width:114.876000px;}
.w13{width:115.236000px;}
.wf{width:116.136000px;}
.w18{width:116.676000px;}
.w22{width:127.116000px;}
.w19{width:127.296000px;}
.w1a{width:130.320000px;}
.w3{width:131.796000px;}
.w15{width:137.556000px;}
.w12{width:139.896000px;}
.w1f{width:147.996000px;}
.w21{width:150.690000px;}
.w27{width:159.150000px;}
.w9{width:161.280000px;}
.wb{width:174.990000px;}
.w25{width:204.690000px;}
.w8{width:208.515000px;}
.w7{width:222.150000px;}
.w16{width:222.330000px;}
.w1b{width:233.850000px;}
.w2e{width:244.110000px;}
.w28{width:261.750000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.x6{left:65.699987px;}
.x3a{left:80.999987px;}
.x34{left:89.856000px;}
.xd{left:92.556000px;}
.x29{left:97.235987px;}
.x1e{left:101.556000px;}
.x11{left:103.356000px;}
.x23{left:108.035987px;}
.x7{left:109.475987px;}
.x4{left:118.290000px;}
.x24{left:119.736000px;}
.x12{left:145.476000px;}
.x19{left:151.770000px;}
.x2a{left:162.029987px;}
.x2b{left:165.270000px;}
.x32{left:171.750000px;}
.xe{left:207.210000px;}
.x8{left:219.989987px;}
.xb{left:223.229987px;}
.x1a{left:236.370000px;}
.xa{left:244.289987px;}
.xc{left:269.714987px;}
.x13{left:321.195000px;}
.x1f{left:324.255000px;}
.x3b{left:336.495000px;}
.x31{left:343.154987px;}
.x35{left:351.975000px;}
.x25{left:353.955000px;}
.x30{left:370.874987px;}
.x1b{left:376.635000px;}
.x2c{left:387.975000px;}
.x14{left:408.495000px;}
.x20{left:416.595000px;}
.x3c{left:417.855000px;}
.xf{left:430.095000px;}
.x36{left:438.015000px;}
.x9{left:446.504987px;}
.x26{left:459.285000px;}
.x15{left:470.625000px;}
.x33{left:479.445000px;}
.x3d{left:491.145000px;}
.x1c{left:492.405000px;}
.x37{left:512.565000px;}
.x2d{left:515.445000px;}
.x27{left:527.325000px;}
.x21{left:533.625000px;}
.x16{left:562.425000px;}
.x3e{left:595.185000px;}
.x1d{left:603.825000px;}
.x38{left:608.145000px;}
.x2e{left:621.825000px;}
.x28{left:625.425000px;}
.x10{left:639.330000px;}
.x22{left:661.290000px;}
.x17{left:679.290000px;}
.x3{left:707.910000px;}
.x3f{left:710.430000px;}
.x39{left:723.390000px;}
.x2f{left:758.489987px;}
.x18{left:764.969987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-4.160000pt;}
.ls15{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-1.050667pt;}
.ls12{letter-spacing:-0.837333pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.198400pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.733440pt;}
.ls17{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.640000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws10{word-spacing:-9.120000pt;}
.wse{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._32{margin-left:-7.786453pt;}
._2d{margin-left:-6.693760pt;}
._1b{margin-left:-5.046400pt;}
._12{margin-left:-3.510187pt;}
._c{margin-left:-2.017280pt;}
._0{margin-left:-0.960000pt;}
._4{width:1.066667pt;}
._1{width:1.973333pt;}
._1f{width:2.870400pt;}
._13{width:3.760640pt;}
._14{width:4.691413pt;}
._15{width:5.732693pt;}
._17{width:7.089067pt;}
._11{width:8.584747pt;}
._7{width:9.600000pt;}
._18{width:10.570880pt;}
._19{width:12.266453pt;}
._16{width:14.480427pt;}
._23{width:15.666987pt;}
._2c{width:16.573440pt;}
._2b{width:18.647253pt;}
._2a{width:19.760640pt;}
._26{width:31.872000pt;}
._27{width:33.304747pt;}
._1d{width:35.856000pt;}
._2e{width:36.841813pt;}
._1c{width:38.830720pt;}
._29{width:48.764160pt;}
._1e{width:52.699307pt;}
._22{width:59.012053pt;}
._1a{width:61.141120pt;}
._8{width:67.808853pt;}
._28{width:69.905920pt;}
._30{width:87.426987pt;}
._31{width:88.657280pt;}
._2f{width:89.719680pt;}
._25{width:98.431360pt;}
._21{width:113.198720pt;}
._9{width:136.960000pt;}
._20{width:147.089280pt;}
._e{width:173.440000pt;}
._24{width:184.857600pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._6{width:387.946667pt;}
._5{width:394.138880pt;}
._a{width:537.212587pt;}
._f{width:581.226667pt;}
._10{width:625.386667pt;}
._b{width:974.986667pt;}
._d{width:1045.386667pt;}
._33{width:1880.213333pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:5.120000pt;}
.y4f{bottom:5.146667pt;}
.y4b{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.yf7{bottom:6.080000pt;}
.yf5{bottom:6.240000pt;}
.y110{bottom:6.400000pt;}
.y6{bottom:11.040000pt;}
.yf3{bottom:13.920000pt;}
.y123{bottom:14.080000pt;}
.y14d{bottom:14.120000pt;}
.y8{bottom:16.160000pt;}
.y45{bottom:22.720000pt;}
.y4e{bottom:22.746667pt;}
.y48{bottom:22.880000pt;}
.y14c{bottom:22.920000pt;}
.y15b{bottom:31.520000pt;}
.y149{bottom:31.680000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y51{bottom:40.320000pt;}
.y4d{bottom:40.346667pt;}
.y44{bottom:40.480000pt;}
.yb{bottom:53.760000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.440000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y11a{bottom:94.400000pt;}
.y147{bottom:96.160000pt;}
.yb7{bottom:96.480000pt;}
.y68{bottom:99.200000pt;}
.y90{bottom:99.840000pt;}
.y16d{bottom:104.480000pt;}
.y168{bottom:106.080000pt;}
.y170{bottom:107.040000pt;}
.y3a{bottom:107.840000pt;}
.y2{bottom:111.706667pt;}
.y119{bottom:112.000000pt;}
.yb6{bottom:114.080000pt;}
.y146{bottom:115.200000pt;}
.y67{bottom:116.800000pt;}
.y8f{bottom:117.440000pt;}
.y16c{bottom:122.080000pt;}
.y16f{bottom:122.720000pt;}
.y167{bottom:123.840000pt;}
.y118{bottom:125.120000pt;}
.y39{bottom:125.600000pt;}
.yfa{bottom:128.160000pt;}
.yb5{bottom:131.840000pt;}
.y145{bottom:132.800000pt;}
.ydb{bottom:133.440000pt;}
.y66{bottom:134.400000pt;}
.y8e{bottom:135.066667pt;}
.y16e{bottom:138.426667pt;}
.y16b{bottom:139.866667pt;}
.y166{bottom:141.466667pt;}
.y38{bottom:143.226667pt;}
.y117{bottom:145.786667pt;}
.yf9{bottom:148.346667pt;}
.yb4{bottom:149.466667pt;}
.y144{bottom:150.586667pt;}
.yda{bottom:151.066667pt;}
.y65{bottom:152.026667pt;}
.y8d{bottom:152.826667pt;}
.y16a{bottom:157.466667pt;}
.y37{bottom:160.826667pt;}
.y116{bottom:166.586667pt;}
.yb3{bottom:167.066667pt;}
.y143{bottom:168.186667pt;}
.yf8{bottom:168.666667pt;}
.y64{bottom:169.786667pt;}
.y8c{bottom:170.426667pt;}
.y169{bottom:175.066667pt;}
.yd9{bottom:176.666667pt;}
.y36{bottom:178.426667pt;}
.yb2{bottom:184.666667pt;}
.y142{bottom:185.786667pt;}
.y115{bottom:187.226667pt;}
.y63{bottom:187.386667pt;}
.y8b{bottom:188.026667pt;}
.yf6{bottom:188.986667pt;}
.y121{bottom:192.666667pt;}
.yd8{bottom:194.266667pt;}
.y35{bottom:196.026667pt;}
.yb1{bottom:202.266667pt;}
.y141{bottom:203.386667pt;}
.y62{bottom:204.986667pt;}
.y8a{bottom:205.626667pt;}
.y114{bottom:207.866667pt;}
.yf4{bottom:209.146667pt;}
.y120{bottom:210.266667pt;}
.yd7{bottom:212.026667pt;}
.y34{bottom:213.786667pt;}
.yb0{bottom:220.026667pt;}
.y140{bottom:220.986667pt;}
.y61{bottom:222.586667pt;}
.y89{bottom:223.226667pt;}
.y11f{bottom:228.026667pt;}
.yf2{bottom:229.466667pt;}
.yd6{bottom:229.626667pt;}
.y33{bottom:231.386667pt;}
.yaf{bottom:237.626667pt;}
.y13f{bottom:238.746667pt;}
.y60{bottom:240.186667pt;}
.y88{bottom:240.986667pt;}
.y11e{bottom:245.626667pt;}
.yd5{bottom:247.226667pt;}
.y32{bottom:248.986667pt;}
.yae{bottom:255.226667pt;}
.y13e{bottom:256.346667pt;}
.y5f{bottom:257.946667pt;}
.y87{bottom:258.586667pt;}
.y11d{bottom:263.226667pt;}
.yd4{bottom:264.826667pt;}
.y31{bottom:266.586667pt;}
.yf1{bottom:270.586667pt;}
.yad{bottom:272.826667pt;}
.y13d{bottom:273.946667pt;}
.y5e{bottom:275.546667pt;}
.y86{bottom:276.186667pt;}
.y11c{bottom:280.826667pt;}
.yd3{bottom:282.426667pt;}
.y30{bottom:284.186667pt;}
.y13c{bottom:287.066667pt;}
.yf0{bottom:288.186667pt;}
.yac{bottom:290.426667pt;}
.y5d{bottom:293.146667pt;}
.y85{bottom:293.786667pt;}
.y11b{bottom:298.426667pt;}
.yd2{bottom:300.186667pt;}
.y113{bottom:301.786667pt;}
.y2f{bottom:301.946667pt;}
.yef{bottom:305.786667pt;}
.y13b{bottom:307.706667pt;}
.y165{bottom:308.186667pt;}
.y5c{bottom:310.746667pt;}
.y84{bottom:311.386667pt;}
.yab{bottom:316.186667pt;}
.yd1{bottom:317.786667pt;}
.y2e{bottom:319.546667pt;}
.yee{bottom:323.386667pt;}
.y164{bottom:325.786667pt;}
.y5b{bottom:328.346667pt;}
.y13a{bottom:328.506667pt;}
.y83{bottom:329.146667pt;}
.yaa{bottom:333.786667pt;}
.yd0{bottom:335.386667pt;}
.y12f{bottom:335.546667pt;}
.y2d{bottom:337.146667pt;}
.yed{bottom:340.986667pt;}
.y163{bottom:343.386667pt;}
.y5a{bottom:346.106667pt;}
.y82{bottom:346.746667pt;}
.ya9{bottom:351.386667pt;}
.ycf{bottom:352.986667pt;}
.y139{bottom:354.266667pt;}
.y2c{bottom:354.746667pt;}
.y12e{bottom:356.226667pt;}
.yec{bottom:358.786667pt;}
.y162{bottom:361.026667pt;}
.y59{bottom:363.746667pt;}
.y81{bottom:364.386667pt;}
.ya8{bottom:369.026667pt;}
.yce{bottom:370.626667pt;}
.y138{bottom:371.906667pt;}
.y2b{bottom:372.386667pt;}
.yeb{bottom:376.386667pt;}
.y12d{bottom:377.026667pt;}
.y161{bottom:378.626667pt;}
.y58{bottom:381.346667pt;}
.y80{bottom:381.986667pt;}
.ya7{bottom:386.626667pt;}
.ycd{bottom:388.386667pt;}
.y137{bottom:389.506667pt;}
.y112{bottom:389.986667pt;}
.y2a{bottom:390.146667pt;}
.yea{bottom:393.986667pt;}
.y160{bottom:396.386667pt;}
.y12c{bottom:397.666667pt;}
.y57{bottom:398.946667pt;}
.y7f{bottom:399.586667pt;}
.ya6{bottom:404.386667pt;}
.ycc{bottom:405.986667pt;}
.y136{bottom:407.266667pt;}
.y29{bottom:407.746667pt;}
.ye9{bottom:411.586667pt;}
.y15d{bottom:412.066667pt;}
.y15f{bottom:413.986667pt;}
.y56{bottom:416.546667pt;}
.y7e{bottom:417.346667pt;}
.y12b{bottom:418.306667pt;}
.ya5{bottom:421.986667pt;}
.ycb{bottom:423.586667pt;}
.y135{bottom:424.866667pt;}
.y28{bottom:425.346667pt;}
.ye8{bottom:429.186667pt;}
.y15e{bottom:431.586667pt;}
.y55{bottom:434.306667pt;}
.y7d{bottom:434.946667pt;}
.y12a{bottom:438.946667pt;}
.ya4{bottom:439.586667pt;}
.y134{bottom:442.466667pt;}
.y27{bottom:442.946667pt;}
.ye7{bottom:446.946667pt;}
.yca{bottom:449.186667pt;}
.y54{bottom:451.906667pt;}
.y7c{bottom:452.546667pt;}
.ya3{bottom:457.186667pt;}
.y129{bottom:459.586667pt;}
.y133{bottom:460.066667pt;}
.y26{bottom:460.546667pt;}
.ye6{bottom:464.546667pt;}
.y15c{bottom:465.666667pt;}
.yc9{bottom:466.786667pt;}
.y53{bottom:469.506667pt;}
.y7b{bottom:470.146667pt;}
.y111{bottom:473.666667pt;}
.ya2{bottom:474.786667pt;}
.y132{bottom:477.666667pt;}
.y25{bottom:478.306667pt;}
.y128{bottom:480.226667pt;}
.ye5{bottom:482.146667pt;}
.y52{bottom:482.626667pt;}
.yc8{bottom:484.546667pt;}
.y7a{bottom:487.746667pt;}
.ya1{bottom:492.546667pt;}
.y10f{bottom:494.306667pt;}
.y131{bottom:495.426667pt;}
.y24{bottom:495.906667pt;}
.ye4{bottom:499.746667pt;}
.y127{bottom:501.026667pt;}
.yc7{bottom:502.146667pt;}
.y79{bottom:505.506667pt;}
.y130{bottom:509.986667pt;}
.ya0{bottom:510.146667pt;}
.y23{bottom:513.506667pt;}
.y10e{bottom:515.106667pt;}
.ye3{bottom:517.346667pt;}
.y50{bottom:518.626667pt;}
.y15a{bottom:519.266667pt;}
.yc6{bottom:519.746667pt;}
.y126{bottom:521.666667pt;}
.y78{bottom:523.106667pt;}
.y9f{bottom:527.746667pt;}
.y22{bottom:531.106667pt;}
.ye2{bottom:535.106667pt;}
.y10d{bottom:535.746667pt;}
.yc5{bottom:537.346667pt;}
.y77{bottom:540.706667pt;}
.y125{bottom:542.306667pt;}
.y9e{bottom:545.346667pt;}
.y21{bottom:548.706667pt;}
.ye1{bottom:552.706667pt;}
.yc4{bottom:554.946667pt;}
.y10c{bottom:556.386667pt;}
.y76{bottom:558.306667pt;}
.y9d{bottom:562.946667pt;}
.y20{bottom:566.466667pt;}
.ye0{bottom:570.306667pt;}
.y4c{bottom:572.226667pt;}
.yc3{bottom:572.706667pt;}
.y75{bottom:575.906667pt;}
.y159{bottom:578.013333pt;}
.y9c{bottom:580.733333pt;}
.y124{bottom:583.613333pt;}
.y1f{bottom:584.093333pt;}
.ydf{bottom:587.933333pt;}
.yc2{bottom:590.333333pt;}
.y74{bottom:593.693333pt;}
.y158{bottom:595.613333pt;}
.y10b{bottom:597.533333pt;}
.y9b{bottom:598.333333pt;}
.y1e{bottom:601.693333pt;}
.y122{bottom:604.253333pt;}
.yde{bottom:605.533333pt;}
.yc1{bottom:607.933333pt;}
.y73{bottom:611.293333pt;}
.y157{bottom:613.213333pt;}
.y10a{bottom:615.133333pt;}
.y9a{bottom:615.933333pt;}
.y1d{bottom:619.293333pt;}
.ydd{bottom:623.293333pt;}
.yc0{bottom:625.533333pt;}
.y4a{bottom:625.693333pt;}
.y72{bottom:628.893333pt;}
.y156{bottom:630.973333pt;}
.y109{bottom:632.733333pt;}
.y99{bottom:633.533333pt;}
.y1c{bottom:636.893333pt;}
.ybf{bottom:643.133333pt;}
.y49{bottom:644.093333pt;}
.ydc{bottom:645.853333pt;}
.y71{bottom:646.493333pt;}
.y155{bottom:648.573333pt;}
.y108{bottom:650.333333pt;}
.y98{bottom:651.133333pt;}
.y1b{bottom:654.653333pt;}
.ybe{bottom:660.893333pt;}
.y70{bottom:664.093333pt;}
.y154{bottom:666.173333pt;}
.y107{bottom:668.093333pt;}
.y97{bottom:668.893333pt;}
.y1a{bottom:672.253333pt;}
.ybd{bottom:678.493333pt;}
.y47{bottom:679.933333pt;}
.y6f{bottom:681.853333pt;}
.y153{bottom:683.773333pt;}
.y106{bottom:685.693333pt;}
.y96{bottom:686.493333pt;}
.y19{bottom:689.853333pt;}
.y6e{bottom:694.973333pt;}
.ybc{bottom:696.093333pt;}
.y152{bottom:701.373333pt;}
.y105{bottom:703.293333pt;}
.y95{bottom:704.093333pt;}
.y18{bottom:707.453333pt;}
.y6d{bottom:713.213333pt;}
.ybb{bottom:713.693333pt;}
.y151{bottom:719.133333pt;}
.y104{bottom:720.893333pt;}
.y94{bottom:721.693333pt;}
.y17{bottom:725.053333pt;}
.yba{bottom:731.293333pt;}
.y6c{bottom:731.613333pt;}
.y43{bottom:733.533333pt;}
.y150{bottom:736.733333pt;}
.y103{bottom:738.493333pt;}
.y93{bottom:739.293333pt;}
.y16{bottom:742.813333pt;}
.yb9{bottom:749.053333pt;}
.y6b{bottom:749.853333pt;}
.y14f{bottom:754.333333pt;}
.y102{bottom:756.253333pt;}
.y92{bottom:757.053333pt;}
.y15{bottom:760.413333pt;}
.yb8{bottom:766.653333pt;}
.y14e{bottom:771.933333pt;}
.y101{bottom:773.853333pt;}
.y91{bottom:774.653333pt;}
.y14{bottom:782.653333pt;}
.y14b{bottom:785.053333pt;}
.y6a{bottom:785.693333pt;}
.y100{bottom:786.973333pt;}
.y42{bottom:792.253333pt;}
.y13{bottom:796.093333pt;}
.y69{bottom:804.133333pt;}
.yff{bottom:807.333333pt;}
.y41{bottom:809.893333pt;}
.y12{bottom:815.013333pt;}
.y14a{bottom:821.093333pt;}
.y40{bottom:827.493333pt;}
.y11{bottom:835.973333pt;}
.y3f{bottom:845.253333pt;}
.yfe{bottom:847.813333pt;}
.y148{bottom:856.933333pt;}
.y3e{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.yfd{bottom:868.133333pt;}
.y3d{bottom:880.453333pt;}
.yfc{bottom:888.293333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.yfb{bottom:908.613333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.h17{height:17.600000pt;}
.h13{height:17.760000pt;}
.h18{height:17.792000pt;}
.hb{height:19.360000pt;}
.h1a{height:19.520000pt;}
.h1b{height:19.552000pt;}
.h19{height:19.680000pt;}
.h1d{height:20.000000pt;}
.h1f{height:20.032000pt;}
.he{height:24.991875pt;}
.h7{height:29.760000pt;}
.h12{height:35.200000pt;}
.h1c{height:35.232000pt;}
.h16{height:35.360000pt;}
.h21{height:35.392000pt;}
.h10{height:37.479688pt;}
.h24{height:38.092813pt;}
.h8{height:38.413438pt;}
.h22{height:38.672812pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.hf{height:43.551875pt;}
.h1e{height:43.782500pt;}
.h9{height:47.310625pt;}
.hd{height:47.470625pt;}
.h23{height:50.288438pt;}
.h15{height:52.800000pt;}
.h14{height:52.832000pt;}
.h11{height:52.960000pt;}
.h3{height:56.445312pt;}
.h20{height:58.563750pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wa{width:36.800000pt;}
.wd{width:54.592000pt;}
.w1d{width:60.000000pt;}
.w20{width:63.360000pt;}
.w30{width:64.832000pt;}
.w2a{width:65.952000pt;}
.w2d{width:71.040000pt;}
.w2f{width:72.000000pt;}
.w11{width:74.720000pt;}
.w29{width:76.160000pt;}
.wc{width:76.960000pt;}
.w32{width:80.480000pt;}
.we{width:80.960000pt;}
.w17{width:81.760000pt;}
.w2b{width:84.640000pt;}
.w1e{width:86.880000pt;}
.w26{width:90.912000pt;}
.w31{width:92.160000pt;}
.w1c{width:93.312000pt;}
.w23{width:94.240000pt;}
.w24{width:94.272000pt;}
.w10{width:98.240000pt;}
.w14{width:98.720000pt;}
.w6{width:101.280000pt;}
.w2c{width:102.112000pt;}
.w13{width:102.432000pt;}
.wf{width:103.232000pt;}
.w18{width:103.712000pt;}
.w22{width:112.992000pt;}
.w19{width:113.152000pt;}
.w1a{width:115.840000pt;}
.w3{width:117.152000pt;}
.w15{width:122.272000pt;}
.w12{width:124.352000pt;}
.w1f{width:131.552000pt;}
.w21{width:133.946667pt;}
.w27{width:141.466667pt;}
.w9{width:143.360000pt;}
.wb{width:155.546667pt;}
.w25{width:181.946667pt;}
.w8{width:185.346667pt;}
.w7{width:197.466667pt;}
.w16{width:197.626667pt;}
.w1b{width:207.866667pt;}
.w2e{width:216.986667pt;}
.w28{width:232.666667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.x6{left:58.399988pt;}
.x3a{left:71.999988pt;}
.x34{left:79.872000pt;}
.xd{left:82.272000pt;}
.x29{left:86.431988pt;}
.x1e{left:90.272000pt;}
.x11{left:91.872000pt;}
.x23{left:96.031988pt;}
.x7{left:97.311988pt;}
.x4{left:105.146667pt;}
.x24{left:106.432000pt;}
.x12{left:129.312000pt;}
.x19{left:134.906667pt;}
.x2a{left:144.026655pt;}
.x2b{left:146.906667pt;}
.x32{left:152.666667pt;}
.xe{left:184.186667pt;}
.x8{left:195.546655pt;}
.xb{left:198.426655pt;}
.x1a{left:210.106667pt;}
.xa{left:217.146655pt;}
.xc{left:239.746655pt;}
.x13{left:285.506667pt;}
.x1f{left:288.226667pt;}
.x3b{left:299.106667pt;}
.x31{left:305.026655pt;}
.x35{left:312.866667pt;}
.x25{left:314.626667pt;}
.x30{left:329.666655pt;}
.x1b{left:334.786667pt;}
.x2c{left:344.866667pt;}
.x14{left:363.106667pt;}
.x20{left:370.306667pt;}
.x3c{left:371.426667pt;}
.xf{left:382.306667pt;}
.x36{left:389.346667pt;}
.x9{left:396.893322pt;}
.x26{left:408.253333pt;}
.x15{left:418.333333pt;}
.x33{left:426.173333pt;}
.x3d{left:436.573333pt;}
.x1c{left:437.693333pt;}
.x37{left:455.613333pt;}
.x2d{left:458.173333pt;}
.x27{left:468.733333pt;}
.x21{left:474.333333pt;}
.x16{left:499.933333pt;}
.x3e{left:529.053333pt;}
.x1d{left:536.733333pt;}
.x38{left:540.573333pt;}
.x2e{left:552.733333pt;}
.x28{left:555.933333pt;}
.x10{left:568.293333pt;}
.x22{left:587.813333pt;}
.x17{left:603.813333pt;}
.x3{left:629.253333pt;}
.x3f{left:631.493333pt;}
.x39{left:643.013333pt;}
.x2f{left:674.213322pt;}
.x18{left:679.973322pt;}
.x5{left:737.120000pt;}
}




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