
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ab133618f87b14fb7bd7e067.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_db0779b9ab37bf951791ac38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')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_3637d2249b3888a91afe204b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_3d94e49bceb00a1b9679ec06.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_e92c784c233f734715fa6347.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;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_aaca9a3242f401848a5ef2b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_5c55f5a2be76fb4ea0cb9e65.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_b759500654a23665f8268f5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_2b34e99d5d9c439642899126.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128906;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_189af3d2ba3a94b8df6aa8fa.woff2')format("woff");}.fff{font-family:fff;line-height:0.927734;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_4653d22648b5cfa9abd26165.woff2')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_2073bd9b4a99e8cb512b8ee8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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_dc9cc9cd47fa1d853ff2612e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.747070;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_c8b6c76fd87daf3db514926a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.120000px;}
.v6{vertical-align:-12.240000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls31{letter-spacing:-0.900000px;}
.ls15{letter-spacing:-0.882000px;}
.ls20{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.331200px;}
.ls2f{letter-spacing:-0.324000px;}
.ls2d{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.272400px;}
.ls9{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.234000px;}
.ls21{letter-spacing:-0.205800px;}
.lsf{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.126600px;}
.ls1e{letter-spacing:-0.093600px;}
.ls4{letter-spacing:-0.091200px;}
.lsd{letter-spacing:-0.090000px;}
.ls1a{letter-spacing:-0.078000px;}
.ls7{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.048960px;}
.ls8{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.031680px;}
.ls2e{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.090000px;}
.ls30{letter-spacing:0.126000px;}
.ls2a{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.234000px;}
.ls2b{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.306000px;}
.ls34{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.400200px;}
.ls13{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.486000px;}
.lse{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.630000px;}
.ls0{letter-spacing:2.826000px;}
.ls17{letter-spacing:4.986000px;}
.ls25{letter-spacing:6.426000px;}
.ls22{letter-spacing:20.826000px;}
.ls23{letter-spacing:25.146000px;}
.ls12{letter-spacing:76.446000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws9{word-spacing:-18.468000px;}
.ws3{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-16.824960px;}
.ws1d{word-spacing:-14.058000px;}
.ws28{word-spacing:-14.040000px;}
.ws1b{word-spacing:-14.022000px;}
.ws21{word-spacing:-13.986000px;}
.ws1c{word-spacing:-13.950000px;}
.ws29{word-spacing:-13.896000px;}
.ws20{word-spacing:-13.878000px;}
.ws22{word-spacing:-13.806000px;}
.ws24{word-spacing:-13.752000px;}
.ws1e{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.554000px;}
.ws26{word-spacing:-13.302000px;}
.ws27{word-spacing:-13.230000px;}
.wsf{word-spacing:-13.086000px;}
.wse{word-spacing:-13.032000px;}
.ws6{word-spacing:-13.014000px;}
.wsb{word-spacing:-12.924000px;}
.wsd{word-spacing:-12.834000px;}
.ws1f{word-spacing:-12.744000px;}
.ws14{word-spacing:-12.726000px;}
.ws23{word-spacing:-12.708000px;}
.ws25{word-spacing:-12.690000px;}
.ws10{word-spacing:-11.625840px;}
.ws17{word-spacing:-11.532240px;}
.ws2{word-spacing:-10.342080px;}
.ws7{word-spacing:-8.388000px;}
.ws11{word-spacing:-7.688040px;}
.ws12{word-spacing:-7.287840px;}
.ws16{word-spacing:-7.238880px;}
.ws15{word-spacing:-7.209840px;}
.ws18{word-spacing:-7.161240px;}
.ws1a{word-spacing:-7.082040px;}
.ws13{word-spacing:-7.015440px;}
.ws19{word-spacing:-6.447840px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._4{width:1.149120px;}
._5{width:2.479200px;}
._15{width:3.587040px;}
._e{width:4.656000px;}
._f{width:5.687760px;}
._10{width:7.074000px;}
._11{width:8.408880px;}
._14{width:9.945120px;}
._1b{width:11.600880px;}
._a{width:14.796000px;}
._b{width:15.993600px;}
._16{width:17.442000px;}
._1e{width:18.522000px;}
._27{width:19.586880px;}
._1c{width:20.628000px;}
._3{width:22.503600px;}
._2{width:24.035760px;}
._8{width:25.704000px;}
._9{width:26.784000px;}
._6{width:28.008000px;}
._7{width:29.174880px;}
._1f{width:30.996000px;}
._12{width:32.022000px;}
._13{width:33.155760px;}
._23{width:34.290000px;}
._24{width:36.018000px;}
._29{width:37.821600px;}
._1d{width:38.826000px;}
._1a{width:40.122000px;}
._25{width:41.580000px;}
._31{width:42.606000px;}
._30{width:44.139600px;}
._19{width:45.306000px;}
._28{width:46.583760px;}
._32{width:47.595360px;}
._39{width:48.870000px;}
._20{width:53.244000px;}
._21{width:54.414000px;}
._17{width:56.322000px;}
._18{width:57.672000px;}
._2c{width:59.076000px;}
._c{width:61.182000px;}
._d{width:62.292000px;}
._35{width:64.530000px;}
._3b{width:66.348000px;}
._26{width:68.580000px;}
._2a{width:69.660000px;}
._2b{width:71.064000px;}
._3a{width:72.684000px;}
._2e{width:75.708000px;}
._2f{width:76.806000px;}
._22{width:88.254000px;}
._3d{width:90.912000px;}
._37{width:98.334000px;}
._38{width:99.576000px;}
._3c{width:113.454000px;}
._33{width:114.912000px;}
._34{width:116.370000px;}
._36{width:262.002000px;}
._2d{width:1183.860000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fsc{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y41{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1f{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y25{bottom:3.600000px;}
.y1a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y23{bottom:4.860000px;}
.y11c{bottom:6.825000px;}
.yf5{bottom:6.840000px;}
.y11a{bottom:7.005000px;}
.yef{bottom:7.020000px;}
.y102{bottom:7.065000px;}
.y122{bottom:8.265000px;}
.y120{bottom:8.445000px;}
.y40{bottom:9.000000px;}
.ycd{bottom:9.540000px;}
.yc1{bottom:9.720000px;}
.ycb{bottom:9.765000px;}
.y9f{bottom:10.800000px;}
.y39{bottom:10.965000px;}
.y1d{bottom:10.980000px;}
.yaa{bottom:11.010000px;}
.y21{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y3b{bottom:16.185000px;}
.yf{bottom:19.980000px;}
.y12b{bottom:25.770000px;}
.yf2{bottom:26.820000px;}
.yfa{bottom:27.000000px;}
.yff{bottom:27.045000px;}
.y3f{bottom:30.240000px;}
.yc9{bottom:32.220000px;}
.yc4{bottom:32.400000px;}
.y38{bottom:34.005000px;}
.y1c{bottom:34.020000px;}
.ya2{bottom:36.180000px;}
.ya7{bottom:36.210000px;}
.y9d{bottom:36.360000px;}
.y118{bottom:44.625000px;}
.yf1{bottom:44.640000px;}
.yfe{bottom:44.685000px;}
.y13{bottom:45.765000px;}
.y18{bottom:45.900000px;}
.y127{bottom:46.065000px;}
.y11e{bottom:47.505000px;}
.y3e{bottom:51.660000px;}
.ycf{bottom:52.740000px;}
.yc8{bottom:52.785000px;}
.yc3{bottom:52.920000px;}
.y37{bottom:57.045000px;}
.y5{bottom:58.320000px;}
.y9c{bottom:59.220000px;}
.ya6{bottom:59.250000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y3d{bottom:75.810000px;}
.y36{bottom:80.085000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y35{bottom:102.945000px;}
.ybf{bottom:111.060000px;}
.y12d{bottom:118.440000px;}
.y13b{bottom:119.880000px;}
.yed{bottom:121.320000px;}
.y99{bottom:122.040000px;}
.y34{bottom:125.985000px;}
.y6f{bottom:130.320000px;}
.y12a{bottom:132.840000px;}
.ybe{bottom:134.100000px;}
.y13a{bottom:142.956000px;}
.yec{bottom:144.396000px;}
.y98{bottom:144.936000px;}
.y33{bottom:149.025000px;}
.y12c{bottom:151.605000px;}
.y6e{bottom:153.210000px;}
.ybd{bottom:157.170000px;}
.y139{bottom:165.990000px;}
.yeb{bottom:167.430000px;}
.y97{bottom:167.970000px;}
.y126{bottom:170.505000px;}
.y32{bottom:172.065000px;}
.y6d{bottom:176.250000px;}
.y3a{bottom:178.065000px;}
.ybc{bottom:180.210000px;}
.y138{bottom:189.030000px;}
.y129{bottom:189.405000px;}
.yea{bottom:190.470000px;}
.y96{bottom:191.010000px;}
.y31{bottom:195.150000px;}
.y6c{bottom:199.290000px;}
.ybb{bottom:203.250000px;}
.y27{bottom:203.805000px;}
.y128{bottom:209.565000px;}
.y137{bottom:212.070000px;}
.ye9{bottom:213.510000px;}
.y95{bottom:214.050000px;}
.y30{bottom:218.190000px;}
.y6b{bottom:222.330000px;}
.yba{bottom:226.290000px;}
.y123{bottom:228.465000px;}
.y136{bottom:235.110000px;}
.ye8{bottom:236.370000px;}
.y94{bottom:237.090000px;}
.y2f{bottom:241.050000px;}
.y6a{bottom:245.370000px;}
.y125{bottom:247.365000px;}
.yb9{bottom:249.150000px;}
.y135{bottom:257.970000px;}
.ye7{bottom:259.410000px;}
.y93{bottom:260.130000px;}
.y2e{bottom:264.090000px;}
.y124{bottom:266.085000px;}
.y69{bottom:268.410000px;}
.yb8{bottom:272.190000px;}
.y134{bottom:281.010000px;}
.ye6{bottom:282.450000px;}
.y92{bottom:282.990000px;}
.y11d{bottom:284.985000px;}
.y2d{bottom:287.130000px;}
.y68{bottom:291.270000px;}
.yb7{bottom:295.230000px;}
.y121{bottom:303.885000px;}
.y133{bottom:304.050000px;}
.ye5{bottom:305.490000px;}
.y91{bottom:306.030000px;}
.y2c{bottom:310.170000px;}
.y67{bottom:314.310000px;}
.yb6{bottom:318.270000px;}
.y11f{bottom:324.045000px;}
.y132{bottom:327.090000px;}
.ye4{bottom:328.530000px;}
.y90{bottom:329.070000px;}
.y2b{bottom:333.210000px;}
.y66{bottom:337.350000px;}
.yb5{bottom:341.310000px;}
.y117{bottom:344.385000px;}
.y131{bottom:350.130000px;}
.ye3{bottom:351.390000px;}
.y8f{bottom:352.110000px;}
.y2a{bottom:356.070000px;}
.y65{bottom:360.390000px;}
.y11b{bottom:363.285000px;}
.yb4{bottom:364.170000px;}
.y130{bottom:373.170000px;}
.ye2{bottom:374.430000px;}
.y8e{bottom:375.150000px;}
.y29{bottom:379.110000px;}
.y119{bottom:382.005000px;}
.y64{bottom:383.430000px;}
.yb3{bottom:387.210000px;}
.y12f{bottom:396.075000px;}
.ye1{bottom:397.515000px;}
.y8d{bottom:398.235000px;}
.y116{bottom:402.015000px;}
.y28{bottom:402.150000px;}
.y63{bottom:406.515000px;}
.yb2{bottom:410.295000px;}
.ye0{bottom:420.555000px;}
.y8c{bottom:421.095000px;}
.y62{bottom:429.375000px;}
.y115{bottom:432.975000px;}
.yb1{bottom:433.335000px;}
.y12e{bottom:442.155000px;}
.ydf{bottom:443.595000px;}
.y8b{bottom:444.135000px;}
.y61{bottom:452.415000px;}
.y114{bottom:456.015000px;}
.yb0{bottom:456.375000px;}
.yde{bottom:466.635000px;}
.y8a{bottom:467.175000px;}
.y60{bottom:475.455000px;}
.y113{bottom:479.055000px;}
.yaf{bottom:479.415000px;}
.ydd{bottom:489.495000px;}
.y89{bottom:490.215000px;}
.y5f{bottom:498.495000px;}
.y112{bottom:502.095000px;}
.ydc{bottom:512.535000px;}
.y88{bottom:513.255000px;}
.y5e{bottom:521.535000px;}
.y111{bottom:524.955000px;}
.yae{bottom:525.315000px;}
.ydb{bottom:535.575000px;}
.y87{bottom:536.115000px;}
.yab{bottom:539.715000px;}
.y5d{bottom:544.575000px;}
.y110{bottom:547.995000px;}
.yda{bottom:558.615000px;}
.y86{bottom:559.155000px;}
.yad{bottom:563.835000px;}
.y5c{bottom:567.435000px;}
.y10f{bottom:571.035000px;}
.yd9{bottom:581.655000px;}
.y85{bottom:582.195000px;}
.yac{bottom:587.955000px;}
.y5b{bottom:590.475000px;}
.y10e{bottom:594.075000px;}
.yd8{bottom:604.695000px;}
.y84{bottom:605.235000px;}
.ya5{bottom:612.075000px;}
.y5a{bottom:613.515000px;}
.y10d{bottom:617.115000px;}
.y26{bottom:618.015000px;}
.yd7{bottom:627.555000px;}
.y83{bottom:628.275000px;}
.y24{bottom:633.315000px;}
.ya9{bottom:636.195000px;}
.y59{bottom:636.555000px;}
.y10c{bottom:640.185000px;}
.yd6{bottom:650.625000px;}
.y82{bottom:651.345000px;}
.y22{bottom:652.065000px;}
.y58{bottom:659.625000px;}
.ya8{bottom:660.345000px;}
.y10b{bottom:663.045000px;}
.y20{bottom:672.045000px;}
.y81{bottom:674.205000px;}
.y57{bottom:682.485000px;}
.ya1{bottom:684.465000px;}
.y10a{bottom:686.085000px;}
.yd5{bottom:696.705000px;}
.y80{bottom:697.245000px;}
.y1e{bottom:702.105000px;}
.y56{bottom:705.525000px;}
.ya4{bottom:708.585000px;}
.y109{bottom:709.125000px;}
.yd2{bottom:710.925000px;}
.y1b{bottom:715.425000px;}
.y7f{bottom:720.285000px;}
.y55{bottom:728.565000px;}
.y108{bottom:732.165000px;}
.yd4{bottom:732.525000px;}
.ya3{bottom:732.705000px;}
.y7e{bottom:743.325000px;}
.y54{bottom:751.605000px;}
.yd3{bottom:754.125000px;}
.y107{bottom:755.205000px;}
.y9b{bottom:756.825000px;}
.y19{bottom:761.505000px;}
.y7d{bottom:766.365000px;}
.y53{bottom:774.645000px;}
.yce{bottom:775.725000px;}
.y106{bottom:778.065000px;}
.y17{bottom:778.425000px;}
.ya0{bottom:781.125000px;}
.y7c{bottom:789.405000px;}
.yd1{bottom:797.325000px;}
.y52{bottom:797.685000px;}
.y105{bottom:801.105000px;}
.y9e{bottom:805.245000px;}
.y7b{bottom:812.265000px;}
.yd0{bottom:818.925000px;}
.y51{bottom:820.545000px;}
.y104{bottom:824.145000px;}
.y9a{bottom:830.445000px;}
.y7a{bottom:835.305000px;}
.y15{bottom:839.805000px;}
.yc7{bottom:840.525000px;}
.y50{bottom:843.585000px;}
.y12{bottom:854.385000px;}
.y79{bottom:858.345000px;}
.ycc{bottom:861.945000px;}
.y4f{bottom:866.625000px;}
.y103{bottom:870.225000px;}
.y78{bottom:881.385000px;}
.yca{bottom:883.545000px;}
.yfd{bottom:884.445000px;}
.y4e{bottom:889.710000px;}
.y101{bottom:903.390000px;}
.y77{bottom:904.470000px;}
.yc2{bottom:905.190000px;}
.y4d{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.y100{bottom:922.290000px;}
.yc6{bottom:926.790000px;}
.y76{bottom:927.510000px;}
.yd{bottom:929.130000px;}
.y4c{bottom:935.790000px;}
.yf9{bottom:941.010000px;}
.yc5{bottom:948.390000px;}
.y75{bottom:950.370000px;}
.y4b{bottom:958.650000px;}
.yfc{bottom:959.910000px;}
.yc0{bottom:971.070000px;}
.y74{bottom:973.410000px;}
.yfb{bottom:978.810000px;}
.y4a{bottom:981.690000px;}
.y73{bottom:996.450000px;}
.yf6{bottom:997.710000px;}
.y49{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.yf8{bottom:1016.430000px;}
.y72{bottom:1019.490000px;}
.y48{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.yf7{bottom:1035.330000px;}
.y71{bottom:1042.530000px;}
.y8{bottom:1046.850000px;}
.y47{bottom:1050.810000px;}
.yf0{bottom:1054.230000px;}
.y70{bottom:1062.510000px;}
.y3c{bottom:1065.210000px;}
.yf4{bottom:1073.130000px;}
.y46{bottom:1073.850000px;}
.yf3{bottom:1091.850000px;}
.y45{bottom:1096.710000px;}
.yee{bottom:1111.830000px;}
.y44{bottom:1119.750000px;}
.y43{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y42{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1a{height:13.320000px;}
.hf{height:13.665000px;}
.h13{height:14.580000px;}
.h21{height:15.285000px;}
.h16{height:16.920000px;}
.h3b{height:17.625000px;}
.h45{height:17.676000px;}
.h39{height:17.805000px;}
.h3f{height:17.841000px;}
.h3d{height:17.842500px;}
.h1f{height:18.750000px;}
.h42{height:19.065000px;}
.h41{height:19.245000px;}
.h1e{height:19.980000px;}
.h36{height:20.340000px;}
.h30{height:20.505000px;}
.h35{height:20.520000px;}
.h34{height:20.542500px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h2b{height:22.860000px;}
.h2e{height:23.025000px;}
.h29{height:23.040000px;}
.h2d{height:23.070000px;}
.h23{height:25.725000px;}
.h24{height:29.145586px;}
.h1c{height:30.060000px;}
.h10{height:32.670352px;}
.h1b{height:33.588984px;}
.h44{height:36.576000px;}
.h14{height:36.886641px;}
.h17{height:40.472227px;}
.h27{height:41.291016px;}
.h31{height:44.000156px;}
.h18{height:46.080000px;}
.h12{height:48.761719px;}
.h19{height:49.253906px;}
.h1d{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h26{height:55.054688px;}
.h28{height:55.209375px;}
.h3a{height:55.425000px;}
.h3e{height:55.461000px;}
.h3c{height:55.462500px;}
.h43{height:56.865000px;}
.h6{height:57.051211px;}
.h40{height:58.305000px;}
.h20{height:60.418125px;}
.h11{height:61.042500px;}
.h15{height:61.380000px;}
.h37{height:63.540000px;}
.h33{height:63.562500px;}
.h32{height:63.705000px;}
.h38{height:63.720000px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h2f{height:71.265000px;}
.h2a{height:71.280000px;}
.h2c{height:71.310000px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h25{height:93.810000px;}
.h8{height:108.030000px;}
.h22{height:414.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w6{width:76.669500px;}
.w5{width:124.005000px;}
.w12{width:134.989500px;}
.wf{width:141.829500px;}
.w10{width:155.175000px;}
.w13{width:202.560000px;}
.w15{width:217.999500px;}
.wc{width:218.359500px;}
.wd{width:227.550000px;}
.w16{width:227.730000px;}
.we{width:229.155000px;}
.w17{width:229.335000px;}
.wa{width:332.115000px;}
.w14{width:341.655000px;}
.w9{width:356.464500px;}
.w11{width:378.075000px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x26{left:12.049500px;}
.x3c{left:15.109500px;}
.x10{left:16.740000px;}
.x32{left:18.349500px;}
.x2{left:21.049500px;}
.x36{left:26.269500px;}
.x2e{left:28.650000px;}
.x2b{left:29.689500px;}
.x7{left:39.780000px;}
.x25{left:42.103500px;}
.x38{left:44.670000px;}
.x1c{left:46.440000px;}
.x1e{left:50.040000px;}
.x22{left:52.003500px;}
.x27{left:54.163500px;}
.x3f{left:57.240000px;}
.x20{left:58.860000px;}
.x1b{left:62.803500px;}
.x3e{left:64.260000px;}
.x35{left:67.483500px;}
.x2a{left:70.723500px;}
.xd{left:73.785000px;}
.x1d{left:76.170000px;}
.x1f{left:77.250000px;}
.x17{left:79.380000px;}
.x23{left:81.210000px;}
.x40{left:82.290000px;}
.x24{left:83.910000px;}
.x19{left:84.990000px;}
.x41{left:86.250000px;}
.x21{left:87.690000px;}
.x16{left:90.343500px;}
.x3d{left:92.323500px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x1a{left:109.063500px;}
.x37{left:137.685000px;}
.x39{left:139.845000px;}
.x3a{left:142.185000px;}
.x3b{left:143.265000px;}
.x2f{left:153.030000px;}
.x31{left:154.290000px;}
.x2c{left:155.370000px;}
.x3{left:157.005000px;}
.x30{left:158.610000px;}
.x2d{left:160.410000px;}
.xa{left:176.805000px;}
.x13{left:220.890000px;}
.x33{left:243.045000px;}
.x28{left:249.885000px;}
.x12{left:263.910000px;}
.xf{left:325.875000px;}
.x29{left:405.075000px;}
.x34{left:445.620000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x18{left:553.980000px;}
.x6{left:661.650000px;}
.xe{left:680.323500px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v6{vertical-align:-10.880000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls31{letter-spacing:-0.800000pt;}
.ls15{letter-spacing:-0.784000pt;}
.ls20{letter-spacing:-0.746667pt;}
.ls1c{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls2f{letter-spacing:-0.288000pt;}
.ls2d{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.242133pt;}
.ls9{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.208000pt;}
.ls21{letter-spacing:-0.182933pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.112533pt;}
.ls1e{letter-spacing:-0.083200pt;}
.ls4{letter-spacing:-0.081067pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls1a{letter-spacing:-0.069333pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.043520pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.028160pt;}
.ls2e{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.080000pt;}
.ls30{letter-spacing:0.112000pt;}
.ls2a{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.208000pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.272000pt;}
.ls34{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.355733pt;}
.ls13{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.432000pt;}
.lse{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.560000pt;}
.ls0{letter-spacing:2.512000pt;}
.ls17{letter-spacing:4.432000pt;}
.ls25{letter-spacing:5.712000pt;}
.ls22{letter-spacing:18.512000pt;}
.ls23{letter-spacing:22.352000pt;}
.ls12{letter-spacing:67.952000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws9{word-spacing:-16.416000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-14.955520pt;}
.ws1d{word-spacing:-12.496000pt;}
.ws28{word-spacing:-12.480000pt;}
.ws1b{word-spacing:-12.464000pt;}
.ws21{word-spacing:-12.432000pt;}
.ws1c{word-spacing:-12.400000pt;}
.ws29{word-spacing:-12.352000pt;}
.ws20{word-spacing:-12.336000pt;}
.ws22{word-spacing:-12.272000pt;}
.ws24{word-spacing:-12.224000pt;}
.ws1e{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.048000pt;}
.ws26{word-spacing:-11.824000pt;}
.ws27{word-spacing:-11.760000pt;}
.wsf{word-spacing:-11.632000pt;}
.wse{word-spacing:-11.584000pt;}
.ws6{word-spacing:-11.568000pt;}
.wsb{word-spacing:-11.488000pt;}
.wsd{word-spacing:-11.408000pt;}
.ws1f{word-spacing:-11.328000pt;}
.ws14{word-spacing:-11.312000pt;}
.ws23{word-spacing:-11.296000pt;}
.ws25{word-spacing:-11.280000pt;}
.ws10{word-spacing:-10.334080pt;}
.ws17{word-spacing:-10.250880pt;}
.ws2{word-spacing:-9.192960pt;}
.ws7{word-spacing:-7.456000pt;}
.ws11{word-spacing:-6.833813pt;}
.ws12{word-spacing:-6.478080pt;}
.ws16{word-spacing:-6.434560pt;}
.ws15{word-spacing:-6.408747pt;}
.ws18{word-spacing:-6.365547pt;}
.ws1a{word-spacing:-6.295147pt;}
.ws13{word-spacing:-6.235947pt;}
.ws19{word-spacing:-5.731413pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._4{width:1.021440pt;}
._5{width:2.203733pt;}
._15{width:3.188480pt;}
._e{width:4.138667pt;}
._f{width:5.055787pt;}
._10{width:6.288000pt;}
._11{width:7.474560pt;}
._14{width:8.840107pt;}
._1b{width:10.311893pt;}
._a{width:13.152000pt;}
._b{width:14.216533pt;}
._16{width:15.504000pt;}
._1e{width:16.464000pt;}
._27{width:17.410560pt;}
._1c{width:18.336000pt;}
._3{width:20.003200pt;}
._2{width:21.365120pt;}
._8{width:22.848000pt;}
._9{width:23.808000pt;}
._6{width:24.896000pt;}
._7{width:25.933227pt;}
._1f{width:27.552000pt;}
._12{width:28.464000pt;}
._13{width:29.471787pt;}
._23{width:30.480000pt;}
._24{width:32.016000pt;}
._29{width:33.619200pt;}
._1d{width:34.512000pt;}
._1a{width:35.664000pt;}
._25{width:36.960000pt;}
._31{width:37.872000pt;}
._30{width:39.235200pt;}
._19{width:40.272000pt;}
._28{width:41.407787pt;}
._32{width:42.306987pt;}
._39{width:43.440000pt;}
._20{width:47.328000pt;}
._21{width:48.368000pt;}
._17{width:50.064000pt;}
._18{width:51.264000pt;}
._2c{width:52.512000pt;}
._c{width:54.384000pt;}
._d{width:55.370667pt;}
._35{width:57.360000pt;}
._3b{width:58.976000pt;}
._26{width:60.960000pt;}
._2a{width:61.920000pt;}
._2b{width:63.168000pt;}
._3a{width:64.608000pt;}
._2e{width:67.296000pt;}
._2f{width:68.272000pt;}
._22{width:78.448000pt;}
._3d{width:80.810667pt;}
._37{width:87.408000pt;}
._38{width:88.512000pt;}
._3c{width:100.848000pt;}
._33{width:102.144000pt;}
._34{width:103.440000pt;}
._36{width:232.890667pt;}
._2d{width:1052.320000pt;}
.fs3{font-size:10.880000pt;}
.fsc{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y41{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1f{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y25{bottom:3.200000pt;}
.y1a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y23{bottom:4.320000pt;}
.y11c{bottom:6.066667pt;}
.yf5{bottom:6.080000pt;}
.y11a{bottom:6.226667pt;}
.yef{bottom:6.240000pt;}
.y102{bottom:6.280000pt;}
.y122{bottom:7.346667pt;}
.y120{bottom:7.506667pt;}
.y40{bottom:8.000000pt;}
.ycd{bottom:8.480000pt;}
.yc1{bottom:8.640000pt;}
.ycb{bottom:8.680000pt;}
.y9f{bottom:9.600000pt;}
.y39{bottom:9.746667pt;}
.y1d{bottom:9.760000pt;}
.yaa{bottom:9.786667pt;}
.y21{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y3b{bottom:14.386667pt;}
.yf{bottom:17.760000pt;}
.y12b{bottom:22.906667pt;}
.yf2{bottom:23.840000pt;}
.yfa{bottom:24.000000pt;}
.yff{bottom:24.040000pt;}
.y3f{bottom:26.880000pt;}
.yc9{bottom:28.640000pt;}
.yc4{bottom:28.800000pt;}
.y38{bottom:30.226667pt;}
.y1c{bottom:30.240000pt;}
.ya2{bottom:32.160000pt;}
.ya7{bottom:32.186667pt;}
.y9d{bottom:32.320000pt;}
.y118{bottom:39.666667pt;}
.yf1{bottom:39.680000pt;}
.yfe{bottom:39.720000pt;}
.y13{bottom:40.680000pt;}
.y18{bottom:40.800000pt;}
.y127{bottom:40.946667pt;}
.y11e{bottom:42.226667pt;}
.y3e{bottom:45.920000pt;}
.ycf{bottom:46.880000pt;}
.yc8{bottom:46.920000pt;}
.yc3{bottom:47.040000pt;}
.y37{bottom:50.706667pt;}
.y5{bottom:51.840000pt;}
.y9c{bottom:52.640000pt;}
.ya6{bottom:52.666667pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y3d{bottom:67.386667pt;}
.y36{bottom:71.186667pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y35{bottom:91.506667pt;}
.ybf{bottom:98.720000pt;}
.y12d{bottom:105.280000pt;}
.y13b{bottom:106.560000pt;}
.yed{bottom:107.840000pt;}
.y99{bottom:108.480000pt;}
.y34{bottom:111.986667pt;}
.y6f{bottom:115.840000pt;}
.y12a{bottom:118.080000pt;}
.ybe{bottom:119.200000pt;}
.y13a{bottom:127.072000pt;}
.yec{bottom:128.352000pt;}
.y98{bottom:128.832000pt;}
.y33{bottom:132.466667pt;}
.y12c{bottom:134.760000pt;}
.y6e{bottom:136.186667pt;}
.ybd{bottom:139.706667pt;}
.y139{bottom:147.546667pt;}
.yeb{bottom:148.826667pt;}
.y97{bottom:149.306667pt;}
.y126{bottom:151.560000pt;}
.y32{bottom:152.946667pt;}
.y6d{bottom:156.666667pt;}
.y3a{bottom:158.280000pt;}
.ybc{bottom:160.186667pt;}
.y138{bottom:168.026667pt;}
.y129{bottom:168.360000pt;}
.yea{bottom:169.306667pt;}
.y96{bottom:169.786667pt;}
.y31{bottom:173.466667pt;}
.y6c{bottom:177.146667pt;}
.ybb{bottom:180.666667pt;}
.y27{bottom:181.160000pt;}
.y128{bottom:186.280000pt;}
.y137{bottom:188.506667pt;}
.ye9{bottom:189.786667pt;}
.y95{bottom:190.266667pt;}
.y30{bottom:193.946667pt;}
.y6b{bottom:197.626667pt;}
.yba{bottom:201.146667pt;}
.y123{bottom:203.080000pt;}
.y136{bottom:208.986667pt;}
.ye8{bottom:210.106667pt;}
.y94{bottom:210.746667pt;}
.y2f{bottom:214.266667pt;}
.y6a{bottom:218.106667pt;}
.y125{bottom:219.880000pt;}
.yb9{bottom:221.466667pt;}
.y135{bottom:229.306667pt;}
.ye7{bottom:230.586667pt;}
.y93{bottom:231.226667pt;}
.y2e{bottom:234.746667pt;}
.y124{bottom:236.520000pt;}
.y69{bottom:238.586667pt;}
.yb8{bottom:241.946667pt;}
.y134{bottom:249.786667pt;}
.ye6{bottom:251.066667pt;}
.y92{bottom:251.546667pt;}
.y11d{bottom:253.320000pt;}
.y2d{bottom:255.226667pt;}
.y68{bottom:258.906667pt;}
.yb7{bottom:262.426667pt;}
.y121{bottom:270.120000pt;}
.y133{bottom:270.266667pt;}
.ye5{bottom:271.546667pt;}
.y91{bottom:272.026667pt;}
.y2c{bottom:275.706667pt;}
.y67{bottom:279.386667pt;}
.yb6{bottom:282.906667pt;}
.y11f{bottom:288.040000pt;}
.y132{bottom:290.746667pt;}
.ye4{bottom:292.026667pt;}
.y90{bottom:292.506667pt;}
.y2b{bottom:296.186667pt;}
.y66{bottom:299.866667pt;}
.yb5{bottom:303.386667pt;}
.y117{bottom:306.120000pt;}
.y131{bottom:311.226667pt;}
.ye3{bottom:312.346667pt;}
.y8f{bottom:312.986667pt;}
.y2a{bottom:316.506667pt;}
.y65{bottom:320.346667pt;}
.y11b{bottom:322.920000pt;}
.yb4{bottom:323.706667pt;}
.y130{bottom:331.706667pt;}
.ye2{bottom:332.826667pt;}
.y8e{bottom:333.466667pt;}
.y29{bottom:336.986667pt;}
.y119{bottom:339.560000pt;}
.y64{bottom:340.826667pt;}
.yb3{bottom:344.186667pt;}
.y12f{bottom:352.066667pt;}
.ye1{bottom:353.346667pt;}
.y8d{bottom:353.986667pt;}
.y116{bottom:357.346667pt;}
.y28{bottom:357.466667pt;}
.y63{bottom:361.346667pt;}
.yb2{bottom:364.706667pt;}
.ye0{bottom:373.826667pt;}
.y8c{bottom:374.306667pt;}
.y62{bottom:381.666667pt;}
.y115{bottom:384.866667pt;}
.yb1{bottom:385.186667pt;}
.y12e{bottom:393.026667pt;}
.ydf{bottom:394.306667pt;}
.y8b{bottom:394.786667pt;}
.y61{bottom:402.146667pt;}
.y114{bottom:405.346667pt;}
.yb0{bottom:405.666667pt;}
.yde{bottom:414.786667pt;}
.y8a{bottom:415.266667pt;}
.y60{bottom:422.626667pt;}
.y113{bottom:425.826667pt;}
.yaf{bottom:426.146667pt;}
.ydd{bottom:435.106667pt;}
.y89{bottom:435.746667pt;}
.y5f{bottom:443.106667pt;}
.y112{bottom:446.306667pt;}
.ydc{bottom:455.586667pt;}
.y88{bottom:456.226667pt;}
.y5e{bottom:463.586667pt;}
.y111{bottom:466.626667pt;}
.yae{bottom:466.946667pt;}
.ydb{bottom:476.066667pt;}
.y87{bottom:476.546667pt;}
.yab{bottom:479.746667pt;}
.y5d{bottom:484.066667pt;}
.y110{bottom:487.106667pt;}
.yda{bottom:496.546667pt;}
.y86{bottom:497.026667pt;}
.yad{bottom:501.186667pt;}
.y5c{bottom:504.386667pt;}
.y10f{bottom:507.586667pt;}
.yd9{bottom:517.026667pt;}
.y85{bottom:517.506667pt;}
.yac{bottom:522.626667pt;}
.y5b{bottom:524.866667pt;}
.y10e{bottom:528.066667pt;}
.yd8{bottom:537.506667pt;}
.y84{bottom:537.986667pt;}
.ya5{bottom:544.066667pt;}
.y5a{bottom:545.346667pt;}
.y10d{bottom:548.546667pt;}
.y26{bottom:549.346667pt;}
.yd7{bottom:557.826667pt;}
.y83{bottom:558.466667pt;}
.y24{bottom:562.946667pt;}
.ya9{bottom:565.506667pt;}
.y59{bottom:565.826667pt;}
.y10c{bottom:569.053333pt;}
.yd6{bottom:578.333333pt;}
.y82{bottom:578.973333pt;}
.y22{bottom:579.613333pt;}
.y58{bottom:586.333333pt;}
.ya8{bottom:586.973333pt;}
.y10b{bottom:589.373333pt;}
.y20{bottom:597.373333pt;}
.y81{bottom:599.293333pt;}
.y57{bottom:606.653333pt;}
.ya1{bottom:608.413333pt;}
.y10a{bottom:609.853333pt;}
.yd5{bottom:619.293333pt;}
.y80{bottom:619.773333pt;}
.y1e{bottom:624.093333pt;}
.y56{bottom:627.133333pt;}
.ya4{bottom:629.853333pt;}
.y109{bottom:630.333333pt;}
.yd2{bottom:631.933333pt;}
.y1b{bottom:635.933333pt;}
.y7f{bottom:640.253333pt;}
.y55{bottom:647.613333pt;}
.y108{bottom:650.813333pt;}
.yd4{bottom:651.133333pt;}
.ya3{bottom:651.293333pt;}
.y7e{bottom:660.733333pt;}
.y54{bottom:668.093333pt;}
.yd3{bottom:670.333333pt;}
.y107{bottom:671.293333pt;}
.y9b{bottom:672.733333pt;}
.y19{bottom:676.893333pt;}
.y7d{bottom:681.213333pt;}
.y53{bottom:688.573333pt;}
.yce{bottom:689.533333pt;}
.y106{bottom:691.613333pt;}
.y17{bottom:691.933333pt;}
.ya0{bottom:694.333333pt;}
.y7c{bottom:701.693333pt;}
.yd1{bottom:708.733333pt;}
.y52{bottom:709.053333pt;}
.y105{bottom:712.093333pt;}
.y9e{bottom:715.773333pt;}
.y7b{bottom:722.013333pt;}
.yd0{bottom:727.933333pt;}
.y51{bottom:729.373333pt;}
.y104{bottom:732.573333pt;}
.y9a{bottom:738.173333pt;}
.y7a{bottom:742.493333pt;}
.y15{bottom:746.493333pt;}
.yc7{bottom:747.133333pt;}
.y50{bottom:749.853333pt;}
.y12{bottom:759.453333pt;}
.y79{bottom:762.973333pt;}
.ycc{bottom:766.173333pt;}
.y4f{bottom:770.333333pt;}
.y103{bottom:773.533333pt;}
.y78{bottom:783.453333pt;}
.yca{bottom:785.373333pt;}
.yfd{bottom:786.173333pt;}
.y4e{bottom:790.853333pt;}
.y101{bottom:803.013333pt;}
.y77{bottom:803.973333pt;}
.yc2{bottom:804.613333pt;}
.y4d{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.y100{bottom:819.813333pt;}
.yc6{bottom:823.813333pt;}
.y76{bottom:824.453333pt;}
.yd{bottom:825.893333pt;}
.y4c{bottom:831.813333pt;}
.yf9{bottom:836.453333pt;}
.yc5{bottom:843.013333pt;}
.y75{bottom:844.773333pt;}
.y4b{bottom:852.133333pt;}
.yfc{bottom:853.253333pt;}
.yc0{bottom:863.173333pt;}
.y74{bottom:865.253333pt;}
.yfb{bottom:870.053333pt;}
.y4a{bottom:872.613333pt;}
.y73{bottom:885.733333pt;}
.yf6{bottom:886.853333pt;}
.y49{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.yf8{bottom:903.493333pt;}
.y72{bottom:906.213333pt;}
.y48{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.yf7{bottom:920.293333pt;}
.y71{bottom:926.693333pt;}
.y8{bottom:930.533333pt;}
.y47{bottom:934.053333pt;}
.yf0{bottom:937.093333pt;}
.y70{bottom:944.453333pt;}
.y3c{bottom:946.853333pt;}
.yf4{bottom:953.893333pt;}
.y46{bottom:954.533333pt;}
.yf3{bottom:970.533333pt;}
.y45{bottom:974.853333pt;}
.yee{bottom:988.293333pt;}
.y44{bottom:995.333333pt;}
.y43{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y42{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1a{height:11.840000pt;}
.hf{height:12.146667pt;}
.h13{height:12.960000pt;}
.h21{height:13.586667pt;}
.h16{height:15.040000pt;}
.h3b{height:15.666667pt;}
.h45{height:15.712000pt;}
.h39{height:15.826667pt;}
.h3f{height:15.858667pt;}
.h3d{height:15.860000pt;}
.h1f{height:16.666667pt;}
.h42{height:16.946667pt;}
.h41{height:17.106667pt;}
.h1e{height:17.760000pt;}
.h36{height:18.080000pt;}
.h30{height:18.226667pt;}
.h35{height:18.240000pt;}
.h34{height:18.260000pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h2b{height:20.320000pt;}
.h2e{height:20.466667pt;}
.h29{height:20.480000pt;}
.h2d{height:20.506667pt;}
.h23{height:22.866667pt;}
.h24{height:25.907187pt;}
.h1c{height:26.720000pt;}
.h10{height:29.040312pt;}
.h1b{height:29.856875pt;}
.h44{height:32.512000pt;}
.h14{height:32.788125pt;}
.h17{height:35.975313pt;}
.h27{height:36.703125pt;}
.h31{height:39.111250pt;}
.h18{height:40.960000pt;}
.h12{height:43.343750pt;}
.h19{height:43.781250pt;}
.h1d{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h26{height:48.937500pt;}
.h28{height:49.075000pt;}
.h3a{height:49.266667pt;}
.h3e{height:49.298667pt;}
.h3c{height:49.300000pt;}
.h43{height:50.546667pt;}
.h6{height:50.712187pt;}
.h40{height:51.826667pt;}
.h20{height:53.705000pt;}
.h11{height:54.260000pt;}
.h15{height:54.560000pt;}
.h37{height:56.480000pt;}
.h33{height:56.500000pt;}
.h32{height:56.626667pt;}
.h38{height:56.640000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h2f{height:63.346667pt;}
.h2a{height:63.360000pt;}
.h2c{height:63.386667pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h25{height:83.386667pt;}
.h8{height:96.026667pt;}
.h22{height:368.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w6{width:68.150667pt;}
.w5{width:110.226667pt;}
.w12{width:119.990667pt;}
.wf{width:126.070667pt;}
.w10{width:137.933333pt;}
.w13{width:180.053333pt;}
.w15{width:193.777333pt;}
.wc{width:194.097333pt;}
.wd{width:202.266667pt;}
.w16{width:202.426667pt;}
.we{width:203.693333pt;}
.w17{width:203.853333pt;}
.wa{width:295.213333pt;}
.w14{width:303.693333pt;}
.w9{width:316.857333pt;}
.w11{width:336.066667pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x26{left:10.710667pt;}
.x3c{left:13.430667pt;}
.x10{left:14.880000pt;}
.x32{left:16.310667pt;}
.x2{left:18.710667pt;}
.x36{left:23.350667pt;}
.x2e{left:25.466667pt;}
.x2b{left:26.390667pt;}
.x7{left:35.360000pt;}
.x25{left:37.425333pt;}
.x38{left:39.706667pt;}
.x1c{left:41.280000pt;}
.x1e{left:44.480000pt;}
.x22{left:46.225333pt;}
.x27{left:48.145333pt;}
.x3f{left:50.880000pt;}
.x20{left:52.320000pt;}
.x1b{left:55.825333pt;}
.x3e{left:57.120000pt;}
.x35{left:59.985333pt;}
.x2a{left:62.865333pt;}
.xd{left:65.586667pt;}
.x1d{left:67.706667pt;}
.x1f{left:68.666667pt;}
.x17{left:70.560000pt;}
.x23{left:72.186667pt;}
.x40{left:73.146667pt;}
.x24{left:74.586667pt;}
.x19{left:75.546667pt;}
.x41{left:76.666667pt;}
.x21{left:77.946667pt;}
.x16{left:80.305333pt;}
.x3d{left:82.065333pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x1a{left:96.945333pt;}
.x37{left:122.386667pt;}
.x39{left:124.306667pt;}
.x3a{left:126.386667pt;}
.x3b{left:127.346667pt;}
.x2f{left:136.026667pt;}
.x31{left:137.146667pt;}
.x2c{left:138.106667pt;}
.x3{left:139.560000pt;}
.x30{left:140.986667pt;}
.x2d{left:142.586667pt;}
.xa{left:157.160000pt;}
.x13{left:196.346667pt;}
.x33{left:216.040000pt;}
.x28{left:222.120000pt;}
.x12{left:234.586667pt;}
.xf{left:289.666667pt;}
.x29{left:360.066667pt;}
.x34{left:396.106667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x18{left:492.426667pt;}
.x6{left:588.133333pt;}
.xe{left:604.732000pt;}
}




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