
    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_3470e7ceb4c1c304faf46c0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e8d1672018f8716fc08b8d6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3154416bb86e33eb7d7dce96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_a69b42247b44e67d0fc2c303.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_aac2febcddb78e661d54a5ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_c35a1d6975407a0aa1da8e09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')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_a34d4156d2d6161f03b854ec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_8d8e538522618f8f125a129f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_77679edd1f64171064a0b0d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d26108f98659c0138d837c9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b7b4f04635638b696d878b63.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b5a9632d060e5f2b1d5db8b8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5f43025e19f980f64932a635.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_b0c2b27e6de2f946bf70bd3c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_9bd7f5dc3dee27a89768d890.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ac2f189199d7565f201ca210.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.090332;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:ff15;src:url('chunks/assets/font_a0080a1c367df0e66327dce8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.142090;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:ff16;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.739746;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:ff17;src:url('chunks/assets/font_44f8618029539a9497e464c2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.970703;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:ff18;src:url('chunks/assets/font_32f1f166d61d3ea60ad8914c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.970703;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:ff19;src:url('chunks/assets/font_0408985b86cae7b6ab50b597.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.063477;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:ff1a;src:url('chunks/assets/font_bf5cb8c1b3e63c90400148c6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.063477;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:ff1b;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.739746;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;}
.m2{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.232226,0.000000,-0.077401,0.237716,0,0);-ms-transform:matrix(0.232226,0.000000,-0.077401,0.237716,0,0);-webkit-transform:matrix(0.232226,0.000000,-0.077401,0.237716,0,0);}
.m6{transform:matrix(0.237209,0.000000,-0.079062,0.237169,0,0);-ms-transform:matrix(0.237209,0.000000,-0.079062,0.237169,0,0);-webkit-transform:matrix(0.237209,0.000000,-0.079062,0.237169,0,0);}
.m3{transform:matrix(0.244226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244226,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,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:-55.936704px;}
.v4{vertical-align:-51.836003px;}
.v2{vertical-align:-15.120000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.840000px;}
.v1{vertical-align:20.880000px;}
.va{vertical-align:38.160000px;}
.vb{vertical-align:40.320000px;}
.v6{vertical-align:46.080000px;}
.v5{vertical-align:48.240000px;}
.v7{vertical-align:68.400000px;}
.ls1c{letter-spacing:-3.546000px;}
.ls23{letter-spacing:-2.520000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls27{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.lsf{letter-spacing:-0.004320px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls1b{letter-spacing:0.135600px;}
.ls8{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.263400px;}
.ls21{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.447840px;}
.ls5{letter-spacing:0.567840px;}
.ls3{letter-spacing:0.786240px;}
.ls26{letter-spacing:1.080000px;}
.ls28{letter-spacing:4.680000px;}
.ls15{letter-spacing:13.491360px;}
.ls13{letter-spacing:16.067520px;}
.ls2b{letter-spacing:16.506720px;}
.ls17{letter-spacing:16.559280px;}
.ls19{letter-spacing:38.106720px;}
.ls18{letter-spacing:41.706720px;}
.ls2a{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.170720px;}
.ls1a{letter-spacing:70.650720px;}
.ls11{letter-spacing:91.555563px;}
.lsd{letter-spacing:251.988687px;}
.ls16{letter-spacing:281.027520px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws12{word-spacing:-71.712000px;}
.ws11{word-spacing:-65.942009px;}
.wsc{word-spacing:-32.808240px;}
.wsf{word-spacing:-17.975208px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.246600px;}
.ws1c{word-spacing:-15.238800px;}
.ws20{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.075600px;}
.ws1f{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws21{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.833200px;}
.ws1d{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.410600px;}
.ws14{word-spacing:-13.147200px;}
.ws1e{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.wsd{word-spacing:-9.715680px;}
.ws4{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.ws15{word-spacing:-3.078000px;}
.ws17{word-spacing:-0.330240px;}
.wsb{word-spacing:0.000000px;}
.ws13{word-spacing:3.628080px;}
.ws18{word-spacing:3.869880px;}
.ws10{word-spacing:108.785956px;}
.wse{word-spacing:137.003641px;}
._17{margin-left:-257.309731px;}
._22{margin-left:-7.842240px;}
._e{margin-left:-6.648720px;}
._21{margin-left:-5.635440px;}
._9{margin-left:-4.634160px;}
._3{margin-left:-3.406320px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.080000px;}
._1{width:1.238640px;}
._f{width:2.568480px;}
._11{width:3.705120px;}
._15{width:4.725120px;}
._8{width:5.813040px;}
._7{width:7.247280px;}
._13{width:8.450400px;}
._5{width:9.501840px;}
._16{width:10.561440px;}
._6{width:12.091200px;}
._4{width:13.446000px;}
._d{width:16.032000px;}
._a{width:18.100800px;}
._b{width:19.139520px;}
._c{width:20.481360px;}
._14{width:22.725120px;}
._12{width:24.501600px;}
._23{width:26.374560px;}
._10{width:27.565680px;}
._1c{width:49.019520px;}
._18{width:132.369429px;}
._19{width:176.770080px;}
._1e{width:183.283920px;}
._1a{width:431.766720px;}
._1b{width:461.826000px;}
._1f{width:469.773360px;}
._20{width:500.549760px;}
._1d{width:623.834640px;}
.fc8{color:rgb(21,96,130);}
.fc7{color:transparent;}
.fc6{color:rgb(33,94,153);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fsa{font-size:41.563745px;}
.fs10{font-size:41.760000px;}
.fsd{font-size:41.808108px;}
.fsc{font-size:43.711480px;}
.fsf{font-size:44.069847px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsb{font-size:71.900830px;}
.fs2{font-size:72.000000px;}
.fse{font-size:72.309574px;}
.fs5{font-size:84.240000px;}
.fs9{font-size:94.182656px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y8b{bottom:3.274792px;}
.yee{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y1a{bottom:4.860000px;}
.yfb{bottom:5.040000px;}
.y116{bottom:5.070000px;}
.y12e{bottom:5.214000px;}
.y87{bottom:5.220000px;}
.y134{bottom:5.250000px;}
.y54{bottom:5.400000px;}
.y101{bottom:5.436000px;}
.yf{bottom:9.540000px;}
.y7f{bottom:11.940598px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y48{bottom:14.940000px;}
.y16c{bottom:17.145000px;}
.y4{bottom:17.316000px;}
.y47{bottom:17.820000px;}
.y8d{bottom:17.854574px;}
.y81{bottom:17.907480px;}
.y118{bottom:18.900000px;}
.y107{bottom:18.945000px;}
.y110{bottom:19.080000px;}
.y2{bottom:20.196000px;}
.y44{bottom:20.520000px;}
.y8c{bottom:22.497241px;}
.y7e{bottom:26.019904px;}
.y19{bottom:29.340000px;}
.yc{bottom:30.060000px;}
.y5{bottom:31.860000px;}
.y43{bottom:37.800000px;}
.y82{bottom:40.516760px;}
.y84{bottom:41.680560px;}
.y7c{bottom:43.824860px;}
.y80{bottom:45.130950px;}
.y18{bottom:45.900000px;}
.yb{bottom:46.440000px;}
.y1{bottom:54.180000px;}
.y162{bottom:54.900000px;}
.y42{bottom:55.080000px;}
.y83{bottom:58.089951px;}
.y53{bottom:59.040000px;}
.y131{bottom:61.200000px;}
.y17{bottom:61.605000px;}
.yc5{bottom:62.640000px;}
.y126{bottom:62.820000px;}
.y86{bottom:63.180000px;}
.y19a{bottom:63.720000px;}
.y198{bottom:64.080000px;}
.y100{bottom:64.800000px;}
.y7d{bottom:70.256722px;}
.y16{bottom:72.045000px;}
.y161{bottom:72.180000px;}
.y41{bottom:72.360000px;}
.ya{bottom:73.260000px;}
.y40{bottom:89.460000px;}
.y15{bottom:90.405000px;}
.y9{bottom:92.880000px;}
.y15f{bottom:99.396000px;}
.y85{bottom:105.696000px;}
.y3f{bottom:106.740000px;}
.yf8{bottom:106.956000px;}
.y14{bottom:108.765000px;}
.y130{bottom:109.836000px;}
.y8{bottom:111.270000px;}
.y15e{bottom:116.676000px;}
.y7b{bottom:119.790000px;}
.y3e{bottom:124.020000px;}
.y52{bottom:124.236000px;}
.yc4{bottom:125.676000px;}
.y197{bottom:126.036000px;}
.y13{bottom:127.845000px;}
.y12f{bottom:129.816000px;}
.y15d{bottom:133.776000px;}
.y7a{bottom:137.736000px;}
.y3d{bottom:141.300000px;}
.y51{bottom:141.336000px;}
.yf7{bottom:141.516000px;}
.yc3{bottom:142.956000px;}
.y196{bottom:143.316000px;}
.y125{bottom:148.896000px;}
.y12d{bottom:149.796000px;}
.y15c{bottom:151.050000px;}
.y12{bottom:153.585000px;}
.y3c{bottom:158.580000px;}
.y50{bottom:158.610000px;}
.yf6{bottom:158.790000px;}
.y195{bottom:160.590000px;}
.yc2{bottom:161.310000px;}
.y124{bottom:165.990000px;}
.y15b{bottom:168.330000px;}
.y12c{bottom:169.770000px;}
.y3b{bottom:175.860000px;}
.y4f{bottom:175.890000px;}
.y194{bottom:177.870000px;}
.y11{bottom:177.885000px;}
.yc1{bottom:178.590000px;}
.y123{bottom:183.270000px;}
.y15a{bottom:185.610000px;}
.y12b{bottom:191.370000px;}
.y3a{bottom:192.960000px;}
.y4e{bottom:193.170000px;}
.y193{bottom:194.970000px;}
.yc0{bottom:195.870000px;}
.y122{bottom:200.550000px;}
.y2b{bottom:201.600000px;}
.y159{bottom:202.890000px;}
.y79{bottom:205.050000px;}
.yf5{bottom:207.930000px;}
.y39{bottom:210.240000px;}
.y4d{bottom:210.450000px;}
.y192{bottom:212.250000px;}
.ybf{bottom:212.970000px;}
.y12a{bottom:214.590000px;}
.y2a{bottom:216.900000px;}
.y121{bottom:217.830000px;}
.y158{bottom:219.990000px;}
.y78{bottom:222.150000px;}
.yf4{bottom:225.930000px;}
.y38{bottom:227.520000px;}
.y4c{bottom:227.550000px;}
.y191{bottom:229.530000px;}
.ybe{bottom:230.250000px;}
.y120{bottom:231.870000px;}
.y29{bottom:234.540000px;}
.y157{bottom:237.270000px;}
.y77{bottom:239.430000px;}
.yf3{bottom:243.930000px;}
.y37{bottom:244.800000px;}
.y4b{bottom:244.830000px;}
.y129{bottom:245.910000px;}
.y190{bottom:246.810000px;}
.ybd{bottom:247.530000px;}
.y28{bottom:251.820000px;}
.y156{bottom:254.550000px;}
.y76{bottom:256.710000px;}
.yf2{bottom:261.930000px;}
.y36{bottom:262.080000px;}
.y4a{bottom:262.110000px;}
.y18f{bottom:264.090000px;}
.ybc{bottom:264.810000px;}
.y27{bottom:268.950000px;}
.y155{bottom:271.830000px;}
.y75{bottom:273.990000px;}
.y35{bottom:279.390000px;}
.yf1{bottom:279.930000px;}
.y18e{bottom:281.370000px;}
.ybb{bottom:282.090000px;}
.y26{bottom:286.770000px;}
.y154{bottom:289.110000px;}
.y74{bottom:291.270000px;}
.y34{bottom:296.490000px;}
.y49{bottom:296.670000px;}
.yf0{bottom:297.930000px;}
.y18d{bottom:298.470000px;}
.yba{bottom:299.370000px;}
.y25{bottom:303.510000px;}
.y153{bottom:306.390000px;}
.y73{bottom:308.370000px;}
.y46{bottom:310.710000px;}
.y33{bottom:313.770000px;}
.y18c{bottom:315.750000px;}
.yef{bottom:315.930000px;}
.yb9{bottom:316.470000px;}
.y24{bottom:319.890000px;}
.y16b{bottom:321.150000px;}
.y72{bottom:325.650000px;}
.y32{bottom:331.050000px;}
.y18b{bottom:333.030000px;}
.yb8{bottom:333.750000px;}
.yed{bottom:333.930000px;}
.y23{bottom:336.990000px;}
.y16a{bottom:339.195000px;}
.y1d{bottom:339.915000px;}
.y71{bottom:342.975000px;}
.y31{bottom:348.330000px;}
.y18a{bottom:350.355000px;}
.yb7{bottom:351.075000px;}
.yec{bottom:351.975000px;}
.y22{bottom:354.450000px;}
.y169{bottom:357.195000px;}
.y70{bottom:360.255000px;}
.y30{bottom:365.610000px;}
.y189{bottom:367.635000px;}
.yb6{bottom:368.355000px;}
.yeb{bottom:369.975000px;}
.y21{bottom:371.730000px;}
.y168{bottom:375.195000px;}
.y6f{bottom:378.615000px;}
.y2f{bottom:382.890000px;}
.y188{bottom:384.915000px;}
.yb5{bottom:385.635000px;}
.yea{bottom:389.415000px;}
.y20{bottom:392.070000px;}
.y167{bottom:393.195000px;}
.y6e{bottom:396.975000px;}
.y2e{bottom:399.990000px;}
.y187{bottom:402.015000px;}
.yb4{bottom:402.915000px;}
.ye9{bottom:410.655000px;}
.y166{bottom:411.195000px;}
.y6d{bottom:415.155000px;}
.y2d{bottom:417.270000px;}
.y186{bottom:419.295000px;}
.y1f{bottom:419.430000px;}
.yb3{bottom:420.015000px;}
.ye8{bottom:427.935000px;}
.y165{bottom:429.195000px;}
.y6c{bottom:432.435000px;}
.y2c{bottom:434.550000px;}
.y185{bottom:436.575000px;}
.y1e{bottom:437.250000px;}
.yb2{bottom:437.295000px;}
.ye7{bottom:445.215000px;}
.y164{bottom:447.195000px;}
.y11f{bottom:448.815000px;}
.y6b{bottom:450.795000px;}
.y184{bottom:453.855000px;}
.yb1{bottom:454.575000px;}
.ye6{bottom:462.495000px;}
.y11e{bottom:463.575000px;}
.y163{bottom:465.195000px;}
.y6a{bottom:468.075000px;}
.y183{bottom:471.135000px;}
.yb0{bottom:471.855000px;}
.ye5{bottom:479.775000px;}
.y11d{bottom:483.375000px;}
.y160{bottom:484.635000px;}
.y69{bottom:485.355000px;}
.y182{bottom:488.235000px;}
.yaf{bottom:489.135000px;}
.ye4{bottom:497.055000px;}
.y68{bottom:502.455000px;}
.y11c{bottom:502.995000px;}
.y181{bottom:505.515000px;}
.yae{bottom:506.415000px;}
.ye3{bottom:514.155000px;}
.y67{bottom:519.735000px;}
.y11b{bottom:522.795000px;}
.yad{bottom:523.515000px;}
.ye2{bottom:531.435000px;}
.y66{bottom:537.015000px;}
.y180{bottom:540.075000px;}
.yac{bottom:541.875000px;}
.y11a{bottom:542.415000px;}
.ye1{bottom:548.715000px;}
.y65{bottom:554.295000px;}
.y17f{bottom:557.355000px;}
.yab{bottom:560.235000px;}
.y119{bottom:562.215000px;}
.ye0{bottom:563.475000px;}
.y64{bottom:571.575000px;}
.y17e{bottom:574.635000px;}
.yaa{bottom:578.595000px;}
.ydf{bottom:581.475000px;}
.y117{bottom:582.015000px;}
.y152{bottom:583.275000px;}
.y63{bottom:588.855000px;}
.y17d{bottom:591.735000px;}
.ya9{bottom:596.955000px;}
.yde{bottom:599.475000px;}
.y151{bottom:600.555000px;}
.y115{bottom:601.635000px;}
.y62{bottom:605.985000px;}
.y17c{bottom:609.045000px;}
.ya8{bottom:614.085000px;}
.ydd{bottom:617.505000px;}
.y150{bottom:617.865000px;}
.y61{bottom:620.025000px;}
.y114{bottom:621.465000px;}
.y17b{bottom:626.325000px;}
.ya7{bottom:631.365000px;}
.y14f{bottom:635.145000px;}
.ydc{bottom:636.945000px;}
.y113{bottom:641.085000px;}
.y17a{bottom:643.605000px;}
.ya6{bottom:648.645000px;}
.y14e{bottom:652.425000px;}
.ydb{bottom:660.345000px;}
.y112{bottom:660.885000px;}
.ya5{bottom:667.005000px;}
.y14d{bottom:669.525000px;}
.yda{bottom:677.625000px;}
.y179{bottom:678.165000px;}
.y111{bottom:680.685000px;}
.ya4{bottom:685.365000px;}
.y14c{bottom:686.805000px;}
.yd9{bottom:694.905000px;}
.y178{bottom:695.265000px;}
.y10f{bottom:700.305000px;}
.ya3{bottom:703.545000px;}
.y14b{bottom:704.085000px;}
.yd8{bottom:712.185000px;}
.y177{bottom:712.545000px;}
.y10e{bottom:720.105000px;}
.ya2{bottom:720.825000px;}
.y14a{bottom:721.365000px;}
.y128{bottom:724.425000px;}
.yd7{bottom:729.465000px;}
.y176{bottom:729.825000px;}
.ya1{bottom:738.105000px;}
.y127{bottom:738.465000px;}
.y149{bottom:738.645000px;}
.y10d{bottom:739.725000px;}
.yd6{bottom:746.745000px;}
.y175{bottom:747.105000px;}
.ya0{bottom:755.385000px;}
.y148{bottom:755.925000px;}
.y10c{bottom:759.525000px;}
.yd5{bottom:763.845000px;}
.y174{bottom:764.385000px;}
.y9f{bottom:772.665000px;}
.y147{bottom:773.025000px;}
.y10b{bottom:779.145000px;}
.yd4{bottom:781.125000px;}
.y173{bottom:781.665000px;}
.y1b{bottom:788.505000px;}
.y9e{bottom:789.945000px;}
.y146{bottom:790.305000px;}
.yd3{bottom:798.405000px;}
.y172{bottom:798.765000px;}
.y10a{bottom:798.945000px;}
.y9d{bottom:807.045000px;}
.y145{bottom:807.585000px;}
.yd2{bottom:815.685000px;}
.y171{bottom:816.045000px;}
.y10{bottom:818.025000px;}
.y109{bottom:818.745000px;}
.y9c{bottom:824.325000px;}
.y144{bottom:824.865000px;}
.yd1{bottom:832.965000px;}
.y170{bottom:833.325000px;}
.y108{bottom:838.365000px;}
.y9b{bottom:841.605000px;}
.y143{bottom:842.145000px;}
.yd0{bottom:850.245000px;}
.y16f{bottom:850.605000px;}
.y106{bottom:858.165000px;}
.y9a{bottom:858.885000px;}
.y142{bottom:859.245000px;}
.ycf{bottom:867.345000px;}
.y199{bottom:867.885000px;}
.y16e{bottom:873.150000px;}
.y99{bottom:876.210000px;}
.y141{bottom:876.570000px;}
.y105{bottom:879.450000px;}
.yff{bottom:882.150000px;}
.y16d{bottom:885.030000px;}
.y140{bottom:893.850000px;}
.yfe{bottom:902.130000px;}
.y104{bottom:902.310000px;}
.y98{bottom:906.450000px;}
.y13f{bottom:911.130000px;}
.y103{bottom:919.590000px;}
.yfd{bottom:921.930000px;}
.y97{bottom:923.910000px;}
.y13e{bottom:928.410000px;}
.y102{bottom:936.870000px;}
.y96{bottom:937.950000px;}
.yfc{bottom:941.910000px;}
.y13d{bottom:945.690000px;}
.y95{bottom:948.030000px;}
.y60{bottom:954.150000px;}
.yfa{bottom:961.710000px;}
.y13c{bottom:962.790000px;}
.y5f{bottom:971.430000px;}
.y94{bottom:975.030000px;}
.y13b{bottom:980.070000px;}
.yf9{bottom:983.130000px;}
.y93{bottom:984.570000px;}
.y5e{bottom:988.530000px;}
.y13a{bottom:994.830000px;}
.yce{bottom:1004.730000px;}
.y5d{bottom:1005.810000px;}
.ye{bottom:1011.030000px;}
.y92{bottom:1013.910000px;}
.y139{bottom:1014.810000px;}
.ycd{bottom:1022.010000px;}
.y5c{bottom:1023.090000px;}
.y91{bottom:1031.190000px;}
.y138{bottom:1034.970000px;}
.y7{bottom:1036.410000px;}
.ycc{bottom:1039.290000px;}
.y5b{bottom:1040.370000px;}
.y90{bottom:1048.290000px;}
.y137{bottom:1054.950000px;}
.ycb{bottom:1056.570000px;}
.y5a{bottom:1057.650000px;}
.y8f{bottom:1065.570000px;}
.yca{bottom:1073.850000px;}
.y59{bottom:1074.930000px;}
.y8e{bottom:1083.930000px;}
.yc9{bottom:1090.950000px;}
.y58{bottom:1092.030000px;}
.y136{bottom:1094.910000px;}
.y8a{bottom:1098.989919px;}
.yc8{bottom:1108.230000px;}
.y57{bottom:1109.310000px;}
.y135{bottom:1115.070000px;}
.y89{bottom:1121.550000px;}
.yc7{bottom:1125.510000px;}
.y56{bottom:1126.590000px;}
.y133{bottom:1135.050000px;}
.y88{bottom:1142.820000px;}
.y55{bottom:1143.900000px;}
.y132{bottom:1155.060000px;}
.yc6{bottom:1160.100000px;}
.y6{bottom:1161.180000px;}
.h40{height:17.100000px;}
.h41{height:17.136000px;}
.h36{height:17.280000px;}
.h37{height:17.316000px;}
.h38{height:17.640000px;}
.h3b{height:18.900000px;}
.h3c{height:18.936000px;}
.h39{height:19.080000px;}
.h3d{height:19.116000px;}
.h3a{height:19.260000px;}
.h3e{height:19.296000px;}
.h35{height:19.440000px;}
.h2a{height:22.176000px;}
.h20{height:22.356000px;}
.hd{height:25.020000px;}
.h42{height:27.147656px;}
.h14{height:28.968750px;}
.h26{height:29.021560px;}
.h2c{height:29.192185px;}
.h1f{height:29.196000px;}
.h15{height:29.520000px;}
.h2{height:32.976000px;}
.h13{height:35.806641px;}
.ha{height:36.180000px;}
.h1d{height:38.818125px;}
.h28{height:40.488612px;}
.h2b{height:40.499111px;}
.h2e{height:40.820557px;}
.h7{height:41.726953px;}
.h1e{height:42.164648px;}
.h23{height:43.302656px;}
.h34{height:43.506914px;}
.hf{height:44.002969px;}
.hc{height:44.820000px;}
.h1b{height:45.770625px;}
.h1a{height:46.881563px;}
.h18{height:47.980898px;}
.h21{height:48.027656px;}
.h1c{height:49.255313px;}
.h33{height:50.364141px;}
.h4{height:53.709961px;}
.hb{height:54.000000px;}
.h3{height:55.291992px;}
.h22{height:55.353867px;}
.h19{height:56.574492px;}
.h27{height:59.262012px;}
.h11{height:59.439023px;}
.h2d{height:59.598907px;}
.h12{height:61.189805px;}
.h6{height:62.402344px;}
.h10{height:63.180000px;}
.h29{height:66.599548px;}
.h5{height:67.824844px;}
.h9{height:71.613281px;}
.h16{height:73.722656px;}
.h24{height:82.049438px;}
.h3f{height:86.220000px;}
.h25{height:87.238525px;}
.h30{height:88.524141px;}
.h32{height:90.684141px;}
.h31{height:96.444141px;}
.h2f{height:103.594219px;}
.h8{height:121.536000px;}
.he{height:192.990000px;}
.h17{height:448.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:22.500252px;}
.w3{width:73.080000px;}
.wa{width:79.020000px;}
.wd{width:79.200000px;}
.wb{width:138.446990px;}
.w5{width:151.950000px;}
.w1d{width:166.530000px;}
.w1f{width:172.470000px;}
.w1c{width:177.330000px;}
.w13{width:180.030000px;}
.w12{width:192.450000px;}
.w16{width:194.610000px;}
.w10{width:198.750000px;}
.w1e{width:211.170000px;}
.wf{width:212.430000px;}
.w8{width:223.455000px;}
.w1b{width:232.050000px;}
.w1a{width:239.790000px;}
.w19{width:256.215000px;}
.w15{width:265.170000px;}
.w14{width:268.455000px;}
.we{width:316.875000px;}
.w11{width:326.235000px;}
.w20{width:344.595000px;}
.w18{width:351.975000px;}
.w17{width:376.995000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:2.642241px;}
.x2c{left:7.560000px;}
.x2{left:8.676000px;}
.x24{left:10.866454px;}
.x13{left:12.600000px;}
.x20{left:15.485320px;}
.xd{left:24.516000px;}
.x15{left:29.880000px;}
.x3c{left:34.776000px;}
.x1f{left:47.003460px;}
.x1b{left:48.687294px;}
.xb{left:55.656000px;}
.x1a{left:66.314722px;}
.x1{left:81.000000px;}
.x1c{left:85.670914px;}
.x19{left:88.630668px;}
.x1d{left:93.960174px;}
.x4{left:98.130000px;}
.xf{left:100.650000px;}
.x17{left:108.035987px;}
.x25{left:130.535987px;}
.x23{left:135.035987px;}
.x18{left:163.514990px;}
.x10{left:171.030000px;}
.x3b{left:181.649987px;}
.xc{left:209.055000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x3d{left:259.770000px;}
.x31{left:263.729987px;}
.x8{left:272.235000px;}
.x29{left:283.754987px;}
.x21{left:301.934987px;}
.x12{left:304.455000px;}
.x26{left:327.494987px;}
.x6{left:331.995000px;}
.x38{left:338.655000px;}
.xe{left:344.055000px;}
.x28{left:347.294987px;}
.x7{left:351.255000px;}
.x37{left:357.554987px;}
.xa{left:365.475000px;}
.x2a{left:399.315000px;}
.x2d{left:408.675000px;}
.x27{left:426.314987px;}
.x9{left:439.500000px;}
.x36{left:446.474987px;}
.x32{left:459.435000px;}
.x39{left:579.345000px;}
.x2e{left:601.845000px;}
.x2b{left:612.645000px;}
.x2f{left:616.785000px;}
.x3e{left:638.925000px;}
.x33{left:701.969987px;}
.x14{left:727.350000px;}
.x22{left:731.850000px;}
.x30{left:734.010000px;}
.x3a{left:735.090000px;}
.x34{left:736.350000px;}
.x3f{left:737.430000px;}
.x3{left:739.050000px;}
.x40{left:740.850000px;}
.x16{left:762.989987px;}
.x35{left:771.809987px;}
@media print{
.v3{vertical-align:-49.721514pt;}
.v4{vertical-align:-46.076447pt;}
.v2{vertical-align:-13.440000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.080000pt;}
.v1{vertical-align:18.560000pt;}
.va{vertical-align:33.920000pt;}
.vb{vertical-align:35.840000pt;}
.v6{vertical-align:40.960000pt;}
.v5{vertical-align:42.880000pt;}
.v7{vertical-align:60.800000pt;}
.ls1c{letter-spacing:-3.152000pt;}
.ls23{letter-spacing:-2.240000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls27{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:-0.003840pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls1b{letter-spacing:0.120533pt;}
.ls8{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.234133pt;}
.ls21{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls5{letter-spacing:0.504747pt;}
.ls3{letter-spacing:0.698880pt;}
.ls26{letter-spacing:0.960000pt;}
.ls28{letter-spacing:4.160000pt;}
.ls15{letter-spacing:11.992320pt;}
.ls13{letter-spacing:14.282240pt;}
.ls2b{letter-spacing:14.672640pt;}
.ls17{letter-spacing:14.719360pt;}
.ls19{letter-spacing:33.872640pt;}
.ls18{letter-spacing:37.072640pt;}
.ls2a{letter-spacing:40.912640pt;}
.lsc{letter-spacing:57.040640pt;}
.ls1a{letter-spacing:62.800640pt;}
.ls11{letter-spacing:81.382723pt;}
.lsd{letter-spacing:223.989944pt;}
.ls16{letter-spacing:249.802240pt;}
.wsa{word-spacing:-64.000000pt;}
.ws12{word-spacing:-63.744000pt;}
.ws11{word-spacing:-58.615119pt;}
.wsc{word-spacing:-29.162880pt;}
.wsf{word-spacing:-15.977962pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.552533pt;}
.ws1c{word-spacing:-13.545600pt;}
.ws20{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.400533pt;}
.ws1f{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws21{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.185067pt;}
.ws1d{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.920533pt;}
.ws14{word-spacing:-11.686400pt;}
.ws1e{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.wsd{word-spacing:-8.636160pt;}
.ws4{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.ws15{word-spacing:-2.736000pt;}
.ws17{word-spacing:-0.293547pt;}
.wsb{word-spacing:0.000000pt;}
.ws13{word-spacing:3.224960pt;}
.ws18{word-spacing:3.439893pt;}
.ws10{word-spacing:96.698628pt;}
.wse{word-spacing:121.781014pt;}
._17{margin-left:-228.719761pt;}
._22{margin-left:-6.970880pt;}
._e{margin-left:-5.909973pt;}
._21{margin-left:-5.009280pt;}
._9{margin-left:-4.119253pt;}
._3{margin-left:-3.027840pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.101013pt;}
._f{width:2.283093pt;}
._11{width:3.293440pt;}
._15{width:4.200107pt;}
._8{width:5.167147pt;}
._7{width:6.442027pt;}
._13{width:7.511467pt;}
._5{width:8.446080pt;}
._16{width:9.387947pt;}
._6{width:10.747733pt;}
._4{width:11.952000pt;}
._d{width:14.250667pt;}
._a{width:16.089600pt;}
._b{width:17.012907pt;}
._c{width:18.205653pt;}
._14{width:20.200107pt;}
._12{width:21.779200pt;}
._23{width:23.444053pt;}
._10{width:24.502827pt;}
._1c{width:43.572907pt;}
._18{width:117.661714pt;}
._19{width:157.128960pt;}
._1e{width:162.919040pt;}
._1a{width:383.792640pt;}
._1b{width:410.512000pt;}
._1f{width:417.576320pt;}
._20{width:444.933120pt;}
._1d{width:554.519680pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fsa{font-size:36.945551pt;}
.fs10{font-size:37.120000pt;}
.fsd{font-size:37.162763pt;}
.fsc{font-size:38.854649pt;}
.fsf{font-size:39.173198pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsb{font-size:63.911849pt;}
.fs2{font-size:64.000000pt;}
.fse{font-size:64.275177pt;}
.fs5{font-size:74.880000pt;}
.fs9{font-size:83.717917pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y8b{bottom:2.910926pt;}
.yee{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y1a{bottom:4.320000pt;}
.yfb{bottom:4.480000pt;}
.y116{bottom:4.506667pt;}
.y12e{bottom:4.634667pt;}
.y87{bottom:4.640000pt;}
.y134{bottom:4.666667pt;}
.y54{bottom:4.800000pt;}
.y101{bottom:4.832000pt;}
.yf{bottom:8.480000pt;}
.y7f{bottom:10.613865pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y48{bottom:13.280000pt;}
.y16c{bottom:15.240000pt;}
.y4{bottom:15.392000pt;}
.y47{bottom:15.840000pt;}
.y8d{bottom:15.870732pt;}
.y81{bottom:15.917760pt;}
.y118{bottom:16.800000pt;}
.y107{bottom:16.840000pt;}
.y110{bottom:16.960000pt;}
.y2{bottom:17.952000pt;}
.y44{bottom:18.240000pt;}
.y8c{bottom:19.997547pt;}
.y7e{bottom:23.128803pt;}
.y19{bottom:26.080000pt;}
.yc{bottom:26.720000pt;}
.y5{bottom:28.320000pt;}
.y43{bottom:33.600000pt;}
.y82{bottom:36.014898pt;}
.y84{bottom:37.049387pt;}
.y7c{bottom:38.955431pt;}
.y80{bottom:40.116400pt;}
.y18{bottom:40.800000pt;}
.yb{bottom:41.280000pt;}
.y1{bottom:48.160000pt;}
.y162{bottom:48.800000pt;}
.y42{bottom:48.960000pt;}
.y83{bottom:51.635512pt;}
.y53{bottom:52.480000pt;}
.y131{bottom:54.400000pt;}
.y17{bottom:54.760000pt;}
.yc5{bottom:55.680000pt;}
.y126{bottom:55.840000pt;}
.y86{bottom:56.160000pt;}
.y19a{bottom:56.640000pt;}
.y198{bottom:56.960000pt;}
.y100{bottom:57.600000pt;}
.y7d{bottom:62.450420pt;}
.y16{bottom:64.040000pt;}
.y161{bottom:64.160000pt;}
.y41{bottom:64.320000pt;}
.ya{bottom:65.120000pt;}
.y40{bottom:79.520000pt;}
.y15{bottom:80.360000pt;}
.y9{bottom:82.560000pt;}
.y15f{bottom:88.352000pt;}
.y85{bottom:93.952000pt;}
.y3f{bottom:94.880000pt;}
.yf8{bottom:95.072000pt;}
.y14{bottom:96.680000pt;}
.y130{bottom:97.632000pt;}
.y8{bottom:98.906667pt;}
.y15e{bottom:103.712000pt;}
.y7b{bottom:106.480000pt;}
.y3e{bottom:110.240000pt;}
.y52{bottom:110.432000pt;}
.yc4{bottom:111.712000pt;}
.y197{bottom:112.032000pt;}
.y13{bottom:113.640000pt;}
.y12f{bottom:115.392000pt;}
.y15d{bottom:118.912000pt;}
.y7a{bottom:122.432000pt;}
.y3d{bottom:125.600000pt;}
.y51{bottom:125.632000pt;}
.yf7{bottom:125.792000pt;}
.yc3{bottom:127.072000pt;}
.y196{bottom:127.392000pt;}
.y125{bottom:132.352000pt;}
.y12d{bottom:133.152000pt;}
.y15c{bottom:134.266667pt;}
.y12{bottom:136.520000pt;}
.y3c{bottom:140.960000pt;}
.y50{bottom:140.986667pt;}
.yf6{bottom:141.146667pt;}
.y195{bottom:142.746667pt;}
.yc2{bottom:143.386667pt;}
.y124{bottom:147.546667pt;}
.y15b{bottom:149.626667pt;}
.y12c{bottom:150.906667pt;}
.y3b{bottom:156.320000pt;}
.y4f{bottom:156.346667pt;}
.y194{bottom:158.106667pt;}
.y11{bottom:158.120000pt;}
.yc1{bottom:158.746667pt;}
.y123{bottom:162.906667pt;}
.y15a{bottom:164.986667pt;}
.y12b{bottom:170.106667pt;}
.y3a{bottom:171.520000pt;}
.y4e{bottom:171.706667pt;}
.y193{bottom:173.306667pt;}
.yc0{bottom:174.106667pt;}
.y122{bottom:178.266667pt;}
.y2b{bottom:179.200000pt;}
.y159{bottom:180.346667pt;}
.y79{bottom:182.266667pt;}
.yf5{bottom:184.826667pt;}
.y39{bottom:186.880000pt;}
.y4d{bottom:187.066667pt;}
.y192{bottom:188.666667pt;}
.ybf{bottom:189.306667pt;}
.y12a{bottom:190.746667pt;}
.y2a{bottom:192.800000pt;}
.y121{bottom:193.626667pt;}
.y158{bottom:195.546667pt;}
.y78{bottom:197.466667pt;}
.yf4{bottom:200.826667pt;}
.y38{bottom:202.240000pt;}
.y4c{bottom:202.266667pt;}
.y191{bottom:204.026667pt;}
.ybe{bottom:204.666667pt;}
.y120{bottom:206.106667pt;}
.y29{bottom:208.480000pt;}
.y157{bottom:210.906667pt;}
.y77{bottom:212.826667pt;}
.yf3{bottom:216.826667pt;}
.y37{bottom:217.600000pt;}
.y4b{bottom:217.626667pt;}
.y129{bottom:218.586667pt;}
.y190{bottom:219.386667pt;}
.ybd{bottom:220.026667pt;}
.y28{bottom:223.840000pt;}
.y156{bottom:226.266667pt;}
.y76{bottom:228.186667pt;}
.yf2{bottom:232.826667pt;}
.y36{bottom:232.960000pt;}
.y4a{bottom:232.986667pt;}
.y18f{bottom:234.746667pt;}
.ybc{bottom:235.386667pt;}
.y27{bottom:239.066667pt;}
.y155{bottom:241.626667pt;}
.y75{bottom:243.546667pt;}
.y35{bottom:248.346667pt;}
.yf1{bottom:248.826667pt;}
.y18e{bottom:250.106667pt;}
.ybb{bottom:250.746667pt;}
.y26{bottom:254.906667pt;}
.y154{bottom:256.986667pt;}
.y74{bottom:258.906667pt;}
.y34{bottom:263.546667pt;}
.y49{bottom:263.706667pt;}
.yf0{bottom:264.826667pt;}
.y18d{bottom:265.306667pt;}
.yba{bottom:266.106667pt;}
.y25{bottom:269.786667pt;}
.y153{bottom:272.346667pt;}
.y73{bottom:274.106667pt;}
.y46{bottom:276.186667pt;}
.y33{bottom:278.906667pt;}
.y18c{bottom:280.666667pt;}
.yef{bottom:280.826667pt;}
.yb9{bottom:281.306667pt;}
.y24{bottom:284.346667pt;}
.y16b{bottom:285.466667pt;}
.y72{bottom:289.466667pt;}
.y32{bottom:294.266667pt;}
.y18b{bottom:296.026667pt;}
.yb8{bottom:296.666667pt;}
.yed{bottom:296.826667pt;}
.y23{bottom:299.546667pt;}
.y16a{bottom:301.506667pt;}
.y1d{bottom:302.146667pt;}
.y71{bottom:304.866667pt;}
.y31{bottom:309.626667pt;}
.y18a{bottom:311.426667pt;}
.yb7{bottom:312.066667pt;}
.yec{bottom:312.866667pt;}
.y22{bottom:315.066667pt;}
.y169{bottom:317.506667pt;}
.y70{bottom:320.226667pt;}
.y30{bottom:324.986667pt;}
.y189{bottom:326.786667pt;}
.yb6{bottom:327.426667pt;}
.yeb{bottom:328.866667pt;}
.y21{bottom:330.426667pt;}
.y168{bottom:333.506667pt;}
.y6f{bottom:336.546667pt;}
.y2f{bottom:340.346667pt;}
.y188{bottom:342.146667pt;}
.yb5{bottom:342.786667pt;}
.yea{bottom:346.146667pt;}
.y20{bottom:348.506667pt;}
.y167{bottom:349.506667pt;}
.y6e{bottom:352.866667pt;}
.y2e{bottom:355.546667pt;}
.y187{bottom:357.346667pt;}
.yb4{bottom:358.146667pt;}
.ye9{bottom:365.026667pt;}
.y166{bottom:365.506667pt;}
.y6d{bottom:369.026667pt;}
.y2d{bottom:370.906667pt;}
.y186{bottom:372.706667pt;}
.y1f{bottom:372.826667pt;}
.yb3{bottom:373.346667pt;}
.ye8{bottom:380.386667pt;}
.y165{bottom:381.506667pt;}
.y6c{bottom:384.386667pt;}
.y2c{bottom:386.266667pt;}
.y185{bottom:388.066667pt;}
.y1e{bottom:388.666667pt;}
.yb2{bottom:388.706667pt;}
.ye7{bottom:395.746667pt;}
.y164{bottom:397.506667pt;}
.y11f{bottom:398.946667pt;}
.y6b{bottom:400.706667pt;}
.y184{bottom:403.426667pt;}
.yb1{bottom:404.066667pt;}
.ye6{bottom:411.106667pt;}
.y11e{bottom:412.066667pt;}
.y163{bottom:413.506667pt;}
.y6a{bottom:416.066667pt;}
.y183{bottom:418.786667pt;}
.yb0{bottom:419.426667pt;}
.ye5{bottom:426.466667pt;}
.y11d{bottom:429.666667pt;}
.y160{bottom:430.786667pt;}
.y69{bottom:431.426667pt;}
.y182{bottom:433.986667pt;}
.yaf{bottom:434.786667pt;}
.ye4{bottom:441.826667pt;}
.y68{bottom:446.626667pt;}
.y11c{bottom:447.106667pt;}
.y181{bottom:449.346667pt;}
.yae{bottom:450.146667pt;}
.ye3{bottom:457.026667pt;}
.y67{bottom:461.986667pt;}
.y11b{bottom:464.706667pt;}
.yad{bottom:465.346667pt;}
.ye2{bottom:472.386667pt;}
.y66{bottom:477.346667pt;}
.y180{bottom:480.066667pt;}
.yac{bottom:481.666667pt;}
.y11a{bottom:482.146667pt;}
.ye1{bottom:487.746667pt;}
.y65{bottom:492.706667pt;}
.y17f{bottom:495.426667pt;}
.yab{bottom:497.986667pt;}
.y119{bottom:499.746667pt;}
.ye0{bottom:500.866667pt;}
.y64{bottom:508.066667pt;}
.y17e{bottom:510.786667pt;}
.yaa{bottom:514.306667pt;}
.ydf{bottom:516.866667pt;}
.y117{bottom:517.346667pt;}
.y152{bottom:518.466667pt;}
.y63{bottom:523.426667pt;}
.y17d{bottom:525.986667pt;}
.ya9{bottom:530.626667pt;}
.yde{bottom:532.866667pt;}
.y151{bottom:533.826667pt;}
.y115{bottom:534.786667pt;}
.y62{bottom:538.653333pt;}
.y17c{bottom:541.373333pt;}
.ya8{bottom:545.853333pt;}
.ydd{bottom:548.893333pt;}
.y150{bottom:549.213333pt;}
.y61{bottom:551.133333pt;}
.y114{bottom:552.413333pt;}
.y17b{bottom:556.733333pt;}
.ya7{bottom:561.213333pt;}
.y14f{bottom:564.573333pt;}
.ydc{bottom:566.173333pt;}
.y113{bottom:569.853333pt;}
.y17a{bottom:572.093333pt;}
.ya6{bottom:576.573333pt;}
.y14e{bottom:579.933333pt;}
.ydb{bottom:586.973333pt;}
.y112{bottom:587.453333pt;}
.ya5{bottom:592.893333pt;}
.y14d{bottom:595.133333pt;}
.yda{bottom:602.333333pt;}
.y179{bottom:602.813333pt;}
.y111{bottom:605.053333pt;}
.ya4{bottom:609.213333pt;}
.y14c{bottom:610.493333pt;}
.yd9{bottom:617.693333pt;}
.y178{bottom:618.013333pt;}
.y10f{bottom:622.493333pt;}
.ya3{bottom:625.373333pt;}
.y14b{bottom:625.853333pt;}
.yd8{bottom:633.053333pt;}
.y177{bottom:633.373333pt;}
.y10e{bottom:640.093333pt;}
.ya2{bottom:640.733333pt;}
.y14a{bottom:641.213333pt;}
.y128{bottom:643.933333pt;}
.yd7{bottom:648.413333pt;}
.y176{bottom:648.733333pt;}
.ya1{bottom:656.093333pt;}
.y127{bottom:656.413333pt;}
.y149{bottom:656.573333pt;}
.y10d{bottom:657.533333pt;}
.yd6{bottom:663.773333pt;}
.y175{bottom:664.093333pt;}
.ya0{bottom:671.453333pt;}
.y148{bottom:671.933333pt;}
.y10c{bottom:675.133333pt;}
.yd5{bottom:678.973333pt;}
.y174{bottom:679.453333pt;}
.y9f{bottom:686.813333pt;}
.y147{bottom:687.133333pt;}
.y10b{bottom:692.573333pt;}
.yd4{bottom:694.333333pt;}
.y173{bottom:694.813333pt;}
.y1b{bottom:700.893333pt;}
.y9e{bottom:702.173333pt;}
.y146{bottom:702.493333pt;}
.yd3{bottom:709.693333pt;}
.y172{bottom:710.013333pt;}
.y10a{bottom:710.173333pt;}
.y9d{bottom:717.373333pt;}
.y145{bottom:717.853333pt;}
.yd2{bottom:725.053333pt;}
.y171{bottom:725.373333pt;}
.y10{bottom:727.133333pt;}
.y109{bottom:727.773333pt;}
.y9c{bottom:732.733333pt;}
.y144{bottom:733.213333pt;}
.yd1{bottom:740.413333pt;}
.y170{bottom:740.733333pt;}
.y108{bottom:745.213333pt;}
.y9b{bottom:748.093333pt;}
.y143{bottom:748.573333pt;}
.yd0{bottom:755.773333pt;}
.y16f{bottom:756.093333pt;}
.y106{bottom:762.813333pt;}
.y9a{bottom:763.453333pt;}
.y142{bottom:763.773333pt;}
.ycf{bottom:770.973333pt;}
.y199{bottom:771.453333pt;}
.y16e{bottom:776.133333pt;}
.y99{bottom:778.853333pt;}
.y141{bottom:779.173333pt;}
.y105{bottom:781.733333pt;}
.yff{bottom:784.133333pt;}
.y16d{bottom:786.693333pt;}
.y140{bottom:794.533333pt;}
.yfe{bottom:801.893333pt;}
.y104{bottom:802.053333pt;}
.y98{bottom:805.733333pt;}
.y13f{bottom:809.893333pt;}
.y103{bottom:817.413333pt;}
.yfd{bottom:819.493333pt;}
.y97{bottom:821.253333pt;}
.y13e{bottom:825.253333pt;}
.y102{bottom:832.773333pt;}
.y96{bottom:833.733333pt;}
.yfc{bottom:837.253333pt;}
.y13d{bottom:840.613333pt;}
.y95{bottom:842.693333pt;}
.y60{bottom:848.133333pt;}
.yfa{bottom:854.853333pt;}
.y13c{bottom:855.813333pt;}
.y5f{bottom:863.493333pt;}
.y94{bottom:866.693333pt;}
.y13b{bottom:871.173333pt;}
.yf9{bottom:873.893333pt;}
.y93{bottom:875.173333pt;}
.y5e{bottom:878.693333pt;}
.y13a{bottom:884.293333pt;}
.yce{bottom:893.093333pt;}
.y5d{bottom:894.053333pt;}
.ye{bottom:898.693333pt;}
.y92{bottom:901.253333pt;}
.y139{bottom:902.053333pt;}
.ycd{bottom:908.453333pt;}
.y5c{bottom:909.413333pt;}
.y91{bottom:916.613333pt;}
.y138{bottom:919.973333pt;}
.y7{bottom:921.253333pt;}
.ycc{bottom:923.813333pt;}
.y5b{bottom:924.773333pt;}
.y90{bottom:931.813333pt;}
.y137{bottom:937.733333pt;}
.ycb{bottom:939.173333pt;}
.y5a{bottom:940.133333pt;}
.y8f{bottom:947.173333pt;}
.yca{bottom:954.533333pt;}
.y59{bottom:955.493333pt;}
.y8e{bottom:963.493333pt;}
.yc9{bottom:969.733333pt;}
.y58{bottom:970.693333pt;}
.y136{bottom:973.253333pt;}
.y8a{bottom:976.879928pt;}
.yc8{bottom:985.093333pt;}
.y57{bottom:986.053333pt;}
.y135{bottom:991.173333pt;}
.y89{bottom:996.933333pt;}
.yc7{bottom:1000.453333pt;}
.y56{bottom:1001.413333pt;}
.y133{bottom:1008.933333pt;}
.y88{bottom:1015.840000pt;}
.y55{bottom:1016.800000pt;}
.y132{bottom:1026.720000pt;}
.yc6{bottom:1031.200000pt;}
.y6{bottom:1032.160000pt;}
.h40{height:15.200000pt;}
.h41{height:15.232000pt;}
.h36{height:15.360000pt;}
.h37{height:15.392000pt;}
.h38{height:15.680000pt;}
.h3b{height:16.800000pt;}
.h3c{height:16.832000pt;}
.h39{height:16.960000pt;}
.h3d{height:16.992000pt;}
.h3a{height:17.120000pt;}
.h3e{height:17.152000pt;}
.h35{height:17.280000pt;}
.h2a{height:19.712000pt;}
.h20{height:19.872000pt;}
.hd{height:22.240000pt;}
.h42{height:24.131250pt;}
.h14{height:25.750000pt;}
.h26{height:25.796943pt;}
.h2c{height:25.948609pt;}
.h1f{height:25.952000pt;}
.h15{height:26.240000pt;}
.h2{height:29.312000pt;}
.h13{height:31.828125pt;}
.ha{height:32.160000pt;}
.h1d{height:34.505000pt;}
.h28{height:35.989878pt;}
.h2b{height:35.999210pt;}
.h2e{height:36.284939pt;}
.h7{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h23{height:38.491250pt;}
.h34{height:38.672812pt;}
.hf{height:39.113750pt;}
.hc{height:39.840000pt;}
.h1b{height:40.685000pt;}
.h1a{height:41.672500pt;}
.h18{height:42.649687pt;}
.h21{height:42.691250pt;}
.h1c{height:43.782500pt;}
.h33{height:44.768125pt;}
.h4{height:47.742188pt;}
.hb{height:48.000000pt;}
.h3{height:49.148438pt;}
.h22{height:49.203438pt;}
.h19{height:50.288438pt;}
.h27{height:52.677344pt;}
.h11{height:52.834688pt;}
.h2d{height:52.976806pt;}
.h12{height:54.390938pt;}
.h6{height:55.468750pt;}
.h10{height:56.160000pt;}
.h29{height:59.199599pt;}
.h5{height:60.288750pt;}
.h9{height:63.656250pt;}
.h16{height:65.531250pt;}
.h24{height:72.932834pt;}
.h3f{height:76.640000pt;}
.h25{height:77.545355pt;}
.h30{height:78.688125pt;}
.h32{height:80.608125pt;}
.h31{height:85.728125pt;}
.h2f{height:92.083750pt;}
.h8{height:108.032000pt;}
.he{height:171.546667pt;}
.h17{height:398.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:20.000224pt;}
.w3{width:64.960000pt;}
.wa{width:70.240000pt;}
.wd{width:70.400000pt;}
.wb{width:123.063991pt;}
.w5{width:135.066667pt;}
.w1d{width:148.026667pt;}
.w1f{width:153.306667pt;}
.w1c{width:157.626667pt;}
.w13{width:160.026667pt;}
.w12{width:171.066667pt;}
.w16{width:172.986667pt;}
.w10{width:176.666667pt;}
.w1e{width:187.706667pt;}
.wf{width:188.826667pt;}
.w8{width:198.626667pt;}
.w1b{width:206.266667pt;}
.w1a{width:213.146667pt;}
.w19{width:227.746667pt;}
.w15{width:235.706667pt;}
.w14{width:238.626667pt;}
.we{width:281.666667pt;}
.w11{width:289.986667pt;}
.w20{width:306.306667pt;}
.w18{width:312.866667pt;}
.w17{width:335.106667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:2.348659pt;}
.x2c{left:6.720000pt;}
.x2{left:7.712000pt;}
.x24{left:9.659070pt;}
.x13{left:11.200000pt;}
.x20{left:13.764729pt;}
.xd{left:21.792000pt;}
.x15{left:26.560000pt;}
.x3c{left:30.912000pt;}
.x1f{left:41.780853pt;}
.x1b{left:43.277595pt;}
.xb{left:49.472000pt;}
.x1a{left:58.946420pt;}
.x1{left:72.000000pt;}
.x1c{left:76.151924pt;}
.x19{left:78.782816pt;}
.x1d{left:83.520155pt;}
.x4{left:87.226667pt;}
.xf{left:89.466667pt;}
.x17{left:96.031988pt;}
.x25{left:116.031988pt;}
.x23{left:120.031988pt;}
.x18{left:145.346658pt;}
.x10{left:152.026667pt;}
.x3b{left:161.466655pt;}
.xc{left:185.826667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x3d{left:230.906667pt;}
.x31{left:234.426655pt;}
.x8{left:241.986667pt;}
.x29{left:252.226655pt;}
.x21{left:268.386655pt;}
.x12{left:270.626667pt;}
.x26{left:291.106655pt;}
.x6{left:295.106667pt;}
.x38{left:301.026667pt;}
.xe{left:305.826667pt;}
.x28{left:308.706655pt;}
.x7{left:312.226667pt;}
.x37{left:317.826655pt;}
.xa{left:324.866667pt;}
.x2a{left:354.946667pt;}
.x2d{left:363.266667pt;}
.x27{left:378.946655pt;}
.x9{left:390.666667pt;}
.x36{left:396.866655pt;}
.x32{left:408.386667pt;}
.x39{left:514.973333pt;}
.x2e{left:534.973333pt;}
.x2b{left:544.573333pt;}
.x2f{left:548.253333pt;}
.x3e{left:567.933333pt;}
.x33{left:623.973322pt;}
.x14{left:646.533333pt;}
.x22{left:650.533333pt;}
.x30{left:652.453333pt;}
.x3a{left:653.413333pt;}
.x34{left:654.533333pt;}
.x3f{left:655.493333pt;}
.x3{left:656.933333pt;}
.x40{left:658.533333pt;}
.x16{left:678.213322pt;}
.x35{left:686.053322pt;}
}




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