
    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_ffb1cf431a8ac295c36f8c2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945801;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_f5ffd44e3fa9a346faef48b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945801;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_4fd5305ee5c4a515ba4a731a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_404b6ff2532ab163d2d9e91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_32222b9da519b2e3eef787c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_b668e1ef49c855c475d357e4.woff2')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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_a3f0675b6da91fba76cfb008.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_625744709b4815369fe9703c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ccfcb1545a228265305a37dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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_aea44b3c6d432b1311a3a3b1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3225080d7963eb9b45265b1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916992;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a323945d7ee9e6fbba9fcaef.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.942000px;}
.ls21{letter-spacing:-0.852000px;}
.ls39{letter-spacing:-0.738000px;}
.ls3d{letter-spacing:-0.702000px;}
.ls38{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.132600px;}
.ls1c{letter-spacing:-0.126600px;}
.ls3b{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.051840px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018000px;}
.ls31{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.ls35{letter-spacing:0.097800px;}
.ls32{letter-spacing:0.108000px;}
.ls3c{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.131040px;}
.ls34{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.210240px;}
.ls12{letter-spacing:0.257040px;}
.ls1d{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls3e{letter-spacing:0.269400px;}
.ls36{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.468000px;}
.ls10{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.816000px;}
.lse{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.620000px;}
.ls6{letter-spacing:2.340000px;}
.ls19{letter-spacing:3.060000px;}
.ls1b{letter-spacing:3.780000px;}
.ls13{letter-spacing:4.500000px;}
.ls2{letter-spacing:6.660000px;}
.ls5{letter-spacing:7.380000px;}
.ls17{letter-spacing:8.100000px;}
.ls15{letter-spacing:8.586720px;}
.ls22{letter-spacing:8.820000px;}
.ls1a{letter-spacing:10.980000px;}
.ls2e{letter-spacing:11.700000px;}
.ls30{letter-spacing:11.880000px;}
.ls29{letter-spacing:12.420000px;}
.ls1f{letter-spacing:13.140000px;}
.ls2c{letter-spacing:15.066720px;}
.ls1e{letter-spacing:16.740000px;}
.ls28{letter-spacing:21.522720px;}
.ls14{letter-spacing:22.500000px;}
.ls2d{letter-spacing:23.220000px;}
.ls4{letter-spacing:23.940000px;}
.ls27{letter-spacing:24.120000px;}
.ls26{letter-spacing:28.440000px;}
.ls25{letter-spacing:32.580000px;}
.ls2b{letter-spacing:44.562720px;}
.ls24{letter-spacing:51.042720px;}
.ls33{letter-spacing:93.060000px;}
.ls23{letter-spacing:1045.080000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws9{word-spacing:-59.760000px;}
.ws14{word-spacing:-54.468000px;}
.ws13{word-spacing:-54.270000px;}
.ws12{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.831240px;}
.wsb{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.037800px;}
.ws1{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.813400px;}
.ws3{word-spacing:-14.400000px;}
.ws1c{word-spacing:-13.860000px;}
.ws1b{word-spacing:-13.680000px;}
.ws1a{word-spacing:-13.626000px;}
.ws16{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.888000px;}
.ws8{word-spacing:-12.780000px;}
.ws17{word-spacing:-12.762000px;}
.ws1e{word-spacing:-12.420000px;}
.ws1d{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:-10.064160px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:153.690000px;}
._d{margin-left:-3.659040px;}
._c{margin-left:-2.591280px;}
._0{margin-left:-1.026720px;}
._1{width:1.090800px;}
._2{width:2.226720px;}
._13{width:3.286800px;}
._8{width:4.479840px;}
._7{width:5.816160px;}
._b{width:7.472160px;}
._14{width:8.637600px;}
._17{width:9.863040px;}
._6{width:10.874160px;}
._11{width:12.011760px;}
._12{width:13.119120px;}
._3{width:14.182560px;}
._9{width:16.112160px;}
._a{width:17.121600px;}
._e{width:18.585360px;}
._4{width:20.467440px;}
._19{width:21.522240px;}
._5{width:22.862640px;}
._f{width:23.963760px;}
._10{width:25.146960px;}
._18{width:26.593200px;}
._1c{width:27.679680px;}
._1a{width:28.804320px;}
._1b{width:30.566880px;}
._15{width:32.091120px;}
._16{width:33.107040px;}
._1e{width:35.989200px;}
._1f{width:36.998640px;}
._21{width:92.124000px;}
._20{width:93.240000px;}
._1d{width:116.098560px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsd{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fs1{font-size:33.120000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fsb{font-size:51.264000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:2.235000px;}
.y191{bottom:2.520000px;}
.ycb{bottom:2.880000px;}
.y96{bottom:2.910000px;}
.y91{bottom:2.955000px;}
.y9b{bottom:3.060000px;}
.y9e{bottom:3.090000px;}
.y4d{bottom:3.780000px;}
.y4f{bottom:4.320000px;}
.yfc{bottom:4.860000px;}
.y8{bottom:6.300000px;}
.y4e{bottom:6.480000px;}
.y2{bottom:7.020000px;}
.y4{bottom:7.200000px;}
.y100{bottom:7.740000px;}
.yd1{bottom:10.620000px;}
.yfe{bottom:10.800000px;}
.y3{bottom:12.060000px;}
.y192{bottom:16.560000px;}
.y98{bottom:17.490000px;}
.y93{bottom:17.535000px;}
.y9a{bottom:17.640000px;}
.y95{bottom:17.670000px;}
.y90{bottom:17.715000px;}
.ycf{bottom:18.360000px;}
.y18d{bottom:18.390000px;}
.yd8{bottom:18.540000px;}
.yf6{bottom:20.700000px;}
.yd0{bottom:26.100000px;}
.y9{bottom:32.940000px;}
.yce{bottom:34.020000px;}
.y18c{bottom:34.050000px;}
.yd4{bottom:41.760000px;}
.y7{bottom:48.600000px;}
.yd7{bottom:49.500000px;}
.y18b{bottom:49.530000px;}
.yf7{bottom:54.180000px;}
.yd6{bottom:65.010000px;}
.y6{bottom:72.900000px;}
.yd5{bottom:80.670000px;}
.y193{bottom:86.400000px;}
.yf8{bottom:87.660000px;}
.yda{bottom:92.340000px;}
.y4b{bottom:97.560000px;}
.y8c{bottom:97.920000px;}
.yf4{bottom:99.000000px;}
.y115{bottom:101.880000px;}
.y14e{bottom:108.900000px;}
.yd9{bottom:109.620000px;}
.y8b{bottom:115.200000px;}
.yf3{bottom:116.280000px;}
.y114{bottom:118.980000px;}
.y4a{bottom:119.340000px;}
.yf9{bottom:121.140000px;}
.y177{bottom:122.760000px;}
.yd3{bottom:124.380000px;}
.y190{bottom:125.820000px;}
.y14d{bottom:126.180000px;}
.yf2{bottom:131.220000px;}
.y8a{bottom:132.480000px;}
.yff{bottom:134.640000px;}
.y113{bottom:136.260000px;}
.y49{bottom:136.620000px;}
.yf1{bottom:138.600000px;}
.y176{bottom:140.040000px;}
.y18f{bottom:141.660000px;}
.y99{bottom:142.380000px;}
.y14c{bottom:143.460000px;}
.y89{bottom:149.760000px;}
.yf0{bottom:152.640000px;}
.yf5{bottom:153.000000px;}
.y112{bottom:153.540000px;}
.y48{bottom:153.900000px;}
.yfa{bottom:154.620000px;}
.y175{bottom:157.140000px;}
.y18e{bottom:158.940000px;}
.y14b{bottom:160.740000px;}
.y88{bottom:167.040000px;}
.y111{bottom:170.820000px;}
.y47{bottom:171.180000px;}
.y18a{bottom:172.980000px;}
.y174{bottom:174.420000px;}
.y14a{bottom:178.020000px;}
.y87{bottom:184.170000px;}
.yfd{bottom:187.020000px;}
.yfb{bottom:188.100000px;}
.y110{bottom:189.210000px;}
.y173{bottom:191.730000px;}
.y46{bottom:192.990000px;}
.ya0{bottom:193.860000px;}
.y149{bottom:195.150000px;}
.y86{bottom:201.450000px;}
.y10f{bottom:207.390000px;}
.y172{bottom:209.010000px;}
.y148{bottom:212.430000px;}
.y45{bottom:214.770000px;}
.yd2{bottom:218.370000px;}
.y85{bottom:218.730000px;}
.y10e{bottom:225.750000px;}
.y171{bottom:226.290000px;}
.y147{bottom:229.710000px;}
.y44{bottom:231.870000px;}
.y189{bottom:235.110000px;}
.y84{bottom:236.010000px;}
.y10d{bottom:243.030000px;}
.y170{bottom:243.570000px;}
.y9f{bottom:243.720000px;}
.y146{bottom:246.990000px;}
.y43{bottom:249.150000px;}
.y188{bottom:250.590000px;}
.y83{bottom:253.290000px;}
.y10c{bottom:260.310000px;}
.y16f{bottom:260.670000px;}
.y145{bottom:264.270000px;}
.ycd{bottom:265.710000px;}
.y187{bottom:266.070000px;}
.y42{bottom:266.430000px;}
.y82{bottom:270.570000px;}
.y10b{bottom:277.590000px;}
.y16e{bottom:277.950000px;}
.y144{bottom:281.550000px;}
.y41{bottom:283.710000px;}
.y81{bottom:287.670000px;}
.y10a{bottom:294.870000px;}
.y9d{bottom:295.020000px;}
.y16d{bottom:295.230000px;}
.y143{bottom:298.650000px;}
.y40{bottom:300.990000px;}
.y80{bottom:304.950000px;}
.y16c{bottom:312.510000px;}
.ycc{bottom:313.050000px;}
.y142{bottom:315.930000px;}
.y3f{bottom:318.270000px;}
.y7f{bottom:322.230000px;}
.y186{bottom:328.170000px;}
.yca{bottom:329.250000px;}
.y16b{bottom:329.790000px;}
.y109{bottom:331.410000px;}
.y141{bottom:333.210000px;}
.y3e{bottom:335.370000px;}
.y7e{bottom:339.510000px;}
.y16a{bottom:347.070000px;}
.y108{bottom:349.770000px;}
.y140{bottom:350.490000px;}
.y97{bottom:350.820000px;}
.y3d{bottom:352.650000px;}
.y7d{bottom:356.790000px;}
.yef{bottom:360.030000px;}
.yc9{bottom:363.810000px;}
.y169{bottom:364.170000px;}
.y107{bottom:367.050000px;}
.y13f{bottom:367.770000px;}
.y3c{bottom:369.930000px;}
.yee{bottom:370.290000px;}
.y7c{bottom:374.070000px;}
.yc8{bottom:381.090000px;}
.y168{bottom:381.450000px;}
.y106{bottom:384.330000px;}
.y13e{bottom:385.050000px;}
.y3b{bottom:387.210000px;}
.yed{bottom:387.570000px;}
.y7b{bottom:391.170000px;}
.yc7{bottom:398.190000px;}
.y167{bottom:398.730000px;}
.y105{bottom:401.430000px;}
.y13d{bottom:402.150000px;}
.y3a{bottom:404.490000px;}
.yec{bottom:404.670000px;}
.y94{bottom:406.440000px;}
.y7a{bottom:408.450000px;}
.yc6{bottom:415.470000px;}
.y166{bottom:416.010000px;}
.y104{bottom:418.710000px;}
.y13c{bottom:419.430000px;}
.y39{bottom:421.770000px;}
.yeb{bottom:421.950000px;}
.y79{bottom:425.775000px;}
.y4c{bottom:428.295000px;}
.yc5{bottom:432.795000px;}
.y165{bottom:433.335000px;}
.y103{bottom:436.035000px;}
.y13b{bottom:436.755000px;}
.y38{bottom:438.915000px;}
.yea{bottom:439.275000px;}
.y78{bottom:443.055000px;}
.yc4{bottom:450.075000px;}
.y164{bottom:450.435000px;}
.y13a{bottom:454.035000px;}
.y102{bottom:454.395000px;}
.y37{bottom:456.195000px;}
.ye9{bottom:456.555000px;}
.y9c{bottom:460.080000px;}
.y77{bottom:460.335000px;}
.yc3{bottom:467.355000px;}
.y163{bottom:467.715000px;}
.y139{bottom:471.315000px;}
.y101{bottom:472.755000px;}
.y36{bottom:473.475000px;}
.ye8{bottom:473.835000px;}
.y76{bottom:477.435000px;}
.yc2{bottom:484.635000px;}
.y162{bottom:484.995000px;}
.y138{bottom:488.595000px;}
.y35{bottom:490.035000px;}
.ye7{bottom:490.935000px;}
.y75{bottom:494.715000px;}
.yc1{bottom:501.735000px;}
.y161{bottom:502.275000px;}
.y34{bottom:504.795000px;}
.y137{bottom:505.695000px;}
.ye6{bottom:508.215000px;}
.y92{bottom:510.660000px;}
.y74{bottom:511.995000px;}
.y33{bottom:518.655000px;}
.yc0{bottom:519.015000px;}
.y160{bottom:519.555000px;}
.ye5{bottom:525.495000px;}
.y73{bottom:529.275000px;}
.y32{bottom:532.515000px;}
.ybf{bottom:536.295000px;}
.y15f{bottom:536.835000px;}
.y136{bottom:540.255000px;}
.ye4{bottom:542.775000px;}
.y31{bottom:546.375000px;}
.y72{bottom:546.555000px;}
.ybe{bottom:553.575000px;}
.y15e{bottom:553.935000px;}
.y135{bottom:557.535000px;}
.y30{bottom:560.055000px;}
.y8f{bottom:562.680000px;}
.y71{bottom:563.835000px;}
.ybd{bottom:570.855000px;}
.y15d{bottom:571.215000px;}
.y2f{bottom:573.915000px;}
.y134{bottom:574.815000px;}
.ye3{bottom:577.335000px;}
.y70{bottom:580.935000px;}
.y2e{bottom:587.775000px;}
.ybc{bottom:588.135000px;}
.y15c{bottom:588.495000px;}
.y133{bottom:591.915000px;}
.ye2{bottom:594.435000px;}
.y6f{bottom:598.215000px;}
.y2d{bottom:601.455000px;}
.ybb{bottom:605.235000px;}
.y15b{bottom:605.775000px;}
.y132{bottom:609.195000px;}
.ye1{bottom:611.715000px;}
.y2c{bottom:615.315000px;}
.y6e{bottom:615.495000px;}
.yba{bottom:622.515000px;}
.y15a{bottom:623.055000px;}
.y131{bottom:626.475000px;}
.ye0{bottom:628.995000px;}
.y2b{bottom:629.175000px;}
.y8d{bottom:629.640000px;}
.y6d{bottom:632.775000px;}
.y159{bottom:640.335000px;}
.yb9{bottom:640.875000px;}
.y2a{bottom:642.855000px;}
.y130{bottom:643.755000px;}
.ydf{bottom:646.275000px;}
.y6c{bottom:650.055000px;}
.y29{bottom:656.715000px;}
.y158{bottom:657.435000px;}
.yb8{bottom:659.235000px;}
.y12f{bottom:661.035000px;}
.yde{bottom:663.555000px;}
.y6b{bottom:667.365000px;}
.y28{bottom:670.605000px;}
.y157{bottom:674.745000px;}
.yb7{bottom:677.625000px;}
.y12e{bottom:678.345000px;}
.ydd{bottom:680.865000px;}
.y27{bottom:684.285000px;}
.y6a{bottom:684.465000px;}
.y156{bottom:692.025000px;}
.y12d{bottom:695.445000px;}
.yb6{bottom:695.805000px;}
.ydc{bottom:697.965000px;}
.y26{bottom:698.145000px;}
.y69{bottom:701.745000px;}
.y155{bottom:709.305000px;}
.y25{bottom:712.005000px;}
.y12c{bottom:712.725000px;}
.yb5{bottom:714.165000px;}
.ydb{bottom:715.245000px;}
.y68{bottom:719.025000px;}
.y24{bottom:725.685000px;}
.y154{bottom:726.585000px;}
.y12b{bottom:730.005000px;}
.yb4{bottom:732.525000px;}
.y67{bottom:736.305000px;}
.y23{bottom:739.545000px;}
.y153{bottom:743.865000px;}
.y12a{bottom:747.285000px;}
.yb3{bottom:749.805000px;}
.y22{bottom:753.405000px;}
.y66{bottom:753.585000px;}
.y152{bottom:760.965000px;}
.y129{bottom:764.565000px;}
.y21{bottom:767.085000px;}
.y65{bottom:770.865000px;}
.y151{bottom:778.245000px;}
.y20{bottom:780.945000px;}
.y128{bottom:781.845000px;}
.yb2{bottom:784.365000px;}
.y64{bottom:787.965000px;}
.y1f{bottom:794.805000px;}
.y150{bottom:795.525000px;}
.y127{bottom:798.945000px;}
.yb1{bottom:801.465000px;}
.y63{bottom:805.245000px;}
.y1e{bottom:808.665000px;}
.y185{bottom:812.805000px;}
.yb0{bottom:818.745000px;}
.y126{bottom:820.725000px;}
.y62{bottom:822.525000px;}
.y1d{bottom:825.765000px;}
.y184{bottom:830.085000px;}
.yaf{bottom:836.025000px;}
.y61{bottom:839.805000px;}
.y125{bottom:842.505000px;}
.y1c{bottom:842.865000px;}
.y183{bottom:847.185000px;}
.y14f{bottom:850.245000px;}
.yae{bottom:853.305000px;}
.y60{bottom:857.085000px;}
.y124{bottom:859.785000px;}
.y1b{bottom:860.145000px;}
.y182{bottom:864.465000px;}
.yad{bottom:870.585000px;}
.y5f{bottom:874.185000px;}
.y1a{bottom:877.425000px;}
.y123{bottom:878.145000px;}
.y181{bottom:881.745000px;}
.yac{bottom:887.685000px;}
.y5e{bottom:891.465000px;}
.y19{bottom:894.705000px;}
.y122{bottom:896.325000px;}
.y180{bottom:899.025000px;}
.yab{bottom:904.965000px;}
.y5d{bottom:908.790000px;}
.y18{bottom:912.030000px;}
.y121{bottom:914.730000px;}
.y17f{bottom:916.350000px;}
.yaa{bottom:922.290000px;}
.y5c{bottom:926.070000px;}
.y17{bottom:929.130000px;}
.y120{bottom:932.010000px;}
.y17e{bottom:933.630000px;}
.ya9{bottom:939.570000px;}
.y5b{bottom:943.350000px;}
.y16{bottom:946.410000px;}
.y11f{bottom:949.290000px;}
.y17d{bottom:950.730000px;}
.ya8{bottom:956.850000px;}
.y5a{bottom:960.630000px;}
.y15{bottom:963.690000px;}
.y11e{bottom:966.570000px;}
.y17c{bottom:968.010000px;}
.ya7{bottom:974.130000px;}
.y14{bottom:980.970000px;}
.y59{bottom:982.230000px;}
.y11d{bottom:983.850000px;}
.y17b{bottom:985.290000px;}
.ya6{bottom:991.230000px;}
.y13{bottom:998.250000px;}
.y11c{bottom:1002.030000px;}
.y17a{bottom:1002.570000px;}
.y58{bottom:1004.010000px;}
.ya5{bottom:1008.510000px;}
.y12{bottom:1015.530000px;}
.y179{bottom:1019.850000px;}
.y11b{bottom:1020.390000px;}
.y57{bottom:1021.290000px;}
.ya4{bottom:1025.790000px;}
.y11{bottom:1033.350000px;}
.y56{bottom:1038.570000px;}
.y11a{bottom:1038.750000px;}
.ya3{bottom:1043.070000px;}
.y10{bottom:1054.050000px;}
.y55{bottom:1055.850000px;}
.y119{bottom:1057.110000px;}
.ya2{bottom:1060.350000px;}
.y54{bottom:1073.130000px;}
.y178{bottom:1074.570000px;}
.yf{bottom:1074.750000px;}
.y118{bottom:1075.470000px;}
.ya1{bottom:1077.630000px;}
.y53{bottom:1090.230000px;}
.y117{bottom:1093.650000px;}
.ye{bottom:1094.730000px;}
.y52{bottom:1107.510000px;}
.y116{bottom:1110.930000px;}
.yd{bottom:1112.010000px;}
.y51{bottom:1124.790000px;}
.yc{bottom:1129.290000px;}
.y50{bottom:1142.070000px;}
.yb{bottom:1146.570000px;}
.ya{bottom:1163.880000px;}
.y5{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h2d{height:5.653125px;}
.h14{height:14.220000px;}
.h1b{height:15.480000px;}
.h25{height:15.660000px;}
.h20{height:17.666016px;}
.h5{height:17.903320px;}
.h2{height:20.340000px;}
.h24{height:20.520000px;}
.h6{height:21.420000px;}
.h3{height:27.210938px;}
.h1f{height:29.678906px;}
.h18{height:29.880000px;}
.h16{height:30.060000px;}
.h12{height:31.564687px;}
.he{height:33.824531px;}
.h2a{height:35.280000px;}
.h1d{height:37.863281px;}
.h2b{height:40.985156px;}
.hf{height:41.902031px;}
.h1c{height:46.620000px;}
.hd{height:47.321367px;}
.h4{height:47.344922px;}
.h2c{height:48.616875px;}
.h7{height:50.068125px;}
.h15{height:50.171484px;}
.h19{height:50.312812px;}
.h17{height:51.519375px;}
.h26{height:52.971680px;}
.h23{height:52.998023px;}
.h13{height:52.998047px;}
.h28{height:53.709961px;}
.hc{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h1a{height:61.423863px;}
.h27{height:62.100000px;}
.h29{height:62.136000px;}
.h8{height:65.884219px;}
.h10{height:67.140000px;}
.ha{height:72.562500px;}
.h1e{height:93.276000px;}
.h22{height:157.500000px;}
.h21{height:205.560000px;}
.h11{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:20.700000px;}
.w3{width:21.240000px;}
.w11{width:39.420000px;}
.w7{width:61.920000px;}
.w13{width:84.960000px;}
.w9{width:157.530000px;}
.wd{width:211.530000px;}
.w2{width:228.990000px;}
.wa{width:253.110000px;}
.w8{width:269.670000px;}
.w4{width:434.415000px;}
.wf{width:450.720000px;}
.we{width:466.635000px;}
.wb{width:529.200000px;}
.w14{width:595.545000px;}
.wc{width:615.960000px;}
.w12{width:682.485000px;}
.w6{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:2.415000px;}
.x36{left:5.220000px;}
.x19{left:6.840000px;}
.x2{left:8.100000px;}
.x4{left:9.360000px;}
.x22{left:11.010000px;}
.x2d{left:12.960000px;}
.x1b{left:35.640000px;}
.x2c{left:48.345000px;}
.x1d{left:50.040000px;}
.x32{left:55.074000px;}
.x34{left:74.334000px;}
.x24{left:79.374000px;}
.x18{left:99.756000px;}
.x1{left:104.256000px;}
.x8{left:106.415987px;}
.x33{left:114.516000px;}
.x17{left:127.655987px;}
.x31{left:133.235987px;}
.x20{left:150.015000px;}
.x30{left:155.909987px;}
.x21{left:159.840000px;}
.x16{left:161.669987px;}
.x15{left:162.929987px;}
.xa{left:173.549987px;}
.x26{left:194.610000px;}
.x35{left:199.470000px;}
.xc{left:213.329987px;}
.x2a{left:221.040000px;}
.x6{left:222.150000px;}
.x1f{left:240.660000px;}
.x1e{left:277.589987px;}
.x23{left:285.554987px;}
.x25{left:319.395000px;}
.x29{left:324.254987px;}
.x3{left:333.255000px;}
.x9{left:335.019000px;}
.x2f{left:336.819000px;}
.x5{left:354.495000px;}
.x1a{left:376.095000px;}
.xd{left:419.114987px;}
.x2e{left:426.855000px;}
.x12{left:442.874987px;}
.xb{left:446.474987px;}
.xe{left:448.814987px;}
.x28{left:467.714987px;}
.x1c{left:533.625000px;}
.x13{left:580.424987px;}
.xf{left:596.984987px;}
.x10{left:637.124987px;}
.x14{left:661.244987px;}
.x27{left:671.864987px;}
.x11{left:685.589987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.837333pt;}
.ls21{letter-spacing:-0.757333pt;}
.ls39{letter-spacing:-0.656000pt;}
.ls3d{letter-spacing:-0.624000pt;}
.ls38{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.117867pt;}
.ls1c{letter-spacing:-0.112533pt;}
.ls3b{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.046080pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016000pt;}
.ls31{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls35{letter-spacing:0.086933pt;}
.ls32{letter-spacing:0.096000pt;}
.ls3c{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.116480pt;}
.ls34{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.186880pt;}
.ls12{letter-spacing:0.228480pt;}
.ls1d{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls3e{letter-spacing:0.239467pt;}
.ls36{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.416000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.725333pt;}
.lse{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.440000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:3.360000pt;}
.ls13{letter-spacing:4.000000pt;}
.ls2{letter-spacing:5.920000pt;}
.ls5{letter-spacing:6.560000pt;}
.ls17{letter-spacing:7.200000pt;}
.ls15{letter-spacing:7.632640pt;}
.ls22{letter-spacing:7.840000pt;}
.ls1a{letter-spacing:9.760000pt;}
.ls2e{letter-spacing:10.400000pt;}
.ls30{letter-spacing:10.560000pt;}
.ls29{letter-spacing:11.040000pt;}
.ls1f{letter-spacing:11.680000pt;}
.ls2c{letter-spacing:13.392640pt;}
.ls1e{letter-spacing:14.880000pt;}
.ls28{letter-spacing:19.131307pt;}
.ls14{letter-spacing:20.000000pt;}
.ls2d{letter-spacing:20.640000pt;}
.ls4{letter-spacing:21.280000pt;}
.ls27{letter-spacing:21.440000pt;}
.ls26{letter-spacing:25.280000pt;}
.ls25{letter-spacing:28.960000pt;}
.ls2b{letter-spacing:39.611307pt;}
.ls24{letter-spacing:45.371307pt;}
.ls33{letter-spacing:82.720000pt;}
.ls23{letter-spacing:928.960000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws14{word-spacing:-48.416000pt;}
.ws13{word-spacing:-48.240000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws0{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.072213pt;}
.wsb{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.366933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.167467pt;}
.ws3{word-spacing:-12.800000pt;}
.ws1c{word-spacing:-12.320000pt;}
.ws1b{word-spacing:-12.160000pt;}
.ws1a{word-spacing:-12.112000pt;}
.ws16{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.456000pt;}
.ws8{word-spacing:-11.360000pt;}
.ws17{word-spacing:-11.344000pt;}
.ws1e{word-spacing:-11.040000pt;}
.ws1d{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:-8.945920pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:136.613333pt;}
._d{margin-left:-3.252480pt;}
._c{margin-left:-2.303360pt;}
._0{margin-left:-0.912640pt;}
._1{width:0.969600pt;}
._2{width:1.979307pt;}
._13{width:2.921600pt;}
._8{width:3.982080pt;}
._7{width:5.169920pt;}
._b{width:6.641920pt;}
._14{width:7.677867pt;}
._17{width:8.767147pt;}
._6{width:9.665920pt;}
._11{width:10.677120pt;}
._12{width:11.661440pt;}
._3{width:12.606720pt;}
._9{width:14.321920pt;}
._a{width:15.219200pt;}
._e{width:16.520320pt;}
._4{width:18.193280pt;}
._19{width:19.130880pt;}
._5{width:20.322347pt;}
._f{width:21.301120pt;}
._10{width:22.352853pt;}
._18{width:23.638400pt;}
._1c{width:24.604160pt;}
._1a{width:25.603840pt;}
._1b{width:27.170560pt;}
._15{width:28.525440pt;}
._16{width:29.428480pt;}
._1e{width:31.990400pt;}
._1f{width:32.887680pt;}
._21{width:81.888000pt;}
._20{width:82.880000pt;}
._1d{width:103.198720pt;}
.fsd{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fs1{font-size:29.440000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fsb{font-size:45.568000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:1.986667pt;}
.y191{bottom:2.240000pt;}
.ycb{bottom:2.560000pt;}
.y96{bottom:2.586667pt;}
.y91{bottom:2.626667pt;}
.y9b{bottom:2.720000pt;}
.y9e{bottom:2.746667pt;}
.y4d{bottom:3.360000pt;}
.y4f{bottom:3.840000pt;}
.yfc{bottom:4.320000pt;}
.y8{bottom:5.600000pt;}
.y4e{bottom:5.760000pt;}
.y2{bottom:6.240000pt;}
.y4{bottom:6.400000pt;}
.y100{bottom:6.880000pt;}
.yd1{bottom:9.440000pt;}
.yfe{bottom:9.600000pt;}
.y3{bottom:10.720000pt;}
.y192{bottom:14.720000pt;}
.y98{bottom:15.546667pt;}
.y93{bottom:15.586667pt;}
.y9a{bottom:15.680000pt;}
.y95{bottom:15.706667pt;}
.y90{bottom:15.746667pt;}
.ycf{bottom:16.320000pt;}
.y18d{bottom:16.346667pt;}
.yd8{bottom:16.480000pt;}
.yf6{bottom:18.400000pt;}
.yd0{bottom:23.200000pt;}
.y9{bottom:29.280000pt;}
.yce{bottom:30.240000pt;}
.y18c{bottom:30.266667pt;}
.yd4{bottom:37.120000pt;}
.y7{bottom:43.200000pt;}
.yd7{bottom:44.000000pt;}
.y18b{bottom:44.026667pt;}
.yf7{bottom:48.160000pt;}
.yd6{bottom:57.786667pt;}
.y6{bottom:64.800000pt;}
.yd5{bottom:71.706667pt;}
.y193{bottom:76.800000pt;}
.yf8{bottom:77.920000pt;}
.yda{bottom:82.080000pt;}
.y4b{bottom:86.720000pt;}
.y8c{bottom:87.040000pt;}
.yf4{bottom:88.000000pt;}
.y115{bottom:90.560000pt;}
.y14e{bottom:96.800000pt;}
.yd9{bottom:97.440000pt;}
.y8b{bottom:102.400000pt;}
.yf3{bottom:103.360000pt;}
.y114{bottom:105.760000pt;}
.y4a{bottom:106.080000pt;}
.yf9{bottom:107.680000pt;}
.y177{bottom:109.120000pt;}
.yd3{bottom:110.560000pt;}
.y190{bottom:111.840000pt;}
.y14d{bottom:112.160000pt;}
.yf2{bottom:116.640000pt;}
.y8a{bottom:117.760000pt;}
.yff{bottom:119.680000pt;}
.y113{bottom:121.120000pt;}
.y49{bottom:121.440000pt;}
.yf1{bottom:123.200000pt;}
.y176{bottom:124.480000pt;}
.y18f{bottom:125.920000pt;}
.y99{bottom:126.560000pt;}
.y14c{bottom:127.520000pt;}
.y89{bottom:133.120000pt;}
.yf0{bottom:135.680000pt;}
.yf5{bottom:136.000000pt;}
.y112{bottom:136.480000pt;}
.y48{bottom:136.800000pt;}
.yfa{bottom:137.440000pt;}
.y175{bottom:139.680000pt;}
.y18e{bottom:141.280000pt;}
.y14b{bottom:142.880000pt;}
.y88{bottom:148.480000pt;}
.y111{bottom:151.840000pt;}
.y47{bottom:152.160000pt;}
.y18a{bottom:153.760000pt;}
.y174{bottom:155.040000pt;}
.y14a{bottom:158.240000pt;}
.y87{bottom:163.706667pt;}
.yfd{bottom:166.240000pt;}
.yfb{bottom:167.200000pt;}
.y110{bottom:168.186667pt;}
.y173{bottom:170.426667pt;}
.y46{bottom:171.546667pt;}
.ya0{bottom:172.320000pt;}
.y149{bottom:173.466667pt;}
.y86{bottom:179.066667pt;}
.y10f{bottom:184.346667pt;}
.y172{bottom:185.786667pt;}
.y148{bottom:188.826667pt;}
.y45{bottom:190.906667pt;}
.yd2{bottom:194.106667pt;}
.y85{bottom:194.426667pt;}
.y10e{bottom:200.666667pt;}
.y171{bottom:201.146667pt;}
.y147{bottom:204.186667pt;}
.y44{bottom:206.106667pt;}
.y189{bottom:208.986667pt;}
.y84{bottom:209.786667pt;}
.y10d{bottom:216.026667pt;}
.y170{bottom:216.506667pt;}
.y9f{bottom:216.640000pt;}
.y146{bottom:219.546667pt;}
.y43{bottom:221.466667pt;}
.y188{bottom:222.746667pt;}
.y83{bottom:225.146667pt;}
.y10c{bottom:231.386667pt;}
.y16f{bottom:231.706667pt;}
.y145{bottom:234.906667pt;}
.ycd{bottom:236.186667pt;}
.y187{bottom:236.506667pt;}
.y42{bottom:236.826667pt;}
.y82{bottom:240.506667pt;}
.y10b{bottom:246.746667pt;}
.y16e{bottom:247.066667pt;}
.y144{bottom:250.266667pt;}
.y41{bottom:252.186667pt;}
.y81{bottom:255.706667pt;}
.y10a{bottom:262.106667pt;}
.y9d{bottom:262.240000pt;}
.y16d{bottom:262.426667pt;}
.y143{bottom:265.466667pt;}
.y40{bottom:267.546667pt;}
.y80{bottom:271.066667pt;}
.y16c{bottom:277.786667pt;}
.ycc{bottom:278.266667pt;}
.y142{bottom:280.826667pt;}
.y3f{bottom:282.906667pt;}
.y7f{bottom:286.426667pt;}
.y186{bottom:291.706667pt;}
.yca{bottom:292.666667pt;}
.y16b{bottom:293.146667pt;}
.y109{bottom:294.586667pt;}
.y141{bottom:296.186667pt;}
.y3e{bottom:298.106667pt;}
.y7e{bottom:301.786667pt;}
.y16a{bottom:308.506667pt;}
.y108{bottom:310.906667pt;}
.y140{bottom:311.546667pt;}
.y97{bottom:311.840000pt;}
.y3d{bottom:313.466667pt;}
.y7d{bottom:317.146667pt;}
.yef{bottom:320.026667pt;}
.yc9{bottom:323.386667pt;}
.y169{bottom:323.706667pt;}
.y107{bottom:326.266667pt;}
.y13f{bottom:326.906667pt;}
.y3c{bottom:328.826667pt;}
.yee{bottom:329.146667pt;}
.y7c{bottom:332.506667pt;}
.yc8{bottom:338.746667pt;}
.y168{bottom:339.066667pt;}
.y106{bottom:341.626667pt;}
.y13e{bottom:342.266667pt;}
.y3b{bottom:344.186667pt;}
.yed{bottom:344.506667pt;}
.y7b{bottom:347.706667pt;}
.yc7{bottom:353.946667pt;}
.y167{bottom:354.426667pt;}
.y105{bottom:356.826667pt;}
.y13d{bottom:357.466667pt;}
.y3a{bottom:359.546667pt;}
.yec{bottom:359.706667pt;}
.y94{bottom:361.280000pt;}
.y7a{bottom:363.066667pt;}
.yc6{bottom:369.306667pt;}
.y166{bottom:369.786667pt;}
.y104{bottom:372.186667pt;}
.y13c{bottom:372.826667pt;}
.y39{bottom:374.906667pt;}
.yeb{bottom:375.066667pt;}
.y79{bottom:378.466667pt;}
.y4c{bottom:380.706667pt;}
.yc5{bottom:384.706667pt;}
.y165{bottom:385.186667pt;}
.y103{bottom:387.586667pt;}
.y13b{bottom:388.226667pt;}
.y38{bottom:390.146667pt;}
.yea{bottom:390.466667pt;}
.y78{bottom:393.826667pt;}
.yc4{bottom:400.066667pt;}
.y164{bottom:400.386667pt;}
.y13a{bottom:403.586667pt;}
.y102{bottom:403.906667pt;}
.y37{bottom:405.506667pt;}
.ye9{bottom:405.826667pt;}
.y9c{bottom:408.960000pt;}
.y77{bottom:409.186667pt;}
.yc3{bottom:415.426667pt;}
.y163{bottom:415.746667pt;}
.y139{bottom:418.946667pt;}
.y101{bottom:420.226667pt;}
.y36{bottom:420.866667pt;}
.ye8{bottom:421.186667pt;}
.y76{bottom:424.386667pt;}
.yc2{bottom:430.786667pt;}
.y162{bottom:431.106667pt;}
.y138{bottom:434.306667pt;}
.y35{bottom:435.586667pt;}
.ye7{bottom:436.386667pt;}
.y75{bottom:439.746667pt;}
.yc1{bottom:445.986667pt;}
.y161{bottom:446.466667pt;}
.y34{bottom:448.706667pt;}
.y137{bottom:449.506667pt;}
.ye6{bottom:451.746667pt;}
.y92{bottom:453.920000pt;}
.y74{bottom:455.106667pt;}
.y33{bottom:461.026667pt;}
.yc0{bottom:461.346667pt;}
.y160{bottom:461.826667pt;}
.ye5{bottom:467.106667pt;}
.y73{bottom:470.466667pt;}
.y32{bottom:473.346667pt;}
.ybf{bottom:476.706667pt;}
.y15f{bottom:477.186667pt;}
.y136{bottom:480.226667pt;}
.ye4{bottom:482.466667pt;}
.y31{bottom:485.666667pt;}
.y72{bottom:485.826667pt;}
.ybe{bottom:492.066667pt;}
.y15e{bottom:492.386667pt;}
.y135{bottom:495.586667pt;}
.y30{bottom:497.826667pt;}
.y8f{bottom:500.160000pt;}
.y71{bottom:501.186667pt;}
.ybd{bottom:507.426667pt;}
.y15d{bottom:507.746667pt;}
.y2f{bottom:510.146667pt;}
.y134{bottom:510.946667pt;}
.ye3{bottom:513.186667pt;}
.y70{bottom:516.386667pt;}
.y2e{bottom:522.466667pt;}
.ybc{bottom:522.786667pt;}
.y15c{bottom:523.106667pt;}
.y133{bottom:526.146667pt;}
.ye2{bottom:528.386667pt;}
.y6f{bottom:531.746667pt;}
.y2d{bottom:534.626667pt;}
.ybb{bottom:537.986667pt;}
.y15b{bottom:538.466667pt;}
.y132{bottom:541.506667pt;}
.ye1{bottom:543.746667pt;}
.y2c{bottom:546.946667pt;}
.y6e{bottom:547.106667pt;}
.yba{bottom:553.346667pt;}
.y15a{bottom:553.826667pt;}
.y131{bottom:556.866667pt;}
.ye0{bottom:559.106667pt;}
.y2b{bottom:559.266667pt;}
.y8d{bottom:559.680000pt;}
.y6d{bottom:562.466667pt;}
.y159{bottom:569.186667pt;}
.yb9{bottom:569.666667pt;}
.y2a{bottom:571.426667pt;}
.y130{bottom:572.226667pt;}
.ydf{bottom:574.466667pt;}
.y6c{bottom:577.826667pt;}
.y29{bottom:583.746667pt;}
.y158{bottom:584.386667pt;}
.yb8{bottom:585.986667pt;}
.y12f{bottom:587.586667pt;}
.yde{bottom:589.826667pt;}
.y6b{bottom:593.213333pt;}
.y28{bottom:596.093333pt;}
.y157{bottom:599.773333pt;}
.yb7{bottom:602.333333pt;}
.y12e{bottom:602.973333pt;}
.ydd{bottom:605.213333pt;}
.y27{bottom:608.253333pt;}
.y6a{bottom:608.413333pt;}
.y156{bottom:615.133333pt;}
.y12d{bottom:618.173333pt;}
.yb6{bottom:618.493333pt;}
.ydc{bottom:620.413333pt;}
.y26{bottom:620.573333pt;}
.y69{bottom:623.773333pt;}
.y155{bottom:630.493333pt;}
.y25{bottom:632.893333pt;}
.y12c{bottom:633.533333pt;}
.yb5{bottom:634.813333pt;}
.ydb{bottom:635.773333pt;}
.y68{bottom:639.133333pt;}
.y24{bottom:645.053333pt;}
.y154{bottom:645.853333pt;}
.y12b{bottom:648.893333pt;}
.yb4{bottom:651.133333pt;}
.y67{bottom:654.493333pt;}
.y23{bottom:657.373333pt;}
.y153{bottom:661.213333pt;}
.y12a{bottom:664.253333pt;}
.yb3{bottom:666.493333pt;}
.y22{bottom:669.693333pt;}
.y66{bottom:669.853333pt;}
.y152{bottom:676.413333pt;}
.y129{bottom:679.613333pt;}
.y21{bottom:681.853333pt;}
.y65{bottom:685.213333pt;}
.y151{bottom:691.773333pt;}
.y20{bottom:694.173333pt;}
.y128{bottom:694.973333pt;}
.yb2{bottom:697.213333pt;}
.y64{bottom:700.413333pt;}
.y1f{bottom:706.493333pt;}
.y150{bottom:707.133333pt;}
.y127{bottom:710.173333pt;}
.yb1{bottom:712.413333pt;}
.y63{bottom:715.773333pt;}
.y1e{bottom:718.813333pt;}
.y185{bottom:722.493333pt;}
.yb0{bottom:727.773333pt;}
.y126{bottom:729.533333pt;}
.y62{bottom:731.133333pt;}
.y1d{bottom:734.013333pt;}
.y184{bottom:737.853333pt;}
.yaf{bottom:743.133333pt;}
.y61{bottom:746.493333pt;}
.y125{bottom:748.893333pt;}
.y1c{bottom:749.213333pt;}
.y183{bottom:753.053333pt;}
.y14f{bottom:755.773333pt;}
.yae{bottom:758.493333pt;}
.y60{bottom:761.853333pt;}
.y124{bottom:764.253333pt;}
.y1b{bottom:764.573333pt;}
.y182{bottom:768.413333pt;}
.yad{bottom:773.853333pt;}
.y5f{bottom:777.053333pt;}
.y1a{bottom:779.933333pt;}
.y123{bottom:780.573333pt;}
.y181{bottom:783.773333pt;}
.yac{bottom:789.053333pt;}
.y5e{bottom:792.413333pt;}
.y19{bottom:795.293333pt;}
.y122{bottom:796.733333pt;}
.y180{bottom:799.133333pt;}
.yab{bottom:804.413333pt;}
.y5d{bottom:807.813333pt;}
.y18{bottom:810.693333pt;}
.y121{bottom:813.093333pt;}
.y17f{bottom:814.533333pt;}
.yaa{bottom:819.813333pt;}
.y5c{bottom:823.173333pt;}
.y17{bottom:825.893333pt;}
.y120{bottom:828.453333pt;}
.y17e{bottom:829.893333pt;}
.ya9{bottom:835.173333pt;}
.y5b{bottom:838.533333pt;}
.y16{bottom:841.253333pt;}
.y11f{bottom:843.813333pt;}
.y17d{bottom:845.093333pt;}
.ya8{bottom:850.533333pt;}
.y5a{bottom:853.893333pt;}
.y15{bottom:856.613333pt;}
.y11e{bottom:859.173333pt;}
.y17c{bottom:860.453333pt;}
.ya7{bottom:865.893333pt;}
.y14{bottom:871.973333pt;}
.y59{bottom:873.093333pt;}
.y11d{bottom:874.533333pt;}
.y17b{bottom:875.813333pt;}
.ya6{bottom:881.093333pt;}
.y13{bottom:887.333333pt;}
.y11c{bottom:890.693333pt;}
.y17a{bottom:891.173333pt;}
.y58{bottom:892.453333pt;}
.ya5{bottom:896.453333pt;}
.y12{bottom:902.693333pt;}
.y179{bottom:906.533333pt;}
.y11b{bottom:907.013333pt;}
.y57{bottom:907.813333pt;}
.ya4{bottom:911.813333pt;}
.y11{bottom:918.533333pt;}
.y56{bottom:923.173333pt;}
.y11a{bottom:923.333333pt;}
.ya3{bottom:927.173333pt;}
.y10{bottom:936.933333pt;}
.y55{bottom:938.533333pt;}
.y119{bottom:939.653333pt;}
.ya2{bottom:942.533333pt;}
.y54{bottom:953.893333pt;}
.y178{bottom:955.173333pt;}
.yf{bottom:955.333333pt;}
.y118{bottom:955.973333pt;}
.ya1{bottom:957.893333pt;}
.y53{bottom:969.093333pt;}
.y117{bottom:972.133333pt;}
.ye{bottom:973.093333pt;}
.y52{bottom:984.453333pt;}
.y116{bottom:987.493333pt;}
.yd{bottom:988.453333pt;}
.y51{bottom:999.813333pt;}
.yc{bottom:1003.813333pt;}
.y50{bottom:1015.173333pt;}
.yb{bottom:1019.173333pt;}
.ya{bottom:1034.560000pt;}
.y5{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h2d{height:5.025000pt;}
.h14{height:12.640000pt;}
.h1b{height:13.760000pt;}
.h25{height:13.920000pt;}
.h20{height:15.703125pt;}
.h5{height:15.914062pt;}
.h2{height:18.080000pt;}
.h24{height:18.240000pt;}
.h6{height:19.040000pt;}
.h3{height:24.187500pt;}
.h1f{height:26.381250pt;}
.h18{height:26.560000pt;}
.h16{height:26.720000pt;}
.h12{height:28.057500pt;}
.he{height:30.066250pt;}
.h2a{height:31.360000pt;}
.h1d{height:33.656250pt;}
.h2b{height:36.431250pt;}
.hf{height:37.246250pt;}
.h1c{height:41.440000pt;}
.hd{height:42.063437pt;}
.h4{height:42.084375pt;}
.h2c{height:43.215000pt;}
.h7{height:44.505000pt;}
.h15{height:44.596875pt;}
.h19{height:44.722500pt;}
.h17{height:45.795000pt;}
.h26{height:47.085938pt;}
.h23{height:47.109354pt;}
.h13{height:47.109375pt;}
.h28{height:47.742188pt;}
.hc{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h27{height:55.200000pt;}
.h29{height:55.232000pt;}
.h8{height:58.563750pt;}
.h10{height:59.680000pt;}
.ha{height:64.500000pt;}
.h1e{height:82.912000pt;}
.h22{height:140.000000pt;}
.h21{height:182.720000pt;}
.h11{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:18.400000pt;}
.w3{width:18.880000pt;}
.w11{width:35.040000pt;}
.w7{width:55.040000pt;}
.w13{width:75.520000pt;}
.w9{width:140.026667pt;}
.wd{width:188.026667pt;}
.w2{width:203.546667pt;}
.wa{width:224.986667pt;}
.w8{width:239.706667pt;}
.w4{width:386.146667pt;}
.wf{width:400.640000pt;}
.we{width:414.786667pt;}
.wb{width:470.400000pt;}
.w14{width:529.373333pt;}
.wc{width:547.520000pt;}
.w12{width:606.653333pt;}
.w6{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:2.146667pt;}
.x36{left:4.640000pt;}
.x19{left:6.080000pt;}
.x2{left:7.200000pt;}
.x4{left:8.320000pt;}
.x22{left:9.786667pt;}
.x2d{left:11.520000pt;}
.x1b{left:31.680000pt;}
.x2c{left:42.973333pt;}
.x1d{left:44.480000pt;}
.x32{left:48.954667pt;}
.x34{left:66.074667pt;}
.x24{left:70.554667pt;}
.x18{left:88.672000pt;}
.x1{left:92.672000pt;}
.x8{left:94.591988pt;}
.x33{left:101.792000pt;}
.x17{left:113.471988pt;}
.x31{left:118.431988pt;}
.x20{left:133.346667pt;}
.x30{left:138.586655pt;}
.x21{left:142.080000pt;}
.x16{left:143.706655pt;}
.x15{left:144.826655pt;}
.xa{left:154.266655pt;}
.x26{left:172.986667pt;}
.x35{left:177.306667pt;}
.xc{left:189.626655pt;}
.x2a{left:196.480000pt;}
.x6{left:197.466667pt;}
.x1f{left:213.920000pt;}
.x1e{left:246.746655pt;}
.x23{left:253.826655pt;}
.x25{left:283.906667pt;}
.x29{left:288.226655pt;}
.x3{left:296.226667pt;}
.x9{left:297.794667pt;}
.x2f{left:299.394667pt;}
.x5{left:315.106667pt;}
.x1a{left:334.306667pt;}
.xd{left:372.546655pt;}
.x2e{left:379.426667pt;}
.x12{left:393.666655pt;}
.xb{left:396.866655pt;}
.xe{left:398.946655pt;}
.x28{left:415.746655pt;}
.x1c{left:474.333333pt;}
.x13{left:515.933322pt;}
.xf{left:530.653322pt;}
.x10{left:566.333322pt;}
.x14{left:587.773322pt;}
.x27{left:597.213322pt;}
.x11{left:609.413322pt;}
.x7{left:699.333322pt;}
}




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