
    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_5501482859b3defef76e4ec6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5a568947a9dbc0f252e0e35e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.724000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b4d40ca423f4c88b81755e30.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964844;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_a32bffa450bd56f48ffa7122.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.536133;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_7c7a1b145b7d1ba14ea514da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949000;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_28757fd71791076584b626bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995117;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_7f0c70a003fc314e217020dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.693848;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_c7697b69909b2d3a15b75ae5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.954102;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_139fae729ef2d6e5cf5edd2c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937000;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_8df1bded7cb814c4e5ff37e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.766602;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fc8bf388d8ceb89ff4c617c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.966309;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_f487a84d2ee85a6a71d1b660.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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_80ae1b87768c06af9466e8d1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.693848;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_20136f2a76afb9fd9684600a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.799805;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_85b9dcf07b8ec2ca31df01f6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.009766;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_7061614d05fe860c79ed14f9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-35.588199px;}
.vb{vertical-align:-14.208750px;}
.v5{vertical-align:-11.179944px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.179944px;}
.v3{vertical-align:21.835008px;}
.v8{vertical-align:24.817104px;}
.v7{vertical-align:34.457118px;}
.va{vertical-align:46.405255px;}
.v1{vertical-align:48.815452px;}
.v4{vertical-align:51.111936px;}
.v2{vertical-align:53.523344px;}
.v9{vertical-align:56.626759px;}
.ls8{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000474px;}
.ls48{letter-spacing:0.005504px;}
.ls1c{letter-spacing:0.013464px;}
.ls24{letter-spacing:0.032640px;}
.ls3b{letter-spacing:0.033108px;}
.ls21{letter-spacing:0.038274px;}
.ls14{letter-spacing:0.049890px;}
.ls38{letter-spacing:0.054420px;}
.ls1f{letter-spacing:0.120366px;}
.ls2e{letter-spacing:0.207702px;}
.ls10{letter-spacing:0.259200px;}
.ls3a{letter-spacing:0.554970px;}
.ls20{letter-spacing:0.644112px;}
.ls2d{letter-spacing:0.954720px;}
.ls2f{letter-spacing:1.010880px;}
.ls31{letter-spacing:1.935360px;}
.lsd{letter-spacing:3.369600px;}
.ls5{letter-spacing:4.803840px;}
.ls3f{letter-spacing:5.272578px;}
.ls3c{letter-spacing:5.288736px;}
.ls0{letter-spacing:5.391360px;}
.ls4{letter-spacing:10.108800px;}
.ls26{letter-spacing:10.114284px;}
.ls47{letter-spacing:10.119751px;}
.lsb{letter-spacing:10.147213px;}
.ls45{letter-spacing:10.152661px;}
.ls34{letter-spacing:10.402560px;}
.ls3e{letter-spacing:10.416660px;}
.ls35{letter-spacing:10.463040px;}
.ls44{letter-spacing:10.468800px;}
.ls1{letter-spacing:10.873374px;}
.lsf{letter-spacing:10.873380px;}
.ls36{letter-spacing:11.551680px;}
.ls37{letter-spacing:11.733120px;}
.ls30{letter-spacing:12.571224px;}
.ls41{letter-spacing:12.628800px;}
.ls39{letter-spacing:12.705215px;}
.ls1e{letter-spacing:13.063680px;}
.ls3d{letter-spacing:13.126188px;}
.ls40{letter-spacing:13.126194px;}
.ls43{letter-spacing:13.160292px;}
.ls9{letter-spacing:13.478400px;}
.ls1a{letter-spacing:13.481034px;}
.ls13{letter-spacing:13.512402px;}
.ls32{letter-spacing:13.637928px;}
.lsa{letter-spacing:14.770080px;}
.ls16{letter-spacing:14.826240px;}
.ls15{letter-spacing:15.638400px;}
.ls1d{letter-spacing:15.890112px;}
.ls2{letter-spacing:16.848000px;}
.ls19{letter-spacing:16.853484px;}
.ls3{letter-spacing:20.217600px;}
.ls12{letter-spacing:23.609136px;}
.ls2a{letter-spacing:23.609153px;}
.lsc{letter-spacing:24.917799px;}
.ls18{letter-spacing:26.979863px;}
.ls2b{letter-spacing:27.006162px;}
.ls1b{letter-spacing:27.022614px;}
.lse{letter-spacing:33.696000px;}
.ls6{letter-spacing:48.376092px;}
.ls2c{letter-spacing:48.388147px;}
.ls4a{letter-spacing:57.285952px;}
.ls7{letter-spacing:68.588208px;}
.ls11{letter-spacing:77.562336px;}
.ls28{letter-spacing:77.580324px;}
.ls33{letter-spacing:80.596555px;}
.ls23{letter-spacing:82.849815px;}
.ls49{letter-spacing:90.987399px;}
.ls22{letter-spacing:138.170055px;}
.ls46{letter-spacing:148.322730px;}
.ls29{letter-spacing:155.012551px;}
.ls27{letter-spacing:634.576704px;}
.ls17{letter-spacing:669.206210px;}
.ls25{letter-spacing:946.844009px;}
.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;}
}
.ws9{word-spacing:-73.008000px;}
.ws29{word-spacing:-60.480000px;}
.wsa{word-spacing:-56.160000px;}
.wse{word-spacing:-39.312000px;}
.ws1e{word-spacing:-20.273760px;}
.ws11{word-spacing:-16.904160px;}
.wsd{word-spacing:-13.534560px;}
.ws3{word-spacing:-5.425920px;}
.ws6{word-spacing:-4.838400px;}
.ws19{word-spacing:-0.324000px;}
.ws0{word-spacing:-0.194400px;}
.ws2{word-spacing:-0.120960px;}
.ws1{word-spacing:-0.103680px;}
.ws17{word-spacing:-0.082080px;}
.ws18{word-spacing:-0.064800px;}
.ws26{word-spacing:-0.060480px;}
.ws1a{word-spacing:-0.056160px;}
.ws28{word-spacing:-0.046008px;}
.ws8{word-spacing:0.000000px;}
.ws7{word-spacing:7.153920px;}
.ws21{word-spacing:10.052640px;}
.ws23{word-spacing:10.058124px;}
.ws2a{word-spacing:10.058130px;}
.ws27{word-spacing:10.708001px;}
.ws10{word-spacing:13.422240px;}
.ws25{word-spacing:13.543200px;}
.wsc{word-spacing:14.713920px;}
.ws2c{word-spacing:16.752960px;}
.ws4{word-spacing:16.791840px;}
.ws5{word-spacing:20.161440px;}
.wsb{word-spacing:25.236720px;}
.ws2d{word-spacing:30.315219px;}
.ws12{word-spacing:33.639840px;}
.ws2b{word-spacing:34.931520px;}
.ws22{word-spacing:47.134692px;}
.ws20{word-spacing:60.960330px;}
.ws1f{word-spacing:60.960336px;}
.ws1c{word-spacing:70.322226px;}
.ws1b{word-spacing:70.339464px;}
.ws15{word-spacing:75.485010px;}
.ws1d{word-spacing:79.059180px;}
.ws24{word-spacing:138.387324px;}
.wsf{word-spacing:150.951648px;}
.ws16{word-spacing:179.499288px;}
.ws14{word-spacing:207.741840px;}
.ws13{word-spacing:216.212124px;}
.ws2e{word-spacing:272.306802px;}
._10{margin-left:-20.217600px;}
._9{margin-left:-16.848000px;}
._e{margin-left:-14.449596px;}
._b{margin-left:-12.992802px;}
._3{margin-left:-7.192800px;}
._2{margin-left:-5.832000px;}
._0{margin-left:-4.471200px;}
._1{margin-left:-2.332800px;}
._6{margin-left:-1.209600px;}
._5{width:1.244160px;}
._4{width:2.332800px;}
._d{width:3.369600px;}
._a{width:13.478400px;}
._7{width:20.217600px;}
._f{width:26.979866px;}
._8{width:34.987680px;}
._12{width:47.174400px;}
._14{width:286.766208px;}
._11{width:296.587850px;}
._13{width:301.181688px;}
._c{width:320.175050px;}
.fc6{color:rgb(182,56,9);}
.fc5{color:transparent;}
.fc2{color:rgb(194,75,22);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(204,11,2);}
.fs3{font-size:34.560000px;}
.fsc{font-size:38.880000px;}
.fsa{font-size:39.873600px;}
.fs7{font-size:42.000000px;}
.fsb{font-size:46.008000px;}
.fs5{font-size:51.840000px;}
.fs4{font-size:56.160000px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:64.800000px;}
.fs6{font-size:82.080000px;}
.fs1{font-size:103.680000px;}
.fs2{font-size:120.960000px;}
.fs0{font-size:194.400000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:0.030373px;}
.y252{bottom:0.040095px;}
.y55{bottom:0.044732px;}
.ye9{bottom:0.052990px;}
.y224{bottom:0.178449px;}
.y62{bottom:0.197892px;}
.y12f{bottom:0.203058px;}
.yb6{bottom:0.208214px;}
.y2b2{bottom:0.251253px;}
.y24a{bottom:0.256818px;}
.yeb{bottom:0.256851px;}
.y11f{bottom:0.279399px;}
.y195{bottom:0.281651px;}
.y197{bottom:0.303449px;}
.y7d{bottom:0.327344px;}
.yb8{bottom:0.333624px;}
.y74{bottom:0.342492px;}
.ye3{bottom:0.343785px;}
.y1f0{bottom:0.364527px;}
.y236{bottom:0.378860px;}
.y298{bottom:0.380801px;}
.yd1{bottom:0.387984px;}
.y3f{bottom:0.393305px;}
.y2d1{bottom:0.407793px;}
.yc4{bottom:0.419898px;}
.y144{bottom:0.432264px;}
.yf9{bottom:0.438734px;}
.yba{bottom:0.459036px;}
.y16a{bottom:0.462966px;}
.yff{bottom:0.470730px;}
.y103{bottom:0.479766px;}
.y2b4{bottom:0.480794px;}
.y10c{bottom:0.484467px;}
.y12c{bottom:0.506808px;}
.y229{bottom:0.518153px;}
.y1ad{bottom:0.522465px;}
.y1aa{bottom:0.524715px;}
.ye{bottom:0.531382px;}
.y238{bottom:0.582720px;}
.y60{bottom:0.612486px;}
.y7f{bottom:0.624314px;}
.y214{bottom:0.627156px;}
.y2cf{bottom:0.678663px;}
.y2b6{bottom:0.710334px;}
.y20a{bottom:0.736314px;}
.yfd{bottom:0.751958px;}
.y200{bottom:0.767753px;}
.y2bc{bottom:0.768111px;}
.y22e{bottom:0.769884px;}
.ydf{bottom:0.821628px;}
.y2aa{bottom:0.833091px;}
.y81{bottom:0.841801px;}
.y244{bottom:0.857547px;}
.y66{bottom:0.868707px;}
.y1f2{bottom:0.916714px;}
.y1a1{bottom:0.920335px;}
.y77{bottom:0.936434px;}
.y33{bottom:0.942315px;}
.y2cd{bottom:0.949532px;}
.y11b{bottom:0.981516px;}
.y182{bottom:0.987269px;}
.y5e{bottom:1.027079px;}
.y10a{bottom:1.049826px;}
.y246{bottom:1.061407px;}
.y2ac{bottom:1.062632px;}
.y12{bottom:1.063263px;}
.y262{bottom:1.089513px;}
.y1b9{bottom:1.113900px;}
.y1a3{bottom:1.124196px;}
.y226{bottom:1.138449px;}
.y2cb{bottom:1.220401px;}
.y79{bottom:1.233404px;}
.y1f6{bottom:1.245540px;}
.yc2{bottom:1.262241px;}
.y23c{bottom:1.278130px;}
.y64{bottom:1.283299px;}
.y2ae{bottom:1.292172px;}
.y1b4{bottom:1.302020px;}
.y1fd{bottom:1.307753px;}
.y15c{bottom:1.316775px;}
.yf1{bottom:1.348043px;}
.y96{bottom:1.352061px;}
.y36{bottom:1.382168px;}
.y192{bottom:1.435959px;}
.y1e{bottom:1.452114px;}
.y274{bottom:1.456734px;}
.yc7{bottom:1.466101px;}
.y126{bottom:1.477179px;}
.y1b0{bottom:1.482465px;}
.yb2{bottom:1.487505px;}
.y29{bottom:1.491327px;}
.y88{bottom:1.504056px;}
.y2b0{bottom:1.521713px;}
.y1d2{bottom:1.539347px;}
.y24f{bottom:1.540095px;}
.y110{bottom:1.540362px;}
.y206{bottom:1.544732px;}
.y86{bottom:1.577903px;}
.y5a{bottom:1.606788px;}
.y2d3{bottom:1.636923px;}
.y230{bottom:1.649588px;}
.y1ce{bottom:1.695364px;}
.yda{bottom:1.698879px;}
.y292{bottom:1.716434px;}
.y70{bottom:1.755648px;}
.y285{bottom:1.797884px;}
.y2a6{bottom:1.926093px;}
.yd5{bottom:1.983879px;}
.y220{bottom:2.123094px;}
.y280{bottom:2.129651px;}
.y92{bottom:2.131044px;}
.y2c7{bottom:2.196404px;}
.y16f{bottom:2.222372px;}
.y17e{bottom:2.272857px;}
.yc9{bottom:2.317293px;}
.y269{bottom:2.330585px;}
.y115{bottom:2.333862px;}
.y19{bottom:2.335545px;}
.y52{bottom:2.341801px;}
.y146{bottom:2.372115px;}
.y106{bottom:2.377161px;}
.y25d{bottom:2.379168px;}
.y165{bottom:2.407611px;}
.y258{bottom:2.424168px;}
.y175{bottom:2.481777px;}
.y129{bottom:2.607649px;}
.y122{bottom:2.773318px;}
.y149{bottom:2.811968px;}
.y83{bottom:3.044732px;}
.y1bb{bottom:3.053753px;}
.y27d{bottom:3.082376px;}
.yb{bottom:3.091532px;}
.y1c3{bottom:3.125039px;}
.y22{bottom:3.178068px;}
.y69{bottom:3.193592px;}
.yee{bottom:3.256851px;}
.y266{bottom:3.284810px;}
.y4e{bottom:3.306321px;}
.y151{bottom:3.340747px;}
.y255{bottom:3.376893px;}
.y240{bottom:3.377287px;}
.y157{bottom:3.404732px;}
.y41{bottom:3.405966px;}
.y2b{bottom:3.431178px;}
.y17c{bottom:3.613212px;}
.y24{bottom:3.617919px;}
.y8{bottom:3.711828px;}
.ye6{bottom:3.791610px;}
.y1b7{bottom:3.880519px;}
.y6e{bottom:3.887123px;}
.y1f4{bottom:3.916714px;}
.yaf{bottom:3.917480px;}
.y1cb{bottom:3.943839px;}
.y26e{bottom:3.945792px;}
.y14c{bottom:3.954967px;}
.y90{bottom:4.009899px;}
.y1a7{bottom:4.067057px;}
.y203{bottom:4.090603px;}
.y2a3{bottom:4.116067px;}
.y1f9{bottom:4.245540px;}
.y278{bottom:4.255089px;}
.ycd{bottom:4.293846px;}
.y28a{bottom:4.353238px;}
.y1c5{bottom:4.443539px;}
.yf5{bottom:4.584595px;}
.ye1{bottom:4.599612px;}
.y162{bottom:5.664579px;}
.y28f{bottom:6.031418px;}
.y49{bottom:8.862690px;}
.y29a{bottom:9.380801px;}
.y2be{bottom:9.768111px;}
.y117{bottom:127.170717px;}
.yb4{bottom:138.039970px;}
.y114{bottom:142.921500px;}
.y116{bottom:145.255362px;}
.y2c9{bottom:149.741027px;}
.y296{bottom:155.334597px;}
.y2ca{bottom:159.000000px;}
.y202{bottom:159.117000px;}
.y201{bottom:163.207599px;}
.y204{bottom:163.207603px;}
.y113{bottom:166.095717px;}
.yb5{bottom:168.000000px;}
.y294{bottom:179.246472px;}
.y1ff{bottom:184.500000px;}
.y1fe{bottom:185.267753px;}
.y295{bottom:190.573000px;}
.yb7{bottom:195.000000px;}
.y233{bottom:196.275894px;}
.y112{bottom:202.455717px;}
.y291{bottom:202.500000px;}
.y293{bottom:204.216434px;}
.y2cc{bottom:208.500000px;}
.y1fc{bottom:216.000000px;}
.y1fb{bottom:217.307753px;}
.y10f{bottom:219.000000px;}
.y111{bottom:220.540362px;}
.y28e{bottom:220.681500px;}
.yb9{bottom:222.000000px;}
.y290{bottom:226.712918px;}
.y28d{bottom:226.712930px;}
.y232{bottom:230.089434px;}
.y10e{bottom:241.380717px;}
.y23{bottom:246.000000px;}
.y1f8{bottom:247.500000px;}
.y1c4{bottom:247.681500px;}
.y1f7{bottom:248.950554px;}
.y1c2{bottom:249.000000px;}
.ybb{bottom:249.584448px;}
.y25{bottom:249.617919px;}
.y1f5{bottom:250.500000px;}
.y28b{bottom:251.283084px;}
.y1fa{bottom:251.745540px;}
.y1c1{bottom:252.125039px;}
.y231{bottom:252.149588px;}
.y2ce{bottom:258.000000px;}
.y28c{bottom:260.180134px;}
.y154{bottom:265.505378px;}
.y21{bottom:268.500000px;}
.y289{bottom:271.500000px;}
.y20{bottom:271.678068px;}
.y10b{bottom:273.240000px;}
.y22f{bottom:274.209731px;}
.y1ec{bottom:274.376277px;}
.y288{bottom:275.853238px;}
.ybc{bottom:276.709860px;}
.y10d{bottom:279.183219px;}
.y1eb{bottom:279.260025px;}
.y18e{bottom:283.358800px;}
.y1c0{bottom:283.813148px;}
.y1ef{bottom:289.500000px;}
.y1f3{bottom:290.621729px;}
.y1f1{bottom:292.500000px;}
.y150{bottom:293.038500px;}
.y1ee{bottom:293.416714px;}
.y22d{bottom:295.500000px;}
.y22c{bottom:296.269884px;}
.y152{bottom:296.379247px;}
.y14f{bottom:296.379252px;}
.y108{bottom:300.091074px;}
.ybd{bottom:303.835272px;}
.y109{bottom:304.500000px;}
.y1bf{bottom:305.873301px;}
.y1ea{bottom:306.821139px;}
.y2d0{bottom:307.500000px;}
.y153{bottom:309.760089px;}
.y14e{bottom:309.760096px;}
.y287{bottom:312.213239px;}
.y1ed{bottom:312.321191px;}
.y105{bottom:313.921500px;}
.y107{bottom:316.298661px;}
.y2d6{bottom:317.334703px;}
.y1f{bottom:319.668707px;}
.y1be{bottom:327.933446px;}
.y22b{bottom:327.957999px;}
.y181{bottom:328.500000px;}
.y180{bottom:329.487269px;}
.y286{bottom:330.297884px;}
.ybe{bottom:330.960684px;}
.y102{bottom:332.643000px;}
.y101{bottom:333.122759px;}
.y72{bottom:335.264127px;}
.y104{bottom:338.637678px;}
.y2d4{bottom:339.086579px;}
.y188{bottom:339.966644px;}
.y14d{bottom:341.623848px;}
.yfc{bottom:346.500000px;}
.yfb{bottom:347.251958px;}
.y228{bottom:349.500000px;}
.y1e9{bottom:349.749582px;}
.y1bd{bottom:349.993599px;}
.y22a{bottom:350.018153px;}
.y2d5{bottom:350.413107px;}
.y183{bottom:350.671018px;}
.y284{bottom:351.138239px;}
.y2d2{bottom:355.500000px;}
.y73{bottom:357.000000px;}
.y189{bottom:357.807269px;}
.yb1{bottom:358.500000px;}
.y100{bottom:359.455818px;}
.yb3{bottom:359.987505px;}
.yfe{bottom:364.500000px;}
.y1ba{bottom:369.000000px;}
.y14b{bottom:369.357000px;}
.y148{bottom:370.500000px;}
.y1bc{bottom:372.053753px;}
.y227{bottom:372.078296px;}
.y184{bottom:372.079769px;}
.y14a{bottom:373.311968px;}
.y1e8{bottom:373.352803px;}
.y18a{bottom:375.647894px;}
.yae{bottom:376.558500px;}
.yb0{bottom:380.475979px;}
.y283{bottom:387.146352px;}
.yf8{bottom:389.520000px;}
.y75{bottom:392.139463px;}
.y145{bottom:393.000000px;}
.y2c6{bottom:393.117000px;}
.y185{bottom:393.488520px;}
.y1b8{bottom:394.113900px;}
.y225{bottom:394.138449px;}
.y2c8{bottom:395.313404px;}
.y147{bottom:395.372115px;}
.y1d{bottom:397.500000px;}
.y1c{bottom:398.952114px;}
.yf7{bottom:403.317389px;}
.yfa{bottom:403.317393px;}
.yad{bottom:404.795136px;}
.y282{bottom:409.206506px;}
.y18b{bottom:411.329145px;}
.y1e7{bottom:414.828867px;}
.y186{bottom:414.897270px;}
.y2c5{bottom:415.801873px;}
.y143{bottom:417.000000px;}
.y142{bottom:417.432264px;}
.y1b6{bottom:421.921500px;}
.y1b3{bottom:424.500000px;}
.y27f{bottom:425.161500px;}
.y1b5{bottom:425.802020px;}
.y76{bottom:426.000000px;}
.y223{bottom:426.178449px;}
.yac{bottom:427.106283px;}
.y281{bottom:427.291150px;}
.y18c{bottom:429.169772px;}
.y4d{bottom:434.520000px;}
.y187{bottom:436.306022px;}
.y4f{bottom:437.826321px;}
.y4c{bottom:437.826324px;}
.yf6{bottom:440.952297px;}
.y2c4{bottom:443.567433px;}
.y27c{bottom:443.883000px;}
.y1b{bottom:445.049402px;}
.y27e{bottom:446.965376px;}
.y27b{bottom:446.965380px;}
.y18d{bottom:447.010397px;}
.y1b2{bottom:447.862158px;}
.y141{bottom:449.120296px;}
.yab{bottom:449.166436px;}
.y4b{bottom:451.207170px;}
.yf3{bottom:454.310957px;}
.y279{bottom:460.346217px;}
.y78{bottom:460.500000px;}
.y18{bottom:460.798500px;}
.yf4{bottom:462.000000px;}
.y222{bottom:462.538449px;}
.y1a{bottom:463.134045px;}
.y2c3{bottom:465.998664px;}
.y17d{bottom:469.500000px;}
.y1b1{bottom:469.922312px;}
.y140{bottom:471.180450px;}
.y17f{bottom:471.772857px;}
.y27a{bottom:472.550079px;}
.yaa{bottom:473.485598px;}
.y21f{bottom:478.500000px;}
.y1e6{bottom:478.657643px;}
.y2c2{bottom:479.379497px;}
.y221{bottom:480.623094px;}
.y4a{bottom:483.070922px;}
.yf0{bottom:484.500000px;}
.yf2{bottom:485.848043px;}
.y17b{bottom:489.000000px;}
.y1af{bottom:490.500000px;}
.y1ae{bottom:491.982465px;}
.y17{bottom:492.262496px;}
.y17a{bottom:492.613212px;}
.y13f{bottom:493.240603px;}
.y7a{bottom:496.500000px;}
.y1e5{bottom:500.717796px;}
.y277{bottom:501.117000px;}
.y21e{bottom:501.463449px;}
.yec{bottom:502.672148px;}
.y276{bottom:505.372089px;}
.y48{bottom:510.838500px;}
.y2c1{bottom:512.382244px;}
.y16{bottom:514.322649px;}
.y13e{bottom:515.300756px;}
.y95{bottom:516.000000px;}
.ye8{bottom:516.052990px;}
.y94{bottom:517.352061px;}
.y47{bottom:519.701188px;}
.y273{bottom:522.000000px;}
.y1e4{bottom:522.777950px;}
.y275{bottom:523.456734px;}
.y1ac{bottom:523.500000px;}
.y1ab{bottom:524.022465px;}
.y179{bottom:524.301317px;}
.yed{bottom:525.000000px;}
.yea{bottom:528.000000px;}
.yef{bottom:528.256851px;}
.ya3{bottom:528.710447px;}
.y7c{bottom:531.000000px;}
.y9c{bottom:533.768047px;}
.y2c0{bottom:534.442397px;}
.y21d{bottom:535.901237px;}
.y15{bottom:536.382803px;}
.y13d{bottom:537.360910px;}
.y97{bottom:538.033284px;}
.y272{bottom:543.130962px;}
.y1e3{bottom:544.838103px;}
.y178{bottom:546.361470px;}
.ya4{bottom:547.654868px;}
.y46{bottom:549.393935px;}
.y9d{bottom:551.577882px;}
.ye5{bottom:555.000000px;}
.ye7{bottom:555.996624px;}
.y2bf{bottom:556.502551px;}
.y270{bottom:556.511801px;}
.y14{bottom:558.442956px;}
.ye4{bottom:558.791610px;}
.y13c{bottom:559.421063px;}
.y98{bottom:560.085316px;}
.y1a9{bottom:560.161500px;}
.y7e{bottom:565.500000px;}
.ya5{bottom:566.599289px;}
.y1e2{bottom:566.898257px;}
.y177{bottom:568.421624px;}
.y271{bottom:568.715661px;}
.y9e{bottom:569.387715px;}
.y1a6{bottom:570.000000px;}
.y1a8{bottom:574.067057px;}
.y2bd{bottom:574.500000px;}
.y45{bottom:575.073671px;}
.y21c{bottom:577.377302px;}
.y13{bottom:580.503110px;}
.y13b{bottom:581.481217px;}
.y99{bottom:582.137349px;}
.y2bb{bottom:583.500000px;}
.y2ba{bottom:584.268111px;}
.y6f{bottom:585.000000px;}
.ya6{bottom:585.543709px;}
.y71{bottom:586.755648px;}
.y9f{bottom:587.197548px;}
.y174{bottom:588.000000px;}
.y44{bottom:588.454507px;}
.ye2{bottom:588.597000px;}
.y1e1{bottom:588.958410px;}
.y176{bottom:590.481777px;}
.y26d{bottom:597.240000px;}
.y26c{bottom:601.185786px;}
.y26f{bottom:601.185792px;}
.y11{bottom:601.500000px;}
.yde{bottom:602.321628px;}
.y10{bottom:602.563263px;}
.y6d{bottom:603.357000px;}
.y13a{bottom:603.541370px;}
.y1a4{bottom:604.039494px;}
.y9a{bottom:604.189383px;}
.ya7{bottom:604.488129px;}
.ya0{bottom:605.007382px;}
.y6c{bottom:607.244122px;}
.ye0{bottom:610.500000px;}
.y1e0{bottom:611.018564px;}
.y173{bottom:612.541911px;}
.y1a0{bottom:616.500000px;}
.y1a5{bottom:617.420330px;}
.y19f{bottom:617.420335px;}
.y2a8{bottom:621.853716px;}
.ya1{bottom:622.817216px;}
.y26b{bottom:623.245940px;}
.ya8{bottom:623.432550px;}
.y139{bottom:625.601524px;}
.y43{bottom:626.213219px;}
.y9b{bottom:626.241416px;}
.y1a2{bottom:628.500000px;}
.y2a9{bottom:631.500000px;}
.y6b{bottom:631.563284px;}
.y1df{bottom:633.078717px;}
.y172{bottom:634.602065px;}
.y268{bottom:639.000000px;}
.ya2{bottom:640.627050px;}
.y21b{bottom:641.206082px;}
.y26a{bottom:641.330585px;}
.ya9{bottom:642.376971px;}
.y138{bottom:647.661677px;}
.yd{bottom:651.000000px;}
.yf{bottom:651.531382px;}
.ydd{bottom:651.628809px;}
.y40{bottom:652.500000px;}
.y6a{bottom:653.874430px;}
.y1de{bottom:655.138871px;}
.y42{bottom:655.905966px;}
.y171{bottom:656.662218px;}
.y265{bottom:657.720000px;}
.y267{bottom:661.004810px;}
.y264{bottom:661.004814px;}
.y91{bottom:662.038500px;}
.y21a{bottom:663.266235px;}
.y93{bottom:664.169544px;}
.y2ab{bottom:667.500000px;}
.y137{bottom:669.721830px;}
.ya{bottom:670.500000px;}
.y19e{bottom:672.729006px;}
.yc{bottom:673.591532px;}
.y260{bottom:674.385651px;}
.y68{bottom:675.000000px;}
.y16e{bottom:676.500000px;}
.y67{bottom:678.193592px;}
.y170{bottom:678.722372px;}
.y3e{bottom:679.500000px;}
.y3d{bottom:679.893305px;}
.y8f{bottom:681.000000px;}
.y8e{bottom:685.009899px;}
.y219{bottom:685.326389px;}
.y261{bottom:685.500000px;}
.y263{bottom:686.589513px;}
.ydc{bottom:690.114234px;}
.y136{bottom:691.781984px;}
.y9{bottom:695.651675px;}
.y1d1{bottom:699.000000px;}
.y1d0{bottom:700.539347px;}
.y16d{bottom:700.782506px;}
.y2ad{bottom:703.500000px;}
.yd9{bottom:706.500000px;}
.y218{bottom:707.386542px;}
.ydb{bottom:708.198879px;}
.y3c{bottom:711.581400px;}
.y135{bottom:713.842137px;}
.y7{bottom:714.000000px;}
.y5c{bottom:714.615267px;}
.y6{bottom:717.711828px;}
.y25f{bottom:719.411523px;}
.y1d8{bottom:719.486307px;}
.y84{bottom:721.431575px;}
.y16c{bottom:722.842659px;}
.yd8{bottom:729.039234px;}
.y217{bottom:729.446696px;}
.y85{bottom:732.000000px;}
.y3b{bottom:733.641554px;}
.y25c{bottom:735.117000px;}
.y134{bottom:735.902291px;}
.y1d3{bottom:737.129807px;}
.y25e{bottom:737.496168px;}
.y2af{bottom:739.500000px;}
.y194{bottom:741.291377px;}
.y5d{bottom:744.000000px;}
.y16b{bottom:744.902813px;}
.y1d9{bottom:749.969616px;}
.y216{bottom:751.506849px;}
.y3a{bottom:755.701707px;}
.y133{bottom:757.962444px;}
.y25b{bottom:758.336523px;}
.yd7{bottom:765.399234px;}
.y5{bottom:765.702467px;}
.y169{bottom:766.500000px;}
.y168{bottom:766.962966px;}
.y87{bottom:768.000000px;}
.y1d4{bottom:772.596399px;}
.y215{bottom:773.567003px;}
.y2b1{bottom:777.000000px;}
.y39{bottom:777.761861px;}
.y132{bottom:780.022598px;}
.y1da{bottom:780.452923px;}
.yd4{bottom:781.500000px;}
.yd6{bottom:783.483879px;}
.y5f{bottom:787.500000px;}
.y2b9{bottom:789.447393px;}
.y25a{bottom:794.696523px;}
.y213{bottom:795.000000px;}
.y212{bottom:795.627156px;}
.y196{bottom:796.500000px;}
.y38{bottom:799.822014px;}
.y131{bottom:802.082751px;}
.y167{bottom:803.322966px;}
.yd3{bottom:804.324234px;}
.y89{bottom:805.430208px;}
.y1d5{bottom:808.062990px;}
.y257{bottom:810.357000px;}
.y1db{bottom:810.936232px;}
.y2b7{bottom:811.199268px;}
.y259{bottom:812.781168px;}
.y2b3{bottom:813.000000px;}
.y164{bottom:819.000000px;}
.y35{bottom:820.500000px;}
.y166{bottom:821.407611px;}
.y37{bottom:821.882168px;}
.y2b8{bottom:822.525796px;}
.y130{bottom:824.142905px;}
.y198{bottom:826.825248px;}
.y211{bottom:827.315240px;}
.y254{bottom:829.078500px;}
.y61{bottom:831.000000px;}
.y256{bottom:832.455393px;}
.y253{bottom:832.455396px;}
.yd0{bottom:836.280000px;}
.y8a{bottom:841.356360px;}
.y1dc{bottom:841.419541px;}
.y163{bottom:842.247966px;}
.y32{bottom:843.000000px;}
.y1d6{bottom:843.529583px;}
.y34{bottom:843.942315px;}
.y24d{bottom:845.836235px;}
.y12e{bottom:846.000000px;}
.y12d{bottom:846.203058px;}
.y4{bottom:848.974465px;}
.y2b5{bottom:849.000000px;}
.y210{bottom:849.375393px;}
.ycf{bottom:850.026640px;}
.yd2{bottom:850.026644px;}
.y24e{bottom:856.500000px;}
.y199{bottom:856.847046px;}
.y251{bottom:858.000000px;}
.y250{bottom:858.040095px;}
.y2a5{bottom:865.500000px;}
.y31{bottom:866.002464px;}
.y2a7{bottom:867.426093px;}
.y20f{bottom:871.435547px;}
.y1dd{bottom:871.902849px;}
.y63{bottom:873.000000px;}
.y12b{bottom:873.720000px;}
.y161{bottom:874.078500px;}
.y8b{bottom:877.282512px;}
.y1d7{bottom:878.996174px;}
.y160{bottom:879.743082px;}
.y3{bottom:882.635603px;}
.y2a2{bottom:883.798500px;}
.y128{bottom:885.000000px;}
.y24c{bottom:885.375980px;}
.y19a{bottom:886.868844px;}
.y12a{bottom:887.607649px;}
.yce{bottom:887.661548px;}
.y2a1{bottom:887.914563px;}
.y2a4{bottom:887.914567px;}
.y20e{bottom:893.495700px;}
.y30{bottom:897.690564px;}
.y249{bottom:898.500000px;}
.y24b{bottom:898.756818px;}
.ycb{bottom:901.020207px;}
.y1cd{bottom:903.000000px;}
.y15f{bottom:904.248119px;}
.y1cf{bottom:904.695364px;}
.ycc{bottom:909.000000px;}
.y8c{bottom:913.208664px;}
.y20d{bottom:915.555854px;}
.y2a0{bottom:915.680123px;}
.y65{bottom:916.500000px;}
.y19b{bottom:916.890644px;}
.y127{bottom:917.892477px;}
.y123{bottom:917.892480px;}
.y2f{bottom:919.750718px;}
.y1ca{bottom:921.240000px;}
.y1c9{bottom:925.183811px;}
.y1cc{bottom:925.183839px;}
.y15e{bottom:928.232132px;}
.y121{bottom:928.500000px;}
.yc8{bottom:930.240000px;}
.y120{bottom:931.273318px;}
.yca{bottom:932.557293px;}
.y248{bottom:933.976709px;}
.y2{bottom:934.368293px;}
.y20c{bottom:937.616007px;}
.y29f{bottom:938.111354px;}
.y2e{bottom:941.810871px;}
.y125{bottom:942.000000px;}
.y124{bottom:943.477179px;}
.y15b{bottom:945.000000px;}
.y15d{bottom:946.316775px;}
.y243{bottom:946.500000px;}
.y19c{bottom:946.912441px;}
.y1c8{bottom:947.243964px;}
.y242{bottom:947.357547px;}
.yc3{bottom:948.961500px;}
.y8d{bottom:949.134816px;}
.y29e{bottom:951.492187px;}
.y245{bottom:958.500000px;}
.y247{bottom:959.561407px;}
.y20b{bottom:959.676161px;}
.yc1{bottom:961.500000px;}
.yc0{bottom:962.762241px;}
.y2d{bottom:963.871025px;}
.y59{bottom:964.500000px;}
.y5b{bottom:966.106788px;}
.y11e{bottom:967.318500px;}
.y11d{bottom:967.597905px;}
.y1c7{bottom:969.304118px;}
.yc6{bottom:973.500000px;}
.yc5{bottom:974.966101px;}
.y15a{bottom:975.445261px;}
.y19d{bottom:976.934240px;}
.y209{bottom:981.000000px;}
.y208{bottom:981.736314px;}
.y2a{bottom:982.500000px;}
.y23f{bottom:983.520000px;}
.y29d{bottom:984.494933px;}
.y2c{bottom:985.931178px;}
.y58{bottom:986.595262px;}
.y241{bottom:986.897287px;}
.y23e{bottom:986.897292px;}
.y1c6{bottom:991.364271px;}
.y191{bottom:991.500000px;}
.y193{bottom:992.935959px;}
.y11c{bottom:993.756728px;}
.y23b{bottom:999.000000px;}
.y159{bottom:999.764423px;}
.y1{bottom:999.777915px;}
.y23d{bottom:1000.278130px;}
.ybf{bottom:1005.865900px;}
.y28{bottom:1006.500000px;}
.y29c{bottom:1006.555087px;}
.y27{bottom:1007.991327px;}
.y57{bottom:1010.914424px;}
.y190{bottom:1013.424425px;}
.y207{bottom:1013.424429px;}
.y11a{bottom:1020.000000px;}
.y119{bottom:1020.981516px;}
.y158{bottom:1024.334577px;}
.y29b{bottom:1028.615240px;}
.y56{bottom:1033.225570px;}
.y18f{bottom:1035.484578px;}
.y23a{bottom:1035.498021px;}
.y26{bottom:1042.528454px;}
.y156{bottom:1045.500000px;}
.y299{bottom:1047.000000px;}
.y235{bottom:1048.500000px;}
.y234{bottom:1048.878860px;}
.y155{bottom:1048.904732px;}
.y82{bottom:1054.500000px;}
.y118{bottom:1055.419305px;}
.y205{bottom:1056.000000px;}
.y297{bottom:1056.380801px;}
.y54{bottom:1057.500000px;}
.y53{bottom:1057.544732px;}
.y237{bottom:1060.500000px;}
.y239{bottom:1061.082720px;}
.y51{bottom:1128.000000px;}
.y80{bottom:1129.500000px;}
.y50{bottom:1130.341801px;}
.h24{height:1.500000px;}
.h58{height:2.578500px;}
.h21{height:2.643000px;}
.h71{height:2.701500px;}
.h5a{height:2.818500px;}
.h28{height:2.941500px;}
.h60{height:6.000000px;}
.h6b{height:6.117000px;}
.h19{height:6.480000px;}
.h69{height:6.780000px;}
.h53{height:6.961500px;}
.h45{height:7.020000px;}
.h59{height:7.078500px;}
.h22{height:7.143000px;}
.h73{height:7.201500px;}
.h5b{height:7.260000px;}
.h63{height:7.383000px;}
.h29{height:7.441500px;}
.h4a{height:7.617000px;}
.h3f{height:8.403000px;}
.h4c{height:8.760000px;}
.h1e{height:9.000000px;}
.h4d{height:9.181500px;}
.h47{height:9.357000px;}
.h44{height:9.480000px;}
.h30{height:9.538500px;}
.h39{height:9.720000px;}
.h4f{height:9.780000px;}
.h57{height:9.838500px;}
.h3e{height:9.903000px;}
.h25{height:9.961500px;}
.h49{height:10.078500px;}
.h3b{height:10.143000px;}
.h10{height:10.201500px;}
.h34{height:10.260000px;}
.h66{height:10.318500px;}
.h56{height:10.383000px;}
.h55{height:10.441500px;}
.he{height:10.500000px;}
.h6c{height:10.617000px;}
.h64{height:10.857000px;}
.h67{height:10.921500px;}
.h43{height:10.980000px;}
.h31{height:11.038500px;}
.h6a{height:11.280000px;}
.h65{height:11.338500px;}
.h52{height:11.461500px;}
.h23{height:11.643000px;}
.h72{height:11.701500px;}
.h32{height:11.818500px;}
.h2a{height:11.941500px;}
.hf{height:12.000000px;}
.h68{height:12.780000px;}
.h51{height:12.961500px;}
.h41{height:13.201500px;}
.h5c{height:13.260000px;}
.h26{height:13.441500px;}
.hc{height:13.500000px;}
.h20{height:14.643000px;}
.h70{height:14.701500px;}
.h62{height:14.883000px;}
.h27{height:14.941500px;}
.h9{height:15.000000px;}
.h54{height:18.421500px;}
.h6d{height:19.318500px;}
.h36{height:19.441500px;}
.h42{height:19.681500px;}
.h3d{height:20.578500px;}
.h6e{height:24.357000px;}
.h17{height:24.661500px;}
.h74{height:24.903000px;}
.h11{height:28.080000px;}
.h4b{height:28.429877px;}
.h46{height:29.187475px;}
.h5f{height:31.405852px;}
.h1a{height:31.500000px;}
.h1d{height:31.910156px;}
.h8{height:35.808750px;}
.h1f{height:37.740937px;}
.h12{height:37.946880px;}
.h13{height:39.715312px;}
.h1c{height:39.900000px;}
.h3a{height:40.042080px;}
.h5e{height:40.284844px;}
.ha{height:41.109120px;}
.hd{height:43.024922px;}
.h61{height:44.233594px;}
.h2c{height:47.433600px;}
.h1b{height:49.248000px;}
.hb{height:59.916797px;}
.h14{height:60.082560px;}
.h2d{height:61.560000px;}
.h2e{height:62.665313px;}
.h5{height:73.820160px;}
.h40{height:73.845256px;}
.h3{height:75.893760px;}
.h2b{height:77.976000px;}
.h6{height:88.542720px;}
.h18{height:89.924534px;}
.h50{height:89.924540px;}
.h2f{height:89.924562px;}
.h6f{height:91.840386px;}
.h48{height:94.373915px;}
.h4{height:98.496000px;}
.h33{height:108.732239px;}
.h15{height:108.732248px;}
.h35{height:109.011353px;}
.h38{height:109.011369px;}
.h3c{height:111.028733px;}
.h37{height:113.351408px;}
.h16{height:113.440141px;}
.h7{height:114.912000px;}
.h5d{height:119.292071px;}
.h1{height:142.300800px;}
.h4e{height:162.255605px;}
.h2{height:184.680000px;}
.h0{height:1188.000000px;}
.w3b{width:0.661500px;}
.w14{width:0.961500px;}
.w39{width:3.000000px;}
.wc{width:4.500000px;}
.w27{width:6.000000px;}
.we{width:7.078500px;}
.w31{width:7.383000px;}
.w20{width:7.500000px;}
.wa{width:8.578500px;}
.w11{width:9.000000px;}
.w33{width:9.298500px;}
.w34{width:9.720000px;}
.w32{width:9.961500px;}
.wb{width:10.078500px;}
.w24{width:10.318500px;}
.w6{width:10.500000px;}
.w1a{width:13.500000px;}
.w18{width:14.643000px;}
.w1d{width:15.000000px;}
.w2b{width:15.181500px;}
.w17{width:15.240000px;}
.w2a{width:15.597000px;}
.w19{width:15.838500px;}
.w3c{width:16.078500px;}
.w3{width:16.441500px;}
.w2c{width:16.500000px;}
.w2f{width:16.921500px;}
.w30{width:17.161500px;}
.w15{width:17.578500px;}
.w5{width:20.338500px;}
.w7{width:23.941500px;}
.w21{width:24.000000px;}
.w3a{width:25.078500px;}
.w1f{width:25.500000px;}
.w29{width:32.941500px;}
.w1c{width:33.000000px;}
.w2d{width:34.078500px;}
.w12{width:34.500000px;}
.w28{width:40.500000px;}
.w9{width:41.578500px;}
.w4{width:41.941500px;}
.w37{width:42.000000px;}
.w35{width:43.078500px;}
.w1b{width:49.500000px;}
.w1e{width:53.578500px;}
.w10{width:58.500000px;}
.w26{width:59.578500px;}
.w8{width:67.441500px;}
.w2e{width:67.500000px;}
.w2{width:74.941500px;}
.w38{width:91.500000px;}
.w16{width:92.578500px;}
.w1{width:92.941500px;}
.wd{width:132.903000px;}
.w36{width:133.201500px;}
.w13{width:134.097000px;}
.wf{width:142.500000px;}
.w22{width:279.000000px;}
.w23{width:280.500000px;}
.w25{width:348.000000px;}
.w0{width:918.000000px;}
.x41{left:-2.522747px;}
.x4f{left:-1.355660px;}
.x0{left:0.000000px;}
.x80{left:1.361150px;}
.x8d{left:12.665755px;}
.x42{left:81.000000px;}
.x31{left:83.161500px;}
.x43{left:89.964843px;}
.x1{left:91.800000px;}
.x2a{left:93.388437px;}
.x10c{left:97.429688px;}
.x32{left:102.272343px;}
.x44{left:106.434843px;}
.x33{left:109.500000px;}
.x45{left:111.597000px;}
.x10d{left:113.899688px;}
.x10e{left:118.798500px;}
.x34{left:133.920000px;}
.x1a{left:135.889920px;}
.x1b{left:141.073920px;}
.x2b{left:142.558500px;}
.x103{left:143.815605px;}
.xba{left:145.621200px;}
.x59{left:148.521054px;}
.xee{left:150.435170px;}
.x3f{left:152.268006px;}
.x57{left:153.454530px;}
.xf6{left:154.688400px;}
.xf7{left:157.977000px;}
.x2f{left:159.408000px;}
.x30{left:160.908006px;}
.x90{left:162.756000px;}
.xf2{left:163.801440px;}
.x2{left:166.158000px;}
.x6f{left:167.826600px;}
.x2d{left:170.081994px;}
.x70{left:171.261000px;}
.x114{left:173.420400px;}
.x3{left:175.294800px;}
.xc3{left:178.500000px;}
.xc2{left:179.790000px;}
.x10b{left:180.900000px;}
.xd2{left:182.601000px;}
.xdd{left:184.500000px;}
.xd3{left:185.841000px;}
.x3e{left:187.500000px;}
.x24{left:189.172800px;}
.xa2{left:191.219400px;}
.xb5{left:192.888000px;}
.x25{left:195.220800px;}
.x104{left:198.469071px;}
.x71{left:199.530000px;}
.x72{left:202.770000px;}
.x60{left:204.000000px;}
.xc4{left:207.000000px;}
.x1c{left:208.206720px;}
.x46{left:210.000000px;}
.x35{left:211.973760px;}
.x1d{left:213.390720px;}
.x91{left:214.774200px;}
.xc5{left:216.000000px;}
.x36{left:218.021760px;}
.xf3{left:221.287680px;}
.x2e{left:222.588000px;}
.xde{left:225.000000px;}
.x58{left:226.584000px;}
.x92{left:228.285000px;}
.x73{left:229.338000px;}
.x93{left:231.525000px;}
.x74{left:232.578000px;}
.x3c{left:234.834011px;}
.xdf{left:236.699655px;}
.x2c{left:239.436000px;}
.x109{left:241.957800px;}
.x26{left:243.786240px;}
.x10a{left:245.197800px;}
.xd4{left:246.493800px;}
.x27{left:249.834240px;}
.xa3{left:252.131400px;}
.x69{left:253.879920px;}
.x75{left:254.901600px;}
.x76{left:258.206400px;}
.xb{left:259.424640px;}
.xe6{left:261.000000px;}
.xc6{left:262.500000px;}
.xc{left:264.608640px;}
.xe0{left:267.028797px;}
.x94{left:268.671600px;}
.xc7{left:270.398397px;}
.x95{left:271.911600px;}
.xa4{left:277.695000px;}
.x37{left:278.804160px;}
.xa5{left:280.999800px;}
.x113{left:282.000000px;}
.x127{left:283.500000px;}
.x38{left:284.852160px;}
.x7f{left:289.500000px;}
.xb8{left:291.000000px;}
.x8c{left:292.500000px;}
.x77{left:294.850800px;}
.x78{left:298.090800px;}
.xb9{left:300.000000px;}
.xd{left:303.255360px;}
.xc8{left:304.500000px;}
.xdb{left:306.832113px;}
.xe{left:308.517120px;}
.xe1{left:310.500000px;}
.x79{left:311.601600px;}
.xf4{left:312.945120px;}
.x7a{left:314.841600px;}
.xa6{left:317.644200px;}
.xf5{left:319.083840px;}
.xa7{left:320.884200px;}
.x7b{left:323.206326px;}
.x118{left:324.303771px;}
.xab{left:325.500000px;}
.x39{left:326.522880px;}
.x1e{left:328.008960px;}
.x28{left:329.395680px;}
.xe2{left:331.500000px;}
.x1f{left:333.192960px;}
.x96{left:334.314000px;}
.x29{left:335.443680px;}
.x97{left:337.554000px;}
.xf{left:339.050880px;}
.xcb{left:340.500000px;}
.xc1{left:342.000000px;}
.x10{left:344.234880px;}
.xc9{left:346.217141px;}
.x6a{left:349.256880px;}
.xd5{left:350.433000px;}
.x98{left:351.567000px;}
.x47{left:352.948113px;}
.x61{left:355.500000px;}
.x7c{left:358.246926px;}
.xb6{left:360.000000px;}
.x6b{left:361.753560px;}
.x62{left:363.000000px;}
.xca{left:364.500000px;}
.x6c{left:365.857560px;}
.xb7{left:367.500000px;}
.x128{left:369.000000px;}
.x5c{left:370.082884px;}
.xf8{left:371.768400px;}
.x84{left:373.500000px;}
.x5a{left:375.364789px;}
.x8e{left:376.500000px;}
.x81{left:378.803398px;}
.xcc{left:381.000000px;}
.x85{left:382.500000px;}
.xa8{left:384.467328px;}
.xbb{left:385.762591px;}
.x8f{left:387.000000px;}
.x7d{left:389.415726px;}
.x115{left:390.759600px;}
.x7e{left:392.655726px;}
.x48{left:396.000000px;}
.xf9{left:397.332000px;}
.x82{left:399.000000px;}
.xdc{left:401.182284px;}
.x99{left:402.807600px;}
.x40{left:405.000000px;}
.x9a{left:406.096200px;}
.xac{left:408.000000px;}
.x20{left:410.797440px;}
.x3d{left:414.075088px;}
.x21{left:415.981440px;}
.xa9{left:418.681500px;}
.xb1{left:420.000000px;}
.x83{left:424.295741px;}
.x6d{left:426.596760px;}
.xaa{left:427.609995px;}
.x105{left:429.000000px;}
.x6e{left:430.700760px;}
.xb2{left:432.000000px;}
.x9b{left:433.976400px;}
.x22{left:437.598720px;}
.x86{left:438.617911px;}
.xb3{left:441.000000px;}
.x23{left:442.886400px;}
.xfe{left:444.013619px;}
.x119{left:445.609371px;}
.x9c{left:447.989400px;}
.x10f{left:448.991311px;}
.x106{left:450.498166px;}
.x4{left:451.537200px;}
.xcd{left:453.000000px;}
.x49{left:454.041597px;}
.xfa{left:456.186600px;}
.x5{left:460.139400px;}
.x116{left:463.206000px;}
.xbc{left:465.003764px;}
.xce{left:466.500000px;}
.xf1{left:468.433210px;}
.x107{left:472.400566px;}
.x11{left:474.094080px;}
.x11a{left:475.935771px;}
.xd6{left:477.748800px;}
.x12{left:479.070720px;}
.x3a{left:481.805280px;}
.xef{left:486.161634px;}
.x3b{left:487.853280px;}
.xad{left:490.500000px;}
.x11b{left:495.000000px;}
.x9f{left:498.000000px;}
.x6{left:499.554000px;}
.xae{left:501.000000px;}
.xfb{left:502.583400px;}
.xb0{left:506.181722px;}
.x7{left:508.253400px;}
.xaf{left:511.500000px;}
.xe3{left:513.024679px;}
.x124{left:514.500000px;}
.xbd{left:516.000000px;}
.x110{left:519.000000px;}
.x13{left:520.464960px;}
.xe4{left:523.500000px;}
.x14{left:525.441600px;}
.xd7{left:531.144000px;}
.xd8{left:534.432600px;}
.x89{left:535.500000px;}
.x11c{left:536.588571px;}
.x9d{left:541.058400px;}
.x87{left:543.000000px;}
.x8a{left:544.500000px;}
.xe5{left:546.000000px;}
.xfc{left:550.000800px;}
.xfd{left:553.240800px;}
.x4a{left:555.000000px;}
.xd9{left:556.205400px;}
.xda{left:559.445400px;}
.x5b{left:561.000000px;}
.x88{left:562.500000px;}
.x4b{left:563.556341px;}
.x11d{left:566.914971px;}
.x9e{left:570.315600px;}
.xd1{left:571.749565px;}
.x8{left:573.231600px;}
.x108{left:576.000000px;}
.x8b{left:577.436811px;}
.x111{left:579.000000px;}
.xa0{left:580.500000px;}
.x9{left:582.222600px;}
.xcf{left:587.461660px;}
.x5f{left:591.088047px;}
.x112{left:593.892337px;}
.x117{left:597.000000px;}
.xe7{left:600.000000px;}
.xa1{left:601.500000px;}
.x15{left:604.704960px;}
.x5d{left:607.178389px;}
.x16{left:609.888960px;}
.xe8{left:611.114157px;}
.xff{left:616.500000px;}
.x4c{left:622.500000px;}
.x11e{left:627.567771px;}
.x63{left:631.500000px;}
.xe9{left:639.000000px;}
.x11f{left:646.500000px;}
.xea{left:649.868670px;}
.x4d{left:656.220340px;}
.x120{left:657.894171px;}
.x64{left:664.644340px;}
.x4e{left:666.000000px;}
.xeb{left:669.000000px;}
.x53{left:671.403000px;}
.x50{left:673.068340px;}
.x65{left:675.000000px;}
.x121{left:676.500000px;}
.xec{left:680.197812px;}
.x66{left:681.492340px;}
.x122{left:688.220571px;}
.xb4{left:690.127879px;}
.x51{left:691.500000px;}
.xc0{left:692.956224px;}
.x52{left:698.343083px;}
.x67{left:700.500000px;}
.xed{left:702.100212px;}
.x68{left:706.500000px;}
.xbe{left:711.653977px;}
.x123{left:718.546971px;}
.xbf{left:720.000000px;}
.x17{left:742.106880px;}
.x18{left:747.679680px;}
.xf0{left:750.000000px;}
.xd0{left:754.500000px;}
.x100{left:757.776714px;}
.x101{left:761.016714px;}
.x102{left:787.033914px;}
.x5e{left:792.000000px;}
.x19{left:795.916800px;}
.x125{left:798.838500px;}
.x54{left:806.038500px;}
.x126{left:810.850312px;}
.x55{left:818.315156px;}
.xa{left:820.119600px;}
.x56{left:828.035156px;}
@media print{
.vc{vertical-align:-31.633955pt;}
.vb{vertical-align:-12.630000pt;}
.v5{vertical-align:-9.937728pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.937728pt;}
.v3{vertical-align:19.408896pt;}
.v8{vertical-align:22.059648pt;}
.v7{vertical-align:30.628549pt;}
.va{vertical-align:41.249115pt;}
.v1{vertical-align:43.391513pt;}
.v4{vertical-align:45.432832pt;}
.v2{vertical-align:47.576306pt;}
.v9{vertical-align:50.334897pt;}
.ls8{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000421pt;}
.ls48{letter-spacing:0.004892pt;}
.ls1c{letter-spacing:0.011968pt;}
.ls24{letter-spacing:0.029013pt;}
.ls3b{letter-spacing:0.029429pt;}
.ls21{letter-spacing:0.034021pt;}
.ls14{letter-spacing:0.044347pt;}
.ls38{letter-spacing:0.048373pt;}
.ls1f{letter-spacing:0.106992pt;}
.ls2e{letter-spacing:0.184624pt;}
.ls10{letter-spacing:0.230400pt;}
.ls3a{letter-spacing:0.493307pt;}
.ls20{letter-spacing:0.572544pt;}
.ls2d{letter-spacing:0.848640pt;}
.ls2f{letter-spacing:0.898560pt;}
.ls31{letter-spacing:1.720320pt;}
.lsd{letter-spacing:2.995200pt;}
.ls5{letter-spacing:4.270080pt;}
.ls3f{letter-spacing:4.686736pt;}
.ls3c{letter-spacing:4.701099pt;}
.ls0{letter-spacing:4.792320pt;}
.ls4{letter-spacing:8.985600pt;}
.ls26{letter-spacing:8.990475pt;}
.ls47{letter-spacing:8.995334pt;}
.lsb{letter-spacing:9.019745pt;}
.ls45{letter-spacing:9.024588pt;}
.ls34{letter-spacing:9.246720pt;}
.ls3e{letter-spacing:9.259253pt;}
.ls35{letter-spacing:9.300480pt;}
.ls44{letter-spacing:9.305600pt;}
.ls1{letter-spacing:9.665221pt;}
.lsf{letter-spacing:9.665227pt;}
.ls36{letter-spacing:10.268160pt;}
.ls37{letter-spacing:10.429440pt;}
.ls30{letter-spacing:11.174421pt;}
.ls41{letter-spacing:11.225600pt;}
.ls39{letter-spacing:11.293524pt;}
.ls1e{letter-spacing:11.612160pt;}
.ls3d{letter-spacing:11.667723pt;}
.ls40{letter-spacing:11.667728pt;}
.ls43{letter-spacing:11.698037pt;}
.ls9{letter-spacing:11.980800pt;}
.ls1a{letter-spacing:11.983141pt;}
.ls13{letter-spacing:12.011024pt;}
.ls32{letter-spacing:12.122603pt;}
.lsa{letter-spacing:13.128960pt;}
.ls16{letter-spacing:13.178880pt;}
.ls15{letter-spacing:13.900800pt;}
.ls1d{letter-spacing:14.124544pt;}
.ls2{letter-spacing:14.976000pt;}
.ls19{letter-spacing:14.980875pt;}
.ls3{letter-spacing:17.971200pt;}
.ls12{letter-spacing:20.985899pt;}
.ls2a{letter-spacing:20.985914pt;}
.lsc{letter-spacing:22.149155pt;}
.ls18{letter-spacing:23.982100pt;}
.ls2b{letter-spacing:24.005477pt;}
.ls1b{letter-spacing:24.020101pt;}
.lse{letter-spacing:29.952000pt;}
.ls6{letter-spacing:43.000971pt;}
.ls2c{letter-spacing:43.011686pt;}
.ls4a{letter-spacing:50.920846pt;}
.ls7{letter-spacing:60.967296pt;}
.ls11{letter-spacing:68.944299pt;}
.ls28{letter-spacing:68.960288pt;}
.ls33{letter-spacing:71.641382pt;}
.ls23{letter-spacing:73.644280pt;}
.ls49{letter-spacing:80.877688pt;}
.ls22{letter-spacing:122.817827pt;}
.ls46{letter-spacing:131.842427pt;}
.ls29{letter-spacing:137.788934pt;}
.ls27{letter-spacing:564.068181pt;}
.ls17{letter-spacing:594.849965pt;}
.ls25{letter-spacing:841.639119pt;}
.ws9{word-spacing:-64.896000pt;}
.ws29{word-spacing:-53.760000pt;}
.wsa{word-spacing:-49.920000pt;}
.wse{word-spacing:-34.944000pt;}
.ws1e{word-spacing:-18.021120pt;}
.ws11{word-spacing:-15.025920pt;}
.wsd{word-spacing:-12.030720pt;}
.ws3{word-spacing:-4.823040pt;}
.ws6{word-spacing:-4.300800pt;}
.ws19{word-spacing:-0.288000pt;}
.ws0{word-spacing:-0.172800pt;}
.ws2{word-spacing:-0.107520pt;}
.ws1{word-spacing:-0.092160pt;}
.ws17{word-spacing:-0.072960pt;}
.ws18{word-spacing:-0.057600pt;}
.ws26{word-spacing:-0.053760pt;}
.ws1a{word-spacing:-0.049920pt;}
.ws28{word-spacing:-0.040896pt;}
.ws8{word-spacing:0.000000pt;}
.ws7{word-spacing:6.359040pt;}
.ws21{word-spacing:8.935680pt;}
.ws23{word-spacing:8.940555pt;}
.ws2a{word-spacing:8.940560pt;}
.ws27{word-spacing:9.518223pt;}
.ws10{word-spacing:11.930880pt;}
.ws25{word-spacing:12.038400pt;}
.wsc{word-spacing:13.079040pt;}
.ws2c{word-spacing:14.891520pt;}
.ws4{word-spacing:14.926080pt;}
.ws5{word-spacing:17.921280pt;}
.wsb{word-spacing:22.432640pt;}
.ws2d{word-spacing:26.946861pt;}
.ws12{word-spacing:29.902080pt;}
.ws2b{word-spacing:31.050240pt;}
.ws22{word-spacing:41.897504pt;}
.ws20{word-spacing:54.186960pt;}
.ws1f{word-spacing:54.186965pt;}
.ws1c{word-spacing:62.508645pt;}
.ws1b{word-spacing:62.523968pt;}
.ws15{word-spacing:67.097787pt;}
.ws1d{word-spacing:70.274827pt;}
.ws24{word-spacing:123.010955pt;}
.wsf{word-spacing:134.179242pt;}
.ws16{word-spacing:159.554923pt;}
.ws14{word-spacing:184.659413pt;}
.ws13{word-spacing:192.188555pt;}
.ws2e{word-spacing:242.050491pt;}
._10{margin-left:-17.971200pt;}
._9{margin-left:-14.976000pt;}
._e{margin-left:-12.844085pt;}
._b{margin-left:-11.549157pt;}
._3{margin-left:-6.393600pt;}
._2{margin-left:-5.184000pt;}
._0{margin-left:-3.974400pt;}
._1{margin-left:-2.073600pt;}
._6{margin-left:-1.075200pt;}
._5{width:1.105920pt;}
._4{width:2.073600pt;}
._d{width:2.995200pt;}
._a{width:11.980800pt;}
._7{width:17.971200pt;}
._f{width:23.982103pt;}
._8{width:31.100160pt;}
._12{width:41.932800pt;}
._14{width:254.903296pt;}
._11{width:263.633644pt;}
._13{width:267.717056pt;}
._c{width:284.600044pt;}
.fs3{font-size:30.720000pt;}
.fsc{font-size:34.560000pt;}
.fsa{font-size:35.443200pt;}
.fs7{font-size:37.333333pt;}
.fsb{font-size:40.896000pt;}
.fs5{font-size:46.080000pt;}
.fs4{font-size:49.920000pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:57.600000pt;}
.fs6{font-size:72.960000pt;}
.fs1{font-size:92.160000pt;}
.fs2{font-size:107.520000pt;}
.fs0{font-size:172.800000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:0.026999pt;}
.y252{bottom:0.035640pt;}
.y55{bottom:0.039761pt;}
.ye9{bottom:0.047103pt;}
.y224{bottom:0.158621pt;}
.y62{bottom:0.175904pt;}
.y12f{bottom:0.180496pt;}
.yb6{bottom:0.185079pt;}
.y2b2{bottom:0.223336pt;}
.y24a{bottom:0.228283pt;}
.yeb{bottom:0.228312pt;}
.y11f{bottom:0.248355pt;}
.y195{bottom:0.250356pt;}
.y197{bottom:0.269732pt;}
.y7d{bottom:0.290972pt;}
.yb8{bottom:0.296555pt;}
.y74{bottom:0.304437pt;}
.ye3{bottom:0.305587pt;}
.y1f0{bottom:0.324024pt;}
.y236{bottom:0.336764pt;}
.y298{bottom:0.338489pt;}
.yd1{bottom:0.344875pt;}
.y3f{bottom:0.349604pt;}
.y2d1{bottom:0.362483pt;}
.yc4{bottom:0.373243pt;}
.y144{bottom:0.384235pt;}
.yf9{bottom:0.389985pt;}
.yba{bottom:0.408032pt;}
.y16a{bottom:0.411525pt;}
.yff{bottom:0.418427pt;}
.y103{bottom:0.426459pt;}
.y2b4{bottom:0.427372pt;}
.y10c{bottom:0.430637pt;}
.y12c{bottom:0.450496pt;}
.y229{bottom:0.460580pt;}
.y1ad{bottom:0.464413pt;}
.y1aa{bottom:0.466413pt;}
.ye{bottom:0.472340pt;}
.y238{bottom:0.517973pt;}
.y60{bottom:0.544432pt;}
.y7f{bottom:0.554945pt;}
.y214{bottom:0.557472pt;}
.y2cf{bottom:0.603256pt;}
.y2b6{bottom:0.631408pt;}
.y20a{bottom:0.654501pt;}
.yfd{bottom:0.668407pt;}
.y200{bottom:0.682447pt;}
.y2bc{bottom:0.682765pt;}
.y22e{bottom:0.684341pt;}
.ydf{bottom:0.730336pt;}
.y2aa{bottom:0.740525pt;}
.y81{bottom:0.748268pt;}
.y244{bottom:0.762264pt;}
.y66{bottom:0.772184pt;}
.y1f2{bottom:0.814857pt;}
.y1a1{bottom:0.818076pt;}
.y77{bottom:0.832385pt;}
.y33{bottom:0.837613pt;}
.y2cd{bottom:0.844028pt;}
.y11b{bottom:0.872459pt;}
.y182{bottom:0.877572pt;}
.y5e{bottom:0.912959pt;}
.y10a{bottom:0.933179pt;}
.y246{bottom:0.943473pt;}
.y2ac{bottom:0.944561pt;}
.y12{bottom:0.945123pt;}
.y262{bottom:0.968456pt;}
.y1b9{bottom:0.990133pt;}
.y1a3{bottom:0.999285pt;}
.y226{bottom:1.011955pt;}
.y2cb{bottom:1.084801pt;}
.y79{bottom:1.096359pt;}
.y1f6{bottom:1.107147pt;}
.yc2{bottom:1.121992pt;}
.y23c{bottom:1.136116pt;}
.y64{bottom:1.140711pt;}
.y2ae{bottom:1.148597pt;}
.y1b4{bottom:1.157351pt;}
.y1fd{bottom:1.162447pt;}
.y15c{bottom:1.170467pt;}
.yf1{bottom:1.198260pt;}
.y96{bottom:1.201832pt;}
.y36{bottom:1.228593pt;}
.y192{bottom:1.276408pt;}
.y1e{bottom:1.290768pt;}
.y274{bottom:1.294875pt;}
.yc7{bottom:1.303201pt;}
.y126{bottom:1.313048pt;}
.y1b0{bottom:1.317747pt;}
.yb2{bottom:1.322227pt;}
.y29{bottom:1.325624pt;}
.y88{bottom:1.336939pt;}
.y2b0{bottom:1.352633pt;}
.y1d2{bottom:1.368308pt;}
.y24f{bottom:1.368973pt;}
.y110{bottom:1.369211pt;}
.y206{bottom:1.373095pt;}
.y86{bottom:1.402580pt;}
.y5a{bottom:1.428256pt;}
.y2d3{bottom:1.455043pt;}
.y230{bottom:1.466300pt;}
.y1ce{bottom:1.506991pt;}
.yda{bottom:1.510115pt;}
.y292{bottom:1.525719pt;}
.y70{bottom:1.560576pt;}
.y285{bottom:1.598119pt;}
.y2a6{bottom:1.712083pt;}
.yd5{bottom:1.763448pt;}
.y220{bottom:1.887195pt;}
.y280{bottom:1.893023pt;}
.y92{bottom:1.894261pt;}
.y2c7{bottom:1.952359pt;}
.y16f{bottom:1.975441pt;}
.y17e{bottom:2.020317pt;}
.yc9{bottom:2.059816pt;}
.y269{bottom:2.071631pt;}
.y115{bottom:2.074544pt;}
.y19{bottom:2.076040pt;}
.y52{bottom:2.081601pt;}
.y146{bottom:2.108547pt;}
.y106{bottom:2.113032pt;}
.y25d{bottom:2.114816pt;}
.y165{bottom:2.140099pt;}
.y258{bottom:2.154816pt;}
.y175{bottom:2.206024pt;}
.y129{bottom:2.317911pt;}
.y122{bottom:2.465172pt;}
.y149{bottom:2.499527pt;}
.y83{bottom:2.706428pt;}
.y1bb{bottom:2.714447pt;}
.y27d{bottom:2.739889pt;}
.yb{bottom:2.748028pt;}
.y1c3{bottom:2.777812pt;}
.y22{bottom:2.824949pt;}
.y69{bottom:2.838748pt;}
.yee{bottom:2.894979pt;}
.y266{bottom:2.919831pt;}
.y4e{bottom:2.938952pt;}
.y151{bottom:2.969553pt;}
.y255{bottom:3.001683pt;}
.y240{bottom:3.002033pt;}
.y157{bottom:3.026428pt;}
.y41{bottom:3.027525pt;}
.y2b{bottom:3.049936pt;}
.y17c{bottom:3.211744pt;}
.y24{bottom:3.215928pt;}
.y8{bottom:3.299403pt;}
.ye6{bottom:3.370320pt;}
.y1b7{bottom:3.449351pt;}
.y6e{bottom:3.455220pt;}
.y1f4{bottom:3.481524pt;}
.yaf{bottom:3.482204pt;}
.y1cb{bottom:3.505635pt;}
.y26e{bottom:3.507371pt;}
.y14c{bottom:3.515527pt;}
.y90{bottom:3.564355pt;}
.y1a7{bottom:3.615161pt;}
.y203{bottom:3.636092pt;}
.y2a3{bottom:3.658727pt;}
.y1f9{bottom:3.773813pt;}
.y278{bottom:3.782301pt;}
.ycd{bottom:3.816752pt;}
.y28a{bottom:3.869545pt;}
.y1c5{bottom:3.949812pt;}
.yf5{bottom:4.075196pt;}
.ye1{bottom:4.088544pt;}
.y162{bottom:5.035181pt;}
.y28f{bottom:5.361260pt;}
.y49{bottom:7.877947pt;}
.y29a{bottom:8.338489pt;}
.y2be{bottom:8.682765pt;}
.y117{bottom:113.040637pt;}
.yb4{bottom:122.702196pt;}
.y114{bottom:127.041333pt;}
.y116{bottom:129.115877pt;}
.y2c9{bottom:133.103135pt;}
.y296{bottom:138.075197pt;}
.y2ca{bottom:141.333333pt;}
.y202{bottom:141.437333pt;}
.y201{bottom:145.073421pt;}
.y204{bottom:145.073425pt;}
.y113{bottom:147.640637pt;}
.yb5{bottom:149.333333pt;}
.y294{bottom:159.330197pt;}
.y1ff{bottom:164.000000pt;}
.y1fe{bottom:164.682447pt;}
.y295{bottom:169.398222pt;}
.yb7{bottom:173.333333pt;}
.y233{bottom:174.467461pt;}
.y112{bottom:179.960637pt;}
.y291{bottom:180.000000pt;}
.y293{bottom:181.525719pt;}
.y2cc{bottom:185.333333pt;}
.y1fc{bottom:192.000000pt;}
.y1fb{bottom:193.162447pt;}
.y10f{bottom:194.666667pt;}
.y111{bottom:196.035877pt;}
.y28e{bottom:196.161333pt;}
.yb9{bottom:197.333333pt;}
.y290{bottom:201.522593pt;}
.y28d{bottom:201.522604pt;}
.y232{bottom:204.523941pt;}
.y10e{bottom:214.560637pt;}
.y23{bottom:218.666667pt;}
.y1f8{bottom:220.000000pt;}
.y1c4{bottom:220.161333pt;}
.y1f7{bottom:221.289381pt;}
.y1c2{bottom:221.333333pt;}
.ybb{bottom:221.852843pt;}
.y25{bottom:221.882595pt;}
.y1f5{bottom:222.666667pt;}
.y28b{bottom:223.362741pt;}
.y1fa{bottom:223.773813pt;}
.y1c1{bottom:224.111145pt;}
.y231{bottom:224.132967pt;}
.y2ce{bottom:229.333333pt;}
.y28c{bottom:231.271230pt;}
.y154{bottom:236.004780pt;}
.y21{bottom:238.666667pt;}
.y289{bottom:241.333333pt;}
.y20{bottom:241.491616pt;}
.y10b{bottom:242.880000pt;}
.y22f{bottom:243.741983pt;}
.y1ec{bottom:243.890024pt;}
.y288{bottom:245.202879pt;}
.ybc{bottom:245.964320pt;}
.y10d{bottom:248.162861pt;}
.y1eb{bottom:248.231133pt;}
.y18e{bottom:251.874489pt;}
.y1c0{bottom:252.278353pt;}
.y1ef{bottom:257.333333pt;}
.y1f3{bottom:258.330425pt;}
.y1f1{bottom:260.000000pt;}
.y150{bottom:260.478667pt;}
.y1ee{bottom:260.814857pt;}
.y22d{bottom:262.666667pt;}
.y22c{bottom:263.351008pt;}
.y152{bottom:263.448220pt;}
.y14f{bottom:263.448224pt;}
.y108{bottom:266.747621pt;}
.ybd{bottom:270.075797pt;}
.y109{bottom:270.666667pt;}
.y1bf{bottom:271.887379pt;}
.y1ea{bottom:272.729901pt;}
.y2d0{bottom:273.333333pt;}
.y153{bottom:275.342301pt;}
.y14e{bottom:275.342308pt;}
.y287{bottom:277.522879pt;}
.y1ed{bottom:277.618836pt;}
.y105{bottom:279.041333pt;}
.y107{bottom:281.154365pt;}
.y2d6{bottom:282.075292pt;}
.y1f{bottom:284.149961pt;}
.y1be{bottom:291.496396pt;}
.y22b{bottom:291.518221pt;}
.y181{bottom:292.000000pt;}
.y180{bottom:292.877572pt;}
.y286{bottom:293.598119pt;}
.ybe{bottom:294.187275pt;}
.y102{bottom:295.682667pt;}
.y101{bottom:296.109119pt;}
.y72{bottom:298.012557pt;}
.y104{bottom:301.011269pt;}
.y2d4{bottom:301.410292pt;}
.y188{bottom:302.192572pt;}
.y14d{bottom:303.665643pt;}
.yfc{bottom:308.000000pt;}
.yfb{bottom:308.668407pt;}
.y228{bottom:310.666667pt;}
.y1e9{bottom:310.888517pt;}
.y1bd{bottom:311.105421pt;}
.y22a{bottom:311.127247pt;}
.y2d5{bottom:311.478317pt;}
.y183{bottom:311.707572pt;}
.y284{bottom:312.122879pt;}
.y2d2{bottom:316.000000pt;}
.y73{bottom:317.333333pt;}
.y189{bottom:318.050905pt;}
.yb1{bottom:318.666667pt;}
.y100{bottom:319.516283pt;}
.yb3{bottom:319.988893pt;}
.yfe{bottom:324.000000pt;}
.y1ba{bottom:328.000000pt;}
.y14b{bottom:328.317333pt;}
.y148{bottom:329.333333pt;}
.y1bc{bottom:330.714447pt;}
.y227{bottom:330.736263pt;}
.y184{bottom:330.737572pt;}
.y14a{bottom:331.832860pt;}
.y1e8{bottom:331.869159pt;}
.y18a{bottom:333.909239pt;}
.yae{bottom:334.718667pt;}
.yb0{bottom:338.200871pt;}
.y283{bottom:344.130091pt;}
.yf8{bottom:346.240000pt;}
.y75{bottom:348.568412pt;}
.y145{bottom:349.333333pt;}
.y2c6{bottom:349.437333pt;}
.y185{bottom:349.767573pt;}
.y1b8{bottom:350.323467pt;}
.y225{bottom:350.345288pt;}
.y2c8{bottom:351.389692pt;}
.y147{bottom:351.441880pt;}
.y1d{bottom:353.333333pt;}
.y1c{bottom:354.624101pt;}
.yf7{bottom:358.504346pt;}
.yfa{bottom:358.504349pt;}
.yad{bottom:359.817899pt;}
.y282{bottom:363.739116pt;}
.y18b{bottom:365.625907pt;}
.y1e7{bottom:368.736771pt;}
.y186{bottom:368.797573pt;}
.y2c5{bottom:369.601665pt;}
.y143{bottom:370.666667pt;}
.y142{bottom:371.050901pt;}
.y1b6{bottom:375.041333pt;}
.y1b3{bottom:377.333333pt;}
.y27f{bottom:377.921333pt;}
.y1b5{bottom:378.490684pt;}
.y76{bottom:378.666667pt;}
.y223{bottom:378.825288pt;}
.yac{bottom:379.650029pt;}
.y281{bottom:379.814356pt;}
.y18c{bottom:381.484241pt;}
.y4d{bottom:386.240000pt;}
.y187{bottom:387.827575pt;}
.y4f{bottom:389.178952pt;}
.y4c{bottom:389.178955pt;}
.yf6{bottom:391.957597pt;}
.y2c4{bottom:394.282163pt;}
.y27c{bottom:394.562667pt;}
.y1b{bottom:395.599468pt;}
.y27e{bottom:397.302556pt;}
.y27b{bottom:397.302560pt;}
.y18d{bottom:397.342575pt;}
.y1b2{bottom:398.099696pt;}
.y141{bottom:399.218041pt;}
.yab{bottom:399.259054pt;}
.y4b{bottom:401.073040pt;}
.yf3{bottom:403.831961pt;}
.y279{bottom:409.196637pt;}
.y78{bottom:409.333333pt;}
.y18{bottom:409.598667pt;}
.yf4{bottom:410.666667pt;}
.y222{bottom:411.145288pt;}
.y1a{bottom:411.674707pt;}
.y2c3{bottom:414.221035pt;}
.y17d{bottom:417.333333pt;}
.y1b1{bottom:417.708721pt;}
.y140{bottom:418.827066pt;}
.y17f{bottom:419.353651pt;}
.y27a{bottom:420.044515pt;}
.yaa{bottom:420.876087pt;}
.y21f{bottom:425.333333pt;}
.y1e6{bottom:425.473460pt;}
.y2c2{bottom:426.115108pt;}
.y221{bottom:427.220528pt;}
.y4a{bottom:429.396375pt;}
.yf0{bottom:430.666667pt;}
.yf2{bottom:431.864927pt;}
.y17b{bottom:434.666667pt;}
.y1af{bottom:436.000000pt;}
.y1ae{bottom:437.317747pt;}
.y17{bottom:437.566663pt;}
.y17a{bottom:437.878411pt;}
.y13f{bottom:438.436092pt;}
.y7a{bottom:441.333333pt;}
.y1e5{bottom:445.082486pt;}
.y277{bottom:445.437333pt;}
.y21e{bottom:445.745288pt;}
.yec{bottom:446.819687pt;}
.y276{bottom:449.219635pt;}
.y48{bottom:454.078667pt;}
.y2c1{bottom:455.450884pt;}
.y16{bottom:457.175688pt;}
.y13e{bottom:458.045117pt;}
.y95{bottom:458.666667pt;}
.ye8{bottom:458.713769pt;}
.y94{bottom:459.868499pt;}
.y47{bottom:461.956612pt;}
.y273{bottom:464.000000pt;}
.y1e4{bottom:464.691511pt;}
.y275{bottom:465.294875pt;}
.y1ac{bottom:465.333333pt;}
.y1ab{bottom:465.797747pt;}
.y179{bottom:466.045615pt;}
.yed{bottom:466.666667pt;}
.yea{bottom:469.333333pt;}
.yef{bottom:469.561645pt;}
.ya3{bottom:469.964841pt;}
.y7c{bottom:472.000000pt;}
.y9c{bottom:474.460487pt;}
.y2c0{bottom:475.059909pt;}
.y21d{bottom:476.356655pt;}
.y15{bottom:476.784713pt;}
.y13d{bottom:477.654142pt;}
.y97{bottom:478.251808pt;}
.y272{bottom:482.783077pt;}
.y1e3{bottom:484.300536pt;}
.y178{bottom:485.654640pt;}
.ya4{bottom:486.804327pt;}
.y46{bottom:488.350164pt;}
.y9d{bottom:490.291451pt;}
.ye5{bottom:493.333333pt;}
.ye7{bottom:494.219221pt;}
.y2bf{bottom:494.668934pt;}
.y270{bottom:494.677156pt;}
.y14{bottom:496.393739pt;}
.ye4{bottom:496.703653pt;}
.y13c{bottom:497.263167pt;}
.y98{bottom:497.853615pt;}
.y1a9{bottom:497.921333pt;}
.y7e{bottom:502.666667pt;}
.ya5{bottom:503.643812pt;}
.y1e2{bottom:503.909562pt;}
.y177{bottom:505.263665pt;}
.y271{bottom:505.525032pt;}
.y9e{bottom:506.122413pt;}
.y1a6{bottom:506.666667pt;}
.y1a8{bottom:510.281828pt;}
.y2bd{bottom:510.666667pt;}
.y45{bottom:511.176596pt;}
.y21c{bottom:513.224268pt;}
.y13{bottom:516.002764pt;}
.y13b{bottom:516.872193pt;}
.y99{bottom:517.455421pt;}
.y2bb{bottom:518.666667pt;}
.y2ba{bottom:519.349432pt;}
.y6f{bottom:520.000000pt;}
.ya6{bottom:520.483297pt;}
.y71{bottom:521.560576pt;}
.y9f{bottom:521.953376pt;}
.y174{bottom:522.666667pt;}
.y44{bottom:523.070673pt;}
.ye2{bottom:523.197333pt;}
.y1e1{bottom:523.518587pt;}
.y176{bottom:524.872691pt;}
.y26d{bottom:530.880000pt;}
.y26c{bottom:534.387365pt;}
.y26f{bottom:534.387371pt;}
.y11{bottom:534.666667pt;}
.yde{bottom:535.397003pt;}
.y10{bottom:535.611789pt;}
.y6d{bottom:536.317333pt;}
.y13a{bottom:536.481218pt;}
.y1a4{bottom:536.923995pt;}
.y9a{bottom:537.057229pt;}
.ya7{bottom:537.322781pt;}
.ya0{bottom:537.784340pt;}
.y6c{bottom:539.772553pt;}
.ye0{bottom:542.666667pt;}
.y1e0{bottom:543.127612pt;}
.y173{bottom:544.481699pt;}
.y1a0{bottom:548.000000pt;}
.y1a5{bottom:548.818071pt;}
.y19f{bottom:548.818076pt;}
.y2a8{bottom:552.758859pt;}
.ya1{bottom:553.615303pt;}
.y26b{bottom:553.996391pt;}
.ya8{bottom:554.162267pt;}
.y139{bottom:556.090243pt;}
.y43{bottom:556.633973pt;}
.y9b{bottom:556.659036pt;}
.y1a2{bottom:558.666667pt;}
.y2a9{bottom:561.333333pt;}
.y6b{bottom:561.389585pt;}
.y1df{bottom:562.736637pt;}
.y172{bottom:564.090724pt;}
.y268{bottom:568.000000pt;}
.ya2{bottom:569.446267pt;}
.y21b{bottom:569.960962pt;}
.y26a{bottom:570.071631pt;}
.ya9{bottom:571.001752pt;}
.y138{bottom:575.699268pt;}
.yd{bottom:578.666667pt;}
.yf{bottom:579.139007pt;}
.ydd{bottom:579.225608pt;}
.y40{bottom:580.000000pt;}
.y6a{bottom:581.221716pt;}
.y1de{bottom:582.345663pt;}
.y42{bottom:583.027525pt;}
.y171{bottom:583.699749pt;}
.y265{bottom:584.640000pt;}
.y267{bottom:587.559831pt;}
.y264{bottom:587.559835pt;}
.y91{bottom:588.478667pt;}
.y21a{bottom:589.569987pt;}
.y93{bottom:590.372928pt;}
.y2ab{bottom:593.333333pt;}
.y137{bottom:595.308294pt;}
.ya{bottom:596.000000pt;}
.y19e{bottom:597.981339pt;}
.yc{bottom:598.748028pt;}
.y260{bottom:599.453912pt;}
.y68{bottom:600.000000pt;}
.y16e{bottom:601.333333pt;}
.y67{bottom:602.838748pt;}
.y170{bottom:603.308775pt;}
.y3e{bottom:604.000000pt;}
.y3d{bottom:604.349604pt;}
.y8f{bottom:605.333333pt;}
.y8e{bottom:608.897688pt;}
.y219{bottom:609.179012pt;}
.y261{bottom:609.333333pt;}
.y263{bottom:610.301789pt;}
.ydc{bottom:613.434875pt;}
.y136{bottom:614.917319pt;}
.y9{bottom:618.357044pt;}
.y1d1{bottom:621.333333pt;}
.y1d0{bottom:622.701641pt;}
.y16d{bottom:622.917783pt;}
.y2ad{bottom:625.333333pt;}
.yd9{bottom:628.000000pt;}
.y218{bottom:628.788038pt;}
.ydb{bottom:629.510115pt;}
.y3c{bottom:632.516800pt;}
.y135{bottom:634.526344pt;}
.y7{bottom:634.666667pt;}
.y5c{bottom:635.213571pt;}
.y6{bottom:637.966069pt;}
.y25f{bottom:639.476909pt;}
.y1d8{bottom:639.543384pt;}
.y84{bottom:641.272511pt;}
.y16c{bottom:642.526808pt;}
.yd8{bottom:648.034875pt;}
.y217{bottom:648.397063pt;}
.y85{bottom:650.666667pt;}
.y3b{bottom:652.125826pt;}
.y25c{bottom:653.437333pt;}
.y134{bottom:654.135370pt;}
.y1d3{bottom:655.226495pt;}
.y25e{bottom:655.552149pt;}
.y2af{bottom:657.333333pt;}
.y194{bottom:658.925668pt;}
.y5d{bottom:661.333333pt;}
.y16b{bottom:662.135833pt;}
.y1d9{bottom:666.639659pt;}
.y216{bottom:668.006088pt;}
.y3a{bottom:671.734851pt;}
.y133{bottom:673.744395pt;}
.y25b{bottom:674.076909pt;}
.yd7{bottom:680.354875pt;}
.y5{bottom:680.624415pt;}
.y169{bottom:681.333333pt;}
.y168{bottom:681.744859pt;}
.y87{bottom:682.666667pt;}
.y1d4{bottom:686.752355pt;}
.y215{bottom:687.615113pt;}
.y2b1{bottom:690.666667pt;}
.y39{bottom:691.343876pt;}
.y132{bottom:693.353420pt;}
.y1da{bottom:693.735932pt;}
.yd4{bottom:694.666667pt;}
.yd6{bottom:696.430115pt;}
.y5f{bottom:700.000000pt;}
.y2b9{bottom:701.731016pt;}
.y25a{bottom:706.396909pt;}
.y213{bottom:706.666667pt;}
.y212{bottom:707.224139pt;}
.y196{bottom:708.000000pt;}
.y38{bottom:710.952901pt;}
.y131{bottom:712.962445pt;}
.y167{bottom:714.064859pt;}
.yd3{bottom:714.954875pt;}
.y89{bottom:715.937963pt;}
.y1d5{bottom:718.278213pt;}
.y257{bottom:720.317333pt;}
.y1db{bottom:720.832207pt;}
.y2b7{bottom:721.066016pt;}
.y259{bottom:722.472149pt;}
.y2b3{bottom:722.666667pt;}
.y164{bottom:728.000000pt;}
.y35{bottom:729.333333pt;}
.y166{bottom:730.140099pt;}
.y37{bottom:730.561927pt;}
.y2b8{bottom:731.134041pt;}
.y130{bottom:732.571471pt;}
.y198{bottom:734.955776pt;}
.y211{bottom:735.391324pt;}
.y254{bottom:736.958667pt;}
.y61{bottom:738.666667pt;}
.y256{bottom:739.960349pt;}
.y253{bottom:739.960352pt;}
.yd0{bottom:743.360000pt;}
.y8a{bottom:747.872320pt;}
.y1dc{bottom:747.928481pt;}
.y163{bottom:748.664859pt;}
.y32{bottom:749.333333pt;}
.y1d6{bottom:749.804073pt;}
.y34{bottom:750.170947pt;}
.y24d{bottom:751.854431pt;}
.y12e{bottom:752.000000pt;}
.y12d{bottom:752.180496pt;}
.y4{bottom:754.643969pt;}
.y2b5{bottom:754.666667pt;}
.y210{bottom:755.000350pt;}
.ycf{bottom:755.579235pt;}
.yd2{bottom:755.579239pt;}
.y24e{bottom:761.333333pt;}
.y199{bottom:761.641819pt;}
.y251{bottom:762.666667pt;}
.y250{bottom:762.702307pt;}
.y2a5{bottom:769.333333pt;}
.y31{bottom:769.779968pt;}
.y2a7{bottom:771.045416pt;}
.y20f{bottom:774.609375pt;}
.y1dd{bottom:775.024755pt;}
.y63{bottom:776.000000pt;}
.y12b{bottom:776.640000pt;}
.y161{bottom:776.958667pt;}
.y8b{bottom:779.806677pt;}
.y1d7{bottom:781.329932pt;}
.y160{bottom:781.993851pt;}
.y3{bottom:784.564980pt;}
.y2a2{bottom:785.598667pt;}
.y128{bottom:786.666667pt;}
.y24c{bottom:787.000871pt;}
.y19a{bottom:788.327861pt;}
.y12a{bottom:788.984577pt;}
.yce{bottom:789.032487pt;}
.y2a1{bottom:789.257389pt;}
.y2a4{bottom:789.257393pt;}
.y20e{bottom:794.218400pt;}
.y30{bottom:797.947168pt;}
.y249{bottom:798.666667pt;}
.y24b{bottom:798.894949pt;}
.ycb{bottom:800.906851pt;}
.y1cd{bottom:802.666667pt;}
.y15f{bottom:803.776106pt;}
.y1cf{bottom:804.173657pt;}
.ycc{bottom:808.000000pt;}
.y8c{bottom:811.741035pt;}
.y20d{bottom:813.827425pt;}
.y2a0{bottom:813.937887pt;}
.y65{bottom:814.666667pt;}
.y19b{bottom:815.013905pt;}
.y127{bottom:815.904424pt;}
.y123{bottom:815.904427pt;}
.y2f{bottom:817.556193pt;}
.y1ca{bottom:818.880000pt;}
.y1c9{bottom:822.385610pt;}
.y1cc{bottom:822.385635pt;}
.y15e{bottom:825.095228pt;}
.y121{bottom:825.333333pt;}
.yc8{bottom:826.880000pt;}
.y120{bottom:827.798505pt;}
.yca{bottom:828.939816pt;}
.y248{bottom:830.201519pt;}
.y2{bottom:830.549594pt;}
.y20c{bottom:833.436451pt;}
.y29f{bottom:833.876759pt;}
.y2e{bottom:837.165219pt;}
.y125{bottom:837.333333pt;}
.y124{bottom:838.646381pt;}
.y15b{bottom:840.000000pt;}
.y15d{bottom:841.170467pt;}
.y243{bottom:841.333333pt;}
.y19c{bottom:841.699948pt;}
.y1c8{bottom:841.994635pt;}
.y242{bottom:842.095597pt;}
.yc3{bottom:843.521333pt;}
.y8d{bottom:843.675392pt;}
.y29e{bottom:845.770832pt;}
.y245{bottom:852.000000pt;}
.y247{bottom:852.943473pt;}
.y20b{bottom:853.045476pt;}
.yc1{bottom:854.666667pt;}
.yc0{bottom:855.788659pt;}
.y2d{bottom:856.774244pt;}
.y59{bottom:857.333333pt;}
.y5b{bottom:858.761589pt;}
.y11e{bottom:859.838667pt;}
.y11d{bottom:860.087027pt;}
.y1c7{bottom:861.603660pt;}
.yc6{bottom:865.333333pt;}
.yc5{bottom:866.636535pt;}
.y15a{bottom:867.062454pt;}
.y19d{bottom:868.385991pt;}
.y209{bottom:872.000000pt;}
.y208{bottom:872.654501pt;}
.y2a{bottom:873.333333pt;}
.y23f{bottom:874.240000pt;}
.y29d{bottom:875.106608pt;}
.y2c{bottom:876.383269pt;}
.y58{bottom:876.973566pt;}
.y241{bottom:877.242033pt;}
.y23e{bottom:877.242037pt;}
.y1c6{bottom:881.212685pt;}
.y191{bottom:881.333333pt;}
.y193{bottom:882.609741pt;}
.y11c{bottom:883.339313pt;}
.y23b{bottom:888.000000pt;}
.y159{bottom:888.679487pt;}
.y1{bottom:888.691480pt;}
.y23d{bottom:889.136116pt;}
.ybf{bottom:894.103023pt;}
.y28{bottom:894.666667pt;}
.y29c{bottom:894.715633pt;}
.y27{bottom:895.992291pt;}
.y57{bottom:898.590599pt;}
.y190{bottom:900.821711pt;}
.y207{bottom:900.821715pt;}
.y11a{bottom:906.666667pt;}
.y119{bottom:907.539125pt;}
.y158{bottom:910.519624pt;}
.y29b{bottom:914.324658pt;}
.y56{bottom:918.422729pt;}
.y18f{bottom:920.430736pt;}
.y23a{bottom:920.442685pt;}
.y26{bottom:926.691959pt;}
.y156{bottom:929.333333pt;}
.y299{bottom:930.666667pt;}
.y235{bottom:932.000000pt;}
.y234{bottom:932.336764pt;}
.y155{bottom:932.359761pt;}
.y82{bottom:937.333333pt;}
.y118{bottom:938.150493pt;}
.y205{bottom:938.666667pt;}
.y297{bottom:939.005156pt;}
.y54{bottom:940.000000pt;}
.y53{bottom:940.039761pt;}
.y237{bottom:942.666667pt;}
.y239{bottom:943.184640pt;}
.y51{bottom:1002.666667pt;}
.y80{bottom:1004.000000pt;}
.y50{bottom:1004.748268pt;}
.h24{height:1.333333pt;}
.h58{height:2.292000pt;}
.h21{height:2.349333pt;}
.h71{height:2.401333pt;}
.h5a{height:2.505333pt;}
.h28{height:2.614667pt;}
.h60{height:5.333333pt;}
.h6b{height:5.437333pt;}
.h19{height:5.760000pt;}
.h69{height:6.026667pt;}
.h53{height:6.188000pt;}
.h45{height:6.240000pt;}
.h59{height:6.292000pt;}
.h22{height:6.349333pt;}
.h73{height:6.401333pt;}
.h5b{height:6.453333pt;}
.h63{height:6.562667pt;}
.h29{height:6.614667pt;}
.h4a{height:6.770667pt;}
.h3f{height:7.469333pt;}
.h4c{height:7.786667pt;}
.h1e{height:8.000000pt;}
.h4d{height:8.161333pt;}
.h47{height:8.317333pt;}
.h44{height:8.426667pt;}
.h30{height:8.478667pt;}
.h39{height:8.640000pt;}
.h4f{height:8.693333pt;}
.h57{height:8.745333pt;}
.h3e{height:8.802667pt;}
.h25{height:8.854667pt;}
.h49{height:8.958667pt;}
.h3b{height:9.016000pt;}
.h10{height:9.068000pt;}
.h34{height:9.120000pt;}
.h66{height:9.172000pt;}
.h56{height:9.229333pt;}
.h55{height:9.281333pt;}
.he{height:9.333333pt;}
.h6c{height:9.437333pt;}
.h64{height:9.650667pt;}
.h67{height:9.708000pt;}
.h43{height:9.760000pt;}
.h31{height:9.812000pt;}
.h6a{height:10.026667pt;}
.h65{height:10.078667pt;}
.h52{height:10.188000pt;}
.h23{height:10.349333pt;}
.h72{height:10.401333pt;}
.h32{height:10.505333pt;}
.h2a{height:10.614667pt;}
.hf{height:10.666667pt;}
.h68{height:11.360000pt;}
.h51{height:11.521333pt;}
.h41{height:11.734667pt;}
.h5c{height:11.786667pt;}
.h26{height:11.948000pt;}
.hc{height:12.000000pt;}
.h20{height:13.016000pt;}
.h70{height:13.068000pt;}
.h62{height:13.229333pt;}
.h27{height:13.281333pt;}
.h9{height:13.333333pt;}
.h54{height:16.374667pt;}
.h6d{height:17.172000pt;}
.h36{height:17.281333pt;}
.h42{height:17.494667pt;}
.h3d{height:18.292000pt;}
.h6e{height:21.650667pt;}
.h17{height:21.921333pt;}
.h74{height:22.136000pt;}
.h11{height:24.960000pt;}
.h4b{height:25.271002pt;}
.h46{height:25.944422pt;}
.h5f{height:27.916312pt;}
.h1a{height:28.000000pt;}
.h1d{height:28.364583pt;}
.h8{height:31.830000pt;}
.h1f{height:33.547500pt;}
.h12{height:33.730560pt;}
.h13{height:35.302500pt;}
.h1c{height:35.466667pt;}
.h3a{height:35.592960pt;}
.h5e{height:35.808750pt;}
.ha{height:36.541440pt;}
.hd{height:38.244375pt;}
.h61{height:39.318750pt;}
.h2c{height:42.163200pt;}
.h1b{height:43.776000pt;}
.hb{height:53.259375pt;}
.h14{height:53.406720pt;}
.h2d{height:54.720000pt;}
.h2e{height:55.702500pt;}
.h5{height:65.617920pt;}
.h40{height:65.640228pt;}
.h3{height:67.461120pt;}
.h2b{height:69.312000pt;}
.h6{height:78.704640pt;}
.h18{height:79.932919pt;}
.h50{height:79.932924pt;}
.h2f{height:79.932944pt;}
.h6f{height:81.635898pt;}
.h48{height:83.887924pt;}
.h4{height:87.552000pt;}
.h33{height:96.650879pt;}
.h15{height:96.650888pt;}
.h35{height:96.898980pt;}
.h38{height:96.898994pt;}
.h3c{height:98.692207pt;}
.h37{height:100.756807pt;}
.h16{height:100.835681pt;}
.h7{height:102.144000pt;}
.h5d{height:106.037397pt;}
.h1{height:126.489600pt;}
.h4e{height:144.227204pt;}
.h2{height:164.160000pt;}
.h0{height:1056.000000pt;}
.w3b{width:0.588000pt;}
.w14{width:0.854667pt;}
.w39{width:2.666667pt;}
.wc{width:4.000000pt;}
.w27{width:5.333333pt;}
.we{width:6.292000pt;}
.w31{width:6.562667pt;}
.w20{width:6.666667pt;}
.wa{width:7.625333pt;}
.w11{width:8.000000pt;}
.w33{width:8.265333pt;}
.w34{width:8.640000pt;}
.w32{width:8.854667pt;}
.wb{width:8.958667pt;}
.w24{width:9.172000pt;}
.w6{width:9.333333pt;}
.w1a{width:12.000000pt;}
.w18{width:13.016000pt;}
.w1d{width:13.333333pt;}
.w2b{width:13.494667pt;}
.w17{width:13.546667pt;}
.w2a{width:13.864000pt;}
.w19{width:14.078667pt;}
.w3c{width:14.292000pt;}
.w3{width:14.614667pt;}
.w2c{width:14.666667pt;}
.w2f{width:15.041333pt;}
.w30{width:15.254667pt;}
.w15{width:15.625333pt;}
.w5{width:18.078667pt;}
.w7{width:21.281333pt;}
.w21{width:21.333333pt;}
.w3a{width:22.292000pt;}
.w1f{width:22.666667pt;}
.w29{width:29.281333pt;}
.w1c{width:29.333333pt;}
.w2d{width:30.292000pt;}
.w12{width:30.666667pt;}
.w28{width:36.000000pt;}
.w9{width:36.958667pt;}
.w4{width:37.281333pt;}
.w37{width:37.333333pt;}
.w35{width:38.292000pt;}
.w1b{width:44.000000pt;}
.w1e{width:47.625333pt;}
.w10{width:52.000000pt;}
.w26{width:52.958667pt;}
.w8{width:59.948000pt;}
.w2e{width:60.000000pt;}
.w2{width:66.614667pt;}
.w38{width:81.333333pt;}
.w16{width:82.292000pt;}
.w1{width:82.614667pt;}
.wd{width:118.136000pt;}
.w36{width:118.401333pt;}
.w13{width:119.197333pt;}
.wf{width:126.666667pt;}
.w22{width:248.000000pt;}
.w23{width:249.333333pt;}
.w25{width:309.333333pt;}
.w0{width:816.000000pt;}
.x41{left:-2.242441pt;}
.x4f{left:-1.205031pt;}
.x0{left:0.000000pt;}
.x80{left:1.209911pt;}
.x8d{left:11.258449pt;}
.x42{left:72.000000pt;}
.x31{left:73.921333pt;}
.x43{left:79.968749pt;}
.x1{left:81.600000pt;}
.x2a{left:83.011944pt;}
.x10c{left:86.604167pt;}
.x32{left:90.908749pt;}
.x44{left:94.608749pt;}
.x33{left:97.333333pt;}
.x45{left:99.197333pt;}
.x10d{left:101.244167pt;}
.x10e{left:105.598667pt;}
.x34{left:119.040000pt;}
.x1a{left:120.791040pt;}
.x1b{left:125.399040pt;}
.x2b{left:126.718667pt;}
.x103{left:127.836093pt;}
.xba{left:129.441067pt;}
.x59{left:132.018715pt;}
.xee{left:133.720151pt;}
.x3f{left:135.349338pt;}
.x57{left:136.404027pt;}
.xf6{left:137.500800pt;}
.xf7{left:140.424000pt;}
.x2f{left:141.696000pt;}
.x30{left:143.029338pt;}
.x90{left:144.672000pt;}
.xf2{left:145.601280pt;}
.x2{left:147.696000pt;}
.x6f{left:149.179200pt;}
.x2d{left:151.183995pt;}
.x70{left:152.232000pt;}
.x114{left:154.151467pt;}
.x3{left:155.817600pt;}
.xc3{left:158.666667pt;}
.xc2{left:159.813333pt;}
.x10b{left:160.800000pt;}
.xd2{left:162.312000pt;}
.xdd{left:164.000000pt;}
.xd3{left:165.192000pt;}
.x3e{left:166.666667pt;}
.x24{left:168.153600pt;}
.xa2{left:169.972800pt;}
.xb5{left:171.456000pt;}
.x25{left:173.529600pt;}
.x104{left:176.416952pt;}
.x71{left:177.360000pt;}
.x72{left:180.240000pt;}
.x60{left:181.333333pt;}
.xc4{left:184.000000pt;}
.x1c{left:185.072640pt;}
.x46{left:186.666667pt;}
.x35{left:188.421120pt;}
.x1d{left:189.680640pt;}
.x91{left:190.910400pt;}
.xc5{left:192.000000pt;}
.x36{left:193.797120pt;}
.xf3{left:196.700160pt;}
.x2e{left:197.856000pt;}
.xde{left:200.000000pt;}
.x58{left:201.408000pt;}
.x92{left:202.920000pt;}
.x73{left:203.856000pt;}
.x93{left:205.800000pt;}
.x74{left:206.736000pt;}
.x3c{left:208.741343pt;}
.xdf{left:210.399693pt;}
.x2c{left:212.832000pt;}
.x109{left:215.073600pt;}
.x26{left:216.698880pt;}
.x10a{left:217.953600pt;}
.xd4{left:219.105600pt;}
.x27{left:222.074880pt;}
.xa3{left:224.116800pt;}
.x69{left:225.671040pt;}
.x75{left:226.579200pt;}
.x76{left:229.516800pt;}
.xb{left:230.599680pt;}
.xe6{left:232.000000pt;}
.xc6{left:233.333333pt;}
.xc{left:235.207680pt;}
.xe0{left:237.358931pt;}
.x94{left:238.819200pt;}
.xc7{left:240.354131pt;}
.x95{left:241.699200pt;}
.xa4{left:246.840000pt;}
.x37{left:247.825920pt;}
.xa5{left:249.777600pt;}
.x113{left:250.666667pt;}
.x127{left:252.000000pt;}
.x38{left:253.201920pt;}
.x7f{left:257.333333pt;}
.xb8{left:258.666667pt;}
.x8c{left:260.000000pt;}
.x77{left:262.089600pt;}
.x78{left:264.969600pt;}
.xb9{left:266.666667pt;}
.xd{left:269.560320pt;}
.xc8{left:270.666667pt;}
.xdb{left:272.739656pt;}
.xe{left:274.237440pt;}
.xe1{left:276.000000pt;}
.x79{left:276.979200pt;}
.xf4{left:278.173440pt;}
.x7a{left:279.859200pt;}
.xa6{left:282.350400pt;}
.xf5{left:283.630080pt;}
.xa7{left:285.230400pt;}
.x7b{left:287.294512pt;}
.x118{left:288.270019pt;}
.xab{left:289.333333pt;}
.x39{left:290.242560pt;}
.x1e{left:291.563520pt;}
.x28{left:292.796160pt;}
.xe2{left:294.666667pt;}
.x1f{left:296.171520pt;}
.x96{left:297.168000pt;}
.x29{left:298.172160pt;}
.x97{left:300.048000pt;}
.xf{left:301.378560pt;}
.xcb{left:302.666667pt;}
.xc1{left:304.000000pt;}
.x10{left:305.986560pt;}
.xc9{left:307.748569pt;}
.x6a{left:310.450560pt;}
.xd5{left:311.496000pt;}
.x98{left:312.504000pt;}
.x47{left:313.731656pt;}
.x61{left:316.000000pt;}
.x7c{left:318.441712pt;}
.xb6{left:320.000000pt;}
.x6b{left:321.558720pt;}
.x62{left:322.666667pt;}
.xca{left:324.000000pt;}
.x6c{left:325.206720pt;}
.xb7{left:326.666667pt;}
.x128{left:328.000000pt;}
.x5c{left:328.962564pt;}
.xf8{left:330.460800pt;}
.x84{left:332.000000pt;}
.x5a{left:333.657591pt;}
.x8e{left:334.666667pt;}
.x81{left:336.714132pt;}
.xcc{left:338.666667pt;}
.x85{left:340.000000pt;}
.xa8{left:341.748736pt;}
.xbb{left:342.900081pt;}
.x8f{left:344.000000pt;}
.x7d{left:346.147312pt;}
.x115{left:347.341867pt;}
.x7e{left:349.027312pt;}
.x48{left:352.000000pt;}
.xf9{left:353.184000pt;}
.x82{left:354.666667pt;}
.xdc{left:356.606475pt;}
.x99{left:358.051200pt;}
.x40{left:360.000000pt;}
.x9a{left:360.974400pt;}
.xac{left:362.666667pt;}
.x20{left:365.153280pt;}
.x3d{left:368.066745pt;}
.x21{left:369.761280pt;}
.xa9{left:372.161333pt;}
.xb1{left:373.333333pt;}
.x83{left:377.151769pt;}
.x6d{left:379.197120pt;}
.xaa{left:380.097773pt;}
.x105{left:381.333333pt;}
.x6e{left:382.845120pt;}
.xb2{left:384.000000pt;}
.x9b{left:385.756800pt;}
.x22{left:388.976640pt;}
.x86{left:389.882588pt;}
.xb3{left:392.000000pt;}
.x23{left:393.676800pt;}
.xfe{left:394.678772pt;}
.x119{left:396.097219pt;}
.x9c{left:398.212800pt;}
.x10f{left:399.103388pt;}
.x106{left:400.442815pt;}
.x4{left:401.366400pt;}
.xcd{left:402.666667pt;}
.x49{left:403.592531pt;}
.xfa{left:405.499200pt;}
.x5{left:409.012800pt;}
.x116{left:411.738667pt;}
.xbc{left:413.336679pt;}
.xce{left:414.666667pt;}
.xf1{left:416.385076pt;}
.x107{left:419.911615pt;}
.x11{left:421.416960pt;}
.x11a{left:423.054019pt;}
.xd6{left:424.665600pt;}
.x12{left:425.840640pt;}
.x3a{left:428.271360pt;}
.xef{left:432.143675pt;}
.x3b{left:433.647360pt;}
.xad{left:436.000000pt;}
.x11b{left:440.000000pt;}
.x9f{left:442.666667pt;}
.x6{left:444.048000pt;}
.xae{left:445.333333pt;}
.xfb{left:446.740800pt;}
.xb0{left:449.939308pt;}
.x7{left:451.780800pt;}
.xaf{left:454.666667pt;}
.xe3{left:456.021937pt;}
.x124{left:457.333333pt;}
.xbd{left:458.666667pt;}
.x110{left:461.333333pt;}
.x13{left:462.635520pt;}
.xe4{left:465.333333pt;}
.x14{left:467.059200pt;}
.xd7{left:472.128000pt;}
.xd8{left:475.051200pt;}
.x89{left:476.000000pt;}
.x11c{left:476.967619pt;}
.x9d{left:480.940800pt;}
.x87{left:482.666667pt;}
.x8a{left:484.000000pt;}
.xe5{left:485.333333pt;}
.xfc{left:488.889600pt;}
.xfd{left:491.769600pt;}
.x4a{left:493.333333pt;}
.xd9{left:494.404800pt;}
.xda{left:497.284800pt;}
.x5b{left:498.666667pt;}
.x88{left:500.000000pt;}
.x4b{left:500.938969pt;}
.x11d{left:503.924419pt;}
.x9e{left:506.947200pt;}
.xd1{left:508.221836pt;}
.x8{left:509.539200pt;}
.x108{left:512.000000pt;}
.x8b{left:513.277165pt;}
.x111{left:514.666667pt;}
.xa0{left:516.000000pt;}
.x9{left:517.531200pt;}
.xcf{left:522.188143pt;}
.x5f{left:525.411597pt;}
.x112{left:527.904300pt;}
.x117{left:530.666667pt;}
.xe7{left:533.333333pt;}
.xa1{left:534.666667pt;}
.x15{left:537.515520pt;}
.x5d{left:539.714124pt;}
.x16{left:542.123520pt;}
.xe8{left:543.212584pt;}
.xff{left:548.000000pt;}
.x4c{left:553.333333pt;}
.x11e{left:557.838019pt;}
.x63{left:561.333333pt;}
.xe9{left:568.000000pt;}
.x11f{left:574.666667pt;}
.xea{left:577.661040pt;}
.x4d{left:583.306969pt;}
.x120{left:584.794819pt;}
.x64{left:590.794969pt;}
.x4e{left:592.000000pt;}
.xeb{left:594.666667pt;}
.x53{left:596.802667pt;}
.x50{left:598.282969pt;}
.x65{left:600.000000pt;}
.x121{left:601.333333pt;}
.xec{left:604.620277pt;}
.x66{left:605.770969pt;}
.x122{left:611.751619pt;}
.xb4{left:613.447004pt;}
.x51{left:614.666667pt;}
.xc0{left:615.961088pt;}
.x52{left:620.749407pt;}
.x67{left:622.666667pt;}
.xed{left:624.089077pt;}
.x68{left:628.000000pt;}
.xbe{left:632.581313pt;}
.x123{left:638.708419pt;}
.xbf{left:640.000000pt;}
.x17{left:659.650560pt;}
.x18{left:664.604160pt;}
.xf0{left:666.666667pt;}
.xd0{left:670.666667pt;}
.x100{left:673.579301pt;}
.x101{left:676.459301pt;}
.x102{left:699.585701pt;}
.x5e{left:704.000000pt;}
.x19{left:707.481600pt;}
.x125{left:710.078667pt;}
.x54{left:716.478667pt;}
.x126{left:720.755833pt;}
.x55{left:727.391249pt;}
.xa{left:728.995200pt;}
.x56{left:736.031249pt;}
}




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