
    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_6b9b4ce64d2be125c5736e47.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_fb01d4899595ee88b450bd76.woff')format("woff");}.ff2{font-family:ff2;line-height:0.724609;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_215ec687b17cd89b5f47bc02.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_c8d609044baac5ee82a8b96d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_3e3cdd3b77ab8023e48b7e2e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_4f3d4f09e7a79b26008d068b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')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_2d90a554366875a4e907f3bd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_cb5ee611a9df132368a0a6f3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_e5d8633c99bf9675cf386f09.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27690687afce262e3b2de3b3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.924805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_618c332b7844901370281fda.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_facbff2c6fe1b138d9414af3.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.153360px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:3.780000px;}
.ls6{letter-spacing:25.308000px;}
.ls0{letter-spacing:28.062720px;}
.ls7{letter-spacing:52.668000px;}
.lse{letter-spacing:68.508000px;}
.lsd{letter-spacing:68.652000px;}
.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;}
}
.ws7{word-spacing:-54.000000px;}
.wsc{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.431360px;}
.ws5{word-spacing:-17.280000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._11{width:3.372480px;}
._5{width:4.511520px;}
._4{width:5.886000px;}
._d{width:7.473840px;}
._f{width:8.480400px;}
._8{width:9.666000px;}
._a{width:11.394000px;}
._e{width:12.417360px;}
._12{width:13.534080px;}
._9{width:14.756160px;}
._3{width:15.876000px;}
._b{width:17.442000px;}
._13{width:19.145520px;}
._10{width:20.358000px;}
._14{width:21.384000px;}
._15{width:22.763520px;}
._20{width:24.084000px;}
._18{width:25.085520px;}
._1b{width:26.813520px;}
._25{width:28.080000px;}
._24{width:29.160000px;}
._16{width:30.186000px;}
._17{width:31.241520px;}
._1c{width:32.247120px;}
._7{width:33.995520px;}
._6{width:35.154000px;}
._2c{width:36.450000px;}
._c{width:37.800000px;}
._1a{width:39.528000px;}
._19{width:40.554000px;}
._30{width:41.847360px;}
._1e{width:43.254000px;}
._1f{width:44.280000px;}
._21{width:45.357360px;}
._22{width:46.518960px;}
._1d{width:48.708000px;}
._27{width:49.896000px;}
._28{width:50.976000px;}
._2d{width:54.504000px;}
._23{width:56.376000px;}
._29{width:58.386240px;}
._2f{width:82.880640px;}
._2e{width:104.004000px;}
._26{width:127.370880px;}
._2b{width:135.006720px;}
._2a{width:166.029360px;}
._2{width:2940.307200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y44{bottom:7.350000px;}
.y4{bottom:8.640000px;}
.y28{bottom:14.145000px;}
.y8{bottom:22.500000px;}
.y27{bottom:38.985000px;}
.y7{bottom:41.040000px;}
.y3d{bottom:41.430000px;}
.y6{bottom:56.880000px;}
.y2c{bottom:67.425000px;}
.yed{bottom:83.700000px;}
.y1a{bottom:84.960000px;}
.yba{bottom:85.320000px;}
.y157{bottom:88.740000px;}
.y3a{bottom:90.030000px;}
.y127{bottom:90.540000px;}
.y23{bottom:92.880000px;}
.y80{bottom:97.920000px;}
.yec{bottom:101.520000px;}
.y19{bottom:102.960000px;}
.y156{bottom:106.200000px;}
.y126{bottom:108.360000px;}
.y39{bottom:110.010000px;}
.y22{bottom:110.880000px;}
.yb9{bottom:112.500000px;}
.y7f{bottom:115.740000px;}
.yeb{bottom:119.340000px;}
.y182{bottom:120.240000px;}
.y18{bottom:120.780000px;}
.y125{bottom:126.360000px;}
.y21{bottom:128.700000px;}
.y38{bottom:129.810000px;}
.yb8{bottom:130.320000px;}
.y155{bottom:133.380000px;}
.y7e{bottom:133.560000px;}
.yea{bottom:137.340000px;}
.y181{bottom:138.060000px;}
.y17{bottom:138.600000px;}
.y25{bottom:144.870000px;}
.y20{bottom:146.520000px;}
.yb7{bottom:148.140000px;}
.y37{bottom:149.610000px;}
.y154{bottom:151.200000px;}
.y7d{bottom:151.380000px;}
.y124{bottom:153.180000px;}
.y180{bottom:155.880000px;}
.ye9{bottom:156.060000px;}
.y16{bottom:156.420000px;}
.y1f{bottom:164.340000px;}
.yb6{bottom:165.960000px;}
.y7c{bottom:169.200000px;}
.y36{bottom:169.455000px;}
.y123{bottom:171.000000px;}
.ye8{bottom:173.880000px;}
.y15{bottom:174.240000px;}
.y1e{bottom:182.160000px;}
.yb5{bottom:183.960000px;}
.y153{bottom:187.020000px;}
.y7b{bottom:187.200000px;}
.y122{bottom:188.460000px;}
.y35{bottom:189.255000px;}
.ye7{bottom:191.700000px;}
.y14{bottom:192.060000px;}
.y1d{bottom:200.160000px;}
.yb4{bottom:201.780000px;}
.y152{bottom:204.840000px;}
.y7a{bottom:205.020000px;}
.y121{bottom:206.310000px;}
.y34{bottom:209.235000px;}
.y17f{bottom:209.550000px;}
.ye6{bottom:209.730000px;}
.y13{bottom:210.090000px;}
.y1c{bottom:218.010000px;}
.yb3{bottom:219.630000px;}
.y151{bottom:222.690000px;}
.y79{bottom:222.870000px;}
.y120{bottom:224.670000px;}
.y17e{bottom:227.370000px;}
.ye5{bottom:228.450000px;}
.y33{bottom:229.035000px;}
.y12{bottom:229.890000px;}
.y1b{bottom:235.830000px;}
.yb2{bottom:237.450000px;}
.y150{bottom:240.150000px;}
.y78{bottom:240.690000px;}
.y11f{bottom:242.490000px;}
.y17d{bottom:245.190000px;}
.ye4{bottom:246.270000px;}
.y32{bottom:248.835000px;}
.yb1{bottom:254.910000px;}
.y77{bottom:258.510000px;}
.y11e{bottom:260.310000px;}
.y17c{bottom:263.190000px;}
.ye3{bottom:264.270000px;}
.y11{bottom:265.350000px;}
.y14f{bottom:267.330000px;}
.y31{bottom:268.635000px;}
.y76{bottom:276.330000px;}
.y11d{bottom:278.130000px;}
.y17b{bottom:281.010000px;}
.yb0{bottom:282.090000px;}
.y30{bottom:283.140000px;}
.y14e{bottom:285.330000px;}
.ye2{bottom:291.990000px;}
.y75{bottom:293.970000px;}
.y11c{bottom:295.950000px;}
.y17a{bottom:298.830000px;}
.yaf{bottom:300.090000px;}
.y14d{bottom:303.150000px;}
.y3e{bottom:304.590000px;}
.ye1{bottom:309.810000px;}
.y74{bottom:311.790000px;}
.y11b{bottom:313.770000px;}
.y179{bottom:316.650000px;}
.yae{bottom:317.910000px;}
.y14c{bottom:322.950000px;}
.y3c{bottom:324.570000px;}
.ye0{bottom:327.270000px;}
.y73{bottom:329.970000px;}
.y11a{bottom:331.770000px;}
.y178{bottom:334.470000px;}
.yad{bottom:335.730000px;}
.ydf{bottom:345.090000px;}
.y72{bottom:347.790000px;}
.y14b{bottom:348.690000px;}
.y119{bottom:349.590000px;}
.y177{bottom:352.290000px;}
.y3b{bottom:353.370000px;}
.yac{bottom:353.550000px;}
.yde{bottom:363.270000px;}
.y71{bottom:365.610000px;}
.y118{bottom:367.410000px;}
.y176{bottom:370.290000px;}
.yab{bottom:371.370000px;}
.y14a{bottom:372.450000px;}
.ydd{bottom:381.270000px;}
.y70{bottom:383.610000px;}
.y117{bottom:384.870000px;}
.y175{bottom:388.110000px;}
.yaa{bottom:389.370000px;}
.y149{bottom:390.450000px;}
.ydc{bottom:399.090000px;}
.y6f{bottom:401.430000px;}
.y116{bottom:403.050000px;}
.ya9{bottom:407.190000px;}
.y174{bottom:407.910000px;}
.y148{bottom:408.270000px;}
.ydb{bottom:416.910000px;}
.y6e{bottom:419.250000px;}
.y115{bottom:421.050000px;}
.ya8{bottom:424.650000px;}
.y147{bottom:426.090000px;}
.yda{bottom:434.730000px;}
.y6d{bottom:437.070000px;}
.y114{bottom:438.870000px;}
.y173{bottom:440.715000px;}
.ya7{bottom:442.515000px;}
.y146{bottom:443.955000px;}
.yd9{bottom:452.595000px;}
.y6c{bottom:454.935000px;}
.y113{bottom:456.735000px;}
.y172{bottom:458.535000px;}
.y145{bottom:461.955000px;}
.ya6{bottom:469.695000px;}
.yd8{bottom:470.595000px;}
.y6b{bottom:472.755000px;}
.y112{bottom:474.555000px;}
.y171{bottom:476.535000px;}
.y144{bottom:480.675000px;}
.ya5{bottom:487.515000px;}
.yd7{bottom:488.415000px;}
.y6a{bottom:490.755000px;}
.y111{bottom:492.375000px;}
.y170{bottom:494.355000px;}
.y143{bottom:498.495000px;}
.ya4{bottom:505.515000px;}
.yd6{bottom:506.235000px;}
.y69{bottom:508.575000px;}
.y110{bottom:510.195000px;}
.y16f{bottom:512.175000px;}
.y142{bottom:516.315000px;}
.ya3{bottom:523.335000px;}
.yd5{bottom:524.055000px;}
.y68{bottom:526.395000px;}
.y10f{bottom:528.195000px;}
.y16e{bottom:529.995000px;}
.y141{bottom:534.135000px;}
.ya2{bottom:541.155000px;}
.yd4{bottom:541.875000px;}
.y67{bottom:544.215000px;}
.y10e{bottom:546.015000px;}
.y16d{bottom:547.815000px;}
.y140{bottom:552.135000px;}
.ya1{bottom:558.975000px;}
.yd3{bottom:559.695000px;}
.y66{bottom:562.035000px;}
.y10d{bottom:563.835000px;}
.y16c{bottom:565.635000px;}
.y13f{bottom:569.955000px;}
.ya0{bottom:576.795000px;}
.yd2{bottom:577.695000px;}
.y65{bottom:580.035000px;}
.y10c{bottom:581.295000px;}
.y16b{bottom:583.635000px;}
.y10{bottom:587.595000px;}
.y9f{bottom:594.615000px;}
.yd1{bottom:595.515000px;}
.y13e{bottom:597.675000px;}
.y64{bottom:597.855000px;}
.y10b{bottom:599.115000px;}
.y16a{bottom:601.455000px;}
.y9e{bottom:612.615000px;}
.yd0{bottom:613.335000px;}
.y63{bottom:615.675000px;}
.y169{bottom:619.275000px;}
.y10a{bottom:626.475000px;}
.yf{bottom:628.815000px;}
.y9d{bottom:630.435000px;}
.ycf{bottom:631.155000px;}
.y62{bottom:633.495000px;}
.y168{bottom:637.095000px;}
.y109{bottom:644.295000px;}
.ye{bottom:644.475000px;}
.y9c{bottom:648.255000px;}
.yce{bottom:648.975000px;}
.y13d{bottom:650.955000px;}
.y61{bottom:651.315000px;}
.y167{bottom:654.915000px;}
.y108{bottom:662.115000px;}
.y9b{bottom:665.715000px;}
.ycd{bottom:666.435000px;}
.y13c{bottom:668.775000px;}
.y60{bottom:669.135000px;}
.y2f{bottom:669.495000px;}
.y166{bottom:672.915000px;}
.y107{bottom:681.945000px;}
.y9a{bottom:685.905000px;}
.y13b{bottom:686.985000px;}
.y5f{bottom:687.165000px;}
.y165{bottom:690.765000px;}
.ycc{bottom:693.825000px;}
.y2e{bottom:698.145000px;}
.y2b{bottom:701.820000px;}
.y13a{bottom:704.805000px;}
.y5e{bottom:704.985000px;}
.y106{bottom:707.685000px;}
.y164{bottom:708.585000px;}
.ycb{bottom:711.645000px;}
.y99{bottom:711.825000px;}
.y5d{bottom:722.805000px;}
.y163{bottom:726.405000px;}
.yca{bottom:729.465000px;}
.y105{bottom:733.605000px;}
.yd{bottom:734.505000px;}
.y98{bottom:737.565000px;}
.y5c{bottom:740.625000px;}
.y162{bottom:746.205000px;}
.yc9{bottom:747.285000px;}
.y104{bottom:757.365000px;}
.y5b{bottom:758.445000px;}
.y2d{bottom:758.805000px;}
.y97{bottom:760.965000px;}
.yc8{bottom:767.085000px;}
.y103{bottom:775.185000px;}
.y139{bottom:776.265000px;}
.y5a{bottom:776.445000px;}
.y96{bottom:779.145000px;}
.yc{bottom:788.505000px;}
.yc7{bottom:793.005000px;}
.y138{bottom:794.085000px;}
.y59{bottom:794.265000px;}
.y161{bottom:796.965000px;}
.y95{bottom:797.145000px;}
.y102{bottom:810.825000px;}
.y137{bottom:811.725000px;}
.y58{bottom:812.085000px;}
.y2a{bottom:814.065000px;}
.y160{bottom:814.785000px;}
.y94{bottom:814.965000px;}
.yc6{bottom:818.745000px;}
.y101{bottom:828.825000px;}
.y57{bottom:829.905000px;}
.y136{bottom:830.805000px;}
.y15f{bottom:832.605000px;}
.y93{bottom:832.785000px;}
.yc5{bottom:844.485000px;}
.y100{bottom:847.545000px;}
.y56{bottom:847.725000px;}
.y135{bottom:848.625000px;}
.y15e{bottom:850.425000px;}
.y92{bottom:850.605000px;}
.y26{bottom:858.240000px;}
.yff{bottom:865.365000px;}
.y55{bottom:865.545000px;}
.y134{bottom:866.445000px;}
.y15d{bottom:868.245000px;}
.y91{bottom:868.425000px;}
.y29{bottom:872.385000px;}
.yc4{bottom:877.245000px;}
.yfe{bottom:883.185000px;}
.y54{bottom:883.545000px;}
.y133{bottom:884.445000px;}
.y90{bottom:886.245000px;}
.yc3{bottom:895.245000px;}
.yfd{bottom:901.185000px;}
.y53{bottom:901.365000px;}
.y132{bottom:902.265000px;}
.y15c{bottom:903.705000px;}
.y8f{bottom:904.245000px;}
.yc2{bottom:913.110000px;}
.y52{bottom:919.230000px;}
.yfc{bottom:919.950000px;}
.y131{bottom:920.130000px;}
.y8e{bottom:922.110000px;}
.yc1{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.y51{bottom:937.050000px;}
.yfb{bottom:937.770000px;}
.y130{bottom:937.950000px;}
.y8d{bottom:939.930000px;}
.y24{bottom:941.400000px;}
.yc0{bottom:948.750000px;}
.y50{bottom:954.870000px;}
.yfa{bottom:955.770000px;}
.y43{bottom:955.800000px;}
.y12f{bottom:955.950000px;}
.y8c{bottom:957.750000px;}
.ybf{bottom:966.570000px;}
.y4f{bottom:972.870000px;}
.yf9{bottom:973.590000px;}
.y12e{bottom:974.670000px;}
.y8b{bottom:975.570000px;}
.ybe{bottom:984.570000px;}
.y42{bottom:989.790000px;}
.y4e{bottom:990.690000px;}
.y12d{bottom:992.490000px;}
.y8a{bottom:993.570000px;}
.yf8{bottom:1001.310000px;}
.ybd{bottom:1002.390000px;}
.y4d{bottom:1008.510000px;}
.y12c{bottom:1010.310000px;}
.y89{bottom:1011.390000px;}
.y41{bottom:1016.070000px;}
.yf7{bottom:1019.130000px;}
.ybc{bottom:1019.850000px;}
.y15b{bottom:1020.210000px;}
.y4c{bottom:1025.970000px;}
.y12b{bottom:1028.130000px;}
.y88{bottom:1028.850000px;}
.ybb{bottom:1037.670000px;}
.y15a{bottom:1038.030000px;}
.y40{bottom:1041.990000px;}
.yf6{bottom:1045.770000px;}
.y12a{bottom:1046.130000px;}
.y87{bottom:1047.030000px;}
.y4b{bottom:1054.950000px;}
.y159{bottom:1055.850000px;}
.yf5{bottom:1063.950000px;}
.y86{bottom:1064.850000px;}
.y3f{bottom:1068.810000px;}
.y158{bottom:1073.310000px;}
.y4a{bottom:1075.110000px;}
.yf4{bottom:1081.770000px;}
.y85{bottom:1082.670000px;}
.y49{bottom:1093.650000px;}
.yf3{bottom:1099.590000px;}
.y129{bottom:1099.770000px;}
.y84{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.y48{bottom:1113.450000px;}
.yf2{bottom:1117.410000px;}
.y128{bottom:1118.130000px;}
.y83{bottom:1118.490000px;}
.yf1{bottom:1135.410000px;}
.y82{bottom:1136.310000px;}
.y47{bottom:1139.190000px;}
.yf0{bottom:1153.260000px;}
.y81{bottom:1154.160000px;}
.yef{bottom:1171.080000px;}
.y46{bottom:1171.980000px;}
.yee{bottom:1188.900000px;}
.y45{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h5{height:36.467930px;}
.h1a{height:37.705078px;}
.h3{height:48.616875px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.h19{height:54.421875px;}
.h1b{height:55.503491px;}
.h8{height:55.825312px;}
.h18{height:56.214844px;}
.h13{height:58.621992px;}
.h11{height:58.651172px;}
.h14{height:58.763250px;}
.h15{height:60.226875px;}
.h6{height:65.010937px;}
.hf{height:66.757500px;}
.hd{height:70.380000px;}
.h17{height:78.367500px;}
.hb{height:80.949375px;}
.h10{height:81.000000px;}
.he{height:84.898125px;}
.h16{height:132.480000px;}
.hc{height:160.380000px;}
.h12{height:291.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:775.800000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xe{left:10.800000px;}
.xf{left:16.740000px;}
.x13{left:51.660000px;}
.x5{left:54.000000px;}
.x16{left:61.200000px;}
.x15{left:65.160000px;}
.x17{left:72.000000px;}
.xc{left:81.000000px;}
.x1{left:100.080000px;}
.x1f{left:108.036000px;}
.x18{left:110.550000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x1e{left:175.935000px;}
.x14{left:189.390000px;}
.x1d{left:198.360000px;}
.x1b{left:265.215000px;}
.x1c{left:294.735000px;}
.x19{left:303.015000px;}
.x10{left:327.135000px;}
.x7{left:356.655000px;}
.x1a{left:358.635000px;}
.x3{left:367.920000px;}
.x4{left:382.830000px;}
.x12{left:413.175000px;}
.xd{left:465.945000px;}
.x21{left:492.945000px;}
.x11{left:511.665000px;}
.x20{left:519.945000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.136320pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:3.360000pt;}
.ls6{letter-spacing:22.496000pt;}
.ls0{letter-spacing:24.944640pt;}
.ls7{letter-spacing:46.816000pt;}
.lse{letter-spacing:60.896000pt;}
.lsd{letter-spacing:61.024000pt;}
.ws7{word-spacing:-48.000000pt;}
.wsc{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.272320pt;}
.ws5{word-spacing:-15.360000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._11{width:2.997760pt;}
._5{width:4.010240pt;}
._4{width:5.232000pt;}
._d{width:6.643413pt;}
._f{width:7.538133pt;}
._8{width:8.592000pt;}
._a{width:10.128000pt;}
._e{width:11.037653pt;}
._12{width:12.030293pt;}
._9{width:13.116587pt;}
._3{width:14.112000pt;}
._b{width:15.504000pt;}
._13{width:17.018240pt;}
._10{width:18.096000pt;}
._14{width:19.008000pt;}
._15{width:20.234240pt;}
._20{width:21.408000pt;}
._18{width:22.298240pt;}
._1b{width:23.834240pt;}
._25{width:24.960000pt;}
._24{width:25.920000pt;}
._16{width:26.832000pt;}
._17{width:27.770240pt;}
._1c{width:28.664107pt;}
._7{width:30.218240pt;}
._6{width:31.248000pt;}
._2c{width:32.400000pt;}
._c{width:33.600000pt;}
._1a{width:35.136000pt;}
._19{width:36.048000pt;}
._30{width:37.197653pt;}
._1e{width:38.448000pt;}
._1f{width:39.360000pt;}
._21{width:40.317653pt;}
._22{width:41.350187pt;}
._1d{width:43.296000pt;}
._27{width:44.352000pt;}
._28{width:45.312000pt;}
._2d{width:48.448000pt;}
._23{width:50.112000pt;}
._29{width:51.898880pt;}
._2f{width:73.671680pt;}
._2e{width:92.448000pt;}
._26{width:113.218560pt;}
._2b{width:120.005973pt;}
._2a{width:147.581653pt;}
._2{width:2613.606400pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y44{bottom:6.533333pt;}
.y4{bottom:7.680000pt;}
.y28{bottom:12.573333pt;}
.y8{bottom:20.000000pt;}
.y27{bottom:34.653333pt;}
.y7{bottom:36.480000pt;}
.y3d{bottom:36.826667pt;}
.y6{bottom:50.560000pt;}
.y2c{bottom:59.933333pt;}
.yed{bottom:74.400000pt;}
.y1a{bottom:75.520000pt;}
.yba{bottom:75.840000pt;}
.y157{bottom:78.880000pt;}
.y3a{bottom:80.026667pt;}
.y127{bottom:80.480000pt;}
.y23{bottom:82.560000pt;}
.y80{bottom:87.040000pt;}
.yec{bottom:90.240000pt;}
.y19{bottom:91.520000pt;}
.y156{bottom:94.400000pt;}
.y126{bottom:96.320000pt;}
.y39{bottom:97.786667pt;}
.y22{bottom:98.560000pt;}
.yb9{bottom:100.000000pt;}
.y7f{bottom:102.880000pt;}
.yeb{bottom:106.080000pt;}
.y182{bottom:106.880000pt;}
.y18{bottom:107.360000pt;}
.y125{bottom:112.320000pt;}
.y21{bottom:114.400000pt;}
.y38{bottom:115.386667pt;}
.yb8{bottom:115.840000pt;}
.y155{bottom:118.560000pt;}
.y7e{bottom:118.720000pt;}
.yea{bottom:122.080000pt;}
.y181{bottom:122.720000pt;}
.y17{bottom:123.200000pt;}
.y25{bottom:128.773333pt;}
.y20{bottom:130.240000pt;}
.yb7{bottom:131.680000pt;}
.y37{bottom:132.986667pt;}
.y154{bottom:134.400000pt;}
.y7d{bottom:134.560000pt;}
.y124{bottom:136.160000pt;}
.y180{bottom:138.560000pt;}
.ye9{bottom:138.720000pt;}
.y16{bottom:139.040000pt;}
.y1f{bottom:146.080000pt;}
.yb6{bottom:147.520000pt;}
.y7c{bottom:150.400000pt;}
.y36{bottom:150.626667pt;}
.y123{bottom:152.000000pt;}
.ye8{bottom:154.560000pt;}
.y15{bottom:154.880000pt;}
.y1e{bottom:161.920000pt;}
.yb5{bottom:163.520000pt;}
.y153{bottom:166.240000pt;}
.y7b{bottom:166.400000pt;}
.y122{bottom:167.520000pt;}
.y35{bottom:168.226667pt;}
.ye7{bottom:170.400000pt;}
.y14{bottom:170.720000pt;}
.y1d{bottom:177.920000pt;}
.yb4{bottom:179.360000pt;}
.y152{bottom:182.080000pt;}
.y7a{bottom:182.240000pt;}
.y121{bottom:183.386667pt;}
.y34{bottom:185.986667pt;}
.y17f{bottom:186.266667pt;}
.ye6{bottom:186.426667pt;}
.y13{bottom:186.746667pt;}
.y1c{bottom:193.786667pt;}
.yb3{bottom:195.226667pt;}
.y151{bottom:197.946667pt;}
.y79{bottom:198.106667pt;}
.y120{bottom:199.706667pt;}
.y17e{bottom:202.106667pt;}
.ye5{bottom:203.066667pt;}
.y33{bottom:203.586667pt;}
.y12{bottom:204.346667pt;}
.y1b{bottom:209.626667pt;}
.yb2{bottom:211.066667pt;}
.y150{bottom:213.466667pt;}
.y78{bottom:213.946667pt;}
.y11f{bottom:215.546667pt;}
.y17d{bottom:217.946667pt;}
.ye4{bottom:218.906667pt;}
.y32{bottom:221.186667pt;}
.yb1{bottom:226.586667pt;}
.y77{bottom:229.786667pt;}
.y11e{bottom:231.386667pt;}
.y17c{bottom:233.946667pt;}
.ye3{bottom:234.906667pt;}
.y11{bottom:235.866667pt;}
.y14f{bottom:237.626667pt;}
.y31{bottom:238.786667pt;}
.y76{bottom:245.626667pt;}
.y11d{bottom:247.226667pt;}
.y17b{bottom:249.786667pt;}
.yb0{bottom:250.746667pt;}
.y30{bottom:251.680000pt;}
.y14e{bottom:253.626667pt;}
.ye2{bottom:259.546667pt;}
.y75{bottom:261.306667pt;}
.y11c{bottom:263.066667pt;}
.y17a{bottom:265.626667pt;}
.yaf{bottom:266.746667pt;}
.y14d{bottom:269.466667pt;}
.y3e{bottom:270.746667pt;}
.ye1{bottom:275.386667pt;}
.y74{bottom:277.146667pt;}
.y11b{bottom:278.906667pt;}
.y179{bottom:281.466667pt;}
.yae{bottom:282.586667pt;}
.y14c{bottom:287.066667pt;}
.y3c{bottom:288.506667pt;}
.ye0{bottom:290.906667pt;}
.y73{bottom:293.306667pt;}
.y11a{bottom:294.906667pt;}
.y178{bottom:297.306667pt;}
.yad{bottom:298.426667pt;}
.ydf{bottom:306.746667pt;}
.y72{bottom:309.146667pt;}
.y14b{bottom:309.946667pt;}
.y119{bottom:310.746667pt;}
.y177{bottom:313.146667pt;}
.y3b{bottom:314.106667pt;}
.yac{bottom:314.266667pt;}
.yde{bottom:322.906667pt;}
.y71{bottom:324.986667pt;}
.y118{bottom:326.586667pt;}
.y176{bottom:329.146667pt;}
.yab{bottom:330.106667pt;}
.y14a{bottom:331.066667pt;}
.ydd{bottom:338.906667pt;}
.y70{bottom:340.986667pt;}
.y117{bottom:342.106667pt;}
.y175{bottom:344.986667pt;}
.yaa{bottom:346.106667pt;}
.y149{bottom:347.066667pt;}
.ydc{bottom:354.746667pt;}
.y6f{bottom:356.826667pt;}
.y116{bottom:358.266667pt;}
.ya9{bottom:361.946667pt;}
.y174{bottom:362.586667pt;}
.y148{bottom:362.906667pt;}
.ydb{bottom:370.586667pt;}
.y6e{bottom:372.666667pt;}
.y115{bottom:374.266667pt;}
.ya8{bottom:377.466667pt;}
.y147{bottom:378.746667pt;}
.yda{bottom:386.426667pt;}
.y6d{bottom:388.506667pt;}
.y114{bottom:390.106667pt;}
.y173{bottom:391.746667pt;}
.ya7{bottom:393.346667pt;}
.y146{bottom:394.626667pt;}
.yd9{bottom:402.306667pt;}
.y6c{bottom:404.386667pt;}
.y113{bottom:405.986667pt;}
.y172{bottom:407.586667pt;}
.y145{bottom:410.626667pt;}
.ya6{bottom:417.506667pt;}
.yd8{bottom:418.306667pt;}
.y6b{bottom:420.226667pt;}
.y112{bottom:421.826667pt;}
.y171{bottom:423.586667pt;}
.y144{bottom:427.266667pt;}
.ya5{bottom:433.346667pt;}
.yd7{bottom:434.146667pt;}
.y6a{bottom:436.226667pt;}
.y111{bottom:437.666667pt;}
.y170{bottom:439.426667pt;}
.y143{bottom:443.106667pt;}
.ya4{bottom:449.346667pt;}
.yd6{bottom:449.986667pt;}
.y69{bottom:452.066667pt;}
.y110{bottom:453.506667pt;}
.y16f{bottom:455.266667pt;}
.y142{bottom:458.946667pt;}
.ya3{bottom:465.186667pt;}
.yd5{bottom:465.826667pt;}
.y68{bottom:467.906667pt;}
.y10f{bottom:469.506667pt;}
.y16e{bottom:471.106667pt;}
.y141{bottom:474.786667pt;}
.ya2{bottom:481.026667pt;}
.yd4{bottom:481.666667pt;}
.y67{bottom:483.746667pt;}
.y10e{bottom:485.346667pt;}
.y16d{bottom:486.946667pt;}
.y140{bottom:490.786667pt;}
.ya1{bottom:496.866667pt;}
.yd3{bottom:497.506667pt;}
.y66{bottom:499.586667pt;}
.y10d{bottom:501.186667pt;}
.y16c{bottom:502.786667pt;}
.y13f{bottom:506.626667pt;}
.ya0{bottom:512.706667pt;}
.yd2{bottom:513.506667pt;}
.y65{bottom:515.586667pt;}
.y10c{bottom:516.706667pt;}
.y16b{bottom:518.786667pt;}
.y10{bottom:522.306667pt;}
.y9f{bottom:528.546667pt;}
.yd1{bottom:529.346667pt;}
.y13e{bottom:531.266667pt;}
.y64{bottom:531.426667pt;}
.y10b{bottom:532.546667pt;}
.y16a{bottom:534.626667pt;}
.y9e{bottom:544.546667pt;}
.yd0{bottom:545.186667pt;}
.y63{bottom:547.266667pt;}
.y169{bottom:550.466667pt;}
.y10a{bottom:556.866667pt;}
.yf{bottom:558.946667pt;}
.y9d{bottom:560.386667pt;}
.ycf{bottom:561.026667pt;}
.y62{bottom:563.106667pt;}
.y168{bottom:566.306667pt;}
.y109{bottom:572.706667pt;}
.ye{bottom:572.866667pt;}
.y9c{bottom:576.226667pt;}
.yce{bottom:576.866667pt;}
.y13d{bottom:578.626667pt;}
.y61{bottom:578.946667pt;}
.y167{bottom:582.146667pt;}
.y108{bottom:588.546667pt;}
.y9b{bottom:591.746667pt;}
.ycd{bottom:592.386667pt;}
.y13c{bottom:594.466667pt;}
.y60{bottom:594.786667pt;}
.y2f{bottom:595.106667pt;}
.y166{bottom:598.146667pt;}
.y107{bottom:606.173333pt;}
.y9a{bottom:609.693333pt;}
.y13b{bottom:610.653333pt;}
.y5f{bottom:610.813333pt;}
.y165{bottom:614.013333pt;}
.ycc{bottom:616.733333pt;}
.y2e{bottom:620.573333pt;}
.y2b{bottom:623.840000pt;}
.y13a{bottom:626.493333pt;}
.y5e{bottom:626.653333pt;}
.y106{bottom:629.053333pt;}
.y164{bottom:629.853333pt;}
.ycb{bottom:632.573333pt;}
.y99{bottom:632.733333pt;}
.y5d{bottom:642.493333pt;}
.y163{bottom:645.693333pt;}
.yca{bottom:648.413333pt;}
.y105{bottom:652.093333pt;}
.yd{bottom:652.893333pt;}
.y98{bottom:655.613333pt;}
.y5c{bottom:658.333333pt;}
.y162{bottom:663.293333pt;}
.yc9{bottom:664.253333pt;}
.y104{bottom:673.213333pt;}
.y5b{bottom:674.173333pt;}
.y2d{bottom:674.493333pt;}
.y97{bottom:676.413333pt;}
.yc8{bottom:681.853333pt;}
.y103{bottom:689.053333pt;}
.y139{bottom:690.013333pt;}
.y5a{bottom:690.173333pt;}
.y96{bottom:692.573333pt;}
.yc{bottom:700.893333pt;}
.yc7{bottom:704.893333pt;}
.y138{bottom:705.853333pt;}
.y59{bottom:706.013333pt;}
.y161{bottom:708.413333pt;}
.y95{bottom:708.573333pt;}
.y102{bottom:720.733333pt;}
.y137{bottom:721.533333pt;}
.y58{bottom:721.853333pt;}
.y2a{bottom:723.613333pt;}
.y160{bottom:724.253333pt;}
.y94{bottom:724.413333pt;}
.yc6{bottom:727.773333pt;}
.y101{bottom:736.733333pt;}
.y57{bottom:737.693333pt;}
.y136{bottom:738.493333pt;}
.y15f{bottom:740.093333pt;}
.y93{bottom:740.253333pt;}
.yc5{bottom:750.653333pt;}
.y100{bottom:753.373333pt;}
.y56{bottom:753.533333pt;}
.y135{bottom:754.333333pt;}
.y15e{bottom:755.933333pt;}
.y92{bottom:756.093333pt;}
.y26{bottom:762.880000pt;}
.yff{bottom:769.213333pt;}
.y55{bottom:769.373333pt;}
.y134{bottom:770.173333pt;}
.y15d{bottom:771.773333pt;}
.y91{bottom:771.933333pt;}
.y29{bottom:775.453333pt;}
.yc4{bottom:779.773333pt;}
.yfe{bottom:785.053333pt;}
.y54{bottom:785.373333pt;}
.y133{bottom:786.173333pt;}
.y90{bottom:787.773333pt;}
.yc3{bottom:795.773333pt;}
.yfd{bottom:801.053333pt;}
.y53{bottom:801.213333pt;}
.y132{bottom:802.013333pt;}
.y15c{bottom:803.293333pt;}
.y8f{bottom:803.773333pt;}
.yc2{bottom:811.653333pt;}
.y52{bottom:817.093333pt;}
.yfc{bottom:817.733333pt;}
.y131{bottom:817.893333pt;}
.y8e{bottom:819.653333pt;}
.yc1{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.y51{bottom:832.933333pt;}
.yfb{bottom:833.573333pt;}
.y130{bottom:833.733333pt;}
.y8d{bottom:835.493333pt;}
.y24{bottom:836.800000pt;}
.yc0{bottom:843.333333pt;}
.y50{bottom:848.773333pt;}
.yfa{bottom:849.573333pt;}
.y43{bottom:849.600000pt;}
.y12f{bottom:849.733333pt;}
.y8c{bottom:851.333333pt;}
.ybf{bottom:859.173333pt;}
.y4f{bottom:864.773333pt;}
.yf9{bottom:865.413333pt;}
.y12e{bottom:866.373333pt;}
.y8b{bottom:867.173333pt;}
.ybe{bottom:875.173333pt;}
.y42{bottom:879.813333pt;}
.y4e{bottom:880.613333pt;}
.y12d{bottom:882.213333pt;}
.y8a{bottom:883.173333pt;}
.yf8{bottom:890.053333pt;}
.ybd{bottom:891.013333pt;}
.y4d{bottom:896.453333pt;}
.y12c{bottom:898.053333pt;}
.y89{bottom:899.013333pt;}
.y41{bottom:903.173333pt;}
.yf7{bottom:905.893333pt;}
.ybc{bottom:906.533333pt;}
.y15b{bottom:906.853333pt;}
.y4c{bottom:911.973333pt;}
.y12b{bottom:913.893333pt;}
.y88{bottom:914.533333pt;}
.ybb{bottom:922.373333pt;}
.y15a{bottom:922.693333pt;}
.y40{bottom:926.213333pt;}
.yf6{bottom:929.573333pt;}
.y12a{bottom:929.893333pt;}
.y87{bottom:930.693333pt;}
.y4b{bottom:937.733333pt;}
.y159{bottom:938.533333pt;}
.yf5{bottom:945.733333pt;}
.y86{bottom:946.533333pt;}
.y3f{bottom:950.053333pt;}
.y158{bottom:954.053333pt;}
.y4a{bottom:955.653333pt;}
.yf4{bottom:961.573333pt;}
.y85{bottom:962.373333pt;}
.y49{bottom:972.133333pt;}
.yf3{bottom:977.413333pt;}
.y129{bottom:977.573333pt;}
.y84{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.y48{bottom:989.733333pt;}
.yf2{bottom:993.253333pt;}
.y128{bottom:993.893333pt;}
.y83{bottom:994.213333pt;}
.yf1{bottom:1009.253333pt;}
.y82{bottom:1010.053333pt;}
.y47{bottom:1012.613333pt;}
.yf0{bottom:1025.120000pt;}
.y81{bottom:1025.920000pt;}
.yef{bottom:1040.960000pt;}
.y46{bottom:1041.760000pt;}
.yee{bottom:1056.800000pt;}
.y45{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h5{height:32.415937pt;}
.h1a{height:33.515625pt;}
.h3{height:43.215000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.h19{height:48.375000pt;}
.h1b{height:49.336436pt;}
.h8{height:49.622500pt;}
.h18{height:49.968750pt;}
.h13{height:52.108438pt;}
.h11{height:52.134375pt;}
.h14{height:52.234000pt;}
.h15{height:53.535000pt;}
.h6{height:57.787500pt;}
.hf{height:59.340000pt;}
.hd{height:62.560000pt;}
.h17{height:69.660000pt;}
.hb{height:71.955000pt;}
.h10{height:72.000000pt;}
.he{height:75.465000pt;}
.h16{height:117.760000pt;}
.hc{height:142.560000pt;}
.h12{height:259.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:689.600000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xe{left:9.600000pt;}
.xf{left:14.880000pt;}
.x13{left:45.920000pt;}
.x5{left:48.000000pt;}
.x16{left:54.400000pt;}
.x15{left:57.920000pt;}
.x17{left:64.000000pt;}
.xc{left:72.000000pt;}
.x1{left:88.960000pt;}
.x1f{left:96.032000pt;}
.x18{left:98.266667pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x1e{left:156.386667pt;}
.x14{left:168.346667pt;}
.x1d{left:176.320000pt;}
.x1b{left:235.746667pt;}
.x1c{left:261.986667pt;}
.x19{left:269.346667pt;}
.x10{left:290.786667pt;}
.x7{left:317.026667pt;}
.x1a{left:318.786667pt;}
.x3{left:327.040000pt;}
.x4{left:340.293333pt;}
.x12{left:367.266667pt;}
.xd{left:414.173333pt;}
.x21{left:438.173333pt;}
.x11{left:454.813333pt;}
.x20{left:462.173333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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