
    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_2dbc940ac608fbdab68da661.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_4a029c59117883b1c6188cf2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_59a1305bb4d6a47d7bff4166.woff')format("woff");}.ff3{font-family:ff3;line-height:0.852000;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_2e332ba285cf59a44e1befef.woff')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_24f0a26ce3c8338c6d5489f6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_85232000f4862d549bdcbd5f.woff')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_be92725f13ebb37a71fba2a9.woff')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_8d1967fc1e47573a36e29bce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.683000;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_0a03ba746fd39f0e19272b85.woff')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_e735ed266811faeb0bb4d75e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.714000;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_2b069001cb5d11a3b20a400f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_11f82f94a4190e7bacb7c04a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_a8a16bcd3f43c8dfe807a3f6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_fa3a94ba0f1c1c2774bda4c6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_8d1ffd1e4a55f405b2439634.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8c1d37757a165519601890fd.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f5a4aa06df77f181a7673ac8.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_28f4fe11d0e52ca10db3519c.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4ae1ac83503ef028724f66e6.woff')format("woff");}.ff13{font-family:ff13;line-height:1.676000;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_ce68210fb0e66044ad59e131.woff')format("woff");}.ff14{font-family:ff14;line-height:0.046000;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_3b32fcaf24fe9aea6729001f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.693000;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_a89660d0f5111453535ae855.woff')format("woff");}.ff16{font-family:ff16;line-height:0.735000;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_6d59d2d3d5c15751e83472b4.woff')format("woff");}.ff17{font-family:ff17;line-height:0.909000;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_aca98313b9020a2ef0f72b2b.woff')format("woff");}.ff18{font-family:ff18;line-height:0.706000;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_a40261bcfe2ba3e465aae32d.woff')format("woff");}.ff19{font-family:ff19;line-height:0.704000;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_5170e09c05e38bb633f922c7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.708000;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_fcb0ebf87070873aa32b344e.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.444000;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:ff1c;src:url('chunks/assets/font_84f1258023b0c8ccfa34e84b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.694000;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:ff1d;src:url('chunks/assets/font_f0ab235ea771c9b264ca84a0.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-15.714000px;}
.v2{vertical-align:-10.134000px;}
.v1{vertical-align:-8.970000px;}
.v4{vertical-align:-7.290000px;}
.v9{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.754000px;}
.v3{vertical-align:27.024000px;}
.v7{vertical-align:34.830000px;}
.v6{vertical-align:44.646000px;}
.va{vertical-align:55.422000px;}
.v8{vertical-align:71.730000px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000447px;}
.ls29{letter-spacing:0.001035px;}
.ls5c{letter-spacing:0.001870px;}
.ls33{letter-spacing:0.002245px;}
.ls58{letter-spacing:0.002682px;}
.ls25{letter-spacing:0.003239px;}
.ls54{letter-spacing:0.005414px;}
.ls6d{letter-spacing:0.005535px;}
.ls2{letter-spacing:0.007745px;}
.ls67{letter-spacing:0.008970px;}
.ls1f{letter-spacing:0.010615px;}
.ls68{letter-spacing:0.012178px;}
.ls69{letter-spacing:0.013212px;}
.ls4a{letter-spacing:0.014156px;}
.ls3d{letter-spacing:0.017164px;}
.ls48{letter-spacing:0.017304px;}
.ls6c{letter-spacing:0.017423px;}
.ls6a{letter-spacing:0.017467px;}
.ls6b{letter-spacing:0.018243px;}
.ls60{letter-spacing:0.019096px;}
.ls52{letter-spacing:0.019380px;}
.ls38{letter-spacing:0.019921px;}
.ls15{letter-spacing:0.021180px;}
.ls40{letter-spacing:0.021201px;}
.ls27{letter-spacing:0.022702px;}
.ls30{letter-spacing:0.023401px;}
.ls23{letter-spacing:0.024376px;}
.ls34{letter-spacing:0.024906px;}
.ls2b{letter-spacing:0.029844px;}
.lsc{letter-spacing:0.033153px;}
.ls6f{letter-spacing:0.065455px;}
.ls28{letter-spacing:2.290911px;}
.ls20{letter-spacing:2.356366px;}
.ls62{letter-spacing:2.984915px;}
.lsd{letter-spacing:2.990289px;}
.ls3e{letter-spacing:2.992307px;}
.ls9{letter-spacing:2.995289px;}
.ls21{letter-spacing:3.730912px;}
.ls26{letter-spacing:4.700056px;}
.ls31{letter-spacing:4.703907px;}
.lse{letter-spacing:4.704935px;}
.ls24{letter-spacing:4.706056px;}
.ls0{letter-spacing:5.023295px;}
.ls12{letter-spacing:5.344571px;}
.ls4{letter-spacing:5.350571px;}
.ls57{letter-spacing:7.134551px;}
.ls5b{letter-spacing:7.200006px;}
.ls8{letter-spacing:9.098189px;}
.ls3f{letter-spacing:10.042177px;}
.ls3b{letter-spacing:10.048177px;}
.ls37{letter-spacing:13.270183px;}
.ls18{letter-spacing:14.530921px;}
.ls56{letter-spacing:14.596376px;}
.ls2e{letter-spacing:15.054558px;}
.ls2a{letter-spacing:16.252571px;}
.ls61{letter-spacing:16.560014px;}
.ls36{letter-spacing:16.617617px;}
.ls10{letter-spacing:17.672742px;}
.ls44{letter-spacing:18.000015px;}
.ls5e{letter-spacing:18.065470px;}
.lsb{letter-spacing:18.130924px;}
.ls59{letter-spacing:18.195810px;}
.lsa{letter-spacing:18.196379px;}
.ls4f{letter-spacing:19.701835px;}
.ls46{letter-spacing:19.888571px;}
.ls5{letter-spacing:19.963653px;}
.ls1b{letter-spacing:20.029108px;}
.ls3c{letter-spacing:20.225471px;}
.ls4d{letter-spacing:20.290926px;}
.ls11{letter-spacing:20.635289px;}
.ls3a{letter-spacing:21.172478px;}
.ls1a{letter-spacing:21.665473px;}
.ls19{letter-spacing:21.730927px;}
.ls53{letter-spacing:21.734554px;}
.ls65{letter-spacing:22.385473px;}
.ls2c{letter-spacing:23.563656px;}
.ls5d{letter-spacing:23.629111px;}
.ls51{letter-spacing:24.021838px;}
.ls50{letter-spacing:24.087293px;}
.ls32{letter-spacing:24.218202px;}
.ls47{letter-spacing:24.938203px;}
.ls2d{letter-spacing:25.592749px;}
.ls49{letter-spacing:26.408056px;}
.ls2f{letter-spacing:26.901841px;}
.ls35{letter-spacing:27.166571px;}
.ls55{letter-spacing:27.294568px;}
.ls6e{letter-spacing:27.752750px;}
.ls5a{letter-spacing:28.800024px;}
.ls4e{letter-spacing:30.240025px;}
.ls14{letter-spacing:30.501844px;}
.ls13{letter-spacing:30.763662px;}
.ls1d{letter-spacing:31.745481px;}
.ls1{letter-spacing:32.398375px;}
.ls4c{letter-spacing:32.596391px;}
.ls3{letter-spacing:32.727300px;}
.ls64{letter-spacing:33.316391px;}
.ls7{letter-spacing:33.970937px;}
.ls41{letter-spacing:34.429120px;}
.ls4b{letter-spacing:34.887302px;}
.ls42{letter-spacing:35.149120px;}
.ls39{letter-spacing:36.654643px;}
.ls63{letter-spacing:37.701850px;}
.ls43{letter-spacing:38.029123px;}
.ls16{letter-spacing:38.160032px;}
.ls17{letter-spacing:39.600033px;}
.ls22{letter-spacing:68.727330px;}
.ls45{letter-spacing:138.347412px;}
.ls1e{letter-spacing:491.694955px;}
.ls5f{letter-spacing:782.902471px;}
.lsf{letter-spacing:1074.106177px;}
.ls66{letter-spacing:1123.954177px;}
.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;}
}
.ws30{word-spacing:-42.637126px;}
.wsc{word-spacing:-38.937826px;}
.ws54{word-spacing:-37.387668px;}
.ws31{word-spacing:-33.211407px;}
.ws4a{word-spacing:-33.192028px;}
.ws47{word-spacing:-32.544027px;}
.ws9c{word-spacing:-31.771663px;}
.ws70{word-spacing:-29.881822px;}
.ws84{word-spacing:-29.285335px;}
.ws42{word-spacing:-25.397521px;}
.ws11{word-spacing:-23.821106px;}
.ws62{word-spacing:-20.631290px;}
.wscc{word-spacing:-20.304017px;}
.ws5a{word-spacing:-20.107653px;}
.ws37{word-spacing:-18.864016px;}
.ws35{word-spacing:-18.183288px;}
.wscd{word-spacing:-17.620378px;}
.ws5b{word-spacing:-17.489469px;}
.wsb9{word-spacing:-17.358560px;}
.ws90{word-spacing:-17.227651px;}
.ws87{word-spacing:-16.834923px;}
.ws38{word-spacing:-16.376741px;}
.ws28{word-spacing:-16.311286px;}
.wsdb{word-spacing:-16.180377px;}
.ws5c{word-spacing:-15.787650px;}
.ws9a{word-spacing:-15.722195px;}
.wsd0{word-spacing:-15.460377px;}
.ws82{word-spacing:-15.394922px;}
.ws32{word-spacing:-14.936740px;}
.ws97{word-spacing:-14.740376px;}
.ws9f{word-spacing:-14.674921px;}
.ws1c{word-spacing:-14.609467px;}
.wsd2{word-spacing:-14.544012px;}
.ws20{word-spacing:-14.426194px;}
.wsd1{word-spacing:-14.210194px;}
.ws8c{word-spacing:-13.954921px;}
.ws1e{word-spacing:-13.889466px;}
.ws3c{word-spacing:-13.562193px;}
.wsb2{word-spacing:-13.514158px;}
.ws2e{word-spacing:-13.442427px;}
.ws7d{word-spacing:-13.431284px;}
.ws4c{word-spacing:-13.365829px;}
.wsd6{word-spacing:-13.169466px;}
.wsa4{word-spacing:-13.038556px;}
.ws98{word-spacing:-12.842193px;}
.wsd4{word-spacing:-12.645829px;}
.wsbe{word-spacing:-12.580374px;}
.ws2f{word-spacing:-12.514920px;}
.ws29{word-spacing:-12.449465px;}
.ws14{word-spacing:-12.367572px;}
.wsb4{word-spacing:-12.318556px;}
.ws3{word-spacing:-12.128469px;}
.ws81{word-spacing:-12.122192px;}
.ws3d{word-spacing:-11.794919px;}
.ws8{word-spacing:-11.769816px;}
.ws7e{word-spacing:-11.729464px;}
.wsba{word-spacing:-11.722919px;}
.wsd5{word-spacing:-11.657464px;}
.ws7a{word-spacing:-11.533101px;}
.ws24{word-spacing:-11.467646px;}
.wsa5{word-spacing:-11.336737px;}
.wsda{word-spacing:-11.271282px;}
.ws49{word-spacing:-11.205828px;}
.ws73{word-spacing:-11.172060px;}
.ws1d{word-spacing:-10.878555px;}
.ws1a{word-spacing:-10.813100px;}
.ws7f{word-spacing:-10.806554px;}
.wsa0{word-spacing:-10.747645px;}
.wsc4{word-spacing:-10.682191px;}
.wsbd{word-spacing:-10.616736px;}
.ws83{word-spacing:-10.485827px;}
.wsbb{word-spacing:-10.420372px;}
.ws33{word-spacing:-10.354918px;}
.ws55{word-spacing:-10.224009px;}
.wsc1{word-spacing:-10.093099px;}
.ws17{word-spacing:-9.976548px;}
.ws2c{word-spacing:-9.955645px;}
.ws6{word-spacing:-9.916772px;}
.ws40{word-spacing:-9.896736px;}
.ws12{word-spacing:-9.856996px;}
.ws5{word-spacing:-9.797221px;}
.ws9{word-spacing:-9.677670px;}
.wsb1{word-spacing:-9.569463px;}
.wsce{word-spacing:-9.504008px;}
.wsd{word-spacing:-9.438567px;}
.wsa1{word-spacing:-9.307644px;}
.ws4{word-spacing:-9.259240px;}
.ws13{word-spacing:-9.139689px;}
.wsbc{word-spacing:-9.045826px;}
.ws56{word-spacing:-8.980371px;}
.ws50{word-spacing:-8.587644px;}
.ws4b{word-spacing:-8.522189px;}
.ws3a{word-spacing:-8.456734px;}
.wscf{word-spacing:-8.260371px;}
.ws57{word-spacing:-8.253825px;}
.wsbf{word-spacing:-8.129461px;}
.wsca{word-spacing:-8.064007px;}
.ws16{word-spacing:-8.063728px;}
.ws59{word-spacing:-7.933098px;}
.ws58{word-spacing:-7.867643px;}
.wsc2{word-spacing:-7.802188px;}
.ws3b{word-spacing:-7.730188px;}
.ws85{word-spacing:-7.671279px;}
.ws3e{word-spacing:-7.468370px;}
.wse{word-spacing:-7.406197px;}
.wscb{word-spacing:-7.402915px;}
.wsaf{word-spacing:-7.344006px;}
.ws39{word-spacing:-7.317824px;}
.ws86{word-spacing:-7.278552px;}
.ws21{word-spacing:-7.252370px;}
.ws7{word-spacing:-7.226870px;}
.wsdd{word-spacing:-7.213097px;}
.ws92{word-spacing:-7.147642px;}
.ws91{word-spacing:-7.097270px;}
.wsc0{word-spacing:-7.082188px;}
.ws15{word-spacing:-7.047543px;}
.ws26{word-spacing:-6.951279px;}
.ws7b{word-spacing:-6.689460px;}
.wsb7{word-spacing:-6.558551px;}
.ws78{word-spacing:-6.552005px;}
.ws71{word-spacing:-6.509563px;}
.ws5d{word-spacing:-6.493096px;}
.ws27{word-spacing:-6.355642px;}
.ws76{word-spacing:-6.296733px;}
.wsc5{word-spacing:-6.231278px;}
.wsb{word-spacing:-5.792256px;}
.ws23{word-spacing:-5.773096px;}
.ws63{word-spacing:-5.657270px;}
.ws5e{word-spacing:-5.642187px;}
.ws8d{word-spacing:-5.511277px;}
.wsd3{word-spacing:-5.380368px;}
.ws10{word-spacing:-5.254275px;}
.wsa8{word-spacing:-5.242913px;}
.wsac{word-spacing:-5.053095px;}
.ws1f{word-spacing:-4.856731px;}
.ws9b{word-spacing:-4.791277px;}
.ws1b{word-spacing:-4.719277px;}
.ws8b{word-spacing:-4.595729px;}
.ws74{word-spacing:-4.536968px;}
.ws7c{word-spacing:-4.457458px;}
.ws19{word-spacing:-4.398549px;}
.ws9e{word-spacing:-4.231812px;}
.wsa6{word-spacing:-4.227180px;}
.ws77{word-spacing:-4.225812px;}
.ws89{word-spacing:-4.223270px;}
.ws95{word-spacing:-4.071276px;}
.ws34{word-spacing:-4.005822px;}
.ws2a{word-spacing:-3.874912px;}
.wsde{word-spacing:-3.809458px;}
.wsa3{word-spacing:-3.613094px;}
.ws6a{word-spacing:-3.580558px;}
.ws25{word-spacing:-3.547639px;}
.ws2b{word-spacing:-3.541094px;}
.ws75{word-spacing:-3.482185px;}
.wsdf{word-spacing:-3.475639px;}
.wsb6{word-spacing:-3.351276px;}
.ws6c{word-spacing:-3.335478px;}
.ws44{word-spacing:-3.285821px;}
.ws46{word-spacing:-3.154912px;}
.wsdc{word-spacing:-3.089457px;}
.wsae{word-spacing:-3.082912px;}
.ws3f{word-spacing:-3.024003px;}
.ws51{word-spacing:-3.017457px;}
.ws99{word-spacing:-2.705270px;}
.wsc8{word-spacing:-2.631275px;}
.wsa{word-spacing:-2.325271px;}
.ws94{word-spacing:-2.304002px;}
.wsc9{word-spacing:-2.238547px;}
.wsb3{word-spacing:-1.976729px;}
.ws6e{word-spacing:-1.488412px;}
.ws5f{word-spacing:-1.191274px;}
.ws60{word-spacing:-1.060365px;}
.wsb8{word-spacing:-0.988364px;}
.ws79{word-spacing:-0.707270px;}
.ws80{word-spacing:-0.701270px;}
.ws2{word-spacing:-0.071731px;}
.wsc3{word-spacing:-0.065455px;}
.ws4e{word-spacing:-0.052364px;}
.ws22{word-spacing:0.000000px;}
.ws52{word-spacing:0.013091px;}
.wsa2{word-spacing:0.183273px;}
.wsad{word-spacing:0.517091px;}
.ws8e{word-spacing:0.648001px;}
.wsaa{word-spacing:0.713455px;}
.wsa9{word-spacing:0.772364px;}
.wsc7{word-spacing:1.361456px;}
.wsc6{word-spacing:1.557819px;}
.ws93{word-spacing:2.107638px;}
.wsb5{word-spacing:2.277820px;}
.ws45{word-spacing:2.408729px;}
.wsb0{word-spacing:3.259639px;}
.ws4d{word-spacing:3.482185px;}
.ws61{word-spacing:3.613094px;}
.ws48{word-spacing:3.979640px;}
.ws8f{word-spacing:4.626730px;}
.wsa7{word-spacing:6.427642px;}
.ws96{word-spacing:6.612730px;}
.wsd7{word-spacing:8.496007px;}
.wsd8{word-spacing:10.066917px;}
.ws36{word-spacing:10.575028px;}
.ws9d{word-spacing:11.835648px;}
.ws68{word-spacing:12.140424px;}
.wsd9{word-spacing:14.851649px;}
.ws43{word-spacing:19.296016px;}
.wsab{word-spacing:19.518562px;}
.ws67{word-spacing:22.834279px;}
.ws1{word-spacing:23.312640px;}
.wsf{word-spacing:23.671138px;}
.ws72{word-spacing:24.633525px;}
.ws6d{word-spacing:26.904998px;}
.ws18{word-spacing:31.418178px;}
.ws2d{word-spacing:31.504255px;}
.ws0{word-spacing:32.227229px;}
.ws65{word-spacing:41.212926px;}
.ws41{word-spacing:48.816041px;}
.ws66{word-spacing:65.215180px;}
.ws6b{word-spacing:101.206068px;}
.ws6f{word-spacing:123.681694px;}
.ws64{word-spacing:524.172236px;}
.ws69{word-spacing:542.221689px;}
.ws4f{word-spacing:968.217534px;}
.ws53{word-spacing:980.311414px;}
.ws8a{word-spacing:1036.771456px;}
.ws88{word-spacing:1038.083774px;}
._1{margin-left:-8.056807px;}
._3{margin-left:-5.810227px;}
._6{margin-left:-4.172298px;}
._16{margin-left:-3.005945px;}
._2{margin-left:-1.936742px;}
._b{width:1.044408px;}
._0{width:2.685602px;}
._1f{width:3.880585px;}
._c{width:6.212298px;}
._2e{width:17.170868px;}
._19{width:18.207083px;}
._25{width:20.718990px;}
._e{width:21.794236px;}
._7{width:23.910240px;}
._9{width:25.763284px;}
._5{width:27.078347px;}
._4{width:28.895538px;}
._12{width:30.059092px;}
._d{width:31.681068px;}
._1b{width:33.643664px;}
._8{width:34.669848px;}
._f{width:35.733880px;}
._1a{width:36.912794px;}
._30{width:38.198591px;}
._14{width:39.338215px;}
._13{width:40.581852px;}
._a{width:42.285272px;}
._18{width:43.592764px;}
._2b{width:45.080887px;}
._2c{width:46.183418px;}
._11{width:47.813284px;}
._15{width:49.309306px;}
._22{width:51.093147px;}
._1c{width:52.336784px;}
._31{width:53.348365px;}
._2f{width:55.725191px;}
._23{width:58.462621px;}
._32{width:66.227191px;}
._33{width:68.514170px;}
._17{width:80.697600px;}
._10{width:94.684920px;}
._1e{width:96.941128px;}
._26{width:128.427572px;}
._24{width:203.510015px;}
._20{width:251.352103px;}
._29{width:253.209442px;}
._28{width:283.097242px;}
._1d{width:308.552984px;}
._2a{width:366.854851px;}
._27{width:382.683391px;}
._21{width:529.762637px;}
._2d{width:574.109993px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.168000px;}
.yad{bottom:108.000000px;}
.y69{bottom:108.381000px;}
.y25{bottom:123.913500px;}
.yac{bottom:128.323500px;}
.y68{bottom:128.704500px;}
.y13c{bottom:140.655000px;}
.y24{bottom:144.237000px;}
.yab{bottom:148.647000px;}
.yc7{bottom:157.359000px;}
.y47{bottom:159.907500px;}
.y13b{bottom:160.978500px;}
.y67{bottom:162.478500px;}
.yfe{bottom:162.588000px;}
.ye1{bottom:163.935000px;}
.yaa{bottom:168.972000px;}
.y23{bottom:178.011000px;}
.y46{bottom:180.231000px;}
.y13a{bottom:181.302000px;}
.ye0{bottom:184.260000px;}
.ya9{bottom:189.295500px;}
.yc6{bottom:191.133000px;}
.yfd{bottom:195.031500px;}
.y66{bottom:196.251000px;}
.y8c{bottom:197.121000px;}
.y22{bottom:198.334500px;}
.y45{bottom:200.554500px;}
.ya8{bottom:209.619000px;}
.y139{bottom:215.076000px;}
.y8b{bottom:217.446000px;}
.ydf{bottom:218.032500px;}
.y44{bottom:220.879500px;}
.yc5{bottom:224.905500px;}
.yfc{bottom:227.473500px;}
.y119{bottom:229.942500px;}
.y65{bottom:230.025000px;}
.y21{bottom:232.107000px;}
.ya7{bottom:235.165500px;}
.y138{bottom:235.399500px;}
.y8a{bottom:237.769500px;}
.y43{bottom:241.203000px;}
.ya6{bottom:246.390000px;}
.y118{bottom:250.266000px;}
.yde{bottom:251.806500px;}
.y20{bottom:252.432000px;}
.y137{bottom:255.723000px;}
.yc4{bottom:258.679500px;}
.yfb{bottom:261.738000px;}
.y64{bottom:262.677000px;}
.y42{bottom:272.092500px;}
.ydd{bottom:272.130000px;}
.y63{bottom:273.901500px;}
.y89{bottom:285.525000px;}
.y117{bottom:287.802000px;}
.y136{bottom:289.495500px;}
.ya5{bottom:290.551500px;}
.y1f{bottom:290.688000px;}
.yc3{bottom:292.452000px;}
.ydc{bottom:292.453500px;}
.yfa{bottom:292.627500px;}
.y88{bottom:303.457500px;}
.y116{bottom:308.125500px;}
.y135{bottom:309.820500px;}
.y1e{bottom:311.011500px;}
.yc2{bottom:312.775500px;}
.y41{bottom:315.906000px;}
.ya4{bottom:319.476000px;}
.y62{bottom:324.235500px;}
.ydb{bottom:329.215500px;}
.y87{bottom:329.599500px;}
.y134{bottom:330.144000px;}
.y1d{bottom:331.335000px;}
.yc1{bottom:333.100500px;}
.yf9{bottom:335.814000px;}
.y40{bottom:336.229500px;}
.y115{bottom:341.658000px;}
.y61{bottom:344.559000px;}
.y86{bottom:347.532000px;}
.yf8{bottom:356.137500px;}
.ya3{bottom:360.124500px;}
.y114{bottom:361.983000px;}
.y133{bottom:363.916500px;}
.yda{bottom:365.977500px;}
.yc0{bottom:366.684000px;}
.y1c{bottom:367.860000px;}
.y85{bottom:373.674000px;}
.y3f{bottom:374.485500px;}
.y60{bottom:378.331500px;}
.y132{bottom:384.241500px;}
.yd9{bottom:386.301000px;}
.yf7{bottom:390.402000px;}
.ya2{bottom:391.014000px;}
.y84{bottom:391.606500px;}
.y3e{bottom:394.809000px;}
.y113{bottom:395.515500px;}
.ybf{bottom:400.963500px;}
.y5f{bottom:412.105500px;}
.y83{bottom:417.748500px;}
.y131{bottom:418.014000px;}
.y1b{bottom:419.412000px;}
.yd8{bottom:420.075000px;}
.yf6{bottom:422.844000px;}
.y3d{bottom:428.583000px;}
.y112{bottom:429.048000px;}
.ybe{bottom:434.736000px;}
.y82{bottom:435.682500px;}
.y1a{bottom:437.344500px;}
.y130{bottom:438.337500px;}
.y5e{bottom:445.879500px;}
.ya1{bottom:446.443500px;}
.y3c{bottom:448.906500px;}
.y111{bottom:449.371500px;}
.yd7{bottom:453.849000px;}
.y19{bottom:455.277000px;}
.yf5{bottom:455.287500px;}
.y81{bottom:461.824500px;}
.ya0{bottom:466.767000px;}
.ybd{bottom:468.510000px;}
.y12f{bottom:472.111500px;}
.y18{bottom:473.211000px;}
.y5d{bottom:479.652000px;}
.y80{bottom:479.757000px;}
.y3b{bottom:482.680500px;}
.y110{bottom:482.905500px;}
.y9f{bottom:487.090500px;}
.yd6{bottom:487.621500px;}
.yf4{bottom:489.552000px;}
.y17{bottom:491.143500px;}
.y12e{bottom:492.435000px;}
.ybc{bottom:502.284000px;}
.y3a{bottom:503.004000px;}
.y10f{bottom:503.229000px;}
.y7f{bottom:505.899000px;}
.y9e{bottom:507.414000px;}
.y16{bottom:509.076000px;}
.y5c{bottom:509.689500px;}
.y12d{bottom:512.758500px;}
.yf3{bottom:520.441500px;}
.yd5{bottom:521.395500px;}
.y7e{bottom:523.831500px;}
.y15{bottom:527.008500px;}
.y9d{bottom:527.739000px;}
.ybb{bottom:536.056500px;}
.y10e{bottom:540.763500px;}
.y39{bottom:541.260000px;}
.yd4{bottom:541.719000px;}
.y14{bottom:544.941000px;}
.y12c{bottom:546.532500px;}
.y9c{bottom:548.062500px;}
.y7d{bottom:549.973500px;}
.y5b{bottom:550.336500px;}
.y10d{bottom:561.088500px;}
.y38{bottom:561.585000px;}
.y13{bottom:562.873500px;}
.yf2{bottom:563.626500px;}
.y12b{bottom:566.856000px;}
.y7c{bottom:567.906000px;}
.yba{bottom:569.830500px;}
.y5a{bottom:570.661500px;}
.y9b{bottom:579.465000px;}
.yd3{bottom:579.975000px;}
.y12{bottom:580.807500px;}
.y10c{bottom:581.412000px;}
.y37{bottom:581.908500px;}
.yf1{bottom:583.951500px;}
.y59{bottom:590.985000px;}
.y7b{bottom:591.015000px;}
.y11{bottom:598.740000px;}
.y12a{bottom:603.381000px;}
.yb9{bottom:603.603000px;}
.y58{bottom:611.308500px;}
.yd2{bottom:613.749000px;}
.y10{bottom:616.672500px;}
.y10b{bottom:617.935500px;}
.yf0{bottom:618.216000px;}
.y36{bottom:618.670500px;}
.y9a{bottom:625.338000px;}
.yf{bottom:634.605000px;}
.yb8{bottom:637.377000px;}
.y57{bottom:642.198000px;}
.y7a{bottom:645.727500px;}
.yef{bottom:650.658000px;}
.yd1{bottom:652.005000px;}
.ye{bottom:652.537500px;}
.y129{bottom:654.933000px;}
.y35{bottom:655.432500px;}
.y99{bottom:659.112000px;}
.y10a{bottom:669.375000px;}
.yd{bottom:670.470000px;}
.yb7{bottom:671.149500px;}
.y128{bottom:675.256500px;}
.y34{bottom:675.756000px;}
.y56{bottom:679.320000px;}
.y98{bottom:679.435500px;}
.yd0{bottom:682.894500px;}
.yee{bottom:683.100000px;}
.yc{bottom:688.404000px;}
.y109{bottom:689.698500px;}
.y79{bottom:701.506500px;}
.yb6{bottom:704.923500px;}
.yb{bottom:706.336500px;}
.y33{bottom:706.645500px;}
.y127{bottom:709.029000px;}
.y97{bottom:713.209500px;}
.yed{bottom:717.364500px;}
.y78{bottom:721.830000px;}
.y108{bottom:723.231000px;}
.ya{bottom:724.269000px;}
.yb5{bottom:725.247000px;}
.ycf{bottom:726.708000px;}
.y126{bottom:729.354000px;}
.y55{bottom:735.862500px;}
.y77{bottom:742.153500px;}
.y32{bottom:743.767500px;}
.yec{bottom:745.407000px;}
.y96{bottom:746.982000px;}
.yce{bottom:747.031500px;}
.y9{bottom:751.543500px;}
.yb4{bottom:756.136500px;}
.y54{bottom:756.186000px;}
.y107{bottom:756.765000px;}
.y76{bottom:762.478500px;}
.y125{bottom:763.126500px;}
.yeb{bottom:765.730500px;}
.y95{bottom:767.305500px;}
.y75{bottom:782.802000px;}
.y124{bottom:783.450000px;}
.y53{bottom:784.719000px;}
.ycd{bottom:785.289000px;}
.y106{bottom:790.297500px;}
.y31{bottom:795.319500px;}
.yea{bottom:796.620000px;}
.y94{bottom:798.709500px;}
.yb3{bottom:799.950000px;}
.y74{bottom:803.125500px;}
.y123{bottom:803.775000px;}
.y52{bottom:805.042500px;}
.y8{bottom:811.815000px;}
.y30{bottom:815.643000px;}
.ycc{bottom:819.061500px;}
.y73{bottom:823.449000px;}
.y105{bottom:823.830000px;}
.y93{bottom:832.617000px;}
.y51{bottom:833.577000px;}
.yb2{bottom:833.724000px;}
.ye9{bottom:833.742000px;}
.y122{bottom:837.547500px;}
.y72{bottom:843.772500px;}
.y7{bottom:848.208000px;}
.ycb{bottom:852.835500px;}
.y50{bottom:853.900500px;}
.y104{bottom:857.002500px;}
.y121{bottom:857.871000px;}
.y2f{bottom:858.094500px;}
.y92{bottom:864.535500px;}
.yb1{bottom:867.496500px;}
.y6{bottom:869.130000px;}
.y120{bottom:878.196000px;}
.y2e{bottom:878.418000px;}
.y71{bottom:879.270000px;}
.y4f{bottom:882.433500px;}
.yca{bottom:886.608000px;}
.y5{bottom:890.050500px;}
.ye8{bottom:893.451000px;}
.y103{bottom:894.538500px;}
.y91{bottom:897.567000px;}
.y2d{bottom:898.743000px;}
.yb0{bottom:901.270500px;}
.y4e{bottom:902.757000px;}
.y4{bottom:910.972500px;}
.y11f{bottom:911.968500px;}
.ye7{bottom:913.774500px;}
.y2c{bottom:919.066500px;}
.yc9{bottom:924.865500px;}
.y70{bottom:926.145000px;}
.y102{bottom:928.071000px;}
.y90{bottom:930.598500px;}
.y4d{bottom:931.290000px;}
.y3{bottom:931.894500px;}
.y11e{bottom:932.292000px;}
.ye6{bottom:934.098000px;}
.yaf{bottom:935.043000px;}
.y6f{bottom:946.470000px;}
.y2b{bottom:949.470000px;}
.y4c{bottom:951.613500px;}
.y11d{bottom:952.617000px;}
.ye5{bottom:954.423000px;}
.yc8{bottom:954.903000px;}
.yae{bottom:955.368000px;}
.y101{bottom:961.603500px;}
.y8f{bottom:963.631500px;}
.y6e{bottom:966.793500px;}
.ye4{bottom:974.746500px;}
.y2{bottom:977.221500px;}
.y4b{bottom:980.146500px;}
.y11c{bottom:986.389500px;}
.y6d{bottom:987.117000px;}
.y2a{bottom:989.140500px;}
.ye3{bottom:995.070000px;}
.y100{bottom:995.137500px;}
.y8e{bottom:995.550000px;}
.y1{bottom:998.143500px;}
.y4a{bottom:1000.471500px;}
.y11b{bottom:1006.713000px;}
.y6c{bottom:1007.440500px;}
.y29{bottom:1009.464000px;}
.y13d{bottom:1022.914500px;}
.y8d{bottom:1026.439500px;}
.y11a{bottom:1027.038000px;}
.y6b{bottom:1027.764000px;}
.y49{bottom:1029.004500px;}
.ye2{bottom:1029.654000px;}
.yff{bottom:1032.672000px;}
.y28{bottom:1043.238000px;}
.y48{bottom:1053.786000px;}
.y6a{bottom:1062.352500px;}
.y27{bottom:1063.561500px;}
.h4{height:41.783144px;}
.hf{height:44.831700px;}
.h3{height:44.832000px;}
.h5{height:44.891476px;}
.h16{height:45.490947px;}
.h8{height:46.865494px;}
.h7{height:49.156405px;}
.h9{height:50.283571px;}
.h2{height:51.287808px;}
.hb{height:57.897908px;}
.h11{height:59.613450px;}
.hc{height:59.619450px;}
.h13{height:61.167908px;}
.ha{height:62.889450px;}
.h6{height:64.643977px;}
.h1{height:72.614557px;}
.hd{height:93.736950px;}
.he{height:94.054405px;}
.h12{height:94.060405px;}
.h15{height:102.281494px;}
.h14{height:102.287494px;}
.h10{height:116.621476px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:108.000000px;}
.x22{left:116.136000px;}
.x1f{left:128.070000px;}
.xf{left:131.386500px;}
.xd{left:133.404000px;}
.x23{left:141.496500px;}
.xb{left:148.909500px;}
.x1b{left:155.977500px;}
.x18{left:164.689500px;}
.x1{left:168.934500px;}
.xa{left:171.319500px;}
.x12{left:194.916000px;}
.x2{left:247.402500px;}
.x17{left:268.725000px;}
.x1e{left:272.320500px;}
.x11{left:312.615000px;}
.x20{left:322.744500px;}
.x7{left:339.066000px;}
.x19{left:352.701000px;}
.x6{left:365.334000px;}
.x4{left:370.497000px;}
.x14{left:375.390000px;}
.x15{left:376.626000px;}
.x5{left:378.982500px;}
.x10{left:394.809000px;}
.x1c{left:397.575000px;}
.x8{left:400.606500px;}
.x21{left:407.271000px;}
.x3{left:423.649500px;}
.x9{left:426.130500px;}
.x1d{left:444.549000px;}
.x16{left:447.099000px;}
.x24{left:450.865500px;}
.xe{left:454.932000px;}
.x13{left:467.967000px;}
.x1a{left:498.192000px;}
@media print{
.vb{vertical-align:-13.968000pt;}
.v2{vertical-align:-9.008000pt;}
.v1{vertical-align:-7.973333pt;}
.v4{vertical-align:-6.480000pt;}
.v9{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.114667pt;}
.v3{vertical-align:24.021333pt;}
.v7{vertical-align:30.960000pt;}
.v6{vertical-align:39.685333pt;}
.va{vertical-align:49.264000pt;}
.v8{vertical-align:63.760000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000398pt;}
.ls29{letter-spacing:0.000920pt;}
.ls5c{letter-spacing:0.001662pt;}
.ls33{letter-spacing:0.001996pt;}
.ls58{letter-spacing:0.002384pt;}
.ls25{letter-spacing:0.002879pt;}
.ls54{letter-spacing:0.004813pt;}
.ls6d{letter-spacing:0.004920pt;}
.ls2{letter-spacing:0.006884pt;}
.ls67{letter-spacing:0.007973pt;}
.ls1f{letter-spacing:0.009436pt;}
.ls68{letter-spacing:0.010825pt;}
.ls69{letter-spacing:0.011744pt;}
.ls4a{letter-spacing:0.012583pt;}
.ls3d{letter-spacing:0.015257pt;}
.ls48{letter-spacing:0.015381pt;}
.ls6c{letter-spacing:0.015487pt;}
.ls6a{letter-spacing:0.015526pt;}
.ls6b{letter-spacing:0.016216pt;}
.ls60{letter-spacing:0.016974pt;}
.ls52{letter-spacing:0.017227pt;}
.ls38{letter-spacing:0.017708pt;}
.ls15{letter-spacing:0.018826pt;}
.ls40{letter-spacing:0.018845pt;}
.ls27{letter-spacing:0.020180pt;}
.ls30{letter-spacing:0.020801pt;}
.ls23{letter-spacing:0.021668pt;}
.ls34{letter-spacing:0.022139pt;}
.ls2b{letter-spacing:0.026528pt;}
.lsc{letter-spacing:0.029470pt;}
.ls6f{letter-spacing:0.058182pt;}
.ls28{letter-spacing:2.036365pt;}
.ls20{letter-spacing:2.094547pt;}
.ls62{letter-spacing:2.653258pt;}
.lsd{letter-spacing:2.658034pt;}
.ls3e{letter-spacing:2.659828pt;}
.ls9{letter-spacing:2.662479pt;}
.ls21{letter-spacing:3.316366pt;}
.ls26{letter-spacing:4.177828pt;}
.ls31{letter-spacing:4.181251pt;}
.lse{letter-spacing:4.182164pt;}
.ls24{letter-spacing:4.183161pt;}
.ls0{letter-spacing:4.465151pt;}
.ls12{letter-spacing:4.750730pt;}
.ls4{letter-spacing:4.756063pt;}
.ls57{letter-spacing:6.341823pt;}
.ls5b{letter-spacing:6.400005pt;}
.ls8{letter-spacing:8.087279pt;}
.ls3f{letter-spacing:8.926379pt;}
.ls3b{letter-spacing:8.931713pt;}
.ls37{letter-spacing:11.795718pt;}
.ls18{letter-spacing:12.916374pt;}
.ls56{letter-spacing:12.974556pt;}
.ls2e{letter-spacing:13.381829pt;}
.ls2a{letter-spacing:14.446730pt;}
.ls61{letter-spacing:14.720012pt;}
.ls36{letter-spacing:14.771215pt;}
.ls10{letter-spacing:15.709104pt;}
.ls44{letter-spacing:16.000013pt;}
.ls5e{letter-spacing:16.058195pt;}
.lsb{letter-spacing:16.116377pt;}
.ls59{letter-spacing:16.174053pt;}
.lsa{letter-spacing:16.174559pt;}
.ls4f{letter-spacing:17.512742pt;}
.ls46{letter-spacing:17.678730pt;}
.ls5{letter-spacing:17.745469pt;}
.ls1b{letter-spacing:17.803651pt;}
.ls3c{letter-spacing:17.978197pt;}
.ls4d{letter-spacing:18.036379pt;}
.ls11{letter-spacing:18.342479pt;}
.ls3a{letter-spacing:18.819980pt;}
.ls1a{letter-spacing:19.258198pt;}
.ls19{letter-spacing:19.316380pt;}
.ls53{letter-spacing:19.319603pt;}
.ls65{letter-spacing:19.898198pt;}
.ls2c{letter-spacing:20.945472pt;}
.ls5d{letter-spacing:21.003654pt;}
.ls51{letter-spacing:21.352745pt;}
.ls50{letter-spacing:21.410927pt;}
.ls32{letter-spacing:21.527291pt;}
.ls47{letter-spacing:22.167291pt;}
.ls2d{letter-spacing:22.749110pt;}
.ls49{letter-spacing:23.473828pt;}
.ls2f{letter-spacing:23.912747pt;}
.ls35{letter-spacing:24.148063pt;}
.ls55{letter-spacing:24.261838pt;}
.ls6e{letter-spacing:24.669111pt;}
.ls5a{letter-spacing:25.600021pt;}
.ls4e{letter-spacing:26.880022pt;}
.ls14{letter-spacing:27.112750pt;}
.ls13{letter-spacing:27.345477pt;}
.ls1d{letter-spacing:28.218205pt;}
.ls1{letter-spacing:28.798556pt;}
.ls4c{letter-spacing:28.974570pt;}
.ls3{letter-spacing:29.090933pt;}
.ls64{letter-spacing:29.614570pt;}
.ls7{letter-spacing:30.196389pt;}
.ls41{letter-spacing:30.603662pt;}
.ls4b{letter-spacing:31.010935pt;}
.ls42{letter-spacing:31.243662pt;}
.ls39{letter-spacing:32.581905pt;}
.ls63{letter-spacing:33.512755pt;}
.ls43{letter-spacing:33.803665pt;}
.ls16{letter-spacing:33.920028pt;}
.ls17{letter-spacing:35.200029pt;}
.ls22{letter-spacing:61.090960pt;}
.ls45{letter-spacing:122.975477pt;}
.ls1e{letter-spacing:437.062182pt;}
.ls5f{letter-spacing:695.913307pt;}
.lsf{letter-spacing:954.761046pt;}
.ls66{letter-spacing:999.070379pt;}
.ws30{word-spacing:-37.899668pt;}
.wsc{word-spacing:-34.611401pt;}
.ws54{word-spacing:-33.233482pt;}
.ws31{word-spacing:-29.521250pt;}
.ws4a{word-spacing:-29.504025pt;}
.ws47{word-spacing:-28.928024pt;}
.ws9c{word-spacing:-28.241478pt;}
.ws70{word-spacing:-26.561620pt;}
.ws84{word-spacing:-26.031409pt;}
.ws42{word-spacing:-22.575574pt;}
.ws11{word-spacing:-21.174316pt;}
.ws62{word-spacing:-18.338924pt;}
.wscc{word-spacing:-18.048015pt;}
.ws5a{word-spacing:-17.873469pt;}
.ws37{word-spacing:-16.768014pt;}
.ws35{word-spacing:-16.162923pt;}
.wscd{word-spacing:-15.662559pt;}
.ws5b{word-spacing:-15.546195pt;}
.wsb9{word-spacing:-15.429831pt;}
.ws90{word-spacing:-15.313467pt;}
.ws87{word-spacing:-14.964376pt;}
.ws38{word-spacing:-14.557103pt;}
.ws28{word-spacing:-14.498921pt;}
.wsdb{word-spacing:-14.382557pt;}
.ws5c{word-spacing:-14.033466pt;}
.ws9a{word-spacing:-13.975284pt;}
.wsd0{word-spacing:-13.742557pt;}
.ws82{word-spacing:-13.684375pt;}
.ws32{word-spacing:-13.277102pt;}
.ws97{word-spacing:-13.102556pt;}
.ws9f{word-spacing:-13.044375pt;}
.ws1c{word-spacing:-12.986193pt;}
.wsd2{word-spacing:-12.928011pt;}
.ws20{word-spacing:-12.823283pt;}
.wsd1{word-spacing:-12.631283pt;}
.ws8c{word-spacing:-12.404374pt;}
.ws1e{word-spacing:-12.346192pt;}
.ws3c{word-spacing:-12.055283pt;}
.wsb2{word-spacing:-12.012585pt;}
.ws2e{word-spacing:-11.948824pt;}
.ws7d{word-spacing:-11.938919pt;}
.ws4c{word-spacing:-11.880737pt;}
.wsd6{word-spacing:-11.706192pt;}
.wsa4{word-spacing:-11.589828pt;}
.ws98{word-spacing:-11.415282pt;}
.wsd4{word-spacing:-11.240737pt;}
.wsbe{word-spacing:-11.182555pt;}
.ws2f{word-spacing:-11.124373pt;}
.ws29{word-spacing:-11.066191pt;}
.ws14{word-spacing:-10.993397pt;}
.wsb4{word-spacing:-10.949827pt;}
.ws3{word-spacing:-10.780862pt;}
.ws81{word-spacing:-10.775282pt;}
.ws3d{word-spacing:-10.484372pt;}
.ws8{word-spacing:-10.462058pt;}
.ws7e{word-spacing:-10.426191pt;}
.wsba{word-spacing:-10.420372pt;}
.wsd5{word-spacing:-10.362190pt;}
.ws7a{word-spacing:-10.251645pt;}
.ws24{word-spacing:-10.193463pt;}
.wsa5{word-spacing:-10.077099pt;}
.wsda{word-spacing:-10.018917pt;}
.ws49{word-spacing:-9.960736pt;}
.ws73{word-spacing:-9.930720pt;}
.ws1d{word-spacing:-9.669826pt;}
.ws1a{word-spacing:-9.611644pt;}
.ws7f{word-spacing:-9.605826pt;}
.wsa0{word-spacing:-9.553463pt;}
.wsc4{word-spacing:-9.495281pt;}
.wsbd{word-spacing:-9.437099pt;}
.ws83{word-spacing:-9.320735pt;}
.wsbb{word-spacing:-9.262553pt;}
.ws33{word-spacing:-9.204371pt;}
.ws55{word-spacing:-9.088008pt;}
.wsc1{word-spacing:-8.971644pt;}
.ws17{word-spacing:-8.868042pt;}
.ws2c{word-spacing:-8.849462pt;}
.ws6{word-spacing:-8.814908pt;}
.ws40{word-spacing:-8.797098pt;}
.ws12{word-spacing:-8.761775pt;}
.ws5{word-spacing:-8.708641pt;}
.ws9{word-spacing:-8.602373pt;}
.wsb1{word-spacing:-8.506189pt;}
.wsce{word-spacing:-8.448007pt;}
.wsd{word-spacing:-8.389838pt;}
.wsa1{word-spacing:-8.273461pt;}
.ws4{word-spacing:-8.230436pt;}
.ws13{word-spacing:-8.124168pt;}
.wsbc{word-spacing:-8.040734pt;}
.ws56{word-spacing:-7.982552pt;}
.ws50{word-spacing:-7.633461pt;}
.ws4b{word-spacing:-7.575279pt;}
.ws3a{word-spacing:-7.517097pt;}
.wscf{word-spacing:-7.342552pt;}
.ws57{word-spacing:-7.336733pt;}
.wsbf{word-spacing:-7.226188pt;}
.wsca{word-spacing:-7.168006pt;}
.ws16{word-spacing:-7.167759pt;}
.ws59{word-spacing:-7.051642pt;}
.ws58{word-spacing:-6.993460pt;}
.wsc2{word-spacing:-6.935279pt;}
.ws3b{word-spacing:-6.871278pt;}
.ws85{word-spacing:-6.818915pt;}
.ws3e{word-spacing:-6.638551pt;}
.wse{word-spacing:-6.583286pt;}
.wscb{word-spacing:-6.580369pt;}
.wsaf{word-spacing:-6.528005pt;}
.ws39{word-spacing:-6.504733pt;}
.ws86{word-spacing:-6.469824pt;}
.ws21{word-spacing:-6.446551pt;}
.ws7{word-spacing:-6.423884pt;}
.wsdd{word-spacing:-6.411642pt;}
.ws92{word-spacing:-6.353460pt;}
.ws91{word-spacing:-6.308684pt;}
.wsc0{word-spacing:-6.295278pt;}
.ws15{word-spacing:-6.264483pt;}
.ws26{word-spacing:-6.178914pt;}
.ws7b{word-spacing:-5.946187pt;}
.wsb7{word-spacing:-5.829823pt;}
.ws78{word-spacing:-5.824005pt;}
.ws71{word-spacing:-5.786278pt;}
.ws5d{word-spacing:-5.771641pt;}
.ws27{word-spacing:-5.649459pt;}
.ws76{word-spacing:-5.597096pt;}
.wsc5{word-spacing:-5.538914pt;}
.wsb{word-spacing:-5.148672pt;}
.ws23{word-spacing:-5.131641pt;}
.ws63{word-spacing:-5.028684pt;}
.ws5e{word-spacing:-5.015277pt;}
.ws8d{word-spacing:-4.898913pt;}
.wsd3{word-spacing:-4.782549pt;}
.ws10{word-spacing:-4.670467pt;}
.wsa8{word-spacing:-4.660368pt;}
.wsac{word-spacing:-4.491640pt;}
.ws1f{word-spacing:-4.317095pt;}
.ws9b{word-spacing:-4.258913pt;}
.ws1b{word-spacing:-4.194913pt;}
.ws8b{word-spacing:-4.085092pt;}
.ws74{word-spacing:-4.032860pt;}
.ws7c{word-spacing:-3.962185pt;}
.ws19{word-spacing:-3.909821pt;}
.ws9e{word-spacing:-3.761610pt;}
.wsa6{word-spacing:-3.757494pt;}
.ws77{word-spacing:-3.756277pt;}
.ws89{word-spacing:-3.754017pt;}
.ws95{word-spacing:-3.618912pt;}
.ws34{word-spacing:-3.560730pt;}
.ws2a{word-spacing:-3.444367pt;}
.wsde{word-spacing:-3.386185pt;}
.wsa3{word-spacing:-3.211639pt;}
.ws6a{word-spacing:-3.182719pt;}
.ws25{word-spacing:-3.153457pt;}
.ws2b{word-spacing:-3.147639pt;}
.ws75{word-spacing:-3.095275pt;}
.wsdf{word-spacing:-3.089457pt;}
.wsb6{word-spacing:-2.978912pt;}
.ws6c{word-spacing:-2.964870pt;}
.ws44{word-spacing:-2.920730pt;}
.ws46{word-spacing:-2.804366pt;}
.wsdc{word-spacing:-2.746184pt;}
.wsae{word-spacing:-2.740366pt;}
.ws3f{word-spacing:-2.688002pt;}
.ws51{word-spacing:-2.682184pt;}
.ws99{word-spacing:-2.404684pt;}
.wsc8{word-spacing:-2.338911pt;}
.wsa{word-spacing:-2.066907pt;}
.ws94{word-spacing:-2.048002pt;}
.wsc9{word-spacing:-1.989820pt;}
.wsb3{word-spacing:-1.757092pt;}
.ws6e{word-spacing:-1.323033pt;}
.ws5f{word-spacing:-1.058910pt;}
.ws60{word-spacing:-0.942546pt;}
.wsb8{word-spacing:-0.878546pt;}
.ws79{word-spacing:-0.628684pt;}
.ws80{word-spacing:-0.623351pt;}
.ws2{word-spacing:-0.063761pt;}
.wsc3{word-spacing:-0.058182pt;}
.ws4e{word-spacing:-0.046545pt;}
.ws22{word-spacing:0.000000pt;}
.ws52{word-spacing:0.011636pt;}
.wsa2{word-spacing:0.162909pt;}
.wsad{word-spacing:0.459637pt;}
.ws8e{word-spacing:0.576000pt;}
.wsaa{word-spacing:0.634182pt;}
.wsa9{word-spacing:0.686546pt;}
.wsc7{word-spacing:1.210183pt;}
.wsc6{word-spacing:1.384728pt;}
.ws93{word-spacing:1.873456pt;}
.wsb5{word-spacing:2.024729pt;}
.ws45{word-spacing:2.141093pt;}
.wsb0{word-spacing:2.897457pt;}
.ws4d{word-spacing:3.095275pt;}
.ws61{word-spacing:3.211639pt;}
.ws48{word-spacing:3.537457pt;}
.ws8f{word-spacing:4.112649pt;}
.wsa7{word-spacing:5.713459pt;}
.ws96{word-spacing:5.877983pt;}
.wsd7{word-spacing:7.552006pt;}
.wsd8{word-spacing:8.948371pt;}
.ws36{word-spacing:9.400024pt;}
.ws9d{word-spacing:10.520576pt;}
.ws68{word-spacing:10.791488pt;}
.wsd9{word-spacing:13.201466pt;}
.ws43{word-spacing:17.152014pt;}
.wsab{word-spacing:17.349833pt;}
.ws67{word-spacing:20.297137pt;}
.ws1{word-spacing:20.722347pt;}
.wsf{word-spacing:21.041011pt;}
.ws72{word-spacing:21.896466pt;}
.ws6d{word-spacing:23.915553pt;}
.ws18{word-spacing:27.927269pt;}
.ws2d{word-spacing:28.003782pt;}
.ws0{word-spacing:28.646426pt;}
.ws65{word-spacing:36.633712pt;}
.ws41{word-spacing:43.392036pt;}
.ws66{word-spacing:57.969049pt;}
.ws6b{word-spacing:89.960950pt;}
.ws6f{word-spacing:109.939284pt;}
.ws64{word-spacing:465.930877pt;}
.ws69{word-spacing:481.974835pt;}
.ws4f{word-spacing:860.637808pt;}
.ws53{word-spacing:871.387924pt;}
.ws8a{word-spacing:921.574627pt;}
.ws88{word-spacing:922.741133pt;}
._1{margin-left:-7.161606pt;}
._3{margin-left:-5.164646pt;}
._6{margin-left:-3.708709pt;}
._16{margin-left:-2.671951pt;}
._2{margin-left:-1.721549pt;}
._b{width:0.928363pt;}
._0{width:2.387202pt;}
._1f{width:3.449409pt;}
._c{width:5.522043pt;}
._2e{width:15.262994pt;}
._19{width:16.184074pt;}
._25{width:18.416880pt;}
._e{width:19.372654pt;}
._7{width:21.253547pt;}
._9{width:22.900697pt;}
._5{width:24.069642pt;}
._4{width:25.684923pt;}
._12{width:26.719193pt;}
._d{width:28.160949pt;}
._1b{width:29.905479pt;}
._8{width:30.817643pt;}
._f{width:31.763449pt;}
._1a{width:32.811372pt;}
._30{width:33.954303pt;}
._14{width:34.967302pt;}
._13{width:36.072757pt;}
._a{width:37.586909pt;}
._18{width:38.749123pt;}
._2b{width:40.071899pt;}
._2c{width:41.051927pt;}
._11{width:42.500697pt;}
._15{width:43.830494pt;}
._22{width:45.416131pt;}
._1c{width:46.521586pt;}
._31{width:47.420769pt;}
._2f{width:49.533503pt;}
._23{width:51.966774pt;}
._32{width:58.868614pt;}
._33{width:60.901484pt;}
._17{width:71.731200pt;}
._10{width:84.164373pt;}
._1e{width:86.169892pt;}
._26{width:114.157841pt;}
._24{width:180.897791pt;}
._20{width:223.424091pt;}
._29{width:225.075059pt;}
._28{width:251.641993pt;}
._1d{width:274.269319pt;}
._2a{width:326.093201pt;}
._27{width:340.163014pt;}
._21{width:470.900122pt;}
._2d{width:510.319994pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.149333pt;}
.yad{bottom:96.000000pt;}
.y69{bottom:96.338667pt;}
.y25{bottom:110.145333pt;}
.yac{bottom:114.065333pt;}
.y68{bottom:114.404000pt;}
.y13c{bottom:125.026667pt;}
.y24{bottom:128.210667pt;}
.yab{bottom:132.130667pt;}
.yc7{bottom:139.874667pt;}
.y47{bottom:142.140000pt;}
.y13b{bottom:143.092000pt;}
.y67{bottom:144.425333pt;}
.yfe{bottom:144.522667pt;}
.ye1{bottom:145.720000pt;}
.yaa{bottom:150.197333pt;}
.y23{bottom:158.232000pt;}
.y46{bottom:160.205333pt;}
.y13a{bottom:161.157333pt;}
.ye0{bottom:163.786667pt;}
.ya9{bottom:168.262667pt;}
.yc6{bottom:169.896000pt;}
.yfd{bottom:173.361333pt;}
.y66{bottom:174.445333pt;}
.y8c{bottom:175.218667pt;}
.y22{bottom:176.297333pt;}
.y45{bottom:178.270667pt;}
.ya8{bottom:186.328000pt;}
.y139{bottom:191.178667pt;}
.y8b{bottom:193.285333pt;}
.ydf{bottom:193.806667pt;}
.y44{bottom:196.337333pt;}
.yc5{bottom:199.916000pt;}
.yfc{bottom:202.198667pt;}
.y119{bottom:204.393333pt;}
.y65{bottom:204.466667pt;}
.y21{bottom:206.317333pt;}
.ya7{bottom:209.036000pt;}
.y138{bottom:209.244000pt;}
.y8a{bottom:211.350667pt;}
.y43{bottom:214.402667pt;}
.ya6{bottom:219.013333pt;}
.y118{bottom:222.458667pt;}
.yde{bottom:223.828000pt;}
.y20{bottom:224.384000pt;}
.y137{bottom:227.309333pt;}
.yc4{bottom:229.937333pt;}
.yfb{bottom:232.656000pt;}
.y64{bottom:233.490667pt;}
.y42{bottom:241.860000pt;}
.ydd{bottom:241.893333pt;}
.y63{bottom:243.468000pt;}
.y89{bottom:253.800000pt;}
.y117{bottom:255.824000pt;}
.y136{bottom:257.329333pt;}
.ya5{bottom:258.268000pt;}
.y1f{bottom:258.389333pt;}
.yc3{bottom:259.957333pt;}
.ydc{bottom:259.958667pt;}
.yfa{bottom:260.113333pt;}
.y88{bottom:269.740000pt;}
.y116{bottom:273.889333pt;}
.y135{bottom:275.396000pt;}
.y1e{bottom:276.454667pt;}
.yc2{bottom:278.022667pt;}
.y41{bottom:280.805333pt;}
.ya4{bottom:283.978667pt;}
.y62{bottom:288.209333pt;}
.ydb{bottom:292.636000pt;}
.y87{bottom:292.977333pt;}
.y134{bottom:293.461333pt;}
.y1d{bottom:294.520000pt;}
.yc1{bottom:296.089333pt;}
.yf9{bottom:298.501333pt;}
.y40{bottom:298.870667pt;}
.y115{bottom:303.696000pt;}
.y61{bottom:306.274667pt;}
.y86{bottom:308.917333pt;}
.yf8{bottom:316.566667pt;}
.ya3{bottom:320.110667pt;}
.y114{bottom:321.762667pt;}
.y133{bottom:323.481333pt;}
.yda{bottom:325.313333pt;}
.yc0{bottom:325.941333pt;}
.y1c{bottom:326.986667pt;}
.y85{bottom:332.154667pt;}
.y3f{bottom:332.876000pt;}
.y60{bottom:336.294667pt;}
.y132{bottom:341.548000pt;}
.yd9{bottom:343.378667pt;}
.yf7{bottom:347.024000pt;}
.ya2{bottom:347.568000pt;}
.y84{bottom:348.094667pt;}
.y3e{bottom:350.941333pt;}
.y113{bottom:351.569333pt;}
.ybf{bottom:356.412000pt;}
.y5f{bottom:366.316000pt;}
.y83{bottom:371.332000pt;}
.y131{bottom:371.568000pt;}
.y1b{bottom:372.810667pt;}
.yd8{bottom:373.400000pt;}
.yf6{bottom:375.861333pt;}
.y3d{bottom:380.962667pt;}
.y112{bottom:381.376000pt;}
.ybe{bottom:386.432000pt;}
.y82{bottom:387.273333pt;}
.y1a{bottom:388.750667pt;}
.y130{bottom:389.633333pt;}
.y5e{bottom:396.337333pt;}
.ya1{bottom:396.838667pt;}
.y3c{bottom:399.028000pt;}
.y111{bottom:399.441333pt;}
.yd7{bottom:403.421333pt;}
.y19{bottom:404.690667pt;}
.yf5{bottom:404.700000pt;}
.y81{bottom:410.510667pt;}
.ya0{bottom:414.904000pt;}
.ybd{bottom:416.453333pt;}
.y12f{bottom:419.654667pt;}
.y18{bottom:420.632000pt;}
.y5d{bottom:426.357333pt;}
.y80{bottom:426.450667pt;}
.y3b{bottom:429.049333pt;}
.y110{bottom:429.249333pt;}
.y9f{bottom:432.969333pt;}
.yd6{bottom:433.441333pt;}
.yf4{bottom:435.157333pt;}
.y17{bottom:436.572000pt;}
.y12e{bottom:437.720000pt;}
.ybc{bottom:446.474667pt;}
.y3a{bottom:447.114667pt;}
.y10f{bottom:447.314667pt;}
.y7f{bottom:449.688000pt;}
.y9e{bottom:451.034667pt;}
.y16{bottom:452.512000pt;}
.y5c{bottom:453.057333pt;}
.y12d{bottom:455.785333pt;}
.yf3{bottom:462.614667pt;}
.yd5{bottom:463.462667pt;}
.y7e{bottom:465.628000pt;}
.y15{bottom:468.452000pt;}
.y9d{bottom:469.101333pt;}
.ybb{bottom:476.494667pt;}
.y10e{bottom:480.678667pt;}
.y39{bottom:481.120000pt;}
.yd4{bottom:481.528000pt;}
.y14{bottom:484.392000pt;}
.y12c{bottom:485.806667pt;}
.y9c{bottom:487.166667pt;}
.y7d{bottom:488.865333pt;}
.y5b{bottom:489.188000pt;}
.y10d{bottom:498.745333pt;}
.y38{bottom:499.186667pt;}
.y13{bottom:500.332000pt;}
.yf2{bottom:501.001333pt;}
.y12b{bottom:503.872000pt;}
.y7c{bottom:504.805333pt;}
.yba{bottom:506.516000pt;}
.y5a{bottom:507.254667pt;}
.y9b{bottom:515.080000pt;}
.yd3{bottom:515.533333pt;}
.y12{bottom:516.273333pt;}
.y10c{bottom:516.810667pt;}
.y37{bottom:517.252000pt;}
.yf1{bottom:519.068000pt;}
.y59{bottom:525.320000pt;}
.y7b{bottom:525.346667pt;}
.y11{bottom:532.213333pt;}
.y12a{bottom:536.338667pt;}
.yb9{bottom:536.536000pt;}
.y58{bottom:543.385333pt;}
.yd2{bottom:545.554667pt;}
.y10{bottom:548.153333pt;}
.y10b{bottom:549.276000pt;}
.yf0{bottom:549.525333pt;}
.y36{bottom:549.929333pt;}
.y9a{bottom:555.856000pt;}
.yf{bottom:564.093333pt;}
.yb8{bottom:566.557333pt;}
.y57{bottom:570.842667pt;}
.y7a{bottom:573.980000pt;}
.yef{bottom:578.362667pt;}
.yd1{bottom:579.560000pt;}
.ye{bottom:580.033333pt;}
.y129{bottom:582.162667pt;}
.y35{bottom:582.606667pt;}
.y99{bottom:585.877333pt;}
.y10a{bottom:595.000000pt;}
.yd{bottom:595.973333pt;}
.yb7{bottom:596.577333pt;}
.y128{bottom:600.228000pt;}
.y34{bottom:600.672000pt;}
.y56{bottom:603.840000pt;}
.y98{bottom:603.942667pt;}
.yd0{bottom:607.017333pt;}
.yee{bottom:607.200000pt;}
.yc{bottom:611.914667pt;}
.y109{bottom:613.065333pt;}
.y79{bottom:623.561333pt;}
.yb6{bottom:626.598667pt;}
.yb{bottom:627.854667pt;}
.y33{bottom:628.129333pt;}
.y127{bottom:630.248000pt;}
.y97{bottom:633.964000pt;}
.yed{bottom:637.657333pt;}
.y78{bottom:641.626667pt;}
.y108{bottom:642.872000pt;}
.ya{bottom:643.794667pt;}
.yb5{bottom:644.664000pt;}
.ycf{bottom:645.962667pt;}
.y126{bottom:648.314667pt;}
.y55{bottom:654.100000pt;}
.y77{bottom:659.692000pt;}
.y32{bottom:661.126667pt;}
.yec{bottom:662.584000pt;}
.y96{bottom:663.984000pt;}
.yce{bottom:664.028000pt;}
.y9{bottom:668.038667pt;}
.yb4{bottom:672.121333pt;}
.y54{bottom:672.165333pt;}
.y107{bottom:672.680000pt;}
.y76{bottom:677.758667pt;}
.y125{bottom:678.334667pt;}
.yeb{bottom:680.649333pt;}
.y95{bottom:682.049333pt;}
.y75{bottom:695.824000pt;}
.y124{bottom:696.400000pt;}
.y53{bottom:697.528000pt;}
.ycd{bottom:698.034667pt;}
.y106{bottom:702.486667pt;}
.y31{bottom:706.950667pt;}
.yea{bottom:708.106667pt;}
.y94{bottom:709.964000pt;}
.yb3{bottom:711.066667pt;}
.y74{bottom:713.889333pt;}
.y123{bottom:714.466667pt;}
.y52{bottom:715.593333pt;}
.y8{bottom:721.613333pt;}
.y30{bottom:725.016000pt;}
.ycc{bottom:728.054667pt;}
.y73{bottom:731.954667pt;}
.y105{bottom:732.293333pt;}
.y93{bottom:740.104000pt;}
.y51{bottom:740.957333pt;}
.yb2{bottom:741.088000pt;}
.ye9{bottom:741.104000pt;}
.y122{bottom:744.486667pt;}
.y72{bottom:750.020000pt;}
.y7{bottom:753.962667pt;}
.ycb{bottom:758.076000pt;}
.y50{bottom:759.022667pt;}
.y104{bottom:761.780000pt;}
.y121{bottom:762.552000pt;}
.y2f{bottom:762.750667pt;}
.y92{bottom:768.476000pt;}
.yb1{bottom:771.108000pt;}
.y6{bottom:772.560000pt;}
.y120{bottom:780.618667pt;}
.y2e{bottom:780.816000pt;}
.y71{bottom:781.573333pt;}
.y4f{bottom:784.385333pt;}
.yca{bottom:788.096000pt;}
.y5{bottom:791.156000pt;}
.ye8{bottom:794.178667pt;}
.y103{bottom:795.145333pt;}
.y91{bottom:797.837333pt;}
.y2d{bottom:798.882667pt;}
.yb0{bottom:801.129333pt;}
.y4e{bottom:802.450667pt;}
.y4{bottom:809.753333pt;}
.y11f{bottom:810.638667pt;}
.ye7{bottom:812.244000pt;}
.y2c{bottom:816.948000pt;}
.yc9{bottom:822.102667pt;}
.y70{bottom:823.240000pt;}
.y102{bottom:824.952000pt;}
.y90{bottom:827.198667pt;}
.y4d{bottom:827.813333pt;}
.y3{bottom:828.350667pt;}
.y11e{bottom:828.704000pt;}
.ye6{bottom:830.309333pt;}
.yaf{bottom:831.149333pt;}
.y6f{bottom:841.306667pt;}
.y2b{bottom:843.973333pt;}
.y4c{bottom:845.878667pt;}
.y11d{bottom:846.770667pt;}
.ye5{bottom:848.376000pt;}
.yc8{bottom:848.802667pt;}
.yae{bottom:849.216000pt;}
.y101{bottom:854.758667pt;}
.y8f{bottom:856.561333pt;}
.y6e{bottom:859.372000pt;}
.ye4{bottom:866.441333pt;}
.y2{bottom:868.641333pt;}
.y4b{bottom:871.241333pt;}
.y11c{bottom:876.790667pt;}
.y6d{bottom:877.437333pt;}
.y2a{bottom:879.236000pt;}
.ye3{bottom:884.506667pt;}
.y100{bottom:884.566667pt;}
.y8e{bottom:884.933333pt;}
.y1{bottom:887.238667pt;}
.y4a{bottom:889.308000pt;}
.y11b{bottom:894.856000pt;}
.y6c{bottom:895.502667pt;}
.y29{bottom:897.301333pt;}
.y13d{bottom:909.257333pt;}
.y8d{bottom:912.390667pt;}
.y11a{bottom:912.922667pt;}
.y6b{bottom:913.568000pt;}
.y49{bottom:914.670667pt;}
.ye2{bottom:915.248000pt;}
.yff{bottom:917.930667pt;}
.y28{bottom:927.322667pt;}
.y48{bottom:936.698667pt;}
.y6a{bottom:944.313333pt;}
.y27{bottom:945.388000pt;}
.h4{height:37.140573pt;}
.hf{height:39.850400pt;}
.h3{height:39.850667pt;}
.h5{height:39.903534pt;}
.h16{height:40.436397pt;}
.h8{height:41.658217pt;}
.h7{height:43.694582pt;}
.h9{height:44.696508pt;}
.h2{height:45.589163pt;}
.hb{height:51.464807pt;}
.h11{height:52.989733pt;}
.hc{height:52.995067pt;}
.h13{height:54.371474pt;}
.ha{height:55.901733pt;}
.h6{height:57.461313pt;}
.h1{height:64.546273pt;}
.hd{height:83.321733pt;}
.he{height:83.603915pt;}
.h12{height:83.609249pt;}
.h15{height:90.916883pt;}
.h14{height:90.922217pt;}
.h10{height:103.663534pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:96.000000pt;}
.x22{left:103.232000pt;}
.x1f{left:113.840000pt;}
.xf{left:116.788000pt;}
.xd{left:118.581333pt;}
.x23{left:125.774667pt;}
.xb{left:132.364000pt;}
.x1b{left:138.646667pt;}
.x18{left:146.390667pt;}
.x1{left:150.164000pt;}
.xa{left:152.284000pt;}
.x12{left:173.258667pt;}
.x2{left:219.913333pt;}
.x17{left:238.866667pt;}
.x1e{left:242.062667pt;}
.x11{left:277.880000pt;}
.x20{left:286.884000pt;}
.x7{left:301.392000pt;}
.x19{left:313.512000pt;}
.x6{left:324.741333pt;}
.x4{left:329.330667pt;}
.x14{left:333.680000pt;}
.x15{left:334.778667pt;}
.x5{left:336.873333pt;}
.x10{left:350.941333pt;}
.x1c{left:353.400000pt;}
.x8{left:356.094667pt;}
.x21{left:362.018667pt;}
.x3{left:376.577333pt;}
.x9{left:378.782667pt;}
.x1d{left:395.154667pt;}
.x16{left:397.421333pt;}
.x24{left:400.769333pt;}
.xe{left:404.384000pt;}
.x13{left:415.970667pt;}
.x1a{left:442.837333pt;}
}




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