
    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_1ba2d348b6d192db55f1ceef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_84e021be57369cb44a43f6cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.856934;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_fa733cc4cd0953c7a4d5d94d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_3a2c4596a117d2b08fc1124e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.909180;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_eb0c048aaef3aa51030ad945.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_1f22696485e00dde83e4e088.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_819a873d00ebd44dce6609c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875977;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_f5a82004b54b501ef9999bdd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_ee628b88ba229868e8deca02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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_34077f42a9adbae8fcd795ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_0d445f472ea7a800d38837ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.965820;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_609b4548f79135e29e3f598a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_4ffdfa8e984c12cb2294265e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000364;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_e964495d9007d0bfd176ac0f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7a9ec6bf5ec1ff28ffc9b9fd.woff2')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_72216a22d43b90176276a628.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_e964495d9007d0bfd176ac0f.woff2')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_b448f1a23d0fc0279df7b756.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_ef2856cd8de524e03f0ada07.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000293;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_576b5e819685dfaef0015a9b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_1dbeb9ae979c06b059d794be.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_cb0322e3fb760ebd1169c79e.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_dcdd48a596d8c38dfc398aa4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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_2863bb44fcbaea14868664cf.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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_83aa6a03cdd4651718656787.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.740234;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_88bef634b40aeaefc93e1746.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.m6{transform:matrix(0.218502,0.000000,-0.072835,0.239155,0,0);-ms-transform:matrix(0.218502,0.000000,-0.072835,0.239155,0,0);-webkit-transform:matrix(0.218502,0.000000,-0.072835,0.239155,0,0);}
