
    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_c7c63c15500094ebb2ac1320.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b37f03f1d1769ca089790458.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_c58f075b6b8a21adea2a57ff.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_1a0ef305eb2fd9bd3f94de69.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_349bde74bab870dac1f5dfd7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.939941;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_c3f00e6daddf51122da9bda8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_2cf5ce19420502bd1817672b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_6a10d49e928622d8627f6801.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_5041396b673934a11ef06155.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7a9d06c0dac7fa655ffb772e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.952148;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_ac417a1a8e6ec6f16a7d558b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.722656;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:ff12;src:url('chunks/assets/font_a6596c33e4c89c91cac603e4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.922363;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:ff13;src:url('chunks/assets/font_03df26b777028fcf08cc7f36.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.010641px;}
.ls6{letter-spacing:0.028320px;}
.ls9{letter-spacing:0.030252px;}
.ls7{letter-spacing:0.030340px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:0.208948px;}
.ls5{letter-spacing:0.308220px;}
.ls8{letter-spacing:0.310959px;}
.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;}
}
.ws7{word-spacing:-41.957983px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-17.639993px;}
.ws9{word-spacing:-14.026954px;}
.ws6{word-spacing:-13.924943px;}
.ws8{word-spacing:-13.746334px;}
.wsa{word-spacing:-13.746246px;}
.ws5{word-spacing:-13.715995px;}
.ws3{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-636.805194px;}
._d{margin-left:-468.836001px;}
._4{margin-left:-298.887706px;}
._2{margin-left:-292.593551px;}
._c{margin-left:-228.794767px;}
._3{margin-left:-218.721581px;}
._a{margin-left:-210.657584px;}
._6{margin-left:-88.612071px;}
._b{margin-left:-68.608591px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._9{margin-left:-16.559201px;}
._1{margin-left:-1.950739px;}
._5{width:1.529656px;}
._15{width:2.541501px;}
._e{width:3.563063px;}
._13{width:5.260848px;}
._14{width:6.424439px;}
._16{width:7.962772px;}
._17{width:9.492948px;}
._18{width:10.812965px;}
._12{width:11.868341px;}
._1e{width:14.366987px;}
._1f{width:15.649652px;}
._10{width:17.610074px;}
._f{width:18.757535px;}
._11{width:20.174559px;}
._2e{width:21.177324px;}
._26{width:22.239169px;}
._2a{width:23.547812px;}
._44{width:24.597988px;}
._22{width:25.605500px;}
._2c{width:26.621714px;}
._19{width:27.682989px;}
._1a{width:29.690582px;}
._1b{width:30.799589px;}
._24{width:32.289213px;}
._36{width:33.369949px;}
._2f{width:34.515070px;}
._31{width:35.631966px;}
._28{width:37.021745px;}
._29{width:38.320825px;}
._42{width:39.367310px;}
._20{width:40.396155px;}
._21{width:41.694471px;}
._1c{width:42.777092px;}
._1d{width:43.913027px;}
._25{width:45.531960px;}
._27{width:47.521011px;}
._37{width:48.815379px;}
._3f{width:50.150748px;}
._47{width:51.214740px;}
._43{width:52.232042px;}
._40{width:53.282138px;}
._33{width:54.316247px;}
._38{width:55.587062px;}
._39{width:56.664163px;}
._2b{width:58.233863px;}
._34{width:59.270968px;}
._35{width:60.385400px;}
._32{width:61.555737px;}
._49{width:62.709569px;}
._3b{width:63.843978px;}
._3c{width:64.984044px;}
._30{width:66.420273px;}
._23{width:67.992421px;}
._4e{width:69.383248px;}
._4d{width:70.519620px;}
._41{width:72.086945px;}
._3d{width:73.996700px;}
._3e{width:75.313660px;}
._52{width:76.499296px;}
._4a{width:77.798793px;}
._48{width:79.646523px;}
._45{width:81.239442px;}
._3a{width:85.849003px;}
._2d{width:87.880548px;}
._53{width:89.241761px;}
._4b{width:92.027879px;}
._4c{width:93.466412px;}
._51{width:98.289422px;}
._46{width:99.746298px;}
._4f{width:108.524307px;}
._50{width:110.889748px;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y41{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y1e{bottom:3.059122px;}
.y10{bottom:3.239055px;}
.y19{bottom:3.599105px;}
.y1c{bottom:3.599108px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y16{bottom:4.859080px;}
.y3c{bottom:6.478948px;}
.y4{bottom:58.620277px;}
.y3a{bottom:114.599954px;}
.yba{bottom:118.019953px;}
.ye8{bottom:118.199953px;}
.y7e{bottom:120.900252px;}
.y173{bottom:121.079952px;}
.y11a{bottom:121.259951px;}
.y8d{bottom:121.619951px;}
.y6e{bottom:121.620251px;}
.y174{bottom:125.219950px;}
.y145{bottom:125.399950px;}
.y39{bottom:135.299946px;}
.y37{bottom:137.099945px;}
.ye7{bottom:139.799944px;}
.yb9{bottom:140.519944px;}
.y172{bottom:143.219943px;}
.y102{bottom:143.939942px;}
.y119{bottom:144.299942px;}
.y8c{bottom:144.659942px;}
.y6d{bottom:144.660242px;}
.y144{bottom:148.619941px;}
.y38{bottom:155.999938px;}
.y36{bottom:160.139936px;}
.ye6{bottom:161.399935px;}
.yb8{bottom:163.019935px;}
.y171{bottom:165.359934px;}
.y7d{bottom:166.979933px;}
.y118{bottom:167.339933px;}
.y6c{bottom:167.699933px;}
.y143{bottom:172.199931px;}
.y35{bottom:176.339929px;}
.y34{bottom:180.119928px;}
.ye5{bottom:182.999927px;}
.yb7{bottom:185.699926px;}
.y170{bottom:187.319925px;}
.y101{bottom:190.019924px;}
.y117{bottom:190.379924px;}
.y6b{bottom:190.559924px;}
.y142{bottom:195.599922px;}
.y33{bottom:200.639920px;}
.ye4{bottom:204.599918px;}
.yb6{bottom:208.199917px;}
.y16f{bottom:209.459916px;}
.y7c{bottom:212.879915px;}
.y100{bottom:213.059915px;}
.y116{bottom:213.419915px;}
.y6a{bottom:213.599915px;}
.y141{bottom:218.999912px;}
.y32{bottom:223.679911px;}
.ye3{bottom:226.379909px;}
.yb5{bottom:230.699908px;}
.y16e{bottom:231.599907px;}
.y7b{bottom:235.919906px;}
.yff{bottom:236.099906px;}
.y115{bottom:236.279905px;}
.y69{bottom:236.639905px;}
.y140{bottom:242.399903px;}
.y31{bottom:246.539901px;}
.ye2{bottom:248.159901px;}
.yb4{bottom:253.379899px;}
.y16d{bottom:254.099898px;}
.yfe{bottom:258.959896px;}
.y114{bottom:259.319896px;}
.y68{bottom:259.679896px;}
.y13f{bottom:265.979894px;}
.y30{bottom:269.579892px;}
.ye1{bottom:269.759892px;}
.y16c{bottom:274.799890px;}
.yb3{bottom:275.879890px;}
.yfd{bottom:281.999887px;}
.y113{bottom:282.359887px;}
.y67{bottom:282.719887px;}
.y13e{bottom:289.379884px;}
.ye0{bottom:291.359883px;}
.y2f{bottom:292.619883px;}
.y16b{bottom:295.859882px;}
.yb2{bottom:298.379881px;}
.yfc{bottom:305.039878px;}
.y112{bottom:305.399878px;}
.y66{bottom:305.759878px;}
.y8b{bottom:309.539876px;}
.y13d{bottom:312.779875px;}
.ydf{bottom:312.959875px;}
.y2e{bottom:315.659874px;}
.y16a{bottom:317.999873px;}
.yb1{bottom:321.059872px;}
.yfb{bottom:328.079869px;}
.y111{bottom:328.439869px;}
.y65{bottom:328.619869px;}
.y8a{bottom:332.399867px;}
.yde{bottom:334.559866px;}
.y13c{bottom:336.359865px;}
.y2d{bottom:338.699865px;}
.y169{bottom:339.959864px;}
.yb0{bottom:343.559863px;}
.yfa{bottom:351.119860px;}
.y110{bottom:351.299859px;}
.y64{bottom:351.659859px;}
.y89{bottom:355.439858px;}
.ydd{bottom:356.159858px;}
.y13b{bottom:359.759856px;}
.y2c{bottom:361.739855px;}
.y168{bottom:362.099855px;}
.yaf{bottom:366.059854px;}
.y7a{bottom:373.979850px;}
.yf9{bottom:374.159850px;}
.y10f{bottom:374.339850px;}
.y63{bottom:374.699850px;}
.ydc{bottom:377.759849px;}
.y13a{bottom:383.159847px;}
.y167{bottom:384.239846px;}
.y2b{bottom:384.599846px;}
.yae{bottom:388.739845px;}
.yf8{bottom:397.019841px;}
.y10e{bottom:397.379841px;}
.y62{bottom:397.739841px;}
.ydb{bottom:399.359840px;}
.y166{bottom:406.379837px;}
.y139{bottom:406.739837px;}
.y2a{bottom:407.639837px;}
.yad{bottom:411.239836px;}
.yf7{bottom:420.059832px;}
.y10d{bottom:420.419832px;}
.y61{bottom:420.779832px;}
.yda{bottom:420.959832px;}
.y165{bottom:428.519829px;}
.y138{bottom:430.139828px;}
.y29{bottom:430.679828px;}
.yac{bottom:433.739827px;}
.yd9{bottom:442.559823px;}
.y77{bottom:443.099823px;}
.y10c{bottom:443.459823px;}
.y60{bottom:443.819822px;}
.y164{bottom:449.219820px;}
.y137{bottom:453.539819px;}
.y28{bottom:453.719819px;}
.yab{bottom:456.419817px;}
.yd8{bottom:464.159814px;}
.y72{bottom:465.959814px;}
.yf6{bottom:466.139814px;}
.y10b{bottom:466.499813px;}
.y5f{bottom:466.679813px;}
.y163{bottom:470.279812px;}
.y27{bottom:476.759809px;}
.y136{bottom:477.119809px;}
.yaa{bottom:478.919808px;}
.yd7{bottom:485.759806px;}
.y76{bottom:488.999804px;}
.yf5{bottom:489.179804px;}
.y10a{bottom:489.359804px;}
.y5e{bottom:489.719804px;}
.y162{bottom:492.419803px;}
.y26{bottom:499.799800px;}
.y135{bottom:500.519800px;}
.ya9{bottom:501.419799px;}
.yd6{bottom:507.359797px;}
.yf4{bottom:512.219795px;}
.y109{bottom:512.399795px;}
.y5d{bottom:512.759795px;}
.y161{bottom:514.559794px;}
.y25{bottom:522.659791px;}
.y134{bottom:523.919790px;}
.ya8{bottom:524.099790px;}
.yd5{bottom:528.959788px;}
.y71{bottom:535.079786px;}
.y108{bottom:535.439786px;}
.y5c{bottom:535.799786px;}
.y160{bottom:536.699785px;}
.y24{bottom:545.699782px;}
.ya7{bottom:546.599781px;}
.y133{bottom:547.499781px;}
.yd4{bottom:550.559780px;}
.yf3{bottom:558.119777px;}
.y107{bottom:558.479777px;}
.y15f{bottom:558.659777px;}
.y5b{bottom:558.839776px;}
.y23{bottom:568.739773px;}
.ya6{bottom:569.099772px;}
.y132{bottom:570.899772px;}
.yd3{bottom:572.159771px;}
.y15e{bottom:580.799768px;}
.y6f{bottom:580.979768px;}
.yf2{bottom:581.159768px;}
.y106{bottom:581.519767px;}
.y5a{bottom:581.699767px;}
.y88{bottom:585.479766px;}
.y22{bottom:591.779763px;}
.yd2{bottom:593.759762px;}
.y131{bottom:594.299762px;}
.y15d{bottom:603.299759px;}
.y70{bottom:604.019758px;}
.yf1{bottom:604.199758px;}
.y105{bottom:604.559758px;}
.y59{bottom:604.739758px;}
.y87{bottom:608.519757px;}
.ya5{bottom:614.279754px;}
.y21{bottom:614.819754px;}
.yd1{bottom:615.359754px;}
.y130{bottom:617.699753px;}
.y15c{bottom:625.439750px;}
.yf0{bottom:627.059749px;}
.y104{bottom:627.419749px;}
.y58{bottom:627.779749px;}
.y86{bottom:631.559747px;}
.ya4{bottom:636.779745px;}
.yd0{bottom:636.959745px;}
.y20{bottom:637.679745px;}
.y12f{bottom:641.279743px;}
.y15b{bottom:647.399741px;}
.yef{bottom:650.459740px;}
.y57{bottom:650.819740px;}
.ycf{bottom:658.559737px;}
.ya3{bottom:659.459736px;}
.y1f{bottom:661.799735px;}
.y12e{bottom:664.679734px;}
.y15a{bottom:669.539732px;}
.yee{bottom:673.499731px;}
.y56{bottom:673.859730px;}
.yce{bottom:680.159728px;}
.ya2{bottom:681.959727px;}
.y12d{bottom:688.079725px;}
.y159{bottom:691.679723px;}
.y1d{bottom:692.220600px;}
.yed{bottom:696.539721px;}
.y55{bottom:696.899721px;}
.ycd{bottom:701.759719px;}
.ya1{bottom:704.459718px;}
.y12c{bottom:711.659715px;}
.y158{bottom:713.819714px;}
.y75{bottom:719.039712px;}
.yec{bottom:719.579712px;}
.y54{bottom:719.759712px;}
.ycc{bottom:723.359711px;}
.y1b{bottom:725.880600px;}
.ya0{bottom:727.139709px;}
.y1a{bottom:729.479708px;}
.y18{bottom:734.880600px;}
.y12b{bottom:735.059706px;}
.y157{bottom:735.959706px;}
.y79{bottom:742.079703px;}
.yeb{bottom:742.619703px;}
.y53{bottom:742.799703px;}
.ycb{bottom:744.959702px;}
.y9f{bottom:749.639700px;}
.y156{bottom:758.099697px;}
.y12a{bottom:758.459697px;}
.y84{bottom:765.119694px;}
.yea{bottom:765.479694px;}
.y52{bottom:765.839694px;}
.yca{bottom:766.559693px;}
.y17{bottom:768.719693px;}
.y9e{bottom:772.139691px;}
.y155{bottom:780.239688px;}
.y129{bottom:782.039687px;}
.y78{bottom:788.159685px;}
.ye9{bottom:788.519685px;}
.y51{bottom:788.879684px;}
.y15{bottom:794.460600px;}
.y9d{bottom:794.819682px;}
.y154{bottom:802.199679px;}
.y128{bottom:805.439678px;}
.yc9{bottom:809.759676px;}
.y103{bottom:811.559675px;}
.y50{bottom:811.919675px;}
.y14{bottom:817.139673px;}
.y9c{bottom:817.319673px;}
.y153{bottom:824.339670px;}
.y127{bottom:828.839668px;}
.yc8{bottom:831.359667px;}
.y4f{bottom:834.959666px;}
.y9b{bottom:839.819664px;}
.y11{bottom:839.820600px;}
.y152{bottom:846.479661px;}
.y13{bottom:849.899660px;}
.y126{bottom:852.419659px;}
.yc7{bottom:852.959659px;}
.y4e{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.y9a{bottom:862.499655px;}
.y151{bottom:868.619653px;}
.yc6{bottom:874.559650px;}
.y125{bottom:875.819650px;}
.y83{bottom:880.139648px;}
.y4d{bottom:880.859648px;}
.y99{bottom:884.999646px;}
.y150{bottom:890.759644px;}
.ye{bottom:893.639643px;}
.yc5{bottom:896.159642px;}
.y124{bottom:899.219640px;}
.y82{bottom:903.179639px;}
.y4c{bottom:903.899638px;}
.y98{bottom:907.499637px;}
.y14f{bottom:912.899635px;}
.yc4{bottom:917.759633px;}
.y123{bottom:922.799631px;}
.y81{bottom:926.219630px;}
.y4b{bottom:926.939629px;}
.y97{bottom:930.179628px;}
.yd{bottom:934.319626px;}
.y14e{bottom:935.039626px;}
.yc3{bottom:939.359624px;}
.y122{bottom:946.199622px;}
.y85{bottom:949.259620px;}
.y4a{bottom:949.979620px;}
.y96{bottom:952.859619px;}
.y74{bottom:953.759618px;}
.y14d{bottom:956.999617px;}
.yc2{bottom:960.959616px;}
.y121{bottom:969.599612px;}
.y80{bottom:972.299611px;}
.y49{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y95{bottom:975.719610px;}
.y14c{bottom:979.139608px;}
.yc1{bottom:982.559607px;}
.y120{bottom:992.999603px;}
.y48{bottom:995.879602px;}
.y94{bottom:998.399601px;}
.yb{bottom:999.299600px;}
.y14b{bottom:1001.279599px;}
.yc0{bottom:1004.159598px;}
.y11f{bottom:1016.579593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y73{bottom:1018.199593px;}
.y47{bottom:1018.919592px;}
.y93{bottom:1021.079592px;}
.y14a{bottom:1023.419591px;}
.ybf{bottom:1025.759590px;}
.y11e{bottom:1039.979584px;}
.y46{bottom:1041.959583px;}
.y92{bottom:1043.579583px;}
.y149{bottom:1045.559582px;}
.ybe{bottom:1047.359581px;}
.y40{bottom:1051.500600px;}
.y11d{bottom:1063.379575px;}
.y7f{bottom:1064.279574px;}
.y45{bottom:1064.999574px;}
.y91{bottom:1066.079574px;}
.y3f{bottom:1066.979573px;}
.y148{bottom:1067.699573px;}
.ybd{bottom:1068.959572px;}
.y11c{bottom:1086.959565px;}
.y3e{bottom:1087.319565px;}
.y44{bottom:1088.039565px;}
.y90{bottom:1088.759564px;}
.y147{bottom:1089.839564px;}
.ybc{bottom:1090.559564px;}
.y3d{bottom:1107.659557px;}
.y11b{bottom:1110.359556px;}
.y43{bottom:1110.899556px;}
.y8f{bottom:1111.259555px;}
.y146{bottom:1111.799555px;}
.ybb{bottom:1112.159555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y3b{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y8e{bottom:1133.759546px;}
.y42{bottom:1133.939546px;}
.y3{bottom:1151.039540px;}
.y1{bottom:1179.120600px;}
.h21{height:12.060000px;}
.hb{height:13.500000px;}
.h16{height:15.120000px;}
.h13{height:18.720000px;}
.h9{height:18.773430px;}
.h15{height:18.900000px;}
.hd{height:20.160000px;}
.h11{height:20.340000px;}
.h5{height:20.520000px;}
.h1e{height:23.760000px;}
.h1{height:24.480000px;}
.h1a{height:25.913662px;}
.hf{height:25.951630px;}
.h23{height:27.228505px;}
.h1c{height:27.246083px;}
.hc{height:32.199245px;}
.h10{height:36.179986px;}
.h24{height:36.509751px;}
.h18{height:40.842757px;}
.h17{height:40.869124px;}
.h1b{height:43.185920px;}
.h19{height:45.228498px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h12{height:48.199199px;}
.h14{height:50.100449px;}
.h20{height:53.999978px;}
.h8{height:54.457009px;}
.h22{height:56.159978px;}
.h2{height:58.861031px;}
.h1f{height:63.179975px;}
.ha{height:63.917904px;}
.h1d{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.wc{width:4.320000px;}
.w2{width:4.680000px;}
.w14{width:5.040000px;}
.w5{width:7.020000px;}
.w17{width:7.740000px;}
.w11{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.w10{width:9.540000px;}
.w19{width:10.800000px;}
.wa{width:12.420000px;}
.wf{width:12.960000px;}
.w15{width:24.120000px;}
.w6{width:24.840000px;}
.w4{width:31.860000px;}
.w3{width:40.860000px;}
.wd{width:43.380000px;}
.w1{width:73.980000px;}
.w12{width:81.360000px;}
.w9{width:140.400000px;}
.we{width:206.640000px;}
.w16{width:208.800000px;}
.w13{width:247.860000px;}
.wb{width:291.240000px;}
.w18{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:107.999957px;}
.x28{left:111.779955px;}
.xc{left:116.100000px;}
.x35{left:123.479951px;}
.x36{left:127.979949px;}
.x53{left:132.659947px;}
.x4c{left:134.099946px;}
.x4d{left:138.599945px;}
.x3d{left:145.079942px;}
.x6a{left:148.319941px;}
.x3e{left:149.579940px;}
.x4e{left:154.619938px;}
.x6b{left:178.919928px;}
.xe{left:181.259878px;}
.x6c{left:182.339927px;}
.x22{left:188.100000px;}
.x34{left:201.779919px;}
.xd{left:206.999917px;}
.x59{left:211.139916px;}
.x5a{left:215.639914px;}
.xf{left:236.159846px;}
.x1a{left:247.499901px;}
.x2a{left:249.120000px;}
.x1b{left:252.360000px;}
.x4f{left:260.459896px;}
.x50{left:265.499894px;}
.x6d{left:283.139887px;}
.x6e{left:286.379885px;}
.x54{left:296.279881px;}
.x55{left:300.779880px;}
.x10{left:311.219755px;}
.x2e{left:322.379871px;}
.x67{left:325.799870px;}
.x2f{left:327.419869px;}
.x51{left:331.019868px;}
.x11{left:333.359725px;}
.x52{left:336.059866px;}
.x30{left:345.059862px;}
.x31{left:350.099860px;}
.x68{left:356.399857px;}
.x69{left:359.639856px;}
.x57{left:364.679854px;}
.x58{left:369.179852px;}
.x6f{left:392.939843px;}
.x70{left:396.359841px;}
.x1c{left:397.800000px;}
.xb{left:399.599840px;}
.x1d{left:402.120000px;}
.x56{left:415.079834px;}
.x32{left:420.659832px;}
.x33{left:425.159830px;}
.x71{left:426.959829px;}
.x3f{left:430.199828px;}
.x2b{left:433.079827px;}
.x23{left:435.960000px;}
.x24{left:441.000000px;}
.x1e{left:445.140000px;}
.x29{left:462.599815px;}
.x25{left:465.120000px;}
.x26{left:470.160000px;}
.x45{left:473.039811px;}
.x46{left:478.079809px;}
.x5f{left:480.779808px;}
.x12{left:492.480225px;}
.x39{left:504.719798px;}
.x13{left:505.800216px;}
.x3a{left:508.139797px;}
.x60{left:511.199796px;}
.x61{left:514.619794px;}
.x14{left:519.120208px;}
.x20{left:520.372292px;}
.x15{left:532.260200px;}
.x16{left:536.760197px;}
.x1{left:549.000000px;}
.x2c{left:550.250930px;}
.x49{left:555.479778px;}
.x4a{left:560.519776px;}
.x3b{left:561.599775px;}
.x3c{left:566.099774px;}
.x2d{left:588.779764px;}
.x17{left:589.860178px;}
.x5b{left:599.039760px;}
.x5c{left:602.459759px;}
.x62{left:603.719759px;}
.x18{left:607.500107px;}
.x2{left:622.980000px;}
.x43{left:624.239750px;}
.x3{left:627.660000px;}
.x44{left:629.279748px;}
.x5d{left:633.059747px;}
.x5e{left:636.479745px;}
.x63{left:637.739745px;}
.x64{left:640.979744px;}
.x47{left:644.039742px;}
.x48{left:649.079740px;}
.x1f{left:651.780000px;}
.x19{left:664.919734px;}
.x4{left:668.520000px;}
.x5{left:673.200000px;}
.x27{left:678.960000px;}
.x40{left:703.799718px;}
.x6{left:705.060000px;}
.x41{left:708.839716px;}
.x37{left:715.679714px;}
.x38{left:720.179712px;}
.x7{left:722.340000px;}
.x8{left:747.180000px;}
.x65{left:750.959700px;}
.x4b{left:766.079694px;}
.x9{left:772.020000px;}
.x21{left:780.300000px;}
.x66{left:781.559687px;}
.x42{left:784.799686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.009459pt;}
.ls6{letter-spacing:0.025173pt;}
.ls9{letter-spacing:0.026890pt;}
.ls7{letter-spacing:0.026969pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:0.185732pt;}
.ls5{letter-spacing:0.273973pt;}
.ls8{letter-spacing:0.276408pt;}
.ws7{word-spacing:-37.295985pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-15.679994pt;}
.ws9{word-spacing:-12.468403pt;}
.ws6{word-spacing:-12.377727pt;}
.ws8{word-spacing:-12.218964pt;}
.wsa{word-spacing:-12.218886pt;}
.ws5{word-spacing:-12.191995pt;}
.ws3{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-566.049061pt;}
._d{margin-left:-416.743112pt;}
._4{margin-left:-265.677961pt;}
._2{margin-left:-260.083157pt;}
._c{margin-left:-203.373126pt;}
._3{margin-left:-194.419183pt;}
._a{margin-left:-187.251186pt;}
._6{margin-left:-78.766285pt;}
._b{margin-left:-60.985414pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._9{margin-left:-14.719290pt;}
._1{margin-left:-1.733990pt;}
._5{width:1.359694pt;}
._15{width:2.259112pt;}
._e{width:3.167168pt;}
._13{width:4.676309pt;}
._14{width:5.710613pt;}
._16{width:7.078020pt;}
._17{width:8.438176pt;}
._18{width:9.611524pt;}
._12{width:10.549637pt;}
._1e{width:12.770655pt;}
._1f{width:13.910802pt;}
._10{width:15.653399pt;}
._f{width:16.673365pt;}
._11{width:17.932941pt;}
._2e{width:18.824288pt;}
._26{width:19.768150pt;}
._2a{width:20.931388pt;}
._44{width:21.864878pt;}
._22{width:22.760444pt;}
._2c{width:23.663746pt;}
._19{width:24.607101pt;}
._1a{width:26.391628pt;}
._1b{width:27.377412pt;}
._24{width:28.701523pt;}
._36{width:29.662177pt;}
._2f{width:30.680062pt;}
._31{width:31.672859pt;}
._28{width:32.908218pt;}
._29{width:34.062955pt;}
._42{width:34.993165pt;}
._20{width:35.907693pt;}
._21{width:37.061752pt;}
._1c{width:38.024082pt;}
._1d{width:39.033802pt;}
._25{width:40.472853pt;}
._27{width:42.240899pt;}
._37{width:43.391448pt;}
._3f{width:44.578442pt;}
._47{width:45.524213pt;}
._43{width:46.428482pt;}
._40{width:47.361901pt;}
._33{width:48.281109pt;}
._38{width:49.410722pt;}
._39{width:50.368145pt;}
._2b{width:51.763434pt;}
._34{width:52.685305pt;}
._35{width:53.675911pt;}
._32{width:54.716211pt;}
._49{width:55.741840pt;}
._3b{width:56.750203pt;}
._3c{width:57.763595pt;}
._30{width:59.040243pt;}
._23{width:60.437708pt;}
._4e{width:61.673998pt;}
._4d{width:62.684107pt;}
._41{width:64.077284pt;}
._3d{width:65.774845pt;}
._3e{width:66.945475pt;}
._52{width:67.999375pt;}
._4a{width:69.154482pt;}
._48{width:70.796910pt;}
._45{width:72.212837pt;}
._3a{width:76.310225pt;}
._2d{width:78.116042pt;}
._53{width:79.326010pt;}
._4b{width:81.802559pt;}
._4c{width:83.081255pt;}
._51{width:87.368375pt;}
._46{width:88.663376pt;}
._4f{width:96.466051pt;}
._50{width:98.568665pt;}
.fs3{font-size:15.999994pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y41{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:2.719219pt;}
.y10{bottom:2.879160pt;}
.y19{bottom:3.199204pt;}
.y1c{bottom:3.199207pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y16{bottom:4.319182pt;}
.y3c{bottom:5.759065pt;}
.y4{bottom:52.106912pt;}
.y3a{bottom:101.866626pt;}
.yba{bottom:104.906625pt;}
.ye8{bottom:105.066625pt;}
.y7e{bottom:107.466890pt;}
.y173{bottom:107.626624pt;}
.y11a{bottom:107.786624pt;}
.y8d{bottom:108.106623pt;}
.y6e{bottom:108.106890pt;}
.y174{bottom:111.306622pt;}
.y145{bottom:111.466622pt;}
.y39{bottom:120.266619pt;}
.y37{bottom:121.866618pt;}
.ye7{bottom:124.266617pt;}
.yb9{bottom:124.906617pt;}
.y172{bottom:127.306616pt;}
.y102{bottom:127.946615pt;}
.y119{bottom:128.266615pt;}
.y8c{bottom:128.586615pt;}
.y6d{bottom:128.586882pt;}
.y144{bottom:132.106614pt;}
.y38{bottom:138.666611pt;}
.y36{bottom:142.346610pt;}
.ye6{bottom:143.466609pt;}
.yb8{bottom:144.906609pt;}
.y171{bottom:146.986608pt;}
.y7d{bottom:148.426607pt;}
.y118{bottom:148.746607pt;}
.y6c{bottom:149.066607pt;}
.y143{bottom:153.066605pt;}
.y35{bottom:156.746604pt;}
.y34{bottom:160.106603pt;}
.ye5{bottom:162.666602pt;}
.yb7{bottom:165.066601pt;}
.y170{bottom:166.506600pt;}
.y101{bottom:168.906599pt;}
.y117{bottom:169.226599pt;}
.y6b{bottom:169.386599pt;}
.y142{bottom:173.866597pt;}
.y33{bottom:178.346595pt;}
.ye4{bottom:181.866594pt;}
.yb6{bottom:185.066593pt;}
.y16f{bottom:186.186592pt;}
.y7c{bottom:189.226591pt;}
.y100{bottom:189.386591pt;}
.y116{bottom:189.706591pt;}
.y6a{bottom:189.866591pt;}
.y141{bottom:194.666589pt;}
.y32{bottom:198.826587pt;}
.ye3{bottom:201.226586pt;}
.yb5{bottom:205.066585pt;}
.y16e{bottom:205.866584pt;}
.y7b{bottom:209.706583pt;}
.yff{bottom:209.866583pt;}
.y115{bottom:210.026583pt;}
.y69{bottom:210.346583pt;}
.y140{bottom:215.466580pt;}
.y31{bottom:219.146579pt;}
.ye2{bottom:220.586578pt;}
.yb4{bottom:225.226577pt;}
.y16d{bottom:225.866576pt;}
.yfe{bottom:230.186575pt;}
.y114{bottom:230.506574pt;}
.y68{bottom:230.826574pt;}
.y13f{bottom:236.426572pt;}
.y30{bottom:239.626571pt;}
.ye1{bottom:239.786571pt;}
.y16c{bottom:244.266569pt;}
.yb3{bottom:245.226569pt;}
.yfd{bottom:250.666566pt;}
.y113{bottom:250.986566pt;}
.y67{bottom:251.306566pt;}
.y13e{bottom:257.226564pt;}
.ye0{bottom:258.986563pt;}
.y2f{bottom:260.106563pt;}
.y16b{bottom:262.986561pt;}
.yb2{bottom:265.226561pt;}
.yfc{bottom:271.146558pt;}
.y112{bottom:271.466558pt;}
.y66{bottom:271.786558pt;}
.y8b{bottom:275.146557pt;}
.y13d{bottom:278.026555pt;}
.ydf{bottom:278.186555pt;}
.y2e{bottom:280.586554pt;}
.y16a{bottom:282.666554pt;}
.yb1{bottom:285.386553pt;}
.yfb{bottom:291.626550pt;}
.y111{bottom:291.946550pt;}
.y65{bottom:292.106550pt;}
.y8a{bottom:295.466548pt;}
.yde{bottom:297.386548pt;}
.y13c{bottom:298.986547pt;}
.y2d{bottom:301.066546pt;}
.y169{bottom:302.186546pt;}
.yb0{bottom:305.386545pt;}
.yfa{bottom:312.106542pt;}
.y110{bottom:312.266542pt;}
.y64{bottom:312.586542pt;}
.y89{bottom:315.946540pt;}
.ydd{bottom:316.586540pt;}
.y13b{bottom:319.786539pt;}
.y2c{bottom:321.546538pt;}
.y168{bottom:321.866538pt;}
.yaf{bottom:325.386537pt;}
.y7a{bottom:332.426534pt;}
.yf9{bottom:332.586534pt;}
.y10f{bottom:332.746534pt;}
.y63{bottom:333.066533pt;}
.ydc{bottom:335.786532pt;}
.y13a{bottom:340.586530pt;}
.y167{bottom:341.546530pt;}
.y2b{bottom:341.866530pt;}
.yae{bottom:345.546528pt;}
.yf8{bottom:352.906526pt;}
.y10e{bottom:353.226525pt;}
.y62{bottom:353.546525pt;}
.ydb{bottom:354.986525pt;}
.y166{bottom:361.226522pt;}
.y139{bottom:361.546522pt;}
.y2a{bottom:362.346522pt;}
.yad{bottom:365.546520pt;}
.yf7{bottom:373.386517pt;}
.y10d{bottom:373.706517pt;}
.y61{bottom:374.026517pt;}
.yda{bottom:374.186517pt;}
.y165{bottom:380.906514pt;}
.y138{bottom:382.346514pt;}
.y29{bottom:382.826514pt;}
.yac{bottom:385.546512pt;}
.yd9{bottom:393.386509pt;}
.y77{bottom:393.866509pt;}
.y10c{bottom:394.186509pt;}
.y60{bottom:394.506509pt;}
.y164{bottom:399.306507pt;}
.y137{bottom:403.146505pt;}
.y28{bottom:403.306505pt;}
.yab{bottom:405.706504pt;}
.yd8{bottom:412.586502pt;}
.y72{bottom:414.186501pt;}
.yf6{bottom:414.346501pt;}
.y10b{bottom:414.666501pt;}
.y5f{bottom:414.826501pt;}
.y163{bottom:418.026499pt;}
.y27{bottom:423.786497pt;}
.y136{bottom:424.106497pt;}
.yaa{bottom:425.706496pt;}
.yd7{bottom:431.786494pt;}
.y76{bottom:434.666493pt;}
.yf5{bottom:434.826493pt;}
.y10a{bottom:434.986493pt;}
.y5e{bottom:435.306493pt;}
.y162{bottom:437.706492pt;}
.y26{bottom:444.266489pt;}
.y135{bottom:444.906489pt;}
.ya9{bottom:445.706488pt;}
.yd6{bottom:450.986486pt;}
.yf4{bottom:455.306485pt;}
.y109{bottom:455.466484pt;}
.y5d{bottom:455.786484pt;}
.y161{bottom:457.386484pt;}
.y25{bottom:464.586481pt;}
.y134{bottom:465.706480pt;}
.ya8{bottom:465.866480pt;}
.yd5{bottom:470.186479pt;}
.y71{bottom:475.626476pt;}
.y108{bottom:475.946476pt;}
.y5c{bottom:476.266476pt;}
.y160{bottom:477.066476pt;}
.y24{bottom:485.066473pt;}
.ya7{bottom:485.866472pt;}
.y133{bottom:486.666472pt;}
.yd4{bottom:489.386471pt;}
.yf3{bottom:496.106468pt;}
.y107{bottom:496.426468pt;}
.y15f{bottom:496.586468pt;}
.y5b{bottom:496.746468pt;}
.y23{bottom:505.546464pt;}
.ya6{bottom:505.866464pt;}
.y132{bottom:507.466464pt;}
.yd3{bottom:508.586463pt;}
.y15e{bottom:516.266460pt;}
.y6f{bottom:516.426460pt;}
.yf2{bottom:516.586460pt;}
.y106{bottom:516.906460pt;}
.y5a{bottom:517.066460pt;}
.y88{bottom:520.426458pt;}
.y22{bottom:526.026456pt;}
.yd2{bottom:527.786456pt;}
.y131{bottom:528.266455pt;}
.y15d{bottom:536.266452pt;}
.y70{bottom:536.906452pt;}
.yf1{bottom:537.066452pt;}
.y105{bottom:537.386452pt;}
.y59{bottom:537.546452pt;}
.y87{bottom:540.906450pt;}
.ya5{bottom:546.026448pt;}
.y21{bottom:546.506448pt;}
.yd1{bottom:546.986448pt;}
.y130{bottom:549.066447pt;}
.y15c{bottom:555.946444pt;}
.yf0{bottom:557.386444pt;}
.y104{bottom:557.706444pt;}
.y58{bottom:558.026443pt;}
.y86{bottom:561.386442pt;}
.ya4{bottom:566.026440pt;}
.yd0{bottom:566.186440pt;}
.y20{bottom:566.826440pt;}
.y12f{bottom:570.026439pt;}
.y15b{bottom:575.466436pt;}
.yef{bottom:578.186435pt;}
.y57{bottom:578.506435pt;}
.ycf{bottom:585.386433pt;}
.ya3{bottom:586.186432pt;}
.y1f{bottom:588.266431pt;}
.y12e{bottom:590.826430pt;}
.y15a{bottom:595.146429pt;}
.yee{bottom:598.666427pt;}
.y56{bottom:598.986427pt;}
.yce{bottom:604.586425pt;}
.ya2{bottom:606.186424pt;}
.y12d{bottom:611.626422pt;}
.y159{bottom:614.826421pt;}
.y1d{bottom:615.307200pt;}
.yed{bottom:619.146419pt;}
.y55{bottom:619.466419pt;}
.ycd{bottom:623.786417pt;}
.ya1{bottom:626.186416pt;}
.y12c{bottom:632.586414pt;}
.y158{bottom:634.506413pt;}
.y75{bottom:639.146411pt;}
.yec{bottom:639.626411pt;}
.y54{bottom:639.786411pt;}
.ycc{bottom:642.986409pt;}
.y1b{bottom:645.227200pt;}
.ya0{bottom:646.346408pt;}
.y1a{bottom:648.426407pt;}
.y18{bottom:653.227200pt;}
.y12b{bottom:653.386405pt;}
.y157{bottom:654.186405pt;}
.y79{bottom:659.626403pt;}
.yeb{bottom:660.106403pt;}
.y53{bottom:660.266403pt;}
.ycb{bottom:662.186402pt;}
.y9f{bottom:666.346400pt;}
.y156{bottom:673.866397pt;}
.y12a{bottom:674.186397pt;}
.y84{bottom:680.106395pt;}
.yea{bottom:680.426394pt;}
.y52{bottom:680.746394pt;}
.yca{bottom:681.386394pt;}
.y17{bottom:683.306393pt;}
.y9e{bottom:686.346392pt;}
.y155{bottom:693.546389pt;}
.y129{bottom:695.146389pt;}
.y78{bottom:700.586386pt;}
.ye9{bottom:700.906386pt;}
.y51{bottom:701.226386pt;}
.y15{bottom:706.187200pt;}
.y9d{bottom:706.506384pt;}
.y154{bottom:713.066381pt;}
.y128{bottom:715.946380pt;}
.yc9{bottom:719.786379pt;}
.y103{bottom:721.386378pt;}
.y50{bottom:721.706378pt;}
.y14{bottom:726.346376pt;}
.y9c{bottom:726.506376pt;}
.y153{bottom:732.746374pt;}
.y127{bottom:736.746372pt;}
.yc8{bottom:738.986371pt;}
.y4f{bottom:742.186370pt;}
.y9b{bottom:746.506368pt;}
.y11{bottom:746.507200pt;}
.y152{bottom:752.426366pt;}
.y13{bottom:755.466364pt;}
.y126{bottom:757.706364pt;}
.yc7{bottom:758.186363pt;}
.y4e{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.y9a{bottom:766.666360pt;}
.y151{bottom:772.106358pt;}
.yc6{bottom:777.386356pt;}
.y125{bottom:778.506355pt;}
.y83{bottom:782.346354pt;}
.y4d{bottom:782.986353pt;}
.y99{bottom:786.666352pt;}
.y150{bottom:791.786350pt;}
.ye{bottom:794.346349pt;}
.yc5{bottom:796.586348pt;}
.y124{bottom:799.306347pt;}
.y82{bottom:802.826346pt;}
.y4c{bottom:803.466345pt;}
.y98{bottom:806.666344pt;}
.y14f{bottom:811.466342pt;}
.yc4{bottom:815.786340pt;}
.y123{bottom:820.266339pt;}
.y81{bottom:823.306337pt;}
.y4b{bottom:823.946337pt;}
.y97{bottom:826.826336pt;}
.yd{bottom:830.506334pt;}
.y14e{bottom:831.146334pt;}
.yc3{bottom:834.986333pt;}
.y122{bottom:841.066330pt;}
.y85{bottom:843.786329pt;}
.y4a{bottom:844.426329pt;}
.y96{bottom:846.986328pt;}
.y74{bottom:847.786328pt;}
.y14d{bottom:850.666326pt;}
.yc2{bottom:854.186325pt;}
.y121{bottom:861.866322pt;}
.y80{bottom:864.266321pt;}
.y49{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y95{bottom:867.306320pt;}
.y14c{bottom:870.346319pt;}
.yc1{bottom:873.386317pt;}
.y120{bottom:882.666314pt;}
.y48{bottom:885.226313pt;}
.y94{bottom:887.466312pt;}
.yb{bottom:888.266311pt;}
.y14b{bottom:890.026311pt;}
.yc0{bottom:892.586310pt;}
.y11f{bottom:903.626305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y73{bottom:905.066305pt;}
.y47{bottom:905.706304pt;}
.y93{bottom:907.626304pt;}
.y14a{bottom:909.706303pt;}
.ybf{bottom:911.786302pt;}
.y11e{bottom:924.426297pt;}
.y46{bottom:926.186296pt;}
.y92{bottom:927.626296pt;}
.y149{bottom:929.386295pt;}
.ybe{bottom:930.986294pt;}
.y40{bottom:934.667200pt;}
.y11d{bottom:945.226289pt;}
.y7f{bottom:946.026288pt;}
.y45{bottom:946.666288pt;}
.y91{bottom:947.626288pt;}
.y3f{bottom:948.426287pt;}
.y148{bottom:949.066287pt;}
.ybd{bottom:950.186287pt;}
.y11c{bottom:966.186280pt;}
.y3e{bottom:966.506280pt;}
.y44{bottom:967.146280pt;}
.y90{bottom:967.786280pt;}
.y147{bottom:968.746279pt;}
.ybc{bottom:969.386279pt;}
.y3d{bottom:984.586273pt;}
.y11b{bottom:986.986272pt;}
.y43{bottom:987.466272pt;}
.y8f{bottom:987.786272pt;}
.y146{bottom:988.266271pt;}
.ybb{bottom:988.586271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y3b{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y8e{bottom:1007.786264pt;}
.y42{bottom:1007.946263pt;}
.y3{bottom:1023.146257pt;}
.y1{bottom:1048.107200pt;}
.h21{height:10.720000pt;}
.hb{height:12.000000pt;}
.h16{height:13.440000pt;}
.h13{height:16.640000pt;}
.h9{height:16.687493pt;}
.h15{height:16.800000pt;}
.hd{height:17.920000pt;}
.h11{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1e{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1a{height:23.034366pt;}
.hf{height:23.068116pt;}
.h23{height:24.203115pt;}
.h1c{height:24.218740pt;}
.hc{height:28.621551pt;}
.h10{height:32.159987pt;}
.h24{height:32.453112pt;}
.h18{height:36.304673pt;}
.h17{height:36.328110pt;}
.h1b{height:38.387485pt;}
.h19{height:40.203109pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h12{height:42.843733pt;}
.h14{height:44.533732pt;}
.h20{height:47.999981pt;}
.h8{height:48.406231pt;}
.h22{height:49.919980pt;}
.h2{height:52.320917pt;}
.h1f{height:56.159978pt;}
.ha{height:56.815915pt;}
.h1d{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.wc{width:3.840000pt;}
.w2{width:4.160000pt;}
.w14{width:4.480000pt;}
.w5{width:6.240000pt;}
.w17{width:6.880000pt;}
.w11{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.w10{width:8.480000pt;}
.w19{width:9.600000pt;}
.wa{width:11.040000pt;}
.wf{width:11.520000pt;}
.w15{width:21.440000pt;}
.w6{width:22.080000pt;}
.w4{width:28.320000pt;}
.w3{width:36.320000pt;}
.wd{width:38.560000pt;}
.w1{width:65.760000pt;}
.w12{width:72.320000pt;}
.w9{width:124.800000pt;}
.we{width:183.680000pt;}
.w16{width:185.600000pt;}
.w13{width:220.320000pt;}
.wb{width:258.880000pt;}
.w18{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:95.999962pt;}
.x28{left:99.359960pt;}
.xc{left:103.200000pt;}
.x35{left:109.759956pt;}
.x36{left:113.759954pt;}
.x53{left:117.919953pt;}
.x4c{left:119.199952pt;}
.x4d{left:123.199951pt;}
.x3d{left:128.959948pt;}
.x6a{left:131.839947pt;}
.x3e{left:132.959947pt;}
.x4e{left:137.439945pt;}
.x6b{left:159.039936pt;}
.xe{left:161.119892pt;}
.x6c{left:162.079935pt;}
.x22{left:167.200000pt;}
.x34{left:179.359928pt;}
.xd{left:183.999926pt;}
.x59{left:187.679925pt;}
.x5a{left:191.679923pt;}
.xf{left:209.919863pt;}
.x1a{left:219.999912pt;}
.x2a{left:221.440000pt;}
.x1b{left:224.320000pt;}
.x4f{left:231.519907pt;}
.x50{left:235.999906pt;}
.x6d{left:251.679899pt;}
.x6e{left:254.559898pt;}
.x54{left:263.359895pt;}
.x55{left:267.359893pt;}
.x10{left:276.639782pt;}
.x2e{left:286.559885pt;}
.x67{left:289.599884pt;}
.x2f{left:291.039884pt;}
.x51{left:294.239882pt;}
.x11{left:296.319756pt;}
.x52{left:298.719881pt;}
.x30{left:306.719877pt;}
.x31{left:311.199876pt;}
.x68{left:316.799873pt;}
.x69{left:319.679872pt;}
.x57{left:324.159870pt;}
.x58{left:328.159869pt;}
.x6f{left:349.279860pt;}
.x70{left:352.319859pt;}
.x1c{left:353.600000pt;}
.xb{left:355.199858pt;}
.x1d{left:357.440000pt;}
.x56{left:368.959852pt;}
.x32{left:373.919850pt;}
.x33{left:377.919849pt;}
.x71{left:379.519848pt;}
.x3f{left:382.399847pt;}
.x2b{left:384.959846pt;}
.x23{left:387.520000pt;}
.x24{left:392.000000pt;}
.x1e{left:395.680000pt;}
.x29{left:411.199836pt;}
.x25{left:413.440000pt;}
.x26{left:417.920000pt;}
.x45{left:420.479832pt;}
.x46{left:424.959830pt;}
.x5f{left:427.359829pt;}
.x12{left:437.760200pt;}
.x39{left:448.639821pt;}
.x13{left:449.600192pt;}
.x3a{left:451.679819pt;}
.x60{left:454.399818pt;}
.x61{left:457.439817pt;}
.x14{left:461.440185pt;}
.x20{left:462.553148pt;}
.x15{left:473.120178pt;}
.x16{left:477.120175pt;}
.x1{left:488.000000pt;}
.x2c{left:489.111938pt;}
.x49{left:493.759802pt;}
.x4a{left:498.239801pt;}
.x3b{left:499.199800pt;}
.x3c{left:503.199799pt;}
.x2d{left:523.359791pt;}
.x17{left:524.320158pt;}
.x5b{left:532.479787pt;}
.x5c{left:535.519786pt;}
.x62{left:536.639785pt;}
.x18{left:540.000095pt;}
.x2{left:553.760000pt;}
.x43{left:554.879778pt;}
.x3{left:557.920000pt;}
.x44{left:559.359776pt;}
.x5d{left:562.719775pt;}
.x5e{left:565.759774pt;}
.x63{left:566.879773pt;}
.x64{left:569.759772pt;}
.x47{left:572.479771pt;}
.x48{left:576.959769pt;}
.x1f{left:579.360000pt;}
.x19{left:591.039763pt;}
.x4{left:594.240000pt;}
.x5{left:598.400000pt;}
.x27{left:603.520000pt;}
.x40{left:625.599750pt;}
.x6{left:626.720000pt;}
.x41{left:630.079748pt;}
.x37{left:636.159746pt;}
.x38{left:640.159744pt;}
.x7{left:642.080000pt;}
.x8{left:664.160000pt;}
.x65{left:667.519733pt;}
.x4b{left:680.959728pt;}
.x9{left:686.240000pt;}
.x21{left:693.600000pt;}
.x66{left:694.719722pt;}
.x42{left:697.599721pt;}
}




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