
    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_18836023e08768df2300e9a3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8e8b0784a998ca17eae2c7eb.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a01886bc5e64e3be13f44a6d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_63876b281d0e9342346d45fe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c91b849cb7ab6b04b42fa734.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_1f1e9e581e16c9e4c46e0af8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_484c2410ee2184ab1b317156.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_df668ee32998e18e34208bfc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_717dccd0df3a4a4b41e7d285.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_85992fe1610e7abd3bd57ffd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.854492;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);}
.v5{vertical-align:-22.320000px;}
.v1{vertical-align:-20.880000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:22.320000px;}
.v8{vertical-align:40.320000px;}
.v3{vertical-align:46.080000px;}
.ls2b{letter-spacing:-0.732000px;}
.ls8{letter-spacing:-0.648000px;}
.ls27{letter-spacing:-0.370800px;}
.ls9{letter-spacing:-0.370200px;}
.lsd{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.326400px;}
.ls1c{letter-spacing:-0.283200px;}
.ls28{letter-spacing:-0.223200px;}
.ls2a{letter-spacing:-0.184200px;}
.ls1e{letter-spacing:-0.097800px;}
.ls2f{letter-spacing:-0.052560px;}
.ls30{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls29{letter-spacing:0.036480px;}
.ls1f{letter-spacing:0.038880px;}
.ls17{letter-spacing:0.060480px;}
.ls21{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.168480px;}
.ls23{letter-spacing:0.180480px;}
.ls20{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.211200px;}
.lsf{letter-spacing:0.211680px;}
.lsc{letter-spacing:0.211800px;}
.ls2c{letter-spacing:0.240480px;}
.ls1d{letter-spacing:0.267600px;}
.ls2e{letter-spacing:0.319680px;}
.ls22{letter-spacing:0.332640px;}
.ls5{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.466560px;}
.ls18{letter-spacing:0.666720px;}
.ls26{letter-spacing:0.684000px;}
.ls25{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732960px;}
.ls19{letter-spacing:0.780480px;}
.ls16{letter-spacing:0.977760px;}
.ls1a{letter-spacing:1.052640px;}
.ls31{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.190880px;}
.ls14{letter-spacing:1.444320px;}
.ls1b{letter-spacing:1.526400px;}
.ls10{letter-spacing:2.059200px;}
.ls15{letter-spacing:10.069200px;}
.ls11{letter-spacing:13.359600px;}
.ls32{letter-spacing:47.466720px;}
.ls12{letter-spacing:64.026720px;}
.ls2d{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd{word-spacing:-59.760000px;}
.ws7{word-spacing:-14.572800px;}
.wsa{word-spacing:-14.238600px;}
.ws14{word-spacing:-13.831200px;}
.ws5{word-spacing:-13.359000px;}
.ws3{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws12{word-spacing:-13.136400px;}
.ws17{word-spacing:-13.111200px;}
.ws11{word-spacing:-12.864000px;}
.ws15{word-spacing:-12.776400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws16{word-spacing:-8.821200px;}
.ws13{word-spacing:-8.614200px;}
.ws10{word-spacing:-8.553600px;}
.wsf{word-spacing:-3.078000px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:0.532080px;}
.wse{word-spacing:0.639840px;}
.wsb{word-spacing:4.603680px;}
.ws6{word-spacing:4.712040px;}
._1b{margin-left:-9.280076px;}
._8{margin-left:-3.219480px;}
._c{margin-left:-2.160360px;}
._0{margin-left:-1.159200px;}
._4{width:1.494000px;}
._5{width:3.077999px;}
._6{width:4.090811px;}
._2{width:5.528928px;}
._1{width:7.487420px;}
._b{width:9.296260px;}
._3{width:10.349004px;}
._13{width:11.853509px;}
._14{width:13.153565px;}
._7{width:14.186904px;}
._12{width:15.347324px;}
._9{width:16.852200px;}
._a{width:18.286799px;}
._1a{width:19.434126px;}
._19{width:22.469760px;}
._15{width:57.728160px;}
._16{width:65.317680px;}
._17{width:125.615520px;}
._d{width:149.159280px;}
._18{width:156.232800px;}
._f{width:162.002640px;}
._11{width:169.199280px;}
._10{width:170.299200px;}
._e{width:173.899200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:7.725000px;}
.y69{bottom:7.740000px;}
.y6d{bottom:7.770000px;}
.yc6{bottom:7.905000px;}
.y65{bottom:7.920000px;}
.y9c{bottom:25.380000px;}
.y67{bottom:35.100000px;}
.y9a{bottom:52.740000px;}
.yae{bottom:62.460000px;}
.y6b{bottom:62.490000px;}
.y2{bottom:73.296000px;}
.y28{bottom:74.196000px;}
.y1{bottom:101.556000px;}
.y53{bottom:113.436000px;}
.yce{bottom:115.956000px;}
.yfd{bottom:117.216000px;}
.y52{bottom:131.976000px;}
.ycd{bottom:133.596000px;}
.yfc{bottom:134.856000px;}
.y119{bottom:137.016000px;}
.ya6{bottom:143.856000px;}
.y51{bottom:150.330000px;}
.ycc{bottom:151.230000px;}
.yfb{bottom:152.490000px;}
.y118{bottom:154.650000px;}
.y26{bottom:160.950000px;}
.ya5{bottom:161.310000px;}
.y7d{bottom:167.790000px;}
.y50{bottom:168.690000px;}
.yfa{bottom:170.130000px;}
.y25{bottom:178.590000px;}
.ya4{bottom:178.950000px;}
.y117{bottom:181.110000px;}
.y4f{bottom:187.050000px;}
.yf9{bottom:187.590000px;}
.y24{bottom:196.230000px;}
.ya3{bottom:196.590000px;}
.y116{bottom:198.750000px;}
.y7c{bottom:203.430000px;}
.ycb{bottom:203.790000px;}
.yf8{bottom:205.230000px;}
.y4e{bottom:205.590000px;}
.y23{bottom:213.870000px;}
.ya2{bottom:214.050000px;}
.yca{bottom:215.865000px;}
.y115{bottom:216.390000px;}
.y4d{bottom:223.950000px;}
.ya1{bottom:231.690000px;}
.y7b{bottom:239.070000px;}
.yf7{bottom:240.870000px;}
.y114{bottom:243.030000px;}
.yc9{bottom:243.225000px;}
.y22{bottom:249.330000px;}
.yf6{bottom:258.330000px;}
.y4c{bottom:260.490000px;}
.ya0{bottom:266.790000px;}
.y21{bottom:266.970000px;}
.yc8{bottom:270.585000px;}
.y7a{bottom:274.530000px;}
.yf5{bottom:275.970000px;}
.y113{bottom:278.130000px;}
.y20{bottom:284.610000px;}
.y79{bottom:292.170000px;}
.yf4{bottom:293.610000px;}
.y4b{bottom:295.950000px;}
.yc7{bottom:297.765000px;}
.y9f{bottom:301.890000px;}
.y1f{bottom:302.070000px;}
.y112{bottom:305.130000px;}
.y78{bottom:309.810000px;}
.yf3{bottom:311.070000px;}
.y9d{bottom:313.965000px;}
.yc5{bottom:325.125000px;}
.y77{bottom:327.270000px;}
.y4a{bottom:331.590000px;}
.y1e{bottom:337.755000px;}
.y99{bottom:341.355000px;}
.y76{bottom:344.955000px;}
.yf2{bottom:346.755000px;}
.y49{bottom:349.275000px;}
.yc4{bottom:352.515000px;}
.y111{bottom:353.415000px;}
.y1d{bottom:355.395000px;}
.y75{bottom:362.595000px;}
.yf1{bottom:364.395000px;}
.y1c{bottom:372.855000px;}
.yc3{bottom:379.875000px;}
.y110{bottom:380.235000px;}
.yf0{bottom:382.035000px;}
.y48{bottom:384.915000px;}
.y9b{bottom:386.175000px;}
.y74{bottom:389.235000px;}
.y1b{bottom:390.495000px;}
.yef{bottom:399.495000px;}
.y47{bottom:402.375000px;}
.yc2{bottom:407.235000px;}
.y1a{bottom:408.135000px;}
.yee{bottom:417.135000px;}
.y10f{bottom:417.675000px;}
.y46{bottom:420.015000px;}
.y73{bottom:424.695000px;}
.yc1{bottom:434.595000px;}
.yed{bottom:434.775000px;}
.y98{bottom:434.955000px;}
.y19{bottom:435.135000px;}
.y45{bottom:437.655000px;}
.y72{bottom:442.335000px;}
.yec{bottom:452.235000px;}
.y44{bottom:455.115000px;}
.ybf{bottom:461.955000px;}
.y10e{bottom:465.915000px;}
.yeb{bottom:469.875000px;}
.y97{bottom:470.415000px;}
.y43{bottom:472.755000px;}
.y71{bottom:477.255000px;}
.y10d{bottom:483.375000px;}
.y18{bottom:483.555000px;}
.yea{bottom:487.515000px;}
.y96{bottom:488.055000px;}
.yc0{bottom:489.135000px;}
.y70{bottom:489.315000px;}
.y42{bottom:490.395000px;}
.y10c{bottom:501.015000px;}
.y95{bottom:505.695000px;}
.y41{bottom:507.855000px;}
.y6f{bottom:516.675000px;}
.y10b{bottom:518.655000px;}
.y17{bottom:520.635000px;}
.ye9{bottom:522.975000px;}
.y94{bottom:532.335000px;}
.ybe{bottom:537.915000px;}
.y16{bottom:538.275000px;}
.ye8{bottom:540.615000px;}
.y40{bottom:543.675000px;}
.y6a{bottom:544.035000px;}
.y10a{bottom:545.655000px;}
.y15{bottom:555.735000px;}
.ye7{bottom:558.255000px;}
.y93{bottom:567.795000px;}
.y6e{bottom:571.395000px;}
.y14{bottom:573.375000px;}
.ybd{bottom:573.555000px;}
.ye6{bottom:575.715000px;}
.y3f{bottom:579.315000px;}
.y92{bottom:585.435000px;}
.y3e{bottom:589.395000px;}
.y13{bottom:591.015000px;}
.ye5{bottom:593.355000px;}
.y109{bottom:593.715000px;}
.y6c{bottom:598.755000px;}
.y91{bottom:603.105000px;}
.y12{bottom:608.505000px;}
.ybc{bottom:609.045000px;}
.ye4{bottom:611.025000px;}
.y108{bottom:611.385000px;}
.y90{bottom:620.565000px;}
.y11{bottom:626.145000px;}
.y107{bottom:628.305000px;}
.ye3{bottom:628.665000px;}
.y3d{bottom:634.605000px;}
.y10{bottom:643.785000px;}
.ybb{bottom:644.685000px;}
.y106{bottom:646.665000px;}
.y3c{bottom:652.245000px;}
.y68{bottom:653.325000px;}
.y8f{bottom:656.205000px;}
.yf{bottom:661.425000px;}
.yba{bottom:662.325000px;}
.ye2{bottom:664.125000px;}
.y8e{bottom:673.845000px;}
.ye{bottom:678.885000px;}
.yb9{bottom:679.785000px;}
.y66{bottom:680.685000px;}
.ye1{bottom:681.765000px;}
.y3b{bottom:687.885000px;}
.y8d{bottom:691.305000px;}
.yd{bottom:696.525000px;}
.ye0{bottom:699.405000px;}
.y3a{bottom:706.245000px;}
.y64{bottom:708.045000px;}
.yc{bottom:714.165000px;}
.yb8{bottom:715.425000px;}
.ydf{bottom:716.865000px;}
.y8c{bottom:717.945000px;}
.y39{bottom:724.785000px;}
.yb{bottom:731.625000px;}
.yb7{bottom:733.065000px;}
.yde{bottom:734.505000px;}
.y105{bottom:734.865000px;}
.yb6{bottom:750.705000px;}
.ydd{bottom:752.145000px;}
.y104{bottom:752.505000px;}
.y8b{bottom:753.585000px;}
.y63{bottom:756.825000px;}
.ya{bottom:758.625000px;}
.y38{bottom:761.145000px;}
.yb5{bottom:768.165000px;}
.y103{bottom:770.145000px;}
.y8a{bottom:771.045000px;}
.yb4{bottom:785.805000px;}
.y126{bottom:786.885000px;}
.ydc{bottom:787.605000px;}
.y62{bottom:792.285000px;}
.y37{bottom:796.425000px;}
.yb3{bottom:803.445000px;}
.ydb{bottom:805.245000px;}
.y9{bottom:805.425000px;}
.y89{bottom:806.145000px;}
.y36{bottom:806.505000px;}
.y61{bottom:809.925000px;}
.y125{bottom:813.525000px;}
.y88{bottom:818.205000px;}
.yb2{bottom:820.905000px;}
.yda{bottom:822.885000px;}
.y60{bottom:827.565000px;}
.y124{bottom:830.985000px;}
.yd9{bottom:840.525000px;}
.y8{bottom:841.245000px;}
.y5f{bottom:845.205000px;}
.y87{bottom:845.565000px;}
.y35{bottom:853.125000px;}
.yb1{bottom:856.005000px;}
.y123{bottom:857.625000px;}
.yd8{bottom:857.985000px;}
.y5e{bottom:862.665000px;}
.yad{bottom:868.110000px;}
.y34{bottom:870.810000px;}
.y86{bottom:872.970000px;}
.y122{bottom:875.310000px;}
.yd7{bottom:875.670000px;}
.y7{bottom:877.290000px;}
.y5d{bottom:880.350000px;}
.yd6{bottom:893.310000px;}
.yb0{bottom:895.470000px;}
.y5c{bottom:897.990000px;}
.y85{bottom:900.150000px;}
.y121{bottom:901.770000px;}
.y33{bottom:906.450000px;}
.yd5{bottom:910.770000px;}
.y102{bottom:911.310000px;}
.y6{bottom:913.290000px;}
.y120{bottom:919.410000px;}
.yaf{bottom:922.650000px;}
.y32{bottom:923.910000px;}
.y5b{bottom:924.450000px;}
.y84{bottom:927.510000px;}
.yd4{bottom:928.410000px;}
.y101{bottom:928.770000px;}
.y11f{bottom:937.050000px;}
.y31{bottom:941.550000px;}
.yd3{bottom:946.050000px;}
.y100{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yac{bottom:950.010000px;}
.y83{bottom:954.870000px;}
.y5a{bottom:960.090000px;}
.yd2{bottom:963.510000px;}
.yff{bottom:964.050000px;}
.y30{bottom:977.190000px;}
.y59{bottom:977.730000px;}
.y11e{bottom:981.150000px;}
.yfe{bottom:981.510000px;}
.y82{bottom:982.230000px;}
.y4{bottom:987.810000px;}
.y2f{bottom:994.830000px;}
.yab{bottom:998.790000px;}
.yd1{bottom:999.150000px;}
.y58{bottom:1004.190000px;}
.y11d{bottom:1007.790000px;}
.y81{bottom:1009.590000px;}
.y2e{bottom:1012.290000px;}
.y3{bottom:1012.470000px;}
.yd0{bottom:1016.790000px;}
.y11c{bottom:1025.430000px;}
.y2d{bottom:1029.930000px;}
.yaa{bottom:1034.430000px;}
.y57{bottom:1036.770000px;}
.y80{bottom:1036.950000px;}
.ya9{bottom:1051.890000px;}
.y2c{bottom:1056.930000px;}
.y7e{bottom:1064.310000px;}
.ya8{bottom:1069.530000px;}
.y56{bottom:1072.770000px;}
.ya7{bottom:1087.170000px;}
.ycf{bottom:1087.530000px;}
.y7f{bottom:1091.490000px;}
.y11b{bottom:1096.170000px;}
.y2b{bottom:1105.170000px;}
.y11a{bottom:1113.630000px;}
.y55{bottom:1121.010000px;}
.y2a{bottom:1122.630000px;}
.y54{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h19{height:26.445000px;}
.h13{height:26.460000px;}
.h1d{height:26.481000px;}
.h1a{height:26.482500px;}
.h15{height:26.490000px;}
.h16{height:26.625000px;}
.h11{height:26.640000px;}
.h1f{height:26.661000px;}
.h2{height:29.717578px;}
.h3{height:39.468516px;}
.h17{height:41.974453px;}
.h1c{height:44.085000px;}
.h6{height:50.597578px;}
.h7{height:51.998203px;}
.h18{height:53.805000px;}
.h12{height:53.820000px;}
.h20{height:54.878203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h10{height:59.614102px;}
.hc{height:61.423863px;}
.hf{height:62.211094px;}
.hd{height:62.648438px;}
.h9{height:68.956875px;}
.h1b{height:71.445000px;}
.h4{height:73.298672px;}
.h1e{height:81.165000px;}
.h14{height:81.210000px;}
.hb{height:92.318203px;}
.he{height:96.564141px;}
.ha{height:103.594219px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1c{width:16.185000px;}
.w14{width:30.585000px;}
.w15{width:32.745000px;}
.w21{width:44.085000px;}
.w1b{width:49.485000px;}
.wb{width:50.616000px;}
.wc{width:51.291000px;}
.w1a{width:52.401000px;}
.w9{width:55.785000px;}
.wd{width:61.725000px;}
.w13{width:63.201000px;}
.w16{width:74.550000px;}
.w22{width:74.880000px;}
.w6{width:76.320000px;}
.w1e{width:76.341000px;}
.w1d{width:78.861000px;}
.w11{width:84.240000px;}
.w12{width:85.665000px;}
.w5{width:94.716000px;}
.w17{width:95.781000px;}
.we{width:97.041000px;}
.w19{width:97.185000px;}
.w8{width:98.085000px;}
.w18{width:113.256000px;}
.wf{width:116.136000px;}
.w23{width:126.576000px;}
.w7{width:154.785000px;}
.w4{width:166.515000px;}
.w3{width:177.855000px;}
.w20{width:183.795000px;}
.w1f{width:202.170000px;}
.wa{width:231.870000px;}
.w2{width:261.960000px;}
.w10{width:289.860000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:3.765000px;}
.x1{left:68.040000px;}
.x6{left:95.076000px;}
.x29{left:111.276000px;}
.x12{left:120.285000px;}
.x1c{left:150.510000px;}
.x24{left:169.785000px;}
.x13{left:172.485000px;}
.x2{left:209.730000px;}
.xe{left:214.590000px;}
.x1d{left:224.325000px;}
.xa{left:226.485000px;}
.x14{left:234.945000px;}
.x9{left:236.730000px;}
.x23{left:241.245000px;}
.x25{left:247.035000px;}
.x11{left:290.775000px;}
.x1e{left:320.835000px;}
.x28{left:322.635000px;}
.x7{left:330.735000px;}
.x15{left:332.715000px;}
.x8{left:357.375000px;}
.x4{left:361.335000px;}
.x5{left:388.155000px;}
.xd{left:393.735000px;}
.xf{left:407.820000px;}
.x1f{left:434.820000px;}
.x16{left:449.760000px;}
.x20{left:468.300000px;}
.xc{left:489.180000px;}
.x10{left:506.820000px;}
.x18{left:536.160000px;}
.x21{left:566.400000px;}
.x19{left:600.090000px;}
.x22{left:619.530000px;}
.x1a{left:631.590000px;}
.x26{left:634.650000px;}
.x1b{left:665.070000px;}
.x27{left:679.470000px;}
.x17{left:740.340000px;}
.x3{left:800.460000px;}
@media print{
.v5{vertical-align:-19.840000pt;}
.v1{vertical-align:-18.560000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:19.840000pt;}
.v8{vertical-align:35.840000pt;}
.v3{vertical-align:40.960000pt;}
.ls2b{letter-spacing:-0.650667pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls27{letter-spacing:-0.329600pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsd{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls1c{letter-spacing:-0.251733pt;}
.ls28{letter-spacing:-0.198400pt;}
.ls2a{letter-spacing:-0.163733pt;}
.ls1e{letter-spacing:-0.086933pt;}
.ls2f{letter-spacing:-0.046720pt;}
.ls30{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls29{letter-spacing:0.032427pt;}
.ls1f{letter-spacing:0.034560pt;}
.ls17{letter-spacing:0.053760pt;}
.ls21{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.149760pt;}
.ls23{letter-spacing:0.160427pt;}
.ls20{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.187733pt;}
.lsf{letter-spacing:0.188160pt;}
.lsc{letter-spacing:0.188267pt;}
.ls2c{letter-spacing:0.213760pt;}
.ls1d{letter-spacing:0.237867pt;}
.ls2e{letter-spacing:0.284160pt;}
.ls22{letter-spacing:0.295680pt;}
.ls5{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.414720pt;}
.ls18{letter-spacing:0.592640pt;}
.ls26{letter-spacing:0.608000pt;}
.ls25{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.651520pt;}
.ls19{letter-spacing:0.693760pt;}
.ls16{letter-spacing:0.869120pt;}
.ls1a{letter-spacing:0.935680pt;}
.ls31{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.058560pt;}
.ls14{letter-spacing:1.283840pt;}
.ls1b{letter-spacing:1.356800pt;}
.ls10{letter-spacing:1.830400pt;}
.ls15{letter-spacing:8.950400pt;}
.ls11{letter-spacing:11.875200pt;}
.ls32{letter-spacing:42.192640pt;}
.ls12{letter-spacing:56.912640pt;}
.ls2d{letter-spacing:72.272640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws7{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.656533pt;}
.ws14{word-spacing:-12.294400pt;}
.ws5{word-spacing:-11.874667pt;}
.ws3{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws12{word-spacing:-11.676800pt;}
.ws17{word-spacing:-11.654400pt;}
.ws11{word-spacing:-11.434667pt;}
.ws15{word-spacing:-11.356800pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws16{word-spacing:-7.841067pt;}
.ws13{word-spacing:-7.657067pt;}
.ws10{word-spacing:-7.603200pt;}
.wsf{word-spacing:-2.736000pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:0.472960pt;}
.wse{word-spacing:0.568747pt;}
.wsb{word-spacing:4.092160pt;}
.ws6{word-spacing:4.188480pt;}
._1b{margin-left:-8.248956pt;}
._8{margin-left:-2.861760pt;}
._c{margin-left:-1.920320pt;}
._0{margin-left:-1.030400pt;}
._4{width:1.328000pt;}
._5{width:2.735999pt;}
._6{width:3.636276pt;}
._2{width:4.914603pt;}
._1{width:6.655484pt;}
._b{width:8.263343pt;}
._3{width:9.199114pt;}
._13{width:10.536452pt;}
._14{width:11.692058pt;}
._7{width:12.610582pt;}
._12{width:13.642066pt;}
._9{width:14.979734pt;}
._a{width:16.254932pt;}
._1a{width:17.274779pt;}
._19{width:19.973120pt;}
._15{width:51.313920pt;}
._16{width:58.060160pt;}
._17{width:111.658240pt;}
._d{width:132.586027pt;}
._18{width:138.873600pt;}
._f{width:144.002347pt;}
._11{width:150.399360pt;}
._10{width:151.377067pt;}
._e{width:154.577067pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:6.866667pt;}
.y69{bottom:6.880000pt;}
.y6d{bottom:6.906667pt;}
.yc6{bottom:7.026667pt;}
.y65{bottom:7.040000pt;}
.y9c{bottom:22.560000pt;}
.y67{bottom:31.200000pt;}
.y9a{bottom:46.880000pt;}
.yae{bottom:55.520000pt;}
.y6b{bottom:55.546667pt;}
.y2{bottom:65.152000pt;}
.y28{bottom:65.952000pt;}
.y1{bottom:90.272000pt;}
.y53{bottom:100.832000pt;}
.yce{bottom:103.072000pt;}
.yfd{bottom:104.192000pt;}
.y52{bottom:117.312000pt;}
.ycd{bottom:118.752000pt;}
.yfc{bottom:119.872000pt;}
.y119{bottom:121.792000pt;}
.ya6{bottom:127.872000pt;}
.y51{bottom:133.626667pt;}
.ycc{bottom:134.426667pt;}
.yfb{bottom:135.546667pt;}
.y118{bottom:137.466667pt;}
.y26{bottom:143.066667pt;}
.ya5{bottom:143.386667pt;}
.y7d{bottom:149.146667pt;}
.y50{bottom:149.946667pt;}
.yfa{bottom:151.226667pt;}
.y25{bottom:158.746667pt;}
.ya4{bottom:159.066667pt;}
.y117{bottom:160.986667pt;}
.y4f{bottom:166.266667pt;}
.yf9{bottom:166.746667pt;}
.y24{bottom:174.426667pt;}
.ya3{bottom:174.746667pt;}
.y116{bottom:176.666667pt;}
.y7c{bottom:180.826667pt;}
.ycb{bottom:181.146667pt;}
.yf8{bottom:182.426667pt;}
.y4e{bottom:182.746667pt;}
.y23{bottom:190.106667pt;}
.ya2{bottom:190.266667pt;}
.yca{bottom:191.880000pt;}
.y115{bottom:192.346667pt;}
.y4d{bottom:199.066667pt;}
.ya1{bottom:205.946667pt;}
.y7b{bottom:212.506667pt;}
.yf7{bottom:214.106667pt;}
.y114{bottom:216.026667pt;}
.yc9{bottom:216.200000pt;}
.y22{bottom:221.626667pt;}
.yf6{bottom:229.626667pt;}
.y4c{bottom:231.546667pt;}
.ya0{bottom:237.146667pt;}
.y21{bottom:237.306667pt;}
.yc8{bottom:240.520000pt;}
.y7a{bottom:244.026667pt;}
.yf5{bottom:245.306667pt;}
.y113{bottom:247.226667pt;}
.y20{bottom:252.986667pt;}
.y79{bottom:259.706667pt;}
.yf4{bottom:260.986667pt;}
.y4b{bottom:263.066667pt;}
.yc7{bottom:264.680000pt;}
.y9f{bottom:268.346667pt;}
.y1f{bottom:268.506667pt;}
.y112{bottom:271.226667pt;}
.y78{bottom:275.386667pt;}
.yf3{bottom:276.506667pt;}
.y9d{bottom:279.080000pt;}
.yc5{bottom:289.000000pt;}
.y77{bottom:290.906667pt;}
.y4a{bottom:294.746667pt;}
.y1e{bottom:300.226667pt;}
.y99{bottom:303.426667pt;}
.y76{bottom:306.626667pt;}
.yf2{bottom:308.226667pt;}
.y49{bottom:310.466667pt;}
.yc4{bottom:313.346667pt;}
.y111{bottom:314.146667pt;}
.y1d{bottom:315.906667pt;}
.y75{bottom:322.306667pt;}
.yf1{bottom:323.906667pt;}
.y1c{bottom:331.426667pt;}
.yc3{bottom:337.666667pt;}
.y110{bottom:337.986667pt;}
.yf0{bottom:339.586667pt;}
.y48{bottom:342.146667pt;}
.y9b{bottom:343.266667pt;}
.y74{bottom:345.986667pt;}
.y1b{bottom:347.106667pt;}
.yef{bottom:355.106667pt;}
.y47{bottom:357.666667pt;}
.yc2{bottom:361.986667pt;}
.y1a{bottom:362.786667pt;}
.yee{bottom:370.786667pt;}
.y10f{bottom:371.266667pt;}
.y46{bottom:373.346667pt;}
.y73{bottom:377.506667pt;}
.yc1{bottom:386.306667pt;}
.yed{bottom:386.466667pt;}
.y98{bottom:386.626667pt;}
.y19{bottom:386.786667pt;}
.y45{bottom:389.026667pt;}
.y72{bottom:393.186667pt;}
.yec{bottom:401.986667pt;}
.y44{bottom:404.546667pt;}
.ybf{bottom:410.626667pt;}
.y10e{bottom:414.146667pt;}
.yeb{bottom:417.666667pt;}
.y97{bottom:418.146667pt;}
.y43{bottom:420.226667pt;}
.y71{bottom:424.226667pt;}
.y10d{bottom:429.666667pt;}
.y18{bottom:429.826667pt;}
.yea{bottom:433.346667pt;}
.y96{bottom:433.826667pt;}
.yc0{bottom:434.786667pt;}
.y70{bottom:434.946667pt;}
.y42{bottom:435.906667pt;}
.y10c{bottom:445.346667pt;}
.y95{bottom:449.506667pt;}
.y41{bottom:451.426667pt;}
.y6f{bottom:459.266667pt;}
.y10b{bottom:461.026667pt;}
.y17{bottom:462.786667pt;}
.ye9{bottom:464.866667pt;}
.y94{bottom:473.186667pt;}
.ybe{bottom:478.146667pt;}
.y16{bottom:478.466667pt;}
.ye8{bottom:480.546667pt;}
.y40{bottom:483.266667pt;}
.y6a{bottom:483.586667pt;}
.y10a{bottom:485.026667pt;}
.y15{bottom:493.986667pt;}
.ye7{bottom:496.226667pt;}
.y93{bottom:504.706667pt;}
.y6e{bottom:507.906667pt;}
.y14{bottom:509.666667pt;}
.ybd{bottom:509.826667pt;}
.ye6{bottom:511.746667pt;}
.y3f{bottom:514.946667pt;}
.y92{bottom:520.386667pt;}
.y3e{bottom:523.906667pt;}
.y13{bottom:525.346667pt;}
.ye5{bottom:527.426667pt;}
.y109{bottom:527.746667pt;}
.y6c{bottom:532.226667pt;}
.y91{bottom:536.093333pt;}
.y12{bottom:540.893333pt;}
.ybc{bottom:541.373333pt;}
.ye4{bottom:543.133333pt;}
.y108{bottom:543.453333pt;}
.y90{bottom:551.613333pt;}
.y11{bottom:556.573333pt;}
.y107{bottom:558.493333pt;}
.ye3{bottom:558.813333pt;}
.y3d{bottom:564.093333pt;}
.y10{bottom:572.253333pt;}
.ybb{bottom:573.053333pt;}
.y106{bottom:574.813333pt;}
.y3c{bottom:579.773333pt;}
.y68{bottom:580.733333pt;}
.y8f{bottom:583.293333pt;}
.yf{bottom:587.933333pt;}
.yba{bottom:588.733333pt;}
.ye2{bottom:590.333333pt;}
.y8e{bottom:598.973333pt;}
.ye{bottom:603.453333pt;}
.yb9{bottom:604.253333pt;}
.y66{bottom:605.053333pt;}
.ye1{bottom:606.013333pt;}
.y3b{bottom:611.453333pt;}
.y8d{bottom:614.493333pt;}
.yd{bottom:619.133333pt;}
.ye0{bottom:621.693333pt;}
.y3a{bottom:627.773333pt;}
.y64{bottom:629.373333pt;}
.yc{bottom:634.813333pt;}
.yb8{bottom:635.933333pt;}
.ydf{bottom:637.213333pt;}
.y8c{bottom:638.173333pt;}
.y39{bottom:644.253333pt;}
.yb{bottom:650.333333pt;}
.yb7{bottom:651.613333pt;}
.yde{bottom:652.893333pt;}
.y105{bottom:653.213333pt;}
.yb6{bottom:667.293333pt;}
.ydd{bottom:668.573333pt;}
.y104{bottom:668.893333pt;}
.y8b{bottom:669.853333pt;}
.y63{bottom:672.733333pt;}
.ya{bottom:674.333333pt;}
.y38{bottom:676.573333pt;}
.yb5{bottom:682.813333pt;}
.y103{bottom:684.573333pt;}
.y8a{bottom:685.373333pt;}
.yb4{bottom:698.493333pt;}
.y126{bottom:699.453333pt;}
.ydc{bottom:700.093333pt;}
.y62{bottom:704.253333pt;}
.y37{bottom:707.933333pt;}
.yb3{bottom:714.173333pt;}
.ydb{bottom:715.773333pt;}
.y9{bottom:715.933333pt;}
.y89{bottom:716.573333pt;}
.y36{bottom:716.893333pt;}
.y61{bottom:719.933333pt;}
.y125{bottom:723.133333pt;}
.y88{bottom:727.293333pt;}
.yb2{bottom:729.693333pt;}
.yda{bottom:731.453333pt;}
.y60{bottom:735.613333pt;}
.y124{bottom:738.653333pt;}
.yd9{bottom:747.133333pt;}
.y8{bottom:747.773333pt;}
.y5f{bottom:751.293333pt;}
.y87{bottom:751.613333pt;}
.y35{bottom:758.333333pt;}
.yb1{bottom:760.893333pt;}
.y123{bottom:762.333333pt;}
.yd8{bottom:762.653333pt;}
.y5e{bottom:766.813333pt;}
.yad{bottom:771.653333pt;}
.y34{bottom:774.053333pt;}
.y86{bottom:775.973333pt;}
.y122{bottom:778.053333pt;}
.yd7{bottom:778.373333pt;}
.y7{bottom:779.813333pt;}
.y5d{bottom:782.533333pt;}
.yd6{bottom:794.053333pt;}
.yb0{bottom:795.973333pt;}
.y5c{bottom:798.213333pt;}
.y85{bottom:800.133333pt;}
.y121{bottom:801.573333pt;}
.y33{bottom:805.733333pt;}
.yd5{bottom:809.573333pt;}
.y102{bottom:810.053333pt;}
.y6{bottom:811.813333pt;}
.y120{bottom:817.253333pt;}
.yaf{bottom:820.133333pt;}
.y32{bottom:821.253333pt;}
.y5b{bottom:821.733333pt;}
.y84{bottom:824.453333pt;}
.yd4{bottom:825.253333pt;}
.y101{bottom:825.573333pt;}
.y11f{bottom:832.933333pt;}
.y31{bottom:836.933333pt;}
.yd3{bottom:840.933333pt;}
.y100{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yac{bottom:844.453333pt;}
.y83{bottom:848.773333pt;}
.y5a{bottom:853.413333pt;}
.yd2{bottom:856.453333pt;}
.yff{bottom:856.933333pt;}
.y30{bottom:868.613333pt;}
.y59{bottom:869.093333pt;}
.y11e{bottom:872.133333pt;}
.yfe{bottom:872.453333pt;}
.y82{bottom:873.093333pt;}
.y4{bottom:878.053333pt;}
.y2f{bottom:884.293333pt;}
.yab{bottom:887.813333pt;}
.yd1{bottom:888.133333pt;}
.y58{bottom:892.613333pt;}
.y11d{bottom:895.813333pt;}
.y81{bottom:897.413333pt;}
.y2e{bottom:899.813333pt;}
.y3{bottom:899.973333pt;}
.yd0{bottom:903.813333pt;}
.y11c{bottom:911.493333pt;}
.y2d{bottom:915.493333pt;}
.yaa{bottom:919.493333pt;}
.y57{bottom:921.573333pt;}
.y80{bottom:921.733333pt;}
.ya9{bottom:935.013333pt;}
.y2c{bottom:939.493333pt;}
.y7e{bottom:946.053333pt;}
.ya8{bottom:950.693333pt;}
.y56{bottom:953.573333pt;}
.ya7{bottom:966.373333pt;}
.ycf{bottom:966.693333pt;}
.y7f{bottom:970.213333pt;}
.y11b{bottom:974.373333pt;}
.y2b{bottom:982.373333pt;}
.y11a{bottom:989.893333pt;}
.y55{bottom:996.453333pt;}
.y2a{bottom:997.893333pt;}
.y54{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h19{height:23.506667pt;}
.h13{height:23.520000pt;}
.h1d{height:23.538667pt;}
.h1a{height:23.540000pt;}
.h15{height:23.546667pt;}
.h16{height:23.666667pt;}
.h11{height:23.680000pt;}
.h1f{height:23.698667pt;}
.h2{height:26.415625pt;}
.h3{height:35.083125pt;}
.h17{height:37.310625pt;}
.h1c{height:39.186667pt;}
.h6{height:44.975625pt;}
.h7{height:46.220625pt;}
.h18{height:47.826667pt;}
.h12{height:47.840000pt;}
.h20{height:48.780625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h10{height:52.990313pt;}
.hc{height:54.598989pt;}
.hf{height:55.298750pt;}
.hd{height:55.687500pt;}
.h9{height:61.295000pt;}
.h1b{height:63.506667pt;}
.h4{height:65.154375pt;}
.h1e{height:72.146667pt;}
.h14{height:72.186667pt;}
.hb{height:82.060625pt;}
.he{height:85.834792pt;}
.ha{height:92.083750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1c{width:14.386667pt;}
.w14{width:27.186667pt;}
.w15{width:29.106667pt;}
.w21{width:39.186667pt;}
.w1b{width:43.986667pt;}
.wb{width:44.992000pt;}
.wc{width:45.592000pt;}
.w1a{width:46.578667pt;}
.w9{width:49.586667pt;}
.wd{width:54.866667pt;}
.w13{width:56.178667pt;}
.w16{width:66.266667pt;}
.w22{width:66.560000pt;}
.w6{width:67.840000pt;}
.w1e{width:67.858667pt;}
.w1d{width:70.098667pt;}
.w11{width:74.880000pt;}
.w12{width:76.146667pt;}
.w5{width:84.192000pt;}
.w17{width:85.138667pt;}
.we{width:86.258667pt;}
.w19{width:86.386667pt;}
.w8{width:87.186667pt;}
.w18{width:100.672000pt;}
.wf{width:103.232000pt;}
.w23{width:112.512000pt;}
.w7{width:137.586667pt;}
.w4{width:148.013333pt;}
.w3{width:158.093333pt;}
.w20{width:163.373333pt;}
.w1f{width:179.706667pt;}
.wa{width:206.106667pt;}
.w2{width:232.853333pt;}
.w10{width:257.653333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.346667pt;}
.x1{left:60.480000pt;}
.x6{left:84.512000pt;}
.x29{left:98.912000pt;}
.x12{left:106.920000pt;}
.x1c{left:133.786667pt;}
.x24{left:150.920000pt;}
.x13{left:153.320000pt;}
.x2{left:186.426667pt;}
.xe{left:190.746667pt;}
.x1d{left:199.400000pt;}
.xa{left:201.320000pt;}
.x14{left:208.840000pt;}
.x9{left:210.426667pt;}
.x23{left:214.440000pt;}
.x25{left:219.586667pt;}
.x11{left:258.466667pt;}
.x1e{left:285.186667pt;}
.x28{left:286.786667pt;}
.x7{left:293.986667pt;}
.x15{left:295.746667pt;}
.x8{left:317.666667pt;}
.x4{left:321.186667pt;}
.x5{left:345.026667pt;}
.xd{left:349.986667pt;}
.xf{left:362.506667pt;}
.x1f{left:386.506667pt;}
.x16{left:399.786667pt;}
.x20{left:416.266667pt;}
.xc{left:434.826667pt;}
.x10{left:450.506667pt;}
.x18{left:476.586667pt;}
.x21{left:503.466667pt;}
.x19{left:533.413333pt;}
.x22{left:550.693333pt;}
.x1a{left:561.413333pt;}
.x26{left:564.133333pt;}
.x1b{left:591.173333pt;}
.x27{left:603.973333pt;}
.x17{left:658.080000pt;}
.x3{left:711.520000pt;}
}




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