.m5{transform:matrix(0.228409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228409,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.230934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230934,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.230936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230936,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.va{vertical-align:-40.314960px;}
.v9{vertical-align:-25.194960px;}
.v8{vertical-align:-15.120000px;}
.v2{vertical-align:-13.680000px;}
.v5{vertical-align:-9.725760px;}
.v6{vertical-align:-6.120000px;}
.vd{vertical-align:-2.250000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.228120px;}
.ve{vertical-align:6.000000px;}
.v11{vertical-align:7.500000px;}
.v4{vertical-align:13.680000px;}
.vf{vertical-align:19.500000px;}
.v3{vertical-align:24.120000px;}
.v10{vertical-align:28.500000px;}
.v7{vertical-align:37.777320px;}
.vc{vertical-align:38.880000px;}
.vb{vertical-align:43.920000px;}
.ls6b{letter-spacing:-0.360720px;}
.ls6c{letter-spacing:-0.240480px;}
.ls1e{letter-spacing:-0.143640px;}
.ls4{letter-spacing:-0.131760px;}
.ls69{letter-spacing:-0.120240px;}
.ls3{letter-spacing:-0.083880px;}
.ls5{letter-spacing:-0.065880px;}
.ls6a{letter-spacing:-0.060120px;}
.ls2{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.000720px;}
.ls0{letter-spacing:0.008388px;}
.ls44{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.009000px;}
.ls10{letter-spacing:0.024840px;}
.ls38{letter-spacing:0.027360px;}
.ls53{letter-spacing:0.045720px;}
.ls55{letter-spacing:0.047160px;}
.ls3e{letter-spacing:0.052560px;}
.ls9{letter-spacing:0.052704px;}
.ls65{letter-spacing:0.054000px;}
.ls6f{letter-spacing:0.060120px;}
.ls21{letter-spacing:0.061560px;}
.ls7{letter-spacing:0.065880px;}
.ls22{letter-spacing:0.077400px;}
.ls13{letter-spacing:0.083160px;}
.ls35{letter-spacing:0.086760px;}
.ls15{letter-spacing:0.091800px;}
.ls3a{letter-spacing:0.098820px;}
.ls19{letter-spacing:0.117000px;}
.ls20{letter-spacing:0.118080px;}
.ls68{letter-spacing:0.120240px;}
.ls1{letter-spacing:0.131760px;}
.ls5b{letter-spacing:0.155160px;}
.ls1f{letter-spacing:0.158472px;}
.ls67{letter-spacing:0.162324px;}
.ls26{letter-spacing:0.166680px;}
.ls43{letter-spacing:0.177876px;}
.ls6{letter-spacing:0.197640px;}
.ls58{letter-spacing:0.203760px;}
.ls52{letter-spacing:0.220320px;}
.ls1c{letter-spacing:0.230580px;}
.ls25{letter-spacing:0.235800px;}
.ls54{letter-spacing:0.245160px;}
.ls49{letter-spacing:0.256932px;}
.lsc{letter-spacing:0.263520px;}
.ls6d{letter-spacing:0.300600px;}
.ls23{letter-spacing:0.310320px;}
.ls8{letter-spacing:0.329400px;}
.ls24{letter-spacing:0.389160px;}
.ls63{letter-spacing:0.395280px;}
.ls31{letter-spacing:0.408456px;}
.ls66{letter-spacing:0.428220px;}
.ls4f{letter-spacing:0.461160px;}
.ls32{letter-spacing:0.507276px;}
.ls1b{letter-spacing:0.592920px;}
.ls18{letter-spacing:0.922320px;}
.lsd{letter-spacing:1.054080px;}
.ls47{letter-spacing:1.712880px;}
.ls57{letter-spacing:1.910520px;}
.ls14{letter-spacing:2.000160px;}
.ls11{letter-spacing:2.042280px;}
.ls1a{letter-spacing:2.161440px;}
.ls4e{letter-spacing:2.259684px;}
.ls16{letter-spacing:2.371680px;}
.ls4d{letter-spacing:2.877480px;}
.ls46{letter-spacing:2.950560px;}
.ls59{letter-spacing:3.047760px;}
.ls33{letter-spacing:3.096360px;}
.ls34{letter-spacing:3.491640px;}
.ls3b{letter-spacing:3.830400px;}
.ls36{letter-spacing:3.845880px;}
.ls3f{letter-spacing:3.851280px;}
.ls3d{letter-spacing:3.854880px;}
.ls2c{letter-spacing:4.079880px;}
.ls39{letter-spacing:4.081680px;}
.ls37{letter-spacing:4.205880px;}
.ls42{letter-spacing:4.211280px;}
.ls2f{letter-spacing:4.260600px;}
.ls29{letter-spacing:4.275000px;}
.ls2b{letter-spacing:4.439880px;}
.ls3c{letter-spacing:4.457160px;}
.ls2e{letter-spacing:4.620600px;}
.ls5c{letter-spacing:5.988492px;}
.ls1d{letter-spacing:5.995080px;}
.lsa{letter-spacing:9.618480px;}
.ls6e{letter-spacing:10.521000px;}
.ls5a{letter-spacing:10.606680px;}
.ls40{letter-spacing:10.936080px;}
.ls41{letter-spacing:11.001960px;}
.lsb{letter-spacing:12.451320px;}
.ls17{letter-spacing:14.888880px;}
.ls62{letter-spacing:15.679440px;}
.ls4c{letter-spacing:16.826400px;}
.lse{letter-spacing:18.314640px;}
.ls28{letter-spacing:18.446400px;}
.ls2d{letter-spacing:18.479880px;}
.ls30{letter-spacing:18.512280px;}
.ls4a{letter-spacing:18.578160px;}
.ls2a{letter-spacing:18.675000px;}
.ls45{letter-spacing:19.194120px;}
.ls27{letter-spacing:19.895760px;}
.ls48{letter-spacing:20.422800px;}
.ls56{letter-spacing:21.407760px;}
.ls5f{letter-spacing:22.439880px;}
.ls60{letter-spacing:22.620600px;}
.ls5d{letter-spacing:22.635000px;}
.ls61{letter-spacing:22.980600px;}
.ls4b{letter-spacing:31.044240px;}
.ls5e{letter-spacing:32.940000px;}
.lsf{letter-spacing:35.772840px;}
.ls51{letter-spacing:35.867609px;}
.ls50{letter-spacing:37.506292px;}
.ls71{letter-spacing:62.997000px;}
.ls72{letter-spacing:87.150144px;}
.ls70{letter-spacing:685.139820px;}
.ls73{letter-spacing:1137.252072px;}
.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;}
}
.ws1b{word-spacing:-65.880000px;}
.ws1f{word-spacing:-47.880000px;}
.ws1e{word-spacing:-47.736360px;}
.ws21{word-spacing:-44.534880px;}
.ws20{word-spacing:-44.139600px;}
.ws1d{word-spacing:-39.626640px;}
.ws54{word-spacing:-37.506292px;}
.ws55{word-spacing:-35.867609px;}
.wsb2{word-spacing:-31.500000px;}
.ws48{word-spacing:-26.988120px;}
.wsb5{word-spacing:-16.253174px;}
.ws18{word-spacing:-15.086520px;}
.ws2{word-spacing:-15.020640px;}
.ws19{word-spacing:-14.954760px;}
.ws1a{word-spacing:-14.888880px;}
.ws0{word-spacing:-14.823000px;}
.ws1{word-spacing:-14.757120px;}
.ws1c{word-spacing:-14.493600px;}
.ws5d{word-spacing:-14.361840px;}
.ws7b{word-spacing:-13.707360px;}
.ws7d{word-spacing:-13.587120px;}
.ws7e{word-spacing:-13.527000px;}
.ws7c{word-spacing:-13.466880px;}
.ws93{word-spacing:-13.346640px;}
.ws43{word-spacing:-9.519120px;}
.ws15{word-spacing:-3.755160px;}
.ws44{word-spacing:-3.557520px;}
.ws47{word-spacing:-3.491640px;}
.ws12{word-spacing:-3.359880px;}
.ws4a{word-spacing:-2.964600px;}
.wsaf{word-spacing:-2.798174px;}
.wsab{word-spacing:-2.765520px;}
.wsb3{word-spacing:-2.739674px;}
.wsad{word-spacing:-2.705400px;}
.ws3d{word-spacing:-2.701080px;}
.wsb1{word-spacing:-2.681174px;}
.wsac{word-spacing:-2.645280px;}
.ws3e{word-spacing:-2.569320px;}
.ws73{word-spacing:-2.305800px;}
.ws5f{word-spacing:-2.239920px;}
.ws74{word-spacing:-1.910520px;}
.ws75{word-spacing:-1.844640px;}
.ws92{word-spacing:-1.803600px;}
.ws8{word-spacing:-1.581120px;}
.ws7{word-spacing:-1.515240px;}
.ws39{word-spacing:-1.449360px;}
.ws90{word-spacing:-1.322640px;}
.wsc{word-spacing:-1.317600px;}
.ws91{word-spacing:-1.202400px;}
.wsd{word-spacing:-1.185840px;}
.wsaa{word-spacing:-1.082160px;}
.wsa7{word-spacing:-1.022040px;}
.wsa9{word-spacing:-0.901800px;}
.wsa8{word-spacing:-0.721440px;}
.wsa6{word-spacing:-0.601200px;}
.ws4c{word-spacing:-0.461160px;}
.ws37{word-spacing:-0.395280px;}
.ws8b{word-spacing:-0.360720px;}
.ws4b{word-spacing:-0.329400px;}
.ws4d{word-spacing:-0.263520px;}
.ws50{word-spacing:-0.197640px;}
.ws87{word-spacing:-0.180360px;}
.ws6{word-spacing:-0.131760px;}
.ws9e{word-spacing:-0.120240px;}
.ws45{word-spacing:-0.069200px;}
.ws9{word-spacing:-0.065880px;}
.ws4{word-spacing:0.000000px;}
.ws99{word-spacing:0.060120px;}
.ws2d{word-spacing:0.065880px;}
.ws3{word-spacing:0.083880px;}
.ws85{word-spacing:0.120240px;}
.ws3c{word-spacing:0.131760px;}
.ws5{word-spacing:0.167760px;}
.ws89{word-spacing:0.180360px;}
.ws53{word-spacing:0.197640px;}
.ws88{word-spacing:0.240480px;}
.ws40{word-spacing:0.263520px;}
.ws8a{word-spacing:0.360720px;}
.ws11{word-spacing:0.395280px;}
.ws28{word-spacing:0.461160px;}
.ws27{word-spacing:0.592920px;}
.ws10{word-spacing:0.658800px;}
.wsa3{word-spacing:0.721440px;}
.wsa2{word-spacing:0.901800px;}
.wsf{word-spacing:0.922320px;}
.ws80{word-spacing:0.988200px;}
.ws95{word-spacing:1.022040px;}
.ws96{word-spacing:1.142280px;}
.ws97{word-spacing:1.262520px;}
.ws94{word-spacing:1.563120px;}
.ws5a{word-spacing:1.712880px;}
.ws5b{word-spacing:1.844640px;}
.ws63{word-spacing:1.976400px;}
.ws59{word-spacing:2.042280px;}
.ws62{word-spacing:2.108160px;}
.ws30{word-spacing:2.371680px;}
.wsa0{word-spacing:2.464920px;}
.wsa1{word-spacing:2.585160px;}
.ws9f{word-spacing:2.645280px;}
.ws25{word-spacing:2.832840px;}
.ws2a{word-spacing:2.898720px;}
.ws86{word-spacing:2.945880px;}
.ws6b{word-spacing:2.964600px;}
.ws24{word-spacing:3.096360px;}
.ws2b{word-spacing:3.162240px;}
.ws51{word-spacing:3.228120px;}
.ws8e{word-spacing:3.547080px;}
.ws38{word-spacing:3.557520px;}
.ws52{word-spacing:3.623400px;}
.ws49{word-spacing:3.755160px;}
.ws8f{word-spacing:3.787560px;}
.ws46{word-spacing:3.821040px;}
.ws76{word-spacing:3.886920px;}
.ws5c{word-spacing:3.952800px;}
.wse{word-spacing:4.216320px;}
.ws60{word-spacing:4.282200px;}
.ws66{word-spacing:4.545720px;}
.ws69{word-spacing:5.270400px;}
.ws68{word-spacing:5.336280px;}
.ws67{word-spacing:5.665680px;}
.ws57{word-spacing:5.797440px;}
.ws36{word-spacing:5.863320px;}
.ws58{word-spacing:5.929200px;}
.ws98{word-spacing:5.951880px;}
.ws41{word-spacing:5.995080px;}
.ws42{word-spacing:6.060960px;}
.ws56{word-spacing:6.126840px;}
.wsb4{word-spacing:6.285322px;}
.ws61{word-spacing:6.324480px;}
.ws77{word-spacing:6.390360px;}
.ws3f{word-spacing:6.785640px;}
.ws72{word-spacing:7.115040px;}
.ws6e{word-spacing:7.444440px;}
.ws6d{word-spacing:7.510320px;}
.ws34{word-spacing:7.839720px;}
.ws6a{word-spacing:8.235000px;}
.wsa{word-spacing:8.498520px;}
.wsb{word-spacing:8.564400px;}
.ws16{word-spacing:8.893800px;}
.ws33{word-spacing:8.959680px;}
.ws17{word-spacing:9.223200px;}
.ws2c{word-spacing:9.420840px;}
.ws31{word-spacing:9.552600px;}
.ws2e{word-spacing:9.684360px;}
.ws7a{word-spacing:10.013760px;}
.ws8c{word-spacing:10.040040px;}
.ws8d{word-spacing:10.160280px;}
.wsa4{word-spacing:10.400760px;}
.wsa5{word-spacing:10.521000px;}
.ws6c{word-spacing:11.067840px;}
.ws81{word-spacing:11.397240px;}
.ws82{word-spacing:11.463120px;}
.ws2f{word-spacing:11.726640px;}
.ws4f{word-spacing:12.121920px;}
.ws35{word-spacing:12.517200px;}
.ws4e{word-spacing:12.846600px;}
.ws9a{word-spacing:12.925800px;}
.ws9b{word-spacing:13.286520px;}
.ws9d{word-spacing:13.406760px;}
.ws9c{word-spacing:13.527000px;}
.ws26{word-spacing:14.295960px;}
.ws14{word-spacing:14.361840px;}
.ws23{word-spacing:14.691240px;}
.ws32{word-spacing:14.888880px;}
.ws64{word-spacing:15.481800px;}
.ws65{word-spacing:15.679440px;}
.ws29{word-spacing:16.074720px;}
.ws22{word-spacing:16.140600px;}
.ws7f{word-spacing:16.470000px;}
.wsb8{word-spacing:17.673887px;}
.ws70{word-spacing:18.117000px;}
.ws6f{word-spacing:18.182880px;}
.ws71{word-spacing:18.446400px;}
.wsae{word-spacing:19.658360px;}
.ws13{word-spacing:20.752200px;}
.ws83{word-spacing:20.818080px;}
.ws84{word-spacing:20.883960px;}
.ws78{word-spacing:25.166160px;}
.ws79{word-spacing:25.232040px;}
.ws5e{word-spacing:28.394280px;}
.ws3a{word-spacing:31.029480px;}
.ws3b{word-spacing:31.227120px;}
.wsb6{word-spacing:84.961820px;}
.wsb0{word-spacing:1389.311097px;}
.wsb7{word-spacing:1455.916335px;}
._12{margin-left:-130.856822px;}
._15{margin-left:-30.838500px;}
._7{margin-left:-28.262520px;}
._11{margin-left:-5.380920px;}
._10{margin-left:-3.894768px;}
._2{margin-left:-2.775600px;}
._1{margin-left:-1.647648px;}
._0{width:1.358856px;}
._8{width:2.766960px;}
._3{width:4.151088px;}
._6{width:6.390360px;}
._4{width:10.740384px;}
._5{width:11.990160px;}
._14{width:13.630500px;}
._b{width:14.888880px;}
._a{width:16.478352px;}
._13{width:18.538848px;}
._e{width:25.783704px;}
._c{width:26.978904px;}
._f{width:33.994080px;}
._d{width:36.102240px;}
._9{width:43.678440px;}
._16{width:77.422302px;}
._1a{width:248.218323px;}
._1b{width:1291.288880px;}
._18{width:1543.087440px;}
._17{width:1779.635010px;}
._19{width:3085.419081px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(156,60,71);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:22.500000px;}
.fsf{font-size:27.000000px;}
.fs11{font-size:31.500000px;}
.fs8{font-size:38.258400px;}
.fs3{font-size:38.880000px;}
.fs6{font-size:40.006200px;}
.fs4{font-size:42.120000px;}
.fse{font-size:45.000000px;}
.fs2{font-size:47.880000px;}
.fs10{font-size:49.500000px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:58.500000px;}
.fs15{font-size:60.000000px;}
.fsb{font-size:60.120000px;}
.fs12{font-size:63.000000px;}
.fs1{font-size:65.880000px;}
.fs7{font-size:66.176400px;}
.fs9{font-size:69.177306px;}
.fs5{font-size:69.199800px;}
.fs13{font-size:81.000000px;}
.fs0{font-size:83.880000px;}
.fsc{font-size:135.000000px;}
.y0{bottom:0.000000px;}
.y116{bottom:1.875000px;}
.ye0{bottom:2.250000px;}
.yd8{bottom:2.625000px;}
.yf8{bottom:3.000000px;}
.yf3{bottom:3.375000px;}
.y9c{bottom:3.600000px;}
.yfd{bottom:4.125000px;}
.y62{bottom:4.162950px;}
.ye3{bottom:5.250000px;}
.y68{bottom:5.635586px;}
.y106{bottom:6.000000px;}
.y63{bottom:8.650050px;}
.y61{bottom:8.650200px;}
.y66{bottom:9.926700px;}
.y9e{bottom:10.440000px;}
.y67{bottom:17.371350px;}
.y9b{bottom:20.880000px;}
.y114{bottom:90.000000px;}
.y76{bottom:113.499630px;}
.y50{bottom:114.213150px;}
.y113{bottom:122.999999px;}
.ya0{bottom:127.350000px;}
.y4f{bottom:135.722970px;}
.y112{bottom:145.500006px;}
.y75{bottom:147.246660px;}
.yac{bottom:149.242680px;}
.y3b{bottom:151.470000px;}
.y19{bottom:154.135710px;}
.y9f{bottom:154.350000px;}
.yc7{bottom:154.808100px;}
.y4b{bottom:164.964240px;}
.y49{bottom:164.970000px;}
.y74{bottom:169.020000px;}
.yc6{bottom:174.602610px;}
.y18{bottom:175.826700px;}
.yab{bottom:178.575750px;}
.y9d{bottom:181.350000px;}
.y47{bottom:185.936670px;}
.y4d{bottom:185.940000px;}
.yc5{bottom:194.306940px;}
.y73{bottom:197.823330px;}
.y17{bottom:202.195170px;}
.y3c{bottom:204.390000px;}
.y72{bottom:206.190000px;}
.y9a{bottom:208.350000px;}
.y4c{bottom:212.940000px;}
.y48{bottom:212.941440px;}
.y4a{bottom:212.945760px;}
.yc4{bottom:218.610450px;}
.y111{bottom:224.250000px;}
.y44{bottom:236.424240px;}
.y42{bottom:236.430000px;}
.yc3{bottom:238.314780px;}
.y71{bottom:241.913070px;}
.ye7{bottom:243.000005px;}
.y110{bottom:253.874999px;}
.y40{bottom:257.396670px;}
.y46{bottom:257.400000px;}
.y39{bottom:259.674030px;}
.y4e{bottom:259.742070px;}
.ye6{bottom:260.250003px;}
.yc2{bottom:262.618290px;}
.y70{bottom:263.422890px;}
.y99{bottom:263.712060px;}
.y115{bottom:267.000000px;}
.y11b{bottom:269.250000px;}
.y119{bottom:269.250004px;}
.y10f{bottom:276.375006px;}
.ye5{bottom:277.500000px;}
.y45{bottom:284.400000px;}
.y41{bottom:284.401440px;}
.y43{bottom:284.405760px;}
.yc1{bottom:285.478920px;}
.y90{bottom:290.625660px;}
.y6f{bottom:294.923430px;}
.y98{bottom:297.459090px;}
.ye4{bottom:304.875000px;}
.y3e{bottom:307.890000px;}
.yc0{bottom:308.339550px;}
.y8f{bottom:312.399000px;}
.y97{bottom:319.150080px;}
.y3a{bottom:328.798620px;}
.y3f{bottom:328.860000px;}
.ybf{bottom:331.110000px;}
.y6e{bottom:333.627930px;}
.y8e{bottom:334.089990px;}
.y10e{bottom:337.875003px;}
.y96{bottom:340.923420px;}
.y3d{bottom:353.430000px;}
.y10d{bottom:355.125000px;}
.y6d{bottom:355.137750px;}
.ybe{bottom:355.325670px;}
.y8d{bottom:355.863330px;}
.ye2{bottom:358.500000px;}
.y95{bottom:370.174140px;}
.ybd{bottom:375.030000px;}
.y6c{bottom:376.647570px;}
.y8c{bottom:377.554320px;}
.y38{bottom:383.693130px;}
.y10c{bottom:384.750006px;}
.ydf{bottom:388.500000px;}
.ye1{bottom:390.750000px;}
.y8b{bottom:399.327660px;}
.y37{bottom:405.120600px;}
.ybc{bottom:407.370420px;}
.y69{bottom:407.427840px;}
.y11a{bottom:411.225036px;}
.y118{bottom:412.687500px;}
.y6a{bottom:413.728740px;}
.y6b{bottom:413.818290px;}
.yde{bottom:420.000000px;}
.y8a{bottom:421.018650px;}
.yf0{bottom:424.312455px;}
.y36{bottom:426.630420px;}
.y65{bottom:436.755000px;}
.y60{bottom:438.255000px;}
.ybb{bottom:441.117450px;}
.y89{bottom:442.791990px;}
.y5f{bottom:445.769460px;}
.y64{bottom:445.770000px;}
.yef{bottom:447.937461px;}
.y35{bottom:448.140240px;}
.yba{bottom:462.808440px;}
.y10b{bottom:463.500000px;}
.y34{bottom:469.567710px;}
.yee{bottom:471.562466px;}
.y88{bottom:476.539020px;}
.ydd{bottom:479.062500px;}
.y5e{bottom:480.033450px;}
.yb9{bottom:484.581780px;}
.y117{bottom:490.125000px;}
.y10a{bottom:493.125006px;}
.y16{bottom:493.878870px;}
.yed{bottom:495.187472px;}
.y33{bottom:503.051220px;}
.yb8{bottom:506.272770px;}
.ydc{bottom:506.625000px;}
.y87{bottom:510.022530px;}
.y5d{bottom:513.780480px;}
.y15{bottom:515.652210px;}
.yec{bottom:518.812477px;}
.y32{bottom:524.561040px;}
.yb7{bottom:528.046110px;}
.y86{bottom:531.450180px;}
.yaa{bottom:533.273670px;}
.y5c{bottom:535.207950px;}
.y14{bottom:537.343200px;}
.yeb{bottom:542.437483px;}
.y31{bottom:546.070860px;}
.yb6{bottom:549.819450px;}
.ya9{bottom:550.649520px;}
.y85{bottom:552.984030px;}
.y5b{bottom:556.717770px;}
.y13{bottom:559.116540px;}
.yf6{bottom:564.750003px;}
.yea{bottom:566.062489px;}
.y30{bottom:567.580680px;}
.yb5{bottom:571.510440px;}
.y109{bottom:571.875000px;}
.y84{bottom:574.493850px;}
.yf5{bottom:582.750000px;}
.y5a{bottom:587.500200px;}
.ye9{bottom:589.687494px;}
.y12{bottom:592.863570px;}
.yb4{bottom:593.283780px;}
.y83{bottom:596.003670px;}
.y2f{bottom:601.064190px;}
.y108{bottom:601.499993px;}
.ydb{bottom:610.500000px;}
.ye8{bottom:613.312500px;}
.yb3{bottom:614.974770px;}
.y59{bottom:620.983710px;}
.y2e{bottom:622.491660px;}
.y107{bottom:624.000000px;}
.y11{bottom:626.610600px;}
.y82{bottom:629.668350px;}
.yb2{bottom:636.748110px;}
.y58{bottom:642.411180px;}
.y2d{bottom:644.001480px;}
.y10{bottom:648.301590px;}
.y81{bottom:651.441690px;}
.y12b{bottom:652.500000px;}
.yb1{bottom:658.439100px;}
.y2c{bottom:665.511300px;}
.yf{bottom:670.074930px;}
.y80{bottom:673.215030px;}
.y57{bottom:675.894690px;}
.y105{bottom:676.500000px;}
.y129{bottom:680.249979px;}
.y2b{bottom:686.938770px;}
.ye{bottom:691.765920px;}
.yb0{bottom:692.186130px;}
.y7f{bottom:694.906020px;}
.yf4{bottom:695.062500px;}
.y56{bottom:697.668030px;}
.y128{bottom:702.749985px;}
.y2a{bottom:708.448590px;}
.y104{bottom:709.500000px;}
.yd{bottom:713.539260px;}
.y55{bottom:714.862710px;}
.y7e{bottom:716.679360px;}
.y94{bottom:721.709820px;}
.y127{bottom:725.249992px;}
.yaf{bottom:725.933160px;}
.y29{bottom:729.958410px;}
.yc{bottom:735.230250px;}
.y93{bottom:743.483160px;}
.y7d{bottom:747.362970px;}
.yae{bottom:747.624150px;}
.y126{bottom:747.749999px;}
.y28{bottom:751.468230px;}
.yb{bottom:757.003590px;}
.yf2{bottom:763.687500px;}
.yad{bottom:765.000000px;}
.y92{bottom:765.174150px;}
.yf1{bottom:766.687500px;}
.y103{bottom:767.250000px;}
.y12a{bottom:770.249976px;}
.y125{bottom:770.250006px;}
.y27{bottom:772.895700px;}
.ya{bottom:778.694580px;}
.y7c{bottom:781.109010px;}
.y91{bottom:782.550000px;}
.yd5{bottom:790.866450px;}
.y26{bottom:794.405520px;}
.y102{bottom:795.750000px;}
.y9{bottom:800.467920px;}
.y7b{bottom:802.805220px;}
.yd4{bottom:810.570780px;}
.y25{bottom:815.915340px;}
.yd3{bottom:830.365290px;}
.yd7{bottom:834.000000px;}
.y8{bottom:834.214950px;}
.y7a{bottom:836.552250px;}
.yd9{bottom:836.625000px;}
.y24{bottom:837.425160px;}
.y124{bottom:849.000000px;}
.yfc{bottom:850.500000px;}
.yd2{bottom:854.578620px;}
.y23{bottom:858.852630px;}
.y79{bottom:865.885320px;}
.y7{bottom:867.879630px;}
.yd1{bottom:874.373130px;}
.y100{bottom:877.500000px;}
.y123{bottom:878.624996px;}
.y22{bottom:880.362450px;}
.y101{bottom:880.500000px;}
.y6{bottom:889.652970px;}
.ya8{bottom:890.392680px;}
.yd0{bottom:894.167640px;}
.y122{bottom:901.125003px;}
.y21{bottom:901.872270px;}
.yfe{bottom:904.125000px;}
.yff{bottom:907.500000px;}
.ya7{bottom:912.083670px;}
.yd6{bottom:913.500000px;}
.ycf{bottom:918.380970px;}
.y20{bottom:923.299740px;}
.y5{bottom:923.400000px;}
.y54{bottom:932.843160px;}
.ya6{bottom:933.857010px;}
.yfb{bottom:935.625000px;}
.yce{bottom:938.175480px;}
.y53{bottom:954.270630px;}
.ya5{bottom:955.548000px;}
.y1f{bottom:956.783250px;}
.y4{bottom:957.148290px;}
.ycd{bottom:957.879810px;}
.y121{bottom:962.625000px;}
.ya4{bottom:977.321340px;}
.y1e{bottom:978.293070px;}
.ycc{bottom:982.183320px;}
.y52{bottom:987.836490px;}
.y3{bottom:990.812970px;}
.yfa{bottom:994.687500px;}
.yda{bottom:996.375000px;}
.ya3{bottom:999.012330px;}
.y1d{bottom:999.802890px;}
.ycb{bottom:1001.887650px;}
.y78{bottom:1008.811980px;}
.y120{bottom:1009.500000px;}
.ya2{bottom:1020.785670px;}
.y51{bottom:1021.312530px;}
.y1c{bottom:1021.312710px;}
.yf9{bottom:1022.250000px;}
.y2{bottom:1024.560000px;}
.yca{bottom:1026.191160px;}
.y77{bottom:1030.502970px;}
.ya1{bottom:1042.476660px;}
.y1b{bottom:1042.740180px;}
.yc9{bottom:1045.895490px;}
.y1{bottom:1060.020000px;}
.y1a{bottom:1064.250000px;}
.y11e{bottom:1065.000000px;}
.y11f{bottom:1065.375000px;}
.yc8{bottom:1065.690000px;}
.y11d{bottom:1094.999993px;}
.y11c{bottom:1117.500000px;}
.yf7{bottom:1174.500000px;}
.h26{height:13.500000px;}
.h2e{height:13.875000px;}
.h21{height:15.000000px;}
.h2d{height:15.375000px;}
.h2a{height:16.312500px;}
.h23{height:16.500000px;}
.h2f{height:19.500000px;}
.h14{height:25.499373px;}
.he{height:25.951500px;}
.h1e{height:26.190000px;}
.h10{height:26.664289px;}
.h12{height:28.126500px;}
.h28{height:31.500000px;}
.h27{height:36.061523px;}
.h1c{height:36.540000px;}
.h1d{height:38.759766px;}
.h2c{height:41.660156px;}
.h22{height:42.646729px;}
.h1f{height:43.152539px;}
.h15{height:44.106829px;}
.h4{height:44.777812px;}
.h13{height:44.817708px;}
.h24{height:45.016364px;}
.h2{height:45.163828px;}
.h3{height:45.170668px;}
.h16{height:46.106945px;}
.h11{height:46.121937px;}
.hf{height:46.865294px;}
.h5{height:47.286914px;}
.h1b{height:47.290874px;}
.h25{height:48.149946px;}
.h9{height:48.220313px;}
.h29{height:51.016364px;}
.h31{height:54.000009px;}
.h1{height:57.503672px;}
.h30{height:58.970215px;}
.h8{height:59.382422px;}
.h32{height:63.000000px;}
.h2b{height:80.919000px;}
.hb{height:81.706641px;}
.hc{height:81.736521px;}
.h17{height:83.488382px;}
.ha{height:83.515742px;}
.hd{height:83.608622px;}
.h6{height:83.747942px;}
.h19{height:98.262422px;}
.h20{height:103.227539px;}
.h18{height:103.328702px;}
.h1a{height:115.173321px;}
.h7{height:214.470000px;}
.h0{height:1188.000000px;}
.w8{width:10.500000px;}
.w3{width:39.300000px;}
.w2{width:41.548500px;}
.w7{width:43.500000px;}
.w13{width:46.500000px;}
.wb{width:65.847000px;}
.w14{width:74.625000px;}
.w9{width:86.643000px;}
.wf{width:93.544500px;}
.w10{width:104.566500px;}
.we{width:107.308500px;}
.w6{width:134.190000px;}
.wd{width:155.455500px;}
.w5{width:175.050000px;}
.w11{width:178.125000px;}
.w12{width:205.125000px;}
.wc{width:293.625000px;}
.w4{width:302.580000px;}
.wa{width:364.125000px;}
.w1{width:468.720000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:1.605750px;}
.x3d{left:7.650000px;}
.x24{left:12.784500px;}
.x28{left:17.902200px;}
.x23{left:18.927150px;}
.x29{left:23.334150px;}
.x25{left:24.670200px;}
.x41{left:38.520000px;}
.x42{left:46.260000px;}
.x44{left:52.380000px;}
.x3f{left:53.820000px;}
.x43{left:56.610000px;}
.x50{left:62.250000px;}
.x53{left:63.375000px;}
.x59{left:64.500000px;}
.x5f{left:65.625000px;}
.x55{left:69.000000px;}
.x52{left:71.250000px;}
.x5b{left:76.875000px;}
.x4a{left:82.556247px;}
.x60{left:86.831251px;}
.x6b{left:94.106249px;}
.x6d{left:95.774991px;}
.x62{left:102.543748px;}
.x6c{left:104.681250px;}
.x63{left:106.612496px;}
.x5{left:108.000000px;}
.x58{left:109.875000px;}
.x8{left:115.691490px;}
.x37{left:127.263060px;}
.xd{left:131.580000px;}
.x48{left:140.660010px;}
.xf{left:146.520000px;}
.x46{left:147.758580px;}
.x3c{left:152.280000px;}
.x22{left:154.395000px;}
.x6a{left:158.681247px;}
.xb{left:164.970000px;}
.x1{left:167.220000px;}
.x54{left:170.587497px;}
.x5a{left:173.006253px;}
.x3{left:179.098110px;}
.x4f{left:183.562500px;}
.xa{left:192.240000px;}
.x51{left:193.331246px;}
.x26{left:195.930000px;}
.x66{left:202.368759px;}
.x64{left:204.731256px;}
.x65{left:207.187495px;}
.x38{left:214.751700px;}
.x4e{left:216.656250px;}
.x12{left:226.210680px;}
.x19{left:229.048920px;}
.x7{left:238.145940px;}
.x5c{left:240.206246px;}
.x61{left:247.124993px;}
.x20{left:249.927840px;}
.x34{left:269.175420px;}
.x9{left:271.481220px;}
.x5d{left:277.653000px;}
.x3b{left:281.372850px;}
.x67{left:309.656250px;}
.x10{left:327.420000px;}
.xe{left:331.650000px;}
.x2c{left:336.137940px;}
.x30{left:338.469480px;}
.x17{left:342.990000px;}
.x16{left:346.948650px;}
.xc{left:361.620000px;}
.x4{left:363.792690px;}
.x21{left:365.761350px;}
.x14{left:369.001620px;}
.x1c{left:372.051450px;}
.x15{left:373.222800px;}
.x35{left:382.309110px;}
.x5e{left:392.831268px;}
.x1b{left:399.060000px;}
.x13{left:400.770000px;}
.x1a{left:404.731170px;}
.x2{left:406.170000px;}
.x31{left:407.610000px;}
.x2d{left:427.047750px;}
.x27{left:436.845000px;}
.x32{left:441.901890px;}
.x3e{left:455.670000px;}
.x39{left:459.018270px;}
.x68{left:463.218750px;}
.x2e{left:474.838650px;}
.x2b{left:476.100000px;}
.x11{left:541.710000px;}
.x2f{left:545.668650px;}
.x1f{left:587.793420px;}
.x33{left:609.923250px;}
.x1d{left:624.060000px;}
.x56{left:625.537491px;}
.x18{left:627.030000px;}
.x40{left:631.530000px;}
.x45{left:647.985420px;}
.x1e{left:669.056040px;}
.x6{left:716.582970px;}
.x57{left:732.153000px;}
.x49{left:734.580000px;}
.x3a{left:747.012690px;}
.x47{left:752.833440px;}
.x4d{left:758.568741px;}
.x69{left:767.493759px;}
.x4b{left:772.087464px;}
.x36{left:805.860000px;}
.x4c{left:853.500000px;}
@media print{
.va{vertical-align:-35.835520pt;}
.v9{vertical-align:-22.395520pt;}
.v8{vertical-align:-13.440000pt;}
.v2{vertical-align:-12.160000pt;}
.v5{vertical-align:-8.645120pt;}
.v6{vertical-align:-5.440000pt;}
.vd{vertical-align:-2.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.869440pt;}
.ve{vertical-align:5.333333pt;}
.v11{vertical-align:6.666667pt;}
.v4{vertical-align:12.160000pt;}
.vf{vertical-align:17.333333pt;}
.v3{vertical-align:21.440000pt;}
.v10{vertical-align:25.333333pt;}
.v7{vertical-align:33.579840pt;}
.vc{vertical-align:34.560000pt;}
.vb{vertical-align:39.040000pt;}
.ls6b{letter-spacing:-0.320640pt;}
.ls6c{letter-spacing:-0.213760pt;}
.ls1e{letter-spacing:-0.127680pt;}
.ls4{letter-spacing:-0.117120pt;}
.ls69{letter-spacing:-0.106880pt;}
.ls3{letter-spacing:-0.074560pt;}
.ls5{letter-spacing:-0.058560pt;}
.ls6a{letter-spacing:-0.053440pt;}
.ls2{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.000640pt;}
.ls0{letter-spacing:0.007456pt;}
.ls44{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.008000pt;}
.ls10{letter-spacing:0.022080pt;}
.ls38{letter-spacing:0.024320pt;}
.ls53{letter-spacing:0.040640pt;}
.ls55{letter-spacing:0.041920pt;}
.ls3e{letter-spacing:0.046720pt;}
.ls9{letter-spacing:0.046848pt;}
.ls65{letter-spacing:0.048000pt;}
.ls6f{letter-spacing:0.053440pt;}
.ls21{letter-spacing:0.054720pt;}
.ls7{letter-spacing:0.058560pt;}
.ls22{letter-spacing:0.068800pt;}
.ls13{letter-spacing:0.073920pt;}
.ls35{letter-spacing:0.077120pt;}
.ls15{letter-spacing:0.081600pt;}
.ls3a{letter-spacing:0.087840pt;}
.ls19{letter-spacing:0.104000pt;}
.ls20{letter-spacing:0.104960pt;}
.ls68{letter-spacing:0.106880pt;}
.ls1{letter-spacing:0.117120pt;}
.ls5b{letter-spacing:0.137920pt;}
.ls1f{letter-spacing:0.140864pt;}
.ls67{letter-spacing:0.144288pt;}
.ls26{letter-spacing:0.148160pt;}
.ls43{letter-spacing:0.158112pt;}
.ls6{letter-spacing:0.175680pt;}
.ls58{letter-spacing:0.181120pt;}
.ls52{letter-spacing:0.195840pt;}
.ls1c{letter-spacing:0.204960pt;}
.ls25{letter-spacing:0.209600pt;}
.ls54{letter-spacing:0.217920pt;}
.ls49{letter-spacing:0.228384pt;}
.lsc{letter-spacing:0.234240pt;}
.ls6d{letter-spacing:0.267200pt;}
.ls23{letter-spacing:0.275840pt;}
.ls8{letter-spacing:0.292800pt;}
.ls24{letter-spacing:0.345920pt;}
.ls63{letter-spacing:0.351360pt;}
.ls31{letter-spacing:0.363072pt;}
.ls66{letter-spacing:0.380640pt;}
.ls4f{letter-spacing:0.409920pt;}
.ls32{letter-spacing:0.450912pt;}
.ls1b{letter-spacing:0.527040pt;}
.ls18{letter-spacing:0.819840pt;}
.lsd{letter-spacing:0.936960pt;}
.ls47{letter-spacing:1.522560pt;}
.ls57{letter-spacing:1.698240pt;}
.ls14{letter-spacing:1.777920pt;}
.ls11{letter-spacing:1.815360pt;}
.ls1a{letter-spacing:1.921280pt;}
.ls4e{letter-spacing:2.008608pt;}
.ls16{letter-spacing:2.108160pt;}
.ls4d{letter-spacing:2.557760pt;}
.ls46{letter-spacing:2.622720pt;}
.ls59{letter-spacing:2.709120pt;}
.ls33{letter-spacing:2.752320pt;}
.ls34{letter-spacing:3.103680pt;}
.ls3b{letter-spacing:3.404800pt;}
.ls36{letter-spacing:3.418560pt;}
.ls3f{letter-spacing:3.423360pt;}
.ls3d{letter-spacing:3.426560pt;}
.ls2c{letter-spacing:3.626560pt;}
.ls39{letter-spacing:3.628160pt;}
.ls37{letter-spacing:3.738560pt;}
.ls42{letter-spacing:3.743360pt;}
.ls2f{letter-spacing:3.787200pt;}
.ls29{letter-spacing:3.800000pt;}
.ls2b{letter-spacing:3.946560pt;}
.ls3c{letter-spacing:3.961920pt;}
.ls2e{letter-spacing:4.107200pt;}
.ls5c{letter-spacing:5.323104pt;}
.ls1d{letter-spacing:5.328960pt;}
.lsa{letter-spacing:8.549760pt;}
.ls6e{letter-spacing:9.352000pt;}
.ls5a{letter-spacing:9.428160pt;}
.ls40{letter-spacing:9.720960pt;}
.ls41{letter-spacing:9.779520pt;}
.lsb{letter-spacing:11.067840pt;}
.ls17{letter-spacing:13.234560pt;}
.ls62{letter-spacing:13.937280pt;}
.ls4c{letter-spacing:14.956800pt;}
.lse{letter-spacing:16.279680pt;}
.ls28{letter-spacing:16.396800pt;}
.ls2d{letter-spacing:16.426560pt;}
.ls30{letter-spacing:16.455360pt;}
.ls4a{letter-spacing:16.513920pt;}
.ls2a{letter-spacing:16.600000pt;}
.ls45{letter-spacing:17.061440pt;}
.ls27{letter-spacing:17.685120pt;}
.ls48{letter-spacing:18.153600pt;}
.ls56{letter-spacing:19.029120pt;}
.ls5f{letter-spacing:19.946560pt;}
.ls60{letter-spacing:20.107200pt;}
.ls5d{letter-spacing:20.120000pt;}
.ls61{letter-spacing:20.427200pt;}
.ls4b{letter-spacing:27.594880pt;}
.ls5e{letter-spacing:29.280000pt;}
.lsf{letter-spacing:31.798080pt;}
.ls51{letter-spacing:31.882319pt;}
.ls50{letter-spacing:33.338926pt;}
.ls71{letter-spacing:55.997333pt;}
.ls72{letter-spacing:77.466795pt;}
.ls70{letter-spacing:609.013173pt;}
.ls73{letter-spacing:1010.890731pt;}
.ws1b{word-spacing:-58.560000pt;}
.ws1f{word-spacing:-42.560000pt;}
.ws1e{word-spacing:-42.432320pt;}
.ws21{word-spacing:-39.586560pt;}
.ws20{word-spacing:-39.235200pt;}
.ws1d{word-spacing:-35.223680pt;}
.ws54{word-spacing:-33.338926pt;}
.ws55{word-spacing:-31.882319pt;}
.wsb2{word-spacing:-28.000000pt;}
.ws48{word-spacing:-23.989440pt;}
.wsb5{word-spacing:-14.447266pt;}
.ws18{word-spacing:-13.410240pt;}
.ws2{word-spacing:-13.351680pt;}
.ws19{word-spacing:-13.293120pt;}
.ws1a{word-spacing:-13.234560pt;}
.ws0{word-spacing:-13.176000pt;}
.ws1{word-spacing:-13.117440pt;}
.ws1c{word-spacing:-12.883200pt;}
.ws5d{word-spacing:-12.766080pt;}
.ws7b{word-spacing:-12.184320pt;}
.ws7d{word-spacing:-12.077440pt;}
.ws7e{word-spacing:-12.024000pt;}
.ws7c{word-spacing:-11.970560pt;}
.ws93{word-spacing:-11.863680pt;}
.ws43{word-spacing:-8.461440pt;}
.ws15{word-spacing:-3.337920pt;}
.ws44{word-spacing:-3.162240pt;}
.ws47{word-spacing:-3.103680pt;}
.ws12{word-spacing:-2.986560pt;}
.ws4a{word-spacing:-2.635200pt;}
.wsaf{word-spacing:-2.487266pt;}
.wsab{word-spacing:-2.458240pt;}
.wsb3{word-spacing:-2.435266pt;}
.wsad{word-spacing:-2.404800pt;}
.ws3d{word-spacing:-2.400960pt;}
.wsb1{word-spacing:-2.383266pt;}
.wsac{word-spacing:-2.351360pt;}
.ws3e{word-spacing:-2.283840pt;}
.ws73{word-spacing:-2.049600pt;}
.ws5f{word-spacing:-1.991040pt;}
.ws74{word-spacing:-1.698240pt;}
.ws75{word-spacing:-1.639680pt;}
.ws92{word-spacing:-1.603200pt;}
.ws8{word-spacing:-1.405440pt;}
.ws7{word-spacing:-1.346880pt;}
.ws39{word-spacing:-1.288320pt;}
.ws90{word-spacing:-1.175680pt;}
.wsc{word-spacing:-1.171200pt;}
.ws91{word-spacing:-1.068800pt;}
.wsd{word-spacing:-1.054080pt;}
.wsaa{word-spacing:-0.961920pt;}
.wsa7{word-spacing:-0.908480pt;}
.wsa9{word-spacing:-0.801600pt;}
.wsa8{word-spacing:-0.641280pt;}
.wsa6{word-spacing:-0.534400pt;}
.ws4c{word-spacing:-0.409920pt;}
.ws37{word-spacing:-0.351360pt;}
.ws8b{word-spacing:-0.320640pt;}
.ws4b{word-spacing:-0.292800pt;}
.ws4d{word-spacing:-0.234240pt;}
.ws50{word-spacing:-0.175680pt;}
.ws87{word-spacing:-0.160320pt;}
.ws6{word-spacing:-0.117120pt;}
.ws9e{word-spacing:-0.106880pt;}
.ws45{word-spacing:-0.061511pt;}
.ws9{word-spacing:-0.058560pt;}
.ws4{word-spacing:0.000000pt;}
.ws99{word-spacing:0.053440pt;}
.ws2d{word-spacing:0.058560pt;}
.ws3{word-spacing:0.074560pt;}
.ws85{word-spacing:0.106880pt;}
.ws3c{word-spacing:0.117120pt;}
.ws5{word-spacing:0.149120pt;}
.ws89{word-spacing:0.160320pt;}
.ws53{word-spacing:0.175680pt;}
.ws88{word-spacing:0.213760pt;}
.ws40{word-spacing:0.234240pt;}
.ws8a{word-spacing:0.320640pt;}
.ws11{word-spacing:0.351360pt;}
.ws28{word-spacing:0.409920pt;}
.ws27{word-spacing:0.527040pt;}
.ws10{word-spacing:0.585600pt;}
.wsa3{word-spacing:0.641280pt;}
.wsa2{word-spacing:0.801600pt;}
.wsf{word-spacing:0.819840pt;}
.ws80{word-spacing:0.878400pt;}
.ws95{word-spacing:0.908480pt;}
.ws96{word-spacing:1.015360pt;}
.ws97{word-spacing:1.122240pt;}
.ws94{word-spacing:1.389440pt;}
.ws5a{word-spacing:1.522560pt;}
.ws5b{word-spacing:1.639680pt;}
.ws63{word-spacing:1.756800pt;}
.ws59{word-spacing:1.815360pt;}
.ws62{word-spacing:1.873920pt;}
.ws30{word-spacing:2.108160pt;}
.wsa0{word-spacing:2.191040pt;}
.wsa1{word-spacing:2.297920pt;}
.ws9f{word-spacing:2.351360pt;}
.ws25{word-spacing:2.518080pt;}
.ws2a{word-spacing:2.576640pt;}
.ws86{word-spacing:2.618560pt;}
.ws6b{word-spacing:2.635200pt;}
.ws24{word-spacing:2.752320pt;}
.ws2b{word-spacing:2.810880pt;}
.ws51{word-spacing:2.869440pt;}
.ws8e{word-spacing:3.152960pt;}
.ws38{word-spacing:3.162240pt;}
.ws52{word-spacing:3.220800pt;}
.ws49{word-spacing:3.337920pt;}
.ws8f{word-spacing:3.366720pt;}
.ws46{word-spacing:3.396480pt;}
.ws76{word-spacing:3.455040pt;}
.ws5c{word-spacing:3.513600pt;}
.wse{word-spacing:3.747840pt;}
.ws60{word-spacing:3.806400pt;}
.ws66{word-spacing:4.040640pt;}
.ws69{word-spacing:4.684800pt;}
.ws68{word-spacing:4.743360pt;}
.ws67{word-spacing:5.036160pt;}
.ws57{word-spacing:5.153280pt;}
.ws36{word-spacing:5.211840pt;}
.ws58{word-spacing:5.270400pt;}
.ws98{word-spacing:5.290560pt;}
.ws41{word-spacing:5.328960pt;}
.ws42{word-spacing:5.387520pt;}
.ws56{word-spacing:5.446080pt;}
.wsb4{word-spacing:5.586952pt;}
.ws61{word-spacing:5.621760pt;}
.ws77{word-spacing:5.680320pt;}
.ws3f{word-spacing:6.031680pt;}
.ws72{word-spacing:6.324480pt;}
.ws6e{word-spacing:6.617280pt;}
.ws6d{word-spacing:6.675840pt;}
.ws34{word-spacing:6.968640pt;}
.ws6a{word-spacing:7.320000pt;}
.wsa{word-spacing:7.554240pt;}
.wsb{word-spacing:7.612800pt;}
.ws16{word-spacing:7.905600pt;}
.ws33{word-spacing:7.964160pt;}
.ws17{word-spacing:8.198400pt;}
.ws2c{word-spacing:8.374080pt;}
.ws31{word-spacing:8.491200pt;}
.ws2e{word-spacing:8.608320pt;}
.ws7a{word-spacing:8.901120pt;}
.ws8c{word-spacing:8.924480pt;}
.ws8d{word-spacing:9.031360pt;}
.wsa4{word-spacing:9.245120pt;}
.wsa5{word-spacing:9.352000pt;}
.ws6c{word-spacing:9.838080pt;}
.ws81{word-spacing:10.130880pt;}
.ws82{word-spacing:10.189440pt;}
.ws2f{word-spacing:10.423680pt;}
.ws4f{word-spacing:10.775040pt;}
.ws35{word-spacing:11.126400pt;}
.ws4e{word-spacing:11.419200pt;}
.ws9a{word-spacing:11.489600pt;}
.ws9b{word-spacing:11.810240pt;}
.ws9d{word-spacing:11.917120pt;}
.ws9c{word-spacing:12.024000pt;}
.ws26{word-spacing:12.707520pt;}
.ws14{word-spacing:12.766080pt;}
.ws23{word-spacing:13.058880pt;}
.ws32{word-spacing:13.234560pt;}
.ws64{word-spacing:13.761600pt;}
.ws65{word-spacing:13.937280pt;}
.ws29{word-spacing:14.288640pt;}
.ws22{word-spacing:14.347200pt;}
.ws7f{word-spacing:14.640000pt;}
.wsb8{word-spacing:15.710122pt;}
.ws70{word-spacing:16.104000pt;}
.ws6f{word-spacing:16.162560pt;}
.ws71{word-spacing:16.396800pt;}
.wsae{word-spacing:17.474098pt;}
.ws13{word-spacing:18.446400pt;}
.ws83{word-spacing:18.504960pt;}
.ws84{word-spacing:18.563520pt;}
.ws78{word-spacing:22.369920pt;}
.ws79{word-spacing:22.428480pt;}
.ws5e{word-spacing:25.239360pt;}
.ws3a{word-spacing:27.581760pt;}
.ws3b{word-spacing:27.757440pt;}
.wsb6{word-spacing:75.521617pt;}
.wsb0{word-spacing:1234.943197pt;}
.wsb7{word-spacing:1294.147853pt;}
._12{margin-left:-116.317175pt;}
._15{margin-left:-27.412000pt;}
._7{margin-left:-25.122240pt;}
._11{margin-left:-4.783040pt;}
._10{margin-left:-3.462016pt;}
._2{margin-left:-2.467200pt;}
._1{margin-left:-1.464576pt;}
._0{width:1.207872pt;}
._8{width:2.459520pt;}
._3{width:3.689856pt;}
._6{width:5.680320pt;}
._4{width:9.547008pt;}
._5{width:10.657920pt;}
._14{width:12.116000pt;}
._b{width:13.234560pt;}
._a{width:14.647424pt;}
._13{width:16.478976pt;}
._e{width:22.918848pt;}
._c{width:23.981248pt;}
._f{width:30.216960pt;}
._d{width:32.090880pt;}
._9{width:38.825280pt;}
._16{width:68.819824pt;}
._1a{width:220.638510pt;}
._1b{width:1147.812338pt;}
._18{width:1371.633280pt;}
._17{width:1581.897786pt;}
._19{width:2742.594738pt;}
.fs14{font-size:20.000000pt;}
.fsf{font-size:24.000000pt;}
.fs11{font-size:28.000000pt;}
.fs8{font-size:34.007467pt;}
.fs3{font-size:34.560000pt;}
.fs6{font-size:35.561067pt;}
.fs4{font-size:37.440000pt;}
.fse{font-size:40.000000pt;}
.fs2{font-size:42.560000pt;}
.fs10{font-size:44.000000pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:52.000000pt;}
.fs15{font-size:53.333333pt;}
.fsb{font-size:53.440000pt;}
.fs12{font-size:56.000000pt;}
.fs1{font-size:58.560000pt;}
.fs7{font-size:58.823467pt;}
.fs9{font-size:61.490938pt;}
.fs5{font-size:61.510933pt;}
.fs13{font-size:72.000000pt;}
.fs0{font-size:74.560000pt;}
.fsc{font-size:120.000000pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:1.666667pt;}
.ye0{bottom:2.000000pt;}
.yd8{bottom:2.333333pt;}
.yf8{bottom:2.666667pt;}
.yf3{bottom:3.000000pt;}
.y9c{bottom:3.200000pt;}
.yfd{bottom:3.666667pt;}
.y62{bottom:3.700400pt;}
.ye3{bottom:4.666667pt;}
.y68{bottom:5.009410pt;}
.y106{bottom:5.333333pt;}
.y63{bottom:7.688933pt;}
.y61{bottom:7.689067pt;}
.y66{bottom:8.823733pt;}
.y9e{bottom:9.280000pt;}
.y67{bottom:15.441200pt;}
.y9b{bottom:18.560000pt;}
.y114{bottom:80.000000pt;}
.y76{bottom:100.888560pt;}
.y50{bottom:101.522800pt;}
.y113{bottom:109.333332pt;}
.ya0{bottom:113.200000pt;}
.y4f{bottom:120.642640pt;}
.y112{bottom:129.333338pt;}
.y75{bottom:130.885920pt;}
.yac{bottom:132.660160pt;}
.y3b{bottom:134.640000pt;}
.y19{bottom:137.009520pt;}
.y9f{bottom:137.200000pt;}
.yc7{bottom:137.607200pt;}
.y4b{bottom:146.634880pt;}
.y49{bottom:146.640000pt;}
.y74{bottom:150.240000pt;}
.yc6{bottom:155.202320pt;}
.y18{bottom:156.290400pt;}
.yab{bottom:158.734000pt;}
.y9d{bottom:161.200000pt;}
.y47{bottom:165.277040pt;}
.y4d{bottom:165.280000pt;}
.yc5{bottom:172.717280pt;}
.y73{bottom:175.842960pt;}
.y17{bottom:179.729040pt;}
.y3c{bottom:181.680000pt;}
.y72{bottom:183.280000pt;}
.y9a{bottom:185.200000pt;}
.y4c{bottom:189.280000pt;}
.y48{bottom:189.281280pt;}
.y4a{bottom:189.285120pt;}
.yc4{bottom:194.320400pt;}
.y111{bottom:199.333333pt;}
.y44{bottom:210.154880pt;}
.y42{bottom:210.160000pt;}
.yc3{bottom:211.835360pt;}
.y71{bottom:215.033840pt;}
.ye7{bottom:216.000005pt;}
.y110{bottom:225.666666pt;}
.y40{bottom:228.797040pt;}
.y46{bottom:228.800000pt;}
.y39{bottom:230.821360pt;}
.y4e{bottom:230.881840pt;}
.ye6{bottom:231.333336pt;}
.yc2{bottom:233.438480pt;}
.y70{bottom:234.153680pt;}
.y99{bottom:234.410720pt;}
.y115{bottom:237.333333pt;}
.y11b{bottom:239.333333pt;}
.y119{bottom:239.333337pt;}
.y10f{bottom:245.666672pt;}
.ye5{bottom:246.666667pt;}
.y45{bottom:252.800000pt;}
.y41{bottom:252.801280pt;}
.y43{bottom:252.805120pt;}
.yc1{bottom:253.759040pt;}
.y90{bottom:258.333920pt;}
.y6f{bottom:262.154160pt;}
.y98{bottom:264.408080pt;}
.ye4{bottom:271.000000pt;}
.y3e{bottom:273.680000pt;}
.yc0{bottom:274.079600pt;}
.y8f{bottom:277.688000pt;}
.y97{bottom:283.688960pt;}
.y3a{bottom:292.265440pt;}
.y3f{bottom:292.320000pt;}
.ybf{bottom:294.320000pt;}
.y6e{bottom:296.558160pt;}
.y8e{bottom:296.968880pt;}
.y10e{bottom:300.333336pt;}
.y96{bottom:303.043040pt;}
.y3d{bottom:314.160000pt;}
.y10d{bottom:315.666667pt;}
.y6d{bottom:315.678000pt;}
.ybe{bottom:315.845040pt;}
.y8d{bottom:316.322960pt;}
.ye2{bottom:318.666667pt;}
.y95{bottom:329.043680pt;}
.ybd{bottom:333.360000pt;}
.y6c{bottom:334.797840pt;}
.y8c{bottom:335.603840pt;}
.y38{bottom:341.060560pt;}
.y10c{bottom:342.000005pt;}
.ydf{bottom:345.333333pt;}
.ye1{bottom:347.333333pt;}
.y8b{bottom:354.957920pt;}
.y37{bottom:360.107200pt;}
.ybc{bottom:362.107040pt;}
.y69{bottom:362.158080pt;}
.y11a{bottom:365.533365pt;}
.y118{bottom:366.833333pt;}
.y6a{bottom:367.758880pt;}
.y6b{bottom:367.838480pt;}
.yde{bottom:373.333333pt;}
.y8a{bottom:374.238800pt;}
.yf0{bottom:377.166627pt;}
.y36{bottom:379.227040pt;}
.y65{bottom:388.226667pt;}
.y60{bottom:389.560000pt;}
.ybb{bottom:392.104400pt;}
.y89{bottom:393.592880pt;}
.y5f{bottom:396.239520pt;}
.y64{bottom:396.240000pt;}
.yef{bottom:398.166632pt;}
.y35{bottom:398.346880pt;}
.yba{bottom:411.385280pt;}
.y10b{bottom:412.000000pt;}
.y34{bottom:417.393520pt;}
.yee{bottom:419.166637pt;}
.y88{bottom:423.590240pt;}
.ydd{bottom:425.833333pt;}
.y5e{bottom:426.696400pt;}
.yb9{bottom:430.739360pt;}
.y117{bottom:435.666667pt;}
.y10a{bottom:438.333338pt;}
.y16{bottom:439.003440pt;}
.yed{bottom:440.166642pt;}
.y33{bottom:447.156640pt;}
.yb8{bottom:450.020240pt;}
.ydc{bottom:450.333333pt;}
.y87{bottom:453.353360pt;}
.y5d{bottom:456.693760pt;}
.y15{bottom:458.357520pt;}
.yec{bottom:461.166647pt;}
.y32{bottom:466.276480pt;}
.yb7{bottom:469.374320pt;}
.y86{bottom:472.400160pt;}
.yaa{bottom:474.021040pt;}
.y5c{bottom:475.740400pt;}
.y14{bottom:477.638400pt;}
.yeb{bottom:482.166652pt;}
.y31{bottom:485.396320pt;}
.yb6{bottom:488.728400pt;}
.ya9{bottom:489.466240pt;}
.y85{bottom:491.541360pt;}
.y5b{bottom:494.860240pt;}
.y13{bottom:496.992480pt;}
.yf6{bottom:502.000003pt;}
.yea{bottom:503.166657pt;}
.y30{bottom:504.516160pt;}
.yb5{bottom:508.009280pt;}
.y109{bottom:508.333333pt;}
.y84{bottom:510.661200pt;}
.yf5{bottom:518.000000pt;}
.y5a{bottom:522.222400pt;}
.ye9{bottom:524.166662pt;}
.y12{bottom:526.989840pt;}
.yb4{bottom:527.363360pt;}
.y83{bottom:529.781040pt;}
.y2f{bottom:534.279280pt;}
.y108{bottom:534.666661pt;}
.ydb{bottom:542.666667pt;}
.ye8{bottom:545.166667pt;}
.yb3{bottom:546.644240pt;}
.y59{bottom:551.985520pt;}
.y2e{bottom:553.325920pt;}
.y107{bottom:554.666667pt;}
.y11{bottom:556.987200pt;}
.y82{bottom:559.705200pt;}
.yb2{bottom:565.998320pt;}
.y58{bottom:571.032160pt;}
.y2d{bottom:572.445760pt;}
.y10{bottom:576.268080pt;}
.y81{bottom:579.059280pt;}
.y12b{bottom:580.000000pt;}
.yb1{bottom:585.279200pt;}
.y2c{bottom:591.565600pt;}
.yf{bottom:595.622160pt;}
.y80{bottom:598.413360pt;}
.y57{bottom:600.795280pt;}
.y105{bottom:601.333333pt;}
.y129{bottom:604.666648pt;}
.y2b{bottom:610.612240pt;}
.ye{bottom:614.903040pt;}
.yb0{bottom:615.276560pt;}
.y7f{bottom:617.694240pt;}
.yf4{bottom:617.833333pt;}
.y56{bottom:620.149360pt;}
.y128{bottom:624.666654pt;}
.y2a{bottom:629.732080pt;}
.y104{bottom:630.666667pt;}
.yd{bottom:634.257120pt;}
.y55{bottom:635.433520pt;}
.y7e{bottom:637.048320pt;}
.y94{bottom:641.519840pt;}
.y127{bottom:644.666660pt;}
.yaf{bottom:645.273920pt;}
.y29{bottom:648.851920pt;}
.yc{bottom:653.538000pt;}
.y93{bottom:660.873920pt;}
.y7d{bottom:664.322640pt;}
.yae{bottom:664.554800pt;}
.y126{bottom:664.666666pt;}
.y28{bottom:667.971760pt;}
.yb{bottom:672.892080pt;}
.yf2{bottom:678.833333pt;}
.yad{bottom:680.000000pt;}
.y92{bottom:680.154800pt;}
.yf1{bottom:681.500000pt;}
.y103{bottom:682.000000pt;}
.y12a{bottom:684.666646pt;}
.y125{bottom:684.666672pt;}
.y27{bottom:687.018400pt;}
.ya{bottom:692.172960pt;}
.y7c{bottom:694.319120pt;}
.y91{bottom:695.600000pt;}
.yd5{bottom:702.992400pt;}
.y26{bottom:706.138240pt;}
.y102{bottom:707.333333pt;}
.y9{bottom:711.527040pt;}
.y7b{bottom:713.604640pt;}
.yd4{bottom:720.507360pt;}
.y25{bottom:725.258080pt;}
.yd3{bottom:738.102480pt;}
.yd7{bottom:741.333333pt;}
.y8{bottom:741.524400pt;}
.y7a{bottom:743.602000pt;}
.yd9{bottom:743.666667pt;}
.y24{bottom:744.377920pt;}
.y124{bottom:754.666667pt;}
.yfc{bottom:756.000000pt;}
.yd2{bottom:759.625440pt;}
.y23{bottom:763.424560pt;}
.y79{bottom:769.675840pt;}
.y7{bottom:771.448560pt;}
.yd1{bottom:777.220560pt;}
.y100{bottom:780.000000pt;}
.y123{bottom:780.999997pt;}
.y22{bottom:782.544400pt;}
.y101{bottom:782.666667pt;}
.y6{bottom:790.802640pt;}
.ya8{bottom:791.460160pt;}
.yd0{bottom:794.815680pt;}
.y122{bottom:801.000003pt;}
.y21{bottom:801.664240pt;}
.yfe{bottom:803.666667pt;}
.yff{bottom:806.666667pt;}
.ya7{bottom:810.741040pt;}
.yd6{bottom:812.000000pt;}
.ycf{bottom:816.338640pt;}
.y20{bottom:820.710880pt;}
.y5{bottom:820.800000pt;}
.y54{bottom:829.193920pt;}
.ya6{bottom:830.095120pt;}
.yfb{bottom:831.666667pt;}
.yce{bottom:833.933760pt;}
.y53{bottom:848.240560pt;}
.ya5{bottom:849.376000pt;}
.y1f{bottom:850.474000pt;}
.y4{bottom:850.798480pt;}
.ycd{bottom:851.448720pt;}
.y121{bottom:855.666667pt;}
.ya4{bottom:868.730080pt;}
.y1e{bottom:869.593840pt;}
.ycc{bottom:873.051840pt;}
.y52{bottom:878.076880pt;}
.y3{bottom:880.722640pt;}
.yfa{bottom:884.166667pt;}
.yda{bottom:885.666667pt;}
.ya3{bottom:888.010960pt;}
.y1d{bottom:888.713680pt;}
.ycb{bottom:890.566800pt;}
.y78{bottom:896.721760pt;}
.y120{bottom:897.333333pt;}
.ya2{bottom:907.365040pt;}
.y51{bottom:907.833360pt;}
.y1c{bottom:907.833520pt;}
.yf9{bottom:908.666667pt;}
.y2{bottom:910.720000pt;}
.yca{bottom:912.169920pt;}
.y77{bottom:916.002640pt;}
.ya1{bottom:926.645920pt;}
.y1b{bottom:926.880160pt;}
.yc9{bottom:929.684880pt;}
.y1{bottom:942.240000pt;}
.y1a{bottom:946.000000pt;}
.y11e{bottom:946.666667pt;}
.y11f{bottom:947.000000pt;}
.yc8{bottom:947.280000pt;}
.y11d{bottom:973.333327pt;}
.y11c{bottom:993.333333pt;}
.yf7{bottom:1044.000000pt;}
.h26{height:12.000000pt;}
.h2e{height:12.333333pt;}
.h21{height:13.333333pt;}
.h2d{height:13.666667pt;}
.h2a{height:14.500000pt;}
.h23{height:14.666667pt;}
.h2f{height:17.333333pt;}
.h14{height:22.666109pt;}
.he{height:23.068000pt;}
.h1e{height:23.280000pt;}
.h10{height:23.701590pt;}
.h12{height:25.001333pt;}
.h28{height:28.000000pt;}
.h27{height:32.054688pt;}
.h1c{height:32.480000pt;}
.h1d{height:34.453125pt;}
.h2c{height:37.031250pt;}
.h22{height:37.908203pt;}
.h1f{height:38.357812pt;}
.h15{height:39.206070pt;}
.h4{height:39.802500pt;}
.h13{height:39.837963pt;}
.h24{height:40.014545pt;}
.h2{height:40.145625pt;}
.h3{height:40.151705pt;}
.h16{height:40.983951pt;}
.h11{height:40.997277pt;}
.hf{height:41.658039pt;}
.h5{height:42.032812pt;}
.h1b{height:42.036332pt;}
.h25{height:42.799952pt;}
.h9{height:42.862500pt;}
.h29{height:45.347879pt;}
.h31{height:48.000008pt;}
.h1{height:51.114375pt;}
.h30{height:52.417969pt;}
.h8{height:52.784375pt;}
.h32{height:56.000000pt;}
.h2b{height:71.928000pt;}
.hb{height:72.628125pt;}
.hc{height:72.654685pt;}
.h17{height:74.211895pt;}
.ha{height:74.236215pt;}
.hd{height:74.318775pt;}
.h6{height:74.442615pt;}
.h19{height:87.344375pt;}
.h20{height:91.757812pt;}
.h18{height:91.847735pt;}
.h1a{height:102.376285pt;}
.h7{height:190.640000pt;}
.h0{height:1056.000000pt;}
.w8{width:9.333333pt;}
.w3{width:34.933333pt;}
.w2{width:36.932000pt;}
.w7{width:38.666667pt;}
.w13{width:41.333333pt;}
.wb{width:58.530667pt;}
.w14{width:66.333333pt;}
.w9{width:77.016000pt;}
.wf{width:83.150667pt;}
.w10{width:92.948000pt;}
.we{width:95.385333pt;}
.w6{width:119.280000pt;}
.wd{width:138.182667pt;}
.w5{width:155.600000pt;}
.w11{width:158.333333pt;}
.w12{width:182.333333pt;}
.wc{width:261.000000pt;}
.w4{width:268.960000pt;}
.wa{width:323.666667pt;}
.w1{width:416.640000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.427333pt;}
.x3d{left:6.800000pt;}
.x24{left:11.364000pt;}
.x28{left:15.913067pt;}
.x23{left:16.824133pt;}
.x29{left:20.741467pt;}
.x25{left:21.929067pt;}
.x41{left:34.240000pt;}
.x42{left:41.120000pt;}
.x44{left:46.560000pt;}
.x3f{left:47.840000pt;}
.x43{left:50.320000pt;}
.x50{left:55.333333pt;}
.x53{left:56.333333pt;}
.x59{left:57.333333pt;}
.x5f{left:58.333333pt;}
.x55{left:61.333333pt;}
.x52{left:63.333333pt;}
.x5b{left:68.333333pt;}
.x4a{left:73.383331pt;}
.x60{left:77.183335pt;}
.x6b{left:83.649999pt;}
.x6d{left:85.133325pt;}
.x62{left:91.149998pt;}
.x6c{left:93.050000pt;}
.x63{left:94.766663pt;}
.x5{left:96.000000pt;}
.x58{left:97.666667pt;}
.x8{left:102.836880pt;}
.x37{left:113.122720pt;}
.xd{left:116.960000pt;}
.x48{left:125.031120pt;}
.xf{left:130.240000pt;}
.x46{left:131.340960pt;}
.x3c{left:135.360000pt;}
.x22{left:137.240000pt;}
.x6a{left:141.049997pt;}
.xb{left:146.640000pt;}
.x1{left:148.640000pt;}
.x54{left:151.633331pt;}
.x5a{left:153.783336pt;}
.x3{left:159.198320pt;}
.x4f{left:163.166667pt;}
.xa{left:170.880000pt;}
.x51{left:171.849996pt;}
.x26{left:174.160000pt;}
.x66{left:179.883341pt;}
.x64{left:181.983338pt;}
.x65{left:184.166662pt;}
.x38{left:190.890400pt;}
.x4e{left:192.583333pt;}
.x12{left:201.076160pt;}
.x19{left:203.599040pt;}
.x7{left:211.685280pt;}
.x5c{left:213.516663pt;}
.x61{left:219.666660pt;}
.x20{left:222.158080pt;}
.x34{left:239.267040pt;}
.x9{left:241.316640pt;}
.x5d{left:246.802667pt;}
.x3b{left:250.109200pt;}
.x67{left:275.250000pt;}
.x10{left:291.040000pt;}
.xe{left:294.800000pt;}
.x2c{left:298.789280pt;}
.x30{left:300.861760pt;}
.x17{left:304.880000pt;}
.x16{left:308.398800pt;}
.xc{left:321.440000pt;}
.x4{left:323.371280pt;}
.x21{left:325.121200pt;}
.x14{left:328.001440pt;}
.x1c{left:330.712400pt;}
.x15{left:331.753600pt;}
.x35{left:339.830320pt;}
.x5e{left:349.183349pt;}
.x1b{left:354.720000pt;}
.x13{left:356.240000pt;}
.x1a{left:359.761040pt;}
.x2{left:361.040000pt;}
.x31{left:362.320000pt;}
.x2d{left:379.598000pt;}
.x27{left:388.306667pt;}
.x32{left:392.801680pt;}
.x3e{left:405.040000pt;}
.x39{left:408.016240pt;}
.x68{left:411.750000pt;}
.x2e{left:422.078800pt;}
.x2b{left:423.200000pt;}
.x11{left:481.520000pt;}
.x2f{left:485.038800pt;}
.x1f{left:522.483040pt;}
.x33{left:542.154000pt;}
.x1d{left:554.720000pt;}
.x56{left:556.033325pt;}
.x18{left:557.360000pt;}
.x40{left:561.360000pt;}
.x45{left:575.987040pt;}
.x1e{left:594.716480pt;}
.x6{left:636.962640pt;}
.x57{left:650.802667pt;}
.x49{left:652.960000pt;}
.x3a{left:664.011280pt;}
.x47{left:669.185280pt;}
.x4d{left:674.283325pt;}
.x69{left:682.216675pt;}
.x4b{left:686.299968pt;}
.x36{left:716.320000pt;}
.x4c{left:758.666667pt;}
}




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