
    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_1ce637356fcb9b1d18a085d4.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_fd6c7d8cfa25ee9357898c86.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5611e30c647dc26b0c0e17a1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a35680cafbc918db4a1cf7c3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_81083a4cf1bf95e05e221182.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844000;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_9c4c7356793f86fe127e7315.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_495760a0fe6f97a6f54f6916.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8afef5dc0ecd697136dddeb0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.851000;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_35f904c5f4fac1a291907858.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.705000;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_343d7cb96d77ac341e198da9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8095d053b80cac64354217c2.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_933494c59a0b973354a16975.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.902000;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_3d27ab0adc56836f2dac1202.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904000;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_38b83fb43ae2c4b2a7c6cab8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.907000;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_272f2cb3833e9a22c35a018d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1e8d1eaa3e5b86c0fae0d50f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3be1118a076fbbeb2de9f3fa.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.654000;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_272b22254d6d4d26aa7ed01a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982910;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_0069e70501ca977804ac401c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940918;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_d9f58df6768312cafe59b998.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0eb478824cc27c7ab38706a7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_1a82d322f7375987efdb83fb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;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_1fa4eeaaee9e62640745acac.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3e7c34bccbf27761d54f0b4a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.665000;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);}
.v9{vertical-align:-35.246592px;}
.v8{vertical-align:-26.434944px;}
.vc{vertical-align:-22.854000px;}
.v5{vertical-align:-17.928000px;}
.v7{vertical-align:-11.014560px;}
.v1{vertical-align:-8.964000px;}
.v6{vertical-align:-2.317647px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:21.690000px;}
.va{vertical-align:23.635410px;}
.v2{vertical-align:40.440000px;}
.v4{vertical-align:44.832000px;}
.v3{vertical-align:97.794000px;}
.ls3c{letter-spacing:-0.133322px;}
.ls36{letter-spacing:-0.088116px;}
.ls35{letter-spacing:-0.055073px;}
.ls3a{letter-spacing:-0.045665px;}
.ls3e{letter-spacing:-0.011841px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001002px;}
.ls25{letter-spacing:0.001120px;}
.ls16{letter-spacing:0.001698px;}
.ls37{letter-spacing:0.001928px;}
.lsd{letter-spacing:0.002245px;}
.ls10{letter-spacing:0.002338px;}
.lse{letter-spacing:0.003269px;}
.ls15{letter-spacing:0.003413px;}
.ls20{letter-spacing:0.003880px;}
.ls1e{letter-spacing:0.004896px;}
.ls1b{letter-spacing:0.005374px;}
.ls3d{letter-spacing:0.024783px;}
.ls39{letter-spacing:0.075496px;}
.ls31{letter-spacing:0.089328px;}
.ls38{letter-spacing:0.089493px;}
.ls2d{letter-spacing:0.113175px;}
.ls2e{letter-spacing:0.122353px;}
.ls2f{letter-spacing:0.135222px;}
.ls3b{letter-spacing:0.569086px;}
.ls1a{letter-spacing:1.428113px;}
.ls1c{letter-spacing:1.546424px;}
.ls12{letter-spacing:1.908068px;}
.ls21{letter-spacing:1.914068px;}
.lsf{letter-spacing:2.208463px;}
.ls1f{letter-spacing:2.214463px;}
.ls22{letter-spacing:2.750175px;}
.ls41{letter-spacing:2.984525px;}
.ls17{letter-spacing:2.987251px;}
.ls9{letter-spacing:2.988615px;}
.ls8{letter-spacing:2.990525px;}
.ls24{letter-spacing:2.993251px;}
.ls13{letter-spacing:4.275175px;}
.ls3{letter-spacing:4.913512px;}
.ls5{letter-spacing:5.350438px;}
.ls4{letter-spacing:9.956338px;}
.ls11{letter-spacing:9.962338px;}
.ls1d{letter-spacing:12.953374px;}
.ls2b{letter-spacing:15.710338px;}
.lsc{letter-spacing:16.839880px;}
.lsa{letter-spacing:18.016769px;}
.ls7{letter-spacing:18.816463px;}
.ls23{letter-spacing:19.256338px;}
.lsb{letter-spacing:20.066685px;}
.ls40{letter-spacing:21.420532px;}
.ls29{letter-spacing:22.134463px;}
.ls2a{letter-spacing:22.140463px;}
.ls28{letter-spacing:24.306068px;}
.ls14{letter-spacing:24.339269px;}
.ls18{letter-spacing:25.138147px;}
.ls19{letter-spacing:25.195496px;}
.ls2c{letter-spacing:27.944338px;}
.ls26{letter-spacing:28.703512px;}
.ls3f{letter-spacing:28.892525px;}
.ls6{letter-spacing:32.453512px;}
.ls2{letter-spacing:32.839496px;}
.ls27{letter-spacing:33.646438px;}
.ls34{letter-spacing:68.664473px;}
.ls33{letter-spacing:68.715342px;}
.ls32{letter-spacing:72.501597px;}
.ls30{letter-spacing:76.489400px;}
.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;}
}
.ws63{word-spacing:-59.775600px;}
.ws55{word-spacing:-46.326090px;}
.ws61{word-spacing:-45.327837px;}
.ws6d{word-spacing:-40.521993px;}
.ws58{word-spacing:-38.937826px;}
.ws62{word-spacing:-31.633157px;}
.ws59{word-spacing:-29.015076px;}
.ws64{word-spacing:-28.955301px;}
.ws99{word-spacing:-19.330553px;}
.ws53{word-spacing:-16.605662px;}
.wscd{word-spacing:-15.359443px;}
.wsa5{word-spacing:-15.233136px;}
.ws9d{word-spacing:-15.200093px;}
.wsa0{word-spacing:-15.145020px;}
.ws8b{word-spacing:-9.334840px;}
.ws8c{word-spacing:-8.276891px;}
.ws8a{word-spacing:-7.281175px;}
.ws76{word-spacing:-3.335478px;}
.wsac{word-spacing:-3.156152px;}
.ws5f{word-spacing:-2.976825px;}
.wsdc{word-spacing:-2.878214px;}
.wsc3{word-spacing:-2.857274px;}
.ws77{word-spacing:-2.797498px;}
.wsc0{word-spacing:-2.737722px;}
.wsc2{word-spacing:-2.677947px;}
.ws9{word-spacing:-2.609222px;}
.wsb5{word-spacing:-2.498620px;}
.ws4e{word-spacing:-2.319293px;}
.wsd6{word-spacing:-2.080191px;}
.wsd7{word-spacing:-1.661762px;}
.ws2b{word-spacing:-1.601986px;}
.wsc8{word-spacing:-1.362884px;}
.ws2f{word-spacing:-1.183557px;}
.ws1e{word-spacing:-1.064006px;}
.ws56{word-spacing:-1.004230px;}
.ws3f{word-spacing:-0.944454px;}
.ws6{word-spacing:-0.941472px;}
.ws7c{word-spacing:-0.912209px;}
.ws7d{word-spacing:-0.884679px;}
.ws2a{word-spacing:-0.824903px;}
.wsae{word-spacing:-0.526025px;}
.ws9c{word-spacing:-0.275364px;}
.ws95{word-spacing:-0.213958px;}
.ws9a{word-spacing:-0.192755px;}
.ws93{word-spacing:-0.158885px;}
.ws97{word-spacing:-0.124189px;}
.wsb6{word-spacing:-0.107596px;}
.wsa8{word-spacing:-0.101609px;}
.ws6a{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.wsa4{word-spacing:-0.051034px;}
.wsa9{word-spacing:-0.035522px;}
.ws9f{word-spacing:-0.025333px;}
.ws23{word-spacing:0.000000px;}
.ws57{word-spacing:0.011955px;}
.ws3e{word-spacing:0.071731px;}
.wsa3{word-spacing:0.118957px;}
.wsa2{word-spacing:0.152001px;}
.wsd2{word-spacing:0.191282px;}
.wsa7{word-spacing:0.214646px;}
.ws5d{word-spacing:0.251058px;}
.ws9e{word-spacing:0.275364px;}
.ws8e{word-spacing:0.276190px;}
.ws1d{word-spacing:0.310833px;}
.wsb4{word-spacing:0.490160px;}
.ws17{word-spacing:0.549936px;}
.ws32{word-spacing:0.609711px;}
.ws2d{word-spacing:0.669487px;}
.wse3{word-spacing:0.726278px;}
.ws11{word-spacing:0.780077px;}
.wsbc{word-spacing:0.789038px;}
.ws6e{word-spacing:0.845158px;}
.ws44{word-spacing:0.848814px;}
.wsba{word-spacing:0.908589px;}
.ws40{word-spacing:1.028140px;}
.wsb2{word-spacing:1.147692px;}
.wsd8{word-spacing:1.267243px;}
.ws5a{word-spacing:1.383014px;}
.ws4c{word-spacing:1.386794px;}
.wscf{word-spacing:1.506345px;}
.ws47{word-spacing:1.625896px;}
.wsda{word-spacing:1.745448px;}
.ws12{word-spacing:1.748448px;}
.ws3d{word-spacing:1.805223px;}
.ws24{word-spacing:1.984550px;}
.wsc{word-spacing:2.071238px;}
.wsbd{word-spacing:2.104101px;}
.ws1f{word-spacing:2.163877px;}
.ws5e{word-spacing:2.283428px;}
.wsd5{word-spacing:2.402979px;}
.ws1c{word-spacing:2.462755px;}
.wse2{word-spacing:2.555424px;}
.ws22{word-spacing:2.577516px;}
.ws4b{word-spacing:2.582306px;}
.ws6c{word-spacing:2.632236px;}
.ws16{word-spacing:2.642082px;}
.ws36{word-spacing:2.701857px;}
.wse4{word-spacing:2.716819px;}
.ws42{word-spacing:2.761633px;}
.ws3{word-spacing:2.878214px;}
.wsa{word-spacing:2.985811px;}
.wsdd{word-spacing:3.039610px;}
.ws2{word-spacing:3.093408px;}
.ws6f{word-spacing:3.120286px;}
.wsc9{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws60{word-spacing:3.305199px;}
.wsab{word-spacing:3.359389px;}
.ws5c{word-spacing:3.419164px;}
.ws5b{word-spacing:3.478940px;}
.ws31{word-spacing:3.598491px;}
.ws54{word-spacing:3.658267px;}
.ws38{word-spacing:3.718042px;}
.ws3c{word-spacing:3.777818px;}
.wsb{word-spacing:3.792787px;}
.ws2c{word-spacing:3.837594px;}
.ws41{word-spacing:4.136472px;}
.ws7{word-spacing:4.223174px;}
.ws29{word-spacing:4.256023px;}
.wsd{word-spacing:4.384570px;}
.ws45{word-spacing:4.435350px;}
.wsde{word-spacing:4.653562px;}
.wsc6{word-spacing:4.734228px;}
.ws46{word-spacing:4.913554px;}
.ws10{word-spacing:4.976352px;}
.ws67{word-spacing:5.033106px;}
.ws66{word-spacing:5.046421px;}
.wsb7{word-spacing:5.064413px;}
.wsd3{word-spacing:5.152657px;}
.ws3a{word-spacing:5.212432px;}
.ws18{word-spacing:5.272208px;}
.wsb8{word-spacing:5.331984px;}
.wsaf{word-spacing:5.391759px;}
.wsc1{word-spacing:5.571086px;}
.ws7a{word-spacing:5.690637px;}
.wscb{word-spacing:5.750413px;}
.ws72{word-spacing:5.810188px;}
.ws1a{word-spacing:5.869964px;}
.wsce{word-spacing:6.049291px;}
.ws82{word-spacing:6.219493px;}
.ws83{word-spacing:6.228618px;}
.ws88{word-spacing:6.288393px;}
.wsdb{word-spacing:6.375110px;}
.wsb0{word-spacing:6.407944px;}
.wsd4{word-spacing:6.527496px;}
.wsf{word-spacing:6.697901px;}
.ws30{word-spacing:6.766598px;}
.wsc5{word-spacing:6.886149px;}
.ws84{word-spacing:6.945925px;}
.wsd9{word-spacing:7.005700px;}
.ws68{word-spacing:7.065476px;}
.ws70{word-spacing:7.185027px;}
.wsbf{word-spacing:7.244803px;}
.wsca{word-spacing:7.364354px;}
.ws2e{word-spacing:7.424130px;}
.wsbb{word-spacing:7.543681px;}
.ws49{word-spacing:7.603456px;}
.ws34{word-spacing:7.723008px;}
.ws1b{word-spacing:7.782783px;}
.ws73{word-spacing:7.902334px;}
.wsb9{word-spacing:8.320764px;}
.wse1{word-spacing:8.473248px;}
.ws4f{word-spacing:8.559866px;}
.wsb3{word-spacing:8.798968px;}
.ws28{word-spacing:8.858744px;}
.ws20{word-spacing:8.895779px;}
.wse{word-spacing:9.011232px;}
.ws21{word-spacing:9.021308px;}
.ws79{word-spacing:9.038071px;}
.ws14{word-spacing:9.065030px;}
.wsb1{word-spacing:9.217398px;}
.ws8{word-spacing:9.226426px;}
.wscc{word-spacing:9.277173px;}
.wsc4{word-spacing:9.336949px;}
.ws27{word-spacing:9.396724px;}
.ws3b{word-spacing:9.576051px;}
.wsad{word-spacing:9.695602px;}
.ws48{word-spacing:10.293358px;}
.wsaa{word-spacing:10.544486px;}
.ws19{word-spacing:10.652012px;}
.ws25{word-spacing:10.711788px;}
.ws52{word-spacing:10.891114px;}
.wse0{word-spacing:10.894176px;}
.ws50{word-spacing:10.950890px;}
.wsc7{word-spacing:11.249768px;}
.ws85{word-spacing:11.342938px;}
.ws86{word-spacing:11.369319px;}
.ws71{word-spacing:11.668197px;}
.ws33{word-spacing:11.847524px;}
.wsbe{word-spacing:12.325729px;}
.ws26{word-spacing:12.385504px;}
.ws78{word-spacing:12.445280px;}
.ws74{word-spacing:12.505056px;}
.ws51{word-spacing:12.684382px;}
.ws69{word-spacing:12.803934px;}
.ws80{word-spacing:13.786436px;}
.ws81{word-spacing:13.820119px;}
.wsa1{word-spacing:15.280499px;}
.ws6b{word-spacing:15.852489px;}
.wsd1{word-spacing:16.739084px;}
.ws94{word-spacing:18.927695px;}
.ws96{word-spacing:18.959913px;}
.ws98{word-spacing:19.022971px;}
.ws9b{word-spacing:19.134218px;}
.ws37{word-spacing:19.247654px;}
.wsdf{word-spacing:20.793082px;}
.ws87{word-spacing:22.531844px;}
.wsd0{word-spacing:22.533464px;}
.ws7b{word-spacing:22.535084px;}
.ws7e{word-spacing:22.538324px;}
.ws75{word-spacing:22.834279px;}
.ws4d{word-spacing:22.894055px;}
.ws35{word-spacing:24.287084px;}
.ws43{word-spacing:25.519204px;}
.ws4a{word-spacing:26.827469px;}
.ws13{word-spacing:27.592038px;}
.ws5{word-spacing:29.829450px;}
.ws7f{word-spacing:30.330704px;}
.ws39{word-spacing:31.322414px;}
.ws0{word-spacing:32.192873px;}
.ws91{word-spacing:44.451093px;}
.ws92{word-spacing:55.604895px;}
.ws15{word-spacing:80.625869px;}
.ws89{word-spacing:153.692397px;}
.ws90{word-spacing:156.907547px;}
.ws65{word-spacing:395.905754px;}
.ws8d{word-spacing:510.650238px;}
.ws8f{word-spacing:526.091458px;}
.wsa6{word-spacing:1797.083199px;}
._7{margin-left:-27.598579px;}
._1b{margin-left:-25.643729px;}
._1{margin-left:-8.091257px;}
._1a{margin-left:-6.742733px;}
._d{margin-left:-5.700191px;}
._8{margin-left:-4.626662px;}
._0{margin-left:-2.668393px;}
._5{margin-left:-1.560154px;}
._6{width:1.506355px;}
._2{width:2.668393px;}
._9{width:3.959555px;}
._3{width:5.336786px;}
._e{width:14.743064px;}
._f{width:16.453822px;}
._b{width:17.970947px;}
._c{width:19.770203px;}
._4{width:20.959727px;}
._12{width:22.061989px;}
._11{width:23.449012px;}
._10{width:25.383121px;}
._19{width:26.943275px;}
._a{width:28.264326px;}
._16{width:30.410260px;}
._17{width:31.416975px;}
._18{width:56.312797px;}
._14{width:68.741940px;}
._13{width:80.697600px;}
._15{width:105.326966px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(222,0,206);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.507396px;}
.fsa{font-size:24.562469px;}
.fsb{font-size:25.333488px;}
.fsc{font-size:25.388561px;}
.fs5{font-size:32.217588px;}
.fsf{font-size:35.865600px;}
.fs7{font-size:36.623412px;}
.fs9{font-size:36.678485px;}
.fs6{font-size:41.304600px;}
.fs4{font-size:41.842800px;}
.fsd{font-size:45.985788px;}
.fse{font-size:46.040861px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ybf{bottom:47.866295px;}
.yab{bottom:51.388659px;}
.y93{bottom:96.163993px;}
.ybe{bottom:104.740434px;}
.ybd{bottom:105.566526px;}
.y92{bottom:108.566846px;}
.yb1{bottom:116.185250px;}
.yb0{bottom:125.822990px;}
.yb8{bottom:131.284376px;}
.yaf{bottom:135.460730px;}
.yb7{bottom:138.856886px;}
.yae{bottom:145.098470px;}
.yb6{bottom:146.429396px;}
.ya0{bottom:150.881114px;}
.yb5{bottom:154.001906px;}
.yad{bottom:154.736210px;}
.yb4{bottom:161.574416px;}
.yac{bottom:164.373950px;}
.yb3{bottom:169.146926px;}
.yb2{bottom:176.719436px;}
.ya6{bottom:189.087869px;}
.yaa{bottom:189.363233px;}
.y25{bottom:193.617000px;}
.ybc{bottom:195.627764px;}
.y91{bottom:197.113583px;}
.ya2{bottom:198.324037px;}
.yec{bottom:199.330500px;}
.ya1{bottom:203.527269px;}
.ya9{bottom:204.491043px;}
.y24{bottom:205.572000px;}
.y112{bottom:208.801500px;}
.y90{bottom:209.504963px;}
.y4f{bottom:211.549500px;}
.y23{bottom:217.527000px;}
.yeb{bottom:222.000000px;}
.ya7{bottom:222.871590px;}
.ya8{bottom:223.324793px;}
.y111{bottom:225.240000px;}
.y77{bottom:229.482000px;}
.ya5{bottom:230.828462px;}
.yea{bottom:239.934000px;}
.y110{bottom:241.054500px;}
.y76{bottom:247.414500px;}
.y22{bottom:247.431000px;}
.y4e{bottom:249.219000px;}
.y7a{bottom:250.063785px;}
.y9a{bottom:251.991333px;}
.y9b{bottom:252.100331px;}
.ya4{bottom:253.741042px;}
.y10f{bottom:257.493000px;}
.ye9{bottom:257.866500px;}
.y75{bottom:265.347000px;}
.y21{bottom:265.363500px;}
.y99{bottom:271.364338px;}
.y10e{bottom:273.307500px;}
.ye8{bottom:275.799000px;}
.ya3{bottom:277.640342px;}
.y9c{bottom:279.929306px;}
.y9e{bottom:280.118618px;}
.y7b{bottom:280.135829px;}
.y98{bottom:282.378898px;}
.yc5{bottom:283.279500px;}
.y74{bottom:283.281000px;}
.y20{bottom:283.296000px;}
.y10d{bottom:289.746000px;}
.y7c{bottom:290.324297px;}
.y79{bottom:291.081548px;}
.ye7{bottom:293.731500px;}
.y4d{bottom:298.843500px;}
.y73{bottom:301.213500px;}
.y1f{bottom:301.228500px;}
.y10c{bottom:305.560500px;}
.ybb{bottom:306.157727px;}
.y7d{bottom:306.364250px;}
.y9f{bottom:306.777296px;}
.y9d{bottom:309.284255px;}
.y7e{bottom:309.307202px;}
.ye6{bottom:311.664000px;}
.y4c{bottom:316.776000px;}
.y72{bottom:319.146000px;}
.y1e{bottom:319.161000px;}
.y10b{bottom:321.997500px;}
.ye5{bottom:329.596500px;}
.y8f{bottom:331.806736px;}
.y97{bottom:333.017190px;}
.yba{bottom:333.309764px;}
.y4b{bottom:334.708500px;}
.y71{bottom:337.078500px;}
.y1d{bottom:337.095000px;}
.y10a{bottom:338.436000px;}
.y96{bottom:344.031750px;}
.y8e{bottom:344.198116px;}
.y82{bottom:346.096980px;}
.ye4{bottom:347.530500px;}
.y86{bottom:350.038127px;}
.y4a{bottom:352.641000px;}
.y109{bottom:354.250500px;}
.y70{bottom:355.011000px;}
.y1c{bottom:355.027500px;}
.ye3{bottom:365.463000px;}
.y83{bottom:366.766490px;}
.y88{bottom:370.248698px;}
.y89{bottom:370.357696px;}
.y49{bottom:370.573500px;}
.y108{bottom:370.689000px;}
.y6f{bottom:372.943500px;}
.y1b{bottom:372.960000px;}
.y81{bottom:373.249018px;}
.ye2{bottom:383.395500px;}
.yc4{bottom:384.912000px;}
.y107{bottom:386.503500px;}
.y84{bottom:387.281108px;}
.y48{bottom:388.506000px;}
.y6e{bottom:390.877500px;}
.y1a{bottom:390.892500px;}
.y80{bottom:393.017858px;}
.y95{bottom:394.314364px;}
.y85{bottom:398.043251px;}
.y8a{bottom:398.180933px;}
.y8c{bottom:398.375983px;}
.y94{bottom:399.420071px;}
.ye1{bottom:401.328000px;}
.y106{bottom:402.942000px;}
.y7f{bottom:405.409238px;}
.y47{bottom:406.800000px;}
.y19{bottom:408.825000px;}
.y105{bottom:418.756500px;}
.ye0{bottom:419.260500px;}
.y6d{bottom:422.539500px;}
.y46{bottom:424.732500px;}
.y8d{bottom:425.046134px;}
.y8b{bottom:427.553093px;}
.y87{bottom:429.532272px;}
.yc3{bottom:429.757500px;}
.y104{bottom:435.195000px;}
.ydf{bottom:437.193000px;}
.y45{bottom:442.665000px;}
.y18{bottom:447.243000px;}
.yc2{bottom:447.690000px;}
.yb9{bottom:450.018206px;}
.y103{bottom:451.008000px;}
.yde{bottom:455.127000px;}
.y44{bottom:460.599000px;}
.y102{bottom:467.446500px;}
.y6c{bottom:469.144500px;}
.y6b{bottom:469.353000px;}
.ydd{bottom:473.059500px;}
.y43{bottom:478.531500px;}
.y6a{bottom:487.078500px;}
.yc1{bottom:488.017500px;}
.ydc{bottom:490.992000px;}
.y42{bottom:496.464000px;}
.y101{bottom:498.697500px;}
.y17{bottom:500.032500px;}
.yc0{bottom:504.456000px;}
.y69{bottom:505.011000px;}
.ydb{bottom:508.924500px;}
.y41{bottom:514.396500px;}
.y16{bottom:516.471000px;}
.y68{bottom:522.943500px;}
.yda{bottom:526.857000px;}
.y40{bottom:532.329000px;}
.y67{bottom:540.876000px;}
.y100{bottom:544.021500px;}
.yd9{bottom:544.791000px;}
.y15{bottom:549.858000px;}
.y3f{bottom:550.263000px;}
.y78{bottom:550.782000px;}
.y66{bottom:559.164000px;}
.yff{bottom:561.954000px;}
.yd8{bottom:562.723500px;}
.y14{bottom:566.296500px;}
.y3e{bottom:568.195500px;}
.y65{bottom:577.096500px;}
.yfe{bottom:579.886500px;}
.yd7{bottom:580.656000px;}
.y13{bottom:582.735000px;}
.y3d{bottom:586.128000px;}
.y64{bottom:595.029000px;}
.yfd{bottom:597.820500px;}
.yd6{bottom:598.588500px;}
.y12{bottom:599.173500px;}
.y3c{bottom:604.060500px;}
.y63{bottom:612.961500px;}
.y11{bottom:615.610500px;}
.yfc{bottom:615.753000px;}
.yd5{bottom:616.521000px;}
.y3b{bottom:621.993000px;}
.y62{bottom:630.895500px;}
.y10{bottom:632.049000px;}
.yfb{bottom:633.685500px;}
.y3a{bottom:639.925500px;}
.yf{bottom:648.487500px;}
.y61{bottom:648.828000px;}
.yfa{bottom:651.618000px;}
.yd4{bottom:651.771000px;}
.y39{bottom:657.858000px;}
.ye{bottom:664.926000px;}
.y60{bottom:666.760500px;}
.yf9{bottom:669.550500px;}
.y38{bottom:675.792000px;}
.yd{bottom:681.364500px;}
.y5f{bottom:686.560500px;}
.yf8{bottom:687.483000px;}
.y37{bottom:693.724500px;}
.yc{bottom:697.803000px;}
.yd3{bottom:698.974500px;}
.y5e{bottom:704.494500px;}
.yf7{bottom:705.417000px;}
.y36{bottom:711.657000px;}
.yb{bottom:714.241500px;}
.yd2{bottom:716.908500px;}
.y5d{bottom:722.427000px;}
.yf6{bottom:723.349500px;}
.y35{bottom:729.589500px;}
.ya{bottom:730.680000px;}
.yd1{bottom:734.841000px;}
.yf5{bottom:741.282000px;}
.y9{bottom:747.118500px;}
.y5c{bottom:747.801000px;}
.y34{bottom:747.883500px;}
.yd0{bottom:752.773500px;}
.y5b{bottom:755.407500px;}
.yf4{bottom:759.214500px;}
.y8{bottom:763.557000px;}
.y5a{bottom:765.658500px;}
.y33{bottom:765.816000px;}
.ycf{bottom:770.706000px;}
.y32{bottom:783.748500px;}
.yce{bottom:788.638500px;}
.yf3{bottom:792.583500px;}
.y31{bottom:801.681000px;}
.y59{bottom:806.245500px;}
.y30{bottom:819.615000px;}
.ycd{bottom:820.591500px;}
.y58{bottom:824.178000px;}
.y7{bottom:828.847500px;}
.y2f{bottom:837.547500px;}
.yf2{bottom:837.907500px;}
.ycc{bottom:838.524000px;}
.y57{bottom:842.110500px;}
.y6{bottom:845.286000px;}
.y2e{bottom:855.480000px;}
.yf1{bottom:855.840000px;}
.ycb{bottom:856.456500px;}
.y56{bottom:860.044500px;}
.y5{bottom:861.724500px;}
.y2d{bottom:873.412500px;}
.yf0{bottom:873.774000px;}
.yca{bottom:874.236000px;}
.y55{bottom:877.977000px;}
.y2c{bottom:891.345000px;}
.yef{bottom:891.706500px;}
.yc9{bottom:892.168500px;}
.y4{bottom:893.046000px;}
.y54{bottom:895.909500px;}
.y2b{bottom:909.277500px;}
.yee{bottom:909.639000px;}
.yc8{bottom:910.101000px;}
.y53{bottom:913.842000px;}
.y2a{bottom:927.211500px;}
.yed{bottom:927.571500px;}
.yc7{bottom:927.726000px;}
.y52{bottom:931.774500px;}
.y29{bottom:945.144000px;}
.y3{bottom:945.504000px;}
.y51{bottom:949.707000px;}
.y28{bottom:963.076500px;}
.yc6{bottom:963.436500px;}
.y50{bottom:967.641000px;}
.y2{bottom:972.403500px;}
.y27{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.y26{bottom:1038.157500px;}
.h17{height:17.181746px;}
.h19{height:17.219097px;}
.h18{height:17.886828px;}
.h16{height:22.747379px;}
.h1d{height:23.850624px;}
.hc{height:25.925090px;}
.h13{height:27.932505px;}
.h9{height:29.415488px;}
.he{height:29.470402px;}
.hf{height:29.514718px;}
.h11{height:29.860501px;}
.h14{height:30.342388px;}
.h10{height:30.411229px;}
.h5{height:31.382100px;}
.hd{height:31.502825px;}
.h1a{height:37.004189px;}
.h1b{height:37.048505px;}
.h3{height:40.348800px;}
.h6{height:41.842920px;}
.h2{height:44.831700px;}
.ha{height:44.832000px;}
.h4{height:50.211840px;}
.h15{height:51.177816px;}
.h12{height:51.567915px;}
.h1c{height:53.072100px;}
.h1{height:60.254040px;}
.h7{height:85.271700px;}
.h8{height:97.794000px;}
.hb{height:463.469738px;}
.h0{height:1188.000000px;}
.w1{width:518.752273px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3a{left:5.103757px;}
.x18{left:6.755941px;}
.x32{left:15.719039px;}
.x19{left:19.574135px;}
.x33{left:38.671776px;}
.x17{left:46.066447px;}
.x1c{left:48.389830px;}
.x1a{left:53.954478px;}
.x31{left:55.440296px;}
.x30{left:86.860476px;}
.x35{left:92.407913px;}
.x1b{left:124.241139px;}
.x24{left:130.396672px;}
.x34{left:166.314463px;}
.x15{left:192.858406px;}
.x16{left:196.988866px;}
.x6{left:202.147500px;}
.x2e{left:203.528761px;}
.x40{left:206.256000px;}
.x2{left:208.972500px;}
.x8{left:217.090500px;}
.x41{left:220.369500px;}
.x9{left:224.563500px;}
.x5{left:227.584500px;}
.x1{left:243.865500px;}
.x3f{left:252.957000px;}
.x27{left:259.473547px;}
.x2d{left:267.126371px;}
.x4{left:268.885500px;}
.x21{left:274.383360px;}
.x23{left:275.513500px;}
.x26{left:277.372207px;}
.x22{left:280.951939px;}
.x25{left:283.659685px;}
.xb{left:324.376500px;}
.x3{left:330.904500px;}
.x7{left:334.569000px;}
.x36{left:344.297132px;}
.xf{left:346.993405px;}
.x38{left:351.869642px;}
.x10{left:354.152869px;}
.x2a{left:361.507382px;}
.x3e{left:363.050568px;}
.x37{left:367.014662px;}
.x1d{left:375.854994px;}
.x1e{left:379.159362px;}
.x3d{left:380.880387px;}
.x2f{left:381.913002px;}
.x29{left:383.318506px;}
.x2b{left:386.622874px;}
.x14{left:397.884114px;}
.xc{left:404.125500px;}
.x1f{left:409.087987px;}
.x28{left:410.631172px;}
.x12{left:417.062069px;}
.x20{left:419.500188px;}
.x2c{left:426.963700px;}
.x13{left:438.058574px;}
.x11{left:452.503711px;}
.xd{left:456.666000px;}
.x39{left:469.559068px;}
.xe{left:481.854000px;}
.x3c{left:494.645876px;}
.x3b{left:505.287547px;}
.xa{left:713.976000px;}
@media print{
.v9{vertical-align:-31.330304pt;}
.v8{vertical-align:-23.497728pt;}
.vc{vertical-align:-20.314667pt;}
.v5{vertical-align:-15.936000pt;}
.v7{vertical-align:-9.790720pt;}
.v1{vertical-align:-7.968000pt;}
.v6{vertical-align:-2.060131pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:19.280000pt;}
.va{vertical-align:21.009253pt;}
.v2{vertical-align:35.946667pt;}
.v4{vertical-align:39.850667pt;}
.v3{vertical-align:86.928000pt;}
.ls3c{letter-spacing:-0.118509pt;}
.ls36{letter-spacing:-0.078326pt;}
.ls35{letter-spacing:-0.048954pt;}
.ls3a{letter-spacing:-0.040591pt;}
.ls3e{letter-spacing:-0.010525pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000891pt;}
.ls25{letter-spacing:0.000996pt;}
.ls16{letter-spacing:0.001509pt;}
.ls37{letter-spacing:0.001713pt;}
.lsd{letter-spacing:0.001995pt;}
.ls10{letter-spacing:0.002079pt;}
.lse{letter-spacing:0.002906pt;}
.ls15{letter-spacing:0.003033pt;}
.ls20{letter-spacing:0.003449pt;}
.ls1e{letter-spacing:0.004352pt;}
.ls1b{letter-spacing:0.004777pt;}
.ls3d{letter-spacing:0.022029pt;}
.ls39{letter-spacing:0.067107pt;}
.ls31{letter-spacing:0.079403pt;}
.ls38{letter-spacing:0.079550pt;}
.ls2d{letter-spacing:0.100600pt;}
.ls2e{letter-spacing:0.108759pt;}
.ls2f{letter-spacing:0.120197pt;}
.ls3b{letter-spacing:0.505854pt;}
.ls1a{letter-spacing:1.269433pt;}
.ls1c{letter-spacing:1.374599pt;}
.ls12{letter-spacing:1.696060pt;}
.ls21{letter-spacing:1.701394pt;}
.lsf{letter-spacing:1.963079pt;}
.ls1f{letter-spacing:1.968412pt;}
.ls22{letter-spacing:2.444600pt;}
.ls41{letter-spacing:2.652911pt;}
.ls17{letter-spacing:2.655334pt;}
.ls9{letter-spacing:2.656546pt;}
.ls8{letter-spacing:2.658245pt;}
.ls24{letter-spacing:2.660667pt;}
.ls13{letter-spacing:3.800156pt;}
.ls3{letter-spacing:4.367567pt;}
.ls5{letter-spacing:4.755945pt;}
.ls4{letter-spacing:8.850079pt;}
.ls11{letter-spacing:8.855412pt;}
.ls1d{letter-spacing:11.514110pt;}
.ls2b{letter-spacing:13.964745pt;}
.lsc{letter-spacing:14.968782pt;}
.lsa{letter-spacing:16.014905pt;}
.ls7{letter-spacing:16.725745pt;}
.ls23{letter-spacing:17.116745pt;}
.lsb{letter-spacing:17.837053pt;}
.ls40{letter-spacing:19.040473pt;}
.ls29{letter-spacing:19.675079pt;}
.ls2a{letter-spacing:19.680412pt;}
.ls28{letter-spacing:21.605394pt;}
.ls14{letter-spacing:21.634906pt;}
.ls18{letter-spacing:22.345019pt;}
.ls19{letter-spacing:22.395996pt;}
.ls2c{letter-spacing:24.839412pt;}
.ls26{letter-spacing:25.514233pt;}
.ls3f{letter-spacing:25.682245pt;}
.ls6{letter-spacing:28.847567pt;}
.ls2{letter-spacing:29.190663pt;}
.ls27{letter-spacing:29.907945pt;}
.ls34{letter-spacing:61.035087pt;}
.ls33{letter-spacing:61.080304pt;}
.ls32{letter-spacing:64.445864pt;}
.ls30{letter-spacing:67.990578pt;}
.ws63{word-spacing:-53.133867pt;}
.ws55{word-spacing:-41.178747pt;}
.ws61{word-spacing:-40.291411pt;}
.ws6d{word-spacing:-36.019549pt;}
.ws58{word-spacing:-34.611401pt;}
.ws62{word-spacing:-28.118362pt;}
.ws59{word-spacing:-25.791179pt;}
.ws64{word-spacing:-25.738045pt;}
.ws99{word-spacing:-17.182714pt;}
.ws53{word-spacing:-14.760588pt;}
.wscd{word-spacing:-13.652838pt;}
.wsa5{word-spacing:-13.540566pt;}
.ws9d{word-spacing:-13.511194pt;}
.wsa0{word-spacing:-13.462240pt;}
.ws8b{word-spacing:-8.297635pt;}
.ws8c{word-spacing:-7.357237pt;}
.ws8a{word-spacing:-6.472155pt;}
.ws76{word-spacing:-2.964870pt;}
.wsac{word-spacing:-2.805468pt;}
.ws5f{word-spacing:-2.646067pt;}
.wsdc{word-spacing:-2.558413pt;}
.wsc3{word-spacing:-2.539799pt;}
.ws77{word-spacing:-2.486665pt;}
.wsc0{word-spacing:-2.433531pt;}
.wsc2{word-spacing:-2.380397pt;}
.ws9{word-spacing:-2.319309pt;}
.wsb5{word-spacing:-2.220996pt;}
.ws4e{word-spacing:-2.061594pt;}
.wsd6{word-spacing:-1.849059pt;}
.wsd7{word-spacing:-1.477121pt;}
.ws2b{word-spacing:-1.423988pt;}
.wsc8{word-spacing:-1.211452pt;}
.ws2f{word-spacing:-1.052051pt;}
.ws1e{word-spacing:-0.945783pt;}
.ws56{word-spacing:-0.892649pt;}
.ws3f{word-spacing:-0.839515pt;}
.ws6{word-spacing:-0.836864pt;}
.ws7c{word-spacing:-0.810852pt;}
.ws7d{word-spacing:-0.786381pt;}
.ws2a{word-spacing:-0.733247pt;}
.wsae{word-spacing:-0.467578pt;}
.ws9c{word-spacing:-0.244768pt;}
.ws95{word-spacing:-0.190185pt;}
.ws9a{word-spacing:-0.171338pt;}
.ws93{word-spacing:-0.141231pt;}
.ws97{word-spacing:-0.110390pt;}
.wsb6{word-spacing:-0.095641pt;}
.wsa8{word-spacing:-0.090319pt;}
.ws6a{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.wsa4{word-spacing:-0.045364pt;}
.wsa9{word-spacing:-0.031575pt;}
.ws9f{word-spacing:-0.022519pt;}
.ws23{word-spacing:0.000000pt;}
.ws57{word-spacing:0.010627pt;}
.ws3e{word-spacing:0.063761pt;}
.wsa3{word-spacing:0.105740pt;}
.wsa2{word-spacing:0.135112pt;}
.wsd2{word-spacing:0.170028pt;}
.wsa7{word-spacing:0.190797pt;}
.ws5d{word-spacing:0.223162pt;}
.ws9e{word-spacing:0.244768pt;}
.ws8e{word-spacing:0.245502pt;}
.ws1d{word-spacing:0.276296pt;}
.wsb4{word-spacing:0.435698pt;}
.ws17{word-spacing:0.488832pt;}
.ws32{word-spacing:0.541965pt;}
.ws2d{word-spacing:0.595099pt;}
.wse3{word-spacing:0.645581pt;}
.ws11{word-spacing:0.693402pt;}
.wsbc{word-spacing:0.701367pt;}
.ws6e{word-spacing:0.751251pt;}
.ws44{word-spacing:0.754501pt;}
.wsba{word-spacing:0.807635pt;}
.ws40{word-spacing:0.913903pt;}
.wsb2{word-spacing:1.020170pt;}
.wsd8{word-spacing:1.126438pt;}
.ws5a{word-spacing:1.229346pt;}
.ws4c{word-spacing:1.232706pt;}
.wscf{word-spacing:1.338973pt;}
.ws47{word-spacing:1.445241pt;}
.wsda{word-spacing:1.551509pt;}
.ws12{word-spacing:1.554176pt;}
.ws3d{word-spacing:1.604643pt;}
.ws24{word-spacing:1.764044pt;}
.wsc{word-spacing:1.841101pt;}
.wsbd{word-spacing:1.870312pt;}
.ws1f{word-spacing:1.923446pt;}
.ws5e{word-spacing:2.029714pt;}
.wsd5{word-spacing:2.135981pt;}
.ws1c{word-spacing:2.189115pt;}
.wse2{word-spacing:2.271488pt;}
.ws22{word-spacing:2.291126pt;}
.ws4b{word-spacing:2.295383pt;}
.ws6c{word-spacing:2.339766pt;}
.ws16{word-spacing:2.348517pt;}
.ws36{word-spacing:2.401651pt;}
.wse4{word-spacing:2.414950pt;}
.ws42{word-spacing:2.454785pt;}
.ws3{word-spacing:2.558413pt;}
.wsa{word-spacing:2.654054pt;}
.wsdd{word-spacing:2.701875pt;}
.ws2{word-spacing:2.749696pt;}
.ws6f{word-spacing:2.773588pt;}
.wsc9{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws60{word-spacing:2.937955pt;}
.wsab{word-spacing:2.986123pt;}
.ws5c{word-spacing:3.039257pt;}
.ws5b{word-spacing:3.092391pt;}
.ws31{word-spacing:3.198659pt;}
.ws54{word-spacing:3.251793pt;}
.ws38{word-spacing:3.304927pt;}
.ws3c{word-spacing:3.358060pt;}
.wsb{word-spacing:3.371366pt;}
.ws2c{word-spacing:3.411194pt;}
.ws41{word-spacing:3.676864pt;}
.ws7{word-spacing:3.753933pt;}
.ws29{word-spacing:3.783131pt;}
.wsd{word-spacing:3.897395pt;}
.ws45{word-spacing:3.942533pt;}
.wsde{word-spacing:4.136499pt;}
.wsc6{word-spacing:4.208202pt;}
.ws46{word-spacing:4.367604pt;}
.ws10{word-spacing:4.423424pt;}
.ws67{word-spacing:4.473872pt;}
.ws66{word-spacing:4.485707pt;}
.wsb7{word-spacing:4.501700pt;}
.wsd3{word-spacing:4.580139pt;}
.ws3a{word-spacing:4.633273pt;}
.ws18{word-spacing:4.686407pt;}
.wsb8{word-spacing:4.739541pt;}
.wsaf{word-spacing:4.792675pt;}
.wsc1{word-spacing:4.952076pt;}
.ws7a{word-spacing:5.058344pt;}
.wscb{word-spacing:5.111478pt;}
.ws72{word-spacing:5.164612pt;}
.ws1a{word-spacing:5.217746pt;}
.wsce{word-spacing:5.377147pt;}
.ws82{word-spacing:5.528439pt;}
.ws83{word-spacing:5.536549pt;}
.ws88{word-spacing:5.589683pt;}
.wsdb{word-spacing:5.666765pt;}
.wsb0{word-spacing:5.695951pt;}
.wsd4{word-spacing:5.802218pt;}
.wsf{word-spacing:5.953690pt;}
.ws30{word-spacing:6.014754pt;}
.wsc5{word-spacing:6.121021pt;}
.ws84{word-spacing:6.174155pt;}
.wsd9{word-spacing:6.227289pt;}
.ws68{word-spacing:6.280423pt;}
.ws70{word-spacing:6.386691pt;}
.wsbf{word-spacing:6.439825pt;}
.wsca{word-spacing:6.546092pt;}
.ws2e{word-spacing:6.599226pt;}
.wsbb{word-spacing:6.705494pt;}
.ws49{word-spacing:6.758628pt;}
.ws34{word-spacing:6.864896pt;}
.ws1b{word-spacing:6.918029pt;}
.ws73{word-spacing:7.024297pt;}
.wsb9{word-spacing:7.396234pt;}
.wse1{word-spacing:7.531776pt;}
.ws4f{word-spacing:7.608770pt;}
.wsb3{word-spacing:7.821305pt;}
.ws28{word-spacing:7.874439pt;}
.ws20{word-spacing:7.907359pt;}
.wse{word-spacing:8.009984pt;}
.ws21{word-spacing:8.018940pt;}
.ws79{word-spacing:8.033841pt;}
.ws14{word-spacing:8.057805pt;}
.wsb1{word-spacing:8.193242pt;}
.ws8{word-spacing:8.201267pt;}
.wscc{word-spacing:8.246376pt;}
.wsc4{word-spacing:8.299510pt;}
.ws27{word-spacing:8.352644pt;}
.ws3b{word-spacing:8.512045pt;}
.wsad{word-spacing:8.618313pt;}
.ws48{word-spacing:9.149652pt;}
.wsaa{word-spacing:9.372877pt;}
.ws19{word-spacing:9.468455pt;}
.ws25{word-spacing:9.521589pt;}
.ws52{word-spacing:9.680991pt;}
.wse0{word-spacing:9.683712pt;}
.ws50{word-spacing:9.734124pt;}
.wsc7{word-spacing:9.999794pt;}
.ws85{word-spacing:10.082612pt;}
.ws86{word-spacing:10.106061pt;}
.ws71{word-spacing:10.371731pt;}
.ws33{word-spacing:10.531132pt;}
.wsbe{word-spacing:10.956203pt;}
.ws26{word-spacing:11.009337pt;}
.ws78{word-spacing:11.062471pt;}
.ws74{word-spacing:11.115605pt;}
.ws51{word-spacing:11.275007pt;}
.ws69{word-spacing:11.381274pt;}
.ws80{word-spacing:12.254610pt;}
.ws81{word-spacing:12.284550pt;}
.wsa1{word-spacing:13.582666pt;}
.ws6b{word-spacing:14.091101pt;}
.wsd1{word-spacing:14.879186pt;}
.ws94{word-spacing:16.824618pt;}
.ws96{word-spacing:16.853256pt;}
.ws98{word-spacing:16.909308pt;}
.ws9b{word-spacing:17.008194pt;}
.ws37{word-spacing:17.109026pt;}
.wsdf{word-spacing:18.482739pt;}
.ws87{word-spacing:20.028306pt;}
.wsd0{word-spacing:20.029746pt;}
.ws7b{word-spacing:20.031186pt;}
.ws7e{word-spacing:20.034066pt;}
.ws75{word-spacing:20.297137pt;}
.ws4d{word-spacing:20.350271pt;}
.ws35{word-spacing:21.588519pt;}
.ws43{word-spacing:22.683737pt;}
.ws4a{word-spacing:23.846639pt;}
.ws13{word-spacing:24.526256pt;}
.ws5{word-spacing:26.515067pt;}
.ws7f{word-spacing:26.960626pt;}
.ws39{word-spacing:27.842146pt;}
.ws0{word-spacing:28.615887pt;}
.ws91{word-spacing:39.512082pt;}
.ws92{word-spacing:49.426573pt;}
.ws15{word-spacing:71.667439pt;}
.ws89{word-spacing:136.615464pt;}
.ws90{word-spacing:139.473375pt;}
.ws65{word-spacing:351.916226pt;}
.ws8d{word-spacing:453.911323pt;}
.ws8f{word-spacing:467.636852pt;}
.wsa6{word-spacing:1597.407288pt;}
._7{margin-left:-24.532070pt;}
._1b{margin-left:-22.794426pt;}
._1{margin-left:-7.192228pt;}
._1a{margin-left:-5.993540pt;}
._d{margin-left:-5.066836pt;}
._8{margin-left:-4.112589pt;}
._0{margin-left:-2.371905pt;}
._5{margin-left:-1.386803pt;}
._6{width:1.338982pt;}
._2{width:2.371905pt;}
._9{width:3.519604pt;}
._3{width:4.743810pt;}
._e{width:13.104946pt;}
._f{width:14.625619pt;}
._b{width:15.974175pt;}
._c{width:17.573514pt;}
._4{width:18.630868pt;}
._12{width:19.610657pt;}
._11{width:20.843566pt;}
._10{width:22.562774pt;}
._19{width:23.949578pt;}
._a{width:25.123845pt;}
._16{width:27.031342pt;}
._17{width:27.926200pt;}
._18{width:50.055820pt;}
._14{width:61.103947pt;}
._13{width:71.731200pt;}
._15{width:93.623970pt;}
.fs8{font-size:21.784352pt;}
.fsa{font-size:21.833306pt;}
.fsb{font-size:22.518656pt;}
.fsc{font-size:22.567610pt;}
.fs5{font-size:28.637856pt;}
.fsf{font-size:31.880533pt;}
.fs7{font-size:32.554144pt;}
.fs9{font-size:32.603098pt;}
.fs6{font-size:36.715200pt;}
.fs4{font-size:37.193600pt;}
.fsd{font-size:40.876256pt;}
.fse{font-size:40.925210pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:42.547817pt;}
.yab{bottom:45.678808pt;}
.y93{bottom:85.479105pt;}
.ybe{bottom:93.102608pt;}
.ybd{bottom:93.836912pt;}
.y92{bottom:96.503863pt;}
.yb1{bottom:103.275778pt;}
.yb0{bottom:111.842658pt;}
.yb8{bottom:116.697223pt;}
.yaf{bottom:120.409538pt;}
.yb7{bottom:123.428343pt;}
.yae{bottom:128.976418pt;}
.yb6{bottom:130.159463pt;}
.ya0{bottom:134.116546pt;}
.yb5{bottom:136.890583pt;}
.yad{bottom:137.543298pt;}
.yb4{bottom:143.621703pt;}
.yac{bottom:146.110178pt;}
.yb3{bottom:150.352823pt;}
.yb2{bottom:157.083943pt;}
.ya6{bottom:168.078106pt;}
.yaa{bottom:168.322874pt;}
.y25{bottom:172.104000pt;}
.ybc{bottom:173.891346pt;}
.y91{bottom:175.212073pt;}
.ya2{bottom:176.288033pt;}
.yec{bottom:177.182667pt;}
.ya1{bottom:180.913128pt;}
.ya9{bottom:181.769816pt;}
.y24{bottom:182.730667pt;}
.y112{bottom:185.601333pt;}
.y90{bottom:186.226633pt;}
.y4f{bottom:188.044000pt;}
.y23{bottom:193.357333pt;}
.yeb{bottom:197.333333pt;}
.ya7{bottom:198.108080pt;}
.ya8{bottom:198.510927pt;}
.y111{bottom:200.213333pt;}
.y77{bottom:203.984000pt;}
.ya5{bottom:205.180855pt;}
.yea{bottom:213.274667pt;}
.y110{bottom:214.270667pt;}
.y76{bottom:219.924000pt;}
.y22{bottom:219.938667pt;}
.y4e{bottom:221.528000pt;}
.y7a{bottom:222.278920pt;}
.y9a{bottom:223.992296pt;}
.y9b{bottom:224.089183pt;}
.ya4{bottom:225.547593pt;}
.y10f{bottom:228.882667pt;}
.ye9{bottom:229.214667pt;}
.y75{bottom:235.864000pt;}
.y21{bottom:235.878667pt;}
.y99{bottom:241.212745pt;}
.y10e{bottom:242.940000pt;}
.ye8{bottom:245.154667pt;}
.ya3{bottom:246.791415pt;}
.y9c{bottom:248.826049pt;}
.y9e{bottom:248.994327pt;}
.y7b{bottom:249.009625pt;}
.y98{bottom:251.003465pt;}
.yc5{bottom:251.804000pt;}
.y74{bottom:251.805333pt;}
.y20{bottom:251.818667pt;}
.y10d{bottom:257.552000pt;}
.y7c{bottom:258.066041pt;}
.y79{bottom:258.739153pt;}
.ye7{bottom:261.094667pt;}
.y4d{bottom:265.638667pt;}
.y73{bottom:267.745333pt;}
.y1f{bottom:267.758667pt;}
.y10c{bottom:271.609333pt;}
.ybb{bottom:272.140201pt;}
.y7d{bottom:272.323777pt;}
.y9f{bottom:272.690929pt;}
.y9d{bottom:274.919338pt;}
.y7e{bottom:274.939735pt;}
.ye6{bottom:277.034667pt;}
.y4c{bottom:281.578667pt;}
.y72{bottom:283.685333pt;}
.y1e{bottom:283.698667pt;}
.y10b{bottom:286.220000pt;}
.ye5{bottom:292.974667pt;}
.y8f{bottom:294.939321pt;}
.y97{bottom:296.015280pt;}
.yba{bottom:296.275346pt;}
.y4b{bottom:297.518667pt;}
.y71{bottom:299.625333pt;}
.y1d{bottom:299.640000pt;}
.y10a{bottom:300.832000pt;}
.y96{bottom:305.806000pt;}
.y8e{bottom:305.953881pt;}
.y82{bottom:307.641760pt;}
.ye4{bottom:308.916000pt;}
.y86{bottom:311.145002pt;}
.y4a{bottom:313.458667pt;}
.y109{bottom:314.889333pt;}
.y70{bottom:315.565333pt;}
.y1c{bottom:315.580000pt;}
.ye3{bottom:324.856000pt;}
.y83{bottom:326.014658pt;}
.y88{bottom:329.109953pt;}
.y89{bottom:329.206841pt;}
.y49{bottom:329.398667pt;}
.y108{bottom:329.501333pt;}
.y6f{bottom:331.505333pt;}
.y1b{bottom:331.520000pt;}
.y81{bottom:331.776905pt;}
.ye2{bottom:340.796000pt;}
.yc4{bottom:342.144000pt;}
.y107{bottom:343.558667pt;}
.y84{bottom:344.249874pt;}
.y48{bottom:345.338667pt;}
.y6e{bottom:347.446667pt;}
.y1a{bottom:347.460000pt;}
.y80{bottom:349.349207pt;}
.y95{bottom:350.501657pt;}
.y85{bottom:353.816223pt;}
.y8a{bottom:353.938607pt;}
.y8c{bottom:354.111985pt;}
.y94{bottom:355.040063pt;}
.ye1{bottom:356.736000pt;}
.y106{bottom:358.170667pt;}
.y7f{bottom:360.363767pt;}
.y47{bottom:361.600000pt;}
.y19{bottom:363.400000pt;}
.y105{bottom:372.228000pt;}
.ye0{bottom:372.676000pt;}
.y6d{bottom:375.590667pt;}
.y46{bottom:377.540000pt;}
.y8d{bottom:377.818785pt;}
.y8b{bottom:380.047194pt;}
.y87{bottom:381.806464pt;}
.yc3{bottom:382.006667pt;}
.y104{bottom:386.840000pt;}
.ydf{bottom:388.616000pt;}
.y45{bottom:393.480000pt;}
.y18{bottom:397.549333pt;}
.yc2{bottom:397.946667pt;}
.yb9{bottom:400.016183pt;}
.y103{bottom:400.896000pt;}
.yde{bottom:404.557333pt;}
.y44{bottom:409.421333pt;}
.y102{bottom:415.508000pt;}
.y6c{bottom:417.017333pt;}
.y6b{bottom:417.202667pt;}
.ydd{bottom:420.497333pt;}
.y43{bottom:425.361333pt;}
.y6a{bottom:432.958667pt;}
.yc1{bottom:433.793333pt;}
.ydc{bottom:436.437333pt;}
.y42{bottom:441.301333pt;}
.y101{bottom:443.286667pt;}
.y17{bottom:444.473333pt;}
.yc0{bottom:448.405333pt;}
.y69{bottom:448.898667pt;}
.ydb{bottom:452.377333pt;}
.y41{bottom:457.241333pt;}
.y16{bottom:459.085333pt;}
.y68{bottom:464.838667pt;}
.yda{bottom:468.317333pt;}
.y40{bottom:473.181333pt;}
.y67{bottom:480.778667pt;}
.y100{bottom:483.574667pt;}
.yd9{bottom:484.258667pt;}
.y15{bottom:488.762667pt;}
.y3f{bottom:489.122667pt;}
.y78{bottom:489.584000pt;}
.y66{bottom:497.034667pt;}
.yff{bottom:499.514667pt;}
.yd8{bottom:500.198667pt;}
.y14{bottom:503.374667pt;}
.y3e{bottom:505.062667pt;}
.y65{bottom:512.974667pt;}
.yfe{bottom:515.454667pt;}
.yd7{bottom:516.138667pt;}
.y13{bottom:517.986667pt;}
.y3d{bottom:521.002667pt;}
.y64{bottom:528.914667pt;}
.yfd{bottom:531.396000pt;}
.yd6{bottom:532.078667pt;}
.y12{bottom:532.598667pt;}
.y3c{bottom:536.942667pt;}
.y63{bottom:544.854667pt;}
.y11{bottom:547.209333pt;}
.yfc{bottom:547.336000pt;}
.yd5{bottom:548.018667pt;}
.y3b{bottom:552.882667pt;}
.y62{bottom:560.796000pt;}
.y10{bottom:561.821333pt;}
.yfb{bottom:563.276000pt;}
.y3a{bottom:568.822667pt;}
.yf{bottom:576.433333pt;}
.y61{bottom:576.736000pt;}
.yfa{bottom:579.216000pt;}
.yd4{bottom:579.352000pt;}
.y39{bottom:584.762667pt;}
.ye{bottom:591.045333pt;}
.y60{bottom:592.676000pt;}
.yf9{bottom:595.156000pt;}
.y38{bottom:600.704000pt;}
.yd{bottom:605.657333pt;}
.y5f{bottom:610.276000pt;}
.yf8{bottom:611.096000pt;}
.y37{bottom:616.644000pt;}
.yc{bottom:620.269333pt;}
.yd3{bottom:621.310667pt;}
.y5e{bottom:626.217333pt;}
.yf7{bottom:627.037333pt;}
.y36{bottom:632.584000pt;}
.yb{bottom:634.881333pt;}
.yd2{bottom:637.252000pt;}
.y5d{bottom:642.157333pt;}
.yf6{bottom:642.977333pt;}
.y35{bottom:648.524000pt;}
.ya{bottom:649.493333pt;}
.yd1{bottom:653.192000pt;}
.yf5{bottom:658.917333pt;}
.y9{bottom:664.105333pt;}
.y5c{bottom:664.712000pt;}
.y34{bottom:664.785333pt;}
.yd0{bottom:669.132000pt;}
.y5b{bottom:671.473333pt;}
.yf4{bottom:674.857333pt;}
.y8{bottom:678.717333pt;}
.y5a{bottom:680.585333pt;}
.y33{bottom:680.725333pt;}
.ycf{bottom:685.072000pt;}
.y32{bottom:696.665333pt;}
.yce{bottom:701.012000pt;}
.yf3{bottom:704.518667pt;}
.y31{bottom:712.605333pt;}
.y59{bottom:716.662667pt;}
.y30{bottom:728.546667pt;}
.ycd{bottom:729.414667pt;}
.y58{bottom:732.602667pt;}
.y7{bottom:736.753333pt;}
.y2f{bottom:744.486667pt;}
.yf2{bottom:744.806667pt;}
.ycc{bottom:745.354667pt;}
.y57{bottom:748.542667pt;}
.y6{bottom:751.365333pt;}
.y2e{bottom:760.426667pt;}
.yf1{bottom:760.746667pt;}
.ycb{bottom:761.294667pt;}
.y56{bottom:764.484000pt;}
.y5{bottom:765.977333pt;}
.y2d{bottom:776.366667pt;}
.yf0{bottom:776.688000pt;}
.yca{bottom:777.098667pt;}
.y55{bottom:780.424000pt;}
.y2c{bottom:792.306667pt;}
.yef{bottom:792.628000pt;}
.yc9{bottom:793.038667pt;}
.y4{bottom:793.818667pt;}
.y54{bottom:796.364000pt;}
.y2b{bottom:808.246667pt;}
.yee{bottom:808.568000pt;}
.yc8{bottom:808.978667pt;}
.y53{bottom:812.304000pt;}
.y2a{bottom:824.188000pt;}
.yed{bottom:824.508000pt;}
.yc7{bottom:824.645333pt;}
.y52{bottom:828.244000pt;}
.y29{bottom:840.128000pt;}
.y3{bottom:840.448000pt;}
.y51{bottom:844.184000pt;}
.y28{bottom:856.068000pt;}
.yc6{bottom:856.388000pt;}
.y50{bottom:860.125333pt;}
.y2{bottom:864.358667pt;}
.y27{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.y26{bottom:922.806667pt;}
.h17{height:15.272663pt;}
.h19{height:15.305864pt;}
.h18{height:15.899403pt;}
.h16{height:20.219892pt;}
.h1d{height:21.200555pt;}
.hc{height:23.044525pt;}
.h13{height:24.828893pt;}
.h9{height:26.147101pt;}
.he{height:26.195913pt;}
.hf{height:26.235305pt;}
.h11{height:26.542667pt;}
.h14{height:26.971011pt;}
.h10{height:27.032203pt;}
.h5{height:27.895200pt;}
.hd{height:28.002511pt;}
.h1a{height:32.892612pt;}
.h1b{height:32.932005pt;}
.h3{height:35.865600pt;}
.h6{height:37.193707pt;}
.h2{height:39.850400pt;}
.ha{height:39.850667pt;}
.h4{height:44.632747pt;}
.h15{height:45.491392pt;}
.h12{height:45.838146pt;}
.h1c{height:47.175200pt;}
.h1{height:53.559147pt;}
.h7{height:75.797067pt;}
.h8{height:86.928000pt;}
.hb{height:411.973100pt;}
.h0{height:1056.000000pt;}
.w1{width:461.113132pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:4.536673pt;}
.x18{left:6.005281pt;}
.x32{left:13.972479pt;}
.x19{left:17.399231pt;}
.x33{left:34.374912pt;}
.x17{left:40.947953pt;}
.x1c{left:43.013183pt;}
.x1a{left:47.959536pt;}
.x31{left:49.280263pt;}
.x30{left:77.209312pt;}
.x35{left:82.140367pt;}
.x1b{left:110.436568pt;}
.x24{left:115.908153pt;}
.x34{left:147.835079pt;}
.x15{left:171.429694pt;}
.x16{left:175.101214pt;}
.x6{left:179.686667pt;}
.x2e{left:180.914454pt;}
.x40{left:183.338667pt;}
.x2{left:185.753333pt;}
.x8{left:192.969333pt;}
.x41{left:195.884000pt;}
.x9{left:199.612000pt;}
.x5{left:202.297333pt;}
.x1{left:216.769333pt;}
.x3f{left:224.850667pt;}
.x27{left:230.643153pt;}
.x2d{left:237.445663pt;}
.x4{left:239.009333pt;}
.x21{left:243.896320pt;}
.x23{left:244.900889pt;}
.x26{left:246.553073pt;}
.x22{left:249.735057pt;}
.x25{left:252.141942pt;}
.xb{left:288.334667pt;}
.x3{left:294.137333pt;}
.x7{left:297.394667pt;}
.x36{left:306.041895pt;}
.xf{left:308.438582pt;}
.x38{left:312.773015pt;}
.x10{left:314.802550pt;}
.x2a{left:321.339895pt;}
.x3e{left:322.711616pt;}
.x37{left:326.235255pt;}
.x1d{left:334.093328pt;}
.x1e{left:337.030544pt;}
.x3d{left:338.560344pt;}
.x2f{left:339.478224pt;}
.x29{left:340.727561pt;}
.x2b{left:343.664777pt;}
.x14{left:353.674768pt;}
.xc{left:359.222667pt;}
.x1f{left:363.633766pt;}
.x28{left:365.005487pt;}
.x12{left:370.721839pt;}
.x20{left:372.889056pt;}
.x2c{left:379.523289pt;}
.x13{left:389.385399pt;}
.x11{left:402.225521pt;}
.xd{left:405.925333pt;}
.x39{left:417.385839pt;}
.xe{left:428.314667pt;}
.x3c{left:439.685223pt;}
.x3b{left:449.144487pt;}
.xa{left:634.645333pt;}
}




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