
    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_8b15fd9d6158fce2f0c736ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f2314d1582fe30db768869d7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_af9da371aa6f0a75c8e31cb3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934082;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_5690f84b701b3b5c39360d33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_79c9581c4712e3a166650a29.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ed78c8920f0be981a56921de.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_da355e50306c55e2e03c37d8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_c75ff7f66e5f5a1464f29576.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_4bf6e182e406063277312bf7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c60ac32a6365102be8455824.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cb2c9f2981b1b71c51b8ecd6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8105bee815126b0a98a46740.woff')format("woff");}.ff10{font-family:ff10;line-height:0.891113;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:ff11;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff11{font-family:ff11;line-height:0.960449;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-1.500000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.080640px;}
.ls3{letter-spacing:0.132600px;}
.lse{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.858000px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws3{word-spacing:-22.087200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.wsb{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._18{margin-left:-7.542960px;}
._0{margin-left:-5.796720px;}
._4{margin-left:-4.159920px;}
._3{margin-left:-2.330640px;}
._1{margin-left:-1.135440px;}
._2{width:1.024320px;}
._15{width:2.861280px;}
._16{width:4.286880px;}
._f{width:5.871600px;}
._a{width:7.401840px;}
._8{width:9.401040px;}
._7{width:10.628880px;}
._9{width:11.900640px;}
._6{width:13.855920px;}
._5{width:16.190160px;}
._d{width:17.247600px;}
._17{width:18.315840px;}
._c{width:19.601280px;}
._b{width:20.796480px;}
._1a{width:22.521120px;}
._19{width:23.605200px;}
._13{width:25.056240px;}
._12{width:26.106720px;}
._14{width:27.465600px;}
._10{width:28.915440px;}
._11{width:30.996960px;}
._e{width:34.234080px;}
._1c{width:39.083040px;}
._1b{width:40.338000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.240000px;}
.y11f{bottom:3.285000px;}
.y67{bottom:3.780000px;}
.ye{bottom:4.500000px;}
.yd3{bottom:4.680000px;}
.y66{bottom:6.120000px;}
.ye4{bottom:6.840000px;}
.yde{bottom:7.200000px;}
.y136{bottom:11.520000px;}
.yf9{bottom:11.880000px;}
.ye1{bottom:11.910000px;}
.y120{bottom:11.925000px;}
.yd2{bottom:13.320000px;}
.yc{bottom:13.860000px;}
.y1b{bottom:14.580000px;}
.y3{bottom:19.080000px;}
.y134{bottom:20.160000px;}
.y42{bottom:20.340000px;}
.y64{bottom:20.520000px;}
.ye0{bottom:20.550000px;}
.y11e{bottom:20.565000px;}
.y18{bottom:21.960000px;}
.y5{bottom:26.280000px;}
.y135{bottom:28.800000px;}
.ye8{bottom:29.160000px;}
.yb{bottom:30.240000px;}
.y41{bottom:35.100000px;}
.y63{bottom:37.800000px;}
.y17{bottom:38.520000px;}
.y4{bottom:38.916000px;}
.y2{bottom:40.176000px;}
.ya{bottom:46.440000px;}
.y1{bottom:48.780000px;}
.y40{bottom:49.680000px;}
.y16{bottom:54.900000px;}
.ye7{bottom:55.080000px;}
.y3f{bottom:64.440000px;}
.y15{bottom:67.680000px;}
.y62{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y3e{bottom:79.020000px;}
.y14{bottom:84.600000px;}
.y61{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y3d{bottom:93.600000px;}
.y13{bottom:106.560000px;}
.y60{bottom:106.785000px;}
.y3c{bottom:108.405000px;}
.y7{bottom:111.270000px;}
.y16f{bottom:115.596000px;}
.y6d{bottom:116.136000px;}
.y13f{bottom:116.676000px;}
.y12a{bottom:117.936000px;}
.ydc{bottom:120.456000px;}
.ya5{bottom:120.816000px;}
.y12{bottom:120.960000px;}
.y3b{bottom:122.985000px;}
.y5f{bottom:124.065000px;}
.y106{bottom:129.636000px;}
.y16e{bottom:132.876000px;}
.y6c{bottom:133.416000px;}
.y13e{bottom:133.956000px;}
.y129{bottom:135.216000px;}
.y3a{bottom:137.745000px;}
.ya4{bottom:138.096000px;}
.ydb{bottom:138.456000px;}
.y5e{bottom:141.165000px;}
.y11{bottom:146.700000px;}
.y105{bottom:146.916000px;}
.y16d{bottom:150.150000px;}
.y6b{bottom:150.690000px;}
.y13d{bottom:151.230000px;}
.y39{bottom:152.325000px;}
.y128{bottom:152.490000px;}
.ya3{bottom:155.370000px;}
.yda{bottom:156.450000px;}
.y5d{bottom:158.445000px;}
.y104{bottom:164.190000px;}
.y38{bottom:166.905000px;}
.y16c{bottom:167.430000px;}
.y6a{bottom:167.970000px;}
.y10{bottom:168.120000px;}
.y13c{bottom:168.510000px;}
.ya2{bottom:173.730000px;}
.yd9{bottom:174.450000px;}
.y5c{bottom:175.725000px;}
.y103{bottom:181.290000px;}
.y37{bottom:181.665000px;}
.y127{bottom:184.170000px;}
.y16b{bottom:184.710000px;}
.y69{bottom:185.250000px;}
.y13b{bottom:185.610000px;}
.ya1{bottom:191.910000px;}
.yd8{bottom:192.450000px;}
.y5b{bottom:193.005000px;}
.y36{bottom:196.245000px;}
.y102{bottom:198.570000px;}
.y16a{bottom:201.810000px;}
.y68{bottom:202.350000px;}
.ya0{bottom:210.270000px;}
.y5a{bottom:210.285000px;}
.yd7{bottom:210.450000px;}
.y35{bottom:210.825000px;}
.y101{bottom:215.850000px;}
.y126{bottom:216.030000px;}
.y65{bottom:216.390000px;}
.y13a{bottom:217.470000px;}
.y169{bottom:219.090000px;}
.y34{bottom:225.585000px;}
.y59{bottom:227.565000px;}
.yd6{bottom:228.450000px;}
.y9f{bottom:228.630000px;}
.y1c{bottom:233.850000px;}
.y139{bottom:234.750000px;}
.y168{bottom:236.370000px;}
.y33{bottom:240.165000px;}
.y58{bottom:244.665000px;}
.yd5{bottom:246.450000px;}
.y9e{bottom:246.990000px;}
.y100{bottom:247.710000px;}
.y125{bottom:247.890000px;}
.y32{bottom:254.925000px;}
.y167{bottom:256.170000px;}
.y57{bottom:261.945000px;}
.y138{bottom:263.370000px;}
.yd4{bottom:264.450000px;}
.y124{bottom:265.170000px;}
.y9d{bottom:265.350000px;}
.y31{bottom:269.505000px;}
.y166{bottom:275.970000px;}
.yff{bottom:276.870000px;}
.y56{bottom:279.225000px;}
.y123{bottom:279.930000px;}
.yd1{bottom:282.450000px;}
.y9c{bottom:283.530000px;}
.y30{bottom:284.085000px;}
.yfe{bottom:291.630000px;}
.y165{bottom:293.250000px;}
.y55{bottom:296.505000px;}
.y122{bottom:297.930000px;}
.y2f{bottom:298.845000px;}
.y9b{bottom:300.810000px;}
.y164{bottom:310.530000px;}
.y2e{bottom:313.425000px;}
.y54{bottom:313.785000px;}
.y121{bottom:315.930000px;}
.y9a{bottom:318.090000px;}
.yd0{bottom:323.850000px;}
.yfd{bottom:326.910000px;}
.y163{bottom:327.810000px;}
.y2d{bottom:328.005000px;}
.y53{bottom:331.065000px;}
.y11d{bottom:333.930000px;}
.y99{bottom:336.495000px;}
.y2c{bottom:342.765000px;}
.yfc{bottom:344.955000px;}
.y162{bottom:345.135000px;}
.y52{bottom:348.165000px;}
.ycf{bottom:353.235000px;}
.y98{bottom:354.855000px;}
.y2b{bottom:357.345000px;}
.y161{bottom:362.415000px;}
.yfb{bottom:362.955000px;}
.y51{bottom:365.445000px;}
.y11c{bottom:369.255000px;}
.yce{bottom:370.515000px;}
.y2a{bottom:371.955000px;}
.y160{bottom:379.515000px;}
.y50{bottom:382.755000px;}
.y29{bottom:389.235000px;}
.y15f{bottom:396.795000px;}
.yfa{bottom:398.235000px;}
.ycd{bottom:399.675000px;}
.y4f{bottom:400.035000px;}
.y11b{bottom:404.535000px;}
.y28{bottom:406.515000px;}
.y97{bottom:407.595000px;}
.y15e{bottom:414.075000px;}
.ycc{bottom:416.955000px;}
.y4e{bottom:417.315000px;}
.y11a{bottom:422.535000px;}
.y27{bottom:424.335000px;}
.y96{bottom:425.955000px;}
.y15d{bottom:431.355000px;}
.yf8{bottom:433.515000px;}
.ycb{bottom:434.235000px;}
.y4d{bottom:434.595000px;}
.y119{bottom:440.535000px;}
.y26{bottom:441.615000px;}
.y95{bottom:443.235000px;}
.y15c{bottom:448.635000px;}
.yca{bottom:451.515000px;}
.y4c{bottom:451.695000px;}
.y118{bottom:458.535000px;}
.y25{bottom:459.075000px;}
.y94{bottom:460.515000px;}
.y15b{bottom:465.735000px;}
.yc9{bottom:468.615000px;}
.y4b{bottom:468.975000px;}
.yf7{bottom:472.035000px;}
.y24{bottom:476.535000px;}
.y93{bottom:477.615000px;}
.y15a{bottom:483.015000px;}
.yc8{bottom:485.895000px;}
.y4a{bottom:486.255000px;}
.y190{bottom:489.855000px;}
.y117{bottom:493.635000px;}
.y23{bottom:493.815000px;}
.y92{bottom:494.895000px;}
.y159{bottom:500.295000px;}
.yf6{bottom:501.195000px;}
.yc7{bottom:503.175000px;}
.y49{bottom:503.535000px;}
.y18f{bottom:508.215000px;}
.y22{bottom:511.275000px;}
.y91{bottom:512.175000px;}
.y158{bottom:517.575000px;}
.yf5{bottom:518.475000px;}
.yc6{bottom:520.455000px;}
.y48{bottom:520.815000px;}
.y18e{bottom:525.855000px;}
.y21{bottom:528.735000px;}
.y90{bottom:529.455000px;}
.y116{bottom:532.155000px;}
.y157{bottom:534.855000px;}
.yf4{bottom:535.755000px;}
.yc5{bottom:537.735000px;}
.y47{bottom:537.915000px;}
.y18d{bottom:543.135000px;}
.y20{bottom:546.195000px;}
.y8f{bottom:546.735000px;}
.y156{bottom:552.135000px;}
.yf3{bottom:553.035000px;}
.yc4{bottom:555.015000px;}
.y46{bottom:555.195000px;}
.y18c{bottom:560.235000px;}
.y115{bottom:561.495000px;}
.y8e{bottom:564.015000px;}
.y1f{bottom:564.555000px;}
.y155{bottom:569.235000px;}
.yf2{bottom:570.315000px;}
.yc3{bottom:572.115000px;}
.y45{bottom:572.475000px;}
.y18b{bottom:577.515000px;}
.y137{bottom:578.055000px;}
.y114{bottom:578.775000px;}
.y8d{bottom:581.115000px;}
.yf1{bottom:587.415000px;}
.yc2{bottom:589.395000px;}
.y44{bottom:589.755000px;}
.y1e{bottom:591.915000px;}
.y18a{bottom:594.795000px;}
.y113{bottom:595.875000px;}
.y8c{bottom:598.395000px;}
.y154{bottom:598.575000px;}
.yf0{bottom:604.725000px;}
.yc1{bottom:606.705000px;}
.y43{bottom:607.035000px;}
.y1d{bottom:609.735000px;}
.y189{bottom:612.105000px;}
.y133{bottom:613.365000px;}
.y8b{bottom:615.705000px;}
.y153{bottom:615.885000px;}
.yef{bottom:622.005000px;}
.yc0{bottom:623.985000px;}
.y112{bottom:625.245000px;}
.y188{bottom:629.385000px;}
.y8a{bottom:632.985000px;}
.y152{bottom:633.165000px;}
.yee{bottom:639.285000px;}
.ybf{bottom:641.265000px;}
.y111{bottom:642.525000px;}
.y187{bottom:646.665000px;}
.y151{bottom:650.265000px;}
.y89{bottom:651.345000px;}
.yed{bottom:656.565000px;}
.ybe{bottom:658.545000px;}
.y110{bottom:659.805000px;}
.y186{bottom:663.765000px;}
.y150{bottom:667.545000px;}
.y88{bottom:669.525000px;}
.ybd{bottom:675.645000px;}
.yec{bottom:676.365000px;}
.y10f{bottom:676.905000px;}
.y132{bottom:680.325000px;}
.y185{bottom:681.045000px;}
.y87{bottom:687.885000px;}
.ybc{bottom:692.925000px;}
.yeb{bottom:693.645000px;}
.y10e{bottom:694.185000px;}
.y14f{bottom:696.885000px;}
.y184{bottom:698.325000px;}
.y86{bottom:706.245000px;}
.yea{bottom:710.025000px;}
.ybb{bottom:710.205000px;}
.y10d{bottom:711.465000px;}
.y131{bottom:712.185000px;}
.y14e{bottom:714.165000px;}
.y183{bottom:715.605000px;}
.y85{bottom:723.525000px;}
.yba{bottom:727.485000px;}
.y10c{bottom:728.745000px;}
.y130{bottom:729.465000px;}
.y14d{bottom:731.265000px;}
.y182{bottom:732.885000px;}
.y84{bottom:741.885000px;}
.yb9{bottom:744.765000px;}
.y10b{bottom:746.025000px;}
.y12f{bottom:746.745000px;}
.y14c{bottom:748.545000px;}
.y181{bottom:750.165000px;}
.yb8{bottom:761.865000px;}
.y10a{bottom:763.305000px;}
.y12e{bottom:764.025000px;}
.y14b{bottom:765.825000px;}
.y180{bottom:767.265000px;}
.y83{bottom:771.045000px;}
.yb7{bottom:779.145000px;}
.y109{bottom:780.405000px;}
.y12d{bottom:781.305000px;}
.y14a{bottom:783.105000px;}
.y17f{bottom:784.545000px;}
.y82{bottom:788.325000px;}
.yb6{bottom:796.425000px;}
.y108{bottom:797.685000px;}
.y12c{bottom:798.405000px;}
.y17e{bottom:801.825000px;}
.y81{bottom:805.605000px;}
.y149{bottom:812.265000px;}
.yb5{bottom:813.705000px;}
.y17d{bottom:819.105000px;}
.y107{bottom:826.305000px;}
.y12b{bottom:827.025000px;}
.y148{bottom:829.545000px;}
.yb4{bottom:830.985000px;}
.y80{bottom:834.765000px;}
.y17c{bottom:836.385000px;}
.y147{bottom:846.825000px;}
.yb3{bottom:849.345000px;}
.y7f{bottom:852.045000px;}
.y17b{bottom:853.485000px;}
.y1a{bottom:854.925000px;}
.y146{bottom:864.105000px;}
.yb2{bottom:866.445000px;}
.y7e{bottom:869.325000px;}
.y17a{bottom:870.810000px;}
.y145{bottom:881.430000px;}
.yb1{bottom:883.770000px;}
.yf{bottom:883.950000px;}
.y7d{bottom:886.650000px;}
.y179{bottom:888.090000px;}
.y144{bottom:898.530000px;}
.yb0{bottom:902.130000px;}
.y178{bottom:905.370000px;}
.y7c{bottom:915.810000px;}
.yaf{bottom:919.410000px;}
.y177{bottom:922.650000px;}
.y143{bottom:927.870000px;}
.y7b{bottom:933.090000px;}
.yae{bottom:937.770000px;}
.y176{bottom:939.930000px;}
.y142{bottom:945.150000px;}
.y7a{bottom:950.370000px;}
.yad{bottom:954.870000px;}
.y175{bottom:957.030000px;}
.y141{bottom:962.430000px;}
.y79{bottom:967.650000px;}
.yac{bottom:972.150000px;}
.y174{bottom:974.310000px;}
.y140{bottom:979.530000px;}
.ye9{bottom:980.610000px;}
.yab{bottom:989.430000px;}
.y173{bottom:991.590000px;}
.ye6{bottom:995.370000px;}
.y78{bottom:996.810000px;}
.yaa{bottom:1006.710000px;}
.y172{bottom:1008.870000px;}
.y77{bottom:1014.090000px;}
.ya9{bottom:1025.070000px;}
.y171{bottom:1026.150000px;}
.y76{bottom:1031.370000px;}
.ya8{bottom:1042.350000px;}
.y170{bottom:1043.430000px;}
.y75{bottom:1048.650000px;}
.yd{bottom:1053.510000px;}
.ya7{bottom:1060.530000px;}
.ye5{bottom:1065.210000px;}
.y74{bottom:1065.930000px;}
.y6{bottom:1073.850000px;}
.ya6{bottom:1077.810000px;}
.ye3{bottom:1090.950000px;}
.y73{bottom:1095.090000px;}
.y72{bottom:1112.370000px;}
.ye2{bottom:1116.150000px;}
.y71{bottom:1129.650000px;}
.ydf{bottom:1134.150000px;}
.y70{bottom:1146.960000px;}
.y6f{bottom:1164.060000px;}
.ydd{bottom:1169.460000px;}
.y6e{bottom:1181.340000px;}
.hd{height:4.241250px;}
.h29{height:17.100000px;}
.h20{height:17.280000px;}
.h27{height:17.316000px;}
.h1d{height:17.460000px;}
.hb{height:19.980000px;}
.h23{height:24.480000px;}
.h24{height:25.020000px;}
.h21{height:25.200000px;}
.hf{height:27.000000px;}
.h11{height:28.968750px;}
.h13{height:29.016000px;}
.h28{height:34.380000px;}
.h26{height:34.560000px;}
.h22{height:34.596000px;}
.h8{height:36.180000px;}
.h1a{height:36.462656px;}
.h1f{height:37.440000px;}
.h12{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h1e{height:43.506914px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h2a{height:51.120000px;}
.h9{height:54.000000px;}
.h2{height:54.576000px;}
.h10{height:55.291992px;}
.h2b{height:56.900391px;}
.h4{height:59.439023px;}
.h17{height:61.189805px;}
.he{height:63.180000px;}
.h3{height:64.875938px;}
.h5{height:67.824844px;}
.h25{height:69.120000px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:169.560000px;}
.h15{height:621.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:143.856000px;}
.wc{width:185.970000px;}
.wd{width:186.150000px;}
.w9{width:197.310000px;}
.wa{width:546.765000px;}
.wb{width:555.045000px;}
.w6{width:595.905000px;}
.w2{width:673.530000px;}
.w7{width:739.770000px;}
.w8{width:744.090000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.xd{left:14.220000px;}
.x11{left:65.556000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x10{left:93.450000px;}
.x5{left:98.130000px;}
.x14{left:108.035987px;}
.x15{left:135.035987px;}
.xe{left:156.630000px;}
.xf{left:185.790000px;}
.x12{left:188.130000px;}
.x6{left:216.750000px;}
.x17{left:260.130000px;}
.x13{left:270.210000px;}
.x1b{left:272.729987px;}
.x16{left:276.149987px;}
.x9{left:288.975000px;}
.x21{left:334.874987px;}
.x1d{left:337.394987px;}
.x1f{left:340.454987px;}
.x7{left:348.735000px;}
.x8{left:367.995000px;}
.xc{left:371.955000px;}
.xb{left:432.975000px;}
.x18{left:446.835000px;}
.xa{left:456.240000px;}
.x20{left:622.724987px;}
.x19{left:633.705000px;}
.x1e{left:634.964987px;}
.x1c{left:654.404987px;}
.x1a{left:742.469987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-1.333333pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.071680pt;}
.ls3{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.762667pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.lsc{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws3{word-spacing:-19.633067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._18{margin-left:-6.704853pt;}
._0{margin-left:-5.152640pt;}
._4{margin-left:-3.697707pt;}
._3{margin-left:-2.071680pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.910507pt;}
._15{width:2.543360pt;}
._16{width:3.810560pt;}
._f{width:5.219200pt;}
._a{width:6.579413pt;}
._8{width:8.356480pt;}
._7{width:9.447893pt;}
._9{width:10.578347pt;}
._6{width:12.316373pt;}
._5{width:14.391253pt;}
._d{width:15.331200pt;}
._17{width:16.280747pt;}
._c{width:17.423360pt;}
._b{width:18.485760pt;}
._1a{width:20.018773pt;}
._19{width:20.982400pt;}
._13{width:22.272213pt;}
._12{width:23.205973pt;}
._14{width:24.413867pt;}
._10{width:25.702613pt;}
._11{width:27.552853pt;}
._e{width:30.430293pt;}
._1c{width:34.740480pt;}
._1b{width:35.856000pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.880000pt;}
.y11f{bottom:2.920000pt;}
.y67{bottom:3.360000pt;}
.ye{bottom:4.000000pt;}
.yd3{bottom:4.160000pt;}
.y66{bottom:5.440000pt;}
.ye4{bottom:6.080000pt;}
.yde{bottom:6.400000pt;}
.y136{bottom:10.240000pt;}
.yf9{bottom:10.560000pt;}
.ye1{bottom:10.586667pt;}
.y120{bottom:10.600000pt;}
.yd2{bottom:11.840000pt;}
.yc{bottom:12.320000pt;}
.y1b{bottom:12.960000pt;}
.y3{bottom:16.960000pt;}
.y134{bottom:17.920000pt;}
.y42{bottom:18.080000pt;}
.y64{bottom:18.240000pt;}
.ye0{bottom:18.266667pt;}
.y11e{bottom:18.280000pt;}
.y18{bottom:19.520000pt;}
.y5{bottom:23.360000pt;}
.y135{bottom:25.600000pt;}
.ye8{bottom:25.920000pt;}
.yb{bottom:26.880000pt;}
.y41{bottom:31.200000pt;}
.y63{bottom:33.600000pt;}
.y17{bottom:34.240000pt;}
.y4{bottom:34.592000pt;}
.y2{bottom:35.712000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:43.360000pt;}
.y40{bottom:44.160000pt;}
.y16{bottom:48.800000pt;}
.ye7{bottom:48.960000pt;}
.y3f{bottom:57.280000pt;}
.y15{bottom:60.160000pt;}
.y62{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y3e{bottom:70.240000pt;}
.y14{bottom:75.200000pt;}
.y61{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y3d{bottom:83.200000pt;}
.y13{bottom:94.720000pt;}
.y60{bottom:94.920000pt;}
.y3c{bottom:96.360000pt;}
.y7{bottom:98.906667pt;}
.y16f{bottom:102.752000pt;}
.y6d{bottom:103.232000pt;}
.y13f{bottom:103.712000pt;}
.y12a{bottom:104.832000pt;}
.ydc{bottom:107.072000pt;}
.ya5{bottom:107.392000pt;}
.y12{bottom:107.520000pt;}
.y3b{bottom:109.320000pt;}
.y5f{bottom:110.280000pt;}
.y106{bottom:115.232000pt;}
.y16e{bottom:118.112000pt;}
.y6c{bottom:118.592000pt;}
.y13e{bottom:119.072000pt;}
.y129{bottom:120.192000pt;}
.y3a{bottom:122.440000pt;}
.ya4{bottom:122.752000pt;}
.ydb{bottom:123.072000pt;}
.y5e{bottom:125.480000pt;}
.y11{bottom:130.400000pt;}
.y105{bottom:130.592000pt;}
.y16d{bottom:133.466667pt;}
.y6b{bottom:133.946667pt;}
.y13d{bottom:134.426667pt;}
.y39{bottom:135.400000pt;}
.y128{bottom:135.546667pt;}
.ya3{bottom:138.106667pt;}
.yda{bottom:139.066667pt;}
.y5d{bottom:140.840000pt;}
.y104{bottom:145.946667pt;}
.y38{bottom:148.360000pt;}
.y16c{bottom:148.826667pt;}
.y6a{bottom:149.306667pt;}
.y10{bottom:149.440000pt;}
.y13c{bottom:149.786667pt;}
.ya2{bottom:154.426667pt;}
.yd9{bottom:155.066667pt;}
.y5c{bottom:156.200000pt;}
.y103{bottom:161.146667pt;}
.y37{bottom:161.480000pt;}
.y127{bottom:163.706667pt;}
.y16b{bottom:164.186667pt;}
.y69{bottom:164.666667pt;}
.y13b{bottom:164.986667pt;}
.ya1{bottom:170.586667pt;}
.yd8{bottom:171.066667pt;}
.y5b{bottom:171.560000pt;}
.y36{bottom:174.440000pt;}
.y102{bottom:176.506667pt;}
.y16a{bottom:179.386667pt;}
.y68{bottom:179.866667pt;}
.ya0{bottom:186.906667pt;}
.y5a{bottom:186.920000pt;}
.yd7{bottom:187.066667pt;}
.y35{bottom:187.400000pt;}
.y101{bottom:191.866667pt;}
.y126{bottom:192.026667pt;}
.y65{bottom:192.346667pt;}
.y13a{bottom:193.306667pt;}
.y169{bottom:194.746667pt;}
.y34{bottom:200.520000pt;}
.y59{bottom:202.280000pt;}
.yd6{bottom:203.066667pt;}
.y9f{bottom:203.226667pt;}
.y1c{bottom:207.866667pt;}
.y139{bottom:208.666667pt;}
.y168{bottom:210.106667pt;}
.y33{bottom:213.480000pt;}
.y58{bottom:217.480000pt;}
.yd5{bottom:219.066667pt;}
.y9e{bottom:219.546667pt;}
.y100{bottom:220.186667pt;}
.y125{bottom:220.346667pt;}
.y32{bottom:226.600000pt;}
.y167{bottom:227.706667pt;}
.y57{bottom:232.840000pt;}
.y138{bottom:234.106667pt;}
.yd4{bottom:235.066667pt;}
.y124{bottom:235.706667pt;}
.y9d{bottom:235.866667pt;}
.y31{bottom:239.560000pt;}
.y166{bottom:245.306667pt;}
.yff{bottom:246.106667pt;}
.y56{bottom:248.200000pt;}
.y123{bottom:248.826667pt;}
.yd1{bottom:251.066667pt;}
.y9c{bottom:252.026667pt;}
.y30{bottom:252.520000pt;}
.yfe{bottom:259.226667pt;}
.y165{bottom:260.666667pt;}
.y55{bottom:263.560000pt;}
.y122{bottom:264.826667pt;}
.y2f{bottom:265.640000pt;}
.y9b{bottom:267.386667pt;}
.y164{bottom:276.026667pt;}
.y2e{bottom:278.600000pt;}
.y54{bottom:278.920000pt;}
.y121{bottom:280.826667pt;}
.y9a{bottom:282.746667pt;}
.yd0{bottom:287.866667pt;}
.yfd{bottom:290.586667pt;}
.y163{bottom:291.386667pt;}
.y2d{bottom:291.560000pt;}
.y53{bottom:294.280000pt;}
.y11d{bottom:296.826667pt;}
.y99{bottom:299.106667pt;}
.y2c{bottom:304.680000pt;}
.yfc{bottom:306.626667pt;}
.y162{bottom:306.786667pt;}
.y52{bottom:309.480000pt;}
.ycf{bottom:313.986667pt;}
.y98{bottom:315.426667pt;}
.y2b{bottom:317.640000pt;}
.y161{bottom:322.146667pt;}
.yfb{bottom:322.626667pt;}
.y51{bottom:324.840000pt;}
.y11c{bottom:328.226667pt;}
.yce{bottom:329.346667pt;}
.y2a{bottom:330.626667pt;}
.y160{bottom:337.346667pt;}
.y50{bottom:340.226667pt;}
.y29{bottom:345.986667pt;}
.y15f{bottom:352.706667pt;}
.yfa{bottom:353.986667pt;}
.ycd{bottom:355.266667pt;}
.y4f{bottom:355.586667pt;}
.y11b{bottom:359.586667pt;}
.y28{bottom:361.346667pt;}
.y97{bottom:362.306667pt;}
.y15e{bottom:368.066667pt;}
.ycc{bottom:370.626667pt;}
.y4e{bottom:370.946667pt;}
.y11a{bottom:375.586667pt;}
.y27{bottom:377.186667pt;}
.y96{bottom:378.626667pt;}
.y15d{bottom:383.426667pt;}
.yf8{bottom:385.346667pt;}
.ycb{bottom:385.986667pt;}
.y4d{bottom:386.306667pt;}
.y119{bottom:391.586667pt;}
.y26{bottom:392.546667pt;}
.y95{bottom:393.986667pt;}
.y15c{bottom:398.786667pt;}
.yca{bottom:401.346667pt;}
.y4c{bottom:401.506667pt;}
.y118{bottom:407.586667pt;}
.y25{bottom:408.066667pt;}
.y94{bottom:409.346667pt;}
.y15b{bottom:413.986667pt;}
.yc9{bottom:416.546667pt;}
.y4b{bottom:416.866667pt;}
.yf7{bottom:419.586667pt;}
.y24{bottom:423.586667pt;}
.y93{bottom:424.546667pt;}
.y15a{bottom:429.346667pt;}
.yc8{bottom:431.906667pt;}
.y4a{bottom:432.226667pt;}
.y190{bottom:435.426667pt;}
.y117{bottom:438.786667pt;}
.y23{bottom:438.946667pt;}
.y92{bottom:439.906667pt;}
.y159{bottom:444.706667pt;}
.yf6{bottom:445.506667pt;}
.yc7{bottom:447.266667pt;}
.y49{bottom:447.586667pt;}
.y18f{bottom:451.746667pt;}
.y22{bottom:454.466667pt;}
.y91{bottom:455.266667pt;}
.y158{bottom:460.066667pt;}
.yf5{bottom:460.866667pt;}
.yc6{bottom:462.626667pt;}
.y48{bottom:462.946667pt;}
.y18e{bottom:467.426667pt;}
.y21{bottom:469.986667pt;}
.y90{bottom:470.626667pt;}
.y116{bottom:473.026667pt;}
.y157{bottom:475.426667pt;}
.yf4{bottom:476.226667pt;}
.yc5{bottom:477.986667pt;}
.y47{bottom:478.146667pt;}
.y18d{bottom:482.786667pt;}
.y20{bottom:485.506667pt;}
.y8f{bottom:485.986667pt;}
.y156{bottom:490.786667pt;}
.yf3{bottom:491.586667pt;}
.yc4{bottom:493.346667pt;}
.y46{bottom:493.506667pt;}
.y18c{bottom:497.986667pt;}
.y115{bottom:499.106667pt;}
.y8e{bottom:501.346667pt;}
.y1f{bottom:501.826667pt;}
.y155{bottom:505.986667pt;}
.yf2{bottom:506.946667pt;}
.yc3{bottom:508.546667pt;}
.y45{bottom:508.866667pt;}
.y18b{bottom:513.346667pt;}
.y137{bottom:513.826667pt;}
.y114{bottom:514.466667pt;}
.y8d{bottom:516.546667pt;}
.yf1{bottom:522.146667pt;}
.yc2{bottom:523.906667pt;}
.y44{bottom:524.226667pt;}
.y1e{bottom:526.146667pt;}
.y18a{bottom:528.706667pt;}
.y113{bottom:529.666667pt;}
.y8c{bottom:531.906667pt;}
.y154{bottom:532.066667pt;}
.yf0{bottom:537.533333pt;}
.yc1{bottom:539.293333pt;}
.y43{bottom:539.586667pt;}
.y1d{bottom:541.986667pt;}
.y189{bottom:544.093333pt;}
.y133{bottom:545.213333pt;}
.y8b{bottom:547.293333pt;}
.y153{bottom:547.453333pt;}
.yef{bottom:552.893333pt;}
.yc0{bottom:554.653333pt;}
.y112{bottom:555.773333pt;}
.y188{bottom:559.453333pt;}
.y8a{bottom:562.653333pt;}
.y152{bottom:562.813333pt;}
.yee{bottom:568.253333pt;}
.ybf{bottom:570.013333pt;}
.y111{bottom:571.133333pt;}
.y187{bottom:574.813333pt;}
.y151{bottom:578.013333pt;}
.y89{bottom:578.973333pt;}
.yed{bottom:583.613333pt;}
.ybe{bottom:585.373333pt;}
.y110{bottom:586.493333pt;}
.y186{bottom:590.013333pt;}
.y150{bottom:593.373333pt;}
.y88{bottom:595.133333pt;}
.ybd{bottom:600.573333pt;}
.yec{bottom:601.213333pt;}
.y10f{bottom:601.693333pt;}
.y132{bottom:604.733333pt;}
.y185{bottom:605.373333pt;}
.y87{bottom:611.453333pt;}
.ybc{bottom:615.933333pt;}
.yeb{bottom:616.573333pt;}
.y10e{bottom:617.053333pt;}
.y14f{bottom:619.453333pt;}
.y184{bottom:620.733333pt;}
.y86{bottom:627.773333pt;}
.yea{bottom:631.133333pt;}
.ybb{bottom:631.293333pt;}
.y10d{bottom:632.413333pt;}
.y131{bottom:633.053333pt;}
.y14e{bottom:634.813333pt;}
.y183{bottom:636.093333pt;}
.y85{bottom:643.133333pt;}
.yba{bottom:646.653333pt;}
.y10c{bottom:647.773333pt;}
.y130{bottom:648.413333pt;}
.y14d{bottom:650.013333pt;}
.y182{bottom:651.453333pt;}
.y84{bottom:659.453333pt;}
.yb9{bottom:662.013333pt;}
.y10b{bottom:663.133333pt;}
.y12f{bottom:663.773333pt;}
.y14c{bottom:665.373333pt;}
.y181{bottom:666.813333pt;}
.yb8{bottom:677.213333pt;}
.y10a{bottom:678.493333pt;}
.y12e{bottom:679.133333pt;}
.y14b{bottom:680.733333pt;}
.y180{bottom:682.013333pt;}
.y83{bottom:685.373333pt;}
.yb7{bottom:692.573333pt;}
.y109{bottom:693.693333pt;}
.y12d{bottom:694.493333pt;}
.y14a{bottom:696.093333pt;}
.y17f{bottom:697.373333pt;}
.y82{bottom:700.733333pt;}
.yb6{bottom:707.933333pt;}
.y108{bottom:709.053333pt;}
.y12c{bottom:709.693333pt;}
.y17e{bottom:712.733333pt;}
.y81{bottom:716.093333pt;}
.y149{bottom:722.013333pt;}
.yb5{bottom:723.293333pt;}
.y17d{bottom:728.093333pt;}
.y107{bottom:734.493333pt;}
.y12b{bottom:735.133333pt;}
.y148{bottom:737.373333pt;}
.yb4{bottom:738.653333pt;}
.y80{bottom:742.013333pt;}
.y17c{bottom:743.453333pt;}
.y147{bottom:752.733333pt;}
.yb3{bottom:754.973333pt;}
.y7f{bottom:757.373333pt;}
.y17b{bottom:758.653333pt;}
.y1a{bottom:759.933333pt;}
.y146{bottom:768.093333pt;}
.yb2{bottom:770.173333pt;}
.y7e{bottom:772.733333pt;}
.y17a{bottom:774.053333pt;}
.y145{bottom:783.493333pt;}
.yb1{bottom:785.573333pt;}
.yf{bottom:785.733333pt;}
.y7d{bottom:788.133333pt;}
.y179{bottom:789.413333pt;}
.y144{bottom:798.693333pt;}
.yb0{bottom:801.893333pt;}
.y178{bottom:804.773333pt;}
.y7c{bottom:814.053333pt;}
.yaf{bottom:817.253333pt;}
.y177{bottom:820.133333pt;}
.y143{bottom:824.773333pt;}
.y7b{bottom:829.413333pt;}
.yae{bottom:833.573333pt;}
.y176{bottom:835.493333pt;}
.y142{bottom:840.133333pt;}
.y7a{bottom:844.773333pt;}
.yad{bottom:848.773333pt;}
.y175{bottom:850.693333pt;}
.y141{bottom:855.493333pt;}
.y79{bottom:860.133333pt;}
.yac{bottom:864.133333pt;}
.y174{bottom:866.053333pt;}
.y140{bottom:870.693333pt;}
.ye9{bottom:871.653333pt;}
.yab{bottom:879.493333pt;}
.y173{bottom:881.413333pt;}
.ye6{bottom:884.773333pt;}
.y78{bottom:886.053333pt;}
.yaa{bottom:894.853333pt;}
.y172{bottom:896.773333pt;}
.y77{bottom:901.413333pt;}
.ya9{bottom:911.173333pt;}
.y171{bottom:912.133333pt;}
.y76{bottom:916.773333pt;}
.ya8{bottom:926.533333pt;}
.y170{bottom:927.493333pt;}
.y75{bottom:932.133333pt;}
.yd{bottom:936.453333pt;}
.ya7{bottom:942.693333pt;}
.ye5{bottom:946.853333pt;}
.y74{bottom:947.493333pt;}
.y6{bottom:954.533333pt;}
.ya6{bottom:958.053333pt;}
.ye3{bottom:969.733333pt;}
.y73{bottom:973.413333pt;}
.y72{bottom:988.773333pt;}
.ye2{bottom:992.133333pt;}
.y71{bottom:1004.133333pt;}
.ydf{bottom:1008.133333pt;}
.y70{bottom:1019.520000pt;}
.y6f{bottom:1034.720000pt;}
.ydd{bottom:1039.520000pt;}
.y6e{bottom:1050.080000pt;}
.hd{height:3.770000pt;}
.h29{height:15.200000pt;}
.h20{height:15.360000pt;}
.h27{height:15.392000pt;}
.h1d{height:15.520000pt;}
.hb{height:17.760000pt;}
.h23{height:21.760000pt;}
.h24{height:22.240000pt;}
.h21{height:22.400000pt;}
.hf{height:24.000000pt;}
.h11{height:25.750000pt;}
.h13{height:25.792000pt;}
.h28{height:30.560000pt;}
.h26{height:30.720000pt;}
.h22{height:30.752000pt;}
.h8{height:32.160000pt;}
.h1a{height:32.411250pt;}
.h1f{height:33.280000pt;}
.h12{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h1e{height:38.672812pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h2a{height:45.440000pt;}
.h9{height:48.000000pt;}
.h2{height:48.512000pt;}
.h10{height:49.148438pt;}
.h2b{height:50.578125pt;}
.h4{height:52.834688pt;}
.h17{height:54.390938pt;}
.he{height:56.160000pt;}
.h3{height:57.667500pt;}
.h5{height:60.288750pt;}
.h25{height:61.440000pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:150.720000pt;}
.h15{height:552.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:127.872000pt;}
.wc{width:165.306667pt;}
.wd{width:165.466667pt;}
.w9{width:175.386667pt;}
.wa{width:486.013333pt;}
.wb{width:493.373333pt;}
.w6{width:529.693333pt;}
.w2{width:598.693333pt;}
.w7{width:657.573333pt;}
.w8{width:661.413333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.xd{left:12.640000pt;}
.x11{left:58.272000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x10{left:83.066667pt;}
.x5{left:87.226667pt;}
.x14{left:96.031988pt;}
.x15{left:120.031988pt;}
.xe{left:139.226667pt;}
.xf{left:165.146667pt;}
.x12{left:167.226667pt;}
.x6{left:192.666667pt;}
.x17{left:231.226667pt;}
.x13{left:240.186667pt;}
.x1b{left:242.426655pt;}
.x16{left:245.466655pt;}
.x9{left:256.866667pt;}
.x21{left:297.666655pt;}
.x1d{left:299.906655pt;}
.x1f{left:302.626655pt;}
.x7{left:309.986667pt;}
.x8{left:327.106667pt;}
.xc{left:330.626667pt;}
.xb{left:384.866667pt;}
.x18{left:397.186667pt;}
.xa{left:405.546667pt;}
.x20{left:553.533322pt;}
.x19{left:563.293333pt;}
.x1e{left:564.413322pt;}
.x1c{left:581.693322pt;}
.x1a{left:659.973322pt;}
.x3{left:663.013333pt;}
}




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