
    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_130000dfe5cc160058d95dfe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_66768abd54ba94c2ca5a4f37.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_f54590b7e138d71a910ba0a2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_75cc07cac9642733d535ab43.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_36572b2f3be675a582795c58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060547;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_3d88ce507a6d439d629fd0b5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.182129;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_b549d3605a25db614cd5523d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.060547;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_3d88ce507a6d439d629fd0b5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.182129;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);}
.v7{vertical-align:-27.954000px;}
.v6{vertical-align:-16.977000px;}
.v2{vertical-align:-12.000000px;}
.v5{vertical-align:-10.977000px;}
.v1{vertical-align:-7.971600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.987800px;}
.va{vertical-align:15.130200px;}
.v4{vertical-align:16.645800px;}
.v9{vertical-align:20.973000px;}
.v8{vertical-align:36.000000px;}
.ls40{letter-spacing:-6.156000px;}
.ls8{letter-spacing:-4.428000px;}
.ls16{letter-spacing:-3.159000px;}
.ls46{letter-spacing:-3.105000px;}
.lsb{letter-spacing:-2.772000px;}
.ls18{letter-spacing:-2.553000px;}
.ls20{letter-spacing:-2.415000px;}
.ls3f{letter-spacing:-2.109000px;}
.ls21{letter-spacing:-1.932000px;}
.ls7{letter-spacing:-1.836000px;}
.ls23{letter-spacing:-1.725000px;}
.lsd{letter-spacing:-1.680000px;}
.ls1e{letter-spacing:-1.587000px;}
.lsa{letter-spacing:-1.512000px;}
.ls1d{letter-spacing:-1.380000px;}
.ls41{letter-spacing:-1.296000px;}
.ls42{letter-spacing:-1.134000px;}
.ls17{letter-spacing:-0.972000px;}
.ls1f{letter-spacing:-0.897000px;}
.ls15{letter-spacing:-0.855000px;}
.ls22{letter-spacing:-0.627000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls44{letter-spacing:-0.570000px;}
.ls4b{letter-spacing:-0.440748px;}
.ls6{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.180000px;}
.ls3e{letter-spacing:-0.171000px;}
.ls2{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000009px;}
.ls1{letter-spacing:0.000060px;}
.ls11{letter-spacing:0.000300px;}
.ls2c{letter-spacing:0.000609px;}
.ls26{letter-spacing:0.000618px;}
.ls1a{letter-spacing:0.002154px;}
.ls34{letter-spacing:0.003600px;}
.ls2d{letter-spacing:0.004200px;}
.ls10{letter-spacing:0.006840px;}
.ls0{letter-spacing:0.007440px;}
.ls3a{letter-spacing:0.007620px;}
.ls30{letter-spacing:0.007776px;}
.ls2f{letter-spacing:0.008376px;}
.ls33{letter-spacing:0.009003px;}
.ls1b{letter-spacing:0.009603px;}
.ls31{letter-spacing:0.015000px;}
.ls35{letter-spacing:0.019800px;}
.ls32{letter-spacing:0.023400px;}
.ls2e{letter-spacing:0.026400px;}
.ls36{letter-spacing:0.036000px;}
.ls45{letter-spacing:0.081000px;}
.ls37{letter-spacing:0.112800px;}
.ls57{letter-spacing:0.126000px;}
.ls3b{letter-spacing:0.139224px;}
.ls19{letter-spacing:0.194100px;}
.ls4a{letter-spacing:0.567000px;}
.ls9{letter-spacing:1.188000px;}
.ls12{letter-spacing:2.400000px;}
.ls4c{letter-spacing:4.095000px;}
.lse{letter-spacing:4.200000px;}
.ls39{letter-spacing:4.623000px;}
.ls48{letter-spacing:4.636800px;}
.ls2b{letter-spacing:5.106000px;}
.ls4e{letter-spacing:5.227551px;}
.lsf{letter-spacing:5.760000px;}
.ls38{letter-spacing:5.850000px;}
.lsc{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls24{letter-spacing:6.003000px;}
.ls56{letter-spacing:6.237000px;}
.ls14{letter-spacing:6.300000px;}
.ls47{letter-spacing:6.867000px;}
.ls43{letter-spacing:7.182900px;}
.ls58{letter-spacing:7.725000px;}
.ls4d{letter-spacing:7.799400px;}
.ls4f{letter-spacing:7.821600px;}
.ls13{letter-spacing:7.950000px;}
.ls27{letter-spacing:8.142000px;}
.ls28{letter-spacing:8.314500px;}
.ls4{letter-spacing:8.400000px;}
.ls50{letter-spacing:8.442000px;}
.ls2a{letter-spacing:8.550000px;}
.ls52{letter-spacing:14.414400px;}
.ls25{letter-spacing:14.448600px;}
.ls55{letter-spacing:14.597100px;}
.ls53{letter-spacing:14.616000px;}
.ls54{letter-spacing:14.679000px;}
.ls51{letter-spacing:15.227100px;}
.ls49{letter-spacing:17.690400px;}
.ls3c{letter-spacing:21.300000px;}
.ls3d{letter-spacing:121.418220px;}
.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;}
}
.ws19{word-spacing:-42.480000px;}
.ws25{word-spacing:-29.625000px;}
.ws41{word-spacing:-29.475000px;}
.ws11{word-spacing:-29.025000px;}
.ws4f{word-spacing:-28.800000px;}
.ws1{word-spacing:-27.864000px;}
.ws29{word-spacing:-26.925000px;}
.ws42{word-spacing:-24.570000px;}
.ws50{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.ws8{word-spacing:-22.620000px;}
.ws3d{word-spacing:-21.627000px;}
.ws13{word-spacing:-19.602000px;}
.ws1a{word-spacing:-19.389000px;}
.ws2{word-spacing:-19.236000px;}
.ws34{word-spacing:-18.711000px;}
.ws12{word-spacing:-18.102000px;}
.ws4d{word-spacing:-17.829000px;}
.ws47{word-spacing:-17.703000px;}
.ws14{word-spacing:-17.043000px;}
.ws6{word-spacing:-16.860000px;}
.ws0{word-spacing:-16.680000px;}
.ws20{word-spacing:-15.663000px;}
.ws48{word-spacing:-15.561000px;}
.ws1c{word-spacing:-15.456000px;}
.ws1f{word-spacing:-15.318000px;}
.ws1e{word-spacing:-15.111000px;}
.ws4{word-spacing:-14.820000px;}
.ws1d{word-spacing:-14.628000px;}
.ws15{word-spacing:-14.490000px;}
.ws2c{word-spacing:-13.851000px;}
.ws7{word-spacing:-13.140000px;}
.ws1b{word-spacing:-11.303787px;}
.ws4a{word-spacing:-10.320849px;}
.ws26{word-spacing:-9.936069px;}
.ws49{word-spacing:-9.880101px;}
.ws5{word-spacing:-8.640060px;}
.ws4c{word-spacing:-8.442000px;}
.wsb{word-spacing:-8.400000px;}
.ws46{word-spacing:-6.300000px;}
.ws4e{word-spacing:-6.237000px;}
.wsa{word-spacing:-6.000000px;}
.ws2b{word-spacing:-4.623000px;}
.ws10{word-spacing:-4.200000px;}
.ws4b{word-spacing:-4.095000px;}
.ws16{word-spacing:-2.400000px;}
.ws3f{word-spacing:-0.552000px;}
.ws44{word-spacing:-0.081000px;}
.ws9{word-spacing:0.000000px;}
.ws3e{word-spacing:0.171000px;}
.wsc{word-spacing:0.240000px;}
.ws43{word-spacing:0.570000px;}
.ws23{word-spacing:0.627000px;}
.ws17{word-spacing:0.855000px;}
.ws22{word-spacing:0.897000px;}
.ws18{word-spacing:0.972000px;}
.ws21{word-spacing:1.380000px;}
.ws2a{word-spacing:1.656000px;}
.wsd{word-spacing:1.836000px;}
.ws40{word-spacing:2.109000px;}
.wsf{word-spacing:2.772000px;}
.ws45{word-spacing:3.105000px;}
.ws27{word-spacing:4.278000px;}
.wse{word-spacing:4.428000px;}
.ws28{word-spacing:8.142000px;}
.ws36{word-spacing:8.880000px;}
.ws24{word-spacing:11.730000px;}
.ws35{word-spacing:18.216000px;}
.ws2f{word-spacing:44.760000px;}
.ws38{word-spacing:46.416000px;}
.ws2e{word-spacing:51.420000px;}
.ws2d{word-spacing:62.856000px;}
.ws3c{word-spacing:94.920000px;}
.ws39{word-spacing:114.540000px;}
.ws32{word-spacing:168.792000px;}
.ws30{word-spacing:194.340000px;}
.ws3b{word-spacing:475.380000px;}
.ws33{word-spacing:571.500000px;}
.ws3a{word-spacing:916.968000px;}
.ws37{word-spacing:1250.106000px;}
.ws31{word-spacing:1416.192000px;}
._18{margin-left:-6.789600px;}
._3{margin-left:-5.172300px;}
._8{margin-left:-3.341100px;}
._4{margin-left:-2.211300px;}
._5{margin-left:-1.190400px;}
._6{width:1.386000px;}
._1{width:2.400000px;}
._b{width:3.823200px;}
._9{width:4.830000px;}
._7{width:6.582000px;}
._a{width:8.448000px;}
._10{width:9.516000px;}
._11{width:10.590000px;}
._16{width:12.036600px;}
._1a{width:13.423200px;}
._e{width:14.436000px;}
._1c{width:15.544200px;}
._19{width:16.648200px;}
._c{width:18.102000px;}
._29{width:19.194000px;}
._15{width:20.987400px;}
._1f{width:22.059000px;}
._17{width:23.271000px;}
._1e{width:24.779400px;}
._20{width:26.107200px;}
._1b{width:27.583500px;}
._2b{width:28.929600px;}
._13{width:32.079600px;}
._14{width:33.215700px;}
._31{width:35.472300px;}
._2f{width:37.791720px;}
._2e{width:39.140640px;}
._30{width:40.539300px;}
._23{width:43.445160px;}
._2c{width:48.925800px;}
._2d{width:50.115900px;}
._26{width:72.538800px;}
._12{width:85.554000px;}
._27{width:119.931000px;}
._25{width:153.480000px;}
._24{width:163.419300px;}
._28{width:199.140000px;}
._d{width:260.610000px;}
._f{width:492.945000px;}
._22{width:495.774000px;}
._0{width:578.400000px;}
._1d{width:993.211200px;}
._2a{width:996.331200px;}
._2{width:1000.381200px;}
._21{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fsf{font-size:36.729000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fse{font-size:47.223000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yb0{bottom:106.258050px;}
.y8d{bottom:106.268400px;}
.y14e{bottom:106.282650px;}
.yd6{bottom:106.296300px;}
.y1e{bottom:106.299150px;}
.y41{bottom:106.304400px;}
.y10e{bottom:106.305150px;}
.y66{bottom:106.309050px;}
.y12f{bottom:106.374450px;}
.yee{bottom:109.224300px;}
.y1d{bottom:126.384150px;}
.yd5{bottom:126.544800px;}
.yaf{bottom:126.682050px;}
.y8c{bottom:126.692400px;}
.y40{bottom:126.793950px;}
.y10d{bottom:127.079400px;}
.y12e{bottom:127.180200px;}
.y65{bottom:127.250550px;}
.y14d{bottom:127.891650px;}
.yed{bottom:129.475800px;}
.y16e{bottom:135.376350px;}
.y1c{bottom:146.469150px;}
.yae{bottom:147.106050px;}
.y8b{bottom:147.116400px;}
.y3f{bottom:147.200700px;}
.y10c{bottom:147.853650px;}
.y12d{bottom:147.985950px;}
.yd4{bottom:148.046700px;}
.y64{bottom:148.201950px;}
.yec{bottom:149.727300px;}
.y16d{bottom:155.930100px;}
.y14c{bottom:158.005650px;}
.yad{bottom:167.530050px;}
.y8a{bottom:167.540400px;}
.y3e{bottom:167.607450px;}
.y12c{bottom:168.791700px;}
.y63{bottom:169.143450px;}
.y10b{bottom:177.132900px;}
.y1b{bottom:179.304150px;}
.y14b{bottom:179.614650px;}
.y16c{bottom:184.988850px;}
.yac{bottom:187.954050px;}
.y89{bottom:187.964400px;}
.y3d{bottom:188.014200px;}
.y62{bottom:190.168500px;}
.yeb{bottom:191.237250px;}
.yd3{bottom:192.067650px;}
.y10a{bottom:197.907150px;}
.y12b{bottom:198.102450px;}
.y16b{bottom:205.542600px;}
.yab{bottom:208.378050px;}
.y88{bottom:208.388400px;}
.y3c{bottom:208.420950px;}
.y14a{bottom:209.728650px;}
.y61{bottom:211.110000px;}
.yd2{bottom:212.370900px;}
.y12a{bottom:218.908200px;}
.y109{bottom:227.186400px;}
.yaa{bottom:228.802050px;}
.y87{bottom:228.812400px;}
.y3b{bottom:228.827700px;}
.y1a{bottom:229.149150px;}
.y149{bottom:231.337650px;}
.y60{bottom:232.051500px;}
.yd1{bottom:232.674150px;}
.y16a{bottom:234.601350px;}
.y129{bottom:248.218950px;}
.ya9{bottom:249.226050px;}
.y3a{bottom:249.234450px;}
.y86{bottom:249.236400px;}
.y19{bottom:250.734150px;}
.yd0{bottom:252.977400px;}
.y5f{bottom:252.993000px;}
.yea{bottom:253.507950px;}
.y169{bottom:255.155100px;}
.y148{bottom:261.451650px;}
.y128{bottom:269.024700px;}
.y39{bottom:269.641200px;}
.ya8{bottom:269.650050px;}
.y85{bottom:269.660400px;}
.y18{bottom:272.315100px;}
.ycf{bottom:273.283800px;}
.ye9{bottom:273.757950px;}
.y5e{bottom:273.934500px;}
.y108{bottom:278.547750px;}
.y147{bottom:283.060650px;}
.y168{bottom:284.213850px;}
.y127{bottom:289.830450px;}
.y38{bottom:290.047950px;}
.y84{bottom:290.067150px;}
.ya7{bottom:290.074050px;}
.y17{bottom:292.396200px;}
.yce{bottom:293.587050px;}
.y5d{bottom:294.876000px;}
.y107{bottom:299.316750px;}
.ye8{bottom:300.764400px;}
.y167{bottom:304.767600px;}
.y37{bottom:310.454700px;}
.y83{bottom:310.491150px;}
.ya6{bottom:310.498050px;}
.y126{bottom:310.636200px;}
.y16{bottom:312.481200px;}
.y146{bottom:313.174650px;}
.ycd{bottom:313.890300px;}
.y5c{bottom:315.817500px;}
.y106{bottom:320.085750px;}
.ye7{bottom:323.495850px;}
.y36{bottom:330.861450px;}
.y82{bottom:330.915150px;}
.ya5{bottom:330.922050px;}
.y15{bottom:332.562300px;}
.y166{bottom:333.826350px;}
.ycc{bottom:334.193550px;}
.y145{bottom:334.783650px;}
.y5b{bottom:336.759000px;}
.y125{bottom:339.976200px;}
.ye6{bottom:346.220850px;}
.y35{bottom:351.268200px;}
.y81{bottom:351.339150px;}
.y14{bottom:352.647300px;}
.y165{bottom:354.380100px;}
.ycb{bottom:354.496800px;}
.ye5{bottom:355.227450px;}
.ya4{bottom:355.590300px;}
.y144{bottom:356.354850px;}
.y5a{bottom:357.700500px;}
.y124{bottom:360.781950px;}
.y105{bottom:361.641000px;}
.y34{bottom:371.674950px;}
.ya3{bottom:371.739150px;}
.y80{bottom:371.763150px;}
.y13{bottom:372.730350px;}
.yca{bottom:374.802600px;}
.y164{bottom:374.933850px;}
.y59{bottom:378.642000px;}
.y104{bottom:382.410000px;}
.y143{bottom:386.468850px;}
.y17f{bottom:386.658450px;}
.ye4{bottom:386.952450px;}
.y123{bottom:390.092700px;}
.y33{bottom:392.081700px;}
.y7f{bottom:392.125350px;}
.ya2{bottom:392.163150px;}
.y12{bottom:392.813250px;}
.yc9{bottom:395.105850px;}
.y58{bottom:399.583500px;}
.y103{bottom:403.179000px;}
.y163{bottom:403.995750px;}
.y17e{bottom:406.908450px;}
.y142{bottom:408.077850px;}
.y122{bottom:410.898450px;}
.y32{bottom:412.488450px;}
.y7e{bottom:412.549350px;}
.ya1{bottom:412.587150px;}
.y11{bottom:412.898250px;}
.yc8{bottom:415.409100px;}
.y57{bottom:420.525000px;}
.y102{bottom:423.948000px;}
.y162{bottom:424.555350px;}
.y17d{bottom:427.158450px;}
.y31{bottom:432.895200px;}
.y7d{bottom:432.973350px;}
.y10{bottom:432.983250px;}
.ya0{bottom:433.011150px;}
.yc7{bottom:435.712350px;}
.ye3{bottom:437.696700px;}
.y141{bottom:438.191850px;}
.y121{bottom:440.349600px;}
.y56{bottom:441.466500px;}
.y101{bottom:444.717000px;}
.y161{bottom:445.137600px;}
.y17c{bottom:447.408450px;}
.yf{bottom:453.068250px;}
.y30{bottom:453.301950px;}
.y7c{bottom:453.397350px;}
.y9f{bottom:453.435150px;}
.yc6{bottom:456.016950px;}
.y140{bottom:459.800850px;}
.y55{bottom:462.408000px;}
.y100{bottom:465.486000px;}
.y17b{bottom:467.658450px;}
.y120{bottom:469.660350px;}
.y7b{bottom:473.821350px;}
.y9e{bottom:473.859150px;}
.y160{bottom:474.196350px;}
.yc5{bottom:476.320200px;}
.y54{bottom:483.349500px;}
.ye{bottom:485.903250px;}
.yff{bottom:486.255000px;}
.y13f{bottom:489.914850px;}
.y11f{bottom:490.466100px;}
.y7a{bottom:494.245350px;}
.y9d{bottom:494.283150px;}
.y15f{bottom:494.750100px;}
.y2f{bottom:494.973600px;}
.yc4{bottom:496.626750px;}
.y17a{bottom:500.658450px;}
.y53{bottom:504.291000px;}
.yfe{bottom:507.024000px;}
.y79{bottom:514.669350px;}
.y9c{bottom:514.707150px;}
.yc3{bottom:516.930000px;}
.ye2{bottom:518.730300px;}
.y11e{bottom:519.776850px;}
.y13e{bottom:520.028850px;}
.y15e{bottom:523.808850px;}
.y52{bottom:525.232500px;}
.ye1{bottom:527.730300px;}
.yfd{bottom:527.793000px;}
.y78{bottom:535.093350px;}
.y9b{bottom:535.103700px;}
.yc2{bottom:537.233250px;}
.y11d{bottom:540.582600px;}
.y13d{bottom:541.637850px;}
.y179{bottom:542.163450px;}
.yd{bottom:544.264050px;}
.y15d{bottom:544.362600px;}
.y51{bottom:546.174000px;}
.yfc{bottom:548.562000px;}
.y77{bottom:555.517350px;}
.y9a{bottom:555.527700px;}
.y2e{bottom:557.429100px;}
.yc1{bottom:557.536500px;}
.ye0{bottom:559.455300px;}
.y178{bottom:561.663450px;}
.y15c{bottom:564.916350px;}
.y11c{bottom:569.893350px;}
.y13c{bottom:571.751850px;}
.yc{bottom:571.837050px;}
.y76{bottom:575.941350px;}
.y99{bottom:575.951700px;}
.y2d{bottom:577.835850px;}
.yc0{bottom:577.839750px;}
.y177{bottom:581.163450px;}
.ydf{bottom:582.186750px;}
.y50{bottom:588.380250px;}
.yfb{bottom:590.597700px;}
.y11b{bottom:590.699100px;}
.y13b{bottom:593.360850px;}
.y15b{bottom:593.975100px;}
.y75{bottom:596.365350px;}
.y98{bottom:596.375700px;}
.ybf{bottom:598.146150px;}
.y2c{bottom:598.242600px;}
.y176{bottom:600.663450px;}
.yde{bottom:604.911750px;}
.y15a{bottom:614.528850px;}
.y74{bottom:616.789350px;}
.y97{bottom:616.799700px;}
.ybe{bottom:618.449400px;}
.y2b{bottom:618.649350px;}
.y11a{bottom:620.009850px;}
.y175{bottom:620.163450px;}
.yb{bottom:620.701050px;}
.y13a{bottom:623.474850px;}
.y73{bottom:637.213350px;}
.y96{bottom:637.223700px;}
.ybd{bottom:638.752650px;}
.y2a{bottom:639.056100px;}
.y119{bottom:640.815600px;}
.y159{bottom:643.587600px;}
.y139{bottom:645.083850px;}
.y4f{bottom:651.349200px;}
.y174{bottom:652.413450px;}
.ya{bottom:652.777050px;}
.yfa{bottom:653.404950px;}
.ydd{bottom:655.656150px;}
.y72{bottom:657.637350px;}
.y95{bottom:657.647700px;}
.ybc{bottom:659.055900px;}
.y29{bottom:659.462850px;}
.y118{bottom:661.621350px;}
.y158{bottom:664.141350px;}
.y4e{bottom:672.339900px;}
.yf9{bottom:674.173950px;}
.y138{bottom:675.197850px;}
.y71{bottom:678.061350px;}
.y94{bottom:678.071700px;}
.ybb{bottom:679.359150px;}
.y157{bottom:684.695100px;}
.y9{bottom:684.853050px;}
.y117{bottom:690.932100px;}
.y4d{bottom:693.281400px;}
.yf8{bottom:694.956600px;}
.y137{bottom:696.806850px;}
.y70{bottom:698.485350px;}
.y93{bottom:698.492250px;}
.yba{bottom:699.663000px;}
.y28{bottom:701.134650px;}
.y156{bottom:705.248850px;}
.y173{bottom:710.175150px;}
.y116{bottom:711.737850px;}
.y4c{bottom:714.222900px;}
.yf7{bottom:715.725600px;}
.y8{bottom:716.929050px;}
.ydc{bottom:717.920850px;}
.y6f{bottom:718.909350px;}
.y92{bottom:718.912800px;}
.yb9{bottom:719.967000px;}
.y136{bottom:726.920850px;}
.y115{bottom:732.543600px;}
.y155{bottom:734.307600px;}
.y4b{bottom:735.164400px;}
.yf6{bottom:736.508250px;}
.y172{bottom:737.181150px;}
.ydb{bottom:738.172350px;}
.y91{bottom:739.330050px;}
.y6e{bottom:739.333350px;}
.yb8{bottom:740.273400px;}
.y135{bottom:748.529850px;}
.y154{bottom:754.861350px;}
.y4a{bottom:756.105900px;}
.yf5{bottom:757.277250px;}
.yda{bottom:758.422200px;}
.y6d{bottom:759.750600px;}
.y90{bottom:759.754050px;}
.yb7{bottom:760.576650px;}
.y114{bottom:761.854350px;}
.y27{bottom:763.561200px;}
.y153{bottom:775.415100px;}
.y49{bottom:777.047400px;}
.yf4{bottom:778.066800px;}
.y134{bottom:778.643850px;}
.yd9{bottom:778.673700px;}
.y7{bottom:778.765950px;}
.y6c{bottom:780.174600px;}
.yb6{bottom:780.879900px;}
.y113{bottom:782.660100px;}
.y26{bottom:784.726200px;}
.y48{bottom:797.988900px;}
.yf3{bottom:798.835800px;}
.y133{bottom:800.252850px;}
.y6b{bottom:800.581350px;}
.y8f{bottom:800.591700px;}
.yb5{bottom:801.183150px;}
.y152{bottom:804.473850px;}
.y25{bottom:805.885050px;}
.y6{bottom:808.855950px;}
.y112{bottom:811.970850px;}
.y47{bottom:818.930400px;}
.yf2{bottom:819.604800px;}
.yd8{bottom:820.183650px;}
.y6a{bottom:821.005350px;}
.y8e{bottom:821.015700px;}
.yb4{bottom:821.486400px;}
.y24{bottom:825.546900px;}
.y132{bottom:830.366850px;}
.y5{bottom:830.440950px;}
.y111{bottom:832.776600px;}
.y151{bottom:833.532600px;}
.y46{bottom:839.871900px;}
.yf1{bottom:840.394350px;}
.y69{bottom:841.429350px;}
.yb3{bottom:841.791000px;}
.y171{bottom:842.935350px;}
.y23{bottom:845.208900px;}
.y131{bottom:851.975850px;}
.y150{bottom:854.086350px;}
.y4{bottom:860.530950px;}
.y45{bottom:860.813400px;}
.yf0{bottom:861.163350px;}
.y68{bottom:861.853350px;}
.y110{bottom:862.087350px;}
.yb2{bottom:862.094250px;}
.y170{bottom:863.189850px;}
.y22{bottom:864.870750px;}
.y44{bottom:881.759850px;}
.yef{bottom:881.932350px;}
.y130{bottom:882.089850px;}
.y3{bottom:882.115950px;}
.y67{bottom:882.277350px;}
.yb1{bottom:882.398100px;}
.yd7{bottom:882.449850px;}
.y10f{bottom:882.893100px;}
.y14f{bottom:883.145100px;}
.y16f{bottom:883.444350px;}
.y21{bottom:884.532750px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y42{bottom:966.189000px;}
.h1c{height:37.983820px;}
.h9{height:44.414062px;}
.h19{height:46.868215px;}
.he{height:49.658203px;}
.h1d{height:49.965820px;}
.hf{height:55.488281px;}
.h22{height:55.491778px;}
.h4{height:55.517578px;}
.h7{height:55.525978px;}
.ha{height:55.529578px;}
.hb{height:55.530178px;}
.h8{height:55.533178px;}
.h24{height:58.239295px;}
.h25{height:58.262695px;}
.h3{height:58.293457px;}
.h23{height:58.444657px;}
.h10{height:63.811523px;}
.h1b{height:63.842815px;}
.hd{height:63.845215px;}
.h1e{height:63.851815px;}
.h17{height:63.859015px;}
.h12{height:63.872215px;}
.h16{height:63.872815px;}
.h15{height:63.886615px;}
.h11{height:63.914215px;}
.h18{height:63.955015px;}
.h14{height:63.968215px;}
.h1a{height:64.009615px;}
.h13{height:64.092415px;}
.h2{height:69.396973px;}
.h1f{height:74.909180px;}
.hc{height:74.948730px;}
.h6{height:77.724609px;}
.h21{height:91.461881px;}
.h20{height:91.488281px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.685600px;}
.x6{left:82.860600px;}
.xa{left:84.034800px;}
.x1{left:85.039350px;}
.x11{left:90.899700px;}
.xc{left:97.809150px;}
.x5{left:105.030600px;}
.x8{left:106.364250px;}
.x13{left:109.052250px;}
.xd{left:115.848600px;}
.xe{left:118.195650px;}
.x10{left:200.986500px;}
.xb{left:202.344600px;}
.x9{left:212.663850px;}
.x4{left:230.594700px;}
.x2{left:232.076250px;}
.x3{left:233.588250px;}
.xf{left:280.075650px;}
.x12{left:550.885200px;}
@media print{
.v7{vertical-align:-24.848000pt;}
.v6{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.666667pt;}
.v5{vertical-align:-9.757333pt;}
.v1{vertical-align:-7.085867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.433600pt;}
.va{vertical-align:13.449067pt;}
.v4{vertical-align:14.796267pt;}
.v9{vertical-align:18.642667pt;}
.v8{vertical-align:32.000000pt;}
.ls40{letter-spacing:-5.472000pt;}
.ls8{letter-spacing:-3.936000pt;}
.ls16{letter-spacing:-2.808000pt;}
.ls46{letter-spacing:-2.760000pt;}
.lsb{letter-spacing:-2.464000pt;}
.ls18{letter-spacing:-2.269333pt;}
.ls20{letter-spacing:-2.146667pt;}
.ls3f{letter-spacing:-1.874667pt;}
.ls21{letter-spacing:-1.717333pt;}
.ls7{letter-spacing:-1.632000pt;}
.ls23{letter-spacing:-1.533333pt;}
.lsd{letter-spacing:-1.493333pt;}
.ls1e{letter-spacing:-1.410667pt;}
.lsa{letter-spacing:-1.344000pt;}
.ls1d{letter-spacing:-1.226667pt;}
.ls41{letter-spacing:-1.152000pt;}
.ls42{letter-spacing:-1.008000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls1f{letter-spacing:-0.797333pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls22{letter-spacing:-0.557333pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls44{letter-spacing:-0.506667pt;}
.ls4b{letter-spacing:-0.391776pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls3e{letter-spacing:-0.152000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000008pt;}
.ls1{letter-spacing:0.000053pt;}
.ls11{letter-spacing:0.000267pt;}
.ls2c{letter-spacing:0.000541pt;}
.ls26{letter-spacing:0.000549pt;}
.ls1a{letter-spacing:0.001915pt;}
.ls34{letter-spacing:0.003200pt;}
.ls2d{letter-spacing:0.003733pt;}
.ls10{letter-spacing:0.006080pt;}
.ls0{letter-spacing:0.006613pt;}
.ls3a{letter-spacing:0.006773pt;}
.ls30{letter-spacing:0.006912pt;}
.ls2f{letter-spacing:0.007445pt;}
.ls33{letter-spacing:0.008003pt;}
.ls1b{letter-spacing:0.008536pt;}
.ls31{letter-spacing:0.013333pt;}
.ls35{letter-spacing:0.017600pt;}
.ls32{letter-spacing:0.020800pt;}
.ls2e{letter-spacing:0.023467pt;}
.ls36{letter-spacing:0.032000pt;}
.ls45{letter-spacing:0.072000pt;}
.ls37{letter-spacing:0.100267pt;}
.ls57{letter-spacing:0.112000pt;}
.ls3b{letter-spacing:0.123755pt;}
.ls19{letter-spacing:0.172533pt;}
.ls4a{letter-spacing:0.504000pt;}
.ls9{letter-spacing:1.056000pt;}
.ls12{letter-spacing:2.133333pt;}
.ls4c{letter-spacing:3.640000pt;}
.lse{letter-spacing:3.733333pt;}
.ls39{letter-spacing:4.109333pt;}
.ls48{letter-spacing:4.121600pt;}
.ls2b{letter-spacing:4.538667pt;}
.ls4e{letter-spacing:4.646712pt;}
.lsf{letter-spacing:5.120000pt;}
.ls38{letter-spacing:5.200000pt;}
.lsc{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls24{letter-spacing:5.336000pt;}
.ls56{letter-spacing:5.544000pt;}
.ls14{letter-spacing:5.600000pt;}
.ls47{letter-spacing:6.104000pt;}
.ls43{letter-spacing:6.384800pt;}
.ls58{letter-spacing:6.866667pt;}
.ls4d{letter-spacing:6.932800pt;}
.ls4f{letter-spacing:6.952533pt;}
.ls13{letter-spacing:7.066667pt;}
.ls27{letter-spacing:7.237333pt;}
.ls28{letter-spacing:7.390667pt;}
.ls4{letter-spacing:7.466667pt;}
.ls50{letter-spacing:7.504000pt;}
.ls2a{letter-spacing:7.600000pt;}
.ls52{letter-spacing:12.812800pt;}
.ls25{letter-spacing:12.843200pt;}
.ls55{letter-spacing:12.975200pt;}
.ls53{letter-spacing:12.992000pt;}
.ls54{letter-spacing:13.048000pt;}
.ls51{letter-spacing:13.535200pt;}
.ls49{letter-spacing:15.724800pt;}
.ls3c{letter-spacing:18.933333pt;}
.ls3d{letter-spacing:107.927307pt;}
.ws19{word-spacing:-37.760000pt;}
.ws25{word-spacing:-26.333333pt;}
.ws41{word-spacing:-26.200000pt;}
.ws11{word-spacing:-25.800000pt;}
.ws4f{word-spacing:-25.600000pt;}
.ws1{word-spacing:-24.768000pt;}
.ws29{word-spacing:-23.933333pt;}
.ws42{word-spacing:-21.840000pt;}
.ws50{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws8{word-spacing:-20.106667pt;}
.ws3d{word-spacing:-19.224000pt;}
.ws13{word-spacing:-17.424000pt;}
.ws1a{word-spacing:-17.234667pt;}
.ws2{word-spacing:-17.098667pt;}
.ws34{word-spacing:-16.632000pt;}
.ws12{word-spacing:-16.090667pt;}
.ws4d{word-spacing:-15.848000pt;}
.ws47{word-spacing:-15.736000pt;}
.ws14{word-spacing:-15.149333pt;}
.ws6{word-spacing:-14.986667pt;}
.ws0{word-spacing:-14.826667pt;}
.ws20{word-spacing:-13.922667pt;}
.ws48{word-spacing:-13.832000pt;}
.ws1c{word-spacing:-13.738667pt;}
.ws1f{word-spacing:-13.616000pt;}
.ws1e{word-spacing:-13.432000pt;}
.ws4{word-spacing:-13.173333pt;}
.ws1d{word-spacing:-13.002667pt;}
.ws15{word-spacing:-12.880000pt;}
.ws2c{word-spacing:-12.312000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-10.047811pt;}
.ws4a{word-spacing:-9.174088pt;}
.ws26{word-spacing:-8.832061pt;}
.ws49{word-spacing:-8.782312pt;}
.ws5{word-spacing:-7.680053pt;}
.ws4c{word-spacing:-7.504000pt;}
.wsb{word-spacing:-7.466667pt;}
.ws46{word-spacing:-5.600000pt;}
.ws4e{word-spacing:-5.544000pt;}
.wsa{word-spacing:-5.333333pt;}
.ws2b{word-spacing:-4.109333pt;}
.ws10{word-spacing:-3.733333pt;}
.ws4b{word-spacing:-3.640000pt;}
.ws16{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-0.490667pt;}
.ws44{word-spacing:-0.072000pt;}
.ws9{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.152000pt;}
.wsc{word-spacing:0.213333pt;}
.ws43{word-spacing:0.506667pt;}
.ws23{word-spacing:0.557333pt;}
.ws17{word-spacing:0.760000pt;}
.ws22{word-spacing:0.797333pt;}
.ws18{word-spacing:0.864000pt;}
.ws21{word-spacing:1.226667pt;}
.ws2a{word-spacing:1.472000pt;}
.wsd{word-spacing:1.632000pt;}
.ws40{word-spacing:1.874667pt;}
.wsf{word-spacing:2.464000pt;}
.ws45{word-spacing:2.760000pt;}
.ws27{word-spacing:3.802667pt;}
.wse{word-spacing:3.936000pt;}
.ws28{word-spacing:7.237333pt;}
.ws36{word-spacing:7.893333pt;}
.ws24{word-spacing:10.426667pt;}
.ws35{word-spacing:16.192000pt;}
.ws2f{word-spacing:39.786667pt;}
.ws38{word-spacing:41.258667pt;}
.ws2e{word-spacing:45.706667pt;}
.ws2d{word-spacing:55.872000pt;}
.ws3c{word-spacing:84.373333pt;}
.ws39{word-spacing:101.813333pt;}
.ws32{word-spacing:150.037333pt;}
.ws30{word-spacing:172.746667pt;}
.ws3b{word-spacing:422.560000pt;}
.ws33{word-spacing:508.000000pt;}
.ws3a{word-spacing:815.082667pt;}
.ws37{word-spacing:1111.205333pt;}
.ws31{word-spacing:1258.837333pt;}
._18{margin-left:-6.035200pt;}
._3{margin-left:-4.597600pt;}
._8{margin-left:-2.969867pt;}
._4{margin-left:-1.965600pt;}
._5{margin-left:-1.058133pt;}
._6{width:1.232000pt;}
._1{width:2.133333pt;}
._b{width:3.398400pt;}
._9{width:4.293333pt;}
._7{width:5.850667pt;}
._a{width:7.509333pt;}
._10{width:8.458667pt;}
._11{width:9.413333pt;}
._16{width:10.699200pt;}
._1a{width:11.931733pt;}
._e{width:12.832000pt;}
._1c{width:13.817067pt;}
._19{width:14.798400pt;}
._c{width:16.090667pt;}
._29{width:17.061333pt;}
._15{width:18.655467pt;}
._1f{width:19.608000pt;}
._17{width:20.685333pt;}
._1e{width:22.026133pt;}
._20{width:23.206400pt;}
._1b{width:24.518667pt;}
._2b{width:25.715200pt;}
._13{width:28.515200pt;}
._14{width:29.525067pt;}
._31{width:31.530933pt;}
._2f{width:33.592640pt;}
._2e{width:34.791680pt;}
._30{width:36.034933pt;}
._23{width:38.617920pt;}
._2c{width:43.489600pt;}
._2d{width:44.547467pt;}
._26{width:64.478933pt;}
._12{width:76.048000pt;}
._27{width:106.605333pt;}
._25{width:136.426667pt;}
._24{width:145.261600pt;}
._28{width:177.013333pt;}
._d{width:231.653333pt;}
._f{width:438.173333pt;}
._22{width:440.688000pt;}
._0{width:514.133333pt;}
._1d{width:882.854400pt;}
._2a{width:885.627733pt;}
._2{width:889.227733pt;}
._21{width:890.987733pt;}
.fsc{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fsf{font-size:32.648000pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fse{font-size:41.976000pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yb0{bottom:94.451600pt;}
.y8d{bottom:94.460800pt;}
.y14e{bottom:94.473467pt;}
.yd6{bottom:94.485600pt;}
.y1e{bottom:94.488133pt;}
.y41{bottom:94.492800pt;}
.y10e{bottom:94.493467pt;}
.y66{bottom:94.496933pt;}
.y12f{bottom:94.555067pt;}
.yee{bottom:97.088267pt;}
.y1d{bottom:112.341467pt;}
.yd5{bottom:112.484267pt;}
.yaf{bottom:112.606267pt;}
.y8c{bottom:112.615467pt;}
.y40{bottom:112.705733pt;}
.y10d{bottom:112.959467pt;}
.y12e{bottom:113.049067pt;}
.y65{bottom:113.111600pt;}
.y14d{bottom:113.681467pt;}
.yed{bottom:115.089600pt;}
.y16e{bottom:120.334533pt;}
.y1c{bottom:130.194800pt;}
.yae{bottom:130.760933pt;}
.y8b{bottom:130.770133pt;}
.y3f{bottom:130.845067pt;}
.y10c{bottom:131.425467pt;}
.y12d{bottom:131.543067pt;}
.yd4{bottom:131.597067pt;}
.y64{bottom:131.735067pt;}
.yec{bottom:133.090933pt;}
.y16d{bottom:138.604533pt;}
.y14c{bottom:140.449467pt;}
.yad{bottom:148.915600pt;}
.y8a{bottom:148.924800pt;}
.y3e{bottom:148.984400pt;}
.y12c{bottom:150.037067pt;}
.y63{bottom:150.349733pt;}
.y10b{bottom:157.451467pt;}
.y1b{bottom:159.381467pt;}
.y14b{bottom:159.657467pt;}
.y16c{bottom:164.434533pt;}
.yac{bottom:167.070267pt;}
.y89{bottom:167.079467pt;}
.y3d{bottom:167.123733pt;}
.y62{bottom:169.038667pt;}
.yeb{bottom:169.988667pt;}
.yd3{bottom:170.726800pt;}
.y10a{bottom:175.917467pt;}
.y12b{bottom:176.091067pt;}
.y16b{bottom:182.704533pt;}
.yab{bottom:185.224933pt;}
.y88{bottom:185.234133pt;}
.y3c{bottom:185.263067pt;}
.y14a{bottom:186.425467pt;}
.y61{bottom:187.653333pt;}
.yd2{bottom:188.774133pt;}
.y12a{bottom:194.585067pt;}
.y109{bottom:201.943467pt;}
.yaa{bottom:203.379600pt;}
.y87{bottom:203.388800pt;}
.y3b{bottom:203.402400pt;}
.y1a{bottom:203.688133pt;}
.y149{bottom:205.633467pt;}
.y60{bottom:206.268000pt;}
.yd1{bottom:206.821467pt;}
.y16a{bottom:208.534533pt;}
.y129{bottom:220.639067pt;}
.ya9{bottom:221.534267pt;}
.y3a{bottom:221.541733pt;}
.y86{bottom:221.543467pt;}
.y19{bottom:222.874800pt;}
.yd0{bottom:224.868800pt;}
.y5f{bottom:224.882667pt;}
.yea{bottom:225.340400pt;}
.y169{bottom:226.804533pt;}
.y148{bottom:232.401467pt;}
.y128{bottom:239.133067pt;}
.y39{bottom:239.681067pt;}
.ya8{bottom:239.688933pt;}
.y85{bottom:239.698133pt;}
.y18{bottom:242.057867pt;}
.ycf{bottom:242.918933pt;}
.ye9{bottom:243.340400pt;}
.y5e{bottom:243.497333pt;}
.y108{bottom:247.598000pt;}
.y147{bottom:251.609467pt;}
.y168{bottom:252.634533pt;}
.y127{bottom:257.627067pt;}
.y38{bottom:257.820400pt;}
.y84{bottom:257.837467pt;}
.ya7{bottom:257.843600pt;}
.y17{bottom:259.907733pt;}
.yce{bottom:260.966267pt;}
.y5d{bottom:262.112000pt;}
.y107{bottom:266.059333pt;}
.ye8{bottom:267.346133pt;}
.y167{bottom:270.904533pt;}
.y37{bottom:275.959733pt;}
.y83{bottom:275.992133pt;}
.ya6{bottom:275.998267pt;}
.y126{bottom:276.121067pt;}
.y16{bottom:277.761067pt;}
.y146{bottom:278.377467pt;}
.ycd{bottom:279.013600pt;}
.y5c{bottom:280.726667pt;}
.y106{bottom:284.520667pt;}
.ye7{bottom:287.551867pt;}
.y36{bottom:294.099067pt;}
.y82{bottom:294.146800pt;}
.ya5{bottom:294.152933pt;}
.y15{bottom:295.610933pt;}
.y166{bottom:296.734533pt;}
.ycc{bottom:297.060933pt;}
.y145{bottom:297.585467pt;}
.y5b{bottom:299.341333pt;}
.y125{bottom:302.201067pt;}
.ye6{bottom:307.751867pt;}
.y35{bottom:312.238400pt;}
.y81{bottom:312.301467pt;}
.y14{bottom:313.464267pt;}
.y165{bottom:315.004533pt;}
.ycb{bottom:315.108267pt;}
.ye5{bottom:315.757733pt;}
.ya4{bottom:316.080267pt;}
.y144{bottom:316.759867pt;}
.y5a{bottom:317.956000pt;}
.y124{bottom:320.695067pt;}
.y105{bottom:321.458667pt;}
.y34{bottom:330.377733pt;}
.ya3{bottom:330.434800pt;}
.y80{bottom:330.456133pt;}
.y13{bottom:331.315867pt;}
.yca{bottom:333.157867pt;}
.y164{bottom:333.274533pt;}
.y59{bottom:336.570667pt;}
.y104{bottom:339.920000pt;}
.y143{bottom:343.527867pt;}
.y17f{bottom:343.696400pt;}
.ye4{bottom:343.957733pt;}
.y123{bottom:346.749067pt;}
.y33{bottom:348.517067pt;}
.y7f{bottom:348.555867pt;}
.ya2{bottom:348.589467pt;}
.y12{bottom:349.167333pt;}
.yc9{bottom:351.205200pt;}
.y58{bottom:355.185333pt;}
.y103{bottom:358.381333pt;}
.y163{bottom:359.107333pt;}
.y17e{bottom:361.696400pt;}
.y142{bottom:362.735867pt;}
.y122{bottom:365.243067pt;}
.y32{bottom:366.656400pt;}
.y7e{bottom:366.710533pt;}
.ya1{bottom:366.744133pt;}
.y11{bottom:367.020667pt;}
.yc8{bottom:369.252533pt;}
.y57{bottom:373.800000pt;}
.y102{bottom:376.842667pt;}
.y162{bottom:377.382533pt;}
.y17d{bottom:379.696400pt;}
.y31{bottom:384.795733pt;}
.y7d{bottom:384.865200pt;}
.y10{bottom:384.874000pt;}
.ya0{bottom:384.898800pt;}
.yc7{bottom:387.299867pt;}
.ye3{bottom:389.063733pt;}
.y141{bottom:389.503867pt;}
.y121{bottom:391.421867pt;}
.y56{bottom:392.414667pt;}
.y101{bottom:395.304000pt;}
.y161{bottom:395.677867pt;}
.y17c{bottom:397.696400pt;}
.yf{bottom:402.727333pt;}
.y30{bottom:402.935067pt;}
.y7c{bottom:403.019867pt;}
.y9f{bottom:403.053467pt;}
.yc6{bottom:405.348400pt;}
.y140{bottom:408.711867pt;}
.y55{bottom:411.029333pt;}
.y100{bottom:413.765333pt;}
.y17b{bottom:415.696400pt;}
.y120{bottom:417.475867pt;}
.y7b{bottom:421.174533pt;}
.y9e{bottom:421.208133pt;}
.y160{bottom:421.507867pt;}
.yc5{bottom:423.395733pt;}
.y54{bottom:429.644000pt;}
.ye{bottom:431.914000pt;}
.yff{bottom:432.226667pt;}
.y13f{bottom:435.479867pt;}
.y11f{bottom:435.969867pt;}
.y7a{bottom:439.329200pt;}
.y9d{bottom:439.362800pt;}
.y15f{bottom:439.777867pt;}
.y2f{bottom:439.976533pt;}
.yc4{bottom:441.446000pt;}
.y17a{bottom:445.029733pt;}
.y53{bottom:448.258667pt;}
.yfe{bottom:450.688000pt;}
.y79{bottom:457.483867pt;}
.y9c{bottom:457.517467pt;}
.yc3{bottom:459.493333pt;}
.ye2{bottom:461.093600pt;}
.y11e{bottom:462.023867pt;}
.y13e{bottom:462.247867pt;}
.y15e{bottom:465.607867pt;}
.y52{bottom:466.873333pt;}
.ye1{bottom:469.093600pt;}
.yfd{bottom:469.149333pt;}
.y78{bottom:475.638533pt;}
.y9b{bottom:475.647733pt;}
.yc2{bottom:477.540667pt;}
.y11d{bottom:480.517867pt;}
.y13d{bottom:481.455867pt;}
.y179{bottom:481.923067pt;}
.yd{bottom:483.790267pt;}
.y15d{bottom:483.877867pt;}
.y51{bottom:485.488000pt;}
.yfc{bottom:487.610667pt;}
.y77{bottom:493.793200pt;}
.y9a{bottom:493.802400pt;}
.y2e{bottom:495.492533pt;}
.yc1{bottom:495.588000pt;}
.ye0{bottom:497.293600pt;}
.y178{bottom:499.256400pt;}
.y15c{bottom:502.147867pt;}
.y11c{bottom:506.571867pt;}
.y13c{bottom:508.223867pt;}
.yc{bottom:508.299600pt;}
.y76{bottom:511.947867pt;}
.y99{bottom:511.957067pt;}
.y2d{bottom:513.631867pt;}
.yc0{bottom:513.635333pt;}
.y177{bottom:516.589733pt;}
.ydf{bottom:517.499333pt;}
.y50{bottom:523.004667pt;}
.yfb{bottom:524.975733pt;}
.y11b{bottom:525.065867pt;}
.y13b{bottom:527.431867pt;}
.y15b{bottom:527.977867pt;}
.y75{bottom:530.102533pt;}
.y98{bottom:530.111733pt;}
.ybf{bottom:531.685467pt;}
.y2c{bottom:531.771200pt;}
.y176{bottom:533.923067pt;}
.yde{bottom:537.699333pt;}
.y15a{bottom:546.247867pt;}
.y74{bottom:548.257200pt;}
.y97{bottom:548.266400pt;}
.ybe{bottom:549.732800pt;}
.y2b{bottom:549.910533pt;}
.y11a{bottom:551.119867pt;}
.y175{bottom:551.256400pt;}
.yb{bottom:551.734267pt;}
.y13a{bottom:554.199867pt;}
.y73{bottom:566.411867pt;}
.y96{bottom:566.421067pt;}
.ybd{bottom:567.780133pt;}
.y2a{bottom:568.049867pt;}
.y119{bottom:569.613867pt;}
.y159{bottom:572.077867pt;}
.y139{bottom:573.407867pt;}
.y4f{bottom:578.977067pt;}
.y174{bottom:579.923067pt;}
.ya{bottom:580.246267pt;}
.yfa{bottom:580.804400pt;}
.ydd{bottom:582.805467pt;}
.y72{bottom:584.566533pt;}
.y95{bottom:584.575733pt;}
.ybc{bottom:585.827467pt;}
.y29{bottom:586.189200pt;}
.y118{bottom:588.107867pt;}
.y158{bottom:590.347867pt;}
.y4e{bottom:597.635467pt;}
.yf9{bottom:599.265733pt;}
.y138{bottom:600.175867pt;}
.y71{bottom:602.721200pt;}
.y94{bottom:602.730400pt;}
.ybb{bottom:603.874800pt;}
.y157{bottom:608.617867pt;}
.y9{bottom:608.758267pt;}
.y117{bottom:614.161867pt;}
.y4d{bottom:616.250133pt;}
.yf8{bottom:617.739200pt;}
.y137{bottom:619.383867pt;}
.y70{bottom:620.875867pt;}
.y93{bottom:620.882000pt;}
.yba{bottom:621.922667pt;}
.y28{bottom:623.230800pt;}
.y156{bottom:626.887867pt;}
.y173{bottom:631.266800pt;}
.y116{bottom:632.655867pt;}
.y4c{bottom:634.864800pt;}
.yf7{bottom:636.200533pt;}
.y8{bottom:637.270267pt;}
.ydc{bottom:638.151867pt;}
.y6f{bottom:639.030533pt;}
.y92{bottom:639.033600pt;}
.yb9{bottom:639.970667pt;}
.y136{bottom:646.151867pt;}
.y115{bottom:651.149867pt;}
.y155{bottom:652.717867pt;}
.y4b{bottom:653.479467pt;}
.yf6{bottom:654.674000pt;}
.y172{bottom:655.272133pt;}
.ydb{bottom:656.153200pt;}
.y91{bottom:657.182267pt;}
.y6e{bottom:657.185200pt;}
.yb8{bottom:658.020800pt;}
.y135{bottom:665.359867pt;}
.y154{bottom:670.987867pt;}
.y4a{bottom:672.094133pt;}
.yf5{bottom:673.135333pt;}
.yda{bottom:674.153067pt;}
.y6d{bottom:675.333867pt;}
.y90{bottom:675.336933pt;}
.yb7{bottom:676.068133pt;}
.y114{bottom:677.203867pt;}
.y27{bottom:678.721067pt;}
.y153{bottom:689.257867pt;}
.y49{bottom:690.708800pt;}
.yf4{bottom:691.614933pt;}
.y134{bottom:692.127867pt;}
.yd9{bottom:692.154400pt;}
.y7{bottom:692.236400pt;}
.y6c{bottom:693.488533pt;}
.yb6{bottom:694.115467pt;}
.y113{bottom:695.697867pt;}
.y26{bottom:697.534400pt;}
.y48{bottom:709.323467pt;}
.yf3{bottom:710.076267pt;}
.y133{bottom:711.335867pt;}
.y6b{bottom:711.627867pt;}
.y8f{bottom:711.637067pt;}
.yb5{bottom:712.162800pt;}
.y152{bottom:715.087867pt;}
.y25{bottom:716.342267pt;}
.y6{bottom:718.983067pt;}
.y112{bottom:721.751867pt;}
.y47{bottom:727.938133pt;}
.yf2{bottom:728.537600pt;}
.yd8{bottom:729.052133pt;}
.y6a{bottom:729.782533pt;}
.y8e{bottom:729.791733pt;}
.yb4{bottom:730.210133pt;}
.y24{bottom:733.819467pt;}
.y132{bottom:738.103867pt;}
.y5{bottom:738.169733pt;}
.y111{bottom:740.245867pt;}
.y151{bottom:740.917867pt;}
.y46{bottom:746.552800pt;}
.yf1{bottom:747.017200pt;}
.y69{bottom:747.937200pt;}
.yb3{bottom:748.258667pt;}
.y171{bottom:749.275867pt;}
.y23{bottom:751.296800pt;}
.y131{bottom:757.311867pt;}
.y150{bottom:759.187867pt;}
.y4{bottom:764.916400pt;}
.y45{bottom:765.167467pt;}
.yf0{bottom:765.478533pt;}
.y68{bottom:766.091867pt;}
.y110{bottom:766.299867pt;}
.yb2{bottom:766.306000pt;}
.y170{bottom:767.279867pt;}
.y22{bottom:768.774000pt;}
.y44{bottom:783.786533pt;}
.yef{bottom:783.939867pt;}
.y130{bottom:784.079867pt;}
.y3{bottom:784.103067pt;}
.y67{bottom:784.246533pt;}
.yb1{bottom:784.353867pt;}
.yd7{bottom:784.399867pt;}
.y10f{bottom:784.793867pt;}
.y14f{bottom:785.017867pt;}
.y16f{bottom:785.283867pt;}
.y21{bottom:786.251333pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y42{bottom:858.834667pt;}
.h1c{height:33.763396pt;}
.h9{height:39.479167pt;}
.h19{height:41.660635pt;}
.he{height:44.140625pt;}
.h1d{height:44.414062pt;}
.hf{height:49.322917pt;}
.h22{height:49.326025pt;}
.h4{height:49.348958pt;}
.h7{height:49.356425pt;}
.ha{height:49.359625pt;}
.hb{height:49.360158pt;}
.h8{height:49.362825pt;}
.h24{height:51.768263pt;}
.h25{height:51.789062pt;}
.h3{height:51.816406pt;}
.h23{height:51.950806pt;}
.h10{height:56.721354pt;}
.h1b{height:56.749169pt;}
.hd{height:56.751302pt;}
.h1e{height:56.757169pt;}
.h17{height:56.763569pt;}
.h12{height:56.775302pt;}
.h16{height:56.775835pt;}
.h15{height:56.788102pt;}
.h11{height:56.812635pt;}
.h18{height:56.848902pt;}
.h14{height:56.860635pt;}
.h1a{height:56.897435pt;}
.h13{height:56.971035pt;}
.h2{height:61.686198pt;}
.h1f{height:66.585938pt;}
.hc{height:66.621094pt;}
.h6{height:69.088542pt;}
.h21{height:81.299450pt;}
.h20{height:81.322917pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.720533pt;}
.x6{left:73.653867pt;}
.xa{left:74.697600pt;}
.x1{left:75.590533pt;}
.x11{left:80.799733pt;}
.xc{left:86.941467pt;}
.x5{left:93.360533pt;}
.x8{left:94.546000pt;}
.x13{left:96.935333pt;}
.xd{left:102.976533pt;}
.xe{left:105.062800pt;}
.x10{left:178.654667pt;}
.xb{left:179.861867pt;}
.x9{left:189.034533pt;}
.x4{left:204.973067pt;}
.x2{left:206.290000pt;}
.x3{left:207.634000pt;}
.xf{left:248.956133pt;}
.x12{left:489.675733pt;}
}




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