
    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_95aed83b3d24893a91c83e57.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa18cb815e4fd8fa984fda2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.039062;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_5095657f73a5d1a6037a1341.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6ab0c95812831f21805c83a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.015625;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_dfa2c4cd6d09024fb531fc10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_19e4ea8dc445d176750e84ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916504;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_a92caadf911e6caeba7d9ff8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936523;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_7e706d8783c0e45124171f67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_a8ba052d4d4d4f1b214a220e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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_39e386a4823e3b6d196803a7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d95c8f86c9324f703ff6580b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);-ms-transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);-webkit-transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.159231,-0.192731,0.192731,0.159231,0,0);-ms-transform:matrix(0.159231,-0.192731,0.192731,0.159231,0,0);-webkit-transform:matrix(0.159231,-0.192731,0.192731,0.159231,0,0);}
.m3{transform:matrix(0.234922,-0.085508,0.085508,0.234922,0,0);-ms-transform:matrix(0.234922,-0.085508,0.085508,0.234922,0,0);-webkit-transform:matrix(0.234922,-0.085508,0.085508,0.234922,0,0);}
.m1{transform:matrix(0.241956,0.000000,-0.062908,0.241956,0,0);-ms-transform:matrix(0.241956,0.000000,-0.062908,0.241956,0,0);-webkit-transform:matrix(0.241956,0.000000,-0.062908,0.241956,0,0);}
.m6{transform:matrix(0.249230,0.019605,-0.019605,0.249230,0,0);-ms-transform:matrix(0.249230,0.019605,-0.019605,0.249230,0,0);-webkit-transform:matrix(0.249230,0.019605,-0.019605,0.249230,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);}
.m2{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);}
.v1f{vertical-align:-126.923340px;}
.v1a{vertical-align:-125.664360px;}
.v12{vertical-align:-63.376620px;}
.vf{vertical-align:-48.600000px;}
.vc{vertical-align:-39.599880px;}
.v5{vertical-align:-37.016220px;}
.v13{vertical-align:-35.754780px;}
.v1c{vertical-align:-28.125240px;}
.v7{vertical-align:-25.920000px;}
.vb{vertical-align:-18.611880px;}
.v9{vertical-align:-16.919940px;}
.v16{vertical-align:-15.228000px;}
.v15{vertical-align:-13.536060px;}
.v18{vertical-align:-8.369760px;}
.v10{vertical-align:-7.044180px;}
.ve{vertical-align:-1.920000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:3.600420px;}
.v1{vertical-align:7.096200px;}
.vd{vertical-align:21.120120px;}
.v14{vertical-align:33.600060px;}
.v1e{vertical-align:36.630720px;}
.v11{vertical-align:37.800000px;}
.v1d{vertical-align:40.319572px;}
.v8{vertical-align:41.999940px;}
.v6{vertical-align:43.200000px;}
.va{vertical-align:45.000420px;}
.v4{vertical-align:46.200000px;}
.v19{vertical-align:50.399940px;}
.v2{vertical-align:57.599880px;}
.v3{vertical-align:58.799940px;}
.v1b{vertical-align:85.785000px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.002820px;}
.ls22{letter-spacing:0.003000px;}
.lsf{letter-spacing:0.005100px;}
.ls21{letter-spacing:0.006120px;}
.ls34{letter-spacing:0.006300px;}
.ls39{letter-spacing:0.010620px;}
.ls33{letter-spacing:0.011880px;}
.ls26{letter-spacing:0.014460px;}
.ls29{letter-spacing:0.016140px;}
.ls4{letter-spacing:0.019620px;}
.ls38{letter-spacing:0.020220px;}
.ls3a{letter-spacing:0.028560px;}
.ls2c{letter-spacing:0.040440px;}
.ls3c{letter-spacing:0.041220px;}
.ls1b{letter-spacing:0.041400px;}
.ls2d{letter-spacing:0.044160px;}
.ls3{letter-spacing:0.056940px;}
.ls2{letter-spacing:0.062160px;}
.ls2f{letter-spacing:0.072420px;}
.lsc{letter-spacing:0.075240px;}
.ls28{letter-spacing:0.095220px;}
.ls1f{letter-spacing:0.095400px;}
.ls37{letter-spacing:0.099360px;}
.ls27{letter-spacing:0.101220px;}
.ls36{letter-spacing:0.105420px;}
.ls1a{letter-spacing:0.106140px;}
.ls5{letter-spacing:0.106299px;}
.ls1c{letter-spacing:0.106320px;}
.ls35{letter-spacing:0.114960px;}
.ls13{letter-spacing:2.831880px;}
.ls15{letter-spacing:2.832720px;}
.ls46{letter-spacing:3.014640px;}
.ls45{letter-spacing:3.020737px;}
.ls49{letter-spacing:3.020760px;}
.ls42{letter-spacing:3.047797px;}
.lsb{letter-spacing:3.236820px;}
.ls9{letter-spacing:3.298620px;}
.ls17{letter-spacing:3.485040px;}
.ls11{letter-spacing:3.490260px;}
.ls1{letter-spacing:4.358400px;}
.ls8{letter-spacing:8.251020px;}
.ls44{letter-spacing:8.922472px;}
.ls48{letter-spacing:8.922540px;}
.lsa{letter-spacing:9.951780px;}
.ls3b{letter-spacing:19.375200px;}
.ls25{letter-spacing:26.674920px;}
.ls20{letter-spacing:26.828760px;}
.ls1e{letter-spacing:26.855400px;}
.ls4a{letter-spacing:26.884020px;}
.ls14{letter-spacing:29.337900px;}
.ls3e{letter-spacing:29.763600px;}
.ls41{letter-spacing:29.769960px;}
.ls30{letter-spacing:29.793180px;}
.lsd{letter-spacing:29.793360px;}
.ls31{letter-spacing:29.806020px;}
.ls32{letter-spacing:29.806200px;}
.ls24{letter-spacing:29.870940px;}
.ls43{letter-spacing:32.393153px;}
.ls47{letter-spacing:32.393400px;}
.ls18{letter-spacing:32.747580px;}
.ls10{letter-spacing:32.825700px;}
.ls19{letter-spacing:32.858880px;}
.ls7{letter-spacing:35.973840px;}
.ls23{letter-spacing:36.677820px;}
.ls12{letter-spacing:39.512400px;}
.ls16{letter-spacing:39.542640px;}
.ls3d{letter-spacing:59.570820px;}
.lse{letter-spacing:61.800000px;}
.ls6{letter-spacing:66.000000px;}
.ls40{letter-spacing:68.100000px;}
.ls2b{letter-spacing:81.707640px;}
.ls4b{letter-spacing:85.908120px;}
.ls1d{letter-spacing:96.315960px;}
.ls4e{letter-spacing:112.929840px;}
.ls4d{letter-spacing:266.147940px;}
.ls2e{letter-spacing:1643.107980px;}
.ls2a{letter-spacing:1749.585180px;}
.ls4c{letter-spacing:1819.578480px;}
.sc_{text-shadow:none;}
.sc13{text-shadow:-0.015em 0 rgb(78,133,66),0 0.015em rgb(78,133,66),0.015em 0 rgb(78,133,66),0 -0.015em  rgb(78,133,66);}
.sc11{text-shadow:-0.015em 0 rgb(166,166,166),0 0.015em rgb(166,166,166),0.015em 0 rgb(166,166,166),0 -0.015em  rgb(166,166,166);}
.scf{text-shadow:-0.015em 0 rgb(255,128,0),0 0.015em rgb(255,128,0),0.015em 0 rgb(255,128,0),0 -0.015em  rgb(255,128,0);}
.sc12{text-shadow:-0.015em 0 rgb(119,31,40),0 0.015em rgb(119,31,40),0.015em 0 rgb(119,31,40),0 -0.015em  rgb(119,31,40);}
.sce{text-shadow:-0.015em 0 rgb(250,108,108),0 0.015em rgb(250,108,108),0.015em 0 rgb(250,108,108),0 -0.015em  rgb(250,108,108);}
.scd{text-shadow:-0.015em 0 rgb(51,153,51),0 0.015em rgb(51,153,51),0.015em 0 rgb(51,153,51),0 -0.015em  rgb(51,153,51);}
.sc1{text-shadow:-0.015em 0 rgb(27,88,124),0 0.015em rgb(27,88,124),0.015em 0 rgb(27,88,124),0 -0.015em  rgb(27,88,124);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc7{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc8{text-shadow:-0.015em 0 rgb(255,20,147),0 0.015em rgb(255,20,147),0.015em 0 rgb(255,20,147),0 -0.015em  rgb(255,20,147);}
.sca{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc9{text-shadow:-0.015em 0 rgb(240,127,9),0 0.015em rgb(240,127,9),0.015em 0 rgb(240,127,9),0 -0.015em  rgb(240,127,9);}
.scc{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc10{text-shadow:-0.015em 0 rgb(0,128,255),0 0.015em rgb(0,128,255),0.015em 0 rgb(0,128,255),0 -0.015em  rgb(0,128,255);}
.sc4{text-shadow:-0.015em 0 rgb(244,165,82),0 0.015em rgb(244,165,82),0.015em 0 rgb(244,165,82),0 -0.015em  rgb(244,165,82);}
.sc6{text-shadow:-0.015em 0 rgb(0,69,134),0 0.015em rgb(0,69,134),0.015em 0 rgb(0,69,134),0 -0.015em  rgb(0,69,134);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc3{text-shadow:-0.015em 0 rgb(112,48,160),0 0.015em rgb(112,48,160),0.015em 0 rgb(112,48,160),0 -0.015em  rgb(112,48,160);}
.scb{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc13{-webkit-text-stroke:0.015em rgb(78,133,66);text-shadow:none;}
.sc11{-webkit-text-stroke:0.015em rgb(166,166,166);text-shadow:none;}
.scf{-webkit-text-stroke:0.015em rgb(255,128,0);text-shadow:none;}
.sc12{-webkit-text-stroke:0.015em rgb(119,31,40);text-shadow:none;}
.sce{-webkit-text-stroke:0.015em rgb(250,108,108);text-shadow:none;}
.scd{-webkit-text-stroke:0.015em rgb(51,153,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(27,88,124);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(255,20,147);text-shadow:none;}
.sca{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc9{-webkit-text-stroke:0.015em rgb(240,127,9);text-shadow:none;}
.scc{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc10{-webkit-text-stroke:0.015em rgb(0,128,255);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(244,165,82);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(0,69,134);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(112,48,160);text-shadow:none;}
.scb{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws9{word-spacing:-169.680000px;}
.ws3{word-spacing:-165.088516px;}
.wsb7{word-spacing:-120.000000px;}
.wsa{word-spacing:-118.173515px;}
.ws5a{word-spacing:-110.292000px;}
.ws34{word-spacing:-110.149908px;}
.ws3d{word-spacing:-110.138892px;}
.wsba{word-spacing:-110.136756px;}
.ws83{word-spacing:-110.134601px;}
.ws98{word-spacing:-110.130576px;}
.wse3{word-spacing:-110.096995px;}
.wsdf{word-spacing:-110.059692px;}
.ws26{word-spacing:-110.020289px;}
.wsd1{word-spacing:-110.016662px;}
.ws79{word-spacing:-109.985177px;}
.wsac{word-spacing:-109.985009px;}
.ws2{word-spacing:-109.956000px;}
.wsb6{word-spacing:-99.960000px;}
.ws58{word-spacing:-99.063525px;}
.ws13{word-spacing:-96.426772px;}
.ws9b{word-spacing:-96.000000px;}
.ws1e{word-spacing:-93.324000px;}
.ws20{word-spacing:-90.070299px;}
.wsc6{word-spacing:-90.000793px;}
.wsc5{word-spacing:-90.000624px;}
.wsc7{word-spacing:-89.999641px;}
.ws8e{word-spacing:-89.964000px;}
.ws0{word-spacing:-86.583799px;}
.wsf{word-spacing:-84.840000px;}
.ws48{word-spacing:-80.388000px;}
.ws8b{word-spacing:-79.968000px;}
.ws59{word-spacing:-77.091761px;}
.ws27{word-spacing:-76.356000px;}
.ws86{word-spacing:-73.262495px;}
.ws1{word-spacing:-73.173544px;}
.wsb0{word-spacing:-70.011366px;}
.ws6d{word-spacing:-69.972000px;}
.ws99{word-spacing:-69.328082px;}
.ws9e{word-spacing:-69.314324px;}
.ws9c{word-spacing:-69.314154px;}
.ws9d{word-spacing:-69.248674px;}
.wsb3{word-spacing:-66.720000px;}
.wsb8{word-spacing:-66.719308px;}
.ws3e{word-spacing:-66.621127px;}
.wsb9{word-spacing:-66.602257px;}
.wsb5{word-spacing:-66.522161px;}
.ws15{word-spacing:-62.588915px;}
.ws14{word-spacing:-62.586220px;}
.ws1b{word-spacing:-62.525713px;}
.ws1c{word-spacing:-62.523581px;}
.ws1a{word-spacing:-62.483792px;}
.ws46{word-spacing:-61.509000px;}
.wsd3{word-spacing:-60.720000px;}
.ws6{word-spacing:-60.576586px;}
.ws40{word-spacing:-60.576416px;}
.ws24{word-spacing:-60.575943px;}
.ws54{word-spacing:-60.575131px;}
.ws1f{word-spacing:-60.574961px;}
.ws4e{word-spacing:-60.574337px;}
.wsb{word-spacing:-60.572353px;}
.ws57{word-spacing:-60.572182px;}
.ws56{word-spacing:-60.553229px;}
.ws45{word-spacing:-60.551527px;}
.ws2c{word-spacing:-60.533877px;}
.ws7{word-spacing:-60.533443px;}
.ws55{word-spacing:-60.532206px;}
.ws1d{word-spacing:-60.511729px;}
.ws41{word-spacing:-60.504972px;}
.ws5{word-spacing:-60.492264px;}
.ws47{word-spacing:-60.468457px;}
.ws4{word-spacing:-60.460440px;}
.wsc{word-spacing:-60.433923px;}
.ws44{word-spacing:-60.406028px;}
.ws43{word-spacing:-60.366820px;}
.ws49{word-spacing:-60.291000px;}
.wsa1{word-spacing:-60.048000px;}
.ws92{word-spacing:-59.976000px;}
.ws73{word-spacing:-59.958538px;}
.ws72{word-spacing:-59.958369px;}
.ws4d{word-spacing:-59.958198px;}
.ws5d{word-spacing:-59.943912px;}
.ws5b{word-spacing:-59.942211px;}
.wsa2{word-spacing:-59.942041px;}
.wsbf{word-spacing:-59.941871px;}
.ws8f{word-spacing:-59.941611px;}
.ws5c{word-spacing:-59.940170px;}
.wse5{word-spacing:-59.388000px;}
.wse9{word-spacing:-56.979456px;}
.ws96{word-spacing:-55.146000px;}
.ws3c{word-spacing:-55.071931px;}
.ws2d{word-spacing:-55.071836px;}
.wsa9{word-spacing:-55.071666px;}
.ws19{word-spacing:-55.070400px;}
.ws22{word-spacing:-55.070230px;}
.ws7f{word-spacing:-55.069871px;}
.ws93{word-spacing:-55.069058px;}
.ws80{word-spacing:-55.068888px;}
.ws81{word-spacing:-55.067812px;}
.ws10{word-spacing:-55.065883px;}
.wsd{word-spacing:-55.065713px;}
.ws18{word-spacing:-55.064580px;}
.ws61{word-spacing:-55.064410px;}
.wsb1{word-spacing:-55.058520px;}
.wscc{word-spacing:-55.058212px;}
.ws82{word-spacing:-55.054544px;}
.wscb{word-spacing:-55.053600px;}
.ws95{word-spacing:-55.049178px;}
.ws30{word-spacing:-55.049008px;}
.wsa5{word-spacing:-55.043677px;}
.ws97{word-spacing:-55.037527px;}
.ws9f{word-spacing:-55.034759px;}
.wsc4{word-spacing:-55.031849px;}
.ws3b{word-spacing:-55.030866px;}
.ws2e{word-spacing:-55.029883px;}
.ws17{word-spacing:-55.028940px;}
.wscd{word-spacing:-55.028404px;}
.wsad{word-spacing:-55.011886px;}
.ws31{word-spacing:-55.011251px;}
.wsc1{word-spacing:-55.011080px;}
.wsa6{word-spacing:-55.008926px;}
.wsa7{word-spacing:-55.008756px;}
.ws91{word-spacing:-54.997909px;}
.ws60{word-spacing:-54.993695px;}
.ws94{word-spacing:-54.993524px;}
.wscf{word-spacing:-54.993502px;}
.ws21{word-spacing:-54.993358px;}
.ws16{word-spacing:-54.993008px;}
.wsca{word-spacing:-54.984208px;}
.ws87{word-spacing:-54.981562px;}
.ws2f{word-spacing:-54.975610px;}
.ws7e{word-spacing:-54.975439px;}
.ws32{word-spacing:-54.973909px;}
.wsaf{word-spacing:-54.964517px;}
.wsce{word-spacing:-54.958106px;}
.ws3a{word-spacing:-54.955781px;}
.wse{word-spacing:-54.945224px;}
.ws12{word-spacing:-54.945044px;}
.wsc9{word-spacing:-54.940715px;}
.wsab{word-spacing:-54.940058px;}
.wse2{word-spacing:-54.917666px;}
.wsd0{word-spacing:-54.917012px;}
.wsae{word-spacing:-54.913470px;}
.wsaa{word-spacing:-54.910123px;}
.ws5f{word-spacing:-53.296970px;}
.ws8c{word-spacing:-53.296290px;}
.ws8d{word-spacing:-53.282324px;}
.ws8a{word-spacing:-53.281644px;}
.wsd9{word-spacing:-53.281621px;}
.ws5e{word-spacing:-53.217354px;}
.wsb4{word-spacing:-53.188477px;}
.ws52{word-spacing:-52.983000px;}
.ws50{word-spacing:-52.770293px;}
.ws4c{word-spacing:-52.707364px;}
.wsd6{word-spacing:-52.316003px;}
.wsd8{word-spacing:-52.315587px;}
.wsd7{word-spacing:-52.312053px;}
.ws4f{word-spacing:-52.197127px;}
.ws51{word-spacing:-52.027049px;}
.ws65{word-spacing:-49.965449px;}
.ws64{word-spacing:-49.952892px;}
.ws25{word-spacing:-49.562646px;}
.ws6f{word-spacing:-49.562306px;}
.ws7a{word-spacing:-49.561795px;}
.ws78{word-spacing:-49.561285px;}
.ws90{word-spacing:-49.561115px;}
.ws70{word-spacing:-49.559414px;}
.wsa4{word-spacing:-49.558054px;}
.ws75{word-spacing:-49.543937px;}
.ws7d{word-spacing:-49.531351px;}
.ws76{word-spacing:-49.527270px;}
.ws29{word-spacing:-49.526929px;}
.wsc2{word-spacing:-49.526759px;}
.ws71{word-spacing:-49.509581px;}
.ws77{word-spacing:-49.509411px;}
.ws6e{word-spacing:-49.508221px;}
.wsdd{word-spacing:-49.493934px;}
.ws2a{word-spacing:-49.477946px;}
.ws7c{word-spacing:-49.476246px;}
.ws7b{word-spacing:-49.468592px;}
.wsde{word-spacing:-49.451763px;}
.ws74{word-spacing:-49.289997px;}
.ws37{word-spacing:-47.792107px;}
.ws36{word-spacing:-47.314639px;}
.ws66{word-spacing:-46.635401px;}
.ws67{word-spacing:-46.635232px;}
.wse0{word-spacing:-46.634986px;}
.ws6a{word-spacing:-46.622438px;}
.ws62{word-spacing:-46.622268px;}
.ws6c{word-spacing:-46.621872px;}
.ws6b{word-spacing:-46.571760px;}
.ws68{word-spacing:-46.571580px;}
.ws3f{word-spacing:-46.565972px;}
.wsdc{word-spacing:-42.736195px;}
.wsdb{word-spacing:-42.736039px;}
.wsbe{word-spacing:-38.546306px;}
.ws89{word-spacing:-38.392194px;}
.wse7{word-spacing:-36.986501px;}
.wse8{word-spacing:-36.983534px;}
.wse6{word-spacing:-36.946815px;}
.ws9a{word-spacing:-36.310260px;}
.wsd4{word-spacing:-33.555968px;}
.ws33{word-spacing:-33.363118px;}
.ws38{word-spacing:-33.041764px;}
.wsc3{word-spacing:-33.041480px;}
.ws4b{word-spacing:-30.984120px;}
.wsd5{word-spacing:-30.190716px;}
.wsbc{word-spacing:-30.042198px;}
.wsc8{word-spacing:-30.042028px;}
.wsa3{word-spacing:-30.026041px;}
.wsbd{word-spacing:-30.024510px;}
.wsc0{word-spacing:-29.975358px;}
.wsa0{word-spacing:-29.952567px;}
.ws42{word-spacing:-28.760280px;}
.ws2b{word-spacing:-28.760100px;}
.ws23{word-spacing:-28.748940px;}
.wsd2{word-spacing:-26.830923px;}
.ws39{word-spacing:-25.375200px;}
.wse1{word-spacing:-23.354438px;}
.ws69{word-spacing:-23.354268px;}
.ws63{word-spacing:-23.296781px;}
.ws53{word-spacing:-20.758500px;}
.ws8{word-spacing:-20.027849px;}
.ws4a{word-spacing:-5.234040px;}
.ws35{word-spacing:-0.667200px;}
.ws11{word-spacing:0.000000px;}
.wse4{word-spacing:159.038195px;}
.ws28{word-spacing:201.582592px;}
.ws85{word-spacing:208.896290px;}
.ws88{word-spacing:601.321380px;}
.wsbb{word-spacing:1253.036460px;}
.ws84{word-spacing:1690.867440px;}
.wsb2{word-spacing:2523.183065px;}
.wsa8{word-spacing:5038.296300px;}
.wsda{word-spacing:5038.298700px;}
._0{width:1.201324px;}
._8{width:3.230220px;}
._d{width:9.079320px;}
._b{width:26.708032px;}
._f{width:27.796642px;}
._7{width:30.864564px;}
._6{width:33.771314px;}
._17{width:53.833664px;}
._1{width:56.452781px;}
._13{width:59.249357px;}
._11{width:60.255739px;}
._2{width:65.965097px;}
._a{width:73.630680px;}
._9{width:87.733819px;}
._12{width:778.273980px;}
._3{width:1730.899800px;}
._e{width:1920.305125px;}
._16{width:1928.671165px;}
._4{width:1960.349005px;}
._5{width:1964.532385px;}
._c{width:2113.960516px;}
._15{width:2195.135850px;}
._14{width:2366.503285px;}
._10{width:3200.759201px;}
.fc23{color:rgb(216,140,63);}
.fc22{color:rgb(0,153,153);}
.fc21{color:rgb(0,0,153);}
.fc1e{color:rgb(255,255,0);}
.fc1d{color:rgb(0,176,240);}
.fcc{color:rgb(107,159,37);}
.fcb{color:rgb(192,0,0);}
.fc7{color:rgb(216,108,119);}
.fc9{color:rgb(112,48,160);}
.fc3{color:rgb(0,32,96);}
.fc11{color:transparent;}
.fc5{color:rgb(96,72,120);}
.fc14{color:rgb(166,65,242);}
.fca{color:rgb(244,165,82);}
.fcd{color:rgb(0,69,134);}
.fc16{color:rgb(255,192,0);}
.fc19{color:rgb(0,128,255);}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(77,166,217);}
.fc1{color:rgb(27,88,124);}
.fc8{color:rgb(102,102,102);}
.fc12{color:rgb(159,41,54);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fc1f{color:rgb(78,133,66);}
.fce{color:rgb(0,176,80);}
.fc20{color:rgb(204,102,204);}
.fcf{color:rgb(255,20,147);}
.fc10{color:rgb(240,127,9);}
.fc13{color:rgb(0,112,192);}
.fc15{color:rgb(51,153,51);}
.fc17{color:rgb(250,108,108);}
.fc1a{color:rgb(179,179,179);}
.fc1c{color:rgb(119,31,40);}
.fc18{color:rgb(255,128,0);}
.fc1b{color:rgb(166,166,166);}
.fs22{font-size:30.997419px;}
.fs20{font-size:48.000000px;}
.fs1a{font-size:60.000000px;}
.fs15{font-size:63.000000px;}
.fs19{font-size:68.999310px;}
.fs13{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs21{font-size:80.593290px;}
.fs1e{font-size:80.999382px;}
.fs1f{font-size:81.000000px;}
.fs12{font-size:83.999287px;}
.fse{font-size:84.000000px;}
.fsb{font-size:87.000000px;}
.fsc{font-size:90.000000px;}
.fs17{font-size:93.000000px;}
.fs1c{font-size:95.999040px;}
.fs11{font-size:96.000000px;}
.fsf{font-size:99.000000px;}
.fs14{font-size:107.998920px;}
.fs1d{font-size:107.999176px;}
.fsa{font-size:108.000000px;}
.fs1b{font-size:114.000000px;}
.fs18{font-size:119.998755px;}
.fs8{font-size:120.000000px;}
.fs7{font-size:129.000000px;}
.fs1{font-size:132.000000px;}
.fs9{font-size:136.388645px;}
.fs16{font-size:144.000000px;}
.fs0{font-size:156.000000px;}
.fs6{font-size:168.000000px;}
.fs10{font-size:216.000000px;}
.fs4{font-size:240.000000px;}
.fs5{font-size:258.000000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:5.307525px;}
.ydc{bottom:5.970945px;}
.y9{bottom:12.005190px;}
.y2f{bottom:12.005400px;}
.y9f{bottom:12.005475px;}
.y65{bottom:12.005565px;}
.yb9{bottom:12.005610px;}
.y13e{bottom:19.036710px;}
.y169{bottom:21.985440px;}
.y3b{bottom:25.993995px;}
.y11d{bottom:27.292710px;}
.y14f{bottom:31.552485px;}
.y167{bottom:31.824240px;}
.y165{bottom:36.481800px;}
.yb2{bottom:41.752950px;}
.y38{bottom:44.001570px;}
.y43{bottom:47.315010px;}
.yca{bottom:48.952605px;}
.y6d{bottom:56.889090px;}
.y77{bottom:56.889300px;}
.y31{bottom:58.084605px;}
.y63{bottom:60.826230px;}
.y15f{bottom:63.796365px;}
.y14e{bottom:63.952485px;}
.y10d{bottom:64.317480px;}
.y126{bottom:65.331915px;}
.y56{bottom:72.795780px;}
.y137{bottom:73.060170px;}
.y10c{bottom:75.271230px;}
.y40{bottom:78.690825px;}
.y2c{bottom:80.745945px;}
.y166{bottom:81.406695px;}
.y6c{bottom:83.889090px;}
.y76{bottom:83.889300px;}
.y13f{bottom:89.558535px;}
.y30{bottom:90.484605px;}
.y152{bottom:90.993990px;}
.y177{bottom:92.637255px;}
.y168{bottom:94.906695px;}
.y172{bottom:95.011950px;}
.yc9{bottom:96.352575px;}
.y135{bottom:96.599355px;}
.y7f{bottom:97.137930px;}
.y125{bottom:101.331885px;}
.y3{bottom:104.573010px;}
.y10b{bottom:107.671230px;}
.y136{bottom:109.060185px;}
.y88{bottom:109.432185px;}
.yb1{bottom:110.632920px;}
.y3f{bottom:111.090825px;}
.y107{bottom:112.878960px;}
.yeb{bottom:115.387365px;}
.y171{bottom:120.211920px;}
.y75{bottom:121.228605px;}
.y7e{bottom:122.337900px;}
.y11c{bottom:123.034245px;}
.ye9{bottom:125.226300px;}
.y185{bottom:125.509650px;}
.y151{bottom:126.994005px;}
.y176{bottom:128.637270px;}
.ye7{bottom:129.883860px;}
.y60{bottom:132.554685px;}
.y141{bottom:133.583070px;}
.y2b{bottom:135.049575px;}
.y124{bottom:137.331900px;}
.y164{bottom:141.224715px;}
.y87{bottom:141.832185px;}
.y67{bottom:143.584560px;}
.yc8{bottom:143.752590px;}
.y2{bottom:144.172995px;}
.y170{bottom:145.411935px;}
.y74{bottom:146.428620px;}
.y6b{bottom:147.537780px;}
.y7d{bottom:147.537915px;}
.y72{bottom:147.538035px;}
.y184{bottom:148.909635px;}
.y3a{bottom:155.128605px;}
.y11b{bottom:155.434245px;}
.y3e{bottom:158.490840px;}
.y106{bottom:160.278975px;}
.y150{bottom:162.994020px;}
.y175{bottom:164.637285px;}
.y180{bottom:165.902805px;}
.y4b{bottom:168.083580px;}
.y16f{bottom:170.611950px;}
.y73{bottom:171.628635px;}
.y183{bottom:172.309665px;}
.y6a{bottom:172.737795px;}
.y7c{bottom:172.737930px;}
.y71{bottom:172.738050px;}
.y123{bottom:173.331915px;}
.y163{bottom:173.624715px;}
.ye8{bottom:174.808635px;}
.yc1{bottom:177.947520px;}
.y66{bottom:178.257660px;}
.y134{bottom:178.799340px;}
.y27{bottom:185.659560px;}
.y5f{bottom:187.154685px;}
.yea{bottom:188.308635px;}
.yde{bottom:192.337155px;}
.y182{bottom:195.709650px;}
.yaf{bottom:195.712935px;}
.y111{bottom:200.507430px;}
.y114{bottom:200.507565px;}
.y8b{bottom:200.901300px;}
.y39{bottom:203.291985px;}
.y3d{bottom:205.890855px;}
.y105{bottom:207.678990px;}
.y110{bottom:209.132430px;}
.y162{bottom:209.591055px;}
.y32{bottom:210.400710px;}
.y133{bottom:211.199340px;}
.ye0{bottom:213.105810px;}
.yc0{bottom:217.547505px;}
.yb0{bottom:219.016050px;}
.y14d{bottom:219.235480px;}
.y5e{bottom:226.754670px;}
.yae{bottom:228.112935px;}
.y55{bottom:233.665095px;}
.ydd{bottom:235.537155px;}
.ye1{bottom:236.750115px;}
.ya1{bottom:236.871345px;}
.yc3{bottom:238.802970px;}
.y142{bottom:241.237933px;}
.y161{bottom:241.991055px;}
.y174{bottom:242.371140px;}
.ydf{bottom:245.505810px;}
.y3c{bottom:253.290825px;}
.ybf{bottom:257.147490px;}
.yad{bottom:260.512935px;}
.y181{bottom:263.408385px;}
.y37{bottom:268.415535px;}
.y102{bottom:270.245242px;}
.y173{bottom:273.444270px;}
.y22{bottom:274.775430px;}
.y154{bottom:275.322015px;}
.y140{bottom:275.332995px;}
.yd6{bottom:277.236645px;}
.y160{bottom:277.957440px;}
.ydb{bottom:278.737155px;}
.y129{bottom:279.758580px;}
.y100{bottom:280.478535px;}
.y5d{bottom:281.354640px;}
.y54{bottom:285.994500px;}
.yb3{bottom:287.651460px;}
.y149{bottom:287.772165px;}
.yfe{bottom:287.870985px;}
.y132{bottom:289.799355px;}
.ya2{bottom:295.706985px;}
.ybe{bottom:296.747520px;}
.y8f{bottom:297.789075px;}
.y10f{bottom:297.845850px;}
.ya0{bottom:299.355555px;}
.yc4{bottom:302.151345px;}
.y128{bottom:308.558565px;}
.yf1{bottom:308.975250px;}
.y21{bottom:310.775445px;}
.y25{bottom:313.240425px;}
.yd{bottom:313.253415px;}
.y17{bottom:313.253535px;}
.y12a{bottom:317.558565px;}
.y36{bottom:319.415565px;}
.y5c{bottom:320.954670px;}
.y101{bottom:321.058173px;}
.y10e{bottom:323.045865px;}
.y148{bottom:323.772180px;}
.y1{bottom:324.113520px;}
.y153{bottom:324.529938px;}
.y8e{bottom:330.189075px;}
.yd4{bottom:330.505185px;}
.yfd{bottom:331.070985px;}
.y53{bottom:331.534110px;}
.y8{bottom:331.762035px;}
.yc7{bottom:335.752605px;}
.ybd{bottom:336.347505px;}
.y131{bottom:337.199370px;}
.ye{bottom:339.608895px;}
.y18{bottom:339.609030px;}
.yff{bottom:345.643530px;}
.y20{bottom:346.775415px;}
.yac{bottom:347.122425px;}
.y1d{bottom:352.840455px;}
.y35{bottom:370.415550px;}
.y5b{bottom:375.554670px;}
.yd5{bottom:375.601095px;}
.yfc{bottom:378.318645px;}
.y104{bottom:379.069875px;}
.ybc{bottom:379.547505px;}
.y1f{bottom:382.775430px;}
.y9d{bottom:383.241420px;}
.yf{bottom:384.517335px;}
.y19{bottom:384.517470px;}
.y130{bottom:384.599340px;}
.y144{bottom:386.457510px;}
.y1c{bottom:392.440440px;}
.y4a{bottom:392.893350px;}
.y52{bottom:392.893440px;}
.yc2{bottom:398.624685px;}
.y8d{bottom:399.714555px;}
.ycc{bottom:400.692810px;}
.y70{bottom:400.967865px;}
.y7a{bottom:400.967985px;}
.yaa{bottom:402.239205px;}
.y49{bottom:404.653350px;}
.y51{bottom:404.653440px;}
.y7{bottom:406.162005px;}
.y9c{bottom:412.041405px;}
.y9e{bottom:412.837695px;}
.y16d{bottom:414.329160px;}
.y103{bottom:415.069890px;}
.yfb{bottom:418.245345px;}
.y1e{bottom:418.775445px;}
.y34{bottom:422.374695px;}
.yba{bottom:422.747505px;}
.y6f{bottom:426.167880px;}
.y79{bottom:426.168000px;}
.ycd{bottom:427.048245px;}
.y127{bottom:429.421125px;}
.y5a{bottom:430.154670px;}
.y8c{bottom:432.114555px;}
.yf0{bottom:433.502730px;}
.y10{bottom:436.910475px;}
.y1a{bottom:436.910565px;}
.yc{bottom:437.046675px;}
.y16e{bottom:437.931129px;}
.yab{bottom:438.757539px;}
.y48{bottom:450.192960px;}
.y50{bottom:450.193050px;}
.y6e{bottom:451.367895px;}
.y78{bottom:451.368015px;}
.y9b{bottom:455.841405px;}
.y147{bottom:456.141990px;}
.y143{bottom:458.940645px;}
.y13d{bottom:460.372770px;}
.y12f{bottom:463.199355px;}
.y26{bottom:464.945910px;}
.yda{bottom:468.120345px;}
.yfa{bottom:469.211685px;}
.yce{bottom:471.956730px;}
.y17e{bottom:472.335405px;}
.yc5{bottom:472.841640px;}
.y17c{bottom:474.929025px;}
.y16c{bottom:478.459995px;}
.y15{bottom:478.517340px;}
.y6{bottom:480.562020px;}
.y59{bottom:484.754670px;}
.y11{bottom:490.211025px;}
.y1b{bottom:490.211160px;}
.y146{bottom:492.162165px;}
.y13c{bottom:492.772770px;}
.y24{bottom:495.699345px;}
.y122{bottom:495.761700px;}
.y17d{bottom:497.535420px;}
.y9a{bottom:499.641405px;}
.y91{bottom:501.640140px;}
.y17b{bottom:501.787185px;}
.y17f{bottom:506.293890px;}
.y15a{bottom:507.455385px;}
.yd9{bottom:508.082985px;}
.y47{bottom:510.702555px;}
.y4f{bottom:510.702645px;}
.y12e{bottom:513.736980px;}
.y14{bottom:514.517355px;}
.ycf{bottom:524.349825px;}
.y58{bottom:524.354655px;}
.ycb{bottom:524.486025px;}
.yb7{bottom:526.175100px;}
.y121{bottom:528.161700px;}
.y145{bottom:528.162180px;}
.y16a{bottom:531.728445px;}
.ye6{bottom:533.622495px;}
.y90{bottom:534.040140px;}
.y7b{bottom:534.999286px;}
.yef{bottom:537.421305px;}
.ya5{bottom:538.094340px;}
.y13b{bottom:540.172785px;}
.y4{bottom:542.940930px;}
.y159{bottom:543.421770px;}
.y13{bottom:550.517370px;}
.yd3{bottom:550.914600px;}
.yf5{bottom:553.537020px;}
.yf9{bottom:553.537155px;}
.y115{bottom:553.663650px;}
.y112{bottom:553.663785px;}
.y5{bottom:554.962035px;}
.y46{bottom:556.242165px;}
.y4e{bottom:556.242255px;}
.y84{bottom:559.021125px;}
.y12d{bottom:561.136995px;}
.y2a{bottom:563.514780px;}
.ye5{bottom:566.022495px;}
.y41{bottom:566.145990px;}
.y57{bottom:568.313550px;}
.yee{bottom:569.821305px;}
.ya4{bottom:570.494340px;}
.y95{bottom:572.241390px;}
.y99{bottom:572.241435px;}
.y11a{bottom:573.237165px;}
.y120{bottom:575.561715px;}
.y13a{bottom:576.172800px;}
.yd8{bottom:576.502470px;}
.y16b{bottom:576.824430px;}
.yb6{bottom:577.265100px;}
.yd0{bottom:577.650375px;}
.y15c{bottom:577.669470px;}
.yd2{bottom:583.138740px;}
.y23{bottom:587.683965px;}
.y158{bottom:589.157355px;}
.y83{bottom:593.182170px;}
.y188{bottom:594.036945px;}
.y94{bottom:601.041375px;}
.y98{bottom:601.041420px;}
.y29{bottom:603.114765px;}
.yf4{bottom:603.217920px;}
.yf8{bottom:603.218055px;}
.y15e{bottom:605.357475px;}
.y12c{bottom:608.537010px;}
.y119{bottom:609.237180px;}
.y89{bottom:610.794255px;}
.yd7{bottom:612.502485px;}
.y14c{bottom:616.124475px;}
.y45{bottom:616.751805px;}
.y4d{bottom:616.751850px;}
.ye4{bottom:616.988850px;}
.y117{bottom:620.487090px;}
.yed{bottom:620.772645px;}
.y17a{bottom:621.188355px;}
.y157{bottom:621.557355px;}
.y11f{bottom:622.961685px;}
.y82{bottom:625.582170px;}
.y139{bottom:627.172785px;}
.yb5{bottom:628.355100px;}
.ya3{bottom:632.332905px;}
.y8a{bottom:635.541255px;}
.y15d{bottom:637.757475px;}
.y69{bottom:638.650800px;}
.yf3{bottom:643.117920px;}
.yf7{bottom:643.118055px;}
.y187{bottom:644.676960px;}
.y93{bottom:644.841375px;}
.y97{bottom:644.841420px;}
.y118{bottom:645.237195px;}
.y33{bottom:645.574680px;}
.y12{bottom:647.106060px;}
.y86{bottom:650.824665px;}
.y109{bottom:650.918040px;}
.y11e{bottom:655.361685px;}
.y15b{bottom:656.070585px;}
.y116{bottom:656.487105px;}
.y81{bottom:657.982170px;}
.y179{bottom:661.150950px;}
.y14b{bottom:661.562505px;}
.y156{bottom:661.807425px;}
.yb4{bottom:664.355115px;}
.ye3{bottom:667.955205px;}
.yec{bottom:668.157645px;}
.yc6{bottom:674.752575px;}
.yd1{bottom:675.123225px;}
.y44{bottom:677.261400px;}
.y4c{bottom:677.261445px;}
.y138{bottom:678.172770px;}
.y68{bottom:678.613440px;}
.y62{bottom:683.048160px;}
.y12b{bottom:683.896980px;}
.y186{bottom:684.276945px;}
.y85{bottom:686.791050px;}
.y108{bottom:686.918055px;}
.y92{bottom:688.641375px;}
.y96{bottom:688.641420px;}
.y80{bottom:690.382170px;}
.yf2{bottom:690.517890px;}
.yf6{bottom:690.518025px;}
.y14a{bottom:692.000475px;}
.y155{bottom:694.207425px;}
.y178{bottom:701.113590px;}
.ye2{bottom:702.950475px;}
.y42{bottom:711.644700px;}
.y28{bottom:714.200640px;}
.y2d{bottom:714.200670px;}
.y61{bottom:729.963750px;}
.ya7{bottom:734.692590px;}
.ya9{bottom:743.290455px;}
.yb{bottom:748.713540px;}
.y16{bottom:748.713660px;}
.ya{bottom:748.930710px;}
.y2e{bottom:748.930800px;}
.y64{bottom:748.930845px;}
.yb8{bottom:748.930965px;}
.ya6{bottom:769.943655px;}
.ya8{bottom:772.090440px;}
.y113{bottom:1317.761745px;}
.y10a{bottom:1317.761880px;}
.h29{height:29.924970px;}
.h25{height:29.925015px;}
.h2b{height:33.524985px;}
.h40{height:35.390625px;}
.h3a{height:43.740234px;}
.h5{height:52.417969px;}
.h24{height:52.488281px;}
.h13{height:53.085938px;}
.h41{height:59.421811px;}
.h7{height:60.182137px;}
.h1f{height:61.154297px;}
.h21{height:61.235808px;}
.h17{height:61.236328px;}
.h35{height:61.933594px;}
.h20{height:65.610352px;}
.h27{height:69.562500px;}
.h3c{height:69.983675px;}
.h1e{height:69.984375px;}
.h37{height:70.218750px;}
.h2d{height:78.626167px;}
.h2c{height:78.626953px;}
.h23{height:78.731635px;}
.he{height:78.732422px;}
.h39{height:78.995304px;}
.h28{height:79.250271px;}
.h26{height:79.250451px;}
.h10{height:79.628906px;}
.h2a{height:81.858232px;}
.h36{height:83.320312px;}
.h3b{height:84.052734px;}
.h2f{height:85.664062px;}
.h32{height:87.362375px;}
.h11{height:87.363281px;}
.h33{height:87.479561px;}
.h16{height:87.480469px;}
.h38{height:87.773438px;}
.hb{height:88.476562px;}
.h22{height:88.674023px;}
.h2e{height:91.139946px;}
.h1b{height:94.230469px;}
.h2{height:96.228516px;}
.h4{height:97.324219px;}
.h18{height:97.418389px;}
.h3d{height:98.142373px;}
.h3e{height:98.143122px;}
.h14{height:99.509706px;}
.h15{height:99.509886px;}
.hc{height:100.559987px;}
.h31{height:105.328125px;}
.h12{height:107.448047px;}
.hf{height:110.345508px;}
.h1{height:113.724609px;}
.h19{height:114.112852px;}
.h1d{height:115.019531px;}
.h30{height:118.424354px;}
.h9{height:119.929688px;}
.h3f{height:136.140426px;}
.hd{height:138.428846px;}
.h1a{height:141.270589px;}
.ha{height:149.688747px;}
.h1c{height:159.257812px;}
.h34{height:164.411953px;}
.h6{height:176.953125px;}
.h8{height:190.224609px;}
.h3{height:265.429688px;}
.h0{height:810.000000px;}
.w3{width:146.836545px;}
.w4{width:158.584950px;}
.w2{width:160.312440px;}
.w6{width:195.526770px;}
.w7{width:255.118110px;}
.w1{width:307.148985px;}
.w5{width:318.974985px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x34{left:8.253600px;}
.x57{left:10.800000px;}
.x59{left:13.320570px;}
.x33{left:17.000190px;}
.x35{left:22.234410px;}
.x6{left:24.894210px;}
.x68{left:30.020685px;}
.x55{left:32.139015px;}
.x65{left:37.968765px;}
.x32{left:40.971240px;}
.x30{left:48.993345px;}
.x5{left:51.347235px;}
.x67{left:52.755015px;}
.xb{left:54.595275px;}
.xd{left:58.050000px;}
.x69{left:60.605640px;}
.xa{left:63.896790px;}
.x53{left:67.280175px;}
.x28{left:73.816980px;}
.x26{left:78.346845px;}
.x9f{left:81.893160px;}
.x6e{left:84.397785px;}
.x2b{left:86.532330px;}
.x47{left:88.044540px;}
.x23{left:90.126855px;}
.x9{left:100.420860px;}
.x2d{left:101.799570px;}
.xc{left:108.456030px;}
.x6f{left:115.324710px;}
.xe{left:117.593715px;}
.x71{left:122.312085px;}
.x6a{left:129.488430px;}
.x31{left:137.708595px;}
.x8{left:147.841965px;}
.x27{left:152.274540px;}
.xad{left:169.238460px;}
.x1d{left:172.565625px;}
.x88{left:176.250330px;}
.x76{left:178.533990px;}
.x84{left:188.922735px;}
.x3b{left:192.525225px;}
.x87{left:199.549845px;}
.x7a{left:200.604690px;}
.x95{left:206.550000px;}
.x5a{left:221.365260px;}
.x43{left:225.932475px;}
.x25{left:235.275240px;}
.xae{left:236.398770px;}
.x4{left:242.986725px;}
.xf{left:248.666370px;}
.xaa{left:252.046410px;}
.x7c{left:256.854435px;}
.x2e{left:267.140550px;}
.x81{left:281.239230px;}
.x2{left:294.004110px;}
.x20{left:299.321715px;}
.x10{left:300.580140px;}
.x70{left:305.081205px;}
.x7{left:316.442460px;}
.xa1{left:318.285315px;}
.x5b{left:327.919800px;}
.x8e{left:329.254920px;}
.x44{left:335.594985px;}
.x64{left:341.316135px;}
.x7b{left:350.493750px;}
.xab{left:352.061925px;}
.x2f{left:355.519590px;}
.x96{left:370.799505px;}
.x72{left:384.194265px;}
.x51{left:388.716105px;}
.x11{left:390.560055px;}
.x73{left:391.938885px;}
.x3d{left:412.116915px;}
.x9e{left:416.029950px;}
.x78{left:425.318865px;}
.x19{left:431.487551px;}
.x77{left:442.880865px;}
.xac{left:445.599195px;}
.x3{left:465.174375px;}
.x2c{left:472.532220px;}
.x82{left:475.209240px;}
.x1{left:482.657235px;}
.x86{left:490.773600px;}
.x7f{left:493.170735px;}
.x36{left:499.799430px;}
.x37{left:500.911740px;}
.x9a{left:505.611480px;}
.x29{left:519.209775px;}
.x24{left:522.906030px;}
.x79{left:532.523460px;}
.x3e{left:540.945540px;}
.x7d{left:543.221870px;}
.x38{left:547.655070px;}
.x92{left:552.773460px;}
.x93{left:560.214660px;}
.x1e{left:566.934090px;}
.x21{left:569.423715px;}
.x48{left:570.949140px;}
.x9c{left:576.528405px;}
.x2a{left:593.137470px;}
.x98{left:595.799265px;}
.xa2{left:624.285195px;}
.x3f{left:625.945845px;}
.xa3{left:632.029695px;}
.x4d{left:637.279470px;}
.x9d{left:646.262745px;}
.x41{left:654.463080px;}
.x66{left:660.291120px;}
.x5c{left:669.164730px;}
.x4e{left:677.054085px;}
.x45{left:700.298190px;}
.x50{left:706.829265px;}
.x40{left:714.116880px;}
.x39{left:740.103603px;}
.x89{left:757.482150px;}
.x8a{left:758.704080px;}
.x74{left:779.567805px;}
.x5d{left:803.012235px;}
.x75{left:806.567820px;}
.x3a{left:811.217130px;}
.x17{left:859.496055px;}
.x8d{left:864.305250px;}
.x85{left:868.868505px;}
.x8b{left:876.191970px;}
.x1c{left:882.523995px;}
.x1f{left:889.416135px;}
.x90{left:902.338470px;}
.x8c{left:904.040025px;}
.x8f{left:912.739125px;}
.x46{left:915.999360px;}
.x63{left:926.360430px;}
.x4f{left:933.002811px;}
.x12{left:938.960295px;}
.x49{left:943.446120px;}
.x58{left:954.203340px;}
.x6d{left:957.527781px;}
.x97{left:962.571002px;}
.x7e{left:971.788545px;}
.xa0{left:974.030310px;}
.x60{left:988.752165px;}
.x62{left:991.794270px;}
.x42{left:999.592305px;}
.x80{left:1010.249775px;}
.x83{left:1022.172840px;}
.x94{left:1025.262750px;}
.x22{left:1046.798370px;}
.x13{left:1061.243805px;}
.x15{left:1065.521505px;}
.x14{left:1072.317810px;}
.x6b{left:1076.099880px;}
.x99{left:1097.878080px;}
.x9b{left:1104.558555px;}
.xa5{left:1107.504195px;}
.x54{left:1112.788290px;}
.x3c{left:1133.083605px;}
.x4a{left:1141.663965px;}
.x6c{left:1148.859060px;}
.x5f{left:1152.484245px;}
.x16{left:1176.204240px;}
.xa6{left:1215.153360px;}
.x1b{left:1218.131655px;}
.xa9{left:1219.844745px;}
.xa7{left:1223.351460px;}
.x18{left:1226.575935px;}
.x52{left:1232.395950px;}
.x4c{left:1270.513665px;}
.x56{left:1273.100730px;}
.x4b{left:1274.855430px;}
.xa8{left:1275.881475px;}
.xa4{left:1291.583220px;}
.x61{left:1292.594850px;}
.x91{left:1299.460125px;}
.x1a{left:1308.564060px;}
.x5e{left:1336.563180px;}
@media print{
.v1f{vertical-align:-112.820747pt;}
.v1a{vertical-align:-111.701653pt;}
.v12{vertical-align:-56.334773pt;}
.vf{vertical-align:-43.200000pt;}
.vc{vertical-align:-35.199893pt;}
.v5{vertical-align:-32.903307pt;}
.v13{vertical-align:-31.782027pt;}
.v1c{vertical-align:-25.000213pt;}
.v7{vertical-align:-23.040000pt;}
.vb{vertical-align:-16.543893pt;}
.v9{vertical-align:-15.039947pt;}
.v16{vertical-align:-13.536000pt;}
.v15{vertical-align:-12.032053pt;}
.v18{vertical-align:-7.439787pt;}
.v10{vertical-align:-6.261493pt;}
.ve{vertical-align:-1.706667pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:3.200373pt;}
.v1{vertical-align:6.307733pt;}
.vd{vertical-align:18.773440pt;}
.v14{vertical-align:29.866720pt;}
.v1e{vertical-align:32.560640pt;}
.v11{vertical-align:33.600000pt;}
.v1d{vertical-align:35.839620pt;}
.v8{vertical-align:37.333280pt;}
.v6{vertical-align:38.400000pt;}
.va{vertical-align:40.000373pt;}
.v4{vertical-align:41.066667pt;}
.v19{vertical-align:44.799947pt;}
.v2{vertical-align:51.199893pt;}
.v3{vertical-align:52.266613pt;}
.v1b{vertical-align:76.253333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.002507pt;}
.ls22{letter-spacing:0.002667pt;}
.lsf{letter-spacing:0.004533pt;}
.ls21{letter-spacing:0.005440pt;}
.ls34{letter-spacing:0.005600pt;}
.ls39{letter-spacing:0.009440pt;}
.ls33{letter-spacing:0.010560pt;}
.ls26{letter-spacing:0.012853pt;}
.ls29{letter-spacing:0.014347pt;}
.ls4{letter-spacing:0.017440pt;}
.ls38{letter-spacing:0.017973pt;}
.ls3a{letter-spacing:0.025387pt;}
.ls2c{letter-spacing:0.035947pt;}
.ls3c{letter-spacing:0.036640pt;}
.ls1b{letter-spacing:0.036800pt;}
.ls2d{letter-spacing:0.039253pt;}
.ls3{letter-spacing:0.050613pt;}
.ls2{letter-spacing:0.055253pt;}
.ls2f{letter-spacing:0.064373pt;}
.lsc{letter-spacing:0.066880pt;}
.ls28{letter-spacing:0.084640pt;}
.ls1f{letter-spacing:0.084800pt;}
.ls37{letter-spacing:0.088320pt;}
.ls27{letter-spacing:0.089973pt;}
.ls36{letter-spacing:0.093707pt;}
.ls1a{letter-spacing:0.094347pt;}
.ls5{letter-spacing:0.094488pt;}
.ls1c{letter-spacing:0.094507pt;}
.ls35{letter-spacing:0.102187pt;}
.ls13{letter-spacing:2.517227pt;}
.ls15{letter-spacing:2.517973pt;}
.ls46{letter-spacing:2.679680pt;}
.ls45{letter-spacing:2.685100pt;}
.ls49{letter-spacing:2.685120pt;}
.ls42{letter-spacing:2.709153pt;}
.lsb{letter-spacing:2.877173pt;}
.ls9{letter-spacing:2.932107pt;}
.ls17{letter-spacing:3.097813pt;}
.ls11{letter-spacing:3.102453pt;}
.ls1{letter-spacing:3.874133pt;}
.ls8{letter-spacing:7.334240pt;}
.ls44{letter-spacing:7.931086pt;}
.ls48{letter-spacing:7.931147pt;}
.lsa{letter-spacing:8.846027pt;}
.ls3b{letter-spacing:17.222400pt;}
.ls25{letter-spacing:23.711040pt;}
.ls20{letter-spacing:23.847787pt;}
.ls1e{letter-spacing:23.871467pt;}
.ls4a{letter-spacing:23.896907pt;}
.ls14{letter-spacing:26.078133pt;}
.ls3e{letter-spacing:26.456533pt;}
.ls41{letter-spacing:26.462187pt;}
.ls30{letter-spacing:26.482827pt;}
.lsd{letter-spacing:26.482987pt;}
.ls31{letter-spacing:26.494240pt;}
.ls32{letter-spacing:26.494400pt;}
.ls24{letter-spacing:26.551947pt;}
.ls43{letter-spacing:28.793914pt;}
.ls47{letter-spacing:28.794133pt;}
.ls18{letter-spacing:29.108960pt;}
.ls10{letter-spacing:29.178400pt;}
.ls19{letter-spacing:29.207893pt;}
.ls7{letter-spacing:31.976747pt;}
.ls23{letter-spacing:32.602507pt;}
.ls12{letter-spacing:35.122133pt;}
.ls16{letter-spacing:35.149013pt;}
.ls3d{letter-spacing:52.951840pt;}
.lse{letter-spacing:54.933333pt;}
.ls6{letter-spacing:58.666667pt;}
.ls40{letter-spacing:60.533333pt;}
.ls2b{letter-spacing:72.629013pt;}
.ls4b{letter-spacing:76.362773pt;}
.ls1d{letter-spacing:85.614187pt;}
.ls4e{letter-spacing:100.382080pt;}
.ls4d{letter-spacing:236.575947pt;}
.ls2e{letter-spacing:1460.540427pt;}
.ls2a{letter-spacing:1555.186827pt;}
.ls4c{letter-spacing:1617.403093pt;}
.ws9{word-spacing:-150.826667pt;}
.ws3{word-spacing:-146.745347pt;}
.wsb7{word-spacing:-106.666667pt;}
.wsa{word-spacing:-105.043124pt;}
.ws5a{word-spacing:-98.037333pt;}
.ws34{word-spacing:-97.911029pt;}
.ws3d{word-spacing:-97.901237pt;}
.wsba{word-spacing:-97.899339pt;}
.ws83{word-spacing:-97.897423pt;}
.ws98{word-spacing:-97.893845pt;}
.wse3{word-spacing:-97.863996pt;}
.wsdf{word-spacing:-97.830837pt;}
.ws26{word-spacing:-97.795812pt;}
.wsd1{word-spacing:-97.792589pt;}
.ws79{word-spacing:-97.764602pt;}
.wsac{word-spacing:-97.764452pt;}
.ws2{word-spacing:-97.738667pt;}
.wsb6{word-spacing:-88.853333pt;}
.ws58{word-spacing:-88.056467pt;}
.ws13{word-spacing:-85.712686pt;}
.ws9b{word-spacing:-85.333333pt;}
.ws1e{word-spacing:-82.954667pt;}
.ws20{word-spacing:-80.062488pt;}
.wsc6{word-spacing:-80.000705pt;}
.wsc5{word-spacing:-80.000555pt;}
.wsc7{word-spacing:-79.999681pt;}
.ws8e{word-spacing:-79.968000pt;}
.ws0{word-spacing:-76.963377pt;}
.wsf{word-spacing:-75.413333pt;}
.ws48{word-spacing:-71.456000pt;}
.ws8b{word-spacing:-71.082667pt;}
.ws59{word-spacing:-68.526010pt;}
.ws27{word-spacing:-67.872000pt;}
.ws86{word-spacing:-65.122218pt;}
.ws1{word-spacing:-65.043150pt;}
.wsb0{word-spacing:-62.232325pt;}
.ws6d{word-spacing:-62.197333pt;}
.ws99{word-spacing:-61.624962pt;}
.ws9e{word-spacing:-61.612733pt;}
.ws9c{word-spacing:-61.612582pt;}
.ws9d{word-spacing:-61.554377pt;}
.wsb3{word-spacing:-59.306667pt;}
.wsb8{word-spacing:-59.306051pt;}
.ws3e{word-spacing:-59.218780pt;}
.wsb9{word-spacing:-59.202006pt;}
.wsb5{word-spacing:-59.130810pt;}
.ws15{word-spacing:-55.634592pt;}
.ws14{word-spacing:-55.632196pt;}
.ws1b{word-spacing:-55.578412pt;}
.ws1c{word-spacing:-55.576517pt;}
.ws1a{word-spacing:-55.541148pt;}
.ws46{word-spacing:-54.674667pt;}
.wsd3{word-spacing:-53.973333pt;}
.ws6{word-spacing:-53.845854pt;}
.ws40{word-spacing:-53.845703pt;}
.ws24{word-spacing:-53.845283pt;}
.ws54{word-spacing:-53.844561pt;}
.ws1f{word-spacing:-53.844410pt;}
.ws4e{word-spacing:-53.843855pt;}
.wsb{word-spacing:-53.842091pt;}
.ws57{word-spacing:-53.841940pt;}
.ws56{word-spacing:-53.825092pt;}
.ws45{word-spacing:-53.823580pt;}
.ws2c{word-spacing:-53.807891pt;}
.ws7{word-spacing:-53.807505pt;}
.ws55{word-spacing:-53.806405pt;}
.ws1d{word-spacing:-53.788204pt;}
.ws41{word-spacing:-53.782197pt;}
.ws5{word-spacing:-53.770902pt;}
.ws47{word-spacing:-53.749739pt;}
.ws4{word-spacing:-53.742614pt;}
.wsc{word-spacing:-53.719043pt;}
.ws44{word-spacing:-53.694247pt;}
.ws43{word-spacing:-53.659396pt;}
.ws49{word-spacing:-53.592000pt;}
.wsa1{word-spacing:-53.376000pt;}
.ws92{word-spacing:-53.312000pt;}
.ws73{word-spacing:-53.296478pt;}
.ws72{word-spacing:-53.296328pt;}
.ws4d{word-spacing:-53.296176pt;}
.ws5d{word-spacing:-53.283477pt;}
.ws5b{word-spacing:-53.281965pt;}
.wsa2{word-spacing:-53.281814pt;}
.wsbf{word-spacing:-53.281663pt;}
.ws8f{word-spacing:-53.281432pt;}
.ws5c{word-spacing:-53.280151pt;}
.wse5{word-spacing:-52.789333pt;}
.wse9{word-spacing:-50.648405pt;}
.ws96{word-spacing:-49.018667pt;}
.ws3c{word-spacing:-48.952828pt;}
.ws2d{word-spacing:-48.952743pt;}
.wsa9{word-spacing:-48.952592pt;}
.ws19{word-spacing:-48.951467pt;}
.ws22{word-spacing:-48.951315pt;}
.ws7f{word-spacing:-48.950996pt;}
.ws93{word-spacing:-48.950274pt;}
.ws80{word-spacing:-48.950123pt;}
.ws81{word-spacing:-48.949166pt;}
.ws10{word-spacing:-48.947452pt;}
.wsd{word-spacing:-48.947300pt;}
.ws18{word-spacing:-48.946293pt;}
.ws61{word-spacing:-48.946142pt;}
.wsb1{word-spacing:-48.940907pt;}
.wscc{word-spacing:-48.940633pt;}
.ws82{word-spacing:-48.937373pt;}
.wscb{word-spacing:-48.936533pt;}
.ws95{word-spacing:-48.932603pt;}
.ws30{word-spacing:-48.932451pt;}
.wsa5{word-spacing:-48.927713pt;}
.ws97{word-spacing:-48.922246pt;}
.ws9f{word-spacing:-48.919786pt;}
.wsc4{word-spacing:-48.917199pt;}
.ws3b{word-spacing:-48.916325pt;}
.ws2e{word-spacing:-48.915452pt;}
.ws17{word-spacing:-48.914613pt;}
.wscd{word-spacing:-48.914137pt;}
.wsad{word-spacing:-48.899454pt;}
.ws31{word-spacing:-48.898890pt;}
.wsc1{word-spacing:-48.898738pt;}
.wsa6{word-spacing:-48.896823pt;}
.wsa7{word-spacing:-48.896672pt;}
.ws91{word-spacing:-48.887030pt;}
.ws60{word-spacing:-48.883284pt;}
.ws94{word-spacing:-48.883133pt;}
.wscf{word-spacing:-48.883113pt;}
.ws21{word-spacing:-48.882985pt;}
.ws16{word-spacing:-48.882674pt;}
.wsca{word-spacing:-48.874851pt;}
.ws87{word-spacing:-48.872499pt;}
.ws2f{word-spacing:-48.867209pt;}
.ws7e{word-spacing:-48.867057pt;}
.ws32{word-spacing:-48.865697pt;}
.wsaf{word-spacing:-48.857348pt;}
.wsce{word-spacing:-48.851650pt;}
.ws3a{word-spacing:-48.849583pt;}
.wse{word-spacing:-48.840199pt;}
.ws12{word-spacing:-48.840039pt;}
.wsc9{word-spacing:-48.836191pt;}
.wsab{word-spacing:-48.835607pt;}
.wse2{word-spacing:-48.815703pt;}
.wsd0{word-spacing:-48.815122pt;}
.wsae{word-spacing:-48.811973pt;}
.wsaa{word-spacing:-48.808998pt;}
.ws5f{word-spacing:-47.375084pt;}
.ws8c{word-spacing:-47.374480pt;}
.ws8d{word-spacing:-47.362066pt;}
.ws8a{word-spacing:-47.361462pt;}
.wsd9{word-spacing:-47.361441pt;}
.ws5e{word-spacing:-47.304315pt;}
.wsb4{word-spacing:-47.278647pt;}
.ws52{word-spacing:-47.096000pt;}
.ws50{word-spacing:-46.906927pt;}
.ws4c{word-spacing:-46.850990pt;}
.wsd6{word-spacing:-46.503114pt;}
.wsd8{word-spacing:-46.502744pt;}
.wsd7{word-spacing:-46.499603pt;}
.ws4f{word-spacing:-46.397446pt;}
.ws51{word-spacing:-46.246266pt;}
.ws65{word-spacing:-44.413732pt;}
.ws64{word-spacing:-44.402570pt;}
.ws25{word-spacing:-44.055685pt;}
.ws6f{word-spacing:-44.055383pt;}
.ws7a{word-spacing:-44.054929pt;}
.ws78{word-spacing:-44.054476pt;}
.ws90{word-spacing:-44.054324pt;}
.ws70{word-spacing:-44.052812pt;}
.wsa4{word-spacing:-44.051604pt;}
.ws75{word-spacing:-44.039055pt;}
.ws7d{word-spacing:-44.027868pt;}
.ws76{word-spacing:-44.024240pt;}
.ws29{word-spacing:-44.023937pt;}
.wsc2{word-spacing:-44.023786pt;}
.ws71{word-spacing:-44.008517pt;}
.ws77{word-spacing:-44.008365pt;}
.ws6e{word-spacing:-44.007307pt;}
.wsdd{word-spacing:-43.994608pt;}
.ws2a{word-spacing:-43.980396pt;}
.ws7c{word-spacing:-43.978885pt;}
.ws7b{word-spacing:-43.972082pt;}
.wsde{word-spacing:-43.957122pt;}
.ws74{word-spacing:-43.813331pt;}
.ws37{word-spacing:-42.481873pt;}
.ws36{word-spacing:-42.057457pt;}
.ws66{word-spacing:-41.453690pt;}
.ws67{word-spacing:-41.453539pt;}
.wse0{word-spacing:-41.453321pt;}
.ws6a{word-spacing:-41.442167pt;}
.ws62{word-spacing:-41.442016pt;}
.ws6c{word-spacing:-41.441664pt;}
.ws6b{word-spacing:-41.397120pt;}
.ws68{word-spacing:-41.396960pt;}
.ws3f{word-spacing:-41.391975pt;}
.wsdc{word-spacing:-37.987729pt;}
.wsdb{word-spacing:-37.987591pt;}
.wsbe{word-spacing:-34.263383pt;}
.ws89{word-spacing:-34.126394pt;}
.wse7{word-spacing:-32.876890pt;}
.wse8{word-spacing:-32.874252pt;}
.wse6{word-spacing:-32.841613pt;}
.ws9a{word-spacing:-32.275787pt;}
.wsd4{word-spacing:-29.827527pt;}
.ws33{word-spacing:-29.656105pt;}
.ws38{word-spacing:-29.370457pt;}
.wsc3{word-spacing:-29.370205pt;}
.ws4b{word-spacing:-27.541440pt;}
.wsd5{word-spacing:-26.836192pt;}
.wsbc{word-spacing:-26.704176pt;}
.wsc8{word-spacing:-26.704025pt;}
.wsa3{word-spacing:-26.689814pt;}
.wsbd{word-spacing:-26.688453pt;}
.wsc0{word-spacing:-26.644763pt;}
.wsa0{word-spacing:-26.624504pt;}
.ws42{word-spacing:-25.564693pt;}
.ws2b{word-spacing:-25.564533pt;}
.ws23{word-spacing:-25.554613pt;}
.wsd2{word-spacing:-23.849709pt;}
.ws39{word-spacing:-22.555733pt;}
.wse1{word-spacing:-20.759500pt;}
.ws69{word-spacing:-20.759349pt;}
.ws63{word-spacing:-20.708250pt;}
.ws53{word-spacing:-18.452000pt;}
.ws8{word-spacing:-17.802532pt;}
.ws4a{word-spacing:-4.652480pt;}
.ws35{word-spacing:-0.593067pt;}
.ws11{word-spacing:0.000000pt;}
.wse4{word-spacing:141.367284pt;}
.ws28{word-spacing:179.184526pt;}
.ws85{word-spacing:185.685591pt;}
.ws88{word-spacing:534.507893pt;}
.wsbb{word-spacing:1113.810187pt;}
.ws84{word-spacing:1502.993280pt;}
.wsb2{word-spacing:2242.829391pt;}
.wsa8{word-spacing:4478.485600pt;}
.wsda{word-spacing:4478.487733pt;}
._0{width:1.067843pt;}
._8{width:2.871307pt;}
._d{width:8.070507pt;}
._b{width:23.740473pt;}
._f{width:24.708126pt;}
._7{width:27.435168pt;}
._6{width:30.018946pt;}
._17{width:47.852146pt;}
._1{width:50.180249pt;}
._13{width:52.666095pt;}
._11{width:53.560657pt;}
._2{width:58.635641pt;}
._a{width:65.449493pt;}
._9{width:77.985617pt;}
._12{width:691.799093pt;}
._3{width:1538.577600pt;}
._e{width:1706.937889pt;}
._16{width:1714.374369pt;}
._4{width:1742.532449pt;}
._5{width:1746.251009pt;}
._c{width:1879.076014pt;}
._15{width:1951.231866pt;}
._14{width:2103.558476pt;}
._10{width:2845.119290pt;}
.fs22{font-size:27.553262pt;}
.fs20{font-size:42.666667pt;}
.fs1a{font-size:53.333333pt;}
.fs15{font-size:56.000000pt;}
.fs19{font-size:61.332720pt;}
.fs13{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs21{font-size:71.638480pt;}
.fs1e{font-size:71.999450pt;}
.fs1f{font-size:72.000000pt;}
.fs12{font-size:74.666033pt;}
.fse{font-size:74.666667pt;}
.fsb{font-size:77.333333pt;}
.fsc{font-size:80.000000pt;}
.fs17{font-size:82.666667pt;}
.fs1c{font-size:85.332480pt;}
.fs11{font-size:85.333333pt;}
.fsf{font-size:88.000000pt;}
.fs14{font-size:95.999040pt;}
.fs1d{font-size:95.999267pt;}
.fsa{font-size:96.000000pt;}
.fs1b{font-size:101.333333pt;}
.fs18{font-size:106.665560pt;}
.fs8{font-size:106.666667pt;}
.fs7{font-size:114.666667pt;}
.fs1{font-size:117.333333pt;}
.fs9{font-size:121.234351pt;}
.fs16{font-size:128.000000pt;}
.fs0{font-size:138.666667pt;}
.fs6{font-size:149.333333pt;}
.fs10{font-size:192.000000pt;}
.fs4{font-size:213.333333pt;}
.fs5{font-size:229.333333pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:4.717800pt;}
.ydc{bottom:5.307507pt;}
.y9{bottom:10.671280pt;}
.y2f{bottom:10.671467pt;}
.y9f{bottom:10.671533pt;}
.y65{bottom:10.671613pt;}
.yb9{bottom:10.671653pt;}
.y13e{bottom:16.921520pt;}
.y169{bottom:19.542613pt;}
.y3b{bottom:23.105773pt;}
.y11d{bottom:24.260187pt;}
.y14f{bottom:28.046653pt;}
.y167{bottom:28.288213pt;}
.y165{bottom:32.428267pt;}
.yb2{bottom:37.113733pt;}
.y38{bottom:39.112507pt;}
.y43{bottom:42.057787pt;}
.yca{bottom:43.513427pt;}
.y6d{bottom:50.568080pt;}
.y77{bottom:50.568267pt;}
.y31{bottom:51.630760pt;}
.y63{bottom:54.067760pt;}
.y15f{bottom:56.707880pt;}
.y14e{bottom:56.846653pt;}
.y10d{bottom:57.171093pt;}
.y126{bottom:58.072813pt;}
.y56{bottom:64.707360pt;}
.y137{bottom:64.942373pt;}
.y10c{bottom:66.907760pt;}
.y40{bottom:69.947400pt;}
.y2c{bottom:71.774173pt;}
.y166{bottom:72.361507pt;}
.y6c{bottom:74.568080pt;}
.y76{bottom:74.568267pt;}
.y13f{bottom:79.607587pt;}
.y30{bottom:80.430760pt;}
.y152{bottom:80.883547pt;}
.y177{bottom:82.344227pt;}
.y168{bottom:84.361507pt;}
.y172{bottom:84.455067pt;}
.yc9{bottom:85.646733pt;}
.y135{bottom:85.866093pt;}
.y7f{bottom:86.344827pt;}
.y125{bottom:90.072787pt;}
.y3{bottom:92.953787pt;}
.y10b{bottom:95.707760pt;}
.y136{bottom:96.942387pt;}
.y88{bottom:97.273053pt;}
.yb1{bottom:98.340373pt;}
.y3f{bottom:98.747400pt;}
.y107{bottom:100.336853pt;}
.yeb{bottom:102.566547pt;}
.y171{bottom:106.855040pt;}
.y75{bottom:107.758760pt;}
.y7e{bottom:108.744800pt;}
.y11c{bottom:109.363773pt;}
.ye9{bottom:111.312267pt;}
.y185{bottom:111.564133pt;}
.y151{bottom:112.883560pt;}
.y176{bottom:114.344240pt;}
.ye7{bottom:115.452320pt;}
.y60{bottom:117.826387pt;}
.y141{bottom:118.740507pt;}
.y2b{bottom:120.044067pt;}
.y124{bottom:122.072800pt;}
.y164{bottom:125.533080pt;}
.y87{bottom:126.073053pt;}
.y67{bottom:127.630720pt;}
.yc8{bottom:127.780080pt;}
.y2{bottom:128.153773pt;}
.y170{bottom:129.255053pt;}
.y74{bottom:130.158773pt;}
.y6b{bottom:131.144693pt;}
.y7d{bottom:131.144813pt;}
.y72{bottom:131.144920pt;}
.y184{bottom:132.364120pt;}
.y3a{bottom:137.892093pt;}
.y11b{bottom:138.163773pt;}
.y3e{bottom:140.880747pt;}
.y106{bottom:142.470200pt;}
.y150{bottom:144.883573pt;}
.y175{bottom:146.344253pt;}
.y180{bottom:147.469160pt;}
.y4b{bottom:149.407627pt;}
.y16f{bottom:151.655067pt;}
.y73{bottom:152.558787pt;}
.y183{bottom:153.164147pt;}
.y6a{bottom:153.544707pt;}
.y7c{bottom:153.544827pt;}
.y71{bottom:153.544933pt;}
.y123{bottom:154.072813pt;}
.y163{bottom:154.333080pt;}
.ye8{bottom:155.385453pt;}
.yc1{bottom:158.175573pt;}
.y66{bottom:158.451253pt;}
.y134{bottom:158.932747pt;}
.y27{bottom:165.030720pt;}
.y5f{bottom:166.359720pt;}
.yea{bottom:167.385453pt;}
.yde{bottom:170.966360pt;}
.y182{bottom:173.964133pt;}
.yaf{bottom:173.967053pt;}
.y111{bottom:178.228827pt;}
.y114{bottom:178.228947pt;}
.y8b{bottom:178.578933pt;}
.y39{bottom:180.703987pt;}
.y3d{bottom:183.014093pt;}
.y105{bottom:184.603547pt;}
.y110{bottom:185.895493pt;}
.y162{bottom:186.303160pt;}
.y32{bottom:187.022853pt;}
.y133{bottom:187.732747pt;}
.ye0{bottom:189.427387pt;}
.yc0{bottom:193.375560pt;}
.yb0{bottom:194.680933pt;}
.y14d{bottom:194.875982pt;}
.y5e{bottom:201.559707pt;}
.yae{bottom:202.767053pt;}
.y55{bottom:207.702307pt;}
.ydd{bottom:209.366360pt;}
.ye1{bottom:210.444547pt;}
.ya1{bottom:210.552307pt;}
.yc3{bottom:212.269307pt;}
.y142{bottom:214.433718pt;}
.y161{bottom:215.103160pt;}
.y174{bottom:215.441013pt;}
.ydf{bottom:218.227387pt;}
.y3c{bottom:225.147400pt;}
.ybf{bottom:228.575547pt;}
.yad{bottom:231.567053pt;}
.y181{bottom:234.140787pt;}
.y37{bottom:238.591587pt;}
.y102{bottom:240.217993pt;}
.y173{bottom:243.061573pt;}
.y22{bottom:244.244827pt;}
.y154{bottom:244.730680pt;}
.y140{bottom:244.740440pt;}
.yd6{bottom:246.432573pt;}
.y160{bottom:247.073280pt;}
.ydb{bottom:247.766360pt;}
.y129{bottom:248.674293pt;}
.y100{bottom:249.314253pt;}
.y5d{bottom:250.093013pt;}
.y54{bottom:254.217333pt;}
.yb3{bottom:255.690187pt;}
.y149{bottom:255.797480pt;}
.yfe{bottom:255.885320pt;}
.y132{bottom:257.599427pt;}
.ya2{bottom:262.850653pt;}
.ybe{bottom:263.775573pt;}
.y8f{bottom:264.701400pt;}
.y10f{bottom:264.751867pt;}
.ya0{bottom:266.093827pt;}
.yc4{bottom:268.578973pt;}
.y128{bottom:274.274280pt;}
.yf1{bottom:274.644667pt;}
.y21{bottom:276.244840pt;}
.y25{bottom:278.435933pt;}
.yd{bottom:278.447480pt;}
.y17{bottom:278.447587pt;}
.y12a{bottom:282.274280pt;}
.y36{bottom:283.924947pt;}
.y5c{bottom:285.293040pt;}
.y101{bottom:285.385043pt;}
.y10e{bottom:287.151880pt;}
.y148{bottom:287.797493pt;}
.y1{bottom:288.100907pt;}
.y153{bottom:288.471056pt;}
.y8e{bottom:293.501400pt;}
.yd4{bottom:293.782387pt;}
.yfd{bottom:294.285320pt;}
.y53{bottom:294.696987pt;}
.y8{bottom:294.899587pt;}
.yc7{bottom:298.446760pt;}
.ybd{bottom:298.975560pt;}
.y131{bottom:299.732773pt;}
.ye{bottom:301.874573pt;}
.y18{bottom:301.874693pt;}
.yff{bottom:307.238693pt;}
.y20{bottom:308.244813pt;}
.yac{bottom:308.553267pt;}
.y1d{bottom:313.635960pt;}
.y35{bottom:329.258267pt;}
.y5b{bottom:333.826373pt;}
.yd5{bottom:333.867640pt;}
.yfc{bottom:336.283240pt;}
.y104{bottom:336.951000pt;}
.ybc{bottom:337.375560pt;}
.y1f{bottom:340.244827pt;}
.y9d{bottom:340.659040pt;}
.yf{bottom:341.793187pt;}
.y19{bottom:341.793307pt;}
.y130{bottom:341.866080pt;}
.y144{bottom:343.517787pt;}
.y1c{bottom:348.835947pt;}
.y4a{bottom:349.238533pt;}
.y52{bottom:349.238613pt;}
.yc2{bottom:354.333053pt;}
.y8d{bottom:355.301827pt;}
.ycc{bottom:356.171387pt;}
.y70{bottom:356.415880pt;}
.y7a{bottom:356.415987pt;}
.yaa{bottom:357.545960pt;}
.y49{bottom:359.691867pt;}
.y51{bottom:359.691947pt;}
.y7{bottom:361.032893pt;}
.y9c{bottom:366.259027pt;}
.y9e{bottom:366.966840pt;}
.y16d{bottom:368.292587pt;}
.y103{bottom:368.951013pt;}
.yfb{bottom:371.773640pt;}
.y1e{bottom:372.244840pt;}
.y34{bottom:375.444173pt;}
.yba{bottom:375.775560pt;}
.y6f{bottom:378.815893pt;}
.y79{bottom:378.816000pt;}
.ycd{bottom:379.598440pt;}
.y127{bottom:381.707667pt;}
.y5a{bottom:382.359707pt;}
.y8c{bottom:384.101827pt;}
.yf0{bottom:385.335760pt;}
.y10{bottom:388.364867pt;}
.y1a{bottom:388.364947pt;}
.yc{bottom:388.485933pt;}
.y16e{bottom:389.272115pt;}
.yab{bottom:390.006702pt;}
.y48{bottom:400.171520pt;}
.y50{bottom:400.171600pt;}
.y6e{bottom:401.215907pt;}
.y78{bottom:401.216013pt;}
.y9b{bottom:405.192360pt;}
.y147{bottom:405.459547pt;}
.y143{bottom:407.947240pt;}
.y13d{bottom:409.220240pt;}
.y12f{bottom:411.732760pt;}
.y26{bottom:413.285253pt;}
.yda{bottom:416.106973pt;}
.yfa{bottom:417.077053pt;}
.yce{bottom:419.517093pt;}
.y17e{bottom:419.853693pt;}
.yc5{bottom:420.303680pt;}
.y17c{bottom:422.159133pt;}
.y16c{bottom:425.297773pt;}
.y15{bottom:425.348747pt;}
.y6{bottom:427.166240pt;}
.y59{bottom:430.893040pt;}
.y11{bottom:435.743133pt;}
.y1b{bottom:435.743253pt;}
.y146{bottom:437.477480pt;}
.y13c{bottom:438.020240pt;}
.y24{bottom:440.621640pt;}
.y122{bottom:440.677067pt;}
.y17d{bottom:442.253707pt;}
.y9a{bottom:444.125693pt;}
.y91{bottom:445.902347pt;}
.y17b{bottom:446.033053pt;}
.y17f{bottom:450.039013pt;}
.y15a{bottom:451.071453pt;}
.yd9{bottom:451.629320pt;}
.y47{bottom:453.957827pt;}
.y4f{bottom:453.957907pt;}
.y12e{bottom:456.655093pt;}
.y14{bottom:457.348760pt;}
.ycf{bottom:466.088733pt;}
.y58{bottom:466.093027pt;}
.ycb{bottom:466.209800pt;}
.yb7{bottom:467.711200pt;}
.y121{bottom:469.477067pt;}
.y145{bottom:469.477493pt;}
.y16a{bottom:472.647507pt;}
.ye6{bottom:474.331107pt;}
.y90{bottom:474.702347pt;}
.y7b{bottom:475.554921pt;}
.yef{bottom:477.707827pt;}
.ya5{bottom:478.306080pt;}
.y13b{bottom:480.153587pt;}
.y4{bottom:482.614160pt;}
.y159{bottom:483.041573pt;}
.y13{bottom:489.348773pt;}
.yd3{bottom:489.701867pt;}
.yf5{bottom:492.032907pt;}
.yf9{bottom:492.033027pt;}
.y115{bottom:492.145467pt;}
.y112{bottom:492.145587pt;}
.y5{bottom:493.299587pt;}
.y46{bottom:494.437480pt;}
.y4e{bottom:494.437560pt;}
.y84{bottom:496.907667pt;}
.y12d{bottom:498.788440pt;}
.y2a{bottom:500.902027pt;}
.ye5{bottom:503.131107pt;}
.y41{bottom:503.240880pt;}
.y57{bottom:505.167600pt;}
.yee{bottom:506.507827pt;}
.ya4{bottom:507.106080pt;}
.y95{bottom:508.659013pt;}
.y99{bottom:508.659053pt;}
.y11a{bottom:509.544147pt;}
.y120{bottom:511.610413pt;}
.y13a{bottom:512.153600pt;}
.yd8{bottom:512.446640pt;}
.y16b{bottom:512.732827pt;}
.yb6{bottom:513.124533pt;}
.yd0{bottom:513.467000pt;}
.y15c{bottom:513.483973pt;}
.yd2{bottom:518.345547pt;}
.y23{bottom:522.385747pt;}
.y158{bottom:523.695427pt;}
.y83{bottom:527.273040pt;}
.y188{bottom:528.032840pt;}
.y94{bottom:534.259000pt;}
.y98{bottom:534.259040pt;}
.y29{bottom:536.102013pt;}
.yf4{bottom:536.193707pt;}
.yf8{bottom:536.193827pt;}
.y15e{bottom:538.095533pt;}
.y12c{bottom:540.921787pt;}
.y119{bottom:541.544160pt;}
.y89{bottom:542.928227pt;}
.yd7{bottom:544.446653pt;}
.y14c{bottom:547.666200pt;}
.y45{bottom:548.223827pt;}
.y4d{bottom:548.223867pt;}
.ye4{bottom:548.434533pt;}
.y117{bottom:551.544080pt;}
.yed{bottom:551.797907pt;}
.y17a{bottom:552.167427pt;}
.y157{bottom:552.495427pt;}
.y11f{bottom:553.743720pt;}
.y82{bottom:556.073040pt;}
.y139{bottom:557.486920pt;}
.yb5{bottom:558.537867pt;}
.ya3{bottom:562.073693pt;}
.y8a{bottom:564.925560pt;}
.y15d{bottom:566.895533pt;}
.y69{bottom:567.689600pt;}
.yf3{bottom:571.660373pt;}
.yf7{bottom:571.660493pt;}
.y187{bottom:573.046187pt;}
.y93{bottom:573.192333pt;}
.y97{bottom:573.192373pt;}
.y118{bottom:573.544173pt;}
.y33{bottom:573.844160pt;}
.y12{bottom:575.205387pt;}
.y86{bottom:578.510813pt;}
.y109{bottom:578.593813pt;}
.y11e{bottom:582.543720pt;}
.y15b{bottom:583.173853pt;}
.y116{bottom:583.544093pt;}
.y81{bottom:584.873040pt;}
.y179{bottom:587.689733pt;}
.y14b{bottom:588.055560pt;}
.y156{bottom:588.273267pt;}
.yb4{bottom:590.537880pt;}
.ye3{bottom:593.737960pt;}
.yec{bottom:593.917907pt;}
.yc6{bottom:599.780067pt;}
.yd1{bottom:600.109533pt;}
.y44{bottom:602.010133pt;}
.y4c{bottom:602.010173pt;}
.y138{bottom:602.820240pt;}
.y68{bottom:603.211947pt;}
.y62{bottom:607.153920pt;}
.y12b{bottom:607.908427pt;}
.y186{bottom:608.246173pt;}
.y85{bottom:610.480933pt;}
.y108{bottom:610.593827pt;}
.y92{bottom:612.125667pt;}
.y96{bottom:612.125707pt;}
.y80{bottom:613.673040pt;}
.yf2{bottom:613.793680pt;}
.yf6{bottom:613.793800pt;}
.y14a{bottom:615.111533pt;}
.y155{bottom:617.073267pt;}
.y178{bottom:623.212080pt;}
.ye2{bottom:624.844867pt;}
.y42{bottom:632.573067pt;}
.y28{bottom:634.845013pt;}
.y2d{bottom:634.845040pt;}
.y61{bottom:648.856667pt;}
.ya7{bottom:653.060080pt;}
.ya9{bottom:660.702627pt;}
.yb{bottom:665.523147pt;}
.y16{bottom:665.523253pt;}
.ya{bottom:665.716187pt;}
.y2e{bottom:665.716267pt;}
.y64{bottom:665.716307pt;}
.yb8{bottom:665.716413pt;}
.ya6{bottom:684.394360pt;}
.ya8{bottom:686.302613pt;}
.y113{bottom:1171.343773pt;}
.y10a{bottom:1171.343893pt;}
.h29{height:26.599973pt;}
.h25{height:26.600013pt;}
.h2b{height:29.799987pt;}
.h40{height:31.458333pt;}
.h3a{height:38.880208pt;}
.h5{height:46.593750pt;}
.h24{height:46.656250pt;}
.h13{height:47.187500pt;}
.h41{height:52.819387pt;}
.h7{height:53.495233pt;}
.h1f{height:54.359375pt;}
.h21{height:54.431830pt;}
.h17{height:54.432292pt;}
.h35{height:55.052083pt;}
.h20{height:58.320312pt;}
.h27{height:61.833333pt;}
.h3c{height:62.207711pt;}
.h1e{height:62.208333pt;}
.h37{height:62.416667pt;}
.h2d{height:69.889926pt;}
.h2c{height:69.890625pt;}
.h23{height:69.983675pt;}
.he{height:69.984375pt;}
.h39{height:70.218048pt;}
.h28{height:70.444685pt;}
.h26{height:70.444845pt;}
.h10{height:70.781250pt;}
.h2a{height:72.762873pt;}
.h36{height:74.062500pt;}
.h3b{height:74.713542pt;}
.h2f{height:76.145833pt;}
.h32{height:77.655444pt;}
.h11{height:77.656250pt;}
.h33{height:77.759610pt;}
.h16{height:77.760417pt;}
.h38{height:78.020833pt;}
.hb{height:78.645833pt;}
.h22{height:78.821354pt;}
.h2e{height:81.013285pt;}
.h1b{height:83.760417pt;}
.h2{height:85.536458pt;}
.h4{height:86.510417pt;}
.h18{height:86.594123pt;}
.h3d{height:87.237665pt;}
.h3e{height:87.238331pt;}
.h14{height:88.453072pt;}
.h15{height:88.453232pt;}
.hc{height:89.386655pt;}
.h31{height:93.625000pt;}
.h12{height:95.509375pt;}
.hf{height:98.084896pt;}
.h1{height:101.088542pt;}
.h19{height:101.433646pt;}
.h1d{height:102.239583pt;}
.h30{height:105.266092pt;}
.h9{height:106.604167pt;}
.h3f{height:121.013712pt;}
.hd{height:123.047863pt;}
.h1a{height:125.573857pt;}
.ha{height:133.056664pt;}
.h1c{height:141.562500pt;}
.h34{height:146.143958pt;}
.h6{height:157.291667pt;}
.h8{height:169.088542pt;}
.h3{height:235.937500pt;}
.h0{height:720.000000pt;}
.w3{width:130.521373pt;}
.w4{width:140.964400pt;}
.w2{width:142.499947pt;}
.w6{width:173.801573pt;}
.w7{width:226.771653pt;}
.w1{width:273.021320pt;}
.w5{width:283.533320pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x34{left:7.336533pt;}
.x57{left:9.600000pt;}
.x59{left:11.840507pt;}
.x33{left:15.111280pt;}
.x35{left:19.763920pt;}
.x6{left:22.128187pt;}
.x68{left:26.685053pt;}
.x55{left:28.568013pt;}
.x65{left:33.750013pt;}
.x32{left:36.418880pt;}
.x30{left:43.549640pt;}
.x5{left:45.641987pt;}
.x67{left:46.893347pt;}
.xb{left:48.529133pt;}
.xd{left:51.600000pt;}
.x69{left:53.871680pt;}
.xa{left:56.797147pt;}
.x53{left:59.804600pt;}
.x28{left:65.615093pt;}
.x26{left:69.641640pt;}
.x9f{left:72.793920pt;}
.x6e{left:75.020253pt;}
.x2b{left:76.917627pt;}
.x47{left:78.261813pt;}
.x23{left:80.112760pt;}
.x9{left:89.262987pt;}
.x2d{left:90.488507pt;}
.xc{left:96.405360pt;}
.x6f{left:102.510853pt;}
.xe{left:104.527747pt;}
.x71{left:108.721853pt;}
.x6a{left:115.100827pt;}
.x31{left:122.407640pt;}
.x8{left:131.415080pt;}
.x27{left:135.355147pt;}
.xad{left:150.434187pt;}
.x1d{left:153.391667pt;}
.x88{left:156.666960pt;}
.x76{left:158.696880pt;}
.x84{left:167.931320pt;}
.x3b{left:171.133533pt;}
.x87{left:177.377640pt;}
.x7a{left:178.315280pt;}
.x95{left:183.600000pt;}
.x5a{left:196.769120pt;}
.x43{left:200.828867pt;}
.x25{left:209.133547pt;}
.xae{left:210.132240pt;}
.x4{left:215.988200pt;}
.xf{left:221.036773pt;}
.xaa{left:224.041253pt;}
.x7c{left:228.315053pt;}
.x2e{left:237.458267pt;}
.x81{left:249.990427pt;}
.x2{left:261.336987pt;}
.x20{left:266.063747pt;}
.x10{left:267.182347pt;}
.x70{left:271.183293pt;}
.x7{left:281.282187pt;}
.xa1{left:282.920280pt;}
.x5b{left:291.484267pt;}
.x8e{left:292.671040pt;}
.x44{left:298.306653pt;}
.x64{left:303.392120pt;}
.x7b{left:311.550000pt;}
.xab{left:312.943933pt;}
.x2f{left:316.017413pt;}
.x96{left:329.599560pt;}
.x72{left:341.506013pt;}
.x51{left:345.525427pt;}
.x11{left:347.164493pt;}
.x73{left:348.390120pt;}
.x3d{left:366.326147pt;}
.x9e{left:369.804400pt;}
.x78{left:378.061213pt;}
.x19{left:383.544490pt;}
.x77{left:393.671880pt;}
.xac{left:396.088173pt;}
.x3{left:413.488333pt;}
.x2c{left:420.028640pt;}
.x82{left:422.408213pt;}
.x1{left:429.028653pt;}
.x86{left:436.243200pt;}
.x7f{left:438.373987pt;}
.x36{left:444.266160pt;}
.x37{left:445.254880pt;}
.x9a{left:449.432427pt;}
.x29{left:461.519800pt;}
.x24{left:464.805360pt;}
.x79{left:473.354187pt;}
.x3e{left:480.840480pt;}
.x7d{left:482.863884pt;}
.x38{left:486.804507pt;}
.x92{left:491.354187pt;}
.x93{left:497.968587pt;}
.x1e{left:503.941413pt;}
.x21{left:506.154413pt;}
.x48{left:507.510347pt;}
.x9c{left:512.469693pt;}
.x2a{left:527.233307pt;}
.x98{left:529.599347pt;}
.xa2{left:554.920173pt;}
.x3f{left:556.396307pt;}
.xa3{left:561.804173pt;}
.x4d{left:566.470640pt;}
.x9d{left:574.455773pt;}
.x41{left:581.744960pt;}
.x66{left:586.925440pt;}
.x5c{left:594.813093pt;}
.x4e{left:601.825853pt;}
.x45{left:622.487280pt;}
.x50{left:628.292680pt;}
.x40{left:634.770560pt;}
.x39{left:657.869869pt;}
.x89{left:673.317467pt;}
.x8a{left:674.403627pt;}
.x74{left:692.949160pt;}
.x5d{left:713.788653pt;}
.x75{left:716.949173pt;}
.x3a{left:721.081893pt;}
.x17{left:763.996493pt;}
.x8d{left:768.271333pt;}
.x85{left:772.327560pt;}
.x8b{left:778.837307pt;}
.x1c{left:784.465773pt;}
.x1f{left:790.592120pt;}
.x90{left:802.078640pt;}
.x8c{left:803.591133pt;}
.x8f{left:811.323667pt;}
.x46{left:814.221653pt;}
.x63{left:823.431493pt;}
.x4f{left:829.335832pt;}
.x12{left:834.631373pt;}
.x49{left:838.618773pt;}
.x58{left:848.180747pt;}
.x6d{left:851.135805pt;}
.x97{left:855.618669pt;}
.x7e{left:863.812040pt;}
.xa0{left:865.804720pt;}
.x60{left:878.890813pt;}
.x62{left:881.594907pt;}
.x42{left:888.526493pt;}
.x80{left:897.999800pt;}
.x83{left:908.598080pt;}
.x94{left:911.344667pt;}
.x22{left:930.487440pt;}
.x13{left:943.327827pt;}
.x15{left:947.130227pt;}
.x14{left:953.171387pt;}
.x6b{left:956.533227pt;}
.x99{left:975.891627pt;}
.x9b{left:981.829827pt;}
.xa5{left:984.448173pt;}
.x54{left:989.145147pt;}
.x3c{left:1007.185427pt;}
.x4a{left:1014.812413pt;}
.x6c{left:1021.208053pt;}
.x5f{left:1024.430440pt;}
.x16{left:1045.514880pt;}
.xa6{left:1080.136320pt;}
.x1b{left:1082.783693pt;}
.xa9{left:1084.306440pt;}
.xa7{left:1087.423520pt;}
.x18{left:1090.289720pt;}
.x52{left:1095.463067pt;}
.x4c{left:1129.345480pt;}
.x56{left:1131.645093pt;}
.x4b{left:1133.204827pt;}
.xa8{left:1134.116867pt;}
.xa4{left:1148.073973pt;}
.x61{left:1148.973200pt;}
.x91{left:1155.075667pt;}
.x1a{left:1163.168053pt;}
.x5e{left:1188.056160pt;}
}




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