
    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_c11e2211079bda8efd9f77f1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_64c7db7834241d79336d2453.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c779222f13c66f7eeab9d1e3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_b6f6fb7bbc4f299263ad9b5e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_ce25d2e110c83d27f23c62bb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_11b2f6468648272c6e1f61df.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_25d27d57a3ce4b8fe1bf5c6a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.166504;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ff2945e5e7ea2fab4d8e93aa.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.298200px;}
.ls10{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.152400px;}
.ls18{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.612720px;}
.ls11{letter-spacing:3.060000px;}
.ls19{letter-spacing:3.780000px;}
.lsc{letter-spacing:10.260000px;}
.ls2{letter-spacing:15.300000px;}
.ls1c{letter-spacing:39.881280px;}
.ls17{letter-spacing:42.402720px;}
.lsd{letter-spacing:46.002720px;}
.ls14{letter-spacing:46.026720px;}
.lse{letter-spacing:64.002720px;}
.ls13{letter-spacing:71.226720px;}
.ls5{letter-spacing:82.746720px;}
.ls1d{letter-spacing:114.426720px;}
.ls1b{letter-spacing:129.881280px;}
.lsf{letter-spacing:161.202720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws9{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws2{word-spacing:-13.482000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-15.777360px;}
._1a{margin-left:-4.128960px;}
._b{margin-left:-2.988000px;}
._0{margin-left:-1.008000px;}
._1{width:1.380000px;}
._c{width:2.384880px;}
._12{width:3.471600px;}
._7{width:4.476480px;}
._a{width:6.296400px;}
._8{width:7.679280px;}
._15{width:8.787600px;}
._f{width:9.974400px;}
._10{width:11.191680px;}
._11{width:13.027680px;}
._e{width:16.033200px;}
._18{width:17.205360px;}
._1b{width:18.406080px;}
._13{width:19.601280px;}
._14{width:21.567840px;}
._16{width:22.818240px;}
._1c{width:23.838720px;}
._17{width:24.919920px;}
._19{width:26.929680px;}
._1d{width:28.305120px;}
._21{width:29.700720px;}
._24{width:31.258320px;}
._1e{width:35.850480px;}
._5{width:39.083040px;}
._6{width:40.397760px;}
._20{width:72.483360px;}
._22{width:169.294560px;}
._1f{width:280.274400px;}
._4{width:393.420000px;}
._9{width:829.056000px;}
._3{width:833.400000px;}
._23{width:849.216000px;}
._2{width:1590.936000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.916000px;}
.y24{bottom:3.240000px;}
.y17b{bottom:3.285000px;}
.y23{bottom:20.520000px;}
.y14c{bottom:20.565000px;}
.y22{bottom:37.800000px;}
.y16e{bottom:37.830000px;}
.y165{bottom:37.845000px;}
.ye{bottom:43.740000px;}
.y21{bottom:54.900000px;}
.yc{bottom:68.580000px;}
.y20{bottom:72.180000px;}
.ya{bottom:94.896000px;}
.y1f{bottom:110.550000px;}
.y38{bottom:131.436000px;}
.ya3{bottom:132.156000px;}
.ye9{bottom:133.236000px;}
.y37{bottom:136.656000px;}
.y76{bottom:137.736000px;}
.yc1{bottom:138.636000px;}
.y10c{bottom:141.696000px;}
.yb2{bottom:142.056000px;}
.y145{bottom:142.956000px;}
.y16c{bottom:145.296000px;}
.y1e{bottom:148.710000px;}
.y36{bottom:149.076000px;}
.ya2{bottom:149.436000px;}
.ye8{bottom:150.510000px;}
.y1c5{bottom:152.490000px;}
.y75{bottom:155.010000px;}
.yc0{bottom:155.910000px;}
.y10b{bottom:158.790000px;}
.yb1{bottom:159.330000px;}
.y144{bottom:160.230000px;}
.y12a{bottom:161.670000px;}
.y16b{bottom:163.110000px;}
.y1d{bottom:165.990000px;}
.ya1{bottom:166.710000px;}
.ye7{bottom:167.610000px;}
.y74{bottom:172.290000px;}
.ybf{bottom:173.010000px;}
.y1c4{bottom:174.270000px;}
.y10a{bottom:176.070000px;}
.yb0{bottom:176.610000px;}
.y143{bottom:177.510000px;}
.y129{bottom:178.770000px;}
.y16a{bottom:181.110000px;}
.y1c{bottom:183.270000px;}
.ya0{bottom:183.990000px;}
.ye6{bottom:184.890000px;}
.y73{bottom:189.390000px;}
.ybe{bottom:190.290000px;}
.y109{bottom:193.350000px;}
.yaf{bottom:193.710000px;}
.y142{bottom:194.790000px;}
.y128{bottom:196.050000px;}
.y169{bottom:199.110000px;}
.y35{bottom:199.830000px;}
.y1b{bottom:200.550000px;}
.y9f{bottom:201.270000px;}
.ye5{bottom:202.170000px;}
.y72{bottom:206.670000px;}
.ybd{bottom:207.570000px;}
.y108{bottom:210.630000px;}
.yae{bottom:210.990000px;}
.y141{bottom:211.890000px;}
.y127{bottom:213.330000px;}
.y34{bottom:217.110000px;}
.y1a{bottom:217.650000px;}
.y1c3{bottom:218.010000px;}
.y9e{bottom:218.370000px;}
.ye4{bottom:219.450000px;}
.y71{bottom:223.950000px;}
.ybc{bottom:224.850000px;}
.y107{bottom:227.910000px;}
.yad{bottom:228.270000px;}
.y140{bottom:229.170000px;}
.y126{bottom:230.610000px;}
.y33{bottom:234.390000px;}
.y168{bottom:235.110000px;}
.y9d{bottom:235.650000px;}
.ye3{bottom:236.730000px;}
.y1c2{bottom:239.430000px;}
.y70{bottom:241.230000px;}
.ybb{bottom:242.130000px;}
.y106{bottom:245.010000px;}
.yac{bottom:245.550000px;}
.y13f{bottom:246.450000px;}
.y125{bottom:247.890000px;}
.y32{bottom:251.670000px;}
.y9c{bottom:252.930000px;}
.y167{bottom:253.110000px;}
.ye2{bottom:254.010000px;}
.y19{bottom:255.990000px;}
.y6f{bottom:258.510000px;}
.yba{bottom:259.410000px;}
.y1c1{bottom:259.770000px;}
.y105{bottom:262.290000px;}
.yab{bottom:262.830000px;}
.y13e{bottom:263.730000px;}
.y124{bottom:264.990000px;}
.y31{bottom:268.950000px;}
.y9b{bottom:270.210000px;}
.yb9{bottom:276.510000px;}
.y1c0{bottom:278.310000px;}
.y104{bottom:279.570000px;}
.yaa{bottom:279.930000px;}
.y13d{bottom:281.010000px;}
.y123{bottom:282.270000px;}
.ye1{bottom:284.430000px;}
.y30{bottom:286.230000px;}
.y9a{bottom:287.490000px;}
.y166{bottom:288.390000px;}
.y6e{bottom:289.110000px;}
.yb8{bottom:293.790000px;}
.y103{bottom:296.850000px;}
.y1bf{bottom:297.030000px;}
.ya9{bottom:297.210000px;}
.y13c{bottom:298.290000px;}
.y122{bottom:299.550000px;}
.ye0{bottom:303.150000px;}
.y2f{bottom:303.330000px;}
.y99{bottom:304.770000px;}
.y164{bottom:306.390000px;}
.y6d{bottom:307.650000px;}
.yb7{bottom:311.070000px;}
.y102{bottom:314.130000px;}
.ya8{bottom:314.490000px;}
.y13b{bottom:315.390000px;}
.y1be{bottom:315.570000px;}
.y121{bottom:316.830000px;}
.y2e{bottom:320.610000px;}
.ydf{bottom:321.690000px;}
.y98{bottom:321.870000px;}
.y6c{bottom:326.190000px;}
.y101{bottom:331.410000px;}
.ya7{bottom:331.770000px;}
.y13a{bottom:332.670000px;}
.y120{bottom:334.110000px;}
.y2d{bottom:337.935000px;}
.y97{bottom:339.195000px;}
.yde{bottom:340.455000px;}
.yb6{bottom:341.715000px;}
.y6b{bottom:344.955000px;}
.y100{bottom:348.555000px;}
.ya6{bottom:349.095000px;}
.y139{bottom:349.995000px;}
.y11f{bottom:351.435000px;}
.y1bd{bottom:352.875000px;}
.y2c{bottom:355.215000px;}
.y96{bottom:356.475000px;}
.ydd{bottom:358.995000px;}
.yb5{bottom:361.335000px;}
.y6a{bottom:363.495000px;}
.yff{bottom:365.835000px;}
.ya5{bottom:366.375000px;}
.y138{bottom:367.275000px;}
.y11e{bottom:368.535000px;}
.y1bc{bottom:371.955000px;}
.y2b{bottom:372.495000px;}
.y95{bottom:373.755000px;}
.ydc{bottom:377.715000px;}
.yb4{bottom:380.055000px;}
.y69{bottom:382.215000px;}
.yfe{bottom:383.115000px;}
.ya4{bottom:383.475000px;}
.y137{bottom:384.555000px;}
.y11d{bottom:385.815000px;}
.y2a{bottom:389.775000px;}
.y196{bottom:390.135000px;}
.y94{bottom:391.035000px;}
.y1bb{bottom:392.295000px;}
.y163{bottom:394.275000px;}
.ydb{bottom:394.995000px;}
.yb3{bottom:399.675000px;}
.yfd{bottom:400.395000px;}
.y68{bottom:400.755000px;}
.y136{bottom:401.655000px;}
.y29{bottom:406.875000px;}
.y93{bottom:408.135000px;}
.y195{bottom:409.935000px;}
.yda{bottom:412.095000px;}
.y162{bottom:412.275000px;}
.y1ba{bottom:412.815000px;}
.y11c{bottom:416.415000px;}
.yfc{bottom:417.675000px;}
.y67{bottom:418.035000px;}
.y135{bottom:418.935000px;}
.y28{bottom:424.155000px;}
.y92{bottom:425.415000px;}
.y194{bottom:427.215000px;}
.yd9{bottom:429.375000px;}
.y161{bottom:430.275000px;}
.y1b9{bottom:433.335000px;}
.yfb{bottom:434.955000px;}
.y11b{bottom:435.135000px;}
.y66{bottom:435.315000px;}
.y134{bottom:436.215000px;}
.y27{bottom:441.435000px;}
.y91{bottom:442.695000px;}
.y193{bottom:444.495000px;}
.yd8{bottom:446.655000px;}
.y160{bottom:448.275000px;}
.yfa{bottom:452.055000px;}
.y65{bottom:452.595000px;}
.y133{bottom:453.495000px;}
.y11a{bottom:453.675000px;}
.y1b8{bottom:456.195000px;}
.y90{bottom:459.975000px;}
.y192{bottom:461.595000px;}
.yd7{bottom:463.935000px;}
.y15f{bottom:466.275000px;}
.yf9{bottom:469.335000px;}
.y64{bottom:469.875000px;}
.y132{bottom:470.775000px;}
.y119{bottom:470.955000px;}
.y26{bottom:476.355000px;}
.y8f{bottom:477.255000px;}
.y1b7{bottom:477.795000px;}
.y191{bottom:478.875000px;}
.yd6{bottom:481.215000px;}
.yf8{bottom:486.615000px;}
.y63{bottom:486.975000px;}
.y118{bottom:488.235000px;}
.y8e{bottom:494.535000px;}
.y190{bottom:496.155000px;}
.y1b6{bottom:496.335000px;}
.yd5{bottom:498.495000px;}
.y131{bottom:501.375000px;}
.y15e{bottom:501.555000px;}
.y25{bottom:502.635000px;}
.yf7{bottom:503.895000px;}
.y62{bottom:504.255000px;}
.y117{bottom:505.515000px;}
.y18f{bottom:513.435000px;}
.y1b5{bottom:514.875000px;}
.y18{bottom:518.835000px;}
.y15d{bottom:519.555000px;}
.y130{bottom:519.915000px;}
.yf6{bottom:521.175000px;}
.y61{bottom:521.535000px;}
.y116{bottom:522.615000px;}
.y8d{bottom:525.135000px;}
.yd4{bottom:528.915000px;}
.y18e{bottom:530.715000px;}
.y1b4{bottom:533.595000px;}
.y15c{bottom:537.375000px;}
.yf5{bottom:538.275000px;}
.y12f{bottom:538.635000px;}
.y60{bottom:538.815000px;}
.y115{bottom:539.895000px;}
.y8c{bottom:542.415000px;}
.yd3{bottom:547.635000px;}
.y18d{bottom:547.995000px;}
.y1b3{bottom:552.135000px;}
.yf4{bottom:555.555000px;}
.y5f{bottom:556.095000px;}
.y114{bottom:557.175000px;}
.y8b{bottom:559.515000px;}
.y18c{bottom:565.095000px;}
.yd2{bottom:566.175000px;}
.y1b2{bottom:570.855000px;}
.y15b{bottom:572.655000px;}
.yf3{bottom:572.835000px;}
.y5e{bottom:573.375000px;}
.y113{bottom:574.455000px;}
.y8a{bottom:576.795000px;}
.y18b{bottom:582.375000px;}
.yd1{bottom:584.895000px;}
.y1b1{bottom:589.395000px;}
.yf2{bottom:590.115000px;}
.y5d{bottom:590.475000px;}
.y15a{bottom:590.655000px;}
.y112{bottom:591.735000px;}
.y89{bottom:594.075000px;}
.y18a{bottom:599.655000px;}
.yd0{bottom:603.435000px;}
.yf1{bottom:607.425000px;}
.y5c{bottom:607.785000px;}
.y1b0{bottom:608.145000px;}
.y159{bottom:608.685000px;}
.y111{bottom:609.045000px;}
.y88{bottom:611.385000px;}
.y189{bottom:616.965000px;}
.ycf{bottom:622.005000px;}
.yf0{bottom:624.705000px;}
.y5b{bottom:625.065000px;}
.y110{bottom:626.145000px;}
.y158{bottom:626.685000px;}
.y87{bottom:628.665000px;}
.y188{bottom:634.245000px;}
.yce{bottom:639.285000px;}
.y5a{bottom:642.345000px;}
.y10f{bottom:643.425000px;}
.y1af{bottom:645.225000px;}
.y86{bottom:645.765000px;}
.y187{bottom:651.525000px;}
.yef{bottom:655.305000px;}
.ycd{bottom:656.565000px;}
.y59{bottom:659.625000px;}
.y12e{bottom:660.705000px;}
.y157{bottom:661.965000px;}
.y1ae{bottom:663.945000px;}
.y186{bottom:668.625000px;}
.ycc{bottom:673.845000px;}
.y10e{bottom:674.025000px;}
.y85{bottom:676.365000px;}
.y58{bottom:676.725000px;}
.y12d{bottom:677.985000px;}
.y156{bottom:679.965000px;}
.y1ad{bottom:682.485000px;}
.y185{bottom:685.905000px;}
.ycb{bottom:691.125000px;}
.yee{bottom:692.385000px;}
.y10d{bottom:692.745000px;}
.y57{bottom:694.005000px;}
.y84{bottom:695.085000px;}
.y155{bottom:697.965000px;}
.y1ac{bottom:701.205000px;}
.y184{bottom:703.185000px;}
.yca{bottom:708.405000px;}
.y12c{bottom:708.585000px;}
.yed{bottom:709.665000px;}
.y56{bottom:711.285000px;}
.y83{bottom:714.705000px;}
.y154{bottom:715.965000px;}
.y1ab{bottom:719.745000px;}
.y183{bottom:720.465000px;}
.yc9{bottom:725.685000px;}
.yec{bottom:726.945000px;}
.y12b{bottom:727.125000px;}
.y55{bottom:728.565000px;}
.y82{bottom:733.425000px;}
.y153{bottom:733.965000px;}
.y182{bottom:737.745000px;}
.y1aa{bottom:738.285000px;}
.yc8{bottom:742.785000px;}
.yeb{bottom:744.225000px;}
.y54{bottom:745.845000px;}
.y152{bottom:751.965000px;}
.y81{bottom:753.045000px;}
.y181{bottom:755.025000px;}
.y1a9{bottom:757.005000px;}
.yea{bottom:761.505000px;}
.y53{bottom:763.125000px;}
.y151{bottom:769.965000px;}
.y80{bottom:771.585000px;}
.y180{bottom:772.125000px;}
.yc7{bottom:773.385000px;}
.y1a8{bottom:776.085000px;}
.y52{bottom:780.225000px;}
.y150{bottom:787.965000px;}
.y17f{bottom:789.405000px;}
.y7f{bottom:790.305000px;}
.yc6{bottom:792.105000px;}
.y17{bottom:794.265000px;}
.y1a7{bottom:796.425000px;}
.y51{bottom:797.505000px;}
.y14f{bottom:805.965000px;}
.y7e{bottom:808.665000px;}
.yc5{bottom:810.645000px;}
.y16{bottom:811.545000px;}
.y50{bottom:814.785000px;}
.y1a6{bottom:818.385000px;}
.y17e{bottom:820.005000px;}
.y14e{bottom:823.965000px;}
.y7d{bottom:825.945000px;}
.yc4{bottom:829.365000px;}
.y4f{bottom:832.065000px;}
.y17d{bottom:837.285000px;}
.y14{bottom:837.825000px;}
.y1a5{bottom:840.165000px;}
.y14d{bottom:841.965000px;}
.y15{bottom:843.045000px;}
.yc3{bottom:847.905000px;}
.y4e{bottom:849.345000px;}
.y17c{bottom:854.565000px;}
.y13{bottom:855.105000px;}
.y7c{bottom:856.545000px;}
.y14b{bottom:859.965000px;}
.y1a4{bottom:860.145000px;}
.yc2{bottom:866.445000px;}
.y4d{bottom:866.625000px;}
.y17a{bottom:869.325000px;}
.y12{bottom:872.430000px;}
.y7b{bottom:875.130000px;}
.y1a3{bottom:878.910000px;}
.y4c{bottom:883.770000px;}
.y179{bottom:887.370000px;}
.y11{bottom:889.530000px;}
.y7a{bottom:894.750000px;}
.y1a2{bottom:897.450000px;}
.y14a{bottom:898.530000px;}
.y4b{bottom:901.050000px;}
.y178{bottom:905.370000px;}
.y10{bottom:906.810000px;}
.y79{bottom:913.470000px;}
.y149{bottom:915.810000px;}
.y1a1{bottom:915.990000px;}
.y4a{bottom:918.330000px;}
.y177{bottom:923.370000px;}
.yf{bottom:924.090000px;}
.y148{bottom:932.910000px;}
.y78{bottom:933.090000px;}
.y1a0{bottom:934.710000px;}
.y49{bottom:935.610000px;}
.y9{bottom:941.370000px;}
.y147{bottom:950.190000px;}
.y77{bottom:951.810000px;}
.y48{bottom:952.890000px;}
.y19f{bottom:953.250000px;}
.y8{bottom:958.650000px;}
.y176{bottom:959.370000px;}
.y146{bottom:969.990000px;}
.y47{bottom:970.170000px;}
.y19e{bottom:971.970000px;}
.y7{bottom:972.690000px;}
.y175{bottom:977.370000px;}
.y46{bottom:987.270000px;}
.y19d{bottom:990.510000px;}
.y174{bottom:995.370000px;}
.y45{bottom:1004.550000px;}
.y19c{bottom:1009.050000px;}
.y173{bottom:1013.370000px;}
.y44{bottom:1021.830000px;}
.y6{bottom:1027.230000px;}
.y19b{bottom:1027.770000px;}
.y172{bottom:1031.370000px;}
.y43{bottom:1039.110000px;}
.y19a{bottom:1046.310000px;}
.y171{bottom:1049.370000px;}
.y5{bottom:1052.070000px;}
.y42{bottom:1056.390000px;}
.y199{bottom:1065.030000px;}
.y170{bottom:1068.090000px;}
.y4{bottom:1073.130000px;}
.y41{bottom:1073.490000px;}
.y198{bottom:1085.370000px;}
.y16f{bottom:1086.090000px;}
.y40{bottom:1090.770000px;}
.y3{bottom:1093.830000px;}
.y16d{bottom:1104.090000px;}
.y197{bottom:1106.610000px;}
.y3f{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y3e{bottom:1125.330000px;}
.y1{bottom:1131.270000px;}
.y3d{bottom:1142.640000px;}
.y3c{bottom:1166.400000px;}
.y3b{bottom:1180.440000px;}
.y3a{bottom:1201.140000px;}
.y39{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h11{height:17.100000px;}
.he{height:17.280000px;}
.h10{height:17.316000px;}
.h12{height:34.380000px;}
.h9{height:34.532578px;}
.hf{height:34.560000px;}
.hd{height:34.596000px;}
.hb{height:38.671172px;}
.h5{height:39.471680px;}
.h7{height:47.381836px;}
.h14{height:51.696000px;}
.h13{height:51.876000px;}
.h4{height:52.435898px;}
.h2{height:53.077852px;}
.h16{height:58.121719px;}
.h15{height:58.833281px;}
.hc{height:61.189805px;}
.h3{height:63.949219px;}
.h18{height:65.884219px;}
.h17{height:67.824844px;}
.ha{height:270.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:107.136000px;}
.wb{width:107.316000px;}
.w13{width:115.740000px;}
.wf{width:123.336000px;}
.w16{width:137.556000px;}
.we{width:138.996000px;}
.wc{width:139.536000px;}
.w11{width:141.696000px;}
.w15{width:148.176000px;}
.w10{width:150.330000px;}
.w9{width:168.840000px;}
.wa{width:168.870000px;}
.w14{width:180.390000px;}
.w8{width:339.375000px;}
.w4{width:339.735000px;}
.w3{width:340.770000px;}
.w7{width:341.130000px;}
.w12{width:584.025000px;}
.w6{width:679.785000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.605000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.xe{left:111.095987px;}
.x19{left:116.855987px;}
.x10{left:133.235987px;}
.x11{left:160.229987px;}
.xf{left:180.749987px;}
.x1a{left:187.229987px;}
.x17{left:223.230000px;}
.x2{left:254.189987px;}
.x6{left:273.989987px;}
.x12{left:276.870000px;}
.xa{left:304.095000px;}
.xd{left:322.274987px;}
.x5{left:362.414987px;}
.x4{left:379.874987px;}
.x14{left:384.915000px;}
.x3{left:398.414987px;}
.x15{left:401.115000px;}
.x18{left:404.355000px;}
.x8{left:446.474987px;}
.xb{left:549.824973px;}
.x16{left:552.345000px;}
.xc{left:554.684987px;}
.x1{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.265067pt;}
.ls10{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.135467pt;}
.ls18{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.544640pt;}
.ls11{letter-spacing:2.720000pt;}
.ls19{letter-spacing:3.360000pt;}
.lsc{letter-spacing:9.120000pt;}
.ls2{letter-spacing:13.600000pt;}
.ls1c{letter-spacing:35.450027pt;}
.ls17{letter-spacing:37.691307pt;}
.lsd{letter-spacing:40.891307pt;}
.ls14{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.891307pt;}
.ls13{letter-spacing:63.312640pt;}
.ls5{letter-spacing:73.552640pt;}
.ls1d{letter-spacing:101.712640pt;}
.ls1b{letter-spacing:115.450027pt;}
.lsf{letter-spacing:143.291307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws9{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws2{word-spacing:-11.984000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-14.024320pt;}
._1a{margin-left:-3.670187pt;}
._b{margin-left:-2.656000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.226667pt;}
._c{width:2.119893pt;}
._12{width:3.085867pt;}
._7{width:3.979093pt;}
._a{width:5.596800pt;}
._8{width:6.826027pt;}
._15{width:7.811200pt;}
._f{width:8.866133pt;}
._10{width:9.948160pt;}
._11{width:11.580160pt;}
._e{width:14.251733pt;}
._18{width:15.293653pt;}
._1b{width:16.360960pt;}
._13{width:17.423360pt;}
._14{width:19.171413pt;}
._16{width:20.282880pt;}
._1c{width:21.189973pt;}
._17{width:22.151040pt;}
._19{width:23.937493pt;}
._1d{width:25.160107pt;}
._21{width:26.400640pt;}
._24{width:27.785173pt;}
._1e{width:31.867093pt;}
._5{width:34.740480pt;}
._6{width:35.909120pt;}
._20{width:64.429653pt;}
._22{width:150.484053pt;}
._1f{width:249.132800pt;}
._4{width:349.706667pt;}
._9{width:736.938667pt;}
._3{width:740.800000pt;}
._23{width:754.858667pt;}
._2{width:1414.165333pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.592000pt;}
.y24{bottom:2.880000pt;}
.y17b{bottom:2.920000pt;}
.y23{bottom:18.240000pt;}
.y14c{bottom:18.280000pt;}
.y22{bottom:33.600000pt;}
.y16e{bottom:33.626667pt;}
.y165{bottom:33.640000pt;}
.ye{bottom:38.880000pt;}
.y21{bottom:48.800000pt;}
.yc{bottom:60.960000pt;}
.y20{bottom:64.160000pt;}
.ya{bottom:84.352000pt;}
.y1f{bottom:98.266667pt;}
.y38{bottom:116.832000pt;}
.ya3{bottom:117.472000pt;}
.ye9{bottom:118.432000pt;}
.y37{bottom:121.472000pt;}
.y76{bottom:122.432000pt;}
.yc1{bottom:123.232000pt;}
.y10c{bottom:125.952000pt;}
.yb2{bottom:126.272000pt;}
.y145{bottom:127.072000pt;}
.y16c{bottom:129.152000pt;}
.y1e{bottom:132.186667pt;}
.y36{bottom:132.512000pt;}
.ya2{bottom:132.832000pt;}
.ye8{bottom:133.786667pt;}
.y1c5{bottom:135.546667pt;}
.y75{bottom:137.786667pt;}
.yc0{bottom:138.586667pt;}
.y10b{bottom:141.146667pt;}
.yb1{bottom:141.626667pt;}
.y144{bottom:142.426667pt;}
.y12a{bottom:143.706667pt;}
.y16b{bottom:144.986667pt;}
.y1d{bottom:147.546667pt;}
.ya1{bottom:148.186667pt;}
.ye7{bottom:148.986667pt;}
.y74{bottom:153.146667pt;}
.ybf{bottom:153.786667pt;}
.y1c4{bottom:154.906667pt;}
.y10a{bottom:156.506667pt;}
.yb0{bottom:156.986667pt;}
.y143{bottom:157.786667pt;}
.y129{bottom:158.906667pt;}
.y16a{bottom:160.986667pt;}
.y1c{bottom:162.906667pt;}
.ya0{bottom:163.546667pt;}
.ye6{bottom:164.346667pt;}
.y73{bottom:168.346667pt;}
.ybe{bottom:169.146667pt;}
.y109{bottom:171.866667pt;}
.yaf{bottom:172.186667pt;}
.y142{bottom:173.146667pt;}
.y128{bottom:174.266667pt;}
.y169{bottom:176.986667pt;}
.y35{bottom:177.626667pt;}
.y1b{bottom:178.266667pt;}
.y9f{bottom:178.906667pt;}
.ye5{bottom:179.706667pt;}
.y72{bottom:183.706667pt;}
.ybd{bottom:184.506667pt;}
.y108{bottom:187.226667pt;}
.yae{bottom:187.546667pt;}
.y141{bottom:188.346667pt;}
.y127{bottom:189.626667pt;}
.y34{bottom:192.986667pt;}
.y1a{bottom:193.466667pt;}
.y1c3{bottom:193.786667pt;}
.y9e{bottom:194.106667pt;}
.ye4{bottom:195.066667pt;}
.y71{bottom:199.066667pt;}
.ybc{bottom:199.866667pt;}
.y107{bottom:202.586667pt;}
.yad{bottom:202.906667pt;}
.y140{bottom:203.706667pt;}
.y126{bottom:204.986667pt;}
.y33{bottom:208.346667pt;}
.y168{bottom:208.986667pt;}
.y9d{bottom:209.466667pt;}
.ye3{bottom:210.426667pt;}
.y1c2{bottom:212.826667pt;}
.y70{bottom:214.426667pt;}
.ybb{bottom:215.226667pt;}
.y106{bottom:217.786667pt;}
.yac{bottom:218.266667pt;}
.y13f{bottom:219.066667pt;}
.y125{bottom:220.346667pt;}
.y32{bottom:223.706667pt;}
.y9c{bottom:224.826667pt;}
.y167{bottom:224.986667pt;}
.ye2{bottom:225.786667pt;}
.y19{bottom:227.546667pt;}
.y6f{bottom:229.786667pt;}
.yba{bottom:230.586667pt;}
.y1c1{bottom:230.906667pt;}
.y105{bottom:233.146667pt;}
.yab{bottom:233.626667pt;}
.y13e{bottom:234.426667pt;}
.y124{bottom:235.546667pt;}
.y31{bottom:239.066667pt;}
.y9b{bottom:240.186667pt;}
.yb9{bottom:245.786667pt;}
.y1c0{bottom:247.386667pt;}
.y104{bottom:248.506667pt;}
.yaa{bottom:248.826667pt;}
.y13d{bottom:249.786667pt;}
.y123{bottom:250.906667pt;}
.ye1{bottom:252.826667pt;}
.y30{bottom:254.426667pt;}
.y9a{bottom:255.546667pt;}
.y166{bottom:256.346667pt;}
.y6e{bottom:256.986667pt;}
.yb8{bottom:261.146667pt;}
.y103{bottom:263.866667pt;}
.y1bf{bottom:264.026667pt;}
.ya9{bottom:264.186667pt;}
.y13c{bottom:265.146667pt;}
.y122{bottom:266.266667pt;}
.ye0{bottom:269.466667pt;}
.y2f{bottom:269.626667pt;}
.y99{bottom:270.906667pt;}
.y164{bottom:272.346667pt;}
.y6d{bottom:273.466667pt;}
.yb7{bottom:276.506667pt;}
.y102{bottom:279.226667pt;}
.ya8{bottom:279.546667pt;}
.y13b{bottom:280.346667pt;}
.y1be{bottom:280.506667pt;}
.y121{bottom:281.626667pt;}
.y2e{bottom:284.986667pt;}
.ydf{bottom:285.946667pt;}
.y98{bottom:286.106667pt;}
.y6c{bottom:289.946667pt;}
.y101{bottom:294.586667pt;}
.ya7{bottom:294.906667pt;}
.y13a{bottom:295.706667pt;}
.y120{bottom:296.986667pt;}
.y2d{bottom:300.386667pt;}
.y97{bottom:301.506667pt;}
.yde{bottom:302.626667pt;}
.yb6{bottom:303.746667pt;}
.y6b{bottom:306.626667pt;}
.y100{bottom:309.826667pt;}
.ya6{bottom:310.306667pt;}
.y139{bottom:311.106667pt;}
.y11f{bottom:312.386667pt;}
.y1bd{bottom:313.666667pt;}
.y2c{bottom:315.746667pt;}
.y96{bottom:316.866667pt;}
.ydd{bottom:319.106667pt;}
.yb5{bottom:321.186667pt;}
.y6a{bottom:323.106667pt;}
.yff{bottom:325.186667pt;}
.ya5{bottom:325.666667pt;}
.y138{bottom:326.466667pt;}
.y11e{bottom:327.586667pt;}
.y1bc{bottom:330.626667pt;}
.y2b{bottom:331.106667pt;}
.y95{bottom:332.226667pt;}
.ydc{bottom:335.746667pt;}
.yb4{bottom:337.826667pt;}
.y69{bottom:339.746667pt;}
.yfe{bottom:340.546667pt;}
.ya4{bottom:340.866667pt;}
.y137{bottom:341.826667pt;}
.y11d{bottom:342.946667pt;}
.y2a{bottom:346.466667pt;}
.y196{bottom:346.786667pt;}
.y94{bottom:347.586667pt;}
.y1bb{bottom:348.706667pt;}
.y163{bottom:350.466667pt;}
.ydb{bottom:351.106667pt;}
.yb3{bottom:355.266667pt;}
.yfd{bottom:355.906667pt;}
.y68{bottom:356.226667pt;}
.y136{bottom:357.026667pt;}
.y29{bottom:361.666667pt;}
.y93{bottom:362.786667pt;}
.y195{bottom:364.386667pt;}
.yda{bottom:366.306667pt;}
.y162{bottom:366.466667pt;}
.y1ba{bottom:366.946667pt;}
.y11c{bottom:370.146667pt;}
.yfc{bottom:371.266667pt;}
.y67{bottom:371.586667pt;}
.y135{bottom:372.386667pt;}
.y28{bottom:377.026667pt;}
.y92{bottom:378.146667pt;}
.y194{bottom:379.746667pt;}
.yd9{bottom:381.666667pt;}
.y161{bottom:382.466667pt;}
.y1b9{bottom:385.186667pt;}
.yfb{bottom:386.626667pt;}
.y11b{bottom:386.786667pt;}
.y66{bottom:386.946667pt;}
.y134{bottom:387.746667pt;}
.y27{bottom:392.386667pt;}
.y91{bottom:393.506667pt;}
.y193{bottom:395.106667pt;}
.yd8{bottom:397.026667pt;}
.y160{bottom:398.466667pt;}
.yfa{bottom:401.826667pt;}
.y65{bottom:402.306667pt;}
.y133{bottom:403.106667pt;}
.y11a{bottom:403.266667pt;}
.y1b8{bottom:405.506667pt;}
.y90{bottom:408.866667pt;}
.y192{bottom:410.306667pt;}
.yd7{bottom:412.386667pt;}
.y15f{bottom:414.466667pt;}
.yf9{bottom:417.186667pt;}
.y64{bottom:417.666667pt;}
.y132{bottom:418.466667pt;}
.y119{bottom:418.626667pt;}
.y26{bottom:423.426667pt;}
.y8f{bottom:424.226667pt;}
.y1b7{bottom:424.706667pt;}
.y191{bottom:425.666667pt;}
.yd6{bottom:427.746667pt;}
.yf8{bottom:432.546667pt;}
.y63{bottom:432.866667pt;}
.y118{bottom:433.986667pt;}
.y8e{bottom:439.586667pt;}
.y190{bottom:441.026667pt;}
.y1b6{bottom:441.186667pt;}
.yd5{bottom:443.106667pt;}
.y131{bottom:445.666667pt;}
.y15e{bottom:445.826667pt;}
.y25{bottom:446.786667pt;}
.yf7{bottom:447.906667pt;}
.y62{bottom:448.226667pt;}
.y117{bottom:449.346667pt;}
.y18f{bottom:456.386667pt;}
.y1b5{bottom:457.666667pt;}
.y18{bottom:461.186667pt;}
.y15d{bottom:461.826667pt;}
.y130{bottom:462.146667pt;}
.yf6{bottom:463.266667pt;}
.y61{bottom:463.586667pt;}
.y116{bottom:464.546667pt;}
.y8d{bottom:466.786667pt;}
.yd4{bottom:470.146667pt;}
.y18e{bottom:471.746667pt;}
.y1b4{bottom:474.306667pt;}
.y15c{bottom:477.666667pt;}
.yf5{bottom:478.466667pt;}
.y12f{bottom:478.786667pt;}
.y60{bottom:478.946667pt;}
.y115{bottom:479.906667pt;}
.y8c{bottom:482.146667pt;}
.yd3{bottom:486.786667pt;}
.y18d{bottom:487.106667pt;}
.y1b3{bottom:490.786667pt;}
.yf4{bottom:493.826667pt;}
.y5f{bottom:494.306667pt;}
.y114{bottom:495.266667pt;}
.y8b{bottom:497.346667pt;}
.y18c{bottom:502.306667pt;}
.yd2{bottom:503.266667pt;}
.y1b2{bottom:507.426667pt;}
.y15b{bottom:509.026667pt;}
.yf3{bottom:509.186667pt;}
.y5e{bottom:509.666667pt;}
.y113{bottom:510.626667pt;}
.y8a{bottom:512.706667pt;}
.y18b{bottom:517.666667pt;}
.yd1{bottom:519.906667pt;}
.y1b1{bottom:523.906667pt;}
.yf2{bottom:524.546667pt;}
.y5d{bottom:524.866667pt;}
.y15a{bottom:525.026667pt;}
.y112{bottom:525.986667pt;}
.y89{bottom:528.066667pt;}
.y18a{bottom:533.026667pt;}
.yd0{bottom:536.386667pt;}
.yf1{bottom:539.933333pt;}
.y5c{bottom:540.253333pt;}
.y1b0{bottom:540.573333pt;}
.y159{bottom:541.053333pt;}
.y111{bottom:541.373333pt;}
.y88{bottom:543.453333pt;}
.y189{bottom:548.413333pt;}
.ycf{bottom:552.893333pt;}
.yf0{bottom:555.293333pt;}
.y5b{bottom:555.613333pt;}
.y110{bottom:556.573333pt;}
.y158{bottom:557.053333pt;}
.y87{bottom:558.813333pt;}
.y188{bottom:563.773333pt;}
.yce{bottom:568.253333pt;}
.y5a{bottom:570.973333pt;}
.y10f{bottom:571.933333pt;}
.y1af{bottom:573.533333pt;}
.y86{bottom:574.013333pt;}
.y187{bottom:579.133333pt;}
.yef{bottom:582.493333pt;}
.ycd{bottom:583.613333pt;}
.y59{bottom:586.333333pt;}
.y12e{bottom:587.293333pt;}
.y157{bottom:588.413333pt;}
.y1ae{bottom:590.173333pt;}
.y186{bottom:594.333333pt;}
.ycc{bottom:598.973333pt;}
.y10e{bottom:599.133333pt;}
.y85{bottom:601.213333pt;}
.y58{bottom:601.533333pt;}
.y12d{bottom:602.653333pt;}
.y156{bottom:604.413333pt;}
.y1ad{bottom:606.653333pt;}
.y185{bottom:609.693333pt;}
.ycb{bottom:614.333333pt;}
.yee{bottom:615.453333pt;}
.y10d{bottom:615.773333pt;}
.y57{bottom:616.893333pt;}
.y84{bottom:617.853333pt;}
.y155{bottom:620.413333pt;}
.y1ac{bottom:623.293333pt;}
.y184{bottom:625.053333pt;}
.yca{bottom:629.693333pt;}
.y12c{bottom:629.853333pt;}
.yed{bottom:630.813333pt;}
.y56{bottom:632.253333pt;}
.y83{bottom:635.293333pt;}
.y154{bottom:636.413333pt;}
.y1ab{bottom:639.773333pt;}
.y183{bottom:640.413333pt;}
.yc9{bottom:645.053333pt;}
.yec{bottom:646.173333pt;}
.y12b{bottom:646.333333pt;}
.y55{bottom:647.613333pt;}
.y82{bottom:651.933333pt;}
.y153{bottom:652.413333pt;}
.y182{bottom:655.773333pt;}
.y1aa{bottom:656.253333pt;}
.yc8{bottom:660.253333pt;}
.yeb{bottom:661.533333pt;}
.y54{bottom:662.973333pt;}
.y152{bottom:668.413333pt;}
.y81{bottom:669.373333pt;}
.y181{bottom:671.133333pt;}
.y1a9{bottom:672.893333pt;}
.yea{bottom:676.893333pt;}
.y53{bottom:678.333333pt;}
.y151{bottom:684.413333pt;}
.y80{bottom:685.853333pt;}
.y180{bottom:686.333333pt;}
.yc7{bottom:687.453333pt;}
.y1a8{bottom:689.853333pt;}
.y52{bottom:693.533333pt;}
.y150{bottom:700.413333pt;}
.y17f{bottom:701.693333pt;}
.y7f{bottom:702.493333pt;}
.yc6{bottom:704.093333pt;}
.y17{bottom:706.013333pt;}
.y1a7{bottom:707.933333pt;}
.y51{bottom:708.893333pt;}
.y14f{bottom:716.413333pt;}
.y7e{bottom:718.813333pt;}
.yc5{bottom:720.573333pt;}
.y16{bottom:721.373333pt;}
.y50{bottom:724.253333pt;}
.y1a6{bottom:727.453333pt;}
.y17e{bottom:728.893333pt;}
.y14e{bottom:732.413333pt;}
.y7d{bottom:734.173333pt;}
.yc4{bottom:737.213333pt;}
.y4f{bottom:739.613333pt;}
.y17d{bottom:744.253333pt;}
.y14{bottom:744.733333pt;}
.y1a5{bottom:746.813333pt;}
.y14d{bottom:748.413333pt;}
.y15{bottom:749.373333pt;}
.yc3{bottom:753.693333pt;}
.y4e{bottom:754.973333pt;}
.y17c{bottom:759.613333pt;}
.y13{bottom:760.093333pt;}
.y7c{bottom:761.373333pt;}
.y14b{bottom:764.413333pt;}
.y1a4{bottom:764.573333pt;}
.yc2{bottom:770.173333pt;}
.y4d{bottom:770.333333pt;}
.y17a{bottom:772.733333pt;}
.y12{bottom:775.493333pt;}
.y7b{bottom:777.893333pt;}
.y1a3{bottom:781.253333pt;}
.y4c{bottom:785.573333pt;}
.y179{bottom:788.773333pt;}
.y11{bottom:790.693333pt;}
.y7a{bottom:795.333333pt;}
.y1a2{bottom:797.733333pt;}
.y14a{bottom:798.693333pt;}
.y4b{bottom:800.933333pt;}
.y178{bottom:804.773333pt;}
.y10{bottom:806.053333pt;}
.y79{bottom:811.973333pt;}
.y149{bottom:814.053333pt;}
.y1a1{bottom:814.213333pt;}
.y4a{bottom:816.293333pt;}
.y177{bottom:820.773333pt;}
.yf{bottom:821.413333pt;}
.y148{bottom:829.253333pt;}
.y78{bottom:829.413333pt;}
.y1a0{bottom:830.853333pt;}
.y49{bottom:831.653333pt;}
.y9{bottom:836.773333pt;}
.y147{bottom:844.613333pt;}
.y77{bottom:846.053333pt;}
.y48{bottom:847.013333pt;}
.y19f{bottom:847.333333pt;}
.y8{bottom:852.133333pt;}
.y176{bottom:852.773333pt;}
.y146{bottom:862.213333pt;}
.y47{bottom:862.373333pt;}
.y19e{bottom:863.973333pt;}
.y7{bottom:864.613333pt;}
.y175{bottom:868.773333pt;}
.y46{bottom:877.573333pt;}
.y19d{bottom:880.453333pt;}
.y174{bottom:884.773333pt;}
.y45{bottom:892.933333pt;}
.y19c{bottom:896.933333pt;}
.y173{bottom:900.773333pt;}
.y44{bottom:908.293333pt;}
.y6{bottom:913.093333pt;}
.y19b{bottom:913.573333pt;}
.y172{bottom:916.773333pt;}
.y43{bottom:923.653333pt;}
.y19a{bottom:930.053333pt;}
.y171{bottom:932.773333pt;}
.y5{bottom:935.173333pt;}
.y42{bottom:939.013333pt;}
.y199{bottom:946.693333pt;}
.y170{bottom:949.413333pt;}
.y4{bottom:953.893333pt;}
.y41{bottom:954.213333pt;}
.y198{bottom:964.773333pt;}
.y16f{bottom:965.413333pt;}
.y40{bottom:969.573333pt;}
.y3{bottom:972.293333pt;}
.y16d{bottom:981.413333pt;}
.y197{bottom:983.653333pt;}
.y3f{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y3e{bottom:1000.293333pt;}
.y1{bottom:1005.573333pt;}
.y3d{bottom:1015.680000pt;}
.y3c{bottom:1036.800000pt;}
.y3b{bottom:1049.280000pt;}
.y3a{bottom:1067.680000pt;}
.y39{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h11{height:15.200000pt;}
.he{height:15.360000pt;}
.h10{height:15.392000pt;}
.h12{height:30.560000pt;}
.h9{height:30.695625pt;}
.hf{height:30.720000pt;}
.hd{height:30.752000pt;}
.hb{height:34.374375pt;}
.h5{height:35.085938pt;}
.h7{height:42.117188pt;}
.h14{height:45.952000pt;}
.h13{height:46.112000pt;}
.h4{height:46.609688pt;}
.h2{height:47.180312pt;}
.h16{height:51.663750pt;}
.h15{height:52.296250pt;}
.hc{height:54.390938pt;}
.h3{height:56.843750pt;}
.h18{height:58.563750pt;}
.h17{height:60.288750pt;}
.ha{height:240.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:95.232000pt;}
.wb{width:95.392000pt;}
.w13{width:102.880000pt;}
.wf{width:109.632000pt;}
.w16{width:122.272000pt;}
.we{width:123.552000pt;}
.wc{width:124.032000pt;}
.w11{width:125.952000pt;}
.w15{width:131.712000pt;}
.w10{width:133.626667pt;}
.w9{width:150.080000pt;}
.wa{width:150.106667pt;}
.w14{width:160.346667pt;}
.w8{width:301.666667pt;}
.w4{width:301.986667pt;}
.w3{width:302.906667pt;}
.w7{width:303.226667pt;}
.w12{width:519.133333pt;}
.w6{width:604.253333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.760000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.xe{left:98.751988pt;}
.x19{left:103.871988pt;}
.x10{left:118.431988pt;}
.x11{left:142.426655pt;}
.xf{left:160.666655pt;}
.x1a{left:166.426655pt;}
.x17{left:198.426667pt;}
.x2{left:225.946655pt;}
.x6{left:243.546655pt;}
.x12{left:246.106667pt;}
.xa{left:270.306667pt;}
.xd{left:286.466655pt;}
.x5{left:322.146655pt;}
.x4{left:337.666655pt;}
.x14{left:342.146667pt;}
.x3{left:354.146655pt;}
.x15{left:356.546667pt;}
.x18{left:359.426667pt;}
.x8{left:396.866655pt;}
.xb{left:488.733310pt;}
.x16{left:490.973333pt;}
.xc{left:493.053322pt;}
.x1{left:699.333322pt;}
}




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