
    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_846d8ddb5404cf3cbc6c644a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_edc19f6ce20fd711c8528cd2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29f579110faee0a9ae98baab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_6e96f736504335ec36e5b681.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_920cb37f693c316c4ab82517.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_09f576734fe31aee890e0cea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_c1cf4e25d414f5a9b199e946.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6fedfdc9f6b07edf85c72ec9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_67bfc3aee2e29c3d984711a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.067383;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_ec6afa510fd8d87ea4161c6e.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v1{vertical-align:-63.360000px;}
.v7{vertical-align:-23.760000px;}
.vb{vertical-align:-19.440000px;}
.v4{vertical-align:-13.680000px;}
.v8{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.680000px;}
.vc{vertical-align:33.120000px;}
.v3{vertical-align:36.000000px;}
.va{vertical-align:38.880000px;}
.v2{vertical-align:41.040000px;}
.v9{vertical-align:44.640000px;}
.v6{vertical-align:50.400000px;}
.vd{vertical-align:52.560000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.372000px;}
.ls7{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.138000px;}
.ls22{letter-spacing:-0.118200px;}
.ls1d{letter-spacing:-0.025920px;}
.ls4{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.265200px;}
.lsb{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.512640px;}
.ls8{letter-spacing:0.720000px;}
.ls18{letter-spacing:3.974400px;}
.ls2{letter-spacing:4.500000px;}
.ls19{letter-spacing:4.694400px;}
.ls14{letter-spacing:14.086080px;}
.ls17{letter-spacing:14.206080px;}
.ls12{letter-spacing:14.806080px;}
.ls11{letter-spacing:16.709040px;}
.ls13{letter-spacing:16.829040px;}
.ls16{letter-spacing:17.429040px;}
.ls15{letter-spacing:17.609040px;}
.ls1a{letter-spacing:18.374400px;}
.ls1b{letter-spacing:19.067760px;}
.lsf{letter-spacing:21.029040px;}
.ls10{letter-spacing:22.667760px;}
.lse{letter-spacing:847.596000px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.ws1f{word-spacing:-14.838000px;}
.ws17{word-spacing:-14.621760px;}
.ws10{word-spacing:-14.572800px;}
.ws11{word-spacing:-14.546880px;}
.ws1e{word-spacing:-14.454600px;}
.ws15{word-spacing:-14.434800px;}
.wsf{word-spacing:-13.942800px;}
.wse{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.644000px;}
.ws2{word-spacing:-13.500000px;}
.ws25{word-spacing:-13.140000px;}
.ws24{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.186000px;}
.ws23{word-spacing:-12.060000px;}
.wsa{word-spacing:-12.042000px;}
.wsc{word-spacing:-11.898000px;}
.ws9{word-spacing:-11.880000px;}
.ws1c{word-spacing:-10.612800px;}
.ws16{word-spacing:-10.240800px;}
.ws1d{word-spacing:-1.022400px;}
.ws18{word-spacing:-0.694080px;}
.ws21{word-spacing:-0.366720px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.025920px;}
.wsb{word-spacing:0.198000px;}
.ws20{word-spacing:3.493440px;}
.ws12{word-spacing:3.625920px;}
.ws1b{word-spacing:3.805920px;}
.wsd{word-spacing:3.924000px;}
.ws8{word-spacing:4.500000px;}
.ws13{word-spacing:7.914960px;}
.ws22{word-spacing:8.505360px;}
.ws19{word-spacing:9.225360px;}
.ws1a{word-spacing:12.825360px;}
._1d{margin-left:-5.909760px;}
._b{margin-left:-4.362000px;}
._a{margin-left:-3.294000px;}
._c{margin-left:-2.106000px;}
._0{margin-left:-1.080000px;}
._1{width:1.434000px;}
._d{width:2.700000px;}
._9{width:3.996000px;}
._8{width:5.256000px;}
._10{width:6.534240px;}
._e{width:7.830000px;}
._f{width:8.910000px;}
._2{width:10.422000px;}
._7{width:11.880000px;}
._6{width:12.960000px;}
._13{width:15.036480px;}
._15{width:17.951040px;}
._16{width:18.990480px;}
._1b{width:20.338560px;}
._22{width:21.437280px;}
._14{width:22.666320px;}
._11{width:24.065280px;}
._12{width:25.356240px;}
._23{width:27.489600px;}
._1c{width:29.036160px;}
._24{width:30.168960px;}
._1f{width:31.835040px;}
._19{width:33.006000px;}
._4{width:35.586000px;}
._3{width:37.272000px;}
._1a{width:38.412000px;}
._1e{width:41.313840px;}
._20{width:59.289840px;}
._25{width:65.772000px;}
._28{width:86.454000px;}
._27{width:87.474000px;}
._18{width:117.647760px;}
._26{width:175.188000px;}
._17{width:225.012000px;}
._21{width:847.596000px;}
._5{width:1804.452000px;}
.fc2{color:rgb(3,23,35);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:81.360000px;}
.fsb{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y132{bottom:2.520000px;}
.ya5{bottom:2.880000px;}
.yb3{bottom:3.060000px;}
.y28{bottom:3.600000px;}
.y2f{bottom:3.960000px;}
.y12c{bottom:4.140000px;}
.yc3{bottom:5.760000px;}
.y13f{bottom:6.480000px;}
.y35{bottom:7.920000px;}
.yc1{bottom:8.280000px;}
.y2c{bottom:9.720000px;}
.yd0{bottom:10.620000px;}
.yd4{bottom:10.650000px;}
.ydb{bottom:10.665000px;}
.yd2{bottom:10.800000px;}
.ycf{bottom:11.880000px;}
.yc2{bottom:14.760000px;}
.yae{bottom:16.200000px;}
.y139{bottom:16.230000px;}
.y9d{bottom:16.380000px;}
.yb8{bottom:17.640000px;}
.y12b{bottom:17.820000px;}
.y12e{bottom:18.000000px;}
.yab{bottom:18.360000px;}
.ybc{bottom:18.405000px;}
.ya4{bottom:18.540000px;}
.y9a{bottom:18.720000px;}
.y9f{bottom:18.750000px;}
.y27{bottom:20.160000px;}
.yd7{bottom:20.340000px;}
.y13b{bottom:21.780000px;}
.ya2{bottom:21.960000px;}
.y136{bottom:22.140000px;}
.yc0{bottom:23.760000px;}
.yad{bottom:25.200000px;}
.yaf{bottom:25.380000px;}
.y2b{bottom:26.280000px;}
.yce{bottom:27.540000px;}
.y131{bottom:30.060000px;}
.y138{bottom:30.090000px;}
.ybe{bottom:31.545000px;}
.yb7{bottom:33.480000px;}
.yb6{bottom:33.840000px;}
.ybb{bottom:33.885000px;}
.yaa{bottom:34.020000px;}
.y142{bottom:34.245000px;}
.y9c{bottom:35.640000px;}
.y33{bottom:35.820000px;}
.y26{bottom:36.540000px;}
.y2a{bottom:39.060000px;}
.ybd{bottom:40.545000px;}
.y130{bottom:43.920000px;}
.y141{bottom:47.925000px;}
.yac{bottom:49.320000px;}
.ya9{bottom:49.500000px;}
.yba{bottom:49.545000px;}
.y135{bottom:49.680000px;}
.y32{bottom:51.300000px;}
.y25{bottom:53.130000px;}
.y36{bottom:57.780000px;}
.yb2{bottom:65.190000px;}
.y5{bottom:66.525004px;}
.y31{bottom:66.960000px;}
.y24{bottom:69.510000px;}
.y34{bottom:74.520000px;}
.ya7{bottom:96.840000px;}
.y4{bottom:97.125005px;}
.y30{bottom:97.740000px;}
.y171{bottom:111.600000px;}
.ycc{bottom:114.840000px;}
.y103{bottom:120.600000px;}
.y98{bottom:122.220000px;}
.y125{bottom:123.300000px;}
.y76{bottom:130.680000px;}
.y187{bottom:132.120000px;}
.y7b{bottom:132.300000px;}
.y170{bottom:136.260000px;}
.y160{bottom:138.060000px;}
.y22{bottom:139.264499px;}
.ycb{bottom:139.500000px;}
.y124{bottom:142.380000px;}
.y102{bottom:145.260000px;}
.y97{bottom:146.880000px;}
.y186{bottom:147.600000px;}
.y75{bottom:155.340000px;}
.y7a{bottom:156.960000px;}
.y16f{bottom:160.920000px;}
.y15f{bottom:162.720000px;}
.y185{bottom:163.080000px;}
.yca{bottom:164.160000px;}
.y123{bottom:166.860000px;}
.y101{bottom:169.920000px;}
.y96{bottom:171.540000px;}
.y2e{bottom:178.020000px;}
.y184{bottom:178.740000px;}
.y74{bottom:180.000000px;}
.y79{bottom:181.620000px;}
.y16e{bottom:185.580000px;}
.y15e{bottom:187.380000px;}
.yc9{bottom:188.850000px;}
.y122{bottom:191.550000px;}
.y183{bottom:194.250000px;}
.ye3{bottom:194.430000px;}
.y100{bottom:194.610000px;}
.y95{bottom:196.230000px;}
.y19{bottom:196.933500px;}
.y73{bottom:204.690000px;}
.y78{bottom:206.310000px;}
.y161{bottom:206.490000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y182{bottom:209.730000px;}
.y16d{bottom:210.270000px;}
.y15d{bottom:212.070000px;}
.yc8{bottom:213.510000px;}
.y121{bottom:216.210000px;}
.ye2{bottom:218.910000px;}
.yff{bottom:219.270000px;}
.y94{bottom:220.890000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y181{bottom:225.210000px;}
.y129{bottom:228.990000px;}
.y72{bottom:229.890000px;}
.y77{bottom:230.970000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y16c{bottom:234.930000px;}
.y15c{bottom:236.730000px;}
.yc7{bottom:238.170000px;}
.y120{bottom:240.870000px;}
.ye1{bottom:243.570000px;}
.yfe{bottom:243.930000px;}
.y93{bottom:245.550000px;}
.y128{bottom:247.890000px;}
.y71{bottom:255.630000px;}
.y180{bottom:256.350000px;}
.y16b{bottom:259.590000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y15b{bottom:261.390000px;}
.yc6{bottom:262.830000px;}
.y11f{bottom:265.530000px;}
.ye0{bottom:268.230000px;}
.yfd{bottom:268.590000px;}
.y55{bottom:269.490000px;}
.y92{bottom:270.210000px;}
.y17f{bottom:271.830000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y127{bottom:275.250000px;}
.y70{bottom:280.290000px;}
.y16a{bottom:284.250000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y15a{bottom:286.050000px;}
.y17e{bottom:287.310000px;}
.yc5{bottom:287.490000px;}
.y54{bottom:287.850000px;}
.y144{bottom:288.570000px;}
.y11e{bottom:290.190000px;}
.ydf{bottom:292.890000px;}
.yfc{bottom:293.250000px;}
.y91{bottom:294.870000px;}
.y17d{bottom:302.790000px;}
.y53{bottom:303.330000px;}
.y6f{bottom:304.950000px;}
.y169{bottom:308.910000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yc4{bottom:310.530000px;}
.y159{bottom:310.710000px;}
.y11d{bottom:311.790000px;}
.yfb{bottom:313.770000px;}
.yde{bottom:317.550000px;}
.y17c{bottom:318.450000px;}
.y52{bottom:318.990000px;}
.y90{bottom:319.530000px;}
.y143{bottom:320.790000px;}
.yfa{bottom:322.050000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y11c{bottom:322.950000px;}
.ybf{bottom:324.030000px;}
.y6e{bottom:329.610000px;}
.y168{bottom:333.570000px;}
.y17b{bottom:333.930000px;}
.y51{bottom:334.470000px;}
.y158{bottom:335.370000px;}
.ydd{bottom:336.630000px;}
.y8f{bottom:344.190000px;}
.yf9{bottom:346.170000px;}
.y10{bottom:348.133500px;}
.y17a{bottom:349.410000px;}
.y50{bottom:349.950000px;}
.y140{bottom:350.850000px;}
.y11b{bottom:353.010000px;}
.y6d{bottom:354.270000px;}
.ydc{bottom:354.990000px;}
.y167{bottom:358.230000px;}
.y157{bottom:360.030000px;}
.yb9{bottom:361.290000px;}
.y179{bottom:364.890000px;}
.yda{bottom:368.310000px;}
.y8e{bottom:368.850000px;}
.yf8{bottom:371.010000px;}
.y11a{bottom:372.270000px;}
.y4f{bottom:374.430000px;}
.y6c{bottom:378.975000px;}
.y178{bottom:380.595000px;}
.y166{bottom:382.935000px;}
.y156{bottom:384.735000px;}
.yf{bottom:386.785499px;}
.y4e{bottom:389.955000px;}
.yd9{bottom:392.295000px;}
.y8d{bottom:393.555000px;}
.yf7{bottom:395.715000px;}
.y177{bottom:396.075000px;}
.y119{bottom:397.155000px;}
.y6b{bottom:403.635000px;}
.y4d{bottom:405.615000px;}
.y165{bottom:407.595000px;}
.ye{bottom:408.044999px;}
.y155{bottom:409.395000px;}
.y13e{bottom:410.835000px;}
.y176{bottom:411.555000px;}
.y8c{bottom:418.215000px;}
.yf6{bottom:420.375000px;}
.y4c{bottom:421.095000px;}
.y118{bottom:421.815000px;}
.yb5{bottom:424.155000px;}
.y175{bottom:427.035000px;}
.y6a{bottom:428.295000px;}
.y164{bottom:432.255000px;}
.y154{bottom:434.055000px;}
.y4b{bottom:436.575000px;}
.y174{bottom:442.695000px;}
.y13d{bottom:443.235000px;}
.yf5{bottom:445.035000px;}
.y8b{bottom:445.575000px;}
.y117{bottom:446.475000px;}
.yd8{bottom:448.095000px;}
.y4a{bottom:452.055000px;}
.y69{bottom:452.955000px;}
.y163{bottom:456.915000px;}
.y153{bottom:458.715000px;}
.y173{bottom:458.895000px;}
.y49{bottom:467.715000px;}
.yf4{bottom:469.695000px;}
.y116{bottom:471.135000px;}
.yd6{bottom:472.035000px;}
.y13c{bottom:473.115000px;}
.y162{bottom:476.355000px;}
.y68{bottom:477.615000px;}
.y172{bottom:477.795000px;}
.y9b{bottom:481.215000px;}
.y48{bottom:483.195000px;}
.y152{bottom:483.375000px;}
.y8a{bottom:483.555000px;}
.yd{bottom:484.864502px;}
.yb4{bottom:486.975000px;}
.yf3{bottom:491.295000px;}
.y115{bottom:495.795000px;}
.y67{bottom:502.455000px;}
.yc{bottom:502.864502px;}
.yb1{bottom:503.175000px;}
.y13a{bottom:505.335000px;}
.y47{bottom:507.675000px;}
.y151{bottom:508.035000px;}
.y114{bottom:520.455000px;}
.yb{bottom:520.864502px;}
.yd5{bottom:521.175000px;}
.y46{bottom:523.155000px;}
.y66{bottom:527.115000px;}
.y89{bottom:527.295000px;}
.yf2{bottom:532.515000px;}
.y150{bottom:532.695000px;}
.y45{bottom:538.815000px;}
.ya{bottom:538.864499px;}
.y113{bottom:545.115000px;}
.y88{bottom:546.195000px;}
.y65{bottom:551.775000px;}
.yd3{bottom:553.035000px;}
.y44{bottom:554.295000px;}
.y9{bottom:556.864499px;}
.y14f{bottom:557.355000px;}
.y9e{bottom:558.255000px;}
.y87{bottom:565.125000px;}
.y43{bottom:569.805000px;}
.y64{bottom:576.465000px;}
.yf1{bottom:576.645000px;}
.yd1{bottom:577.005000px;}
.yb0{bottom:581.685000px;}
.y14e{bottom:582.045000px;}
.y86{bottom:584.205000px;}
.y42{bottom:585.285000px;}
.ya1{bottom:594.105000px;}
.y112{bottom:594.645000px;}
.y137{bottom:595.185000px;}
.ya6{bottom:597.885000px;}
.y63{bottom:601.125000px;}
.yf0{bottom:601.305000px;}
.y85{bottom:603.105000px;}
.y14d{bottom:606.705000px;}
.y41{bottom:609.945000px;}
.y111{bottom:619.305000px;}
.y84{bottom:622.185000px;}
.ycd{bottom:625.065000px;}
.y40{bottom:625.425000px;}
.y62{bottom:625.785000px;}
.yef{bottom:625.965000px;}
.y14c{bottom:631.365000px;}
.ya0{bottom:632.985000px;}
.y3f{bottom:640.905000px;}
.y83{bottom:641.085000px;}
.ya8{bottom:645.225000px;}
.y8{bottom:645.510000px;}
.y61{bottom:650.445000px;}
.yee{bottom:650.625000px;}
.y134{bottom:651.165000px;}
.y110{bottom:652.065000px;}
.y14b{bottom:656.025000px;}
.y3e{bottom:656.385000px;}
.y82{bottom:659.985000px;}
.y7{bottom:666.771000px;}
.y3d{bottom:672.045000px;}
.y60{bottom:675.105000px;}
.yed{bottom:675.285000px;}
.y81{bottom:679.065000px;}
.y14a{bottom:680.685000px;}
.y10f{bottom:682.125000px;}
.y3c{bottom:687.525000px;}
.yec{bottom:694.545000px;}
.y80{bottom:697.965000px;}
.y5f{bottom:699.765000px;}
.y10e{bottom:701.385000px;}
.y3b{bottom:703.005000px;}
.y149{bottom:705.345000px;}
.y99{bottom:706.425000px;}
.ya3{bottom:708.045000px;}
.y133{bottom:712.905000px;}
.yeb{bottom:713.805000px;}
.y7f{bottom:717.045000px;}
.y10d{bottom:720.645000px;}
.y5e{bottom:724.425000px;}
.y3a{bottom:724.785000px;}
.y6{bottom:726.298500px;}
.y148{bottom:730.005000px;}
.yea{bottom:733.245000px;}
.y7e{bottom:735.945000px;}
.y10c{bottom:745.125000px;}
.y5d{bottom:749.130000px;}
.y39{bottom:749.490000px;}
.ye9{bottom:752.550000px;}
.y3{bottom:752.599495px;}
.y147{bottom:754.710000px;}
.y7d{bottom:754.890000px;}
.y12f{bottom:755.070000px;}
.y10b{bottom:764.430000px;}
.ye8{bottom:771.990000px;}
.y5c{bottom:773.790000px;}
.y7c{bottom:773.970000px;}
.y146{bottom:779.370000px;}
.y10a{bottom:779.730000px;}
.y38{bottom:780.090000px;}
.y109{bottom:790.890000px;}
.ye7{bottom:796.830000px;}
.y5b{bottom:798.450000px;}
.y145{bottom:798.630000px;}
.y37{bottom:820.590000px;}
.y108{bottom:820.950000px;}
.ye6{bottom:821.490000px;}
.y5a{bottom:823.110000px;}
.y12d{bottom:824.730000px;}
.y107{bottom:840.390000px;}
.ye5{bottom:846.150000px;}
.y59{bottom:847.770000px;}
.y2d{bottom:850.650000px;}
.y12a{bottom:854.790000px;}
.y106{bottom:855.690000px;}
.y105{bottom:866.850000px;}
.y29{bottom:867.750000px;}
.ye4{bottom:870.810000px;}
.y58{bottom:872.430000px;}
.y2{bottom:879.369000px;}
.y23{bottom:884.130000px;}
.y104{bottom:896.910000px;}
.y57{bottom:897.090000px;}
.y126{bottom:897.270000px;}
.y56{bottom:949.860000px;}
.y1{bottom:966.726000px;}
.h28{height:15.480000px;}
.hd{height:16.380000px;}
.hf{height:20.736000px;}
.h13{height:23.220000px;}
.h2f{height:23.256000px;}
.h2e{height:23.400000px;}
.h37{height:29.160000px;}
.h39{height:29.340000px;}
.h21{height:31.140000px;}
.h3e{height:31.500000px;}
.h7{height:32.130000px;}
.h38{height:34.884492px;}
.h2b{height:36.360000px;}
.h17{height:38.100586px;}
.h12{height:39.049805px;}
.h2d{height:40.140000px;}
.h3b{height:41.436000px;}
.h18{height:43.215117px;}
.h19{height:44.507812px;}
.h24{height:45.720703px;}
.h6{height:45.900000px;}
.h27{height:46.620000px;}
.h16{height:46.736719px;}
.h3d{height:46.800000px;}
.h14{height:47.901094px;}
.h3{height:48.195000px;}
.h30{height:48.420000px;}
.h1e{height:49.500000px;}
.h1c{height:49.536000px;}
.h10{height:52.066406px;}
.hb{height:53.709961px;}
.h1a{height:54.596250px;}
.h2{height:55.080000px;}
.h1f{height:55.800000px;}
.h31{height:56.084062px;}
.h1b{height:57.404883px;}
.h2c{height:58.835039px;}
.h3f{height:59.256000px;}
.h20{height:59.436914px;}
.h3c{height:61.020000px;}
.h23{height:62.100000px;}
.h2a{height:62.136000px;}
.h1d{height:63.720000px;}
.h3a{height:68.940000px;}
.he{height:71.613281px;}
.h26{height:75.049805px;}
.h29{height:77.796000px;}
.h5{height:78.030000px;}
.h15{height:78.099609px;}
.h11{height:79.560000px;}
.h34{height:79.723828px;}
.ha{height:82.476000px;}
.h25{height:86.760703px;}
.h36{height:89.204062px;}
.hc{height:98.856000px;}
.h33{height:100.724062px;}
.h32{height:106.484063px;}
.h22{height:109.440000px;}
.h35{height:112.843828px;}
.h4{height:119.055004px;}
.h8{height:1020.600000px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w1e{width:58.680000px;}
.w18{width:59.400000px;}
.w1f{width:66.276000px;}
.w20{width:66.420000px;}
.w17{width:68.076000px;}
.w1a{width:68.220000px;}
.w14{width:68.760000px;}
.w15{width:72.756000px;}
.w1c{width:81.036000px;}
.w16{width:82.080000px;}
.w13{width:83.736000px;}
.w1d{width:88.920000px;}
.w21{width:107.316000px;}
.wc{width:108.180000px;}
.wa{width:108.360000px;}
.wd{width:115.596000px;}
.w12{width:126.000000px;}
.we{width:128.340000px;}
.wb{width:165.810000px;}
.wf{width:188.895000px;}
.w1b{width:192.810000px;}
.w10{width:236.370000px;}
.w5{width:280.470000px;}
.w6{width:280.695000px;}
.w22{width:433.155000px;}
.w11{width:555.045000px;}
.w19{width:565.125000px;}
.w8{width:582.945000px;}
.w9{width:589.965000px;}
.w2{width:637.794021px;}
.w7{width:722.879989px;}
.w3{width:722.880000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1d{left:10.080000px;}
.x18{left:16.740000px;}
.x14{left:18.720000px;}
.x15{left:23.220000px;}
.x12{left:25.020000px;}
.x1a{left:32.760000px;}
.x1f{left:43.380000px;}
.x13{left:50.040000px;}
.x1b{left:79.920000px;}
.x5{left:81.036000px;}
.x11{left:82.656000px;}
.x19{left:89.280000px;}
.x2c{left:94.535989px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:107.855989px;}
.x20{left:118.080000px;}
.x1c{left:126.900000px;}
.x9{left:143.670000px;}
.x1e{left:151.245000px;}
.x8{left:155.190000px;}
.x26{left:189.029989px;}
.x4{left:203.484001px;}
.x21{left:208.470000px;}
.x16{left:210.450000px;}
.x27{left:268.454989px;}
.x2f{left:277.095000px;}
.x7{left:280.515000px;}
.x22{left:292.935000px;}
.x28{left:328.934989px;}
.xb{left:331.809000px;}
.x2d{left:344.235000px;}
.x6{left:361.515000px;}
.x2a{left:364.754989px;}
.xd{left:369.974989px;}
.x29{left:396.464989px;}
.x17{left:400.065000px;}
.x2e{left:425.985000px;}
.x23{left:435.885000px;}
.x3{left:454.959000px;}
.x2b{left:476.744989px;}
.x30{left:515.625000px;}
.x24{left:518.685000px;}
.xc{left:581.874000px;}
.x25{left:587.490000px;}
.x10{left:624.029989px;}
.xf{left:633.029989px;}
@media print{
.v1{vertical-align:-56.320000pt;}
.v7{vertical-align:-21.120000pt;}
.vb{vertical-align:-17.280000pt;}
.v4{vertical-align:-12.160000pt;}
.v8{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.160000pt;}
.vc{vertical-align:29.440000pt;}
.v3{vertical-align:32.000000pt;}
.va{vertical-align:34.560000pt;}
.v2{vertical-align:36.480000pt;}
.v9{vertical-align:39.680000pt;}
.v6{vertical-align:44.800000pt;}
.vd{vertical-align:46.720000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.330667pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.122667pt;}
.ls22{letter-spacing:-0.105067pt;}
.ls1d{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.235733pt;}
.lsb{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.455680pt;}
.ls8{letter-spacing:0.640000pt;}
.ls18{letter-spacing:3.532800pt;}
.ls2{letter-spacing:4.000000pt;}
.ls19{letter-spacing:4.172800pt;}
.ls14{letter-spacing:12.520960pt;}
.ls17{letter-spacing:12.627627pt;}
.ls12{letter-spacing:13.160960pt;}
.ls11{letter-spacing:14.852480pt;}
.ls13{letter-spacing:14.959147pt;}
.ls16{letter-spacing:15.492480pt;}
.ls15{letter-spacing:15.652480pt;}
.ls1a{letter-spacing:16.332800pt;}
.ls1b{letter-spacing:16.949120pt;}
.lsf{letter-spacing:18.692480pt;}
.ls10{letter-spacing:20.149120pt;}
.lse{letter-spacing:753.418667pt;}
.ws4{word-spacing:-58.880000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-13.189333pt;}
.ws17{word-spacing:-12.997120pt;}
.ws10{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.930560pt;}
.ws1e{word-spacing:-12.848533pt;}
.ws15{word-spacing:-12.830933pt;}
.wsf{word-spacing:-12.393600pt;}
.wse{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.128000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws25{word-spacing:-11.680000pt;}
.ws24{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws23{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.704000pt;}
.wsc{word-spacing:-10.576000pt;}
.ws9{word-spacing:-10.560000pt;}
.ws1c{word-spacing:-9.433600pt;}
.ws16{word-spacing:-9.102933pt;}
.ws1d{word-spacing:-0.908800pt;}
.ws18{word-spacing:-0.616960pt;}
.ws21{word-spacing:-0.325973pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.023040pt;}
.wsb{word-spacing:0.176000pt;}
.ws20{word-spacing:3.105280pt;}
.ws12{word-spacing:3.223040pt;}
.ws1b{word-spacing:3.383040pt;}
.wsd{word-spacing:3.488000pt;}
.ws8{word-spacing:4.000000pt;}
.ws13{word-spacing:7.035520pt;}
.ws22{word-spacing:7.560320pt;}
.ws19{word-spacing:8.200320pt;}
.ws1a{word-spacing:11.400320pt;}
._1d{margin-left:-5.253120pt;}
._b{margin-left:-3.877333pt;}
._a{margin-left:-2.928000pt;}
._c{margin-left:-1.872000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.274667pt;}
._d{width:2.400000pt;}
._9{width:3.552000pt;}
._8{width:4.672000pt;}
._10{width:5.808213pt;}
._e{width:6.960000pt;}
._f{width:7.920000pt;}
._2{width:9.264000pt;}
._7{width:10.560000pt;}
._6{width:11.520000pt;}
._13{width:13.365760pt;}
._15{width:15.956480pt;}
._16{width:16.880427pt;}
._1b{width:18.078720pt;}
._22{width:19.055360pt;}
._14{width:20.147840pt;}
._11{width:21.391360pt;}
._12{width:22.538880pt;}
._23{width:24.435200pt;}
._1c{width:25.809920pt;}
._24{width:26.816853pt;}
._1f{width:28.297813pt;}
._19{width:29.338667pt;}
._4{width:31.632000pt;}
._3{width:33.130667pt;}
._1a{width:34.144000pt;}
._1e{width:36.723413pt;}
._20{width:52.702080pt;}
._25{width:58.464000pt;}
._28{width:76.848000pt;}
._27{width:77.754667pt;}
._18{width:104.575787pt;}
._26{width:155.722667pt;}
._17{width:200.010667pt;}
._21{width:753.418667pt;}
._5{width:1603.957333pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:72.320000pt;}
.fsb{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:2.240000pt;}
.ya5{bottom:2.560000pt;}
.yb3{bottom:2.720000pt;}
.y28{bottom:3.200000pt;}
.y2f{bottom:3.520000pt;}
.y12c{bottom:3.680000pt;}
.yc3{bottom:5.120000pt;}
.y13f{bottom:5.760000pt;}
.y35{bottom:7.040000pt;}
.yc1{bottom:7.360000pt;}
.y2c{bottom:8.640000pt;}
.yd0{bottom:9.440000pt;}
.yd4{bottom:9.466667pt;}
.ydb{bottom:9.480000pt;}
.yd2{bottom:9.600000pt;}
.ycf{bottom:10.560000pt;}
.yc2{bottom:13.120000pt;}
.yae{bottom:14.400000pt;}
.y139{bottom:14.426667pt;}
.y9d{bottom:14.560000pt;}
.yb8{bottom:15.680000pt;}
.y12b{bottom:15.840000pt;}
.y12e{bottom:16.000000pt;}
.yab{bottom:16.320000pt;}
.ybc{bottom:16.360000pt;}
.ya4{bottom:16.480000pt;}
.y9a{bottom:16.640000pt;}
.y9f{bottom:16.666667pt;}
.y27{bottom:17.920000pt;}
.yd7{bottom:18.080000pt;}
.y13b{bottom:19.360000pt;}
.ya2{bottom:19.520000pt;}
.y136{bottom:19.680000pt;}
.yc0{bottom:21.120000pt;}
.yad{bottom:22.400000pt;}
.yaf{bottom:22.560000pt;}
.y2b{bottom:23.360000pt;}
.yce{bottom:24.480000pt;}
.y131{bottom:26.720000pt;}
.y138{bottom:26.746667pt;}
.ybe{bottom:28.040000pt;}
.yb7{bottom:29.760000pt;}
.yb6{bottom:30.080000pt;}
.ybb{bottom:30.120000pt;}
.yaa{bottom:30.240000pt;}
.y142{bottom:30.440000pt;}
.y9c{bottom:31.680000pt;}
.y33{bottom:31.840000pt;}
.y26{bottom:32.480000pt;}
.y2a{bottom:34.720000pt;}
.ybd{bottom:36.040000pt;}
.y130{bottom:39.040000pt;}
.y141{bottom:42.600000pt;}
.yac{bottom:43.840000pt;}
.ya9{bottom:44.000000pt;}
.yba{bottom:44.040000pt;}
.y135{bottom:44.160000pt;}
.y32{bottom:45.600000pt;}
.y25{bottom:47.226667pt;}
.y36{bottom:51.360000pt;}
.yb2{bottom:57.946667pt;}
.y5{bottom:59.133337pt;}
.y31{bottom:59.520000pt;}
.y24{bottom:61.786667pt;}
.y34{bottom:66.240000pt;}
.ya7{bottom:86.080000pt;}
.y4{bottom:86.333337pt;}
.y30{bottom:86.880000pt;}
.y171{bottom:99.200000pt;}
.ycc{bottom:102.080000pt;}
.y103{bottom:107.200000pt;}
.y98{bottom:108.640000pt;}
.y125{bottom:109.600000pt;}
.y76{bottom:116.160000pt;}
.y187{bottom:117.440000pt;}
.y7b{bottom:117.600000pt;}
.y170{bottom:121.120000pt;}
.y160{bottom:122.720000pt;}
.y22{bottom:123.790666pt;}
.ycb{bottom:124.000000pt;}
.y124{bottom:126.560000pt;}
.y102{bottom:129.120000pt;}
.y97{bottom:130.560000pt;}
.y186{bottom:131.200000pt;}
.y75{bottom:138.080000pt;}
.y7a{bottom:139.520000pt;}
.y16f{bottom:143.040000pt;}
.y15f{bottom:144.640000pt;}
.y185{bottom:144.960000pt;}
.yca{bottom:145.920000pt;}
.y123{bottom:148.320000pt;}
.y101{bottom:151.040000pt;}
.y96{bottom:152.480000pt;}
.y2e{bottom:158.240000pt;}
.y184{bottom:158.880000pt;}
.y74{bottom:160.000000pt;}
.y79{bottom:161.440000pt;}
.y16e{bottom:164.960000pt;}
.y15e{bottom:166.560000pt;}
.yc9{bottom:167.866667pt;}
.y122{bottom:170.266667pt;}
.y183{bottom:172.666667pt;}
.ye3{bottom:172.826667pt;}
.y100{bottom:172.986667pt;}
.y95{bottom:174.426667pt;}
.y19{bottom:175.052000pt;}
.y73{bottom:181.946667pt;}
.y78{bottom:183.386667pt;}
.y161{bottom:183.546667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y182{bottom:186.426667pt;}
.y16d{bottom:186.906667pt;}
.y15d{bottom:188.506667pt;}
.yc8{bottom:189.786667pt;}
.y121{bottom:192.186667pt;}
.ye2{bottom:194.586667pt;}
.yff{bottom:194.906667pt;}
.y94{bottom:196.346667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y181{bottom:200.186667pt;}
.y129{bottom:203.546667pt;}
.y72{bottom:204.346667pt;}
.y77{bottom:205.306667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y16c{bottom:208.826667pt;}
.y15c{bottom:210.426667pt;}
.yc7{bottom:211.706667pt;}
.y120{bottom:214.106667pt;}
.ye1{bottom:216.506667pt;}
.yfe{bottom:216.826667pt;}
.y93{bottom:218.266667pt;}
.y128{bottom:220.346667pt;}
.y71{bottom:227.226667pt;}
.y180{bottom:227.866667pt;}
.y16b{bottom:230.746667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y15b{bottom:232.346667pt;}
.yc6{bottom:233.626667pt;}
.y11f{bottom:236.026667pt;}
.ye0{bottom:238.426667pt;}
.yfd{bottom:238.746667pt;}
.y55{bottom:239.546667pt;}
.y92{bottom:240.186667pt;}
.y17f{bottom:241.626667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y127{bottom:244.666667pt;}
.y70{bottom:249.146667pt;}
.y16a{bottom:252.666667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y15a{bottom:254.266667pt;}
.y17e{bottom:255.386667pt;}
.yc5{bottom:255.546667pt;}
.y54{bottom:255.866667pt;}
.y144{bottom:256.506667pt;}
.y11e{bottom:257.946667pt;}
.ydf{bottom:260.346667pt;}
.yfc{bottom:260.666667pt;}
.y91{bottom:262.106667pt;}
.y17d{bottom:269.146667pt;}
.y53{bottom:269.626667pt;}
.y6f{bottom:271.066667pt;}
.y169{bottom:274.586667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yc4{bottom:276.026667pt;}
.y159{bottom:276.186667pt;}
.y11d{bottom:277.146667pt;}
.yfb{bottom:278.906667pt;}
.yde{bottom:282.266667pt;}
.y17c{bottom:283.066667pt;}
.y52{bottom:283.546667pt;}
.y90{bottom:284.026667pt;}
.y143{bottom:285.146667pt;}
.yfa{bottom:286.266667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y11c{bottom:287.066667pt;}
.ybf{bottom:288.026667pt;}
.y6e{bottom:292.986667pt;}
.y168{bottom:296.506667pt;}
.y17b{bottom:296.826667pt;}
.y51{bottom:297.306667pt;}
.y158{bottom:298.106667pt;}
.ydd{bottom:299.226667pt;}
.y8f{bottom:305.946667pt;}
.yf9{bottom:307.706667pt;}
.y10{bottom:309.452000pt;}
.y17a{bottom:310.586667pt;}
.y50{bottom:311.066667pt;}
.y140{bottom:311.866667pt;}
.y11b{bottom:313.786667pt;}
.y6d{bottom:314.906667pt;}
.ydc{bottom:315.546667pt;}
.y167{bottom:318.426667pt;}
.y157{bottom:320.026667pt;}
.yb9{bottom:321.146667pt;}
.y179{bottom:324.346667pt;}
.yda{bottom:327.386667pt;}
.y8e{bottom:327.866667pt;}
.yf8{bottom:329.786667pt;}
.y11a{bottom:330.906667pt;}
.y4f{bottom:332.826667pt;}
.y6c{bottom:336.866667pt;}
.y178{bottom:338.306667pt;}
.y166{bottom:340.386667pt;}
.y156{bottom:341.986667pt;}
.yf{bottom:343.809333pt;}
.y4e{bottom:346.626667pt;}
.yd9{bottom:348.706667pt;}
.y8d{bottom:349.826667pt;}
.yf7{bottom:351.746667pt;}
.y177{bottom:352.066667pt;}
.y119{bottom:353.026667pt;}
.y6b{bottom:358.786667pt;}
.y4d{bottom:360.546667pt;}
.y165{bottom:362.306667pt;}
.ye{bottom:362.706666pt;}
.y155{bottom:363.906667pt;}
.y13e{bottom:365.186667pt;}
.y176{bottom:365.826667pt;}
.y8c{bottom:371.746667pt;}
.yf6{bottom:373.666667pt;}
.y4c{bottom:374.306667pt;}
.y118{bottom:374.946667pt;}
.yb5{bottom:377.026667pt;}
.y175{bottom:379.586667pt;}
.y6a{bottom:380.706667pt;}
.y164{bottom:384.226667pt;}
.y154{bottom:385.826667pt;}
.y4b{bottom:388.066667pt;}
.y174{bottom:393.506667pt;}
.y13d{bottom:393.986667pt;}
.yf5{bottom:395.586667pt;}
.y8b{bottom:396.066667pt;}
.y117{bottom:396.866667pt;}
.yd8{bottom:398.306667pt;}
.y4a{bottom:401.826667pt;}
.y69{bottom:402.626667pt;}
.y163{bottom:406.146667pt;}
.y153{bottom:407.746667pt;}
.y173{bottom:407.906667pt;}
.y49{bottom:415.746667pt;}
.yf4{bottom:417.506667pt;}
.y116{bottom:418.786667pt;}
.yd6{bottom:419.586667pt;}
.y13c{bottom:420.546667pt;}
.y162{bottom:423.426667pt;}
.y68{bottom:424.546667pt;}
.y172{bottom:424.706667pt;}
.y9b{bottom:427.746667pt;}
.y48{bottom:429.506667pt;}
.y152{bottom:429.666667pt;}
.y8a{bottom:429.826667pt;}
.yd{bottom:430.990669pt;}
.yb4{bottom:432.866667pt;}
.yf3{bottom:436.706667pt;}
.y115{bottom:440.706667pt;}
.y67{bottom:446.626667pt;}
.yc{bottom:446.990669pt;}
.yb1{bottom:447.266667pt;}
.y13a{bottom:449.186667pt;}
.y47{bottom:451.266667pt;}
.y151{bottom:451.586667pt;}
.y114{bottom:462.626667pt;}
.yb{bottom:462.990669pt;}
.yd5{bottom:463.266667pt;}
.y46{bottom:465.026667pt;}
.y66{bottom:468.546667pt;}
.y89{bottom:468.706667pt;}
.yf2{bottom:473.346667pt;}
.y150{bottom:473.506667pt;}
.y45{bottom:478.946667pt;}
.ya{bottom:478.990666pt;}
.y113{bottom:484.546667pt;}
.y88{bottom:485.506667pt;}
.y65{bottom:490.466667pt;}
.yd3{bottom:491.586667pt;}
.y44{bottom:492.706667pt;}
.y9{bottom:494.990666pt;}
.y14f{bottom:495.426667pt;}
.y9e{bottom:496.226667pt;}
.y87{bottom:502.333333pt;}
.y43{bottom:506.493333pt;}
.y64{bottom:512.413333pt;}
.yf1{bottom:512.573333pt;}
.yd1{bottom:512.893333pt;}
.yb0{bottom:517.053333pt;}
.y14e{bottom:517.373333pt;}
.y86{bottom:519.293333pt;}
.y42{bottom:520.253333pt;}
.ya1{bottom:528.093333pt;}
.y112{bottom:528.573333pt;}
.y137{bottom:529.053333pt;}
.ya6{bottom:531.453333pt;}
.y63{bottom:534.333333pt;}
.yf0{bottom:534.493333pt;}
.y85{bottom:536.093333pt;}
.y14d{bottom:539.293333pt;}
.y41{bottom:542.173333pt;}
.y111{bottom:550.493333pt;}
.y84{bottom:553.053333pt;}
.ycd{bottom:555.613333pt;}
.y40{bottom:555.933333pt;}
.y62{bottom:556.253333pt;}
.yef{bottom:556.413333pt;}
.y14c{bottom:561.213333pt;}
.ya0{bottom:562.653333pt;}
.y3f{bottom:569.693333pt;}
.y83{bottom:569.853333pt;}
.ya8{bottom:573.533333pt;}
.y8{bottom:573.786667pt;}
.y61{bottom:578.173333pt;}
.yee{bottom:578.333333pt;}
.y134{bottom:578.813333pt;}
.y110{bottom:579.613333pt;}
.y14b{bottom:583.133333pt;}
.y3e{bottom:583.453333pt;}
.y82{bottom:586.653333pt;}
.y7{bottom:592.685334pt;}
.y3d{bottom:597.373333pt;}
.y60{bottom:600.093333pt;}
.yed{bottom:600.253333pt;}
.y81{bottom:603.613333pt;}
.y14a{bottom:605.053333pt;}
.y10f{bottom:606.333333pt;}
.y3c{bottom:611.133333pt;}
.yec{bottom:617.373333pt;}
.y80{bottom:620.413333pt;}
.y5f{bottom:622.013333pt;}
.y10e{bottom:623.453333pt;}
.y3b{bottom:624.893333pt;}
.y149{bottom:626.973333pt;}
.y99{bottom:627.933333pt;}
.ya3{bottom:629.373333pt;}
.y133{bottom:633.693333pt;}
.yeb{bottom:634.493333pt;}
.y7f{bottom:637.373333pt;}
.y10d{bottom:640.573333pt;}
.y5e{bottom:643.933333pt;}
.y3a{bottom:644.253333pt;}
.y6{bottom:645.598667pt;}
.y148{bottom:648.893333pt;}
.yea{bottom:651.773333pt;}
.y7e{bottom:654.173333pt;}
.y10c{bottom:662.333333pt;}
.y5d{bottom:665.893333pt;}
.y39{bottom:666.213333pt;}
.ye9{bottom:668.933333pt;}
.y3{bottom:668.977329pt;}
.y147{bottom:670.853333pt;}
.y7d{bottom:671.013333pt;}
.y12f{bottom:671.173333pt;}
.y10b{bottom:679.493333pt;}
.ye8{bottom:686.213333pt;}
.y5c{bottom:687.813333pt;}
.y7c{bottom:687.973333pt;}
.y146{bottom:692.773333pt;}
.y10a{bottom:693.093333pt;}
.y38{bottom:693.413333pt;}
.y109{bottom:703.013333pt;}
.ye7{bottom:708.293333pt;}
.y5b{bottom:709.733333pt;}
.y145{bottom:709.893333pt;}
.y37{bottom:729.413333pt;}
.y108{bottom:729.733333pt;}
.ye6{bottom:730.213333pt;}
.y5a{bottom:731.653333pt;}
.y12d{bottom:733.093333pt;}
.y107{bottom:747.013333pt;}
.ye5{bottom:752.133333pt;}
.y59{bottom:753.573333pt;}
.y2d{bottom:756.133333pt;}
.y12a{bottom:759.813333pt;}
.y106{bottom:760.613333pt;}
.y105{bottom:770.533333pt;}
.y29{bottom:771.333333pt;}
.ye4{bottom:774.053333pt;}
.y58{bottom:775.493333pt;}
.y2{bottom:781.661334pt;}
.y23{bottom:785.893333pt;}
.y104{bottom:797.253333pt;}
.y57{bottom:797.413333pt;}
.y126{bottom:797.573333pt;}
.y56{bottom:844.320000pt;}
.y1{bottom:859.312000pt;}
.h28{height:13.760000pt;}
.hd{height:14.560000pt;}
.hf{height:18.432000pt;}
.h13{height:20.640000pt;}
.h2f{height:20.672000pt;}
.h2e{height:20.800000pt;}
.h37{height:25.920000pt;}
.h39{height:26.080000pt;}
.h21{height:27.680000pt;}
.h3e{height:28.000000pt;}
.h7{height:28.560000pt;}
.h38{height:31.008437pt;}
.h2b{height:32.320000pt;}
.h17{height:33.867188pt;}
.h12{height:34.710938pt;}
.h2d{height:35.680000pt;}
.h3b{height:36.832000pt;}
.h18{height:38.413438pt;}
.h19{height:39.562500pt;}
.h24{height:40.640625pt;}
.h6{height:40.800000pt;}
.h27{height:41.440000pt;}
.h16{height:41.543750pt;}
.h3d{height:41.600000pt;}
.h14{height:42.578750pt;}
.h3{height:42.840000pt;}
.h30{height:43.040000pt;}
.h1e{height:44.000000pt;}
.h1c{height:44.032000pt;}
.h10{height:46.281250pt;}
.hb{height:47.742188pt;}
.h1a{height:48.530000pt;}
.h2{height:48.960000pt;}
.h1f{height:49.600000pt;}
.h31{height:49.852500pt;}
.h1b{height:51.026562pt;}
.h2c{height:52.297812pt;}
.h3f{height:52.672000pt;}
.h20{height:52.832812pt;}
.h3c{height:54.240000pt;}
.h23{height:55.200000pt;}
.h2a{height:55.232000pt;}
.h1d{height:56.640000pt;}
.h3a{height:61.280000pt;}
.he{height:63.656250pt;}
.h26{height:66.710938pt;}
.h29{height:69.152000pt;}
.h5{height:69.360000pt;}
.h15{height:69.421875pt;}
.h11{height:70.720000pt;}
.h34{height:70.865625pt;}
.ha{height:73.312000pt;}
.h25{height:77.120625pt;}
.h36{height:79.292500pt;}
.hc{height:87.872000pt;}
.h33{height:89.532500pt;}
.h32{height:94.652500pt;}
.h22{height:97.280000pt;}
.h35{height:100.305625pt;}
.h4{height:105.826671pt;}
.h8{height:907.200000pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w1e{width:52.160000pt;}
.w18{width:52.800000pt;}
.w1f{width:58.912000pt;}
.w20{width:59.040000pt;}
.w17{width:60.512000pt;}
.w1a{width:60.640000pt;}
.w14{width:61.120000pt;}
.w15{width:64.672000pt;}
.w1c{width:72.032000pt;}
.w16{width:72.960000pt;}
.w13{width:74.432000pt;}
.w1d{width:79.040000pt;}
.w21{width:95.392000pt;}
.wc{width:96.160000pt;}
.wa{width:96.320000pt;}
.wd{width:102.752000pt;}
.w12{width:112.000000pt;}
.we{width:114.080000pt;}
.wb{width:147.386667pt;}
.wf{width:167.906667pt;}
.w1b{width:171.386667pt;}
.w10{width:210.106667pt;}
.w5{width:249.306667pt;}
.w6{width:249.506667pt;}
.w22{width:385.026667pt;}
.w11{width:493.373333pt;}
.w19{width:502.333333pt;}
.w8{width:518.173333pt;}
.w9{width:524.413333pt;}
.w2{width:566.928019pt;}
.w7{width:642.559990pt;}
.w3{width:642.560000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1d{left:8.960000pt;}
.x18{left:14.880000pt;}
.x14{left:16.640000pt;}
.x15{left:20.640000pt;}
.x12{left:22.240000pt;}
.x1a{left:29.120000pt;}
.x1f{left:38.560000pt;}
.x13{left:44.480000pt;}
.x1b{left:71.040000pt;}
.x5{left:72.032000pt;}
.x11{left:73.472000pt;}
.x19{left:79.360000pt;}
.x2c{left:84.031990pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:95.871990pt;}
.x20{left:104.960000pt;}
.x1c{left:112.800000pt;}
.x9{left:127.706667pt;}
.x1e{left:134.440000pt;}
.x8{left:137.946667pt;}
.x26{left:168.026657pt;}
.x4{left:180.874667pt;}
.x21{left:185.306667pt;}
.x16{left:187.066667pt;}
.x27{left:238.626657pt;}
.x2f{left:246.306667pt;}
.x7{left:249.346667pt;}
.x22{left:260.386667pt;}
.x28{left:292.386657pt;}
.xb{left:294.941333pt;}
.x2d{left:305.986667pt;}
.x6{left:321.346667pt;}
.x2a{left:324.226657pt;}
.xd{left:328.866657pt;}
.x29{left:352.413324pt;}
.x17{left:355.613333pt;}
.x2e{left:378.653333pt;}
.x23{left:387.453333pt;}
.x3{left:404.408000pt;}
.x2b{left:423.773324pt;}
.x30{left:458.333333pt;}
.x24{left:461.053333pt;}
.xc{left:517.221333pt;}
.x25{left:522.213333pt;}
.x10{left:554.693324pt;}
.xf{left:562.693324pt;}
}




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