
    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_e27318527de85f86cc96192b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_330ec8caf30310948601587d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_322c5c75f5c841974fafb803.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_64632ff3009e42dcbaa58ce7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5b812e1956d6f5090d04c22a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_15c1dcaef050bf68f295d7de.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d49a4ef9174326e94e4117a0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.759277;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_9c807859ff3d0f72e58f3e9f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_182cb8b36f3cd817f3821d1e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.688477;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_3a68587cce27ae10a802be96.woff')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.800293;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_dcaf5a3f9d5349cfbeabf376.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_008fadf81a9a1ff9eb3dbe01.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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_c30d7e300f0efd0e920492d6.woff')format("woff");}.fff{font-family:fff;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-0.930000px;}
.ls11{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.262200px;}
.ls12{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.085200px;}
.lsb{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.142800px;}
.ls14{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.183600px;}
.ls17{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.315600px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.511800px;}
.ls18{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.869760px;}
.ls15{letter-spacing:25.920000px;}
.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;}
}
.ws13{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-12.186000px;}
.wse{word-spacing:-10.755600px;}
.ws8{word-spacing:-10.527600px;}
.ws5{word-spacing:-10.449240px;}
.ws11{word-spacing:-10.350600px;}
.ws10{word-spacing:-10.213800px;}
.ws6{word-spacing:-10.121040px;}
.ws3{word-spacing:-9.937440px;}
.wsf{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.007440px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-2.119680px;}
._0{margin-left:-1.026000px;}
._1{width:1.356000px;}
._b{width:2.518320px;}
._e{width:3.738720px;}
._8{width:4.968000px;}
._a{width:6.624000px;}
._f{width:7.648080px;}
._9{width:8.677440px;}
._4{width:10.532160px;}
._5{width:11.823120px;}
._2{width:13.350480px;}
._18{width:14.367600px;}
._3{width:15.367680px;}
._11{width:16.602480px;}
._c{width:19.540800px;}
._d{width:20.599200px;}
._12{width:21.715200px;}
._13{width:22.970880px;}
._17{width:24.915360px;}
._1e{width:26.103120px;}
._7{width:27.241440px;}
._6{width:28.266240px;}
._1d{width:29.406240px;}
._15{width:30.672000px;}
._16{width:31.927680px;}
._23{width:33.384960px;}
._14{width:34.776000px;}
._19{width:36.432000px;}
._1a{width:37.512000px;}
._1b{width:38.520000px;}
._1c{width:39.612000px;}
._21{width:41.328000px;}
._22{width:42.666000px;}
._26{width:43.818000px;}
._20{width:45.865680px;}
._1f{width:46.944000px;}
._2f{width:48.384000px;}
._30{width:50.719680px;}
._24{width:54.000000px;}
._25{width:55.596000px;}
._29{width:124.992000px;}
._2a{width:126.936000px;}
._2e{width:140.448000px;}
._2d{width:141.642000px;}
._2c{width:223.848000px;}
._27{width:305.784000px;}
._28{width:307.884000px;}
._2b{width:429.624000px;}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y35{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y33{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y37{bottom:4.680000px;}
.yd8{bottom:9.720000px;}
.y63{bottom:9.900000px;}
.yb1{bottom:21.600000px;}
.ycd{bottom:21.765000px;}
.yb6{bottom:21.780000px;}
.yeb{bottom:21.810000px;}
.yee{bottom:21.945000px;}
.ybc{bottom:21.960000px;}
.yf1{bottom:21.990000px;}
.y3b{bottom:22.680000px;}
.y2{bottom:23.220000px;}
.yc9{bottom:25.380000px;}
.ycc{bottom:29.325000px;}
.yc0{bottom:29.340000px;}
.yba{bottom:29.520000px;}
.yd7{bottom:30.420000px;}
.y144{bottom:31.140000px;}
.y7d{bottom:31.320000px;}
.y62{bottom:31.500000px;}
.y159{bottom:31.680000px;}
.y108{bottom:31.860000px;}
.y133{bottom:32.220000px;}
.yb2{bottom:32.580000px;}
.yb4{bottom:32.760000px;}
.y170{bottom:33.660000px;}
.y38{bottom:37.080000px;}
.y13a{bottom:37.980000px;}
.y30{bottom:38.160000px;}
.y1{bottom:39.060000px;}
.ye9{bottom:40.140000px;}
.yd4{bottom:40.170000px;}
.yce{bottom:40.305000px;}
.yb8{bottom:40.320000px;}
.ye5{bottom:40.350000px;}
.yb0{bottom:43.380000px;}
.yb5{bottom:43.560000px;}
.yc6{bottom:43.740000px;}
.yd0{bottom:51.105000px;}
.ye7{bottom:51.120000px;}
.yc3{bottom:51.150000px;}
.yb9{bottom:51.300000px;}
.yc7{bottom:54.540000px;}
.yd1{bottom:58.665000px;}
.ybe{bottom:58.680000px;}
.yc4{bottom:58.710000px;}
.yed{bottom:58.845000px;}
.ybb{bottom:58.860000px;}
.yf7{bottom:58.905000px;}
.yc8{bottom:62.100000px;}
.yc5{bottom:65.520000px;}
.y132{bottom:112.320000px;}
.y2e{bottom:113.760000px;}
.y186{bottom:126.180000px;}
.y16f{bottom:130.860000px;}
.yf2{bottom:131.400000px;}
.y139{bottom:131.580000px;}
.y99{bottom:132.120000px;}
.yd6{bottom:132.480000px;}
.y2d{bottom:135.900000px;}
.y131{bottom:136.080000px;}
.y61{bottom:137.520000px;}
.yae{bottom:147.420000px;}
.y185{bottom:149.940000px;}
.y16e{bottom:154.620000px;}
.y138{bottom:155.340000px;}
.y98{bottom:156.060000px;}
.yd5{bottom:156.240000px;}
.y2c{bottom:158.220000px;}
.y130{bottom:159.840000px;}
.y60{bottom:161.460000px;}
.yd3{bottom:173.520000px;}
.y184{bottom:173.880000px;}
.y16d{bottom:178.560000px;}
.y97{bottom:179.820000px;}
.y2b{bottom:180.720000px;}
.y1a5{bottom:181.620000px;}
.y12f{bottom:183.600000px;}
.y5f{bottom:185.220000px;}
.yad{bottom:186.120000px;}
.y137{bottom:194.220000px;}
.y183{bottom:197.640000px;}
.y16c{bottom:202.320000px;}
.y2a{bottom:202.680000px;}
.y96{bottom:203.580000px;}
.yf0{bottom:205.020000px;}
.y1a4{bottom:205.380000px;}
.y12e{bottom:207.570000px;}
.y5e{bottom:209.010000px;}
.y136{bottom:218.010000px;}
.y182{bottom:221.430000px;}
.y29{bottom:224.490000px;}
.yac{bottom:225.030000px;}
.y16b{bottom:226.110000px;}
.y1a3{bottom:229.350000px;}
.y12d{bottom:231.330000px;}
.y5d{bottom:232.770000px;}
.y95{bottom:242.490000px;}
.y181{bottom:245.190000px;}
.y28{bottom:247.170000px;}
.yd2{bottom:247.185000px;}
.y16a{bottom:249.870000px;}
.y1b7{bottom:250.410000px;}
.y135{bottom:252.390000px;}
.y1a2{bottom:253.110000px;}
.y12c{bottom:255.090000px;}
.yab{bottom:263.910000px;}
.y94{bottom:266.250000px;}
.y180{bottom:269.130000px;}
.y5c{bottom:271.650000px;}
.y27{bottom:272.550000px;}
.yef{bottom:278.685000px;}
.y12b{bottom:278.850000px;}
.y169{bottom:288.750000px;}
.y1b6{bottom:289.290000px;}
.y93{bottom:290.010000px;}
.y143{bottom:290.910000px;}
.y1a1{bottom:291.810000px;}
.y17f{bottom:292.890000px;}
.y119{bottom:293.790000px;}
.y26{bottom:294.330000px;}
.y5b{bottom:295.410000px;}
.y7c{bottom:301.710000px;}
.yaa{bottom:302.610000px;}
.y12a{bottom:302.790000px;}
.y168{bottom:312.510000px;}
.y92{bottom:313.770000px;}
.y1a0{bottom:315.750000px;}
.y25{bottom:316.110000px;}
.y17e{bottom:316.650000px;}
.y118{bottom:317.550000px;}
.y5a{bottom:319.350000px;}
.ycf{bottom:320.805000px;}
.y7b{bottom:325.470000px;}
.y129{bottom:326.550000px;}
.y1b5{bottom:327.990000px;}
.y167{bottom:336.270000px;}
.y91{bottom:337.710000px;}
.y24{bottom:338.070000px;}
.y19f{bottom:339.510000px;}
.y17d{bottom:340.410000px;}
.y117{bottom:341.310000px;}
.ya9{bottom:341.850000px;}
.y59{bottom:343.110000px;}
.y7a{bottom:349.230000px;}
.y128{bottom:350.310000px;}
.y1b4{bottom:351.930000px;}
.yec{bottom:352.305000px;}
.y158{bottom:352.650000px;}
.y23{bottom:359.850000px;}
.y166{bottom:360.210000px;}
.y90{bottom:361.470000px;}
.y19e{bottom:363.270000px;}
.y17c{bottom:364.350000px;}
.y116{bottom:365.070000px;}
.ya8{bottom:365.610000px;}
.y58{bottom:366.870000px;}
.y79{bottom:372.990000px;}
.y127{bottom:374.070000px;}
.y1b3{bottom:375.690000px;}
.y22{bottom:381.630000px;}
.y165{bottom:383.970000px;}
.y8f{bottom:385.230000px;}
.y17b{bottom:388.110000px;}
.y115{bottom:388.830000px;}
.ya7{bottom:389.370000px;}
.y57{bottom:390.630000px;}
.y157{bottom:391.350000px;}
.ycb{bottom:394.425000px;}
.y78{bottom:396.930000px;}
.y19d{bottom:402.150000px;}
.y21{bottom:403.410000px;}
.y107{bottom:407.370000px;}
.y164{bottom:407.730000px;}
.y8e{bottom:408.990000px;}
.y114{bottom:412.770000px;}
.y126{bottom:412.950000px;}
.ya6{bottom:413.130000px;}
.y1b2{bottom:414.390000px;}
.y156{bottom:415.290000px;}
.y77{bottom:420.690000px;}
.y20{bottom:425.370000px;}
.y19c{bottom:425.910000px;}
.yea{bottom:426.105000px;}
.y17a{bottom:426.810000px;}
.y56{bottom:429.510000px;}
.y163{bottom:431.490000px;}
.y8d{bottom:432.930000px;}
.y113{bottom:436.530000px;}
.y125{bottom:436.710000px;}
.ya5{bottom:437.070000px;}
.y14f{bottom:437.970000px;}
.y1b1{bottom:438.330000px;}
.y155{bottom:439.050000px;}
.y76{bottom:444.495000px;}
.y106{bottom:446.295000px;}
.y1f{bottom:447.195000px;}
.y19b{bottom:449.715000px;}
.y179{bottom:450.795000px;}
.y55{bottom:453.315000px;}
.y162{bottom:455.475000px;}
.y112{bottom:460.335000px;}
.y124{bottom:460.515000px;}
.ya4{bottom:460.875000px;}
.y1b0{bottom:462.135000px;}
.y154{bottom:462.855000px;}
.yca{bottom:468.075000px;}
.y1e{bottom:468.975000px;}
.y105{bottom:470.055000px;}
.y8c{bottom:471.315000px;}
.y178{bottom:474.555000px;}
.y14e{bottom:476.895000px;}
.y54{bottom:477.075000px;}
.y161{bottom:479.235000px;}
.y75{bottom:483.375000px;}
.y111{bottom:484.095000px;}
.y123{bottom:484.455000px;}
.ya3{bottom:484.635000px;}
.y153{bottom:486.615000px;}
.y19a{bottom:488.595000px;}
.y1d{bottom:490.755000px;}
.y104{bottom:493.815000px;}
.y177{bottom:498.315000px;}
.ye8{bottom:499.755000px;}
.y14d{bottom:500.655000px;}
.y53{bottom:501.015000px;}
.y160{bottom:502.995000px;}
.y74{bottom:507.135000px;}
.y110{bottom:508.035000px;}
.y122{bottom:508.215000px;}
.ya2{bottom:508.395000px;}
.y8b{bottom:510.555000px;}
.y199{bottom:512.355000px;}
.y1c{bottom:512.535000px;}
.y103{bottom:517.575000px;}
.y176{bottom:522.075000px;}
.y14c{bottom:524.415000px;}
.y52{bottom:524.775000px;}
.y15f{bottom:526.755000px;}
.y73{bottom:530.895000px;}
.y10f{bottom:531.795000px;}
.y121{bottom:531.975000px;}
.ya1{bottom:532.335000px;}
.y8a{bottom:534.315000px;}
.y1b{bottom:534.495000px;}
.y198{bottom:536.115000px;}
.y102{bottom:541.515000px;}
.y175{bottom:546.015000px;}
.y14b{bottom:548.355000px;}
.y51{bottom:548.535000px;}
.y15e{bottom:550.695000px;}
.y72{bottom:554.655000px;}
.y10e{bottom:555.555000px;}
.y120{bottom:555.735000px;}
.ya0{bottom:556.095000px;}
.y1a{bottom:556.275000px;}
.y89{bottom:558.075000px;}
.y101{bottom:565.275000px;}
.y174{bottom:569.775000px;}
.y14a{bottom:572.115000px;}
.y50{bottom:572.295000px;}
.ye6{bottom:573.375000px;}
.y15d{bottom:574.455000px;}
.y197{bottom:574.995000px;}
.y19{bottom:578.055000px;}
.y71{bottom:578.595000px;}
.y10d{bottom:579.315000px;}
.y11f{bottom:579.495000px;}
.y9f{bottom:579.855000px;}
.y88{bottom:581.835000px;}
.y100{bottom:589.035000px;}
.y173{bottom:593.535000px;}
.y149{bottom:595.875000px;}
.y4f{bottom:596.055000px;}
.y15c{bottom:598.215000px;}
.y196{bottom:598.755000px;}
.y18{bottom:599.835000px;}
.y10c{bottom:603.255000px;}
.y11e{bottom:603.435000px;}
.y9e{bottom:603.615000px;}
.y152{bottom:605.595000px;}
.y87{bottom:605.775000px;}
.y1af{bottom:611.175000px;}
.yff{bottom:612.795000px;}
.y70{bottom:617.295000px;}
.y148{bottom:619.635000px;}
.y17{bottom:621.795000px;}
.y195{bottom:622.515000px;}
.y10b{bottom:627.015000px;}
.y11d{bottom:627.195000px;}
.y9d{bottom:627.555000px;}
.yc2{bottom:628.995000px;}
.y86{bottom:629.535000px;}
.y4e{bottom:634.575000px;}
.y1ae{bottom:634.935000px;}
.yfe{bottom:636.735000px;}
.y6f{bottom:641.055000px;}
.y16{bottom:643.575000px;}
.ye4{bottom:646.995000px;}
.y11c{bottom:650.955000px;}
.y9c{bottom:651.315000px;}
.y85{bottom:653.295000px;}
.y147{bottom:658.515000px;}
.y1ad{bottom:658.695000px;}
.yfd{bottom:660.495000px;}
.y194{bottom:661.395000px;}
.y6e{bottom:664.995000px;}
.y15{bottom:665.355000px;}
.y10a{bottom:665.715000px;}
.y4d{bottom:673.455000px;}
.y15b{bottom:675.825000px;}
.y84{bottom:677.085000px;}
.y146{bottom:682.305000px;}
.yfc{bottom:684.285000px;}
.y193{bottom:685.185000px;}
.y14{bottom:687.165000px;}
.y6d{bottom:688.785000px;}
.y11b{bottom:689.865000px;}
.y9b{bottom:690.045000px;}
.y1ac{bottom:697.605000px;}
.y109{bottom:700.305000px;}
.y83{bottom:701.025000px;}
.yc1{bottom:702.645000px;}
.y134{bottom:708.045000px;}
.y192{bottom:708.945000px;}
.y15a{bottom:710.385000px;}
.y4c{bottom:712.545000px;}
.y151{bottom:715.965000px;}
.y145{bottom:716.865000px;}
.y13{bottom:718.125000px;}
.y142{bottom:718.845000px;}
.ye3{bottom:721.365000px;}
.yfb{bottom:723.165000px;}
.y11a{bottom:724.245000px;}
.y9a{bottom:724.605000px;}
.y82{bottom:724.785000px;}
.y191{bottom:732.705000px;}
.y4b{bottom:736.305000px;}
.y12{bottom:740.805000px;}
.y141{bottom:742.605000px;}
.y1ab{bottom:745.125000px;}
.yfa{bottom:746.925000px;}
.y81{bottom:748.545000px;}
.y150{bottom:750.345000px;}
.y4a{bottom:760.245000px;}
.y11{bottom:762.945000px;}
.yf9{bottom:764.025000px;}
.ye2{bottom:766.365000px;}
.y1aa{bottom:769.065000px;}
.y190{bottom:771.225000px;}
.y80{bottom:772.305000px;}
.y172{bottom:774.825000px;}
.y6c{bottom:775.185000px;}
.ybf{bottom:776.265000px;}
.y10{bottom:782.745000px;}
.ye1{bottom:790.125000px;}
.y49{bottom:798.945000px;}
.yf8{bottom:800.925000px;}
.yf{bottom:802.185000px;}
.y1a9{bottom:807.765000px;}
.y18f{bottom:810.465000px;}
.y7f{bottom:811.185000px;}
.y140{bottom:814.065000px;}
.ye{bottom:822.525000px;}
.y48{bottom:822.705000px;}
.ye0{bottom:829.005000px;}
.y1a8{bottom:831.525000px;}
.y18e{bottom:834.225000px;}
.y13f{bottom:837.825000px;}
.yd{bottom:838.725000px;}
.y7e{bottom:845.565000px;}
.y47{bottom:846.645000px;}
.ybd{bottom:849.885000px;}
.ydf{bottom:852.765000px;}
.y1a7{bottom:855.465000px;}
.yf6{bottom:859.425000px;}
.y13e{bottom:861.585000px;}
.yc{bottom:861.765000px;}
.y46{bottom:870.405000px;}
.y18d{bottom:872.925000px;}
.yde{bottom:876.525000px;}
.yb{bottom:879.225000px;}
.y13d{bottom:885.345000px;}
.y45{bottom:894.165000px;}
.y18c{bottom:896.865000px;}
.ya{bottom:899.925000px;}
.ydd{bottom:900.465000px;}
.y13c{bottom:909.285000px;}
.y44{bottom:917.970000px;}
.y18b{bottom:920.670000px;}
.yb7{bottom:923.550000px;}
.ydc{bottom:924.270000px;}
.y13b{bottom:933.090000px;}
.yf5{bottom:933.270000px;}
.y9{bottom:940.650000px;}
.y43{bottom:941.910000px;}
.y18a{bottom:944.430000px;}
.ydb{bottom:948.030000px;}
.y171{bottom:956.850000px;}
.y42{bottom:965.670000px;}
.yda{bottom:971.790000px;}
.y8{bottom:977.010000px;}
.y6b{bottom:980.250000px;}
.y1a6{bottom:980.610000px;}
.y189{bottom:983.310000px;}
.yd9{bottom:995.730000px;}
.yb3{bottom:997.350000px;}
.y41{bottom:1004.370000px;}
.y7{bottom:1006.350000px;}
.yf4{bottom:1006.890000px;}
.y6a{bottom:1019.490000px;}
.y188{bottom:1022.010000px;}
.y32{bottom:1026.900000px;}
.y36{bottom:1027.620000px;}
.y40{bottom:1028.310000px;}
.y34{bottom:1029.420000px;}
.y6{bottom:1039.110000px;}
.y69{bottom:1043.250000px;}
.y3f{bottom:1052.070000px;}
.yaf{bottom:1056.570000px;}
.y187{bottom:1060.890000px;}
.y68{bottom:1067.010000px;}
.y3e{bottom:1075.830000px;}
.yf3{bottom:1080.510000px;}
.y5{bottom:1085.730000px;}
.y67{bottom:1090.950000px;}
.y3d{bottom:1099.590000px;}
.y66{bottom:1114.710000px;}
.y4{bottom:1132.530000px;}
.y3c{bottom:1138.110000px;}
.y65{bottom:1138.470000px;}
.y3a{bottom:1183.500000px;}
.y64{bottom:1194.660000px;}
.y39{bottom:1197.540000px;}
.y2f{bottom:1207.980000px;}
.y31{bottom:1228.140000px;}
.h13{height:11.700000px;}
.h12{height:14.400000px;}
.h2d{height:26.280000px;}
.h1a{height:26.460000px;}
.h5{height:36.281250px;}
.h10{height:36.571289px;}
.h2b{height:36.900000px;}
.h11{height:38.464805px;}
.h16{height:40.843828px;}
.h2{height:45.720703px;}
.h1e{height:46.736719px;}
.ha{height:49.356562px;}
.h15{height:49.500000px;}
.hf{height:49.680000px;}
.h14{height:52.817344px;}
.h1b{height:53.709961px;}
.he{height:56.084062px;}
.h1f{height:58.485000px;}
.h2f{height:58.500000px;}
.h9{height:58.651172px;}
.h1d{height:58.665000px;}
.h8{height:60.226875px;}
.h1c{height:64.546875px;}
.h7{height:64.978594px;}
.hd{height:65.010937px;}
.hb{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:66.757500px;}
.h19{height:70.628906px;}
.h18{height:70.664062px;}
.h20{height:71.225156px;}
.h25{height:71.345156px;}
.h28{height:71.405156px;}
.h17{height:72.562500px;}
.h29{height:73.605000px;}
.h2c{height:73.618500px;}
.h23{height:73.620000px;}
.h27{height:73.641000px;}
.h22{height:73.642500px;}
.h24{height:73.650000px;}
.h2a{height:73.656000px;}
.h21{height:73.785000px;}
.h2e{height:73.822500px;}
.h26{height:80.445000px;}
.h6{height:91.441406px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:36.540000px;}
.w8{width:36.720000px;}
.w14{width:53.985000px;}
.w13{width:60.645000px;}
.wd{width:60.825000px;}
.w16{width:66.225000px;}
.wc{width:67.485000px;}
.wb{width:74.196000px;}
.w12{width:74.376000px;}
.wf{width:79.725000px;}
.we{width:87.681000px;}
.w15{width:94.521000px;}
.w3{width:105.300000px;}
.w6{width:106.380000px;}
.w2{width:107.100000px;}
.w9{width:125.494500px;}
.w11{width:128.160000px;}
.w4{width:133.380000px;}
.w5{width:167.580000px;}
.wa{width:232.395000px;}
.w10{width:249.913500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.098500px;}
.xd{left:10.620000px;}
.x18{left:11.700000px;}
.xf{left:15.630000px;}
.x13{left:27.690000px;}
.x1f{left:82.621500px;}
.x3{left:108.036000px;}
.x1{left:110.196000px;}
.x14{left:114.696000px;}
.x19{left:120.096000px;}
.x10{left:121.500000px;}
.x36{left:128.916000px;}
.x2f{left:151.590000px;}
.x16{left:158.790000px;}
.x3d{left:162.030000px;}
.x4{left:165.450000px;}
.x2{left:190.110000px;}
.x31{left:191.550000px;}
.x1e{left:202.350000px;}
.x21{left:208.125000px;}
.x5{left:220.530000px;}
.x3c{left:234.750000px;}
.x33{left:250.050000px;}
.x1c{left:266.250000px;}
.x3a{left:273.270000px;}
.x15{left:317.955000px;}
.x27{left:332.535000px;}
.x37{left:335.775000px;}
.xa{left:349.635000px;}
.xc{left:355.935000px;}
.x8{left:385.095000px;}
.x11{left:391.680000px;}
.xb{left:411.015000px;}
.x6{left:435.135000px;}
.x22{left:440.535000px;}
.x7{left:446.475000px;}
.x28{left:460.695000px;}
.x23{left:514.740000px;}
.x29{left:535.080000px;}
.x9{left:544.425000px;}
.x24{left:582.240000px;}
.x2a{left:595.740000px;}
.x25{left:643.080000px;}
.x2b{left:649.740000px;}
.xe{left:685.800000px;}
.x26{left:730.770000px;}
.x2c{left:744.270000px;}
.x30{left:752.730000px;}
.x1b{left:763.890000px;}
.x39{left:772.350000px;}
.x35{left:779.730000px;}
.x12{left:786.600000px;}
.x2e{left:789.810000px;}
.x3b{left:796.650000px;}
.x32{left:811.230000px;}
.x1d{left:817.350000px;}
.x17{left:832.680000px;}
.x38{left:835.200000px;}
.x1a{left:836.640000px;}
.x2d{left:838.260000px;}
.x34{left:840.240000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.826667pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.233067pt;}
.ls12{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.075733pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.126933pt;}
.ls14{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.163200pt;}
.ls17{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.280533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.454933pt;}
.ls18{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.773120pt;}
.ls15{letter-spacing:23.040000pt;}
.ws13{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-10.832000pt;}
.wse{word-spacing:-9.560533pt;}
.ws8{word-spacing:-9.357867pt;}
.ws5{word-spacing:-9.288213pt;}
.ws11{word-spacing:-9.200533pt;}
.ws10{word-spacing:-9.078933pt;}
.ws6{word-spacing:-8.996480pt;}
.ws3{word-spacing:-8.833280pt;}
.wsf{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.006613pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-1.884160pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.205333pt;}
._b{width:2.238507pt;}
._e{width:3.323307pt;}
._8{width:4.416000pt;}
._a{width:5.888000pt;}
._f{width:6.798293pt;}
._9{width:7.713280pt;}
._4{width:9.361920pt;}
._5{width:10.509440pt;}
._2{width:11.867093pt;}
._18{width:12.771200pt;}
._3{width:13.660160pt;}
._11{width:14.757760pt;}
._c{width:17.369600pt;}
._d{width:18.310400pt;}
._12{width:19.302400pt;}
._13{width:20.418560pt;}
._17{width:22.146987pt;}
._1e{width:23.202773pt;}
._7{width:24.214613pt;}
._6{width:25.125547pt;}
._1d{width:26.138880pt;}
._15{width:27.264000pt;}
._16{width:28.380160pt;}
._23{width:29.675520pt;}
._14{width:30.912000pt;}
._19{width:32.384000pt;}
._1a{width:33.344000pt;}
._1b{width:34.240000pt;}
._1c{width:35.210667pt;}
._21{width:36.736000pt;}
._22{width:37.925333pt;}
._26{width:38.949333pt;}
._20{width:40.769493pt;}
._1f{width:41.728000pt;}
._2f{width:43.008000pt;}
._30{width:45.084160pt;}
._24{width:48.000000pt;}
._25{width:49.418667pt;}
._29{width:111.104000pt;}
._2a{width:112.832000pt;}
._2e{width:124.842667pt;}
._2d{width:125.904000pt;}
._2c{width:198.976000pt;}
._27{width:271.808000pt;}
._28{width:273.674667pt;}
._2b{width:381.888000pt;}
.fs3{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y35{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y37{bottom:4.160000pt;}
.yd8{bottom:8.640000pt;}
.y63{bottom:8.800000pt;}
.yb1{bottom:19.200000pt;}
.ycd{bottom:19.346667pt;}
.yb6{bottom:19.360000pt;}
.yeb{bottom:19.386667pt;}
.yee{bottom:19.506667pt;}
.ybc{bottom:19.520000pt;}
.yf1{bottom:19.546667pt;}
.y3b{bottom:20.160000pt;}
.y2{bottom:20.640000pt;}
.yc9{bottom:22.560000pt;}
.ycc{bottom:26.066667pt;}
.yc0{bottom:26.080000pt;}
.yba{bottom:26.240000pt;}
.yd7{bottom:27.040000pt;}
.y144{bottom:27.680000pt;}
.y7d{bottom:27.840000pt;}
.y62{bottom:28.000000pt;}
.y159{bottom:28.160000pt;}
.y108{bottom:28.320000pt;}
.y133{bottom:28.640000pt;}
.yb2{bottom:28.960000pt;}
.yb4{bottom:29.120000pt;}
.y170{bottom:29.920000pt;}
.y38{bottom:32.960000pt;}
.y13a{bottom:33.760000pt;}
.y30{bottom:33.920000pt;}
.y1{bottom:34.720000pt;}
.ye9{bottom:35.680000pt;}
.yd4{bottom:35.706667pt;}
.yce{bottom:35.826667pt;}
.yb8{bottom:35.840000pt;}
.ye5{bottom:35.866667pt;}
.yb0{bottom:38.560000pt;}
.yb5{bottom:38.720000pt;}
.yc6{bottom:38.880000pt;}
.yd0{bottom:45.426667pt;}
.ye7{bottom:45.440000pt;}
.yc3{bottom:45.466667pt;}
.yb9{bottom:45.600000pt;}
.yc7{bottom:48.480000pt;}
.yd1{bottom:52.146667pt;}
.ybe{bottom:52.160000pt;}
.yc4{bottom:52.186667pt;}
.yed{bottom:52.306667pt;}
.ybb{bottom:52.320000pt;}
.yf7{bottom:52.360000pt;}
.yc8{bottom:55.200000pt;}
.yc5{bottom:58.240000pt;}
.y132{bottom:99.840000pt;}
.y2e{bottom:101.120000pt;}
.y186{bottom:112.160000pt;}
.y16f{bottom:116.320000pt;}
.yf2{bottom:116.800000pt;}
.y139{bottom:116.960000pt;}
.y99{bottom:117.440000pt;}
.yd6{bottom:117.760000pt;}
.y2d{bottom:120.800000pt;}
.y131{bottom:120.960000pt;}
.y61{bottom:122.240000pt;}
.yae{bottom:131.040000pt;}
.y185{bottom:133.280000pt;}
.y16e{bottom:137.440000pt;}
.y138{bottom:138.080000pt;}
.y98{bottom:138.720000pt;}
.yd5{bottom:138.880000pt;}
.y2c{bottom:140.640000pt;}
.y130{bottom:142.080000pt;}
.y60{bottom:143.520000pt;}
.yd3{bottom:154.240000pt;}
.y184{bottom:154.560000pt;}
.y16d{bottom:158.720000pt;}
.y97{bottom:159.840000pt;}
.y2b{bottom:160.640000pt;}
.y1a5{bottom:161.440000pt;}
.y12f{bottom:163.200000pt;}
.y5f{bottom:164.640000pt;}
.yad{bottom:165.440000pt;}
.y137{bottom:172.640000pt;}
.y183{bottom:175.680000pt;}
.y16c{bottom:179.840000pt;}
.y2a{bottom:180.160000pt;}
.y96{bottom:180.960000pt;}
.yf0{bottom:182.240000pt;}
.y1a4{bottom:182.560000pt;}
.y12e{bottom:184.506667pt;}
.y5e{bottom:185.786667pt;}
.y136{bottom:193.786667pt;}
.y182{bottom:196.826667pt;}
.y29{bottom:199.546667pt;}
.yac{bottom:200.026667pt;}
.y16b{bottom:200.986667pt;}
.y1a3{bottom:203.866667pt;}
.y12d{bottom:205.626667pt;}
.y5d{bottom:206.906667pt;}
.y95{bottom:215.546667pt;}
.y181{bottom:217.946667pt;}
.y28{bottom:219.706667pt;}
.yd2{bottom:219.720000pt;}
.y16a{bottom:222.106667pt;}
.y1b7{bottom:222.586667pt;}
.y135{bottom:224.346667pt;}
.y1a2{bottom:224.986667pt;}
.y12c{bottom:226.746667pt;}
.yab{bottom:234.586667pt;}
.y94{bottom:236.666667pt;}
.y180{bottom:239.226667pt;}
.y5c{bottom:241.466667pt;}
.y27{bottom:242.266667pt;}
.yef{bottom:247.720000pt;}
.y12b{bottom:247.866667pt;}
.y169{bottom:256.666667pt;}
.y1b6{bottom:257.146667pt;}
.y93{bottom:257.786667pt;}
.y143{bottom:258.586667pt;}
.y1a1{bottom:259.386667pt;}
.y17f{bottom:260.346667pt;}
.y119{bottom:261.146667pt;}
.y26{bottom:261.626667pt;}
.y5b{bottom:262.586667pt;}
.y7c{bottom:268.186667pt;}
.yaa{bottom:268.986667pt;}
.y12a{bottom:269.146667pt;}
.y168{bottom:277.786667pt;}
.y92{bottom:278.906667pt;}
.y1a0{bottom:280.666667pt;}
.y25{bottom:280.986667pt;}
.y17e{bottom:281.466667pt;}
.y118{bottom:282.266667pt;}
.y5a{bottom:283.866667pt;}
.ycf{bottom:285.160000pt;}
.y7b{bottom:289.306667pt;}
.y129{bottom:290.266667pt;}
.y1b5{bottom:291.546667pt;}
.y167{bottom:298.906667pt;}
.y91{bottom:300.186667pt;}
.y24{bottom:300.506667pt;}
.y19f{bottom:301.786667pt;}
.y17d{bottom:302.586667pt;}
.y117{bottom:303.386667pt;}
.ya9{bottom:303.866667pt;}
.y59{bottom:304.986667pt;}
.y7a{bottom:310.426667pt;}
.y128{bottom:311.386667pt;}
.y1b4{bottom:312.826667pt;}
.yec{bottom:313.160000pt;}
.y158{bottom:313.466667pt;}
.y23{bottom:319.866667pt;}
.y166{bottom:320.186667pt;}
.y90{bottom:321.306667pt;}
.y19e{bottom:322.906667pt;}
.y17c{bottom:323.866667pt;}
.y116{bottom:324.506667pt;}
.ya8{bottom:324.986667pt;}
.y58{bottom:326.106667pt;}
.y79{bottom:331.546667pt;}
.y127{bottom:332.506667pt;}
.y1b3{bottom:333.946667pt;}
.y22{bottom:339.226667pt;}
.y165{bottom:341.306667pt;}
.y8f{bottom:342.426667pt;}
.y17b{bottom:344.986667pt;}
.y115{bottom:345.626667pt;}
.ya7{bottom:346.106667pt;}
.y57{bottom:347.226667pt;}
.y157{bottom:347.866667pt;}
.ycb{bottom:350.600000pt;}
.y78{bottom:352.826667pt;}
.y19d{bottom:357.466667pt;}
.y21{bottom:358.586667pt;}
.y107{bottom:362.106667pt;}
.y164{bottom:362.426667pt;}
.y8e{bottom:363.546667pt;}
.y114{bottom:366.906667pt;}
.y126{bottom:367.066667pt;}
.ya6{bottom:367.226667pt;}
.y1b2{bottom:368.346667pt;}
.y156{bottom:369.146667pt;}
.y77{bottom:373.946667pt;}
.y20{bottom:378.106667pt;}
.y19c{bottom:378.586667pt;}
.yea{bottom:378.760000pt;}
.y17a{bottom:379.386667pt;}
.y56{bottom:381.786667pt;}
.y163{bottom:383.546667pt;}
.y8d{bottom:384.826667pt;}
.y113{bottom:388.026667pt;}
.y125{bottom:388.186667pt;}
.ya5{bottom:388.506667pt;}
.y14f{bottom:389.306667pt;}
.y1b1{bottom:389.626667pt;}
.y155{bottom:390.266667pt;}
.y76{bottom:395.106667pt;}
.y106{bottom:396.706667pt;}
.y1f{bottom:397.506667pt;}
.y19b{bottom:399.746667pt;}
.y179{bottom:400.706667pt;}
.y55{bottom:402.946667pt;}
.y162{bottom:404.866667pt;}
.y112{bottom:409.186667pt;}
.y124{bottom:409.346667pt;}
.ya4{bottom:409.666667pt;}
.y1b0{bottom:410.786667pt;}
.y154{bottom:411.426667pt;}
.yca{bottom:416.066667pt;}
.y1e{bottom:416.866667pt;}
.y105{bottom:417.826667pt;}
.y8c{bottom:418.946667pt;}
.y178{bottom:421.826667pt;}
.y14e{bottom:423.906667pt;}
.y54{bottom:424.066667pt;}
.y161{bottom:425.986667pt;}
.y75{bottom:429.666667pt;}
.y111{bottom:430.306667pt;}
.y123{bottom:430.626667pt;}
.ya3{bottom:430.786667pt;}
.y153{bottom:432.546667pt;}
.y19a{bottom:434.306667pt;}
.y1d{bottom:436.226667pt;}
.y104{bottom:438.946667pt;}
.y177{bottom:442.946667pt;}
.ye8{bottom:444.226667pt;}
.y14d{bottom:445.026667pt;}
.y53{bottom:445.346667pt;}
.y160{bottom:447.106667pt;}
.y74{bottom:450.786667pt;}
.y110{bottom:451.586667pt;}
.y122{bottom:451.746667pt;}
.ya2{bottom:451.906667pt;}
.y8b{bottom:453.826667pt;}
.y199{bottom:455.426667pt;}
.y1c{bottom:455.586667pt;}
.y103{bottom:460.066667pt;}
.y176{bottom:464.066667pt;}
.y14c{bottom:466.146667pt;}
.y52{bottom:466.466667pt;}
.y15f{bottom:468.226667pt;}
.y73{bottom:471.906667pt;}
.y10f{bottom:472.706667pt;}
.y121{bottom:472.866667pt;}
.ya1{bottom:473.186667pt;}
.y8a{bottom:474.946667pt;}
.y1b{bottom:475.106667pt;}
.y198{bottom:476.546667pt;}
.y102{bottom:481.346667pt;}
.y175{bottom:485.346667pt;}
.y14b{bottom:487.426667pt;}
.y51{bottom:487.586667pt;}
.y15e{bottom:489.506667pt;}
.y72{bottom:493.026667pt;}
.y10e{bottom:493.826667pt;}
.y120{bottom:493.986667pt;}
.ya0{bottom:494.306667pt;}
.y1a{bottom:494.466667pt;}
.y89{bottom:496.066667pt;}
.y101{bottom:502.466667pt;}
.y174{bottom:506.466667pt;}
.y14a{bottom:508.546667pt;}
.y50{bottom:508.706667pt;}
.ye6{bottom:509.666667pt;}
.y15d{bottom:510.626667pt;}
.y197{bottom:511.106667pt;}
.y19{bottom:513.826667pt;}
.y71{bottom:514.306667pt;}
.y10d{bottom:514.946667pt;}
.y11f{bottom:515.106667pt;}
.y9f{bottom:515.426667pt;}
.y88{bottom:517.186667pt;}
.y100{bottom:523.586667pt;}
.y173{bottom:527.586667pt;}
.y149{bottom:529.666667pt;}
.y4f{bottom:529.826667pt;}
.y15c{bottom:531.746667pt;}
.y196{bottom:532.226667pt;}
.y18{bottom:533.186667pt;}
.y10c{bottom:536.226667pt;}
.y11e{bottom:536.386667pt;}
.y9e{bottom:536.546667pt;}
.y152{bottom:538.306667pt;}
.y87{bottom:538.466667pt;}
.y1af{bottom:543.266667pt;}
.yff{bottom:544.706667pt;}
.y70{bottom:548.706667pt;}
.y148{bottom:550.786667pt;}
.y17{bottom:552.706667pt;}
.y195{bottom:553.346667pt;}
.y10b{bottom:557.346667pt;}
.y11d{bottom:557.506667pt;}
.y9d{bottom:557.826667pt;}
.yc2{bottom:559.106667pt;}
.y86{bottom:559.586667pt;}
.y4e{bottom:564.066667pt;}
.y1ae{bottom:564.386667pt;}
.yfe{bottom:565.986667pt;}
.y6f{bottom:569.826667pt;}
.y16{bottom:572.066667pt;}
.ye4{bottom:575.106667pt;}
.y11c{bottom:578.626667pt;}
.y9c{bottom:578.946667pt;}
.y85{bottom:580.706667pt;}
.y147{bottom:585.346667pt;}
.y1ad{bottom:585.506667pt;}
.yfd{bottom:587.106667pt;}
.y194{bottom:587.906667pt;}
.y6e{bottom:591.106667pt;}
.y15{bottom:591.426667pt;}
.y10a{bottom:591.746667pt;}
.y4d{bottom:598.626667pt;}
.y15b{bottom:600.733333pt;}
.y84{bottom:601.853333pt;}
.y146{bottom:606.493333pt;}
.yfc{bottom:608.253333pt;}
.y193{bottom:609.053333pt;}
.y14{bottom:610.813333pt;}
.y6d{bottom:612.253333pt;}
.y11b{bottom:613.213333pt;}
.y9b{bottom:613.373333pt;}
.y1ac{bottom:620.093333pt;}
.y109{bottom:622.493333pt;}
.y83{bottom:623.133333pt;}
.yc1{bottom:624.573333pt;}
.y134{bottom:629.373333pt;}
.y192{bottom:630.173333pt;}
.y15a{bottom:631.453333pt;}
.y4c{bottom:633.373333pt;}
.y151{bottom:636.413333pt;}
.y145{bottom:637.213333pt;}
.y13{bottom:638.333333pt;}
.y142{bottom:638.973333pt;}
.ye3{bottom:641.213333pt;}
.yfb{bottom:642.813333pt;}
.y11a{bottom:643.773333pt;}
.y9a{bottom:644.093333pt;}
.y82{bottom:644.253333pt;}
.y191{bottom:651.293333pt;}
.y4b{bottom:654.493333pt;}
.y12{bottom:658.493333pt;}
.y141{bottom:660.093333pt;}
.y1ab{bottom:662.333333pt;}
.yfa{bottom:663.933333pt;}
.y81{bottom:665.373333pt;}
.y150{bottom:666.973333pt;}
.y4a{bottom:675.773333pt;}
.y11{bottom:678.173333pt;}
.yf9{bottom:679.133333pt;}
.ye2{bottom:681.213333pt;}
.y1aa{bottom:683.613333pt;}
.y190{bottom:685.533333pt;}
.y80{bottom:686.493333pt;}
.y172{bottom:688.733333pt;}
.y6c{bottom:689.053333pt;}
.ybf{bottom:690.013333pt;}
.y10{bottom:695.773333pt;}
.ye1{bottom:702.333333pt;}
.y49{bottom:710.173333pt;}
.yf8{bottom:711.933333pt;}
.yf{bottom:713.053333pt;}
.y1a9{bottom:718.013333pt;}
.y18f{bottom:720.413333pt;}
.y7f{bottom:721.053333pt;}
.y140{bottom:723.613333pt;}
.ye{bottom:731.133333pt;}
.y48{bottom:731.293333pt;}
.ye0{bottom:736.893333pt;}
.y1a8{bottom:739.133333pt;}
.y18e{bottom:741.533333pt;}
.y13f{bottom:744.733333pt;}
.yd{bottom:745.533333pt;}
.y7e{bottom:751.613333pt;}
.y47{bottom:752.573333pt;}
.ybd{bottom:755.453333pt;}
.ydf{bottom:758.013333pt;}
.y1a7{bottom:760.413333pt;}
.yf6{bottom:763.933333pt;}
.y13e{bottom:765.853333pt;}
.yc{bottom:766.013333pt;}
.y46{bottom:773.693333pt;}
.y18d{bottom:775.933333pt;}
.yde{bottom:779.133333pt;}
.yb{bottom:781.533333pt;}
.y13d{bottom:786.973333pt;}
.y45{bottom:794.813333pt;}
.y18c{bottom:797.213333pt;}
.ya{bottom:799.933333pt;}
.ydd{bottom:800.413333pt;}
.y13c{bottom:808.253333pt;}
.y44{bottom:815.973333pt;}
.y18b{bottom:818.373333pt;}
.yb7{bottom:820.933333pt;}
.ydc{bottom:821.573333pt;}
.y13b{bottom:829.413333pt;}
.yf5{bottom:829.573333pt;}
.y9{bottom:836.133333pt;}
.y43{bottom:837.253333pt;}
.y18a{bottom:839.493333pt;}
.ydb{bottom:842.693333pt;}
.y171{bottom:850.533333pt;}
.y42{bottom:858.373333pt;}
.yda{bottom:863.813333pt;}
.y8{bottom:868.453333pt;}
.y6b{bottom:871.333333pt;}
.y1a6{bottom:871.653333pt;}
.y189{bottom:874.053333pt;}
.yd9{bottom:885.093333pt;}
.yb3{bottom:886.533333pt;}
.y41{bottom:892.773333pt;}
.y7{bottom:894.533333pt;}
.yf4{bottom:895.013333pt;}
.y6a{bottom:906.213333pt;}
.y188{bottom:908.453333pt;}
.y32{bottom:912.800000pt;}
.y36{bottom:913.440000pt;}
.y40{bottom:914.053333pt;}
.y34{bottom:915.040000pt;}
.y6{bottom:923.653333pt;}
.y69{bottom:927.333333pt;}
.y3f{bottom:935.173333pt;}
.yaf{bottom:939.173333pt;}
.y187{bottom:943.013333pt;}
.y68{bottom:948.453333pt;}
.y3e{bottom:956.293333pt;}
.yf3{bottom:960.453333pt;}
.y5{bottom:965.093333pt;}
.y67{bottom:969.733333pt;}
.y3d{bottom:977.413333pt;}
.y66{bottom:990.853333pt;}
.y4{bottom:1006.693333pt;}
.y3c{bottom:1011.653333pt;}
.y65{bottom:1011.973333pt;}
.y3a{bottom:1052.000000pt;}
.y64{bottom:1061.920000pt;}
.y39{bottom:1064.480000pt;}
.y2f{bottom:1073.760000pt;}
.y31{bottom:1091.680000pt;}
.h13{height:10.400000pt;}
.h12{height:12.800000pt;}
.h2d{height:23.360000pt;}
.h1a{height:23.520000pt;}
.h5{height:32.250000pt;}
.h10{height:32.507812pt;}
.h2b{height:32.800000pt;}
.h11{height:34.190937pt;}
.h16{height:36.305625pt;}
.h2{height:40.640625pt;}
.h1e{height:41.543750pt;}
.ha{height:43.872500pt;}
.h15{height:44.000000pt;}
.hf{height:44.160000pt;}
.h14{height:46.948750pt;}
.h1b{height:47.742188pt;}
.he{height:49.852500pt;}
.h1f{height:51.986667pt;}
.h2f{height:52.000000pt;}
.h9{height:52.134375pt;}
.h1d{height:52.146667pt;}
.h8{height:53.535000pt;}
.h1c{height:57.375000pt;}
.h7{height:57.758750pt;}
.hd{height:57.787500pt;}
.hb{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:59.340000pt;}
.h19{height:62.781250pt;}
.h18{height:62.812500pt;}
.h20{height:63.311250pt;}
.h25{height:63.417917pt;}
.h28{height:63.471250pt;}
.h17{height:64.500000pt;}
.h29{height:65.426667pt;}
.h2c{height:65.438667pt;}
.h23{height:65.440000pt;}
.h27{height:65.458667pt;}
.h22{height:65.460000pt;}
.h24{height:65.466667pt;}
.h2a{height:65.472000pt;}
.h21{height:65.586667pt;}
.h2e{height:65.620000pt;}
.h26{height:71.506667pt;}
.h6{height:81.281250pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:32.480000pt;}
.w8{width:32.640000pt;}
.w14{width:47.986667pt;}
.w13{width:53.906667pt;}
.wd{width:54.066667pt;}
.w16{width:58.866667pt;}
.wc{width:59.986667pt;}
.wb{width:65.952000pt;}
.w12{width:66.112000pt;}
.wf{width:70.866667pt;}
.we{width:77.938667pt;}
.w15{width:84.018667pt;}
.w3{width:93.600000pt;}
.w6{width:94.560000pt;}
.w2{width:95.200000pt;}
.w9{width:111.550667pt;}
.w11{width:113.920000pt;}
.w4{width:118.560000pt;}
.w5{width:148.960000pt;}
.wa{width:206.573333pt;}
.w10{width:222.145333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.198667pt;}
.xd{left:9.440000pt;}
.x18{left:10.400000pt;}
.xf{left:13.893333pt;}
.x13{left:24.613333pt;}
.x1f{left:73.441333pt;}
.x3{left:96.032000pt;}
.x1{left:97.952000pt;}
.x14{left:101.952000pt;}
.x19{left:106.752000pt;}
.x10{left:108.000000pt;}
.x36{left:114.592000pt;}
.x2f{left:134.746667pt;}
.x16{left:141.146667pt;}
.x3d{left:144.026667pt;}
.x4{left:147.066667pt;}
.x2{left:168.986667pt;}
.x31{left:170.266667pt;}
.x1e{left:179.866667pt;}
.x21{left:185.000000pt;}
.x5{left:196.026667pt;}
.x3c{left:208.666667pt;}
.x33{left:222.266667pt;}
.x1c{left:236.666667pt;}
.x3a{left:242.906667pt;}
.x15{left:282.626667pt;}
.x27{left:295.586667pt;}
.x37{left:298.466667pt;}
.xa{left:310.786667pt;}
.xc{left:316.386667pt;}
.x8{left:342.306667pt;}
.x11{left:348.160000pt;}
.xb{left:365.346667pt;}
.x6{left:386.786667pt;}
.x22{left:391.586667pt;}
.x7{left:396.866667pt;}
.x28{left:409.506667pt;}
.x23{left:457.546667pt;}
.x29{left:475.626667pt;}
.x9{left:483.933333pt;}
.x24{left:517.546667pt;}
.x2a{left:529.546667pt;}
.x25{left:571.626667pt;}
.x2b{left:577.546667pt;}
.xe{left:609.600000pt;}
.x26{left:649.573333pt;}
.x2c{left:661.573333pt;}
.x30{left:669.093333pt;}
.x1b{left:679.013333pt;}
.x39{left:686.533333pt;}
.x35{left:693.093333pt;}
.x12{left:699.200000pt;}
.x2e{left:702.053333pt;}
.x3b{left:708.133333pt;}
.x32{left:721.093333pt;}
.x1d{left:726.533333pt;}
.x17{left:740.160000pt;}
.x38{left:742.400000pt;}
.x1a{left:743.680000pt;}
.x2d{left:745.120000pt;}
.x34{left:746.880000pt;}
}




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