
    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_2779900e4f2605e6ddbd7a2a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eb4497335504e06b51cec883.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d21fefe6203ba0c32ab2d054.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6971cfaa10df6f5b864b6c3c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7137e39adf360ae40e5b49ee.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0f2adf9e3b22377c36848a0f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.995605;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_355c83d653b69c60acd62162.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_1e06697f1dc2d899d81bb8ae.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_82641e36fc156bb586648b58.woff')format("woff");}.ffb{font-family:ffb;line-height:0.923828;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.540000px;}
.ls9{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.093600px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.426400px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._21{margin-left:-4.195680px;}
._6{margin-left:-3.047760px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._4{width:2.748960px;}
._8{width:3.764880px;}
._7{width:4.840560px;}
._10{width:5.976000px;}
._9{width:7.171200px;}
._a{width:8.597520px;}
._b{width:9.600240px;}
._5{width:11.175120px;}
._11{width:12.290160px;}
._f{width:13.326480px;}
._c{width:16.912080px;}
._e{width:18.226800px;}
._d{width:19.481760px;}
._17{width:20.557440px;}
._18{width:22.410000px;}
._14{width:23.425920px;}
._1b{width:25.039440px;}
._1c{width:26.055360px;}
._25{width:27.310320px;}
._16{width:28.386000px;}
._1e{width:29.581200px;}
._1d{width:31.254480px;}
._1f{width:32.831040px;}
._20{width:34.573440px;}
._24{width:35.616960px;}
._13{width:37.409760px;}
._12{width:38.784240px;}
._36{width:40.036080px;}
._27{width:42.250320px;}
._29{width:44.640720px;}
._23{width:46.134720px;}
._22{width:47.688480px;}
._26{width:49.302000px;}
._2b{width:50.556960px;}
._2a{width:51.785280px;}
._15{width:53.246160px;}
._19{width:54.620640px;}
._1a{width:55.750800px;}
._38{width:56.792880px;}
._37{width:58.086720px;}
._3e{width:61.254000px;}
._3f{width:62.264640px;}
._2{width:64.800000px;}
._32{width:66.672000px;}
._3b{width:67.708080px;}
._3a{width:69.202080px;}
._33{width:71.174160px;}
._34{width:72.429120px;}
._3c{width:74.939040px;}
._46{width:77.867280px;}
._35{width:79.719840px;}
._2c{width:85.576320px;}
._2d{width:86.904480px;}
._45{width:89.580240px;}
._2e{width:91.731600px;}
._40{width:103.743360px;}
._43{width:104.878800px;}
._42{width:105.894720px;}
._41{width:107.388720px;}
._39{width:115.336800px;}
._30{width:116.626320px;}
._2f{width:118.205280px;}
._44{width:161.650800px;}
._31{width:229.874160px;}
._28{width:260.114160px;}
._3d{width:375.305040px;}
._3{width:674.100000px;}
.fc3{color:rgb(24,23,23);}
.fc5{color:rgb(27,28,29);}
.fc4{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.ye7{bottom:5.940000px;}
.y11{bottom:6.480000px;}
.yc7{bottom:7.560000px;}
.y8{bottom:7.920000px;}
.y1a{bottom:9.000000px;}
.yc5{bottom:15.660000px;}
.yd{bottom:25.560000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y24{bottom:45.540000px;}
.y6{bottom:47.520000px;}
.y13{bottom:50.400000px;}
.yc{bottom:54.360000px;}
.yc3{bottom:56.700000px;}
.y23{bottom:65.340000px;}
.y10{bottom:65.700000px;}
.y5{bottom:69.660000px;}
.yc2{bottom:72.000000px;}
.yb{bottom:74.340000px;}
.y22{bottom:85.140000px;}
.yb0{bottom:93.600000px;}
.y7e{bottom:95.400000px;}
.y4{bottom:97.590000px;}
.y41{bottom:101.880000px;}
.ya{bottom:103.170000px;}
.y10d{bottom:104.400000px;}
.y21{bottom:104.940000px;}
.y121{bottom:110.880000px;}
.yaf{bottom:113.400000px;}
.y7d{bottom:115.200000px;}
.yfc{bottom:115.920000px;}
.y40{bottom:121.680000px;}
.y9{bottom:122.970000px;}
.y10c{bottom:124.200000px;}
.y20{bottom:124.740000px;}
.yf8{bottom:124.920000px;}
.y120{bottom:130.680000px;}
.y3{bottom:131.970000px;}
.yae{bottom:133.200000px;}
.y7c{bottom:135.180000px;}
.yfb{bottom:135.900000px;}
.y3f{bottom:141.660000px;}
.y10b{bottom:144.180000px;}
.y1f{bottom:144.720000px;}
.yf7{bottom:144.900000px;}
.y11f{bottom:150.660000px;}
.yad{bottom:153.210000px;}
.y7b{bottom:155.010000px;}
.yfa{bottom:155.730000px;}
.y3e{bottom:161.490000px;}
.y10a{bottom:164.010000px;}
.y1e{bottom:164.520000px;}
.yf6{bottom:164.730000px;}
.y11e{bottom:170.490000px;}
.yac{bottom:173.010000px;}
.y7a{bottom:174.810000px;}
.yf9{bottom:175.530000px;}
.y3d{bottom:181.290000px;}
.y109{bottom:183.810000px;}
.y1d{bottom:184.320000px;}
.yf5{bottom:184.530000px;}
.y11d{bottom:190.290000px;}
.yab{bottom:192.810000px;}
.y79{bottom:194.610000px;}
.y3c{bottom:201.090000px;}
.y108{bottom:203.610000px;}
.y1c{bottom:204.120000px;}
.yf4{bottom:204.330000px;}
.y11c{bottom:210.090000px;}
.yaa{bottom:212.610000px;}
.y78{bottom:214.410000px;}
.y3b{bottom:220.890000px;}
.y107{bottom:223.410000px;}
.yf3{bottom:224.130000px;}
.y11b{bottom:229.890000px;}
.ya9{bottom:232.410000px;}
.y77{bottom:234.390000px;}
.y3a{bottom:240.870000px;}
.y106{bottom:243.390000px;}
.yf2{bottom:244.110000px;}
.y11a{bottom:249.870000px;}
.ya8{bottom:252.390000px;}
.y76{bottom:254.190000px;}
.yf1{bottom:258.870000px;}
.y39{bottom:260.670000px;}
.y105{bottom:263.190000px;}
.y119{bottom:269.670000px;}
.ya7{bottom:272.190000px;}
.y75{bottom:273.990000px;}
.yf0{bottom:279.390000px;}
.y38{bottom:280.470000px;}
.y104{bottom:282.990000px;}
.y118{bottom:289.470000px;}
.ya6{bottom:291.990000px;}
.y74{bottom:293.790000px;}
.y37{bottom:300.270000px;}
.ybd{bottom:302.790000px;}
.yef{bottom:305.850000px;}
.y117{bottom:309.270000px;}
.ya5{bottom:311.790000px;}
.y73{bottom:313.590000px;}
.y36{bottom:320.070000px;}
.ybc{bottom:322.590000px;}
.yee{bottom:325.650000px;}
.y116{bottom:329.070000px;}
.ya4{bottom:331.590000px;}
.y72{bottom:333.570000px;}
.y35{bottom:340.050000px;}
.ybb{bottom:342.570000px;}
.yed{bottom:345.450000px;}
.y115{bottom:349.050000px;}
.ya3{bottom:351.570000px;}
.y71{bottom:353.370000px;}
.y34{bottom:359.850000px;}
.yba{bottom:362.370000px;}
.yec{bottom:365.250000px;}
.y114{bottom:368.850000px;}
.ya2{bottom:371.370000px;}
.y70{bottom:373.170000px;}
.y47{bottom:379.650000px;}
.yb9{bottom:382.170000px;}
.yeb{bottom:385.050000px;}
.y33{bottom:388.650000px;}
.ya1{bottom:391.170000px;}
.y6f{bottom:392.970000px;}
.y46{bottom:399.450000px;}
.yb8{bottom:402.015000px;}
.yea{bottom:405.075000px;}
.y32{bottom:408.495000px;}
.ya0{bottom:411.015000px;}
.y6e{bottom:412.815000px;}
.y45{bottom:419.295000px;}
.ye9{bottom:419.835000px;}
.yb7{bottom:421.815000px;}
.y31{bottom:428.295000px;}
.y9f{bottom:430.815000px;}
.y6d{bottom:432.795000px;}
.y44{bottom:439.275000px;}
.ye8{bottom:439.635000px;}
.yb6{bottom:441.795000px;}
.y30{bottom:448.275000px;}
.y9e{bottom:450.795000px;}
.y6c{bottom:452.595000px;}
.y43{bottom:459.075000px;}
.ye6{bottom:460.155000px;}
.yb5{bottom:461.595000px;}
.y2f{bottom:468.075000px;}
.y9d{bottom:470.595000px;}
.y6b{bottom:472.395000px;}
.y42{bottom:478.875000px;}
.yb4{bottom:481.395000px;}
.ye5{bottom:486.615000px;}
.y2e{bottom:487.875000px;}
.y9c{bottom:490.395000px;}
.y6a{bottom:492.195000px;}
.yb3{bottom:501.195000px;}
.ye4{bottom:506.415000px;}
.y2d{bottom:507.675000px;}
.y9b{bottom:510.195000px;}
.y69{bottom:511.995000px;}
.yb2{bottom:520.995000px;}
.ye3{bottom:526.215000px;}
.y2c{bottom:527.475000px;}
.y113{bottom:528.915000px;}
.y9a{bottom:529.995000px;}
.y68{bottom:531.975000px;}
.yb1{bottom:540.975000px;}
.ye2{bottom:546.195000px;}
.y2b{bottom:547.455000px;}
.y99{bottom:549.975000px;}
.y67{bottom:551.775000px;}
.y103{bottom:560.775000px;}
.ye1{bottom:565.995000px;}
.y2a{bottom:567.255000px;}
.y98{bottom:569.775000px;}
.y66{bottom:571.575000px;}
.y102{bottom:580.575000px;}
.ye0{bottom:585.795000px;}
.y29{bottom:587.055000px;}
.y97{bottom:589.575000px;}
.y65{bottom:591.375000px;}
.y101{bottom:600.375000px;}
.ydf{bottom:605.595000px;}
.y28{bottom:606.855000px;}
.y96{bottom:609.375000px;}
.y64{bottom:611.175000px;}
.y100{bottom:620.175000px;}
.yde{bottom:625.395000px;}
.y27{bottom:626.655000px;}
.y95{bottom:629.175000px;}
.y63{bottom:631.155000px;}
.yff{bottom:640.155000px;}
.ydd{bottom:645.195000px;}
.y26{bottom:646.635000px;}
.y94{bottom:649.185000px;}
.y62{bottom:650.985000px;}
.yfe{bottom:659.985000px;}
.y25{bottom:661.425000px;}
.ydc{bottom:665.205000px;}
.y93{bottom:668.985000px;}
.y61{bottom:670.785000px;}
.yfd{bottom:679.785000px;}
.y1b{bottom:681.945000px;}
.ydb{bottom:685.005000px;}
.y92{bottom:688.785000px;}
.yc1{bottom:690.585000px;}
.y60{bottom:699.585000px;}
.yda{bottom:704.805000px;}
.y91{bottom:708.585000px;}
.yc0{bottom:710.385000px;}
.y5f{bottom:719.385000px;}
.yd9{bottom:724.605000px;}
.y90{bottom:728.385000px;}
.ybf{bottom:730.365000px;}
.y5e{bottom:739.365000px;}
.yd8{bottom:744.405000px;}
.y8f{bottom:748.365000px;}
.ybe{bottom:750.165000px;}
.y5d{bottom:759.165000px;}
.yd7{bottom:764.385000px;}
.y8e{bottom:768.165000px;}
.y112{bottom:769.965000px;}
.y5c{bottom:778.965000px;}
.yd6{bottom:784.185000px;}
.y8d{bottom:787.965000px;}
.y111{bottom:789.765000px;}
.y5b{bottom:798.765000px;}
.yd5{bottom:803.985000px;}
.y8c{bottom:807.765000px;}
.y5a{bottom:818.565000px;}
.yd4{bottom:823.785000px;}
.y8b{bottom:827.565000px;}
.y59{bottom:838.545000px;}
.yd3{bottom:843.585000px;}
.y8a{bottom:847.545000px;}
.y58{bottom:858.345000px;}
.yd2{bottom:863.565000px;}
.y89{bottom:867.345000px;}
.y57{bottom:878.145000px;}
.yd1{bottom:883.365000px;}
.y88{bottom:887.145000px;}
.y56{bottom:897.990000px;}
.y19{bottom:900.870000px;}
.yd0{bottom:903.210000px;}
.y87{bottom:906.990000px;}
.y55{bottom:917.790000px;}
.ycf{bottom:923.010000px;}
.y86{bottom:926.790000px;}
.y18{bottom:930.390000px;}
.y54{bottom:937.770000px;}
.yce{bottom:942.810000px;}
.y85{bottom:946.770000px;}
.y17{bottom:955.410000px;}
.y53{bottom:957.570000px;}
.ycd{bottom:962.790000px;}
.y84{bottom:966.570000px;}
.y16{bottom:970.530000px;}
.y52{bottom:977.370000px;}
.ycc{bottom:977.550000px;}
.y83{bottom:986.370000px;}
.y15{bottom:991.770000px;}
.y51{bottom:997.170000px;}
.ycb{bottom:1000.950000px;}
.y82{bottom:1006.170000px;}
.y14{bottom:1015.350000px;}
.y50{bottom:1016.970000px;}
.yca{bottom:1024.350000px;}
.y81{bottom:1025.970000px;}
.y4f{bottom:1036.950000px;}
.yf{bottom:1041.270000px;}
.y80{bottom:1045.950000px;}
.yc9{bottom:1047.750000px;}
.y4e{bottom:1056.750000px;}
.y1{bottom:1063.410000px;}
.y7f{bottom:1065.750000px;}
.yc8{bottom:1071.150000px;}
.y110{bottom:1076.550000px;}
.y4d{bottom:1085.550000px;}
.yc6{bottom:1094.550000px;}
.y10f{bottom:1096.350000px;}
.y4c{bottom:1105.350000px;}
.y10e{bottom:1116.150000px;}
.yc4{bottom:1118.670000px;}
.y4b{bottom:1125.150000px;}
.y4a{bottom:1145.130000px;}
.y49{bottom:1164.960000px;}
.y48{bottom:1194.300000px;}
.h3{height:2.527031px;}
.hf{height:19.800000px;}
.h14{height:19.980000px;}
.h9{height:21.960000px;}
.hd{height:23.040000px;}
.h13{height:23.400000px;}
.hc{height:34.114922px;}
.h12{height:39.636000px;}
.h4{height:42.164648px;}
.h10{height:43.506914px;}
.h15{height:43.681992px;}
.h11{height:45.024258px;}
.h16{height:46.659558px;}
.h6{height:46.736719px;}
.h7{height:52.435898px;}
.ha{height:53.224453px;}
.h8{height:58.121719px;}
.h5{height:59.436914px;}
.hb{height:67.565039px;}
.h2{height:146.016000px;}
.he{height:218.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.056000px;}
.w13{width:95.796000px;}
.we{width:106.236000px;}
.wf{width:106.380000px;}
.wc{width:116.820000px;}
.wb{width:117.036000px;}
.w14{width:127.440000px;}
.wd{width:127.656000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.w10{width:159.300000px;}
.w11{width:191.550000px;}
.w8{width:192.270000px;}
.w12{width:201.990000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x13{left:23.040000px;}
.x1e{left:34.380000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xc{left:57.600000px;}
.x1f{left:80.999987px;}
.xb{left:106.776000px;}
.x11{left:108.035987px;}
.x4{left:127.665000px;}
.x8{left:142.065000px;}
.x2{left:147.630000px;}
.x7{left:154.305000px;}
.x12{left:159.510000px;}
.x1a{left:170.130000px;}
.xf{left:188.849987px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.xd{left:249.870000px;}
.x18{left:271.155000px;}
.x14{left:276.555000px;}
.x1b{left:372.135000px;}
.x15{left:393.375000px;}
.x19{left:430.455000px;}
.x1c{left:467.925000px;}
.xe{left:473.144987px;}
.x20{left:500.144987px;}
.x16{left:521.025000px;}
.x10{left:527.144987px;}
.x21{left:581.144987px;}
.x1d{left:595.365000px;}
.x17{left:627.270000px;}
.x9{left:703.050000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.480000pt;}
.ls9{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.416533pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.823467pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._21{margin-left:-3.729493pt;}
._6{margin-left:-2.709120pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._4{width:2.443520pt;}
._8{width:3.346560pt;}
._7{width:4.302720pt;}
._10{width:5.312000pt;}
._9{width:6.374400pt;}
._a{width:7.642240pt;}
._b{width:8.533547pt;}
._5{width:9.933440pt;}
._11{width:10.924587pt;}
._f{width:11.845760pt;}
._c{width:15.032960pt;}
._e{width:16.201600pt;}
._d{width:17.317120pt;}
._17{width:18.273280pt;}
._18{width:19.920000pt;}
._14{width:20.823040pt;}
._1b{width:22.257280pt;}
._1c{width:23.160320pt;}
._25{width:24.275840pt;}
._16{width:25.232000pt;}
._1e{width:26.294400pt;}
._1d{width:27.781760pt;}
._1f{width:29.183147pt;}
._20{width:30.731947pt;}
._24{width:31.659520pt;}
._13{width:33.253120pt;}
._12{width:34.474880pt;}
._36{width:35.587627pt;}
._27{width:37.555840pt;}
._29{width:39.680640pt;}
._23{width:41.008640pt;}
._22{width:42.389760pt;}
._26{width:43.824000pt;}
._2b{width:44.939520pt;}
._2a{width:46.031360pt;}
._15{width:47.329920pt;}
._19{width:48.551680pt;}
._1a{width:49.556267pt;}
._38{width:50.482560pt;}
._37{width:51.632640pt;}
._3e{width:54.448000pt;}
._3f{width:55.346347pt;}
._2{width:57.600000pt;}
._32{width:59.264000pt;}
._3b{width:60.184960pt;}
._3a{width:61.512960pt;}
._33{width:63.265920pt;}
._34{width:64.381440pt;}
._3c{width:66.612480pt;}
._46{width:69.215360pt;}
._35{width:70.862080pt;}
._2c{width:76.067840pt;}
._2d{width:77.248427pt;}
._45{width:79.626880pt;}
._2e{width:81.539200pt;}
._40{width:92.216320pt;}
._43{width:93.225600pt;}
._42{width:94.128640pt;}
._41{width:95.456640pt;}
._39{width:102.521600pt;}
._30{width:103.667840pt;}
._2f{width:105.071360pt;}
._44{width:143.689600pt;}
._31{width:204.332587pt;}
._28{width:231.212587pt;}
._3d{width:333.604480pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.ye7{bottom:5.280000pt;}
.y11{bottom:5.760000pt;}
.yc7{bottom:6.720000pt;}
.y8{bottom:7.040000pt;}
.y1a{bottom:8.000000pt;}
.yc5{bottom:13.920000pt;}
.yd{bottom:22.720000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y24{bottom:40.480000pt;}
.y6{bottom:42.240000pt;}
.y13{bottom:44.800000pt;}
.yc{bottom:48.320000pt;}
.yc3{bottom:50.400000pt;}
.y23{bottom:58.080000pt;}
.y10{bottom:58.400000pt;}
.y5{bottom:61.920000pt;}
.yc2{bottom:64.000000pt;}
.yb{bottom:66.080000pt;}
.y22{bottom:75.680000pt;}
.yb0{bottom:83.200000pt;}
.y7e{bottom:84.800000pt;}
.y4{bottom:86.746667pt;}
.y41{bottom:90.560000pt;}
.ya{bottom:91.706667pt;}
.y10d{bottom:92.800000pt;}
.y21{bottom:93.280000pt;}
.y121{bottom:98.560000pt;}
.yaf{bottom:100.800000pt;}
.y7d{bottom:102.400000pt;}
.yfc{bottom:103.040000pt;}
.y40{bottom:108.160000pt;}
.y9{bottom:109.306667pt;}
.y10c{bottom:110.400000pt;}
.y20{bottom:110.880000pt;}
.yf8{bottom:111.040000pt;}
.y120{bottom:116.160000pt;}
.y3{bottom:117.306667pt;}
.yae{bottom:118.400000pt;}
.y7c{bottom:120.160000pt;}
.yfb{bottom:120.800000pt;}
.y3f{bottom:125.920000pt;}
.y10b{bottom:128.160000pt;}
.y1f{bottom:128.640000pt;}
.yf7{bottom:128.800000pt;}
.y11f{bottom:133.920000pt;}
.yad{bottom:136.186667pt;}
.y7b{bottom:137.786667pt;}
.yfa{bottom:138.426667pt;}
.y3e{bottom:143.546667pt;}
.y10a{bottom:145.786667pt;}
.y1e{bottom:146.240000pt;}
.yf6{bottom:146.426667pt;}
.y11e{bottom:151.546667pt;}
.yac{bottom:153.786667pt;}
.y7a{bottom:155.386667pt;}
.yf9{bottom:156.026667pt;}
.y3d{bottom:161.146667pt;}
.y109{bottom:163.386667pt;}
.y1d{bottom:163.840000pt;}
.yf5{bottom:164.026667pt;}
.y11d{bottom:169.146667pt;}
.yab{bottom:171.386667pt;}
.y79{bottom:172.986667pt;}
.y3c{bottom:178.746667pt;}
.y108{bottom:180.986667pt;}
.y1c{bottom:181.440000pt;}
.yf4{bottom:181.626667pt;}
.y11c{bottom:186.746667pt;}
.yaa{bottom:188.986667pt;}
.y78{bottom:190.586667pt;}
.y3b{bottom:196.346667pt;}
.y107{bottom:198.586667pt;}
.yf3{bottom:199.226667pt;}
.y11b{bottom:204.346667pt;}
.ya9{bottom:206.586667pt;}
.y77{bottom:208.346667pt;}
.y3a{bottom:214.106667pt;}
.y106{bottom:216.346667pt;}
.yf2{bottom:216.986667pt;}
.y11a{bottom:222.106667pt;}
.ya8{bottom:224.346667pt;}
.y76{bottom:225.946667pt;}
.yf1{bottom:230.106667pt;}
.y39{bottom:231.706667pt;}
.y105{bottom:233.946667pt;}
.y119{bottom:239.706667pt;}
.ya7{bottom:241.946667pt;}
.y75{bottom:243.546667pt;}
.yf0{bottom:248.346667pt;}
.y38{bottom:249.306667pt;}
.y104{bottom:251.546667pt;}
.y118{bottom:257.306667pt;}
.ya6{bottom:259.546667pt;}
.y74{bottom:261.146667pt;}
.y37{bottom:266.906667pt;}
.ybd{bottom:269.146667pt;}
.yef{bottom:271.866667pt;}
.y117{bottom:274.906667pt;}
.ya5{bottom:277.146667pt;}
.y73{bottom:278.746667pt;}
.y36{bottom:284.506667pt;}
.ybc{bottom:286.746667pt;}
.yee{bottom:289.466667pt;}
.y116{bottom:292.506667pt;}
.ya4{bottom:294.746667pt;}
.y72{bottom:296.506667pt;}
.y35{bottom:302.266667pt;}
.ybb{bottom:304.506667pt;}
.yed{bottom:307.066667pt;}
.y115{bottom:310.266667pt;}
.ya3{bottom:312.506667pt;}
.y71{bottom:314.106667pt;}
.y34{bottom:319.866667pt;}
.yba{bottom:322.106667pt;}
.yec{bottom:324.666667pt;}
.y114{bottom:327.866667pt;}
.ya2{bottom:330.106667pt;}
.y70{bottom:331.706667pt;}
.y47{bottom:337.466667pt;}
.yb9{bottom:339.706667pt;}
.yeb{bottom:342.266667pt;}
.y33{bottom:345.466667pt;}
.ya1{bottom:347.706667pt;}
.y6f{bottom:349.306667pt;}
.y46{bottom:355.066667pt;}
.yb8{bottom:357.346667pt;}
.yea{bottom:360.066667pt;}
.y32{bottom:363.106667pt;}
.ya0{bottom:365.346667pt;}
.y6e{bottom:366.946667pt;}
.y45{bottom:372.706667pt;}
.ye9{bottom:373.186667pt;}
.yb7{bottom:374.946667pt;}
.y31{bottom:380.706667pt;}
.y9f{bottom:382.946667pt;}
.y6d{bottom:384.706667pt;}
.y44{bottom:390.466667pt;}
.ye8{bottom:390.786667pt;}
.yb6{bottom:392.706667pt;}
.y30{bottom:398.466667pt;}
.y9e{bottom:400.706667pt;}
.y6c{bottom:402.306667pt;}
.y43{bottom:408.066667pt;}
.ye6{bottom:409.026667pt;}
.yb5{bottom:410.306667pt;}
.y2f{bottom:416.066667pt;}
.y9d{bottom:418.306667pt;}
.y6b{bottom:419.906667pt;}
.y42{bottom:425.666667pt;}
.yb4{bottom:427.906667pt;}
.ye5{bottom:432.546667pt;}
.y2e{bottom:433.666667pt;}
.y9c{bottom:435.906667pt;}
.y6a{bottom:437.506667pt;}
.yb3{bottom:445.506667pt;}
.ye4{bottom:450.146667pt;}
.y2d{bottom:451.266667pt;}
.y9b{bottom:453.506667pt;}
.y69{bottom:455.106667pt;}
.yb2{bottom:463.106667pt;}
.ye3{bottom:467.746667pt;}
.y2c{bottom:468.866667pt;}
.y113{bottom:470.146667pt;}
.y9a{bottom:471.106667pt;}
.y68{bottom:472.866667pt;}
.yb1{bottom:480.866667pt;}
.ye2{bottom:485.506667pt;}
.y2b{bottom:486.626667pt;}
.y99{bottom:488.866667pt;}
.y67{bottom:490.466667pt;}
.y103{bottom:498.466667pt;}
.ye1{bottom:503.106667pt;}
.y2a{bottom:504.226667pt;}
.y98{bottom:506.466667pt;}
.y66{bottom:508.066667pt;}
.y102{bottom:516.066667pt;}
.ye0{bottom:520.706667pt;}
.y29{bottom:521.826667pt;}
.y97{bottom:524.066667pt;}
.y65{bottom:525.666667pt;}
.y101{bottom:533.666667pt;}
.ydf{bottom:538.306667pt;}
.y28{bottom:539.426667pt;}
.y96{bottom:541.666667pt;}
.y64{bottom:543.266667pt;}
.y100{bottom:551.266667pt;}
.yde{bottom:555.906667pt;}
.y27{bottom:557.026667pt;}
.y95{bottom:559.266667pt;}
.y63{bottom:561.026667pt;}
.yff{bottom:569.026667pt;}
.ydd{bottom:573.506667pt;}
.y26{bottom:574.786667pt;}
.y94{bottom:577.053333pt;}
.y62{bottom:578.653333pt;}
.yfe{bottom:586.653333pt;}
.y25{bottom:587.933333pt;}
.ydc{bottom:591.293333pt;}
.y93{bottom:594.653333pt;}
.y61{bottom:596.253333pt;}
.yfd{bottom:604.253333pt;}
.y1b{bottom:606.173333pt;}
.ydb{bottom:608.893333pt;}
.y92{bottom:612.253333pt;}
.yc1{bottom:613.853333pt;}
.y60{bottom:621.853333pt;}
.yda{bottom:626.493333pt;}
.y91{bottom:629.853333pt;}
.yc0{bottom:631.453333pt;}
.y5f{bottom:639.453333pt;}
.yd9{bottom:644.093333pt;}
.y90{bottom:647.453333pt;}
.ybf{bottom:649.213333pt;}
.y5e{bottom:657.213333pt;}
.yd8{bottom:661.693333pt;}
.y8f{bottom:665.213333pt;}
.ybe{bottom:666.813333pt;}
.y5d{bottom:674.813333pt;}
.yd7{bottom:679.453333pt;}
.y8e{bottom:682.813333pt;}
.y112{bottom:684.413333pt;}
.y5c{bottom:692.413333pt;}
.yd6{bottom:697.053333pt;}
.y8d{bottom:700.413333pt;}
.y111{bottom:702.013333pt;}
.y5b{bottom:710.013333pt;}
.yd5{bottom:714.653333pt;}
.y8c{bottom:718.013333pt;}
.y5a{bottom:727.613333pt;}
.yd4{bottom:732.253333pt;}
.y8b{bottom:735.613333pt;}
.y59{bottom:745.373333pt;}
.yd3{bottom:749.853333pt;}
.y8a{bottom:753.373333pt;}
.y58{bottom:762.973333pt;}
.yd2{bottom:767.613333pt;}
.y89{bottom:770.973333pt;}
.y57{bottom:780.573333pt;}
.yd1{bottom:785.213333pt;}
.y88{bottom:788.573333pt;}
.y56{bottom:798.213333pt;}
.y19{bottom:800.773333pt;}
.yd0{bottom:802.853333pt;}
.y87{bottom:806.213333pt;}
.y55{bottom:815.813333pt;}
.ycf{bottom:820.453333pt;}
.y86{bottom:823.813333pt;}
.y18{bottom:827.013333pt;}
.y54{bottom:833.573333pt;}
.yce{bottom:838.053333pt;}
.y85{bottom:841.573333pt;}
.y17{bottom:849.253333pt;}
.y53{bottom:851.173333pt;}
.ycd{bottom:855.813333pt;}
.y84{bottom:859.173333pt;}
.y16{bottom:862.693333pt;}
.y52{bottom:868.773333pt;}
.ycc{bottom:868.933333pt;}
.y83{bottom:876.773333pt;}
.y15{bottom:881.573333pt;}
.y51{bottom:886.373333pt;}
.ycb{bottom:889.733333pt;}
.y82{bottom:894.373333pt;}
.y14{bottom:902.533333pt;}
.y50{bottom:903.973333pt;}
.yca{bottom:910.533333pt;}
.y81{bottom:911.973333pt;}
.y4f{bottom:921.733333pt;}
.yf{bottom:925.573333pt;}
.y80{bottom:929.733333pt;}
.yc9{bottom:931.333333pt;}
.y4e{bottom:939.333333pt;}
.y1{bottom:945.253333pt;}
.y7f{bottom:947.333333pt;}
.yc8{bottom:952.133333pt;}
.y110{bottom:956.933333pt;}
.y4d{bottom:964.933333pt;}
.yc6{bottom:972.933333pt;}
.y10f{bottom:974.533333pt;}
.y4c{bottom:982.533333pt;}
.y10e{bottom:992.133333pt;}
.yc4{bottom:994.373333pt;}
.y4b{bottom:1000.133333pt;}
.y4a{bottom:1017.893333pt;}
.y49{bottom:1035.520000pt;}
.y48{bottom:1061.600000pt;}
.h3{height:2.246250pt;}
.hf{height:17.600000pt;}
.h14{height:17.760000pt;}
.h9{height:19.520000pt;}
.hd{height:20.480000pt;}
.h13{height:20.800000pt;}
.hc{height:30.324375pt;}
.h12{height:35.232000pt;}
.h4{height:37.479688pt;}
.h10{height:38.672812pt;}
.h15{height:38.828437pt;}
.h11{height:40.021563pt;}
.h16{height:41.475163pt;}
.h6{height:41.543750pt;}
.h7{height:46.609688pt;}
.ha{height:47.310625pt;}
.h8{height:51.663750pt;}
.h5{height:52.832812pt;}
.hb{height:60.057813pt;}
.h2{height:129.792000pt;}
.he{height:193.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.272000pt;}
.w13{width:85.152000pt;}
.we{width:94.432000pt;}
.wf{width:94.560000pt;}
.wc{width:103.840000pt;}
.wb{width:104.032000pt;}
.w14{width:113.280000pt;}
.wd{width:113.472000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.w10{width:141.600000pt;}
.w11{width:170.266667pt;}
.w8{width:170.906667pt;}
.w12{width:179.546667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x13{left:20.480000pt;}
.x1e{left:30.560000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xc{left:51.200000pt;}
.x1f{left:71.999988pt;}
.xb{left:94.912000pt;}
.x11{left:96.031988pt;}
.x4{left:113.480000pt;}
.x8{left:126.280000pt;}
.x2{left:131.226667pt;}
.x7{left:137.160000pt;}
.x12{left:141.786667pt;}
.x1a{left:151.226667pt;}
.xf{left:167.866655pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.xd{left:222.106667pt;}
.x18{left:241.026667pt;}
.x14{left:245.826667pt;}
.x1b{left:330.786667pt;}
.x15{left:349.666667pt;}
.x19{left:382.626667pt;}
.x1c{left:415.933333pt;}
.xe{left:420.573322pt;}
.x20{left:444.573322pt;}
.x16{left:463.133333pt;}
.x10{left:468.573322pt;}
.x21{left:516.573322pt;}
.x1d{left:529.213333pt;}
.x17{left:557.573333pt;}
.x9{left:624.933333pt;}
}




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