
    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_15eda59e1b3fae3f49fa29a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_2d01910c7024a5338ce8c0ba.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9e88db04804751f254160c14.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0c40e286b0378301e9104a54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_08974b4a6cfcff07dd222ae4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_993b6638a4d9c936cc2b8693.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_674addb3a9fd2ecd8a596efe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_dfef7dcfc9297a66ce734378.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.182000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.513600px;}
.ls2{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.177600px;}
.ls6{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106560px;}
.ls3{letter-spacing:0.109440px;}
.ls5{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.135600px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.504000px;}
.ls13{letter-spacing:1.080000px;}
.ls16{letter-spacing:11.700000px;}
.lsf{letter-spacing:12.420000px;}
.ls1a{letter-spacing:13.140000px;}
.ls10{letter-spacing:14.580000px;}
.ls17{letter-spacing:16.020000px;}
.ls1f{letter-spacing:16.506720px;}
.ls19{letter-spacing:16.920000px;}
.ls1e{letter-spacing:30.420000px;}
.ls15{letter-spacing:46.026720px;}
.lsa{letter-spacing:60.660000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.762400px;}
.ws9{word-spacing:-14.686800px;}
.ws7{word-spacing:-14.680200px;}
.ws1{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-6.552480px;}
._d{margin-left:-3.841920px;}
._e{margin-left:-2.105280px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._11{width:2.958000px;}
._12{width:4.551840px;}
._14{width:5.856480px;}
._18{width:6.872400px;}
._17{width:8.246880px;}
._3{width:9.540000px;}
._13{width:11.017440px;}
._1{width:12.420000px;}
._16{width:13.685040px;}
._1a{width:16.015680px;}
._f{width:17.907120px;}
._15{width:19.129920px;}
._10{width:20.137920px;}
._20{width:21.453840px;}
._1d{width:23.007600px;}
._23{width:24.020640px;}
._19{width:25.099200px;}
._22{width:26.174880px;}
._1e{width:27.907920px;}
._1f{width:28.983600px;}
._1c{width:30.776400px;}
._1b{width:31.911840px;}
._31{width:33.718320px;}
._30{width:34.780320px;}
._2b{width:36.274320px;}
._2f{width:37.602000px;}
._21{width:39.032640px;}
._25{width:40.778640px;}
._2a{width:42.287760px;}
._28{width:43.505280px;}
._24{width:45.417600px;}
._3b{width:46.553040px;}
._42{width:47.808000px;}
._32{width:51.811920px;}
._2e{width:55.158480px;}
._2d{width:56.413440px;}
._3c{width:57.780000px;}
._29{width:59.700240px;}
._39{width:61.134480px;}
._36{width:63.823680px;}
._41{width:73.026720px;}
._3e{width:74.221920px;}
._38{width:77.150160px;}
._43{width:79.839360px;}
._2c{width:84.066480px;}
._3d{width:86.771520px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._35{width:104.878800px;}
._34{width:105.894720px;}
._9{width:108.180000px;}
._3f{width:111.318240px;}
._47{width:115.635600px;}
._40{width:121.014000px;}
._33{width:136.909680px;}
._49{width:145.874160px;}
._27{width:149.818320px;}
._26{width:153.164880px;}
._46{width:155.555280px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._37{width:204.319440px;}
._a{width:229.860000px;}
._3a{width:249.139440px;}
._44{width:268.787280px;}
._7{width:296.820000px;}
._48{width:309.736080px;}
._45{width:358.619760px;}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc6{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y2a{bottom:5.760000px;}
.yab{bottom:5.940000px;}
.y10{bottom:7.200000px;}
.y154{bottom:7.740000px;}
.yde{bottom:8.100000px;}
.y19{bottom:8.820000px;}
.ycb{bottom:10.980000px;}
.yd2{bottom:11.160000px;}
.ya8{bottom:11.340000px;}
.yd9{bottom:11.880000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y9f{bottom:25.560000px;}
.y158{bottom:25.605000px;}
.y29{bottom:25.740000px;}
.y169{bottom:25.770000px;}
.y11c{bottom:25.785000px;}
.y153{bottom:27.720000px;}
.y13c{bottom:28.290000px;}
.ya2{bottom:28.305000px;}
.y139{bottom:28.440000px;}
.ya7{bottom:31.140000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.ya4{bottom:45.360000px;}
.y157{bottom:45.405000px;}
.y28{bottom:45.540000px;}
.ya1{bottom:48.105000px;}
.y138{bottom:48.240000px;}
.y13b{bottom:48.270000px;}
.ycf{bottom:53.280000px;}
.y45{bottom:57.420000px;}
.y11{bottom:60.480000px;}
.y6{bottom:63.180000px;}
.y167{bottom:65.160000px;}
.y27{bottom:65.340000px;}
.yce{bottom:67.680000px;}
.y44{bottom:71.820000px;}
.yb{bottom:73.080000px;}
.yf{bottom:74.880000px;}
.y5{bottom:84.450000px;}
.y26{bottom:85.140000px;}
.y164{bottom:85.185000px;}
.ya{bottom:92.370000px;}
.y9d{bottom:101.520000px;}
.y136{bottom:102.060000px;}
.y41{bottom:103.500000px;}
.y166{bottom:104.940000px;}
.y25{bottom:104.970000px;}
.y163{bottom:105.165000px;}
.y4{bottom:106.950000px;}
.y9{bottom:110.190000px;}
.y180{bottom:110.520000px;}
.y16a{bottom:112.140000px;}
.y9b{bottom:113.940000px;}
.y150{bottom:115.200000px;}
.y12d{bottom:115.380000px;}
.yf6{bottom:118.620000px;}
.y79{bottom:121.320000px;}
.y40{bottom:123.300000px;}
.y135{bottom:124.380000px;}
.y24{bottom:124.950000px;}
.y162{bottom:124.965000px;}
.y3{bottom:126.750000px;}
.y17f{bottom:130.320000px;}
.y9a{bottom:133.740000px;}
.y168{bottom:134.460000px;}
.y14f{bottom:135.000000px;}
.yf5{bottom:136.800000px;}
.y118{bottom:137.700000px;}
.y78{bottom:141.300000px;}
.y3f{bottom:143.100000px;}
.y23{bottom:144.750000px;}
.y161{bottom:144.765000px;}
.y17e{bottom:150.300000px;}
.y99{bottom:153.750000px;}
.ycd{bottom:154.650000px;}
.y14e{bottom:154.830000px;}
.ya6{bottom:155.190000px;}
.y117{bottom:157.530000px;}
.y77{bottom:161.130000px;}
.yf4{bottom:161.850000px;}
.y3e{bottom:162.930000px;}
.y22{bottom:164.550000px;}
.y17d{bottom:170.130000px;}
.y98{bottom:173.550000px;}
.y14d{bottom:174.630000px;}
.y116{bottom:177.510000px;}
.y134{bottom:179.850000px;}
.y76{bottom:180.930000px;}
.y3d{bottom:182.730000px;}
.y21{bottom:184.350000px;}
.yf3{bottom:187.050000px;}
.y17c{bottom:189.930000px;}
.y165{bottom:190.110000px;}
.y14c{bottom:194.610000px;}
.y115{bottom:197.310000px;}
.y75{bottom:200.730000px;}
.y97{bottom:202.350000px;}
.y3c{bottom:202.710000px;}
.y20{bottom:204.150000px;}
.y17b{bottom:209.730000px;}
.ycc{bottom:210.090000px;}
.yf2{bottom:212.070000px;}
.y14b{bottom:214.410000px;}
.ya5{bottom:216.030000px;}
.y114{bottom:217.110000px;}
.y74{bottom:220.530000px;}
.y96{bottom:222.150000px;}
.y3b{bottom:222.510000px;}
.y1f{bottom:224.130000px;}
.y17a{bottom:229.530000px;}
.y14a{bottom:234.210000px;}
.y133{bottom:235.290000px;}
.y113{bottom:236.910000px;}
.yf1{bottom:237.270000px;}
.y73{bottom:240.510000px;}
.y95{bottom:241.950000px;}
.y3a{bottom:242.310000px;}
.y1e{bottom:243.930000px;}
.yca{bottom:245.730000px;}
.y179{bottom:249.510000px;}
.y149{bottom:254.010000px;}
.y112{bottom:256.710000px;}
.y72{bottom:260.310000px;}
.y94{bottom:261.930000px;}
.y39{bottom:262.110000px;}
.yf0{bottom:262.290000px;}
.y1d{bottom:263.730000px;}
.y178{bottom:269.310000px;}
.y148{bottom:273.810000px;}
.y111{bottom:276.690000px;}
.y93{bottom:278.670000px;}
.y71{bottom:280.110000px;}
.y38{bottom:281.910000px;}
.y1c{bottom:283.530000px;}
.yc9{bottom:286.590000px;}
.y177{bottom:289.110000px;}
.y132{bottom:290.730000px;}
.yef{bottom:291.990000px;}
.y147{bottom:293.790000px;}
.y110{bottom:296.490000px;}
.y70{bottom:299.910000px;}
.y37{bottom:301.890000px;}
.y1b{bottom:303.330000px;}
.y176{bottom:308.910000px;}
.ya3{bottom:311.250000px;}
.yee{bottom:311.790000px;}
.y146{bottom:313.590000px;}
.y10f{bottom:316.290000px;}
.y6f{bottom:319.710000px;}
.y36{bottom:321.690000px;}
.y12c{bottom:324.570000px;}
.y160{bottom:324.750000px;}
.y175{bottom:328.710000px;}
.yed{bottom:331.770000px;}
.y145{bottom:333.390000px;}
.y10e{bottom:336.090000px;}
.y6e{bottom:339.690000px;}
.y35{bottom:341.490000px;}
.yc8{bottom:342.030000px;}
.y12b{bottom:344.370000px;}
.y174{bottom:348.690000px;}
.yec{bottom:351.570000px;}
.y144{bottom:353.190000px;}
.y10d{bottom:355.890000px;}
.y6d{bottom:359.490000px;}
.y34{bottom:361.290000px;}
.y12a{bottom:364.170000px;}
.y173{bottom:368.490000px;}
.yeb{bottom:371.370000px;}
.y143{bottom:372.990000px;}
.y10c{bottom:378.210000px;}
.y6c{bottom:379.290000px;}
.y33{bottom:381.090000px;}
.y129{bottom:383.970000px;}
.ya0{bottom:386.490000px;}
.y172{bottom:388.290000px;}
.yea{bottom:391.170000px;}
.y142{bottom:392.970000px;}
.yc7{bottom:395.670000px;}
.y6b{bottom:399.090000px;}
.y32{bottom:401.115000px;}
.y128{bottom:403.995000px;}
.y171{bottom:408.135000px;}
.ye9{bottom:411.015000px;}
.y141{bottom:412.815000px;}
.y10b{bottom:413.895000px;}
.yc6{bottom:415.515000px;}
.y6a{bottom:418.935000px;}
.y31{bottom:420.915000px;}
.y127{bottom:423.795000px;}
.y170{bottom:427.935000px;}
.ye8{bottom:430.995000px;}
.y140{bottom:432.615000px;}
.yc5{bottom:435.495000px;}
.y69{bottom:438.915000px;}
.y30{bottom:440.715000px;}
.y126{bottom:443.595000px;}
.y16f{bottom:447.915000px;}
.y10a{bottom:449.535000px;}
.ye7{bottom:450.795000px;}
.y13f{bottom:452.415000px;}
.yc4{bottom:455.295000px;}
.y68{bottom:458.715000px;}
.y2f{bottom:460.515000px;}
.y125{bottom:463.395000px;}
.y9e{bottom:464.475000px;}
.y16e{bottom:467.715000px;}
.ye6{bottom:470.595000px;}
.y13e{bottom:474.735000px;}
.yc3{bottom:475.095000px;}
.y67{bottom:478.515000px;}
.y2e{bottom:480.315000px;}
.y124{bottom:483.195000px;}
.y109{bottom:483.375000px;}
.y16d{bottom:487.515000px;}
.ye5{bottom:490.395000px;}
.yc2{bottom:494.895000px;}
.y66{bottom:498.315000px;}
.y15f{bottom:499.215000px;}
.y2d{bottom:500.295000px;}
.y108{bottom:503.175000px;}
.y16c{bottom:507.315000px;}
.ye4{bottom:510.195000px;}
.yc1{bottom:514.695000px;}
.y65{bottom:518.115000px;}
.y2c{bottom:520.095000px;}
.y107{bottom:522.975000px;}
.y16b{bottom:527.115000px;}
.ye3{bottom:530.175000px;}
.yc0{bottom:534.675000px;}
.y2b{bottom:534.855000px;}
.y64{bottom:538.095000px;}
.y106{bottom:542.775000px;}
.y131{bottom:545.295000px;}
.y9c{bottom:547.095000px;}
.ye2{bottom:549.975000px;}
.y13d{bottom:552.675000px;}
.ybf{bottom:554.475000px;}
.y1a{bottom:555.375000px;}
.y8a{bottom:557.895000px;}
.y123{bottom:562.575000px;}
.y105{bottom:562.755000px;}
.y63{bottom:566.895000px;}
.ye1{bottom:569.775000px;}
.ybe{bottom:574.275000px;}
.y89{bottom:577.695000px;}
.y130{bottom:580.755000px;}
.y122{bottom:582.375000px;}
.y104{bottom:582.555000px;}
.y62{bottom:586.695000px;}
.ye0{bottom:589.575000px;}
.ybd{bottom:594.075000px;}
.y15e{bottom:594.435000px;}
.y88{bottom:597.495000px;}
.y103{bottom:602.355000px;}
.y61{bottom:606.495000px;}
.ydf{bottom:609.375000px;}
.ybc{bottom:613.875000px;}
.y12f{bottom:616.395000px;}
.y87{bottom:617.295000px;}
.y102{bottom:622.155000px;}
.y60{bottom:626.295000px;}
.y13a{bottom:630.795000px;}
.ydd{bottom:631.695000px;}
.ybb{bottom:633.855000px;}
.y86{bottom:637.275000px;}
.y101{bottom:641.955000px;}
.y5f{bottom:646.275000px;}
.y12e{bottom:652.065000px;}
.yba{bottom:653.685000px;}
.y85{bottom:657.105000px;}
.y121{bottom:661.785000px;}
.y100{bottom:661.965000px;}
.y5e{bottom:666.105000px;}
.y15d{bottom:667.905000px;}
.ydc{bottom:669.705000px;}
.yb9{bottom:673.485000px;}
.y84{bottom:676.905000px;}
.y120{bottom:681.585000px;}
.yff{bottom:681.765000px;}
.y5d{bottom:685.905000px;}
.y15c{bottom:687.885000px;}
.yb8{bottom:693.285000px;}
.y83{bottom:696.705000px;}
.yfe{bottom:701.565000px;}
.y5c{bottom:705.705000px;}
.y15b{bottom:707.685000px;}
.y137{bottom:708.765000px;}
.yb7{bottom:713.085000px;}
.y82{bottom:716.505000px;}
.yfd{bottom:721.365000px;}
.ydb{bottom:725.145000px;}
.y5b{bottom:725.505000px;}
.y15a{bottom:730.005000px;}
.yb6{bottom:733.065000px;}
.y81{bottom:736.485000px;}
.yfc{bottom:741.165000px;}
.y5a{bottom:745.485000px;}
.yb5{bottom:752.865000px;}
.y80{bottom:756.285000px;}
.yfb{bottom:759.345000px;}
.y11f{bottom:760.965000px;}
.y59{bottom:765.285000px;}
.yda{bottom:766.005000px;}
.yb4{bottom:772.665000px;}
.y7f{bottom:776.085000px;}
.y11e{bottom:780.765000px;}
.yfa{bottom:784.545000px;}
.y58{bottom:785.085000px;}
.yb3{bottom:792.465000px;}
.y7e{bottom:795.885000px;}
.y11d{bottom:803.085000px;}
.y57{bottom:804.885000px;}
.y159{bottom:805.245000px;}
.yd8{bottom:806.865000px;}
.yf9{bottom:809.565000px;}
.yb2{bottom:812.265000px;}
.y7d{bottom:815.685000px;}
.y56{bottom:824.685000px;}
.yb1{bottom:832.245000px;}
.yf8{bottom:834.585000px;}
.y7c{bottom:835.665000px;}
.y55{bottom:844.665000px;}
.yd7{bottom:848.445000px;}
.yb0{bottom:852.045000px;}
.y7b{bottom:855.465000px;}
.y54{bottom:864.465000px;}
.yaf{bottom:871.845000px;}
.y18{bottom:873.645000px;}
.y7a{bottom:875.265000px;}
.y11b{bottom:878.325000px;}
.y156{bottom:880.485000px;}
.y53{bottom:884.265000px;}
.yae{bottom:891.645000px;}
.y92{bottom:895.065000px;}
.y17{bottom:903.030000px;}
.yd6{bottom:903.930000px;}
.y52{bottom:904.110000px;}
.yad{bottom:911.490000px;}
.y91{bottom:914.910000px;}
.y51{bottom:923.910000px;}
.y16{bottom:928.050000px;}
.yac{bottom:931.470000px;}
.y11a{bottom:933.810000px;}
.y90{bottom:934.890000px;}
.y15{bottom:943.170000px;}
.y50{bottom:943.890000px;}
.yd5{bottom:944.790000px;}
.yaa{bottom:953.610000px;}
.y8f{bottom:954.690000px;}
.y155{bottom:955.770000px;}
.y4f{bottom:963.690000px;}
.y14{bottom:964.590000px;}
.y8e{bottom:974.490000px;}
.y4e{bottom:983.490000px;}
.yd4{bottom:985.650000px;}
.y13{bottom:987.990000px;}
.y119{bottom:989.250000px;}
.y8d{bottom:994.290000px;}
.y4d{bottom:1003.290000px;}
.y8c{bottom:1014.090000px;}
.y12{bottom:1019.670000px;}
.y4c{bottom:1023.090000px;}
.yd3{bottom:1026.510000px;}
.y152{bottom:1031.010000px;}
.y8b{bottom:1034.070000px;}
.y4b{bottom:1043.070000px;}
.ye{bottom:1045.590000px;}
.ya9{bottom:1048.830000px;}
.yf7{bottom:1053.870000px;}
.y4a{bottom:1062.870000px;}
.yd1{bottom:1067.370000px;}
.y1{bottom:1067.730000px;}
.y49{bottom:1082.670000px;}
.y151{bottom:1088.430000px;}
.y48{bottom:1102.470000px;}
.yd0{bottom:1108.230000px;}
.y47{bottom:1122.270000px;}
.y46{bottom:1142.250000px;}
.y43{bottom:1171.620000px;}
.y42{bottom:1193.400000px;}
.h3{height:2.566406px;}
.h12{height:19.800000px;}
.h22{height:19.836000px;}
.h21{height:19.980000px;}
.h20{height:22.176000px;}
.ha{height:22.500000px;}
.h10{height:22.860000px;}
.h1b{height:25.020000px;}
.h1e{height:25.200000px;}
.h1f{height:25.920000px;}
.hf{height:34.646484px;}
.h1a{height:39.600000px;}
.h23{height:39.636000px;}
.h1c{height:39.780000px;}
.h1d{height:39.816000px;}
.h26{height:41.760000px;}
.h4{height:42.164648px;}
.h18{height:45.180000px;}
.h8{height:48.120117px;}
.h9{height:48.224531px;}
.h13{height:48.496641px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h6{height:53.252930px;}
.hb{height:59.027344px;}
.h16{height:59.400000px;}
.h27{height:59.436000px;}
.hd{height:59.439023px;}
.h14{height:59.580000px;}
.h15{height:62.136000px;}
.h24{height:62.280000px;}
.h25{height:62.316000px;}
.h7{height:64.160156px;}
.he{height:67.565039px;}
.h17{height:79.380000px;}
.h19{height:99.216000px;}
.h29{height:118.980000px;}
.h2{height:140.796000px;}
.h28{height:158.790000px;}
.h11{height:317.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.496000px;}
.w3c{width:38.340000px;}
.w12{width:38.520000px;}
.wb{width:40.500000px;}
.w14{width:45.720000px;}
.w23{width:47.736000px;}
.w43{width:52.380000px;}
.w2c{width:52.560000px;}
.w2b{width:52.596000px;}
.w15{width:52.740000px;}
.w30{width:52.776000px;}
.w25{width:52.956000px;}
.w34{width:54.900000px;}
.w21{width:56.700000px;}
.w22{width:56.880000px;}
.wf{width:57.060000px;}
.w3b{width:57.780000px;}
.w3d{width:57.816000px;}
.w16{width:59.256000px;}
.w33{width:63.576000px;}
.w20{width:74.376000px;}
.w28{width:82.980000px;}
.w44{width:84.456000px;}
.wd{width:87.300000px;}
.w3a{width:87.336000px;}
.we{width:90.396000px;}
.w10{width:93.636000px;}
.w41{width:94.536000px;}
.w40{width:94.860000px;}
.w3f{width:95.076000px;}
.w42{width:95.220000px;}
.w38{width:96.840000px;}
.w39{width:97.056000px;}
.w1b{width:116.820000px;}
.w17{width:120.060000px;}
.w2f{width:123.840000px;}
.w27{width:124.596000px;}
.w1c{width:129.276000px;}
.w2a{width:133.920000px;}
.w24{width:142.020000px;}
.w11{width:147.780000px;}
.w4{width:158.970000px;}
.w1d{width:167.070000px;}
.w3e{width:169.050000px;}
.w8{width:170.130000px;}
.w2{width:172.830000px;}
.wc{width:180.210000px;}
.w19{width:183.270000px;}
.w18{width:195.150000px;}
.w31{width:195.870000px;}
.w26{width:199.650000px;}
.w2e{width:207.930000px;}
.w35{width:214.230000px;}
.w2d{width:223.410000px;}
.w37{width:230.835000px;}
.w1e{width:239.610000px;}
.w1a{width:240.510000px;}
.w36{width:245.730000px;}
.w32{width:246.810000px;}
.w29{width:269.535000px;}
.w1f{width:306.210000px;}
.w13{width:339.915000px;}
.w3{width:464.865000px;}
.w9{width:607.650000px;}
.w7{width:748.950000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.080000px;}
.x15{left:7.020000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x3d{left:67.140000px;}
.x44{left:74.880000px;}
.x6{left:80.865000px;}
.x10{left:88.595987px;}
.xc{left:90.216000px;}
.x13{left:95.796000px;}
.x28{left:102.816000px;}
.x2d{left:108.035987px;}
.x31{left:109.836000px;}
.x24{left:115.596000px;}
.x1b{left:116.676000px;}
.x20{left:134.136000px;}
.x14{left:137.016000px;}
.x7{left:140.085000px;}
.x1c{left:155.910000px;}
.x2{left:160.050000px;}
.x39{left:216.570000px;}
.x3{left:221.070000px;}
.xe{left:227.730000px;}
.x36{left:233.670000px;}
.x25{left:235.470000px;}
.x32{left:244.650000px;}
.x5{left:248.295000px;}
.x3a{left:280.875000px;}
.x37{left:287.175000px;}
.x33{left:297.975000px;}
.x16{left:318.135000px;}
.x11{left:326.594987px;}
.x22{left:332.355000px;}
.x2e{left:334.335000px;}
.x3b{left:336.495000px;}
.x38{left:340.635000px;}
.x34{left:351.255000px;}
.x26{left:367.815000px;}
.x3e{left:396.615000px;}
.x17{left:406.155000px;}
.x29{left:409.755000px;}
.x12{left:419.474987px;}
.x45{left:436.035000px;}
.x2f{left:459.645000px;}
.xf{left:473.504987px;}
.x2a{left:484.845000px;}
.x3f{left:494.385000px;}
.x18{left:497.265000px;}
.x4a{left:500.504987px;}
.x23{left:518.505000px;}
.x4b{left:527.504987px;}
.x46{left:531.465000px;}
.x27{left:537.945000px;}
.x1d{left:542.985000px;}
.x3c{left:551.445000px;}
.x19{left:555.045000px;}
.x35{left:575.385000px;}
.x40{left:582.405000px;}
.x1e{left:596.445000px;}
.x2b{left:599.865000px;}
.x47{left:627.450000px;}
.x2c{left:648.330000px;}
.x1a{left:649.410000px;}
.x1f{left:656.430000px;}
.x41{left:670.470000px;}
.x48{left:680.730000px;}
.x8{left:685.950000px;}
.x42{left:729.150000px;}
.x49{left:733.830000px;}
.x43{left:768.210000px;}
.x30{left:773.969987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-1.050667pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.456533pt;}
.ls2{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.157867pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094720pt;}
.ls3{letter-spacing:0.097280pt;}
.ls5{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.120533pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls16{letter-spacing:10.400000pt;}
.lsf{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:11.680000pt;}
.ls10{letter-spacing:12.960000pt;}
.ls17{letter-spacing:14.240000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls19{letter-spacing:15.040000pt;}
.ls1e{letter-spacing:27.040000pt;}
.ls15{letter-spacing:40.912640pt;}
.lsa{letter-spacing:53.920000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.122133pt;}
.ws9{word-spacing:-13.054933pt;}
.ws7{word-spacing:-13.049067pt;}
.ws1{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-5.824427pt;}
._d{margin-left:-3.415040pt;}
._e{margin-left:-1.871360pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._11{width:2.629333pt;}
._12{width:4.046080pt;}
._14{width:5.205760pt;}
._18{width:6.108800pt;}
._17{width:7.330560pt;}
._3{width:8.480000pt;}
._13{width:9.793280pt;}
._1{width:11.040000pt;}
._16{width:12.164480pt;}
._1a{width:14.236160pt;}
._f{width:15.917440pt;}
._15{width:17.004373pt;}
._10{width:17.900373pt;}
._20{width:19.070080pt;}
._1d{width:20.451200pt;}
._23{width:21.351680pt;}
._19{width:22.310400pt;}
._22{width:23.266560pt;}
._1e{width:24.807040pt;}
._1f{width:25.763200pt;}
._1c{width:27.356800pt;}
._1b{width:28.366080pt;}
._31{width:29.971840pt;}
._30{width:30.915840pt;}
._2b{width:32.243840pt;}
._2f{width:33.424000pt;}
._21{width:34.695680pt;}
._25{width:36.247680pt;}
._2a{width:37.589120pt;}
._28{width:38.671360pt;}
._24{width:40.371200pt;}
._3b{width:41.380480pt;}
._42{width:42.496000pt;}
._32{width:46.055040pt;}
._2e{width:49.029760pt;}
._2d{width:50.145280pt;}
._3c{width:51.360000pt;}
._29{width:53.066880pt;}
._39{width:54.341760pt;}
._36{width:56.732160pt;}
._41{width:64.912640pt;}
._3e{width:65.975040pt;}
._38{width:68.577920pt;}
._43{width:70.968320pt;}
._2c{width:74.725760pt;}
._3d{width:77.130240pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._35{width:93.225600pt;}
._34{width:94.128640pt;}
._9{width:96.160000pt;}
._3f{width:98.949547pt;}
._47{width:102.787200pt;}
._40{width:107.568000pt;}
._33{width:121.697493pt;}
._49{width:129.665920pt;}
._27{width:133.171840pt;}
._26{width:136.146560pt;}
._46{width:138.271360pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._37{width:181.617280pt;}
._a{width:204.320000pt;}
._3a{width:221.457280pt;}
._44{width:238.922027pt;}
._7{width:263.840000pt;}
._48{width:275.320960pt;}
._45{width:318.773120pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y2a{bottom:5.120000pt;}
.yab{bottom:5.280000pt;}
.y10{bottom:6.400000pt;}
.y154{bottom:6.880000pt;}
.yde{bottom:7.200000pt;}
.y19{bottom:7.840000pt;}
.ycb{bottom:9.760000pt;}
.yd2{bottom:9.920000pt;}
.ya8{bottom:10.080000pt;}
.yd9{bottom:10.560000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y9f{bottom:22.720000pt;}
.y158{bottom:22.760000pt;}
.y29{bottom:22.880000pt;}
.y169{bottom:22.906667pt;}
.y11c{bottom:22.920000pt;}
.y153{bottom:24.640000pt;}
.y13c{bottom:25.146667pt;}
.ya2{bottom:25.160000pt;}
.y139{bottom:25.280000pt;}
.ya7{bottom:27.680000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.ya4{bottom:40.320000pt;}
.y157{bottom:40.360000pt;}
.y28{bottom:40.480000pt;}
.ya1{bottom:42.760000pt;}
.y138{bottom:42.880000pt;}
.y13b{bottom:42.906667pt;}
.ycf{bottom:47.360000pt;}
.y45{bottom:51.040000pt;}
.y11{bottom:53.760000pt;}
.y6{bottom:56.160000pt;}
.y167{bottom:57.920000pt;}
.y27{bottom:58.080000pt;}
.yce{bottom:60.160000pt;}
.y44{bottom:63.840000pt;}
.yb{bottom:64.960000pt;}
.yf{bottom:66.560000pt;}
.y5{bottom:75.066667pt;}
.y26{bottom:75.680000pt;}
.y164{bottom:75.720000pt;}
.ya{bottom:82.106667pt;}
.y9d{bottom:90.240000pt;}
.y136{bottom:90.720000pt;}
.y41{bottom:92.000000pt;}
.y166{bottom:93.280000pt;}
.y25{bottom:93.306667pt;}
.y163{bottom:93.480000pt;}
.y4{bottom:95.066667pt;}
.y9{bottom:97.946667pt;}
.y180{bottom:98.240000pt;}
.y16a{bottom:99.680000pt;}
.y9b{bottom:101.280000pt;}
.y150{bottom:102.400000pt;}
.y12d{bottom:102.560000pt;}
.yf6{bottom:105.440000pt;}
.y79{bottom:107.840000pt;}
.y40{bottom:109.600000pt;}
.y135{bottom:110.560000pt;}
.y24{bottom:111.066667pt;}
.y162{bottom:111.080000pt;}
.y3{bottom:112.666667pt;}
.y17f{bottom:115.840000pt;}
.y9a{bottom:118.880000pt;}
.y168{bottom:119.520000pt;}
.y14f{bottom:120.000000pt;}
.yf5{bottom:121.600000pt;}
.y118{bottom:122.400000pt;}
.y78{bottom:125.600000pt;}
.y3f{bottom:127.200000pt;}
.y23{bottom:128.666667pt;}
.y161{bottom:128.680000pt;}
.y17e{bottom:133.600000pt;}
.y99{bottom:136.666667pt;}
.ycd{bottom:137.466667pt;}
.y14e{bottom:137.626667pt;}
.ya6{bottom:137.946667pt;}
.y117{bottom:140.026667pt;}
.y77{bottom:143.226667pt;}
.yf4{bottom:143.866667pt;}
.y3e{bottom:144.826667pt;}
.y22{bottom:146.266667pt;}
.y17d{bottom:151.226667pt;}
.y98{bottom:154.266667pt;}
.y14d{bottom:155.226667pt;}
.y116{bottom:157.786667pt;}
.y134{bottom:159.866667pt;}
.y76{bottom:160.826667pt;}
.y3d{bottom:162.426667pt;}
.y21{bottom:163.866667pt;}
.yf3{bottom:166.266667pt;}
.y17c{bottom:168.826667pt;}
.y165{bottom:168.986667pt;}
.y14c{bottom:172.986667pt;}
.y115{bottom:175.386667pt;}
.y75{bottom:178.426667pt;}
.y97{bottom:179.866667pt;}
.y3c{bottom:180.186667pt;}
.y20{bottom:181.466667pt;}
.y17b{bottom:186.426667pt;}
.ycc{bottom:186.746667pt;}
.yf2{bottom:188.506667pt;}
.y14b{bottom:190.586667pt;}
.ya5{bottom:192.026667pt;}
.y114{bottom:192.986667pt;}
.y74{bottom:196.026667pt;}
.y96{bottom:197.466667pt;}
.y3b{bottom:197.786667pt;}
.y1f{bottom:199.226667pt;}
.y17a{bottom:204.026667pt;}
.y14a{bottom:208.186667pt;}
.y133{bottom:209.146667pt;}
.y113{bottom:210.586667pt;}
.yf1{bottom:210.906667pt;}
.y73{bottom:213.786667pt;}
.y95{bottom:215.066667pt;}
.y3a{bottom:215.386667pt;}
.y1e{bottom:216.826667pt;}
.yca{bottom:218.426667pt;}
.y179{bottom:221.786667pt;}
.y149{bottom:225.786667pt;}
.y112{bottom:228.186667pt;}
.y72{bottom:231.386667pt;}
.y94{bottom:232.826667pt;}
.y39{bottom:232.986667pt;}
.yf0{bottom:233.146667pt;}
.y1d{bottom:234.426667pt;}
.y178{bottom:239.386667pt;}
.y148{bottom:243.386667pt;}
.y111{bottom:245.946667pt;}
.y93{bottom:247.706667pt;}
.y71{bottom:248.986667pt;}
.y38{bottom:250.586667pt;}
.y1c{bottom:252.026667pt;}
.yc9{bottom:254.746667pt;}
.y177{bottom:256.986667pt;}
.y132{bottom:258.426667pt;}
.yef{bottom:259.546667pt;}
.y147{bottom:261.146667pt;}
.y110{bottom:263.546667pt;}
.y70{bottom:266.586667pt;}
.y37{bottom:268.346667pt;}
.y1b{bottom:269.626667pt;}
.y176{bottom:274.586667pt;}
.ya3{bottom:276.666667pt;}
.yee{bottom:277.146667pt;}
.y146{bottom:278.746667pt;}
.y10f{bottom:281.146667pt;}
.y6f{bottom:284.186667pt;}
.y36{bottom:285.946667pt;}
.y12c{bottom:288.506667pt;}
.y160{bottom:288.666667pt;}
.y175{bottom:292.186667pt;}
.yed{bottom:294.906667pt;}
.y145{bottom:296.346667pt;}
.y10e{bottom:298.746667pt;}
.y6e{bottom:301.946667pt;}
.y35{bottom:303.546667pt;}
.yc8{bottom:304.026667pt;}
.y12b{bottom:306.106667pt;}
.y174{bottom:309.946667pt;}
.yec{bottom:312.506667pt;}
.y144{bottom:313.946667pt;}
.y10d{bottom:316.346667pt;}
.y6d{bottom:319.546667pt;}
.y34{bottom:321.146667pt;}
.y12a{bottom:323.706667pt;}
.y173{bottom:327.546667pt;}
.yeb{bottom:330.106667pt;}
.y143{bottom:331.546667pt;}
.y10c{bottom:336.186667pt;}
.y6c{bottom:337.146667pt;}
.y33{bottom:338.746667pt;}
.y129{bottom:341.306667pt;}
.ya0{bottom:343.546667pt;}
.y172{bottom:345.146667pt;}
.yea{bottom:347.706667pt;}
.y142{bottom:349.306667pt;}
.yc7{bottom:351.706667pt;}
.y6b{bottom:354.746667pt;}
.y32{bottom:356.546667pt;}
.y128{bottom:359.106667pt;}
.y171{bottom:362.786667pt;}
.ye9{bottom:365.346667pt;}
.y141{bottom:366.946667pt;}
.y10b{bottom:367.906667pt;}
.yc6{bottom:369.346667pt;}
.y6a{bottom:372.386667pt;}
.y31{bottom:374.146667pt;}
.y127{bottom:376.706667pt;}
.y170{bottom:380.386667pt;}
.ye8{bottom:383.106667pt;}
.y140{bottom:384.546667pt;}
.yc5{bottom:387.106667pt;}
.y69{bottom:390.146667pt;}
.y30{bottom:391.746667pt;}
.y126{bottom:394.306667pt;}
.y16f{bottom:398.146667pt;}
.y10a{bottom:399.586667pt;}
.ye7{bottom:400.706667pt;}
.y13f{bottom:402.146667pt;}
.yc4{bottom:404.706667pt;}
.y68{bottom:407.746667pt;}
.y2f{bottom:409.346667pt;}
.y125{bottom:411.906667pt;}
.y9e{bottom:412.866667pt;}
.y16e{bottom:415.746667pt;}
.ye6{bottom:418.306667pt;}
.y13e{bottom:421.986667pt;}
.yc3{bottom:422.306667pt;}
.y67{bottom:425.346667pt;}
.y2e{bottom:426.946667pt;}
.y124{bottom:429.506667pt;}
.y109{bottom:429.666667pt;}
.y16d{bottom:433.346667pt;}
.ye5{bottom:435.906667pt;}
.yc2{bottom:439.906667pt;}
.y66{bottom:442.946667pt;}
.y15f{bottom:443.746667pt;}
.y2d{bottom:444.706667pt;}
.y108{bottom:447.266667pt;}
.y16c{bottom:450.946667pt;}
.ye4{bottom:453.506667pt;}
.yc1{bottom:457.506667pt;}
.y65{bottom:460.546667pt;}
.y2c{bottom:462.306667pt;}
.y107{bottom:464.866667pt;}
.y16b{bottom:468.546667pt;}
.ye3{bottom:471.266667pt;}
.yc0{bottom:475.266667pt;}
.y2b{bottom:475.426667pt;}
.y64{bottom:478.306667pt;}
.y106{bottom:482.466667pt;}
.y131{bottom:484.706667pt;}
.y9c{bottom:486.306667pt;}
.ye2{bottom:488.866667pt;}
.y13d{bottom:491.266667pt;}
.ybf{bottom:492.866667pt;}
.y1a{bottom:493.666667pt;}
.y8a{bottom:495.906667pt;}
.y123{bottom:500.066667pt;}
.y105{bottom:500.226667pt;}
.y63{bottom:503.906667pt;}
.ye1{bottom:506.466667pt;}
.ybe{bottom:510.466667pt;}
.y89{bottom:513.506667pt;}
.y130{bottom:516.226667pt;}
.y122{bottom:517.666667pt;}
.y104{bottom:517.826667pt;}
.y62{bottom:521.506667pt;}
.ye0{bottom:524.066667pt;}
.ybd{bottom:528.066667pt;}
.y15e{bottom:528.386667pt;}
.y88{bottom:531.106667pt;}
.y103{bottom:535.426667pt;}
.y61{bottom:539.106667pt;}
.ydf{bottom:541.666667pt;}
.ybc{bottom:545.666667pt;}
.y12f{bottom:547.906667pt;}
.y87{bottom:548.706667pt;}
.y102{bottom:553.026667pt;}
.y60{bottom:556.706667pt;}
.y13a{bottom:560.706667pt;}
.ydd{bottom:561.506667pt;}
.ybb{bottom:563.426667pt;}
.y86{bottom:566.466667pt;}
.y101{bottom:570.626667pt;}
.y5f{bottom:574.466667pt;}
.y12e{bottom:579.613333pt;}
.yba{bottom:581.053333pt;}
.y85{bottom:584.093333pt;}
.y121{bottom:588.253333pt;}
.y100{bottom:588.413333pt;}
.y5e{bottom:592.093333pt;}
.y15d{bottom:593.693333pt;}
.ydc{bottom:595.293333pt;}
.yb9{bottom:598.653333pt;}
.y84{bottom:601.693333pt;}
.y120{bottom:605.853333pt;}
.yff{bottom:606.013333pt;}
.y5d{bottom:609.693333pt;}
.y15c{bottom:611.453333pt;}
.yb8{bottom:616.253333pt;}
.y83{bottom:619.293333pt;}
.yfe{bottom:623.613333pt;}
.y5c{bottom:627.293333pt;}
.y15b{bottom:629.053333pt;}
.y137{bottom:630.013333pt;}
.yb7{bottom:633.853333pt;}
.y82{bottom:636.893333pt;}
.yfd{bottom:641.213333pt;}
.ydb{bottom:644.573333pt;}
.y5b{bottom:644.893333pt;}
.y15a{bottom:648.893333pt;}
.yb6{bottom:651.613333pt;}
.y81{bottom:654.653333pt;}
.yfc{bottom:658.813333pt;}
.y5a{bottom:662.653333pt;}
.yb5{bottom:669.213333pt;}
.y80{bottom:672.253333pt;}
.yfb{bottom:674.973333pt;}
.y11f{bottom:676.413333pt;}
.y59{bottom:680.253333pt;}
.yda{bottom:680.893333pt;}
.yb4{bottom:686.813333pt;}
.y7f{bottom:689.853333pt;}
.y11e{bottom:694.013333pt;}
.yfa{bottom:697.373333pt;}
.y58{bottom:697.853333pt;}
.yb3{bottom:704.413333pt;}
.y7e{bottom:707.453333pt;}
.y11d{bottom:713.853333pt;}
.y57{bottom:715.453333pt;}
.y159{bottom:715.773333pt;}
.yd8{bottom:717.213333pt;}
.yf9{bottom:719.613333pt;}
.yb2{bottom:722.013333pt;}
.y7d{bottom:725.053333pt;}
.y56{bottom:733.053333pt;}
.yb1{bottom:739.773333pt;}
.yf8{bottom:741.853333pt;}
.y7c{bottom:742.813333pt;}
.y55{bottom:750.813333pt;}
.yd7{bottom:754.173333pt;}
.yb0{bottom:757.373333pt;}
.y7b{bottom:760.413333pt;}
.y54{bottom:768.413333pt;}
.yaf{bottom:774.973333pt;}
.y18{bottom:776.573333pt;}
.y7a{bottom:778.013333pt;}
.y11b{bottom:780.733333pt;}
.y156{bottom:782.653333pt;}
.y53{bottom:786.013333pt;}
.yae{bottom:792.573333pt;}
.y92{bottom:795.613333pt;}
.y17{bottom:802.693333pt;}
.yd6{bottom:803.493333pt;}
.y52{bottom:803.653333pt;}
.yad{bottom:810.213333pt;}
.y91{bottom:813.253333pt;}
.y51{bottom:821.253333pt;}
.y16{bottom:824.933333pt;}
.yac{bottom:827.973333pt;}
.y11a{bottom:830.053333pt;}
.y90{bottom:831.013333pt;}
.y15{bottom:838.373333pt;}
.y50{bottom:839.013333pt;}
.yd5{bottom:839.813333pt;}
.yaa{bottom:847.653333pt;}
.y8f{bottom:848.613333pt;}
.y155{bottom:849.573333pt;}
.y4f{bottom:856.613333pt;}
.y14{bottom:857.413333pt;}
.y8e{bottom:866.213333pt;}
.y4e{bottom:874.213333pt;}
.yd4{bottom:876.133333pt;}
.y13{bottom:878.213333pt;}
.y119{bottom:879.333333pt;}
.y8d{bottom:883.813333pt;}
.y4d{bottom:891.813333pt;}
.y8c{bottom:901.413333pt;}
.y12{bottom:906.373333pt;}
.y4c{bottom:909.413333pt;}
.yd3{bottom:912.453333pt;}
.y152{bottom:916.453333pt;}
.y8b{bottom:919.173333pt;}
.y4b{bottom:927.173333pt;}
.ye{bottom:929.413333pt;}
.ya9{bottom:932.293333pt;}
.yf7{bottom:936.773333pt;}
.y4a{bottom:944.773333pt;}
.yd1{bottom:948.773333pt;}
.y1{bottom:949.093333pt;}
.y49{bottom:962.373333pt;}
.y151{bottom:967.493333pt;}
.y48{bottom:979.973333pt;}
.yd0{bottom:985.093333pt;}
.y47{bottom:997.573333pt;}
.y46{bottom:1015.333333pt;}
.y43{bottom:1041.440000pt;}
.y42{bottom:1060.800000pt;}
.h3{height:2.281250pt;}
.h12{height:17.600000pt;}
.h22{height:17.632000pt;}
.h21{height:17.760000pt;}
.h20{height:19.712000pt;}
.ha{height:20.000000pt;}
.h10{height:20.320000pt;}
.h1b{height:22.240000pt;}
.h1e{height:22.400000pt;}
.h1f{height:23.040000pt;}
.hf{height:30.796875pt;}
.h1a{height:35.200000pt;}
.h23{height:35.232000pt;}
.h1c{height:35.360000pt;}
.h1d{height:35.392000pt;}
.h26{height:37.120000pt;}
.h4{height:37.479688pt;}
.h18{height:40.160000pt;}
.h8{height:42.773438pt;}
.h9{height:42.866250pt;}
.h13{height:43.108125pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h6{height:47.335938pt;}
.hb{height:52.468750pt;}
.h16{height:52.800000pt;}
.h27{height:52.832000pt;}
.hd{height:52.834688pt;}
.h14{height:52.960000pt;}
.h15{height:55.232000pt;}
.h24{height:55.360000pt;}
.h25{height:55.392000pt;}
.h7{height:57.031250pt;}
.he{height:60.057813pt;}
.h17{height:70.560000pt;}
.h19{height:88.192000pt;}
.h29{height:105.760000pt;}
.h2{height:125.152000pt;}
.h28{height:141.146667pt;}
.h11{height:282.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.552000pt;}
.w3c{width:34.080000pt;}
.w12{width:34.240000pt;}
.wb{width:36.000000pt;}
.w14{width:40.640000pt;}
.w23{width:42.432000pt;}
.w43{width:46.560000pt;}
.w2c{width:46.720000pt;}
.w2b{width:46.752000pt;}
.w15{width:46.880000pt;}
.w30{width:46.912000pt;}
.w25{width:47.072000pt;}
.w34{width:48.800000pt;}
.w21{width:50.400000pt;}
.w22{width:50.560000pt;}
.wf{width:50.720000pt;}
.w3b{width:51.360000pt;}
.w3d{width:51.392000pt;}
.w16{width:52.672000pt;}
.w33{width:56.512000pt;}
.w20{width:66.112000pt;}
.w28{width:73.760000pt;}
.w44{width:75.072000pt;}
.wd{width:77.600000pt;}
.w3a{width:77.632000pt;}
.we{width:80.352000pt;}
.w10{width:83.232000pt;}
.w41{width:84.032000pt;}
.w40{width:84.320000pt;}
.w3f{width:84.512000pt;}
.w42{width:84.640000pt;}
.w38{width:86.080000pt;}
.w39{width:86.272000pt;}
.w1b{width:103.840000pt;}
.w17{width:106.720000pt;}
.w2f{width:110.080000pt;}
.w27{width:110.752000pt;}
.w1c{width:114.912000pt;}
.w2a{width:119.040000pt;}
.w24{width:126.240000pt;}
.w11{width:131.360000pt;}
.w4{width:141.306667pt;}
.w1d{width:148.506667pt;}
.w3e{width:150.266667pt;}
.w8{width:151.226667pt;}
.w2{width:153.626667pt;}
.wc{width:160.186667pt;}
.w19{width:162.906667pt;}
.w18{width:173.466667pt;}
.w31{width:174.106667pt;}
.w26{width:177.466667pt;}
.w2e{width:184.826667pt;}
.w35{width:190.426667pt;}
.w2d{width:198.586667pt;}
.w37{width:205.186667pt;}
.w1e{width:212.986667pt;}
.w1a{width:213.786667pt;}
.w36{width:218.426667pt;}
.w32{width:219.386667pt;}
.w29{width:239.586667pt;}
.w1f{width:272.186667pt;}
.w13{width:302.146667pt;}
.w3{width:413.213333pt;}
.w9{width:540.133333pt;}
.w7{width:665.733333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:0.960000pt;}
.x15{left:6.240000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x3d{left:59.680000pt;}
.x44{left:66.560000pt;}
.x6{left:71.880000pt;}
.x10{left:78.751988pt;}
.xc{left:80.192000pt;}
.x13{left:85.152000pt;}
.x28{left:91.392000pt;}
.x2d{left:96.031988pt;}
.x31{left:97.632000pt;}
.x24{left:102.752000pt;}
.x1b{left:103.712000pt;}
.x20{left:119.232000pt;}
.x14{left:121.792000pt;}
.x7{left:124.520000pt;}
.x1c{left:138.586667pt;}
.x2{left:142.266667pt;}
.x39{left:192.506667pt;}
.x3{left:196.506667pt;}
.xe{left:202.426667pt;}
.x36{left:207.706667pt;}
.x25{left:209.306667pt;}
.x32{left:217.466667pt;}
.x5{left:220.706667pt;}
.x3a{left:249.666667pt;}
.x37{left:255.266667pt;}
.x33{left:264.866667pt;}
.x16{left:282.786667pt;}
.x11{left:290.306655pt;}
.x22{left:295.426667pt;}
.x2e{left:297.186667pt;}
.x3b{left:299.106667pt;}
.x38{left:302.786667pt;}
.x34{left:312.226667pt;}
.x26{left:326.946667pt;}
.x3e{left:352.546667pt;}
.x17{left:361.026667pt;}
.x29{left:364.226667pt;}
.x12{left:372.866655pt;}
.x45{left:387.586667pt;}
.x2f{left:408.573333pt;}
.xf{left:420.893322pt;}
.x2a{left:430.973333pt;}
.x3f{left:439.453333pt;}
.x18{left:442.013333pt;}
.x4a{left:444.893322pt;}
.x23{left:460.893333pt;}
.x4b{left:468.893322pt;}
.x46{left:472.413333pt;}
.x27{left:478.173333pt;}
.x1d{left:482.653333pt;}
.x3c{left:490.173333pt;}
.x19{left:493.373333pt;}
.x35{left:511.453333pt;}
.x40{left:517.693333pt;}
.x1e{left:530.173333pt;}
.x2b{left:533.213333pt;}
.x47{left:557.733333pt;}
.x2c{left:576.293333pt;}
.x1a{left:577.253333pt;}
.x1f{left:583.493333pt;}
.x41{left:595.973333pt;}
.x48{left:605.093333pt;}
.x8{left:609.733333pt;}
.x42{left:648.133333pt;}
.x49{left:652.293333pt;}
.x43{left:682.853333pt;}
.x30{left:687.973322pt;}
}




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