
    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_792b87d6c74a3e38f73737e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_845a71fbb931881e4276ab7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ba6fc87431406cd21f2305e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_d6fbda183f722feec1c1db52.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_308d99dc9cde29279ce15cbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')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_eb0ea1e73a97d9d272e4d62f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_d2004098609dad1fc19e00bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.880000px;}
.lsb{letter-spacing:4.440000px;}
.lsf{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.944000px;}
.lsc{letter-spacing:12.960000px;}
.lse{letter-spacing:13.680000px;}
.ls18{letter-spacing:20.160000px;}
.ls14{letter-spacing:22.320000px;}
.ls17{letter-spacing:28.944000px;}
.lsa{letter-spacing:64.080000px;}
.ls6{letter-spacing:84.360000px;}
.ls7{letter-spacing:87.960000px;}
.lsd{letter-spacing:138.360000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.488000px;}
.wsa{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-13.536000px;}
._12{margin-left:-5.040000px;}
._3{margin-left:-3.634800px;}
._2{margin-left:-2.400000px;}
._1{margin-left:-1.008000px;}
._0{width:1.090800px;}
._4{width:3.085200px;}
._e{width:4.464000px;}
._d{width:6.408000px;}
._5{width:8.136000px;}
._6{width:9.576000px;}
._11{width:10.654800px;}
._9{width:11.725200px;}
._f{width:13.320000px;}
._8{width:14.400000px;}
._7{width:15.552000px;}
._10{width:16.632000px;}
._39{width:17.795520px;}
._18{width:19.080000px;}
._b{width:20.088000px;}
._c{width:21.135600px;}
._a{width:22.320000px;}
._25{width:23.594400px;}
._15{width:24.984000px;}
._13{width:26.064000px;}
._14{width:27.216000px;}
._20{width:28.656000px;}
._19{width:30.312000px;}
._37{width:31.464000px;}
._1c{width:32.472000px;}
._1d{width:33.552000px;}
._2e{width:34.899840px;}
._29{width:36.144000px;}
._35{width:37.584000px;}
._26{width:38.868000px;}
._1f{width:39.960000px;}
._1e{width:40.968000px;}
._2a{width:42.048000px;}
._2b{width:43.416000px;}
._1a{width:46.008000px;}
._1b{width:47.293200px;}
._36{width:51.768000px;}
._17{width:53.280000px;}
._16{width:54.360000px;}
._21{width:57.024000px;}
._2c{width:59.999040px;}
._23{width:63.360000px;}
._24{width:64.476000px;}
._27{width:67.392000px;}
._28{width:68.461200px;}
._32{width:81.213840px;}
._38{width:82.468800px;}
._30{width:108.867600px;}
._2d{width:116.222400px;}
._33{width:119.136000px;}
._31{width:152.507520px;}
._2f{width:168.702480px;}
._34{width:249.079680px;}
._3a{width:972.156000px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y7{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y127{bottom:12.060000px;}
.y120{bottom:12.240000px;}
.ye{bottom:12.600000px;}
.y5{bottom:14.940000px;}
.y128{bottom:20.700000px;}
.y121{bottom:20.880000px;}
.y16a{bottom:20.925000px;}
.y3{bottom:21.420000px;}
.y1{bottom:23.760000px;}
.y126{bottom:29.340000px;}
.y11f{bottom:29.520000px;}
.y169{bottom:29.565000px;}
.y6{bottom:34.200000px;}
.y12b{bottom:37.980000px;}
.y123{bottom:38.160000px;}
.y12c{bottom:46.620000px;}
.y163{bottom:46.650000px;}
.y122{bottom:46.800000px;}
.yc{bottom:57.420000px;}
.yb{bottom:77.580000px;}
.ya{bottom:93.420000px;}
.yfe{bottom:114.300000px;}
.y14c{bottom:115.560000px;}
.y67{bottom:118.260000px;}
.y12f{bottom:118.440000px;}
.y95{bottom:124.560000px;}
.yb6{bottom:127.260000px;}
.y1af{bottom:130.320000px;}
.y1d4{bottom:131.760000px;}
.y15b{bottom:133.560000px;}
.yfd{bottom:135.000000px;}
.y39{bottom:135.360000px;}
.y14b{bottom:136.260000px;}
.y66{bottom:138.960000px;}
.y94{bottom:145.260000px;}
.y194{bottom:145.620000px;}
.yb5{bottom:147.960000px;}
.y12e{bottom:148.140000px;}
.y1ae{bottom:151.020000px;}
.y1ce{bottom:152.460000px;}
.y15a{bottom:154.260000px;}
.yd2{bottom:154.800000px;}
.yfc{bottom:155.700000px;}
.y38{bottom:156.060000px;}
.y139{bottom:156.960000px;}
.y65{bottom:159.660000px;}
.y93{bottom:165.960000px;}
.y193{bottom:166.320000px;}
.yb4{bottom:168.660000px;}
.y12d{bottom:168.840000px;}
.y1cd{bottom:173.160000px;}
.y159{bottom:174.960000px;}
.yd1{bottom:175.500000px;}
.yfb{bottom:176.400000px;}
.y37{bottom:176.760000px;}
.y138{bottom:177.660000px;}
.y64{bottom:180.360000px;}
.y1ad{bottom:180.720000px;}
.y1d3{bottom:182.160000px;}
.y92{bottom:186.660000px;}
.y192{bottom:187.020000px;}
.y119{bottom:189.360000px;}
.y158{bottom:195.660000px;}
.yd0{bottom:196.200000px;}
.yfa{bottom:197.100000px;}
.y36{bottom:197.490000px;}
.y12a{bottom:198.030000px;}
.yb3{bottom:198.390000px;}
.y63{bottom:201.090000px;}
.y1ac{bottom:201.450000px;}
.y1cc{bottom:202.890000px;}
.y10f{bottom:207.390000px;}
.y191{bottom:207.750000px;}
.y130{bottom:210.090000px;}
.y16c{bottom:213.150000px;}
.y91{bottom:216.390000px;}
.yf9{bottom:217.830000px;}
.y35{bottom:218.190000px;}
.yb2{bottom:219.090000px;}
.y62{bottom:221.790000px;}
.y1cb{bottom:223.590000px;}
.ycf{bottom:227.190000px;}
.y10e{bottom:228.090000px;}
.y190{bottom:228.450000px;}
.y14a{bottom:230.790000px;}
.y1ab{bottom:231.150000px;}
.y1d2{bottom:232.590000px;}
.y90{bottom:237.090000px;}
.yf8{bottom:238.530000px;}
.y34{bottom:238.890000px;}
.yb1{bottom:239.790000px;}
.y61{bottom:242.490000px;}
.y157{bottom:246.090000px;}
.yce{bottom:247.890000px;}
.y10d{bottom:248.790000px;}
.y18f{bottom:249.150000px;}
.y149{bottom:251.490000px;}
.y1aa{bottom:251.850000px;}
.y1ca{bottom:253.290000px;}
.y8f{bottom:257.790000px;}
.yf7{bottom:259.230000px;}
.y33{bottom:259.590000px;}
.yb0{bottom:260.490000px;}
.y60{bottom:263.190000px;}
.y156{bottom:266.790000px;}
.y18e{bottom:269.850000px;}
.y129{bottom:272.190000px;}
.y1c9{bottom:273.990000px;}
.y8e{bottom:278.490000px;}
.ycd{bottom:278.850000px;}
.yf6{bottom:279.930000px;}
.y32{bottom:280.290000px;}
.yaf{bottom:281.190000px;}
.y1a9{bottom:281.550000px;}
.y5f{bottom:283.890000px;}
.y155{bottom:287.490000px;}
.y137{bottom:290.190000px;}
.y18d{bottom:290.550000px;}
.y8d{bottom:299.190000px;}
.ycc{bottom:299.550000px;}
.yae{bottom:301.890000px;}
.y1c8{bottom:303.690000px;}
.y154{bottom:308.190000px;}
.yf5{bottom:309.630000px;}
.y31{bottom:309.990000px;}
.y18c{bottom:311.250000px;}
.y5e{bottom:313.590000px;}
.y8c{bottom:319.890000px;}
.ycb{bottom:320.250000px;}
.yad{bottom:322.590000px;}
.y1c7{bottom:324.390000px;}
.y153{bottom:328.890000px;}
.y125{bottom:329.250000px;}
.yf4{bottom:330.330000px;}
.y30{bottom:330.690000px;}
.y118{bottom:331.590000px;}
.y1a8{bottom:331.950000px;}
.y10c{bottom:340.590000px;}
.y18b{bottom:340.950000px;}
.y5d{bottom:343.290000px;}
.y16b{bottom:344.550000px;}
.y8b{bottom:349.590000px;}
.yca{bottom:349.950000px;}
.yf3{bottom:351.030000px;}
.y2f{bottom:351.390000px;}
.y117{bottom:352.290000px;}
.y1c6{bottom:354.090000px;}
.y10b{bottom:361.290000px;}
.y18a{bottom:361.650000px;}
.y148{bottom:363.990000px;}
.y8a{bottom:370.290000px;}
.yc9{bottom:370.650000px;}
.yf2{bottom:371.730000px;}
.y2e{bottom:372.090000px;}
.y5c{bottom:372.990000px;}
.y1c5{bottom:374.790000px;}
.y152{bottom:379.290000px;}
.y10a{bottom:381.990000px;}
.y189{bottom:382.350000px;}
.y147{bottom:384.690000px;}
.y124{bottom:386.130000px;}
.y89{bottom:390.990000px;}
.yc8{bottom:391.350000px;}
.yf1{bottom:392.430000px;}
.y2d{bottom:392.790000px;}
.yac{bottom:393.690000px;}
.y151{bottom:399.990000px;}
.y5b{bottom:402.690000px;}
.y188{bottom:403.050000px;}
.y1c4{bottom:404.490000px;}
.y146{bottom:405.390000px;}
.y88{bottom:411.690000px;}
.yc7{bottom:412.050000px;}
.yf0{bottom:413.130000px;}
.y2c{bottom:413.490000px;}
.yab{bottom:414.390000px;}
.y168{bottom:418.710000px;}
.y150{bottom:420.690000px;}
.y5a{bottom:423.390000px;}
.y187{bottom:423.750000px;}
.y1c3{bottom:425.190000px;}
.y87{bottom:432.390000px;}
.yef{bottom:433.830000px;}
.yaa{bottom:435.090000px;}
.y14f{bottom:441.435000px;}
.yc6{bottom:441.795000px;}
.y2b{bottom:443.235000px;}
.y59{bottom:444.135000px;}
.y186{bottom:444.495000px;}
.y86{bottom:453.135000px;}
.yee{bottom:454.575000px;}
.y1c2{bottom:454.935000px;}
.ya9{bottom:455.835000px;}
.y14e{bottom:462.135000px;}
.y2a{bottom:463.935000px;}
.y58{bottom:464.835000px;}
.y185{bottom:465.195000px;}
.yc5{bottom:471.495000px;}
.y85{bottom:473.835000px;}
.yed{bottom:475.275000px;}
.y1c1{bottom:475.635000px;}
.ya8{bottom:476.535000px;}
.y14d{bottom:482.835000px;}
.y29{bottom:484.635000px;}
.y57{bottom:485.535000px;}
.y184{bottom:485.895000px;}
.y167{bottom:487.515000px;}
.yc4{bottom:492.195000px;}
.y109{bottom:494.535000px;}
.yec{bottom:495.975000px;}
.y145{bottom:497.235000px;}
.y1a7{bottom:501.195000px;}
.y84{bottom:503.535000px;}
.y28{bottom:505.335000px;}
.y56{bottom:506.235000px;}
.y108{bottom:515.235000px;}
.y183{bottom:515.595000px;}
.y166{bottom:517.215000px;}
.y11e{bottom:517.395000px;}
.y144{bottom:517.935000px;}
.y1a6{bottom:521.895000px;}
.yc3{bottom:523.155000px;}
.y133{bottom:524.235000px;}
.yeb{bottom:525.675000px;}
.y27{bottom:526.035000px;}
.y55{bottom:526.935000px;}
.y83{bottom:533.235000px;}
.ya7{bottom:535.935000px;}
.y182{bottom:536.295000px;}
.y143{bottom:538.635000px;}
.y1a5{bottom:542.595000px;}
.yc2{bottom:543.855000px;}
.y132{bottom:544.935000px;}
.yea{bottom:546.375000px;}
.y26{bottom:546.735000px;}
.y165{bottom:546.915000px;}
.y54{bottom:547.635000px;}
.y82{bottom:553.935000px;}
.y1c0{bottom:555.735000px;}
.ya6{bottom:556.635000px;}
.y181{bottom:556.995000px;}
.y142{bottom:559.335000px;}
.yc1{bottom:564.555000px;}
.y107{bottom:565.635000px;}
.ye9{bottom:567.075000px;}
.y25{bottom:567.435000px;}
.y53{bottom:568.335000px;}
.y1a4{bottom:572.295000px;}
.y81{bottom:574.635000px;}
.y164{bottom:576.075000px;}
.y1bf{bottom:576.435000px;}
.ya5{bottom:577.335000px;}
.y180{bottom:577.695000px;}
.y141{bottom:580.035000px;}
.y106{bottom:586.335000px;}
.ye8{bottom:587.775000px;}
.y52{bottom:589.035000px;}
.y1a3{bottom:592.995000px;}
.y80{bottom:595.335000px;}
.yc0{bottom:595.515000px;}
.y24{bottom:597.135000px;}
.ya4{bottom:598.035000px;}
.y17f{bottom:598.395000px;}
.y140{bottom:600.735000px;}
.y1be{bottom:606.135000px;}
.y105{bottom:607.035000px;}
.ye7{bottom:608.475000px;}
.y7f{bottom:616.035000px;}
.ybf{bottom:616.215000px;}
.yd{bottom:617.475000px;}
.y23{bottom:617.835000px;}
.y51{bottom:618.735000px;}
.y17e{bottom:619.095000px;}
.y13f{bottom:621.435000px;}
.y1a2{bottom:623.955000px;}
.y1bd{bottom:626.835000px;}
.y104{bottom:627.735000px;}
.ye6{bottom:629.175000px;}
.y162{bottom:633.135000px;}
.y11d{bottom:636.735000px;}
.y22{bottom:638.535000px;}
.y50{bottom:639.435000px;}
.y17d{bottom:639.795000px;}
.y1a1{bottom:644.655000px;}
.y7e{bottom:645.735000px;}
.ybe{bottom:647.175000px;}
.y103{bottom:648.435000px;}
.y13e{bottom:651.135000px;}
.y1bc{bottom:656.535000px;}
.y11c{bottom:657.435000px;}
.ye5{bottom:658.875000px;}
.y21{bottom:659.235000px;}
.y4f{bottom:660.135000px;}
.y17c{bottom:660.495000px;}
.y1a0{bottom:665.355000px;}
.y7d{bottom:666.435000px;}
.ybd{bottom:667.875000px;}
.ya3{bottom:669.135000px;}
.y1bb{bottom:677.265000px;}
.y11b{bottom:678.165000px;}
.ye4{bottom:679.605000px;}
.y20{bottom:679.965000px;}
.y4e{bottom:680.865000px;}
.y17b{bottom:681.225000px;}
.y19f{bottom:686.085000px;}
.y7c{bottom:687.165000px;}
.ybc{bottom:688.605000px;}
.ya2{bottom:689.865000px;}
.y102{bottom:698.865000px;}
.ye3{bottom:700.305000px;}
.y1f{bottom:700.665000px;}
.y4d{bottom:701.565000px;}
.y17a{bottom:701.925000px;}
.y19e{bottom:706.785000px;}
.y1ba{bottom:706.965000px;}
.y161{bottom:707.325000px;}
.y7b{bottom:707.865000px;}
.ya1{bottom:710.565000px;}
.ybb{bottom:719.565000px;}
.ye2{bottom:721.005000px;}
.y1e{bottom:721.365000px;}
.y13d{bottom:722.265000px;}
.y1b9{bottom:727.665000px;}
.y7a{bottom:728.565000px;}
.y4c{bottom:731.265000px;}
.y179{bottom:731.625000px;}
.y19d{bottom:737.745000px;}
.y116{bottom:740.265000px;}
.yba{bottom:740.445000px;}
.ye1{bottom:741.705000px;}
.y1d{bottom:742.065000px;}
.y13c{bottom:742.965000px;}
.y79{bottom:749.265000px;}
.y4b{bottom:751.965000px;}
.y1b8{bottom:757.365000px;}
.y19c{bottom:758.445000px;}
.y115{bottom:760.965000px;}
.y178{bottom:761.325000px;}
.y13b{bottom:763.665000px;}
.y160{bottom:764.385000px;}
.y78{bottom:769.965000px;}
.yb9{bottom:771.405000px;}
.y1c{bottom:771.765000px;}
.y4a{bottom:772.665000px;}
.y1b7{bottom:778.065000px;}
.y131{bottom:778.965000px;}
.y19b{bottom:779.145000px;}
.y114{bottom:781.665000px;}
.y13a{bottom:784.365000px;}
.y101{bottom:790.665000px;}
.y177{bottom:791.025000px;}
.yb8{bottom:792.105000px;}
.y49{bottom:793.365000px;}
.y77{bottom:799.665000px;}
.y1b{bottom:801.465000px;}
.ya0{bottom:802.365000px;}
.y1b6{bottom:807.765000px;}
.y19a{bottom:810.105000px;}
.y100{bottom:811.365000px;}
.y176{bottom:811.725000px;}
.ye0{bottom:812.805000px;}
.y48{bottom:814.065000px;}
.y76{bottom:820.365000px;}
.y15f{bottom:821.445000px;}
.y9f{bottom:823.065000px;}
.y1b5{bottom:828.465000px;}
.y199{bottom:830.805000px;}
.y1a{bottom:831.165000px;}
.yff{bottom:832.065000px;}
.y175{bottom:832.425000px;}
.ydf{bottom:833.505000px;}
.y47{bottom:834.765000px;}
.y1d1{bottom:837.465000px;}
.y75{bottom:841.065000px;}
.y9e{bottom:843.765000px;}
.y113{bottom:852.765000px;}
.y174{bottom:853.125000px;}
.yde{bottom:854.205000px;}
.y46{bottom:855.465000px;}
.y1b4{bottom:858.165000px;}
.y19{bottom:858.705000px;}
.y74{bottom:861.765000px;}
.y9d{bottom:864.465000px;}
.y112{bottom:873.465000px;}
.y173{bottom:873.825000px;}
.ydd{bottom:874.905000px;}
.y45{bottom:876.165000px;}
.y15e{bottom:878.325000px;}
.y1b3{bottom:878.865000px;}
.y18{bottom:881.565000px;}
.y73{bottom:882.465000px;}
.y9c{bottom:885.165000px;}
.y1d0{bottom:887.865000px;}
.yb7{bottom:894.165000px;}
.y172{bottom:894.525000px;}
.y72{bottom:903.165000px;}
.y198{bottom:903.345000px;}
.ydc{bottom:904.605000px;}
.y44{bottom:905.865000px;}
.y1b2{bottom:908.565000px;}
.y17{bottom:909.105000px;}
.y1d8{bottom:911.265000px;}
.y111{bottom:914.910000px;}
.y1cf{bottom:917.610000px;}
.y71{bottom:923.910000px;}
.y171{bottom:924.090000px;}
.y43{bottom:926.610000px;}
.y16{bottom:932.010000px;}
.y197{bottom:934.170000px;}
.ydb{bottom:934.350000px;}
.y9b{bottom:935.610000px;}
.y1b1{bottom:938.310000px;}
.y1d7{bottom:941.010000px;}
.y70{bottom:944.610000px;}
.y42{bottom:947.310000px;}
.y196{bottom:954.870000px;}
.y170{bottom:955.050000px;}
.y110{bottom:956.310000px;}
.y1b0{bottom:959.010000px;}
.y15{bottom:961.710000px;}
.yda{bottom:964.050000px;}
.y6f{bottom:965.310000px;}
.y41{bottom:968.010000px;}
.y1d6{bottom:970.710000px;}
.y195{bottom:975.750000px;}
.y136{bottom:977.010000px;}
.y9a{bottom:986.010000px;}
.y40{bottom:988.710000px;}
.y14{bottom:991.410000px;}
.yd9{bottom:993.750000px;}
.y6e{bottom:995.010000px;}
.y135{bottom:997.710000px;}
.y1d5{bottom:1000.410000px;}
.y99{bottom:1006.710000px;}
.y3f{bottom:1009.410000px;}
.yd8{bottom:1014.450000px;}
.y6d{bottom:1015.710000px;}
.y16f{bottom:1016.970000px;}
.y134{bottom:1018.410000px;}
.y13{bottom:1021.110000px;}
.y98{bottom:1027.410000px;}
.y3e{bottom:1030.110000px;}
.yd7{bottom:1035.150000px;}
.y6c{bottom:1036.410000px;}
.y15d{bottom:1039.110000px;}
.y12{bottom:1041.810000px;}
.y16e{bottom:1047.930000px;}
.y97{bottom:1048.110000px;}
.y3d{bottom:1050.810000px;}
.y6b{bottom:1057.110000px;}
.y15c{bottom:1059.810000px;}
.yd6{bottom:1066.110000px;}
.y96{bottom:1068.810000px;}
.y11{bottom:1071.510000px;}
.y6a{bottom:1077.810000px;}
.y16d{bottom:1079.070000px;}
.y3c{bottom:1080.510000px;}
.yd5{bottom:1086.810000px;}
.y11a{bottom:1089.510000px;}
.y69{bottom:1098.510000px;}
.y10{bottom:1101.210000px;}
.y3b{bottom:1110.210000px;}
.yd4{bottom:1117.770000px;}
.y68{bottom:1119.210000px;}
.yf{bottom:1130.910000px;}
.yd3{bottom:1138.650000px;}
.y3a{bottom:1139.910000px;}
.y9{bottom:1193.220000px;}
.y8{bottom:1208.880000px;}
.y4{bottom:1212.840000px;}
.h2{height:18.000000px;}
.h9{height:28.260000px;}
.h4{height:29.700000px;}
.hd{height:40.254961px;}
.h6{height:48.960000px;}
.h7{height:49.868086px;}
.hf{height:52.290000px;}
.h12{height:52.380000px;}
.he{height:52.560000px;}
.h11{height:52.596000px;}
.hb{height:60.082031px;}
.h13{height:61.171875px;}
.h3{height:61.189805px;}
.ha{height:63.000000px;}
.h8{height:65.884219px;}
.hc{height:65.970000px;}
.h10{height:69.660000px;}
.h14{height:69.696000px;}
.h15{height:69.840000px;}
.h5{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:54.360000px;}
.wf{width:57.960000px;}
.w19{width:64.440000px;}
.we{width:64.800000px;}
.w9{width:66.600000px;}
.w16{width:67.896000px;}
.w8{width:84.990000px;}
.w13{width:90.720000px;}
.w10{width:98.496000px;}
.w14{width:99.900000px;}
.w11{width:102.960000px;}
.wb{width:109.620000px;}
.w6{width:130.536000px;}
.wa{width:144.576000px;}
.wc{width:152.490000px;}
.w2{width:165.810000px;}
.w4{width:167.970000px;}
.w17{width:178.770000px;}
.w3{width:184.530000px;}
.wd{width:194.070000px;}
.w18{width:199.830000px;}
.w12{width:249.735000px;}
.w5{width:667.770000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xc{left:10.800000px;}
.x5{left:20.340000px;}
.x8{left:21.780000px;}
.x9{left:26.640000px;}
.x3{left:61.380000px;}
.x6{left:83.556000px;}
.xa{left:106.235987px;}
.x13{left:107.495987px;}
.xd{left:108.755987px;}
.x15{left:119.375987px;}
.x10{left:127.475987px;}
.xe{left:147.455987px;}
.x17{left:160.229987px;}
.x1c{left:175.710000px;}
.x18{left:177.330000px;}
.x21{left:210.630000px;}
.x1d{left:236.010000px;}
.x14{left:249.149987px;}
.x22{left:267.150000px;}
.x16{left:284.654987px;}
.x12{left:303.734987px;}
.x19{left:324.075000px;}
.x1e{left:336.855000px;}
.xf{left:370.694987px;}
.x4{left:385.635000px;}
.x1a{left:435.855000px;}
.x1f{left:441.975000px;}
.x11{left:446.474987px;}
.x23{left:518.145000px;}
.x1b{left:590.505000px;}
.x20{left:693.870000px;}
.x1{left:694.950000px;}
.x24{left:720.150000px;}
.x7{left:745.350000px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.560000pt;}
.lsb{letter-spacing:3.946667pt;}
.lsf{letter-spacing:8.320000pt;}
.ls5{letter-spacing:9.728000pt;}
.lsc{letter-spacing:11.520000pt;}
.lse{letter-spacing:12.160000pt;}
.ls18{letter-spacing:17.920000pt;}
.ls14{letter-spacing:19.840000pt;}
.ls17{letter-spacing:25.728000pt;}
.lsa{letter-spacing:56.960000pt;}
.ls6{letter-spacing:74.986667pt;}
.ls7{letter-spacing:78.186667pt;}
.lsd{letter-spacing:122.986667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.656000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-12.032000pt;}
._12{margin-left:-4.480000pt;}
._3{margin-left:-3.230933pt;}
._2{margin-left:-2.133333pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.969600pt;}
._4{width:2.742400pt;}
._e{width:3.968000pt;}
._d{width:5.696000pt;}
._5{width:7.232000pt;}
._6{width:8.512000pt;}
._11{width:9.470933pt;}
._9{width:10.422400pt;}
._f{width:11.840000pt;}
._8{width:12.800000pt;}
._7{width:13.824000pt;}
._10{width:14.784000pt;}
._39{width:15.818240pt;}
._18{width:16.960000pt;}
._b{width:17.856000pt;}
._c{width:18.787200pt;}
._a{width:19.840000pt;}
._25{width:20.972800pt;}
._15{width:22.208000pt;}
._13{width:23.168000pt;}
._14{width:24.192000pt;}
._20{width:25.472000pt;}
._19{width:26.944000pt;}
._37{width:27.968000pt;}
._1c{width:28.864000pt;}
._1d{width:29.824000pt;}
._2e{width:31.022080pt;}
._29{width:32.128000pt;}
._35{width:33.408000pt;}
._26{width:34.549333pt;}
._1f{width:35.520000pt;}
._1e{width:36.416000pt;}
._2a{width:37.376000pt;}
._2b{width:38.592000pt;}
._1a{width:40.896000pt;}
._1b{width:42.038400pt;}
._36{width:46.016000pt;}
._17{width:47.360000pt;}
._16{width:48.320000pt;}
._21{width:50.688000pt;}
._2c{width:53.332480pt;}
._23{width:56.320000pt;}
._24{width:57.312000pt;}
._27{width:59.904000pt;}
._28{width:60.854400pt;}
._32{width:72.190080pt;}
._38{width:73.305600pt;}
._30{width:96.771200pt;}
._2d{width:103.308800pt;}
._33{width:105.898667pt;}
._31{width:135.562240pt;}
._2f{width:149.957760pt;}
._34{width:221.404160pt;}
._3a{width:864.138667pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y7{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y127{bottom:10.720000pt;}
.y120{bottom:10.880000pt;}
.ye{bottom:11.200000pt;}
.y5{bottom:13.280000pt;}
.y128{bottom:18.400000pt;}
.y121{bottom:18.560000pt;}
.y16a{bottom:18.600000pt;}
.y3{bottom:19.040000pt;}
.y1{bottom:21.120000pt;}
.y126{bottom:26.080000pt;}
.y11f{bottom:26.240000pt;}
.y169{bottom:26.280000pt;}
.y6{bottom:30.400000pt;}
.y12b{bottom:33.760000pt;}
.y123{bottom:33.920000pt;}
.y12c{bottom:41.440000pt;}
.y163{bottom:41.466667pt;}
.y122{bottom:41.600000pt;}
.yc{bottom:51.040000pt;}
.yb{bottom:68.960000pt;}
.ya{bottom:83.040000pt;}
.yfe{bottom:101.600000pt;}
.y14c{bottom:102.720000pt;}
.y67{bottom:105.120000pt;}
.y12f{bottom:105.280000pt;}
.y95{bottom:110.720000pt;}
.yb6{bottom:113.120000pt;}
.y1af{bottom:115.840000pt;}
.y1d4{bottom:117.120000pt;}
.y15b{bottom:118.720000pt;}
.yfd{bottom:120.000000pt;}
.y39{bottom:120.320000pt;}
.y14b{bottom:121.120000pt;}
.y66{bottom:123.520000pt;}
.y94{bottom:129.120000pt;}
.y194{bottom:129.440000pt;}
.yb5{bottom:131.520000pt;}
.y12e{bottom:131.680000pt;}
.y1ae{bottom:134.240000pt;}
.y1ce{bottom:135.520000pt;}
.y15a{bottom:137.120000pt;}
.yd2{bottom:137.600000pt;}
.yfc{bottom:138.400000pt;}
.y38{bottom:138.720000pt;}
.y139{bottom:139.520000pt;}
.y65{bottom:141.920000pt;}
.y93{bottom:147.520000pt;}
.y193{bottom:147.840000pt;}
.yb4{bottom:149.920000pt;}
.y12d{bottom:150.080000pt;}
.y1cd{bottom:153.920000pt;}
.y159{bottom:155.520000pt;}
.yd1{bottom:156.000000pt;}
.yfb{bottom:156.800000pt;}
.y37{bottom:157.120000pt;}
.y138{bottom:157.920000pt;}
.y64{bottom:160.320000pt;}
.y1ad{bottom:160.640000pt;}
.y1d3{bottom:161.920000pt;}
.y92{bottom:165.920000pt;}
.y192{bottom:166.240000pt;}
.y119{bottom:168.320000pt;}
.y158{bottom:173.920000pt;}
.yd0{bottom:174.400000pt;}
.yfa{bottom:175.200000pt;}
.y36{bottom:175.546667pt;}
.y12a{bottom:176.026667pt;}
.yb3{bottom:176.346667pt;}
.y63{bottom:178.746667pt;}
.y1ac{bottom:179.066667pt;}
.y1cc{bottom:180.346667pt;}
.y10f{bottom:184.346667pt;}
.y191{bottom:184.666667pt;}
.y130{bottom:186.746667pt;}
.y16c{bottom:189.466667pt;}
.y91{bottom:192.346667pt;}
.yf9{bottom:193.626667pt;}
.y35{bottom:193.946667pt;}
.yb2{bottom:194.746667pt;}
.y62{bottom:197.146667pt;}
.y1cb{bottom:198.746667pt;}
.ycf{bottom:201.946667pt;}
.y10e{bottom:202.746667pt;}
.y190{bottom:203.066667pt;}
.y14a{bottom:205.146667pt;}
.y1ab{bottom:205.466667pt;}
.y1d2{bottom:206.746667pt;}
.y90{bottom:210.746667pt;}
.yf8{bottom:212.026667pt;}
.y34{bottom:212.346667pt;}
.yb1{bottom:213.146667pt;}
.y61{bottom:215.546667pt;}
.y157{bottom:218.746667pt;}
.yce{bottom:220.346667pt;}
.y10d{bottom:221.146667pt;}
.y18f{bottom:221.466667pt;}
.y149{bottom:223.546667pt;}
.y1aa{bottom:223.866667pt;}
.y1ca{bottom:225.146667pt;}
.y8f{bottom:229.146667pt;}
.yf7{bottom:230.426667pt;}
.y33{bottom:230.746667pt;}
.yb0{bottom:231.546667pt;}
.y60{bottom:233.946667pt;}
.y156{bottom:237.146667pt;}
.y18e{bottom:239.866667pt;}
.y129{bottom:241.946667pt;}
.y1c9{bottom:243.546667pt;}
.y8e{bottom:247.546667pt;}
.ycd{bottom:247.866667pt;}
.yf6{bottom:248.826667pt;}
.y32{bottom:249.146667pt;}
.yaf{bottom:249.946667pt;}
.y1a9{bottom:250.266667pt;}
.y5f{bottom:252.346667pt;}
.y155{bottom:255.546667pt;}
.y137{bottom:257.946667pt;}
.y18d{bottom:258.266667pt;}
.y8d{bottom:265.946667pt;}
.ycc{bottom:266.266667pt;}
.yae{bottom:268.346667pt;}
.y1c8{bottom:269.946667pt;}
.y154{bottom:273.946667pt;}
.yf5{bottom:275.226667pt;}
.y31{bottom:275.546667pt;}
.y18c{bottom:276.666667pt;}
.y5e{bottom:278.746667pt;}
.y8c{bottom:284.346667pt;}
.ycb{bottom:284.666667pt;}
.yad{bottom:286.746667pt;}
.y1c7{bottom:288.346667pt;}
.y153{bottom:292.346667pt;}
.y125{bottom:292.666667pt;}
.yf4{bottom:293.626667pt;}
.y30{bottom:293.946667pt;}
.y118{bottom:294.746667pt;}
.y1a8{bottom:295.066667pt;}
.y10c{bottom:302.746667pt;}
.y18b{bottom:303.066667pt;}
.y5d{bottom:305.146667pt;}
.y16b{bottom:306.266667pt;}
.y8b{bottom:310.746667pt;}
.yca{bottom:311.066667pt;}
.yf3{bottom:312.026667pt;}
.y2f{bottom:312.346667pt;}
.y117{bottom:313.146667pt;}
.y1c6{bottom:314.746667pt;}
.y10b{bottom:321.146667pt;}
.y18a{bottom:321.466667pt;}
.y148{bottom:323.546667pt;}
.y8a{bottom:329.146667pt;}
.yc9{bottom:329.466667pt;}
.yf2{bottom:330.426667pt;}
.y2e{bottom:330.746667pt;}
.y5c{bottom:331.546667pt;}
.y1c5{bottom:333.146667pt;}
.y152{bottom:337.146667pt;}
.y10a{bottom:339.546667pt;}
.y189{bottom:339.866667pt;}
.y147{bottom:341.946667pt;}
.y124{bottom:343.226667pt;}
.y89{bottom:347.546667pt;}
.yc8{bottom:347.866667pt;}
.yf1{bottom:348.826667pt;}
.y2d{bottom:349.146667pt;}
.yac{bottom:349.946667pt;}
.y151{bottom:355.546667pt;}
.y5b{bottom:357.946667pt;}
.y188{bottom:358.266667pt;}
.y1c4{bottom:359.546667pt;}
.y146{bottom:360.346667pt;}
.y88{bottom:365.946667pt;}
.yc7{bottom:366.266667pt;}
.yf0{bottom:367.226667pt;}
.y2c{bottom:367.546667pt;}
.yab{bottom:368.346667pt;}
.y168{bottom:372.186667pt;}
.y150{bottom:373.946667pt;}
.y5a{bottom:376.346667pt;}
.y187{bottom:376.666667pt;}
.y1c3{bottom:377.946667pt;}
.y87{bottom:384.346667pt;}
.yef{bottom:385.626667pt;}
.yaa{bottom:386.746667pt;}
.y14f{bottom:392.386667pt;}
.yc6{bottom:392.706667pt;}
.y2b{bottom:393.986667pt;}
.y59{bottom:394.786667pt;}
.y186{bottom:395.106667pt;}
.y86{bottom:402.786667pt;}
.yee{bottom:404.066667pt;}
.y1c2{bottom:404.386667pt;}
.ya9{bottom:405.186667pt;}
.y14e{bottom:410.786667pt;}
.y2a{bottom:412.386667pt;}
.y58{bottom:413.186667pt;}
.y185{bottom:413.506667pt;}
.yc5{bottom:419.106667pt;}
.y85{bottom:421.186667pt;}
.yed{bottom:422.466667pt;}
.y1c1{bottom:422.786667pt;}
.ya8{bottom:423.586667pt;}
.y14d{bottom:429.186667pt;}
.y29{bottom:430.786667pt;}
.y57{bottom:431.586667pt;}
.y184{bottom:431.906667pt;}
.y167{bottom:433.346667pt;}
.yc4{bottom:437.506667pt;}
.y109{bottom:439.586667pt;}
.yec{bottom:440.866667pt;}
.y145{bottom:441.986667pt;}
.y1a7{bottom:445.506667pt;}
.y84{bottom:447.586667pt;}
.y28{bottom:449.186667pt;}
.y56{bottom:449.986667pt;}
.y108{bottom:457.986667pt;}
.y183{bottom:458.306667pt;}
.y166{bottom:459.746667pt;}
.y11e{bottom:459.906667pt;}
.y144{bottom:460.386667pt;}
.y1a6{bottom:463.906667pt;}
.yc3{bottom:465.026667pt;}
.y133{bottom:465.986667pt;}
.yeb{bottom:467.266667pt;}
.y27{bottom:467.586667pt;}
.y55{bottom:468.386667pt;}
.y83{bottom:473.986667pt;}
.ya7{bottom:476.386667pt;}
.y182{bottom:476.706667pt;}
.y143{bottom:478.786667pt;}
.y1a5{bottom:482.306667pt;}
.yc2{bottom:483.426667pt;}
.y132{bottom:484.386667pt;}
.yea{bottom:485.666667pt;}
.y26{bottom:485.986667pt;}
.y165{bottom:486.146667pt;}
.y54{bottom:486.786667pt;}
.y82{bottom:492.386667pt;}
.y1c0{bottom:493.986667pt;}
.ya6{bottom:494.786667pt;}
.y181{bottom:495.106667pt;}
.y142{bottom:497.186667pt;}
.yc1{bottom:501.826667pt;}
.y107{bottom:502.786667pt;}
.ye9{bottom:504.066667pt;}
.y25{bottom:504.386667pt;}
.y53{bottom:505.186667pt;}
.y1a4{bottom:508.706667pt;}
.y81{bottom:510.786667pt;}
.y164{bottom:512.066667pt;}
.y1bf{bottom:512.386667pt;}
.ya5{bottom:513.186667pt;}
.y180{bottom:513.506667pt;}
.y141{bottom:515.586667pt;}
.y106{bottom:521.186667pt;}
.ye8{bottom:522.466667pt;}
.y52{bottom:523.586667pt;}
.y1a3{bottom:527.106667pt;}
.y80{bottom:529.186667pt;}
.yc0{bottom:529.346667pt;}
.y24{bottom:530.786667pt;}
.ya4{bottom:531.586667pt;}
.y17f{bottom:531.906667pt;}
.y140{bottom:533.986667pt;}
.y1be{bottom:538.786667pt;}
.y105{bottom:539.586667pt;}
.ye7{bottom:540.866667pt;}
.y7f{bottom:547.586667pt;}
.ybf{bottom:547.746667pt;}
.yd{bottom:548.866667pt;}
.y23{bottom:549.186667pt;}
.y51{bottom:549.986667pt;}
.y17e{bottom:550.306667pt;}
.y13f{bottom:552.386667pt;}
.y1a2{bottom:554.626667pt;}
.y1bd{bottom:557.186667pt;}
.y104{bottom:557.986667pt;}
.ye6{bottom:559.266667pt;}
.y162{bottom:562.786667pt;}
.y11d{bottom:565.986667pt;}
.y22{bottom:567.586667pt;}
.y50{bottom:568.386667pt;}
.y17d{bottom:568.706667pt;}
.y1a1{bottom:573.026667pt;}
.y7e{bottom:573.986667pt;}
.ybe{bottom:575.266667pt;}
.y103{bottom:576.386667pt;}
.y13e{bottom:578.786667pt;}
.y1bc{bottom:583.586667pt;}
.y11c{bottom:584.386667pt;}
.ye5{bottom:585.666667pt;}
.y21{bottom:585.986667pt;}
.y4f{bottom:586.786667pt;}
.y17c{bottom:587.106667pt;}
.y1a0{bottom:591.426667pt;}
.y7d{bottom:592.386667pt;}
.ybd{bottom:593.666667pt;}
.ya3{bottom:594.786667pt;}
.y1bb{bottom:602.013333pt;}
.y11b{bottom:602.813333pt;}
.ye4{bottom:604.093333pt;}
.y20{bottom:604.413333pt;}
.y4e{bottom:605.213333pt;}
.y17b{bottom:605.533333pt;}
.y19f{bottom:609.853333pt;}
.y7c{bottom:610.813333pt;}
.ybc{bottom:612.093333pt;}
.ya2{bottom:613.213333pt;}
.y102{bottom:621.213333pt;}
.ye3{bottom:622.493333pt;}
.y1f{bottom:622.813333pt;}
.y4d{bottom:623.613333pt;}
.y17a{bottom:623.933333pt;}
.y19e{bottom:628.253333pt;}
.y1ba{bottom:628.413333pt;}
.y161{bottom:628.733333pt;}
.y7b{bottom:629.213333pt;}
.ya1{bottom:631.613333pt;}
.ybb{bottom:639.613333pt;}
.ye2{bottom:640.893333pt;}
.y1e{bottom:641.213333pt;}
.y13d{bottom:642.013333pt;}
.y1b9{bottom:646.813333pt;}
.y7a{bottom:647.613333pt;}
.y4c{bottom:650.013333pt;}
.y179{bottom:650.333333pt;}
.y19d{bottom:655.773333pt;}
.y116{bottom:658.013333pt;}
.yba{bottom:658.173333pt;}
.ye1{bottom:659.293333pt;}
.y1d{bottom:659.613333pt;}
.y13c{bottom:660.413333pt;}
.y79{bottom:666.013333pt;}
.y4b{bottom:668.413333pt;}
.y1b8{bottom:673.213333pt;}
.y19c{bottom:674.173333pt;}
.y115{bottom:676.413333pt;}
.y178{bottom:676.733333pt;}
.y13b{bottom:678.813333pt;}
.y160{bottom:679.453333pt;}
.y78{bottom:684.413333pt;}
.yb9{bottom:685.693333pt;}
.y1c{bottom:686.013333pt;}
.y4a{bottom:686.813333pt;}
.y1b7{bottom:691.613333pt;}
.y131{bottom:692.413333pt;}
.y19b{bottom:692.573333pt;}
.y114{bottom:694.813333pt;}
.y13a{bottom:697.213333pt;}
.y101{bottom:702.813333pt;}
.y177{bottom:703.133333pt;}
.yb8{bottom:704.093333pt;}
.y49{bottom:705.213333pt;}
.y77{bottom:710.813333pt;}
.y1b{bottom:712.413333pt;}
.ya0{bottom:713.213333pt;}
.y1b6{bottom:718.013333pt;}
.y19a{bottom:720.093333pt;}
.y100{bottom:721.213333pt;}
.y176{bottom:721.533333pt;}
.ye0{bottom:722.493333pt;}
.y48{bottom:723.613333pt;}
.y76{bottom:729.213333pt;}
.y15f{bottom:730.173333pt;}
.y9f{bottom:731.613333pt;}
.y1b5{bottom:736.413333pt;}
.y199{bottom:738.493333pt;}
.y1a{bottom:738.813333pt;}
.yff{bottom:739.613333pt;}
.y175{bottom:739.933333pt;}
.ydf{bottom:740.893333pt;}
.y47{bottom:742.013333pt;}
.y1d1{bottom:744.413333pt;}
.y75{bottom:747.613333pt;}
.y9e{bottom:750.013333pt;}
.y113{bottom:758.013333pt;}
.y174{bottom:758.333333pt;}
.yde{bottom:759.293333pt;}
.y46{bottom:760.413333pt;}
.y1b4{bottom:762.813333pt;}
.y19{bottom:763.293333pt;}
.y74{bottom:766.013333pt;}
.y9d{bottom:768.413333pt;}
.y112{bottom:776.413333pt;}
.y173{bottom:776.733333pt;}
.ydd{bottom:777.693333pt;}
.y45{bottom:778.813333pt;}
.y15e{bottom:780.733333pt;}
.y1b3{bottom:781.213333pt;}
.y18{bottom:783.613333pt;}
.y73{bottom:784.413333pt;}
.y9c{bottom:786.813333pt;}
.y1d0{bottom:789.213333pt;}
.yb7{bottom:794.813333pt;}
.y172{bottom:795.133333pt;}
.y72{bottom:802.813333pt;}
.y198{bottom:802.973333pt;}
.ydc{bottom:804.093333pt;}
.y44{bottom:805.213333pt;}
.y1b2{bottom:807.613333pt;}
.y17{bottom:808.093333pt;}
.y1d8{bottom:810.013333pt;}
.y111{bottom:813.253333pt;}
.y1cf{bottom:815.653333pt;}
.y71{bottom:821.253333pt;}
.y171{bottom:821.413333pt;}
.y43{bottom:823.653333pt;}
.y16{bottom:828.453333pt;}
.y197{bottom:830.373333pt;}
.ydb{bottom:830.533333pt;}
.y9b{bottom:831.653333pt;}
.y1b1{bottom:834.053333pt;}
.y1d7{bottom:836.453333pt;}
.y70{bottom:839.653333pt;}
.y42{bottom:842.053333pt;}
.y196{bottom:848.773333pt;}
.y170{bottom:848.933333pt;}
.y110{bottom:850.053333pt;}
.y1b0{bottom:852.453333pt;}
.y15{bottom:854.853333pt;}
.yda{bottom:856.933333pt;}
.y6f{bottom:858.053333pt;}
.y41{bottom:860.453333pt;}
.y1d6{bottom:862.853333pt;}
.y195{bottom:867.333333pt;}
.y136{bottom:868.453333pt;}
.y9a{bottom:876.453333pt;}
.y40{bottom:878.853333pt;}
.y14{bottom:881.253333pt;}
.yd9{bottom:883.333333pt;}
.y6e{bottom:884.453333pt;}
.y135{bottom:886.853333pt;}
.y1d5{bottom:889.253333pt;}
.y99{bottom:894.853333pt;}
.y3f{bottom:897.253333pt;}
.yd8{bottom:901.733333pt;}
.y6d{bottom:902.853333pt;}
.y16f{bottom:903.973333pt;}
.y134{bottom:905.253333pt;}
.y13{bottom:907.653333pt;}
.y98{bottom:913.253333pt;}
.y3e{bottom:915.653333pt;}
.yd7{bottom:920.133333pt;}
.y6c{bottom:921.253333pt;}
.y15d{bottom:923.653333pt;}
.y12{bottom:926.053333pt;}
.y16e{bottom:931.493333pt;}
.y97{bottom:931.653333pt;}
.y3d{bottom:934.053333pt;}
.y6b{bottom:939.653333pt;}
.y15c{bottom:942.053333pt;}
.yd6{bottom:947.653333pt;}
.y96{bottom:950.053333pt;}
.y11{bottom:952.453333pt;}
.y6a{bottom:958.053333pt;}
.y16d{bottom:959.173333pt;}
.y3c{bottom:960.453333pt;}
.yd5{bottom:966.053333pt;}
.y11a{bottom:968.453333pt;}
.y69{bottom:976.453333pt;}
.y10{bottom:978.853333pt;}
.y3b{bottom:986.853333pt;}
.yd4{bottom:993.573333pt;}
.y68{bottom:994.853333pt;}
.yf{bottom:1005.253333pt;}
.yd3{bottom:1012.133333pt;}
.y3a{bottom:1013.253333pt;}
.y9{bottom:1060.640000pt;}
.y8{bottom:1074.560000pt;}
.y4{bottom:1078.080000pt;}
.h2{height:16.000000pt;}
.h9{height:25.120000pt;}
.h4{height:26.400000pt;}
.hd{height:35.782187pt;}
.h6{height:43.520000pt;}
.h7{height:44.327188pt;}
.hf{height:46.480000pt;}
.h12{height:46.560000pt;}
.he{height:46.720000pt;}
.h11{height:46.752000pt;}
.hb{height:53.406250pt;}
.h13{height:54.375000pt;}
.h3{height:54.390938pt;}
.ha{height:56.000000pt;}
.h8{height:58.563750pt;}
.hc{height:58.640000pt;}
.h10{height:61.920000pt;}
.h14{height:61.952000pt;}
.h15{height:62.080000pt;}
.h5{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:48.320000pt;}
.wf{width:51.520000pt;}
.w19{width:57.280000pt;}
.we{width:57.600000pt;}
.w9{width:59.200000pt;}
.w16{width:60.352000pt;}
.w8{width:75.546667pt;}
.w13{width:80.640000pt;}
.w10{width:87.552000pt;}
.w14{width:88.800000pt;}
.w11{width:91.520000pt;}
.wb{width:97.440000pt;}
.w6{width:116.032000pt;}
.wa{width:128.512000pt;}
.wc{width:135.546667pt;}
.w2{width:147.386667pt;}
.w4{width:149.306667pt;}
.w17{width:158.906667pt;}
.w3{width:164.026667pt;}
.wd{width:172.506667pt;}
.w18{width:177.626667pt;}
.w12{width:221.986667pt;}
.w5{width:593.573333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xc{left:9.600000pt;}
.x5{left:18.080000pt;}
.x8{left:19.360000pt;}
.x9{left:23.680000pt;}
.x3{left:54.560000pt;}
.x6{left:74.272000pt;}
.xa{left:94.431988pt;}
.x13{left:95.551988pt;}
.xd{left:96.671988pt;}
.x15{left:106.111988pt;}
.x10{left:113.311988pt;}
.xe{left:131.071988pt;}
.x17{left:142.426655pt;}
.x1c{left:156.186667pt;}
.x18{left:157.626667pt;}
.x21{left:187.226667pt;}
.x1d{left:209.786667pt;}
.x14{left:221.466655pt;}
.x22{left:237.466667pt;}
.x16{left:253.026655pt;}
.x12{left:269.986655pt;}
.x19{left:288.066667pt;}
.x1e{left:299.426667pt;}
.xf{left:329.506655pt;}
.x4{left:342.786667pt;}
.x1a{left:387.426667pt;}
.x1f{left:392.866667pt;}
.x11{left:396.866655pt;}
.x23{left:460.573333pt;}
.x1b{left:524.893333pt;}
.x20{left:616.773333pt;}
.x1{left:617.733333pt;}
.x24{left:640.133333pt;}
.x7{left:662.533333pt;}
.xb{left:718.213333pt;}
}




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