
    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_dcb741b577c1e5bc77771b18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_ccc81c7608ab2ceb96bf21a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_b8f9c7b37aa167c6936086e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850000;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_27402bb2a99d1cc252ab2339.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_be0fe9209f1ed0a0db9dbd81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_0fceb993ddb656bf4bd0a0a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_42b79c00eba5b20f1cf1c23c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_49e28788cf4ca4e10fc97189.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_e8b20b6f2b1f60a82e2f1c61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_5a2ca95b30c2c4229dd23ff4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_547e6a628deec594edde6f9b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_15fd5a6655e68d55eba8b7b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_60d2bfca50064ffce72652af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.653000;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_8715e662cd06b6b485b05e27.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685000;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_630ee7a2a12ad0828f45443b.woff2')format("woff");}.fff{font-family:fff;line-height:0.747000;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_954699f7ebe8d406363f968c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.685000;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_7433322d9c37da8915e6221e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.453000;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_773eb611293b2c17bb07cf82.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;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_bf624bf3d4717f3de9d9c936.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.390000;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_6e1ac655525a5d0cfd0f0c52.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.901000;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_d25392485faf4e00df808b98.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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);}
.va{vertical-align:-24.685234px;}
.v4{vertical-align:-18.438922px;}
.v1{vertical-align:-8.964448px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.838742px;}
.vd{vertical-align:17.268863px;}
.v5{vertical-align:19.248962px;}
.vf{vertical-align:20.617031px;}
.v2{vertical-align:21.697085px;}
.ve{vertical-align:23.533177px;}
.v9{vertical-align:24.679234px;}
.v6{vertical-align:32.743637px;}
.vb{vertical-align:40.442022px;}
.v3{vertical-align:44.834242px;}
.v8{vertical-align:56.786839px;}
.vc{vertical-align:66.951347px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000538px;}
.ls16{letter-spacing:0.000564px;}
.ls15{letter-spacing:0.000615px;}
.ls20{letter-spacing:0.001865px;}
.ls1e{letter-spacing:0.001923px;}
.ls11{letter-spacing:0.002234px;}
.ls3{letter-spacing:0.002245px;}
.ls3c{letter-spacing:0.002469px;}
.ls6{letter-spacing:0.003269px;}
.ls12{letter-spacing:0.003413px;}
.ls17{letter-spacing:0.004200px;}
.ls28{letter-spacing:0.005131px;}
.ls23{letter-spacing:0.005373px;}
.ls37{letter-spacing:0.007924px;}
.ls1a{letter-spacing:2.147146px;}
.ls8{letter-spacing:2.984675px;}
.lsb{letter-spacing:2.988764px;}
.ls24{letter-spacing:2.990384px;}
.ls7{letter-spacing:2.990675px;}
.ls2f{letter-spacing:4.685610px;}
.ls22{letter-spacing:4.691611px;}
.ls5{letter-spacing:6.434188px;}
.ls35{letter-spacing:7.174559px;}
.ls38{letter-spacing:7.673760px;}
.ls1f{letter-spacing:7.679760px;}
.ls1d{letter-spacing:8.708961px;}
.ls36{letter-spacing:11.962961px;}
.lsd{letter-spacing:13.279202px;}
.ls2b{letter-spacing:13.281002px;}
.ls2a{letter-spacing:13.281133px;}
.ls31{letter-spacing:13.285203px;}
.ls33{letter-spacing:16.269339px;}
.lsc{letter-spacing:16.273428px;}
.ls26{letter-spacing:16.599299px;}
.ls18{letter-spacing:16.600099px;}
.ls27{letter-spacing:16.602438px;}
.ls19{letter-spacing:16.603368px;}
.ls32{letter-spacing:16.618448px;}
.lsf{letter-spacing:19.593505px;}
.ls3a{letter-spacing:19.607377px;}
.ls39{letter-spacing:19.667156px;}
.ls2{letter-spacing:19.786713px;}
.ls2e{letter-spacing:19.923241px;}
.ls14{letter-spacing:19.923334px;}
.ls2d{letter-spacing:19.923465px;}
.ls2c{letter-spacing:19.929241px;}
.lse{letter-spacing:19.929681px;}
.ls34{letter-spacing:20.455561px;}
.ls3f{letter-spacing:20.743170px;}
.ls9{letter-spacing:21.141742px;}
.ls1c{letter-spacing:22.058299px;}
.ls1b{letter-spacing:22.088971px;}
.ls13{letter-spacing:22.167283px;}
.ls3b{letter-spacing:22.177856px;}
.ls30{letter-spacing:22.917380px;}
.ls10{letter-spacing:26.361184px;}
.ls1{letter-spacing:27.400055px;}
.lsa{letter-spacing:27.573245px;}
.ls29{letter-spacing:28.629957px;}
.ls25{letter-spacing:29.891672px;}
.ls3e{letter-spacing:31.390095px;}
.ls4{letter-spacing:77.112381px;}
.ls3d{letter-spacing:349.428085px;}
.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;}
}
.ws49{word-spacing:-59.778589px;}
.ws44{word-spacing:-47.657148px;}
.ws48{word-spacing:-33.224940px;}
.ws38{word-spacing:-16.606492px;}
.wsa3{word-spacing:-15.279407px;}
.ws39{word-spacing:-6.683246px;}
.ws47{word-spacing:-3.335645px;}
.ws3b{word-spacing:-2.917195px;}
.ws9d{word-spacing:-2.678081px;}
.ws99{word-spacing:-1.721623px;}
.ws41{word-spacing:-0.944502px;}
.ws68{word-spacing:-0.884723px;}
.ws31{word-spacing:-0.765166px;}
.ws79{word-spacing:-0.346716px;}
.ws5b{word-spacing:-0.286937px;}
.ws32{word-spacing:-0.059779px;}
.wsa0{word-spacing:-0.047823px;}
.ws3f{word-spacing:-0.041845px;}
.ws3e{word-spacing:-0.015472px;}
.ws26{word-spacing:0.000000px;}
.ws3c{word-spacing:0.011956px;}
.ws54{word-spacing:0.071734px;}
.ws77{word-spacing:0.310849px;}
.ws15{word-spacing:0.490184px;}
.wsc{word-spacing:0.511110px;}
.ws40{word-spacing:0.609742px;}
.ws8e{word-spacing:0.669520px;}
.ws30{word-spacing:0.729299px;}
.ws4c{word-spacing:0.789077px;}
.ws58{word-spacing:0.848856px;}
.wsa{word-spacing:0.995320px;}
.ws8b{word-spacing:1.028192px;}
.ws61{word-spacing:1.087970px;}
.ws1d{word-spacing:1.147749px;}
.ws4b{word-spacing:1.446642px;}
.ws2f{word-spacing:1.506420px;}
.ws16{word-spacing:1.625978px;}
.ws9c{word-spacing:1.745535px;}
.ws9a{word-spacing:1.771374px;}
.ws7a{word-spacing:1.924871px;}
.ws22{word-spacing:2.403099px;}
.ws25{word-spacing:2.522656px;}
.ws1b{word-spacing:2.582435px;}
.wse{word-spacing:2.609353px;}
.ws6{word-spacing:2.663154px;}
.ws7f{word-spacing:2.761771px;}
.ws7c{word-spacing:2.881328px;}
.ws4a{word-spacing:3.000885px;}
.wsa1{word-spacing:3.012841px;}
.ws10{word-spacing:3.039762px;}
.ws8d{word-spacing:3.072619px;}
.ws13{word-spacing:3.093563px;}
.ws2d{word-spacing:3.120442px;}
.ws2c{word-spacing:3.180221px;}
.ws24{word-spacing:3.240000px;}
.ws1a{word-spacing:3.299778px;}
.ws45{word-spacing:3.316057px;}
.ws46{word-spacing:3.321519px;}
.ws95{word-spacing:3.359557px;}
.ws7d{word-spacing:3.419335px;}
.wsb{word-spacing:3.470170px;}
.ws62{word-spacing:3.538892px;}
.ws69{word-spacing:3.718228px;}
.ws72{word-spacing:3.778007px;}
.ws8{word-spacing:3.792977px;}
.ws6f{word-spacing:3.801918px;}
.ws92{word-spacing:3.807482px;}
.ws2e{word-spacing:3.897564px;}
.ws80{word-spacing:4.076900px;}
.ws81{word-spacing:4.136678px;}
.ws7e{word-spacing:4.196457px;}
.ws19{word-spacing:4.316014px;}
.ws9b{word-spacing:4.327970px;}
.ws52{word-spacing:4.375793px;}
.ws7b{word-spacing:4.435571px;}
.ws1{word-spacing:4.483424px;}
.ws36{word-spacing:4.495350px;}
.ws35{word-spacing:4.531542px;}
.ws37{word-spacing:4.555128px;}
.ws1c{word-spacing:4.674686px;}
.ws1f{word-spacing:4.854021px;}
.ws55{word-spacing:4.913800px;}
.ws5{word-spacing:4.922800px;}
.ws21{word-spacing:4.973579px;}
.ws67{word-spacing:5.033357px;}
.ws6a{word-spacing:5.093136px;}
.ws23{word-spacing:5.272472px;}
.ws27{word-spacing:5.380094px;}
.ws42{word-spacing:5.392029px;}
.ws43{word-spacing:5.451807px;}
.ws50{word-spacing:5.571364px;}
.ws59{word-spacing:5.631143px;}
.ws66{word-spacing:5.750700px;}
.ws86{word-spacing:5.870257px;}
.ws87{word-spacing:5.930036px;}
.ws98{word-spacing:6.061549px;}
.wsf{word-spacing:6.106424px;}
.ws89{word-spacing:6.109372px;}
.ws8f{word-spacing:6.121327px;}
.ws9f{word-spacing:6.181106px;}
.ws75{word-spacing:6.206339px;}
.ws0{word-spacing:6.456098px;}
.ws8a{word-spacing:6.527822px;}
.ws93{word-spacing:6.539778px;}
.ws9{word-spacing:6.644435px;}
.wsd{word-spacing:6.698236px;}
.ws6e{word-spacing:6.766936px;}
.ws53{word-spacing:6.826715px;}
.ws88{word-spacing:7.006051px;}
.ws71{word-spacing:7.065829px;}
.ws4d{word-spacing:7.125608px;}
.ws5a{word-spacing:7.304944px;}
.ws9e{word-spacing:7.316899px;}
.ws12{word-spacing:7.397650px;}
.ws18{word-spacing:7.544058px;}
.ws4f{word-spacing:7.603836px;}
.ws6d{word-spacing:7.807084px;}
.ws76{word-spacing:7.962508px;}
.ws56{word-spacing:8.082065px;}
.ws64{word-spacing:8.201622px;}
.ws3d{word-spacing:8.259281px;}
.ws17{word-spacing:8.261401px;}
.ws1e{word-spacing:8.321180px;}
.ws4e{word-spacing:8.380958px;}
.ws20{word-spacing:8.440737px;}
.ws7{word-spacing:8.527473px;}
.ws74{word-spacing:8.620073px;}
.ws5c{word-spacing:8.679851px;}
.ws8c{word-spacing:8.739630px;}
.ws51{word-spacing:8.799408px;}
.ws60{word-spacing:8.918965px;}
.ws94{word-spacing:8.978744px;}
.ws65{word-spacing:9.397194px;}
.ws70{word-spacing:9.576530px;}
.ws5e{word-spacing:9.755866px;}
.ws33{word-spacing:9.923246px;}
.ws96{word-spacing:10.413430px;}
.ws90{word-spacing:10.425386px;}
.ws29{word-spacing:10.772102px;}
.ws2a{word-spacing:10.831880px;}
.wsa2{word-spacing:10.851320px;}
.ws5f{word-spacing:10.951437px;}
.ws91{word-spacing:11.310109px;}
.ws2b{word-spacing:11.609002px;}
.ws63{word-spacing:11.788338px;}
.ws57{word-spacing:12.147009px;}
.ws5d{word-spacing:12.206788px;}
.ws97{word-spacing:12.696972px;}
.ws6c{word-spacing:13.281541px;}
.ws78{word-spacing:14.510634px;}
.ws73{word-spacing:18.092971px;}
.ws3{word-spacing:22.219850px;}
.ws2{word-spacing:22.273651px;}
.ws4{word-spacing:28.191771px;}
.ws11{word-spacing:33.221699px;}
.ws3a{word-spacing:57.516529px;}
.ws28{word-spacing:58.284514px;}
.ws82{word-spacing:59.356531px;}
.ws14{word-spacing:69.941222px;}
.ws34{word-spacing:88.612969px;}
.ws6b{word-spacing:95.899162px;}
.ws85{word-spacing:174.654096px;}
.ws84{word-spacing:242.583544px;}
.ws83{word-spacing:257.532091px;}
._2e{margin-left:-28.528856px;}
._30{margin-left:-26.541693px;}
._24{margin-left:-22.529164px;}
._20{margin-left:-17.131683px;}
._2{margin-left:-6.507747px;}
._7{margin-left:-5.227183px;}
._1{margin-left:-3.202225px;}
._3{margin-left:-1.368749px;}
._4{width:1.560232px;}
._0{width:3.202225px;}
._1d{width:4.842066px;}
._2c{width:5.982016px;}
._1e{width:6.994634px;}
._1a{width:9.972815px;}
._1c{width:15.598205px;}
._9{width:16.955821px;}
._c{width:18.433447px;}
._10{width:20.872222px;}
._b{width:22.820139px;}
._5{width:24.150331px;}
._21{width:25.459520px;}
._8{width:26.685341px;}
._28{width:28.182161px;}
._d{width:30.614948px;}
._f{width:32.254013px;}
._a{width:33.541801px;}
._23{width:37.062725px;}
._2d{width:38.101138px;}
._6{width:40.109772px;}
._e{width:41.593751px;}
._22{width:42.849101px;}
._27{width:45.459528px;}
._2f{width:47.073250px;}
._26{width:48.456141px;}
._29{width:50.297587px;}
._12{width:51.343819px;}
._25{width:53.217960px;}
._13{width:74.030603px;}
._1f{width:80.701635px;}
._1b{width:84.054375px;}
._11{width:96.841692px;}
._18{width:106.503525px;}
._19{width:125.265779px;}
._16{width:127.298053px;}
._17{width:138.887144px;}
._2b{width:184.872288px;}
._2a{width:199.813035px;}
._14{width:257.801089px;}
._15{width:386.453522px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.889294px;}
.fs6{font-size:41.844892px;}
.fs2{font-size:53.801090px;}
.fs4{font-size:59.778589px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.734787px;}
.fs3{font-size:86.081504px;}
.fs0{font-size:103.297565px;}
.y0{bottom:0.000000px;}
.y2d{bottom:22.740000px;}
.y143{bottom:107.977657px;}
.y112{bottom:109.755246px;}
.y5d{bottom:115.950556px;}
.yd3{bottom:121.371827px;}
.y142{bottom:125.911054px;}
.y111{bottom:127.690142px;}
.y16a{bottom:127.880652px;}
.yd2{bottom:139.305223px;}
.y5c{bottom:142.129864px;}
.y141{bottom:143.844450px;}
.y110{bottom:145.623539px;}
.y169{bottom:145.814049px;}
.y5b{bottom:145.839550px;}
.y2c{bottom:151.241320px;}
.yd1{bottom:157.238620px;}
.y140{bottom:161.777847px;}
.y10f{bottom:163.556936px;}
.y2b{bottom:169.174717px;}
.yd0{bottom:175.173517px;}
.y168{bottom:175.704543px;}
.y5a{bottom:175.728544px;}
.y13f{bottom:179.712743px;}
.y10e{bottom:181.490332px;}
.y2a{bottom:187.108113px;}
.ycf{bottom:193.106913px;}
.y167{bottom:193.637940px;}
.y13e{bottom:197.646140px;}
.y59{bottom:198.063161px;}
.y10d{bottom:199.423729px;}
.y58{bottom:201.307823px;}
.y29{bottom:205.041510px;}
.yce{bottom:211.040310px;}
.y10c{bottom:217.357126px;}
.y57{bottom:219.224719px;}
.y28{bottom:222.976407px;}
.y166{bottom:223.526934px;}
.ycd{bottom:228.973706px;}
.y13d{bottom:233.592437px;}
.y10b{bottom:235.292022px;}
.y27{bottom:240.909803px;}
.y165{bottom:241.460331px;}
.ycc{bottom:246.907103px;}
.y56{bottom:251.381827px;}
.y10a{bottom:253.225419px;}
.y55{bottom:255.091512px;}
.y26{bottom:258.843200px;}
.y9a{bottom:259.816748px;}
.ycb{bottom:264.840500px;}
.y13c{bottom:266.388577px;}
.y109{bottom:271.158816px;}
.y164{bottom:271.349325px;}
.y54{bottom:273.024909px;}
.y99{bottom:277.751645px;}
.yca{bottom:282.775396px;}
.y13b{bottom:284.920504px;}
.y108{bottom:289.092212px;}
.y163{bottom:289.284222px;}
.y53{bottom:290.959806px;}
.y25{bottom:294.709993px;}
.y98{bottom:295.685042px;}
.yc9{bottom:300.708793px;}
.y13a{bottom:303.450930px;}
.y107{bottom:307.025609px;}
.y162{bottom:307.217618px;}
.y52{bottom:308.893202px;}
.y24{bottom:312.643390px;}
.y97{bottom:313.618438px;}
.yc8{bottom:318.642190px;}
.y139{bottom:321.982857px;}
.y87{bottom:324.706993px;}
.y106{bottom:324.959005px;}
.y96{bottom:331.551835px;}
.y51{bottom:336.478081px;}
.yc7{bottom:336.575586px;}
.y161{bottom:337.106613px;}
.y138{bottom:340.514783px;}
.y86{bottom:342.640389px;}
.y105{bottom:342.893902px;}
.y23{bottom:348.511683px;}
.y95{bottom:349.485232px;}
.yc6{bottom:354.508983px;}
.y160{bottom:355.040009px;}
.y85{bottom:360.575286px;}
.y22{bottom:366.445080px;}
.y94{bottom:367.418628px;}
.yc5{bottom:372.442379px;}
.y15f{bottom:372.973406px;}
.y104{bottom:377.635639px;}
.y50{bottom:378.313673px;}
.y84{bottom:378.508683px;}
.y21{bottom:384.378476px;}
.y93{bottom:385.353525px;}
.y137{bottom:386.706593px;}
.yc4{bottom:390.377276px;}
.y83{bottom:396.442079px;}
.y20{bottom:402.311873px;}
.y15e{bottom:402.863900px;}
.y92{bottom:403.286922px;}
.y136{bottom:404.639989px;}
.yc3{bottom:408.310673px;}
.y4f{bottom:411.190817px;}
.y82{bottom:414.375476px;}
.y1f{bottom:420.245270px;}
.y15d{bottom:420.797297px;}
.y4e{bottom:423.063910px;}
.yf8{bottom:424.106463px;}
.yc2{bottom:426.244069px;}
.y4d{bottom:431.249820px;}
.y81{bottom:432.308873px;}
.y91{bottom:438.028659px;}
.y1e{bottom:438.180166px;}
.y135{bottom:440.506783px;}
.yf7{bottom:442.039859px;}
.yc1{bottom:444.177466px;}
.y103{bottom:444.990507px;}
.y4c{bottom:449.184716px;}
.y80{bottom:450.242269px;}
.y15c{bottom:450.686291px;}
.y134{bottom:458.441679px;}
.yf6{bottom:459.973256px;}
.yc0{bottom:462.110863px;}
.y102{bottom:462.923903px;}
.y4b{bottom:467.118113px;}
.y7f{bottom:468.177166px;}
.y1d{bottom:474.046959px;}
.yf5{bottom:477.906652px;}
.ybf{bottom:480.044259px;}
.y15b{bottom:480.575286px;}
.y101{bottom:480.857300px;}
.y4a{bottom:485.051510px;}
.y7e{bottom:486.110563px;}
.y90{bottom:487.450130px;}
.y1c{bottom:491.980356px;}
.y133{bottom:494.308472px;}
.yf4{bottom:495.840049px;}
.ybe{bottom:497.979156px;}
.y15a{bottom:498.510183px;}
.y100{bottom:498.792197px;}
.y7d{bottom:504.043959px;}
.y8f{bottom:505.383526px;}
.yf3{bottom:508.620688px;}
.y1b{bottom:509.913753px;}
.y132{bottom:512.241869px;}
.yf2{bottom:513.774946px;}
.ybd{bottom:515.912553px;}
.y7c{bottom:521.977356px;}
.y8e{bottom:523.316923px;}
.y49{bottom:523.823948px;}
.y1a{bottom:527.847149px;}
.y159{bottom:528.399177px;}
.y131{bottom:530.175266px;}
.yf1{bottom:531.708342px;}
.ybc{bottom:533.845949px;}
.yff{bottom:534.658990px;}
.y7b{bottom:539.910752px;}
.y8d{bottom:541.251820px;}
.y19{bottom:545.782046px;}
.y158{bottom:546.332574px;}
.y130{bottom:548.108662px;}
.ybb{bottom:551.779346px;}
.yfe{bottom:552.592387px;}
.y48{bottom:556.620088px;}
.y7a{bottom:557.845649px;}
.y8c{bottom:559.185216px;}
.yf0{bottom:561.597337px;}
.y18{bottom:563.715443px;}
.y157{bottom:564.265970px;}
.y12f{bottom:566.043559px;}
.yba{bottom:569.712742px;}
.yfd{bottom:570.525783px;}
.y47{bottom:575.152014px;}
.y79{bottom:575.779046px;}
.y8b{bottom:577.118613px;}
.yef{bottom:579.530733px;}
.y12e{bottom:583.976956px;}
.yb9{bottom:587.646139px;}
.yfc{bottom:588.459180px;}
.y78{bottom:593.712442px;}
.y156{bottom:594.156465px;}
.y8a{bottom:595.052009px;}
.y17{bottom:599.288221px;}
.y12d{bottom:601.910352px;}
.yb8{bottom:605.581036px;}
.yee{bottom:609.419728px;}
.y77{bottom:611.645839px;}
.y155{bottom:612.089861px;}
.y12c{bottom:619.843749px;}
.yfb{bottom:621.337824px;}
.yb7{bottom:623.514432px;}
.y46{bottom:624.169965px;}
.yed{bottom:627.354624px;}
.y76{bottom:629.579236px;}
.y89{bottom:630.624788px;}
.y12b{bottom:637.777146px;}
.yfa{bottom:639.271220px;}
.yb6{bottom:641.447829px;}
.y154{bottom:641.978856px;}
.y45{bottom:642.103362px;}
.yec{bottom:645.288021px;}
.y75{bottom:647.512632px;}
.y16{bottom:648.709692px;}
.y12a{bottom:655.710542px;}
.yb5{bottom:659.381226px;}
.yeb{bottom:663.221418px;}
.y15{bottom:665.147514px;}
.y153{bottom:671.867850px;}
.y129{bottom:673.645439px;}
.y44{bottom:675.064510px;}
.yb4{bottom:677.314622px;}
.y88{bottom:682.951904px;}
.y74{bottom:683.380926px;}
.yf9{bottom:684.022958px;}
.y152{bottom:689.801247px;}
.y14{bottom:690.092261px;}
.y128{bottom:691.578835px;}
.yb3{bottom:695.248019px;}
.yea{bottom:696.016057px;}
.y73{bottom:701.314322px;}
.ye8{bottom:706.267570px;}
.y13{bottom:706.531583px;}
.y43{bottom:707.860650px;}
.ye9{bottom:712.096861px;}
.yb2{bottom:713.182916px;}
.y72{bottom:719.247719px;}
.y151{bottom:719.691741px;}
.y12{bottom:722.969405px;}
.y42{bottom:726.392576px;}
.y127{bottom:727.445629px;}
.yb1{bottom:731.116312px;}
.y71{bottom:737.181115px;}
.y150{bottom:737.625138px;}
.y11{bottom:739.408727px;}
.y41{bottom:744.923003px;}
.y126{bottom:745.379025px;}
.ye7{bottom:748.967205px;}
.yb0{bottom:749.049709px;}
.y70{bottom:755.114512px;}
.y14f{bottom:755.558534px;}
.y10{bottom:755.848049px;}
.y125{bottom:763.312422px;}
.y40{bottom:763.454929px;}
.yaf{bottom:766.983106px;}
.yf{bottom:772.287371px;}
.y6f{bottom:773.049409px;}
.ye6{bottom:778.856199px;}
.y124{bottom:781.247319px;}
.y3f{bottom:781.986856px;}
.yae{bottom:784.916502px;}
.ye{bottom:788.726693px;}
.y6e{bottom:790.982805px;}
.y14e{bottom:791.131313px;}
.ye5{bottom:796.789596px;}
.y123{bottom:799.180715px;}
.y3e{bottom:800.517282px;}
.yad{bottom:802.849899px;}
.yd{bottom:805.166015px;}
.y6d{bottom:808.916202px;}
.y122{bottom:817.114112px;}
.y3d{bottom:819.049209px;}
.yac{bottom:820.784795px;}
.yc{bottom:821.605337px;}
.ye4{bottom:829.668240px;}
.y121{bottom:835.047509px;}
.y3c{bottom:837.581135px;}
.yb{bottom:838.044658px;}
.yab{bottom:838.718192px;}
.y6c{bottom:844.782995px;}
.y120{bottom:852.980905px;}
.ya{bottom:854.483980px;}
.y3b{bottom:856.111562px;}
.yaa{bottom:856.651589px;}
.y14d{bottom:858.486180px;}
.y6b{bottom:862.716392px;}
.y11f{bottom:870.915802px;}
.y9{bottom:870.923302px;}
.ye3{bottom:872.111362px;}
.ya9{bottom:874.584985px;}
.y14c{bottom:876.419577px;}
.y6a{bottom:880.651289px;}
.y11e{bottom:888.849199px;}
.ye2{bottom:890.044758px;}
.y3a{bottom:890.103261px;}
.ya8{bottom:892.518382px;}
.y8{bottom:894.348473px;}
.y14b{bottom:894.352974px;}
.y69{bottom:898.584685px;}
.y11d{bottom:906.782595px;}
.ye1{bottom:907.978155px;}
.y39{bottom:908.036658px;}
.ya7{bottom:910.451779px;}
.y14a{bottom:912.286370px;}
.y68{bottom:916.518082px;}
.y11c{bottom:924.715992px;}
.ye0{bottom:925.911552px;}
.y38{bottom:925.970054px;}
.ya6{bottom:928.386675px;}
.y149{bottom:930.221267px;}
.y7{bottom:933.683440px;}
.y67{bottom:934.451479px;}
.ydf{bottom:943.844948px;}
.y37{bottom:943.903451px;}
.ya5{bottom:946.320072px;}
.y148{bottom:948.154664px;}
.y6{bottom:950.122762px;}
.y11b{bottom:960.582785px;}
.yde{bottom:961.779845px;}
.y36{bottom:961.836848px;}
.ya4{bottom:964.253469px;}
.y147{bottom:966.088060px;}
.y5{bottom:966.560584px;}
.y66{bottom:970.024257px;}
.y11a{bottom:978.517682px;}
.ydd{bottom:979.713242px;}
.y35{bottom:979.770244px;}
.ya3{bottom:982.186865px;}
.y146{bottom:984.021457px;}
.y119{bottom:996.451078px;}
.ydc{bottom:997.646638px;}
.y34{bottom:997.705141px;}
.y4{bottom:997.945153px;}
.ya2{bottom:1000.120262px;}
.y145{bottom:1001.954854px;}
.y64{bottom:1012.869399px;}
.y118{bottom:1014.384475px;}
.ydb{bottom:1015.580035px;}
.y33{bottom:1015.638538px;}
.y65{bottom:1017.635137px;}
.ya1{bottom:1018.053658px;}
.y63{bottom:1023.120912px;}
.y3{bottom:1026.340073px;}
.y117{bottom:1032.317872px;}
.yda{bottom:1033.513431px;}
.y32{bottom:1033.571934px;}
.ya0{bottom:1035.988555px;}
.y144{bottom:1036.698091px;}
.y116{bottom:1050.251268px;}
.yd9{bottom:1051.446828px;}
.y31{bottom:1051.505331px;}
.y9f{bottom:1053.921952px;}
.y2{bottom:1059.218717px;}
.y62{bottom:1062.206866px;}
.y115{bottom:1068.184665px;}
.yd8{bottom:1069.381725px;}
.y30{bottom:1069.438728px;}
.y9e{bottom:1071.855348px;}
.y61{bottom:1086.119562px;}
.yd7{bottom:1087.315121px;}
.y9d{bottom:1089.788745px;}
.y1{bottom:1092.097360px;}
.y2f{bottom:1097.025107px;}
.y114{bottom:1104.052958px;}
.yd6{bottom:1105.248518px;}
.y9c{bottom:1108.320672px;}
.y60{bottom:1110.030757px;}
.y113{bottom:1121.986355px;}
.yd5{bottom:1123.181915px;}
.y2e{bottom:1136.034557px;}
.y5f{bottom:1136.210066px;}
.y5e{bottom:1139.919751px;}
.yd4{bottom:1141.713841px;}
.y9b{bottom:1142.310871px;}
.h13{height:19.906270px;}
.h12{height:29.458804px;}
.h5{height:33.464278px;}
.h6{height:37.660763px;}
.h4{height:38.252575px;}
.h7{height:38.521580px;}
.h18{height:41.845012px;}
.h9{height:44.833942px;}
.he{height:44.834242px;}
.ha{height:49.090950px;}
.h3{height:50.214351px;}
.hc{height:51.149889px;}
.hb{height:51.155889px;}
.hd{height:53.074754px;}
.h1a{height:54.916846px;}
.h14{height:56.062903px;}
.h11{height:56.786839px;}
.h10{height:59.672683px;}
.h1c{height:59.948697px;}
.h8{height:60.257053px;}
.h1b{height:65.450972px;}
.h17{height:66.777039px;}
.h2{height:72.308295px;}
.h16{height:83.149955px;}
.h15{height:85.275964px;}
.hf{height:85.824391px;}
.h19{height:96.410151px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:107.986499px;}
.x2{left:114.250812px;}
.x2d{left:115.458373px;}
.x23{left:126.252912px;}
.xc{left:130.403620px;}
.x2e{left:138.706535px;}
.x1{left:142.447722px;}
.xa{left:145.348867px;}
.x9{left:166.084404px;}
.x2f{left:171.144157px;}
.x1b{left:181.302665px;}
.x13{left:188.185009px;}
.x14{left:215.286864px;}
.x4{left:254.005300px;}
.x10{left:258.634531px;}
.x5{left:261.955697px;}
.x6{left:274.169308px;}
.x7{left:276.987949px;}
.x20{left:288.004499px;}
.x24{left:295.105855px;}
.xe{left:298.484023px;}
.x2c{left:301.059652px;}
.xf{left:302.370718px;}
.x28{left:309.155557px;}
.x12{left:318.256512px;}
.x11{left:323.527776px;}
.x3{left:329.744086px;}
.x22{left:340.214610px;}
.x15{left:347.456972px;}
.x21{left:350.433121px;}
.x17{left:358.548527px;}
.x29{left:366.060902px;}
.x1f{left:368.011000px;}
.x2b{left:382.584228px;}
.x2a{left:386.319415px;}
.x8{left:416.017900px;}
.x18{left:420.516625px;}
.xd{left:434.184000px;}
.x1c{left:440.368617px;}
.x19{left:441.739686px;}
.x1a{left:449.067552px;}
.x1d{left:463.384268px;}
.x1e{left:523.724785px;}
.x26{left:528.807039px;}
.x25{left:564.999349px;}
.x16{left:586.466922px;}
.x27{left:703.634780px;}
@media print{
.va{vertical-align:-21.942430pt;}
.v4{vertical-align:-16.390153pt;}
.v1{vertical-align:-7.968398pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.189993pt;}
.vd{vertical-align:15.350101pt;}
.v5{vertical-align:17.110189pt;}
.vf{vertical-align:18.326250pt;}
.v2{vertical-align:19.286298pt;}
.ve{vertical-align:20.918379pt;}
.v9{vertical-align:21.937097pt;}
.v6{vertical-align:29.105455pt;}
.vb{vertical-align:35.948464pt;}
.v3{vertical-align:39.852659pt;}
.v8{vertical-align:50.477190pt;}
.vc{vertical-align:59.512309pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000479pt;}
.ls16{letter-spacing:0.000501pt;}
.ls15{letter-spacing:0.000546pt;}
.ls20{letter-spacing:0.001658pt;}
.ls1e{letter-spacing:0.001710pt;}
.ls11{letter-spacing:0.001986pt;}
.ls3{letter-spacing:0.001995pt;}
.ls3c{letter-spacing:0.002195pt;}
.ls6{letter-spacing:0.002906pt;}
.ls12{letter-spacing:0.003034pt;}
.ls17{letter-spacing:0.003734pt;}
.ls28{letter-spacing:0.004561pt;}
.ls23{letter-spacing:0.004776pt;}
.ls37{letter-spacing:0.007043pt;}
.ls1a{letter-spacing:1.908574pt;}
.ls8{letter-spacing:2.653044pt;}
.lsb{letter-spacing:2.656679pt;}
.ls24{letter-spacing:2.658119pt;}
.ls7{letter-spacing:2.658378pt;}
.ls2f{letter-spacing:4.164987pt;}
.ls22{letter-spacing:4.170321pt;}
.ls5{letter-spacing:5.719278pt;}
.ls35{letter-spacing:6.377386pt;}
.ls38{letter-spacing:6.821120pt;}
.ls1f{letter-spacing:6.826453pt;}
.ls1d{letter-spacing:7.741299pt;}
.ls36{letter-spacing:10.633744pt;}
.lsd{letter-spacing:11.803735pt;}
.ls2b{letter-spacing:11.805335pt;}
.ls2a{letter-spacing:11.805452pt;}
.ls31{letter-spacing:11.809069pt;}
.ls33{letter-spacing:14.461635pt;}
.lsc{letter-spacing:14.465270pt;}
.ls26{letter-spacing:14.754932pt;}
.ls18{letter-spacing:14.755644pt;}
.ls27{letter-spacing:14.757722pt;}
.ls19{letter-spacing:14.758550pt;}
.ls32{letter-spacing:14.771953pt;}
.lsf{letter-spacing:17.416449pt;}
.ls3a{letter-spacing:17.428780pt;}
.ls39{letter-spacing:17.481916pt;}
.ls2{letter-spacing:17.588189pt;}
.ls2e{letter-spacing:17.709547pt;}
.ls14{letter-spacing:17.709631pt;}
.ls2d{letter-spacing:17.709747pt;}
.ls2c{letter-spacing:17.714881pt;}
.lse{letter-spacing:17.715272pt;}
.ls34{letter-spacing:18.182721pt;}
.ls3f{letter-spacing:18.438374pt;}
.ls9{letter-spacing:18.792659pt;}
.ls1c{letter-spacing:19.607377pt;}
.ls1b{letter-spacing:19.634641pt;}
.ls13{letter-spacing:19.704252pt;}
.ls3b{letter-spacing:19.713650pt;}
.ls30{letter-spacing:20.371004pt;}
.ls10{letter-spacing:23.432164pt;}
.ls1{letter-spacing:24.355604pt;}
.lsa{letter-spacing:24.509551pt;}
.ls29{letter-spacing:25.448851pt;}
.ls25{letter-spacing:26.570375pt;}
.ls3e{letter-spacing:27.902307pt;}
.ls4{letter-spacing:68.544339pt;}
.ls3d{letter-spacing:310.602742pt;}
.ws49{word-spacing:-53.136523pt;}
.ws44{word-spacing:-42.361909pt;}
.ws48{word-spacing:-29.533280pt;}
.ws38{word-spacing:-14.761326pt;}
.wsa3{word-spacing:-13.581695pt;}
.ws39{word-spacing:-5.940663pt;}
.ws47{word-spacing:-2.965018pt;}
.ws3b{word-spacing:-2.593062pt;}
.ws9d{word-spacing:-2.380516pt;}
.ws99{word-spacing:-1.530332pt;}
.ws41{word-spacing:-0.839557pt;}
.ws68{word-spacing:-0.786421pt;}
.ws31{word-spacing:-0.680147pt;}
.ws79{word-spacing:-0.308192pt;}
.ws5b{word-spacing:-0.255055pt;}
.ws32{word-spacing:-0.053137pt;}
.wsa0{word-spacing:-0.042509pt;}
.ws3f{word-spacing:-0.037195pt;}
.ws3e{word-spacing:-0.013753pt;}
.ws26{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.010627pt;}
.ws54{word-spacing:0.063764pt;}
.ws77{word-spacing:0.276310pt;}
.ws15{word-spacing:0.435719pt;}
.wsc{word-spacing:0.454320pt;}
.ws40{word-spacing:0.541993pt;}
.ws8e{word-spacing:0.595129pt;}
.ws30{word-spacing:0.648266pt;}
.ws4c{word-spacing:0.701402pt;}
.ws58{word-spacing:0.754539pt;}
.wsa{word-spacing:0.884729pt;}
.ws8b{word-spacing:0.913948pt;}
.ws61{word-spacing:0.967085pt;}
.ws1d{word-spacing:1.020221pt;}
.ws4b{word-spacing:1.285904pt;}
.ws2f{word-spacing:1.339040pt;}
.ws16{word-spacing:1.445313pt;}
.ws9c{word-spacing:1.551586pt;}
.ws9a{word-spacing:1.574554pt;}
.ws7a{word-spacing:1.710996pt;}
.ws22{word-spacing:2.136088pt;}
.ws25{word-spacing:2.242361pt;}
.ws1b{word-spacing:2.295498pt;}
.wse{word-spacing:2.319425pt;}
.ws6{word-spacing:2.367248pt;}
.ws7f{word-spacing:2.454907pt;}
.ws7c{word-spacing:2.561180pt;}
.ws4a{word-spacing:2.667453pt;}
.wsa1{word-spacing:2.678081pt;}
.ws10{word-spacing:2.702010pt;}
.ws8d{word-spacing:2.731217pt;}
.ws13{word-spacing:2.749833pt;}
.ws2d{word-spacing:2.773727pt;}
.ws2c{word-spacing:2.826863pt;}
.ws24{word-spacing:2.880000pt;}
.ws1a{word-spacing:2.933136pt;}
.ws45{word-spacing:2.947607pt;}
.ws46{word-spacing:2.952462pt;}
.ws95{word-spacing:2.986273pt;}
.ws7d{word-spacing:3.039409pt;}
.wsb{word-spacing:3.084596pt;}
.ws62{word-spacing:3.145682pt;}
.ws69{word-spacing:3.305092pt;}
.ws72{word-spacing:3.358228pt;}
.ws8{word-spacing:3.371535pt;}
.ws6f{word-spacing:3.379483pt;}
.ws92{word-spacing:3.384428pt;}
.ws2e{word-spacing:3.464501pt;}
.ws80{word-spacing:3.623911pt;}
.ws81{word-spacing:3.677047pt;}
.ws7e{word-spacing:3.730184pt;}
.ws19{word-spacing:3.836457pt;}
.ws9b{word-spacing:3.847084pt;}
.ws52{word-spacing:3.889594pt;}
.ws7b{word-spacing:3.942730pt;}
.ws1{word-spacing:3.985266pt;}
.ws36{word-spacing:3.995867pt;}
.ws35{word-spacing:4.028037pt;}
.ws37{word-spacing:4.049003pt;}
.ws1c{word-spacing:4.155276pt;}
.ws1f{word-spacing:4.314686pt;}
.ws55{word-spacing:4.367822pt;}
.ws5{word-spacing:4.375822pt;}
.ws21{word-spacing:4.420959pt;}
.ws67{word-spacing:4.474095pt;}
.ws6a{word-spacing:4.527232pt;}
.ws23{word-spacing:4.686641pt;}
.ws27{word-spacing:4.782306pt;}
.ws42{word-spacing:4.792914pt;}
.ws43{word-spacing:4.846051pt;}
.ws50{word-spacing:4.952324pt;}
.ws59{word-spacing:5.005461pt;}
.ws66{word-spacing:5.111734pt;}
.ws86{word-spacing:5.218007pt;}
.ws87{word-spacing:5.271143pt;}
.ws98{word-spacing:5.388043pt;}
.wsf{word-spacing:5.427932pt;}
.ws89{word-spacing:5.430553pt;}
.ws8f{word-spacing:5.441180pt;}
.ws9f{word-spacing:5.494317pt;}
.ws75{word-spacing:5.516746pt;}
.ws0{word-spacing:5.738754pt;}
.ws8a{word-spacing:5.802508pt;}
.ws93{word-spacing:5.813136pt;}
.ws9{word-spacing:5.906164pt;}
.wsd{word-spacing:5.953987pt;}
.ws6e{word-spacing:6.015054pt;}
.ws53{word-spacing:6.068191pt;}
.ws88{word-spacing:6.227601pt;}
.ws71{word-spacing:6.280737pt;}
.ws4d{word-spacing:6.333874pt;}
.ws5a{word-spacing:6.493283pt;}
.ws9e{word-spacing:6.503910pt;}
.ws12{word-spacing:6.575689pt;}
.ws18{word-spacing:6.705829pt;}
.ws4f{word-spacing:6.758966pt;}
.ws6d{word-spacing:6.939630pt;}
.ws76{word-spacing:7.077785pt;}
.ws56{word-spacing:7.184058pt;}
.ws64{word-spacing:7.290331pt;}
.ws3d{word-spacing:7.341583pt;}
.ws17{word-spacing:7.343468pt;}
.ws1e{word-spacing:7.396604pt;}
.ws4e{word-spacing:7.449741pt;}
.ws20{word-spacing:7.502877pt;}
.ws7{word-spacing:7.579976pt;}
.ws74{word-spacing:7.662287pt;}
.ws5c{word-spacing:7.715423pt;}
.ws8c{word-spacing:7.768560pt;}
.ws51{word-spacing:7.821696pt;}
.ws60{word-spacing:7.927969pt;}
.ws94{word-spacing:7.981106pt;}
.ws65{word-spacing:8.353061pt;}
.ws70{word-spacing:8.512471pt;}
.ws5e{word-spacing:8.671881pt;}
.ws33{word-spacing:8.820663pt;}
.ws96{word-spacing:9.256382pt;}
.ws90{word-spacing:9.267010pt;}
.ws29{word-spacing:9.575202pt;}
.ws2a{word-spacing:9.628338pt;}
.wsa2{word-spacing:9.645618pt;}
.ws5f{word-spacing:9.734611pt;}
.ws91{word-spacing:10.053430pt;}
.ws2b{word-spacing:10.319113pt;}
.ws63{word-spacing:10.478522pt;}
.ws57{word-spacing:10.797342pt;}
.ws5d{word-spacing:10.850478pt;}
.ws97{word-spacing:11.286198pt;}
.ws6c{word-spacing:11.805814pt;}
.ws78{word-spacing:12.898342pt;}
.ws73{word-spacing:16.082641pt;}
.ws3{word-spacing:19.750978pt;}
.ws2{word-spacing:19.798801pt;}
.ws4{word-spacing:25.059352pt;}
.ws11{word-spacing:29.530399pt;}
.ws3a{word-spacing:51.125804pt;}
.ws28{word-spacing:51.808457pt;}
.ws82{word-spacing:52.761361pt;}
.ws14{word-spacing:62.169975pt;}
.ws34{word-spacing:78.767083pt;}
.ws6b{word-spacing:85.243699pt;}
.ws85{word-spacing:155.248086pt;}
.ws84{word-spacing:215.629816pt;}
.ws83{word-spacing:228.917414pt;}
._2e{margin-left:-25.358983pt;}
._30{margin-left:-23.592616pt;}
._24{margin-left:-20.025924pt;}
._20{margin-left:-15.228162pt;}
._2{margin-left:-5.784664pt;}
._7{margin-left:-4.646385pt;}
._1{margin-left:-2.846422pt;}
._3{margin-left:-1.216666pt;}
._4{width:1.386873pt;}
._0{width:2.846422pt;}
._1d{width:4.304058pt;}
._2c{width:5.317348pt;}
._1e{width:6.217453pt;}
._1a{width:8.864725pt;}
._1c{width:13.865071pt;}
._9{width:15.071840pt;}
._c{width:16.385286pt;}
._10{width:18.553087pt;}
._b{width:20.284568pt;}
._5{width:21.466961pt;}
._21{width:22.630685pt;}
._8{width:23.720303pt;}
._28{width:25.050810pt;}
._d{width:27.213287pt;}
._f{width:28.670233pt;}
._a{width:29.814934pt;}
._23{width:32.944644pt;}
._2d{width:33.867678pt;}
._6{width:35.653131pt;}
._e{width:36.972223pt;}
._22{width:38.088090pt;}
._27{width:40.408469pt;}
._2f{width:41.842889pt;}
._26{width:43.072126pt;}
._29{width:44.708966pt;}
._12{width:45.638951pt;}
._25{width:47.304854pt;}
._13{width:65.804980pt;}
._1f{width:71.734787pt;}
._1b{width:74.715000pt;}
._11{width:86.081504pt;}
._18{width:94.669800pt;}
._19{width:111.347359pt;}
._16{width:113.153825pt;}
._17{width:123.455239pt;}
._2b{width:164.330922pt;}
._2a{width:177.611586pt;}
._14{width:229.156524pt;}
._15{width:343.514242pt;}
.fs7{font-size:26.568262pt;}
.fs6{font-size:37.195460pt;}
.fs2{font-size:47.823191pt;}
.fs4{font-size:53.136523pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.764255pt;}
.fs3{font-size:76.516892pt;}
.fs0{font-size:91.820057pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:20.213333pt;}
.y143{bottom:95.980139pt;}
.y112{bottom:97.560218pt;}
.y5d{bottom:103.067160pt;}
.yd3{bottom:107.886068pt;}
.y142{bottom:111.920936pt;}
.y111{bottom:113.502349pt;}
.y16a{bottom:113.671691pt;}
.yd2{bottom:123.826865pt;}
.y5c{bottom:126.337657pt;}
.y141{bottom:127.861733pt;}
.y110{bottom:129.443146pt;}
.y169{bottom:129.612488pt;}
.y5b{bottom:129.635155pt;}
.y2c{bottom:134.436729pt;}
.yd1{bottom:139.767662pt;}
.y140{bottom:143.802530pt;}
.y10f{bottom:145.383943pt;}
.y2b{bottom:150.377526pt;}
.yd0{bottom:155.709792pt;}
.y168{bottom:156.181816pt;}
.y5a{bottom:156.203150pt;}
.y13f{bottom:159.744661pt;}
.y10e{bottom:161.324740pt;}
.y2a{bottom:166.318323pt;}
.ycf{bottom:171.650589pt;}
.y167{bottom:172.122613pt;}
.y13e{bottom:175.685458pt;}
.y59{bottom:176.056143pt;}
.y10d{bottom:177.265537pt;}
.y58{bottom:178.940287pt;}
.y29{bottom:182.259120pt;}
.yce{bottom:187.591386pt;}
.y10c{bottom:193.206334pt;}
.y57{bottom:194.866417pt;}
.y28{bottom:198.201250pt;}
.y166{bottom:198.690608pt;}
.ycd{bottom:203.532183pt;}
.y13d{bottom:207.637722pt;}
.y10b{bottom:209.148464pt;}
.y27{bottom:214.142047pt;}
.y165{bottom:214.631405pt;}
.ycc{bottom:219.472980pt;}
.y56{bottom:223.450513pt;}
.y10a{bottom:225.089261pt;}
.y55{bottom:226.748011pt;}
.y26{bottom:230.082844pt;}
.y9a{bottom:230.948221pt;}
.ycb{bottom:235.413777pt;}
.y13c{bottom:236.789846pt;}
.y109{bottom:241.030058pt;}
.y164{bottom:241.199400pt;}
.y54{bottom:242.688808pt;}
.y99{bottom:246.890351pt;}
.yca{bottom:251.355908pt;}
.y13b{bottom:253.262670pt;}
.y108{bottom:256.970855pt;}
.y163{bottom:257.141530pt;}
.y53{bottom:258.630938pt;}
.y25{bottom:261.964438pt;}
.y98{bottom:262.831148pt;}
.yc9{bottom:267.296705pt;}
.y13a{bottom:269.734160pt;}
.y107{bottom:272.911652pt;}
.y162{bottom:273.082327pt;}
.y52{bottom:274.571735pt;}
.y24{bottom:277.905235pt;}
.y97{bottom:278.771945pt;}
.yc8{bottom:283.237502pt;}
.y139{bottom:286.206984pt;}
.y87{bottom:288.628438pt;}
.y106{bottom:288.852449pt;}
.y96{bottom:294.712742pt;}
.y51{bottom:299.091628pt;}
.yc7{bottom:299.178299pt;}
.y161{bottom:299.650322pt;}
.y138{bottom:302.679807pt;}
.y86{bottom:304.569235pt;}
.y105{bottom:304.794580pt;}
.y23{bottom:309.788163pt;}
.y95{bottom:310.653539pt;}
.yc6{bottom:315.119096pt;}
.y160{bottom:315.591119pt;}
.y85{bottom:320.511365pt;}
.y22{bottom:325.728960pt;}
.y94{bottom:326.594336pt;}
.yc5{bottom:331.059893pt;}
.y15f{bottom:331.531916pt;}
.y104{bottom:335.676124pt;}
.y50{bottom:336.278820pt;}
.y84{bottom:336.452162pt;}
.y21{bottom:341.669757pt;}
.y93{bottom:342.536467pt;}
.y137{bottom:343.739193pt;}
.yc4{bottom:347.002023pt;}
.y83{bottom:352.392959pt;}
.y20{bottom:357.610554pt;}
.y15e{bottom:358.101245pt;}
.y92{bottom:358.477264pt;}
.y136{bottom:359.679990pt;}
.yc3{bottom:362.942820pt;}
.y4f{bottom:365.502948pt;}
.y82{bottom:368.333756pt;}
.y1f{bottom:373.551351pt;}
.y15d{bottom:374.042042pt;}
.y4e{bottom:376.056809pt;}
.yf8{bottom:376.983522pt;}
.yc2{bottom:378.883617pt;}
.y4d{bottom:383.333173pt;}
.y81{bottom:384.274553pt;}
.y91{bottom:389.358808pt;}
.y1e{bottom:389.493481pt;}
.y135{bottom:391.561584pt;}
.yf7{bottom:392.924319pt;}
.yc1{bottom:394.824414pt;}
.y103{bottom:395.547117pt;}
.y4c{bottom:399.275303pt;}
.y80{bottom:400.215350pt;}
.y15c{bottom:400.610037pt;}
.y134{bottom:407.503715pt;}
.yf6{bottom:408.865116pt;}
.yc0{bottom:410.765211pt;}
.y102{bottom:411.487914pt;}
.y4b{bottom:415.216100pt;}
.y7f{bottom:416.157481pt;}
.y1d{bottom:421.375075pt;}
.yf5{bottom:424.805913pt;}
.ybf{bottom:426.706008pt;}
.y15b{bottom:427.178032pt;}
.y101{bottom:427.428711pt;}
.y4a{bottom:431.156897pt;}
.y7e{bottom:432.098278pt;}
.y90{bottom:433.289004pt;}
.y1c{bottom:437.315872pt;}
.y133{bottom:439.385309pt;}
.yf4{bottom:440.746710pt;}
.ybe{bottom:442.648139pt;}
.y15a{bottom:443.120162pt;}
.y100{bottom:443.370841pt;}
.y7d{bottom:448.039075pt;}
.y8f{bottom:449.229801pt;}
.yf3{bottom:452.107278pt;}
.y1b{bottom:453.256669pt;}
.y132{bottom:455.326106pt;}
.yf2{bottom:456.688841pt;}
.ybd{bottom:458.588936pt;}
.y7c{bottom:463.979872pt;}
.y8e{bottom:465.170598pt;}
.y49{bottom:465.621287pt;}
.y1a{bottom:469.197466pt;}
.y159{bottom:469.688157pt;}
.y131{bottom:471.266903pt;}
.yf1{bottom:472.629638pt;}
.ybc{bottom:474.529733pt;}
.yff{bottom:475.252435pt;}
.y7b{bottom:479.920669pt;}
.y8d{bottom:481.112728pt;}
.y19{bottom:485.139596pt;}
.y158{bottom:485.628954pt;}
.y130{bottom:487.207700pt;}
.ybb{bottom:490.470530pt;}
.yfe{bottom:491.193232pt;}
.y48{bottom:494.773411pt;}
.y7a{bottom:495.862799pt;}
.y8c{bottom:497.053525pt;}
.yf0{bottom:499.197633pt;}
.y18{bottom:501.080393pt;}
.y157{bottom:501.569751pt;}
.y12f{bottom:503.149830pt;}
.yba{bottom:506.411327pt;}
.yfd{bottom:507.134029pt;}
.y47{bottom:511.246235pt;}
.y79{bottom:511.803596pt;}
.y8b{bottom:512.994322pt;}
.yef{bottom:515.138430pt;}
.y12e{bottom:519.090627pt;}
.yb9{bottom:522.352124pt;}
.yfc{bottom:523.074826pt;}
.y78{bottom:527.744393pt;}
.y156{bottom:528.139080pt;}
.y8a{bottom:528.935119pt;}
.y17{bottom:532.700641pt;}
.y12d{bottom:535.031424pt;}
.yb8{bottom:538.294254pt;}
.yee{bottom:541.706425pt;}
.y77{bottom:543.685190pt;}
.y155{bottom:544.079877pt;}
.y12c{bottom:550.972221pt;}
.yfb{bottom:552.300288pt;}
.yb7{bottom:554.235051pt;}
.y46{bottom:554.817747pt;}
.yed{bottom:557.648555pt;}
.y76{bottom:559.625987pt;}
.y89{bottom:560.555367pt;}
.y12b{bottom:566.913018pt;}
.yfa{bottom:568.241085pt;}
.yb6{bottom:570.175848pt;}
.y154{bottom:570.647872pt;}
.y45{bottom:570.758544pt;}
.yec{bottom:573.589352pt;}
.y75{bottom:575.566784pt;}
.y16{bottom:576.630837pt;}
.y12a{bottom:582.853815pt;}
.yb5{bottom:586.116645pt;}
.yeb{bottom:589.530149pt;}
.y15{bottom:591.242235pt;}
.y153{bottom:597.215867pt;}
.y129{bottom:598.795946pt;}
.y44{bottom:600.057342pt;}
.yb4{bottom:602.057442pt;}
.y88{bottom:607.068359pt;}
.y74{bottom:607.449712pt;}
.yf9{bottom:608.020407pt;}
.y152{bottom:613.156664pt;}
.y14{bottom:613.415343pt;}
.y128{bottom:614.736743pt;}
.yb3{bottom:617.998239pt;}
.yea{bottom:618.680940pt;}
.y73{bottom:623.390509pt;}
.ye8{bottom:627.793395pt;}
.y13{bottom:628.028074pt;}
.y43{bottom:629.209466pt;}
.ye9{bottom:632.974988pt;}
.yb2{bottom:633.940369pt;}
.y72{bottom:639.331306pt;}
.y151{bottom:639.725992pt;}
.y12{bottom:642.639471pt;}
.y42{bottom:645.682290pt;}
.y127{bottom:646.618337pt;}
.yb1{bottom:649.881166pt;}
.y71{bottom:655.272103pt;}
.y150{bottom:655.666789pt;}
.y11{bottom:657.252202pt;}
.y41{bottom:662.153780pt;}
.y126{bottom:662.559134pt;}
.ye7{bottom:665.748626pt;}
.yb0{bottom:665.821963pt;}
.y70{bottom:671.212900pt;}
.y14f{bottom:671.607586pt;}
.y10{bottom:671.864932pt;}
.y125{bottom:678.499931pt;}
.y40{bottom:678.626604pt;}
.yaf{bottom:681.762760pt;}
.yf{bottom:686.477663pt;}
.y6f{bottom:687.155030pt;}
.ye6{bottom:692.316621pt;}
.y124{bottom:694.442061pt;}
.y3f{bottom:695.099427pt;}
.yae{bottom:697.703557pt;}
.ye{bottom:701.090393pt;}
.y6e{bottom:703.095827pt;}
.y14e{bottom:703.227834pt;}
.ye5{bottom:708.257418pt;}
.y123{bottom:710.382858pt;}
.y3e{bottom:711.570917pt;}
.yad{bottom:713.644354pt;}
.yd{bottom:715.703124pt;}
.y6d{bottom:719.036624pt;}
.y122{bottom:726.323655pt;}
.y3d{bottom:728.043741pt;}
.yac{bottom:729.586485pt;}
.yc{bottom:730.315855pt;}
.ye4{bottom:737.482880pt;}
.y121{bottom:742.264452pt;}
.y3c{bottom:744.516565pt;}
.yb{bottom:744.928585pt;}
.yab{bottom:745.527282pt;}
.y6c{bottom:750.918218pt;}
.y120{bottom:758.205249pt;}
.ya{bottom:759.541316pt;}
.y3b{bottom:760.988055pt;}
.yaa{bottom:761.468079pt;}
.y14d{bottom:763.098827pt;}
.y6b{bottom:766.859015pt;}
.y11f{bottom:774.147379pt;}
.y9{bottom:774.154046pt;}
.ye3{bottom:775.210099pt;}
.ya9{bottom:777.408876pt;}
.y14c{bottom:779.039624pt;}
.y6a{bottom:782.801145pt;}
.y11e{bottom:790.088176pt;}
.ye2{bottom:791.150896pt;}
.y3a{bottom:791.202899pt;}
.ya8{bottom:793.349673pt;}
.y8{bottom:794.976421pt;}
.y14b{bottom:794.980421pt;}
.y69{bottom:798.741942pt;}
.y11d{bottom:806.028973pt;}
.ye1{bottom:807.091693pt;}
.y39{bottom:807.143696pt;}
.ya7{bottom:809.290470pt;}
.y14a{bottom:810.921218pt;}
.y68{bottom:814.682739pt;}
.y11c{bottom:821.969770pt;}
.ye0{bottom:823.032490pt;}
.y38{bottom:823.084493pt;}
.ya6{bottom:825.232600pt;}
.y149{bottom:826.863348pt;}
.y7{bottom:829.940836pt;}
.y67{bottom:830.623536pt;}
.ydf{bottom:838.973287pt;}
.y37{bottom:839.025290pt;}
.ya5{bottom:841.173397pt;}
.y148{bottom:842.804145pt;}
.y6{bottom:844.553566pt;}
.y11b{bottom:853.851364pt;}
.yde{bottom:854.915418pt;}
.y36{bottom:854.966087pt;}
.ya4{bottom:857.114194pt;}
.y147{bottom:858.744942pt;}
.y5{bottom:859.164963pt;}
.y66{bottom:862.243784pt;}
.y11a{bottom:869.793495pt;}
.ydd{bottom:870.856215pt;}
.y35{bottom:870.906884pt;}
.ya3{bottom:873.054991pt;}
.y146{bottom:874.685739pt;}
.y119{bottom:885.734292pt;}
.ydc{bottom:886.797012pt;}
.y34{bottom:886.849014pt;}
.y4{bottom:887.062358pt;}
.ya2{bottom:888.995788pt;}
.y145{bottom:890.626536pt;}
.y64{bottom:900.328355pt;}
.y118{bottom:901.675089pt;}
.ydb{bottom:902.737809pt;}
.y33{bottom:902.789811pt;}
.y65{bottom:904.564567pt;}
.ya1{bottom:904.936585pt;}
.y63{bottom:909.440810pt;}
.y3{bottom:912.302287pt;}
.y117{bottom:917.615886pt;}
.yda{bottom:918.678606pt;}
.y32{bottom:918.730608pt;}
.ya0{bottom:920.878716pt;}
.y144{bottom:921.509414pt;}
.y116{bottom:933.556683pt;}
.yd9{bottom:934.619403pt;}
.y31{bottom:934.671405pt;}
.y9f{bottom:936.819513pt;}
.y2{bottom:941.527748pt;}
.y62{bottom:944.183881pt;}
.y115{bottom:949.497480pt;}
.yd8{bottom:950.561533pt;}
.y30{bottom:950.612202pt;}
.y9e{bottom:952.760310pt;}
.y61{bottom:965.439610pt;}
.yd7{bottom:966.502330pt;}
.y9d{bottom:968.701107pt;}
.y1{bottom:970.753209pt;}
.y2f{bottom:975.133428pt;}
.y114{bottom:981.380407pt;}
.yd6{bottom:982.443127pt;}
.y9c{bottom:985.173930pt;}
.y60{bottom:986.694006pt;}
.y113{bottom:997.321204pt;}
.yd5{bottom:998.383924pt;}
.y2e{bottom:1009.808495pt;}
.y5f{bottom:1009.964503pt;}
.y5e{bottom:1013.262001pt;}
.yd4{bottom:1014.856748pt;}
.y9b{bottom:1015.387441pt;}
.h13{height:17.694462pt;}
.h12{height:26.185604pt;}
.h5{height:29.746025pt;}
.h6{height:33.476234pt;}
.h4{height:34.002289pt;}
.h7{height:34.241405pt;}
.h18{height:37.195566pt;}
.h9{height:39.852393pt;}
.he{height:39.852659pt;}
.ha{height:43.636400pt;}
.h3{height:44.634978pt;}
.hc{height:45.466568pt;}
.hb{height:45.471901pt;}
.hd{height:47.177559pt;}
.h1a{height:48.814974pt;}
.h14{height:49.833692pt;}
.h11{height:50.477190pt;}
.h10{height:53.042385pt;}
.h1c{height:53.287731pt;}
.h8{height:53.561825pt;}
.h1b{height:58.178642pt;}
.h17{height:59.357368pt;}
.h2{height:64.274040pt;}
.h16{height:73.911071pt;}
.h15{height:75.800857pt;}
.hf{height:76.288348pt;}
.h19{height:85.697912pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:95.987999pt;}
.x2{left:101.556278pt;}
.x2d{left:102.629665pt;}
.x23{left:112.224811pt;}
.xc{left:115.914329pt;}
.x2e{left:123.294698pt;}
.x1{left:126.620197pt;}
.xa{left:129.198993pt;}
.x9{left:147.630581pt;}
.x2f{left:152.128139pt;}
.x1b{left:161.157924pt;}
.x13{left:167.275563pt;}
.x14{left:191.366101pt;}
.x4{left:225.782489pt;}
.x10{left:229.897361pt;}
.x5{left:232.849509pt;}
.x6{left:243.706051pt;}
.x7{left:246.211510pt;}
.x20{left:256.004000pt;}
.x24{left:262.316315pt;}
.xe{left:265.319132pt;}
.x2c{left:267.608580pt;}
.xf{left:268.773971pt;}
.x28{left:274.804940pt;}
.x12{left:282.894677pt;}
.x11{left:287.580245pt;}
.x3{left:293.105855pt;}
.x22{left:302.412987pt;}
.x15{left:308.850642pt;}
.x21{left:311.496107pt;}
.x17{left:318.709801pt;}
.x29{left:325.387469pt;}
.x1f{left:327.120889pt;}
.x2b{left:340.074870pt;}
.x2a{left:343.395036pt;}
.x8{left:369.793689pt;}
.x18{left:373.792555pt;}
.xd{left:385.941333pt;}
.x1c{left:391.438771pt;}
.x19{left:392.657499pt;}
.x1a{left:399.171158pt;}
.x1d{left:411.897127pt;}
.x1e{left:465.533142pt;}
.x26{left:470.050701pt;}
.x25{left:502.221643pt;}
.x16{left:521.303931pt;}
.x27{left:625.453138pt;}
}




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