
    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_bcced6c7c76babcdeb3e1d7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_cee75dc315d631fd7ad0b654.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_5b67408259c430c13e0c1b3f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_319f672724ad0f0df7d46042.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1a865ec625589b5aaa3443cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956543;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_0dfac1e035de6345426bc019.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ff807408f8f22f823a03b557.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_5b43c30ef6c2af80292a0435.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_2ac16287187936ed4683e0ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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;}
.m2{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m3{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-27.000000px;}
.v3{vertical-align:-18.057655px;}
.v2{vertical-align:-9.000223px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v6{vertical-align:32.473384px;}
.v1{vertical-align:38.880000px;}
.v5{vertical-align:50.749771px;}
.ls70{letter-spacing:-4.323783px;}
.ls77{letter-spacing:-3.924303px;}
.ls6f{letter-spacing:-3.282002px;}
.ls5d{letter-spacing:-0.138276px;}
.ls4d{letter-spacing:-0.090180px;}
.ls5c{letter-spacing:-0.078156px;}
.ls5b{letter-spacing:-0.072144px;}
.ls80{letter-spacing:-0.072020px;}
.ls37{letter-spacing:-0.057660px;}
.ls7f{letter-spacing:-0.057616px;}
.ls5a{letter-spacing:-0.054108px;}
.ls50{letter-spacing:-0.050414px;}
.ls38{letter-spacing:-0.043245px;}
.ls4f{letter-spacing:-0.043212px;}
.ls7b{letter-spacing:-0.042084px;}
.ls36{letter-spacing:-0.036037px;}
.ls4e{letter-spacing:-0.036010px;}
.ls16{letter-spacing:-0.036000px;}
.ls2f{letter-spacing:-0.028830px;}
.ls39{letter-spacing:-0.028808px;}
.ls17{letter-spacing:-0.028800px;}
.ls59{letter-spacing:-0.024048px;}
.ls75{letter-spacing:-0.023499px;}
.ls33{letter-spacing:-0.021622px;}
.ls48{letter-spacing:-0.021606px;}
.ls1a{letter-spacing:-0.021600px;}
.ls76{letter-spacing:-0.015666px;}
.ls35{letter-spacing:-0.014415px;}
.ls49{letter-spacing:-0.014404px;}
.ls15{letter-spacing:-0.014400px;}
.ls4c{letter-spacing:-0.012024px;}
.ls74{letter-spacing:-0.007833px;}
.ls31{letter-spacing:-0.007207px;}
.ls45{letter-spacing:-0.007202px;}
.lsa{letter-spacing:-0.007200px;}
.ls58{letter-spacing:-0.006012px;}
.ls9{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.006012px;}
.ls8{letter-spacing:0.007200px;}
.ls3b{letter-spacing:0.007202px;}
.ls1e{letter-spacing:0.007207px;}
.ls6c{letter-spacing:0.007833px;}
.ls1d{letter-spacing:0.009360px;}
.ls5f{letter-spacing:0.012024px;}
.ls4{letter-spacing:0.014400px;}
.ls3a{letter-spacing:0.014404px;}
.ls1f{letter-spacing:0.014415px;}
.ls6e{letter-spacing:0.015666px;}
.ls61{letter-spacing:0.018036px;}
.ls34{letter-spacing:0.019152px;}
.ls3{letter-spacing:0.021600px;}
.ls29{letter-spacing:0.021606px;}
.ls24{letter-spacing:0.021622px;}
.ls6d{letter-spacing:0.023499px;}
.ls7a{letter-spacing:0.024048px;}
.ls82{letter-spacing:0.026352px;}
.ls2{letter-spacing:0.028800px;}
.ls28{letter-spacing:0.028808px;}
.ls1b{letter-spacing:0.028830px;}
.ls5{letter-spacing:0.036000px;}
.ls40{letter-spacing:0.036010px;}
.ls53{letter-spacing:0.042084px;}
.ls6{letter-spacing:0.043200px;}
.ls3f{letter-spacing:0.043212px;}
.ls1{letter-spacing:0.050328px;}
.ls7{letter-spacing:0.050400px;}
.ls43{letter-spacing:0.050414px;}
.ls32{letter-spacing:0.050452px;}
.ls78{letter-spacing:0.054108px;}
.ls6b{letter-spacing:0.054831px;}
.ls11{letter-spacing:0.057600px;}
.ls42{letter-spacing:0.057616px;}
.ls6a{letter-spacing:0.062664px;}
.lse{letter-spacing:0.064800px;}
.ls2d{letter-spacing:0.064818px;}
.ls83{letter-spacing:0.065880px;}
.ls4b{letter-spacing:0.066132px;}
.ls1c{letter-spacing:0.067591px;}
.ls12{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.072020px;}
.ls54{letter-spacing:0.072144px;}
.lsf{letter-spacing:0.079200px;}
.ls3e{letter-spacing:0.079222px;}
.ls23{letter-spacing:0.079282px;}
.ls13{letter-spacing:0.086400px;}
.ls46{letter-spacing:0.086424px;}
.lsb{letter-spacing:0.090180px;}
.ls0{letter-spacing:0.092268px;}
.ls41{letter-spacing:0.100828px;}
.lsc{letter-spacing:0.102204px;}
.ls10{letter-spacing:0.115200px;}
.ls22{letter-spacing:0.115319px;}
.ls69{letter-spacing:0.125327px;}
.ls21{letter-spacing:0.141547px;}
.ls18{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.144040px;}
.ls20{letter-spacing:0.144149px;}
.ls55{letter-spacing:0.144288px;}
.ls2a{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.181944px;}
.ls51{letter-spacing:0.432119px;}
.ls65{letter-spacing:0.454311px;}
.ls72{letter-spacing:0.751962px;}
.ls68{letter-spacing:0.916454px;}
.ls63{letter-spacing:1.079910px;}
.ls73{letter-spacing:1.112277px;}
.ls62{letter-spacing:1.447079px;}
.ls67{letter-spacing:1.574421px;}
.ls66{letter-spacing:1.754579px;}
.ls64{letter-spacing:1.871844px;}
.ls71{letter-spacing:2.114894px;}
.ls4a{letter-spacing:3.420000px;}
.lsd{letter-spacing:33.984000px;}
.ls26{letter-spacing:105.700682px;}
.ls3d{letter-spacing:108.935560px;}
.ls52{letter-spacing:132.324120px;}
.ls5e{letter-spacing:133.406280px;}
.ls60{letter-spacing:138.095640px;}
.ls3c{letter-spacing:173.591105px;}
.ls56{letter-spacing:178.796880px;}
.ls25{letter-spacing:182.245453px;}
.ls19{letter-spacing:197.981169px;}
.ls27{letter-spacing:197.996834px;}
.ls7e{letter-spacing:228.029091px;}
.ls7c{letter-spacing:229.177440px;}
.ls7d{letter-spacing:261.719953px;}
.ls79{letter-spacing:271.297512px;}
.ls81{letter-spacing:497.160000px;}
.ls47{letter-spacing:1191.927690px;}
.ls2e{letter-spacing:1209.912953px;}
.ls44{letter-spacing:1209.932640px;}
.ls14{letter-spacing:1209.960000px;}
.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;}
}
.ws3b{word-spacing:-72.074400px;}
.ws63{word-spacing:-72.019800px;}
.wse0{word-spacing:-72.000000px;}
.ws62{word-spacing:-41.787438px;}
.wsb3{word-spacing:-21.461411px;}
.wsbc{word-spacing:-21.336929px;}
.wsbe{word-spacing:-21.156771px;}
.wsbf{word-spacing:-20.334312px;}
.ws89{word-spacing:-18.040960px;}
.ws97{word-spacing:-18.026556px;}
.ws3d{word-spacing:-18.018600px;}
.ws42{word-spacing:-18.004950px;}
.wsbb{word-spacing:-16.300348px;}
.wsc0{word-spacing:-15.658047px;}
.wsbd{word-spacing:-15.258567px;}
.ws0{word-spacing:-13.500000px;}
.ws3c{word-spacing:-11.989152px;}
.ws37{word-spacing:-10.510950px;}
.ws43{word-spacing:-10.502850px;}
.ws8a{word-spacing:-9.720000px;}
.wsaf{word-spacing:-5.879736px;}
.wsa9{word-spacing:-5.519016px;}
.ws13{word-spacing:-0.372744px;}
.ws84{word-spacing:-0.345695px;}
.ws34{word-spacing:-0.295200px;}
.wsa3{word-spacing:-0.288079px;}
.ws36{word-spacing:-0.288000px;}
.wsa6{word-spacing:-0.280877px;}
.ws30{word-spacing:-0.280800px;}
.ws73{word-spacing:-0.273675px;}
.ws98{word-spacing:-0.266473px;}
.ws32{word-spacing:-0.266400px;}
.ws9e{word-spacing:-0.259271px;}
.ws2a{word-spacing:-0.259200px;}
.ws9a{word-spacing:-0.252069px;}
.ws1d{word-spacing:-0.252000px;}
.ws7b{word-spacing:-0.244867px;}
.ws33{word-spacing:-0.244800px;}
.ws8c{word-spacing:-0.237665px;}
.ws2c{word-spacing:-0.237600px;}
.ws9c{word-spacing:-0.230463px;}
.ws94{word-spacing:-0.223261px;}
.ws18{word-spacing:-0.223200px;}
.ws9d{word-spacing:-0.216059px;}
.ws2f{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.209016px;}
.ws9b{word-spacing:-0.208857px;}
.wsa{word-spacing:-0.208800px;}
.ws68{word-spacing:-0.201655px;}
.ws1f{word-spacing:-0.201600px;}
.ws4e{word-spacing:-0.194601px;}
.ws92{word-spacing:-0.194453px;}
.ws23{word-spacing:-0.194400px;}
.ws8b{word-spacing:-0.187251px;}
.ws26{word-spacing:-0.187200px;}
.ws2{word-spacing:-0.184536px;}
.ws7f{word-spacing:-0.180050px;}
.wsb{word-spacing:-0.180000px;}
.ws4b{word-spacing:-0.172979px;}
.ws88{word-spacing:-0.172848px;}
.ws17{word-spacing:-0.172800px;}
.ws7a{word-spacing:-0.165646px;}
.ws1a{word-spacing:-0.165600px;}
.ws58{word-spacing:-0.158564px;}
.ws60{word-spacing:-0.158444px;}
.ws29{word-spacing:-0.158400px;}
.ws83{word-spacing:-0.151242px;}
.ws19{word-spacing:-0.151200px;}
.ws93{word-spacing:-0.144040px;}
.ws25{word-spacing:-0.144000px;}
.wsa8{word-spacing:-0.138276px;}
.ws4c{word-spacing:-0.136941px;}
.ws81{word-spacing:-0.136838px;}
.ws2d{word-spacing:-0.136800px;}
.ws57{word-spacing:-0.129734px;}
.ws6e{word-spacing:-0.129636px;}
.ws27{word-spacing:-0.129600px;}
.ws49{word-spacing:-0.122526px;}
.ws7d{word-spacing:-0.122434px;}
.ws22{word-spacing:-0.122400px;}
.ws52{word-spacing:-0.115319px;}
.ws70{word-spacing:-0.115232px;}
.wsd{word-spacing:-0.115200px;}
.ws75{word-spacing:-0.108030px;}
.ws5{word-spacing:-0.108000px;}
.ws56{word-spacing:-0.100904px;}
.ws82{word-spacing:-0.100828px;}
.ws12{word-spacing:-0.100800px;}
.ws59{word-spacing:-0.093697px;}
.ws74{word-spacing:-0.093626px;}
.ws14{word-spacing:-0.093600px;}
.ws47{word-spacing:-0.086489px;}
.ws6d{word-spacing:-0.086424px;}
.ws24{word-spacing:-0.086400px;}
.ws5d{word-spacing:-0.079282px;}
.ws80{word-spacing:-0.079222px;}
.ws10{word-spacing:-0.079200px;}
.ws48{word-spacing:-0.072074px;}
.ws71{word-spacing:-0.072020px;}
.ws8{word-spacing:-0.072000px;}
.ws55{word-spacing:-0.064867px;}
.ws6a{word-spacing:-0.064818px;}
.ws16{word-spacing:-0.064800px;}
.ws4a{word-spacing:-0.057660px;}
.ws79{word-spacing:-0.057616px;}
.ws15{word-spacing:-0.057600px;}
.ws44{word-spacing:-0.050452px;}
.ws6f{word-spacing:-0.050414px;}
.ws21{word-spacing:-0.050400px;}
.ws5a{word-spacing:-0.043245px;}
.ws7c{word-spacing:-0.043212px;}
.wsc{word-spacing:-0.043200px;}
.ws4d{word-spacing:-0.036037px;}
.ws5f{word-spacing:-0.036010px;}
.ws1b{word-spacing:-0.036000px;}
.ws53{word-spacing:-0.028830px;}
.ws5e{word-spacing:-0.028808px;}
.ws4{word-spacing:-0.028800px;}
.ws50{word-spacing:-0.021622px;}
.ws72{word-spacing:-0.021606px;}
.ws11{word-spacing:-0.021600px;}
.ws5b{word-spacing:-0.014415px;}
.ws69{word-spacing:-0.014404px;}
.ws6{word-spacing:-0.014400px;}
.ws4f{word-spacing:-0.007207px;}
.ws6b{word-spacing:-0.007202px;}
.wse{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.007200px;}
.ws87{word-spacing:0.007202px;}
.ws45{word-spacing:0.007207px;}
.ws1e{word-spacing:0.014400px;}
.ws77{word-spacing:0.014404px;}
.ws51{word-spacing:0.014415px;}
.ws6c{word-spacing:0.021606px;}
.ws5c{word-spacing:0.021622px;}
.ws8d{word-spacing:0.024048px;}
.wsee{word-spacing:0.026352px;}
.ws3a{word-spacing:0.028800px;}
.ws85{word-spacing:0.028808px;}
.ws3{word-spacing:0.033552px;}
.ws2b{word-spacing:0.036000px;}
.ws78{word-spacing:0.036010px;}
.ws1c{word-spacing:0.043200px;}
.ws95{word-spacing:0.043212px;}
.ws28{word-spacing:0.050400px;}
.ws99{word-spacing:0.050414px;}
.ws2e{word-spacing:0.057600px;}
.wsa1{word-spacing:0.057616px;}
.ws91{word-spacing:0.064818px;}
.wsed{word-spacing:0.065880px;}
.wsf{word-spacing:0.072000px;}
.ws9f{word-spacing:0.072020px;}
.wsa0{word-spacing:0.079222px;}
.ws20{word-spacing:0.086400px;}
.wsa7{word-spacing:0.086424px;}
.ws8f{word-spacing:0.090180px;}
.wsa2{word-spacing:0.093626px;}
.ws86{word-spacing:0.100828px;}
.ws8e{word-spacing:0.102204px;}
.wsa5{word-spacing:0.108030px;}
.ws35{word-spacing:0.122400px;}
.ws31{word-spacing:0.129600px;}
.wsa4{word-spacing:0.129636px;}
.ws9{word-spacing:0.144000px;}
.ws7e{word-spacing:0.165646px;}
.ws39{word-spacing:0.172800px;}
.wsae{word-spacing:0.180050px;}
.ws90{word-spacing:0.180360px;}
.ws96{word-spacing:0.345695px;}
.wsc1{word-spacing:7.464792px;}
.wsb0{word-spacing:12.084120px;}
.wsb2{word-spacing:14.236416px;}
.wsb1{word-spacing:14.242428px;}
.wsd5{word-spacing:14.454374px;}
.wsdc{word-spacing:29.888217px;}
.wsda{word-spacing:29.895419px;}
.wsd8{word-spacing:29.902621px;}
.wsb6{word-spacing:40.503824px;}
.wsba{word-spacing:40.518223px;}
.wsb9{word-spacing:40.525423px;}
.wsb8{word-spacing:40.539821px;}
.wsb7{word-spacing:40.561420px;}
.wsb5{word-spacing:40.683809px;}
.ws61{word-spacing:48.166842px;}
.wsf3{word-spacing:52.560050px;}
.wsf6{word-spacing:52.617666px;}
.wsf4{word-spacing:52.646474px;}
.wsf7{word-spacing:52.660878px;}
.wsf5{word-spacing:52.704090px;}
.wsc6{word-spacing:63.579974px;}
.wsc7{word-spacing:68.444230px;}
.wsc9{word-spacing:68.640053px;}
.ws76{word-spacing:71.897366px;}
.wsc3{word-spacing:73.237989px;}
.wsc4{word-spacing:73.245822px;}
.wsc8{word-spacing:73.277154px;}
.wsc5{word-spacing:73.292820px;}
.wscd{word-spacing:73.316318px;}
.wsdf{word-spacing:73.460196px;}
.wscc{word-spacing:78.345066px;}
.wscb{word-spacing:88.073577px;}
.wsdd{word-spacing:89.290148px;}
.wsc2{word-spacing:97.653263px;}
.wsd1{word-spacing:97.755120px;}
.wsd2{word-spacing:104.230044px;}
.wsd3{word-spacing:106.051680px;}
.wsb4{word-spacing:106.839096px;}
.wsdb{word-spacing:109.455692px;}
.wsca{word-spacing:112.152035px;}
.wsac{word-spacing:112.857264px;}
.wsce{word-spacing:122.240862px;}
.wsad{word-spacing:122.933376px;}
.wsab{word-spacing:145.977372px;}
.wsef{word-spacing:146.545889px;}
.wsaa{word-spacing:156.414204px;}
.wse8{word-spacing:156.607055px;}
.wse3{word-spacing:156.614257px;}
.wse7{word-spacing:162.728738px;}
.wse4{word-spacing:164.536435px;}
.wse6{word-spacing:164.543637px;}
.wse2{word-spacing:169.920000px;}
.wsea{word-spacing:172.451411px;}
.wsf0{word-spacing:176.419702px;}
.wse5{word-spacing:180.373589px;}
.wse1{word-spacing:182.534400px;}
.wse9{word-spacing:192.609753px;}
.wseb{word-spacing:194.417450px;}
.ws54{word-spacing:197.901888px;}
.wsd0{word-spacing:212.590332px;}
.wsde{word-spacing:228.079505px;}
.wsd9{word-spacing:228.086707px;}
.wsd6{word-spacing:228.101111px;}
.wsd7{word-spacing:228.122717px;}
.wscf{word-spacing:229.580244px;}
.wsf1{word-spacing:250.772944px;}
.wsf2{word-spacing:250.830559px;}
.wsd4{word-spacing:271.604124px;}
.wsec{word-spacing:291.608170px;}
.ws38{word-spacing:481.745290px;}
.ws3e{word-spacing:754.089902px;}
.ws64{word-spacing:849.217225px;}
.ws3f{word-spacing:1107.550355px;}
.ws40{word-spacing:1164.192967px;}
.ws65{word-spacing:1216.211499px;}
.ws66{word-spacing:1245.955742px;}
.ws41{word-spacing:1339.704000px;}
.ws67{word-spacing:1447.742020px;}
._23{margin-left:-677.202179px;}
._9{margin-left:-622.506593px;}
._22{margin-left:-471.225551px;}
._8{margin-left:-444.266602px;}
._2e{margin-left:-406.536991px;}
._30{margin-left:-399.133732px;}
._15{margin-left:-379.976237px;}
._17{margin-left:-372.120127px;}
._18{margin-left:-367.795663px;}
._13{margin-left:-359.803720px;}
._2d{margin-left:-345.039628px;}
._11{margin-left:-343.928173px;}
._14{margin-left:-341.786234px;}
._2a{margin-left:-328.823228px;}
._28{margin-left:-306.726355px;}
._5{margin-left:-297.922367px;}
._2f{margin-left:-293.552705px;}
._25{margin-left:-277.897808px;}
._31{margin-left:-275.691794px;}
._b{margin-left:-269.884289px;}
._16{margin-left:-266.242834px;}
._12{margin-left:-249.976858px;}
._1a{margin-left:-248.688000px;}
._81{margin-left:-237.543277px;}
._b6{margin-left:-212.775297px;}
._2b{margin-left:-210.659874px;}
._7{margin-left:-197.844228px;}
._88{margin-left:-194.568692px;}
._10{margin-left:-187.524642px;}
._93{margin-left:-186.315223px;}
._82{margin-left:-182.685425px;}
._d{margin-left:-176.520956px;}
._84{margin-left:-174.799257px;}
._1e{margin-left:-168.094213px;}
._89{margin-left:-162.571659px;}
._3{margin-left:-159.808484px;}
._19{margin-left:-154.368000px;}
._4{margin-left:-150.769067px;}
._a{margin-left:-146.029828px;}
._95{margin-left:-135.139415px;}
._e{margin-left:-133.430188px;}
._ae{margin-left:-131.263071px;}
._a9{margin-left:-125.807271px;}
._20{margin-left:-121.708767px;}
._1f{margin-left:-110.063087px;}
._c{margin-left:-104.157024px;}
._9f{margin-left:-102.081839px;}
._a3{margin-left:-97.547535px;}
._ad{margin-left:-96.146433px;}
._a8{margin-left:-94.302726px;}
._97{margin-left:-92.160000px;}
._f{margin-left:-89.096575px;}
._ac{margin-left:-87.489653px;}
._1d{margin-left:-86.333427px;}
._a7{margin-left:-85.164981px;}
._9e{margin-left:-82.102572px;}
._8c{margin-left:-79.567475px;}
._2c{margin-left:-77.931147px;}
._29{margin-left:-75.035862px;}
._9d{margin-left:-72.618185px;}
._ab{margin-left:-69.866408px;}
._70{margin-left:-68.381566px;}
._9a{margin-left:-66.265418px;}
._a5{margin-left:-64.421711px;}
._98{margin-left:-63.017325px;}
._b4{margin-left:-61.539924px;}
._8e{margin-left:-59.373123px;}
._99{margin-left:-56.528341px;}
._a4{margin-left:-55.347216px;}
._27{margin-left:-54.264014px;}
._1c{margin-left:-52.934553px;}
._24{margin-left:-50.830954px;}
._73{margin-left:-48.754123px;}
._8d{margin-left:-47.547472px;}
._b5{margin-left:-46.049460px;}
._71{margin-left:-43.942793px;}
._a0{margin-left:-42.470076px;}
._6f{margin-left:-39.020545px;}
._83{margin-left:-36.153940px;}
._a1{margin-left:-34.915199px;}
._26{margin-left:-29.935186px;}
._9c{margin-left:-27.558057px;}
._7b{margin-left:-25.142184px;}
._6{margin-left:-23.404641px;}
._72{margin-left:-20.618174px;}
._6c{margin-left:-19.530002px;}
._1b{margin-left:-17.258116px;}
._92{margin-left:-14.403960px;}
._45{margin-left:-13.346640px;}
._3a{margin-left:-10.460880px;}
._43{margin-left:-8.657280px;}
._4d{margin-left:-7.040052px;}
._46{margin-left:-5.753559px;}
._44{margin-left:-3.967920px;}
._34{margin-left:-2.164320px;}
._2{margin-left:-1.152000px;}
._0{width:1.006560px;}
._61{width:2.015832px;}
._1{width:3.209688px;}
._42{width:4.689360px;}
._40{width:6.492960px;}
._33{width:8.657280px;}
._38{width:9.871704px;}
._3b{width:11.182320px;}
._35{width:12.324600px;}
._3c{width:14.007960px;}
._54{width:16.340616px;}
._36{width:17.855640px;}
._3d{width:19.058040px;}
._47{width:21.048012px;}
._4b{width:22.154220px;}
._37{width:23.206320px;}
._4a{width:25.003908px;}
._51{width:26.633160px;}
._90{width:27.929278px;}
._4c{width:28.983852px;}
._58{width:32.560992px;}
._56{width:33.847560px;}
._50{width:35.290440px;}
._7f{width:40.518985px;}
._57{width:42.144120px;}
._80{width:43.788038px;}
._59{width:47.645100px;}
._8f{width:48.916609px;}
._55{width:51.384564px;}
._94{width:52.542362px;}
._5b{width:57.739248px;}
._7d{width:60.468696px;}
._5a{width:61.478712px;}
._b8{width:64.472125px;}
._75{width:65.530800px;}
._5c{width:77.975640px;}
._b7{width:80.986265px;}
._5d{width:84.883428px;}
._aa{width:86.191729px;}
._6a{width:89.434994px;}
._4f{width:91.550736px;}
._a2{width:94.641219px;}
._52{width:98.837280px;}
._9b{width:101.137405px;}
._76{width:102.612816px;}
._6b{width:104.212371px;}
._3e{width:105.240060px;}
._39{width:108.979524px;}
._53{width:112.165884px;}
._6d{width:113.533570px;}
._41{width:115.334208px;}
._21{width:119.167145px;}
._77{width:125.145792px;}
._32{width:126.679376px;}
._6e{width:128.538151px;}
._5e{width:130.423434px;}
._3f{width:131.867208px;}
._4e{width:135.606672px;}
._60{width:137.954688px;}
._5f{width:139.820598px;}
._a6{width:141.413230px;}
._49{width:142.478388px;}
._62{width:144.995916px;}
._63{width:146.948004px;}
._64{width:150.971418px;}
._48{width:152.103600px;}
._65{width:154.931088px;}
._78{width:156.889152px;}
._68{width:158.962752px;}
._b0{width:161.280000px;}
._69{width:162.930672px;}
._66{width:173.150070px;}
._67{width:177.181734px;}
._91{width:180.000000px;}
._96{width:187.592400px;}
._b2{width:195.840000px;}
._87{width:198.356933px;}
._86{width:201.971827px;}
._7e{width:205.430040px;}
._8b{width:209.189434px;}
._85{width:210.314615px;}
._7c{width:211.701663px;}
._8a{width:214.103661px;}
._7a{width:215.494053px;}
._79{width:239.013072px;}
._af{width:252.354896px;}
._74{width:270.960840px;}
._b3{width:281.880000px;}
._b1{width:365.400000px;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.880000px;}
.fs8{font-size:41.998800px;}
.fsb{font-size:42.011400px;}
.fs5{font-size:42.043800px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fsf{font-size:65.880000px;}
.fs10{font-size:71.994000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:72.019800px;}
.fs4{font-size:72.074400px;}
.fs9{font-size:76.094487px;}
.fsd{font-size:76.115551px;}
.fs6{font-size:76.173233px;}
.fs11{font-size:78.329400px;}
.fs0{font-size:83.880000px;}
.fsa{font-size:108.029400px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.960450px;}
.y8e{bottom:3.960600px;}
.y1c5{bottom:4.320450px;}
.y1c8{bottom:4.500450px;}
.y3b{bottom:57.270450px;}
.yd7{bottom:141.861630px;}
.y19{bottom:141.866130px;}
.y126{bottom:144.668620px;}
.y156{bottom:144.684482px;}
.y3a{bottom:144.930450px;}
.yf6{bottom:145.072468px;}
.ye6{bottom:145.224631px;}
.y9b{bottom:145.977247px;}
.y216{bottom:148.217781px;}
.yd6{bottom:159.055950px;}
.y18{bottom:159.060450px;}
.y125{bottom:165.374312px;}
.y155{bottom:165.390175px;}
.y44{bottom:168.147706px;}
.y39{bottom:175.980450px;}
.yf5{bottom:176.113002px;}
.yb9{bottom:176.264461px;}
.ye5{bottom:176.265165px;}
.y17{bottom:176.970450px;}
.y9a{bottom:177.017781px;}
.y6e{bottom:178.509916px;}
.y215{bottom:179.258315px;}
.yd5{bottom:183.090450px;}
.y124{bottom:186.080005px;}
.y154{bottom:186.095867px;}
.y185{bottom:189.584578px;}
.yd4{bottom:194.360530px;}
.y41{bottom:201.180450px;}
.y42{bottom:201.720000px;}
.y40{bottom:205.680450px;}
.y123{bottom:206.785697px;}
.y153{bottom:206.801560px;}
.y38{bottom:207.030450px;}
.yf4{bottom:207.153535px;}
.yb8{bottom:207.304995px;}
.ye4{bottom:207.305698px;}
.y99{bottom:208.058315px;}
.y6d{bottom:209.557304px;}
.y214{bottom:210.298849px;}
.y184{bottom:220.625112px;}
.y122{bottom:227.491390px;}
.y152{bottom:227.507252px;}
.y37{bottom:238.080450px;}
.yd3{bottom:238.184578px;}
.yf3{bottom:238.194069px;}
.yb7{bottom:238.345528px;}
.ye3{bottom:238.346232px;}
.y98{bottom:239.098849px;}
.y6c{bottom:240.597838px;}
.y213{bottom:241.339382px;}
.y121{bottom:248.197082px;}
.y151{bottom:248.212945px;}
.y183{bottom:251.665646px;}
.y120{bottom:268.902775px;}
.y150{bottom:268.918637px;}
.y3e{bottom:268.950450px;}
.y36{bottom:269.130450px;}
.yd2{bottom:269.225112px;}
.yf2{bottom:269.234603px;}
.yb6{bottom:269.386062px;}
.ye2{bottom:269.386766px;}
.y97{bottom:270.139382px;}
.y62{bottom:271.020450px;}
.y67{bottom:271.022828px;}
.y212{bottom:272.379916px;}
.y1c1{bottom:281.526713px;}
.y182{bottom:282.706180px;}
.y60{bottom:284.070450px;}
.y64{bottom:288.210450px;}
.y11f{bottom:289.608467px;}
.y14f{bottom:289.624330px;}
.y35{bottom:300.180450px;}
.yd1{bottom:300.265646px;}
.yf1{bottom:300.275137px;}
.yb5{bottom:300.426596px;}
.ye1{bottom:300.427300px;}
.y96{bottom:301.179916px;}
.y211{bottom:303.420450px;}
.y66{bottom:306.480450px;}
.y11e{bottom:310.314160px;}
.y14e{bottom:310.330022px;}
.y1c0{bottom:312.567247px;}
.y181{bottom:313.746713px;}
.y6b{bottom:315.570450px;}
.y63{bottom:325.834824px;}
.y69{bottom:325.837203px;}
.y11d{bottom:331.019852px;}
.y14d{bottom:331.035715px;}
.y34{bottom:331.230450px;}
.yd0{bottom:331.306180px;}
.yf0{bottom:331.315671px;}
.yb4{bottom:331.467130px;}
.ye0{bottom:331.467834px;}
.y95{bottom:332.275615px;}
.y210{bottom:335.929714px;}
.y6a{bottom:338.522267px;}
.y61{bottom:338.868363px;}
.y65{bottom:343.017518px;}
.y1bf{bottom:343.607781px;}
.y180{bottom:344.787247px;}
.y11c{bottom:351.725545px;}
.y14c{bottom:351.741407px;}
.y68{bottom:361.294824px;}
.y33{bottom:362.280450px;}
.ycf{bottom:362.346713px;}
.yef{bottom:362.356204px;}
.yb3{bottom:362.507664px;}
.ydf{bottom:362.508367px;}
.y94{bottom:363.316149px;}
.y20f{bottom:368.050545px;}
.y11b{bottom:372.431237px;}
.y14b{bottom:372.447100px;}
.y1be{bottom:374.648315px;}
.y17f{bottom:375.827781px;}
.y5f{bottom:387.080759px;}
.y11a{bottom:393.136930px;}
.y3f{bottom:393.150450px;}
.y14a{bottom:393.152792px;}
.y32{bottom:393.330450px;}
.yce{bottom:393.387247px;}
.yee{bottom:393.396738px;}
.yb2{bottom:393.548197px;}
.yde{bottom:393.548901px;}
.y93{bottom:394.356683px;}
.y20e{bottom:400.279406px;}
.y1bd{bottom:405.688849px;}
.y17e{bottom:406.868315px;}
.y19f{bottom:407.105112px;}
.y119{bottom:413.842622px;}
.y149{bottom:413.858485px;}
.y5e{bottom:418.126807px;}
.y31{bottom:424.380450px;}
.ycd{bottom:424.427781px;}
.yed{bottom:424.437272px;}
.yb1{bottom:424.588731px;}
.ydd{bottom:424.589435px;}
.y92{bottom:425.397217px;}
.y20d{bottom:432.400237px;}
.y118{bottom:434.548315px;}
.y148{bottom:434.564177px;}
.y1bc{bottom:436.729382px;}
.y17d{bottom:437.908849px;}
.y19e{bottom:438.145646px;}
.y5d{bottom:449.172854px;}
.y117{bottom:455.254007px;}
.y147{bottom:455.269870px;}
.y30{bottom:455.430450px;}
.ycc{bottom:455.468315px;}
.yec{bottom:455.477806px;}
.yb0{bottom:455.629265px;}
.ydc{bottom:455.629969px;}
.y91{bottom:456.437750px;}
.y1e6{bottom:463.857247px;}
.y20c{bottom:464.629097px;}
.y1bb{bottom:467.769916px;}
.y17c{bottom:468.949382px;}
.y19d{bottom:469.186180px;}
.y16{bottom:470.910450px;}
.y116{bottom:475.959700px;}
.y146{bottom:475.975562px;}
.y5c{bottom:480.218902px;}
.y2f{bottom:486.480450px;}
.ycb{bottom:486.508849px;}
.yeb{bottom:486.518340px;}
.yaf{bottom:486.669799px;}
.ydb{bottom:486.670503px;}
.y90{bottom:487.478284px;}
.y1e5{bottom:494.897781px;}
.y115{bottom:496.665392px;}
.y145{bottom:496.681255px;}
.y20b{bottom:496.749928px;}
.y1ba{bottom:498.810450px;}
.y17b{bottom:499.989916px;}
.y19c{bottom:500.226713px;}
.y15{bottom:501.960450px;}
.y5b{bottom:511.264950px;}
.y114{bottom:517.371085px;}
.y144{bottom:517.386947px;}
.y2e{bottom:517.530450px;}
.yca{bottom:517.549382px;}
.yea{bottom:517.558873px;}
.yae{bottom:517.710333px;}
.yda{bottom:517.711036px;}
.y8d{bottom:521.040000px;}
.y1b9{bottom:522.862912px;}
.y8f{bottom:525.000600px;}
.y8c{bottom:525.086227px;}
.y1e4{bottom:525.938315px;}
.y20a{bottom:528.978788px;}
.y17a{bottom:531.030450px;}
.y19b{bottom:531.267247px;}
.y14{bottom:533.010450px;}
.y113{bottom:538.076777px;}
.y143{bottom:538.092640px;}
.y5a{bottom:542.310998px;}
.y1b8{bottom:545.361038px;}
.y2d{bottom:548.580450px;}
.yc9{bottom:548.589916px;}
.ye9{bottom:548.599407px;}
.yad{bottom:548.750866px;}
.yd9{bottom:548.751570px;}
.y1e3{bottom:556.978849px;}
.y8b{bottom:557.495137px;}
.y112{bottom:558.782470px;}
.y142{bottom:558.798332px;}
.y179{bottom:560.280450px;}
.y209{bottom:561.099619px;}
.y19a{bottom:562.307781px;}
.y13{bottom:564.060450px;}
.y1b7{bottom:567.859163px;}
.y59{bottom:573.357046px;}
.y111{bottom:579.488162px;}
.y141{bottom:579.504025px;}
.y2c{bottom:579.630450px;}
.ye8{bottom:579.639941px;}
.yac{bottom:579.791400px;}
.yc8{bottom:579.792104px;}
.y178{bottom:588.000450px;}
.y1e2{bottom:588.019382px;}
.y8a{bottom:588.535671px;}
.y1b6{bottom:590.357288px;}
.y208{bottom:593.220450px;}
.y199{bottom:593.348315px;}
.y12{bottom:595.110450px;}
.y1f8{bottom:596.318315px;}
.y110{bottom:600.193855px;}
.y140{bottom:600.209717px;}
.y227{bottom:602.770287px;}
.y58{bottom:604.313000px;}
.y2b{bottom:610.590450px;}
.yab{bottom:610.741909px;}
.yc7{bottom:610.742613px;}
.y1b5{bottom:612.855413px;}
.y177{bottom:615.720450px;}
.y1e1{bottom:619.059916px;}
.y89{bottom:619.576204px;}
.y10f{bottom:620.809523px;}
.y13f{bottom:620.825385px;}
.y198{bottom:624.388849px;}
.y207{bottom:625.440450px;}
.y11{bottom:626.160450px;}
.y1f7{bottom:627.358849px;}
.y226{bottom:632.460450px;}
.y1b4{bottom:635.353538px;}
.y57{bottom:635.359048px;}
.ye7{bottom:641.460450px;}
.y10e{bottom:641.515215px;}
.y13e{bottom:641.531078px;}
.y2a{bottom:641.640450px;}
.yaa{bottom:641.782443px;}
.yc6{bottom:641.783147px;}
.y176{bottom:643.440450px;}
.y1e0{bottom:650.100450px;}
.y88{bottom:650.616738px;}
.y197{bottom:655.429382px;}
.y10{bottom:657.210450px;}
.y206{bottom:657.561169px;}
.y1b3{bottom:657.851663px;}
.y1f6{bottom:658.399382px;}
.y10d{bottom:662.220908px;}
.y13d{bottom:662.236770px;}
.y225{bottom:662.259916px;}
.y56{bottom:666.405096px;}
.y175{bottom:671.160450px;}
.y29{bottom:672.690450px;}
.ya9{bottom:672.822977px;}
.yc5{bottom:672.823681px;}
.y1df{bottom:674.734627px;}
.y1b2{bottom:680.349788px;}
.y87{bottom:681.657272px;}
.y10c{bottom:682.926600px;}
.y13c{bottom:682.942463px;}
.y196{bottom:686.469916px;}
.yf{bottom:688.260450px;}
.y1f5{bottom:689.439916px;}
.y205{bottom:691.140450px;}
.y224{bottom:693.300450px;}
.y1de{bottom:695.531083px;}
.y55{bottom:697.451144px;}
.y174{bottom:698.970450px;}
.y1b1{bottom:702.847913px;}
.y10b{bottom:703.632293px;}
.y13b{bottom:703.648155px;}
.y28{bottom:703.740450px;}
.ya8{bottom:703.863511px;}
.yc4{bottom:703.864214px;}
.y86{bottom:712.697806px;}
.y1dd{bottom:716.327539px;}
.y195{bottom:717.510450px;}
.ye{bottom:719.310450px;}
.y1f4{bottom:720.480450px;}
.y204{bottom:723.460755px;}
.y10a{bottom:724.337985px;}
.y13a{bottom:724.353848px;}
.y223{bottom:724.890450px;}
.y1b0{bottom:725.346037px;}
.y173{bottom:726.780450px;}
.y54{bottom:728.497192px;}
.y27{bottom:734.790450px;}
.ya7{bottom:734.904044px;}
.yc3{bottom:734.904748px;}
.y1dc{bottom:737.123994px;}
.y85{bottom:743.738340px;}
.y109{bottom:745.043678px;}
.y139{bottom:745.059540px;}
.y194{bottom:746.760450px;}
.y1af{bottom:747.844163px;}
.yd{bottom:750.360450px;}
.y1f3{bottom:750.552840px;}
.y1da{bottom:753.420000px;}
.y172{bottom:754.410450px;}
.y203{bottom:756.049714px;}
.y222{bottom:756.750450px;}
.y1db{bottom:757.920450px;}
.y237{bottom:758.379916px;}
.y22a{bottom:758.389382px;}
.y53{bottom:759.543239px;}
.y108{bottom:765.749370px;}
.y138{bottom:765.765233px;}
.y26{bottom:765.840450px;}
.ya6{bottom:765.944578px;}
.yc2{bottom:765.945282px;}
.y1ae{bottom:770.432280px;}
.y193{bottom:774.390450px;}
.y84{bottom:774.778873px;}
.y1f2{bottom:777.546720px;}
.y1d9{bottom:778.715665px;}
.yc{bottom:781.410450px;}
.y171{bottom:782.220450px;}
.y107{bottom:786.455062px;}
.y137{bottom:786.470925px;}
.y202{bottom:788.170545px;}
.y221{bottom:788.700450px;}
.y236{bottom:789.420450px;}
.y229{bottom:789.429916px;}
.y52{bottom:790.589287px;}
.y1ad{bottom:792.390450px;}
.y1d7{bottom:795.090000px;}
.y25{bottom:796.890450px;}
.ya5{bottom:796.985112px;}
.yc1{bottom:796.985816px;}
.y1d8{bottom:799.590450px;}
.y192{bottom:802.200450px;}
.y1f1{bottom:804.540600px;}
.y83{bottom:805.819407px;}
.y165{bottom:807.158613px;}
.y106{bottom:807.160755px;}
.y136{bottom:807.176618px;}
.y170{bottom:809.940450px;}
.yb{bottom:812.460450px;}
.y1d6{bottom:820.385665px;}
.y201{bottom:820.399406px;}
.y220{bottom:820.470450px;}
.y235{bottom:821.280450px;}
.y50{bottom:822.630000px;}
.y51{bottom:826.590450px;}
.y4f{bottom:826.604864px;}
.y3d{bottom:827.760450px;}
.y164{bottom:827.864305px;}
.y105{bottom:827.866447px;}
.y135{bottom:827.882310px;}
.y24{bottom:827.940450px;}
.ya4{bottom:828.025646px;}
.yc0{bottom:828.026350px;}
.y191{bottom:829.920450px;}
.y1f0{bottom:831.540600px;}
.y1ac{bottom:836.782905px;}
.y82{bottom:836.859941px;}
.y1d5{bottom:836.940000px;}
.y16f{bottom:837.660450px;}
.y1d4{bottom:841.260450px;}
.ya{bottom:843.510450px;}
.y163{bottom:848.569998px;}
.y104{bottom:848.572140px;}
.y134{bottom:848.588003px;}
.y21f{bottom:852.330450px;}
.y200{bottom:852.520237px;}
.y234{bottom:853.050450px;}
.y190{bottom:857.640450px;}
.y1ef{bottom:858.453510px;}
.y23{bottom:858.990450px;}
.y4e{bottom:859.002307px;}
.ya3{bottom:859.066180px;}
.ybf{bottom:859.066883px;}
.y1ab{bottom:859.281030px;}
.y1d3{bottom:861.690450px;}
.y16e{bottom:865.470450px;}
.y81{bottom:867.817304px;}
.y162{bottom:869.275690px;}
.y103{bottom:869.277832px;}
.y133{bottom:869.293695px;}
.y9{bottom:874.560450px;}
.y1aa{bottom:881.779155px;}
.y21e{bottom:884.100450px;}
.y1ff{bottom:884.749097px;}
.y233{bottom:884.820450px;}
.y18f{bottom:885.450450px;}
.y1ee{bottom:886.980450px;}
.y161{bottom:889.981383px;}
.y102{bottom:889.983525px;}
.y132{bottom:889.999388px;}
.y22{bottom:890.040450px;}
.y4d{bottom:890.048354px;}
.ya2{bottom:890.106713px;}
.ybe{bottom:890.107417px;}
.y16d{bottom:893.190450px;}
.y80{bottom:898.857838px;}
.y1a9{bottom:904.277280px;}
.y8{bottom:905.610450px;}
.y1d2{bottom:908.470116px;}
.y160{bottom:910.687075px;}
.y101{bottom:910.689217px;}
.y131{bottom:910.705080px;}
.y18e{bottom:913.170450px;}
.y1ed{bottom:914.088270px;}
.y21d{bottom:915.870450px;}
.y232{bottom:916.680450px;}
.y1fe{bottom:916.869928px;}
.y16c{bottom:920.910450px;}
.y21{bottom:921.090450px;}
.y4c{bottom:921.094402px;}
.ya1{bottom:921.147247px;}
.ybd{bottom:921.147951px;}
.y1a8{bottom:926.775405px;}
.y75{bottom:929.280450px;}
.y7a{bottom:929.282828px;}
.y1d1{bottom:930.519842px;}
.y15f{bottom:931.392768px;}
.y100{bottom:931.394910px;}
.y130{bottom:931.410773px;}
.y7{bottom:936.480450px;}
.y18d{bottom:940.890450px;}
.y1ec{bottom:941.442870px;}
.y73{bottom:942.330450px;}
.y77{bottom:946.470450px;}
.y21c{bottom:947.730450px;}
.y231{bottom:948.450450px;}
.y16b{bottom:948.720450px;}
.y1fd{bottom:949.098788px;}
.y1a7{bottom:949.273530px;}
.y1d0{bottom:951.316298px;}
.y15e{bottom:952.098460px;}
.yff{bottom:952.100602px;}
.y12f{bottom:952.116465px;}
.y20{bottom:952.140450px;}
.y4b{bottom:952.144402px;}
.ya0{bottom:952.187781px;}
.ybc{bottom:952.188485px;}
.y79{bottom:964.740450px;}
.y6{bottom:967.710450px;}
.y1eb{bottom:968.436750px;}
.y18c{bottom:968.700450px;}
.y1a6{bottom:971.771655px;}
.y1cf{bottom:972.112754px;}
.y15d{bottom:972.804153px;}
.yfe{bottom:972.806295px;}
.y12e{bottom:972.822158px;}
.y7f{bottom:973.830450px;}
.y16a{bottom:976.440450px;}
.y21b{bottom:979.500450px;}
.y230{bottom:980.220450px;}
.y1fc{bottom:981.219619px;}
.y1f{bottom:983.190450px;}
.y4a{bottom:983.206259px;}
.y9f{bottom:983.228315px;}
.ybb{bottom:983.229019px;}
.y7e{bottom:984.084321px;}
.y76{bottom:984.094824px;}
.y7c{bottom:984.097203px;}
.y1ce{bottom:992.909209px;}
.y15c{bottom:993.509845px;}
.yfd{bottom:993.511987px;}
.y12d{bottom:993.527850px;}
.y1a5{bottom:994.269780px;}
.y1ea{bottom:995.340450px;}
.y18b{bottom:996.420450px;}
.y7d{bottom:996.771764px;}
.y74{bottom:997.128363px;}
.y5{bottom:998.760450px;}
.y78{bottom:1001.277518px;}
.y169{bottom:1004.160450px;}
.y21a{bottom:1011.270450px;}
.y22f{bottom:1011.990450px;}
.y1fb{bottom:1013.340450px;}
.y1cd{bottom:1013.705665px;}
.y15b{bottom:1014.215538px;}
.yfc{bottom:1014.217680px;}
.y12c{bottom:1014.233542px;}
.y1e{bottom:1014.240450px;}
.y49{bottom:1014.252307px;}
.y9e{bottom:1014.268849px;}
.yba{bottom:1014.269552px;}
.y1a4{bottom:1016.767905px;}
.y7b{bottom:1019.554824px;}
.y1e9{bottom:1022.340450px;}
.y18a{bottom:1024.140450px;}
.y1cb{bottom:1030.080000px;}
.y168{bottom:1031.880450px;}
.y4{bottom:1032.150450px;}
.y1cc{bottom:1034.580450px;}
.y15a{bottom:1034.921230px;}
.yfb{bottom:1034.923372px;}
.y12b{bottom:1034.939235px;}
.y1a3{bottom:1039.266030px;}
.y219{bottom:1043.040450px;}
.y22e{bottom:1043.850450px;}
.y1d{bottom:1045.290450px;}
.y48{bottom:1045.298354px;}
.y9d{bottom:1045.309382px;}
.y72{bottom:1045.310086px;}
.y1fa{bottom:1045.560450px;}
.y1e8{bottom:1049.343690px;}
.y189{bottom:1051.950450px;}
.y1ca{bottom:1055.363994px;}
.y12a{bottom:1055.617980px;}
.y159{bottom:1055.626923px;}
.yfa{bottom:1055.629065px;}
.y167{bottom:1059.780450px;}
.y1a2{bottom:1061.764155px;}
.y3{bottom:1065.990450px;}
.y1c7{bottom:1071.660000px;}
.y218{bottom:1074.900450px;}
.y22d{bottom:1075.648427px;}
.y1c9{bottom:1076.160450px;}
.y129{bottom:1076.323672px;}
.y158{bottom:1076.332615px;}
.yf9{bottom:1076.334757px;}
.y1c{bottom:1076.340450px;}
.y47{bottom:1076.344402px;}
.y9c{bottom:1076.349916px;}
.y71{bottom:1076.350620px;}
.y1e7{bottom:1077.780450px;}
.y188{bottom:1079.760450px;}
.y1a1{bottom:1084.262280px;}
.y166{bottom:1087.410450px;}
.y1c6{bottom:1096.955665px;}
.y128{bottom:1097.029365px;}
.y157{bottom:1097.038308px;}
.yf8{bottom:1097.040450px;}
.y2{bottom:1099.207200px;}
.y1a0{bottom:1106.220450px;}
.y217{bottom:1106.490450px;}
.y228{bottom:1106.680018px;}
.y1b{bottom:1107.390450px;}
.yd8{bottom:1107.391154px;}
.y46{bottom:1107.394402px;}
.y70{bottom:1107.400216px;}
.y22c{bottom:1107.409159px;}
.y1f9{bottom:1108.830450px;}
.y187{bottom:1110.000450px;}
.y1c4{bottom:1113.510000px;}
.yf7{bottom:1117.560450px;}
.y127{bottom:1117.735057px;}
.y1c3{bottom:1117.830450px;}
.y1{bottom:1135.380450px;}
.y1a{bottom:1138.260450px;}
.y1c2{bottom:1138.350450px;}
.y45{bottom:1138.438650px;}
.y3c{bottom:1138.440450px;}
.y6f{bottom:1138.440750px;}
.y22b{bottom:1138.449693px;}
.y186{bottom:1139.700450px;}
.h2c{height:18.180000px;}
.h29{height:18.270000px;}
.h2b{height:18.450000px;}
.hb{height:21.960000px;}
.h1e{height:27.014766px;}
.h15{height:29.190538px;}
.h13{height:31.118796px;}
.h18{height:41.211378px;}
.h9{height:41.243161px;}
.h5{height:41.772832px;}
.h23{height:45.775020px;}
.h4{height:48.796875px;}
.h26{height:50.023175px;}
.h2{height:50.027344px;}
.h16{height:50.041101px;}
.h20{height:50.076871px;}
.h8{height:50.079039px;}
.he{height:50.086462px;}
.h1f{height:50.148891px;}
.h2e{height:50.761101px;}
.h27{height:53.086527px;}
.h11{height:53.332031px;}
.h14{height:53.346698px;}
.hd{height:53.387141px;}
.h2a{height:54.425164px;}
.h10{height:56.364910px;}
.h1a{height:56.380513px;}
.hc{height:56.423239px;}
.h1{height:56.848359px;}
.h21{height:62.703281px;}
.h22{height:63.064001px;}
.h1d{height:65.741568px;}
.h2d{height:70.288230px;}
.h1c{height:70.305822px;}
.h1b{height:70.620912px;}
.h25{height:70.623021px;}
.h7{height:70.628906px;}
.hf{height:70.644234px;}
.h19{height:70.648329px;}
.ha{height:70.701889px;}
.h24{height:75.087492px;}
.h6{height:75.093750px;}
.h3{height:76.400508px;}
.h28{height:76.837776px;}
.h12{height:80.019824px;}
.h17{height:91.961149px;}
.h0{height:1263.000000px;}
.w2{width:9.540000px;}
.w6{width:9.900000px;}
.w3{width:10.170000px;}
.w4{width:12.060000px;}
.w5{width:12.510000px;}
.wb{width:51.750000px;}
.w8{width:54.090000px;}
.w7{width:57.780000px;}
.wd{width:58.770000px;}
.wc{width:59.940000px;}
.w9{width:61.200000px;}
.wa{width:63.630000px;}
.we{width:66.240000px;}
.wf{width:69.120000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x44{left:-6.120000px;}
.x42{left:-3.690000px;}
.x3e{left:-2.430000px;}
.x46{left:-1.260000px;}
.x0{left:0.000000px;}
.x40{left:42.750000px;}
.x3d{left:46.440000px;}
.x4d{left:55.260000px;}
.x3{left:135.000000px;}
.x39{left:137.250000px;}
.x52{left:142.560000px;}
.x51{left:144.270000px;}
.x4c{left:152.100000px;}
.x50{left:154.709640px;}
.x8{left:162.000000px;}
.x53{left:165.879428px;}
.x4f{left:169.920000px;}
.x1{left:183.690000px;}
.x7{left:189.000000px;}
.x3a{left:202.494563px;}
.x3b{left:207.180000px;}
.x4e{left:225.450000px;}
.x18{left:237.690000px;}
.x17{left:268.830000px;}
.x3c{left:278.100000px;}
.x31{left:291.690000px;}
.x5{left:296.190000px;}
.xb{left:308.160000px;}
.x30{left:322.830000px;}
.x1c{left:335.610000px;}
.xf{left:345.690000px;}
.x16{left:349.830000px;}
.x3f{left:356.310000px;}
.x12{left:362.610000px;}
.x36{left:367.650000px;}
.x4{left:370.080000px;}
.xe{left:376.830000px;}
.x2{left:382.233960px;}
.x35{left:396.360000px;}
.x11{left:400.140000px;}
.x41{left:405.270000px;}
.x2f{left:410.670000px;}
.xd{left:412.830000px;}
.x1d{left:415.530000px;}
.x24{left:417.330000px;}
.x20{left:419.760000px;}
.x1e{left:423.360000px;}
.x21{left:428.582394px;}
.x10{left:435.240000px;}
.x26{left:437.130000px;}
.x6{left:446.490000px;}
.xc{left:448.110000px;}
.x1b{left:453.600000px;}
.x2b{left:454.951795px;}
.x27{left:456.570000px;}
.xa{left:457.830000px;}
.x9{left:466.110000px;}
.x25{left:467.827703px;}
.x43{left:471.240000px;}
.x1a{left:477.720000px;}
.x29{left:479.160297px;}
.x1f{left:480.240000px;}
.x15{left:490.410000px;}
.x2a{left:492.390000px;}
.x22{left:494.550000px;}
.x23{left:501.391881px;}
.x28{left:508.950000px;}
.x34{left:527.940000px;}
.x19{left:541.800000px;}
.x33{left:552.150000px;}
.x14{left:554.760000px;}
.x2e{left:564.840000px;}
.x13{left:572.778273px;}
.x45{left:605.790000px;}
.x47{left:615.600000px;}
.x32{left:622.980000px;}
.x2d{left:635.940000px;}
.x2c{left:653.943964px;}
.x48{left:664.470000px;}
.x49{left:669.330000px;}
.x38{left:720.178020px;}
.x37{left:724.416480px;}
.x4a{left:731.700000px;}
.x4b{left:739.080000px;}
@media print{
.v7{vertical-align:-24.000000pt;}
.v3{vertical-align:-16.051249pt;}
.v2{vertical-align:-8.000198pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v6{vertical-align:28.865230pt;}
.v1{vertical-align:34.560000pt;}
.v5{vertical-align:45.110908pt;}
.ls70{letter-spacing:-3.843363pt;}
.ls77{letter-spacing:-3.488269pt;}
.ls6f{letter-spacing:-2.917335pt;}
.ls5d{letter-spacing:-0.122912pt;}
.ls4d{letter-spacing:-0.080160pt;}
.ls5c{letter-spacing:-0.069472pt;}
.ls5b{letter-spacing:-0.064128pt;}
.ls80{letter-spacing:-0.064018pt;}
.ls37{letter-spacing:-0.051253pt;}
.ls7f{letter-spacing:-0.051214pt;}
.ls5a{letter-spacing:-0.048096pt;}
.ls50{letter-spacing:-0.044812pt;}
.ls38{letter-spacing:-0.038440pt;}
.ls4f{letter-spacing:-0.038411pt;}
.ls7b{letter-spacing:-0.037408pt;}
.ls36{letter-spacing:-0.032033pt;}
.ls4e{letter-spacing:-0.032009pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls2f{letter-spacing:-0.025626pt;}
.ls39{letter-spacing:-0.025607pt;}
.ls17{letter-spacing:-0.025600pt;}
.ls59{letter-spacing:-0.021376pt;}
.ls75{letter-spacing:-0.020888pt;}
.ls33{letter-spacing:-0.019220pt;}
.ls48{letter-spacing:-0.019205pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls76{letter-spacing:-0.013925pt;}
.ls35{letter-spacing:-0.012813pt;}
.ls49{letter-spacing:-0.012804pt;}
.ls15{letter-spacing:-0.012800pt;}
.ls4c{letter-spacing:-0.010688pt;}
.ls74{letter-spacing:-0.006963pt;}
.ls31{letter-spacing:-0.006407pt;}
.ls45{letter-spacing:-0.006402pt;}
.lsa{letter-spacing:-0.006400pt;}
.ls58{letter-spacing:-0.005344pt;}
.ls9{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.005344pt;}
.ls8{letter-spacing:0.006400pt;}
.ls3b{letter-spacing:0.006402pt;}
.ls1e{letter-spacing:0.006407pt;}
.ls6c{letter-spacing:0.006963pt;}
.ls1d{letter-spacing:0.008320pt;}
.ls5f{letter-spacing:0.010688pt;}
.ls4{letter-spacing:0.012800pt;}
.ls3a{letter-spacing:0.012804pt;}
.ls1f{letter-spacing:0.012813pt;}
.ls6e{letter-spacing:0.013925pt;}
.ls61{letter-spacing:0.016032pt;}
.ls34{letter-spacing:0.017024pt;}
.ls3{letter-spacing:0.019200pt;}
.ls29{letter-spacing:0.019205pt;}
.ls24{letter-spacing:0.019220pt;}
.ls6d{letter-spacing:0.020888pt;}
.ls7a{letter-spacing:0.021376pt;}
.ls82{letter-spacing:0.023424pt;}
.ls2{letter-spacing:0.025600pt;}
.ls28{letter-spacing:0.025607pt;}
.ls1b{letter-spacing:0.025626pt;}
.ls5{letter-spacing:0.032000pt;}
.ls40{letter-spacing:0.032009pt;}
.ls53{letter-spacing:0.037408pt;}
.ls6{letter-spacing:0.038400pt;}
.ls3f{letter-spacing:0.038411pt;}
.ls1{letter-spacing:0.044736pt;}
.ls7{letter-spacing:0.044800pt;}
.ls43{letter-spacing:0.044812pt;}
.ls32{letter-spacing:0.044846pt;}
.ls78{letter-spacing:0.048096pt;}
.ls6b{letter-spacing:0.048738pt;}
.ls11{letter-spacing:0.051200pt;}
.ls42{letter-spacing:0.051214pt;}
.ls6a{letter-spacing:0.055701pt;}
.lse{letter-spacing:0.057600pt;}
.ls2d{letter-spacing:0.057616pt;}
.ls83{letter-spacing:0.058560pt;}
.ls4b{letter-spacing:0.058784pt;}
.ls1c{letter-spacing:0.060081pt;}
.ls12{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.064018pt;}
.ls54{letter-spacing:0.064128pt;}
.lsf{letter-spacing:0.070400pt;}
.ls3e{letter-spacing:0.070419pt;}
.ls23{letter-spacing:0.070473pt;}
.ls13{letter-spacing:0.076800pt;}
.ls46{letter-spacing:0.076821pt;}
.lsb{letter-spacing:0.080160pt;}
.ls0{letter-spacing:0.082016pt;}
.ls41{letter-spacing:0.089625pt;}
.lsc{letter-spacing:0.090848pt;}
.ls10{letter-spacing:0.102400pt;}
.ls22{letter-spacing:0.102506pt;}
.ls69{letter-spacing:0.111402pt;}
.ls21{letter-spacing:0.125820pt;}
.ls18{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.128035pt;}
.ls20{letter-spacing:0.128132pt;}
.ls55{letter-spacing:0.128256pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.161728pt;}
.ls51{letter-spacing:0.384106pt;}
.ls65{letter-spacing:0.403832pt;}
.ls72{letter-spacing:0.668411pt;}
.ls68{letter-spacing:0.814626pt;}
.ls63{letter-spacing:0.959920pt;}
.ls73{letter-spacing:0.988691pt;}
.ls62{letter-spacing:1.286293pt;}
.ls67{letter-spacing:1.399485pt;}
.ls66{letter-spacing:1.559625pt;}
.ls64{letter-spacing:1.663861pt;}
.ls71{letter-spacing:1.879906pt;}
.ls4a{letter-spacing:3.040000pt;}
.lsd{letter-spacing:30.208000pt;}
.ls26{letter-spacing:93.956162pt;}
.ls3d{letter-spacing:96.831609pt;}
.ls52{letter-spacing:117.621440pt;}
.ls5e{letter-spacing:118.583360pt;}
.ls60{letter-spacing:122.751680pt;}
.ls3c{letter-spacing:154.303204pt;}
.ls56{letter-spacing:158.930560pt;}
.ls25{letter-spacing:161.995958pt;}
.ls19{letter-spacing:175.983262pt;}
.ls27{letter-spacing:175.997186pt;}
.ls7e{letter-spacing:202.692525pt;}
.ls7c{letter-spacing:203.713280pt;}
.ls7d{letter-spacing:232.639958pt;}
.ls79{letter-spacing:241.153344pt;}
.ls81{letter-spacing:441.920000pt;}
.ls47{letter-spacing:1059.491280pt;}
.ls2e{letter-spacing:1075.478180pt;}
.ls44{letter-spacing:1075.495680pt;}
.ls14{letter-spacing:1075.520000pt;}
.ws3b{word-spacing:-64.066133pt;}
.ws63{word-spacing:-64.017600pt;}
.wse0{word-spacing:-64.000000pt;}
.ws62{word-spacing:-37.144389pt;}
.wsb3{word-spacing:-19.076810pt;}
.wsbc{word-spacing:-18.966159pt;}
.wsbe{word-spacing:-18.806019pt;}
.wsbf{word-spacing:-18.074944pt;}
.ws89{word-spacing:-16.036409pt;}
.ws97{word-spacing:-16.023605pt;}
.ws3d{word-spacing:-16.016533pt;}
.ws42{word-spacing:-16.004400pt;}
.wsbb{word-spacing:-14.489198pt;}
.wsc0{word-spacing:-13.918264pt;}
.wsbd{word-spacing:-13.563171pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3c{word-spacing:-10.657024pt;}
.ws37{word-spacing:-9.343067pt;}
.ws43{word-spacing:-9.335867pt;}
.ws8a{word-spacing:-8.640000pt;}
.wsaf{word-spacing:-5.226432pt;}
.wsa9{word-spacing:-4.905792pt;}
.ws13{word-spacing:-0.331328pt;}
.ws84{word-spacing:-0.307284pt;}
.ws34{word-spacing:-0.262400pt;}
.wsa3{word-spacing:-0.256070pt;}
.ws36{word-spacing:-0.256000pt;}
.wsa6{word-spacing:-0.249669pt;}
.ws30{word-spacing:-0.249600pt;}
.ws73{word-spacing:-0.243267pt;}
.ws98{word-spacing:-0.236865pt;}
.ws32{word-spacing:-0.236800pt;}
.ws9e{word-spacing:-0.230463pt;}
.ws2a{word-spacing:-0.230400pt;}
.ws9a{word-spacing:-0.224062pt;}
.ws1d{word-spacing:-0.224000pt;}
.ws7b{word-spacing:-0.217660pt;}
.ws33{word-spacing:-0.217600pt;}
.ws8c{word-spacing:-0.211258pt;}
.ws2c{word-spacing:-0.211200pt;}
.ws9c{word-spacing:-0.204856pt;}
.ws94{word-spacing:-0.198455pt;}
.ws18{word-spacing:-0.198400pt;}
.ws9d{word-spacing:-0.192053pt;}
.ws2f{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.185792pt;}
.ws9b{word-spacing:-0.185651pt;}
.wsa{word-spacing:-0.185600pt;}
.ws68{word-spacing:-0.179249pt;}
.ws1f{word-spacing:-0.179200pt;}
.ws4e{word-spacing:-0.172979pt;}
.ws92{word-spacing:-0.172848pt;}
.ws23{word-spacing:-0.172800pt;}
.ws8b{word-spacing:-0.166446pt;}
.ws26{word-spacing:-0.166400pt;}
.ws2{word-spacing:-0.164032pt;}
.ws7f{word-spacing:-0.160044pt;}
.wsb{word-spacing:-0.160000pt;}
.ws4b{word-spacing:-0.153759pt;}
.ws88{word-spacing:-0.153642pt;}
.ws17{word-spacing:-0.153600pt;}
.ws7a{word-spacing:-0.147240pt;}
.ws1a{word-spacing:-0.147200pt;}
.ws58{word-spacing:-0.140945pt;}
.ws60{word-spacing:-0.140839pt;}
.ws29{word-spacing:-0.140800pt;}
.ws83{word-spacing:-0.134437pt;}
.ws19{word-spacing:-0.134400pt;}
.ws93{word-spacing:-0.128035pt;}
.ws25{word-spacing:-0.128000pt;}
.wsa8{word-spacing:-0.122912pt;}
.ws4c{word-spacing:-0.121726pt;}
.ws81{word-spacing:-0.121633pt;}
.ws2d{word-spacing:-0.121600pt;}
.ws57{word-spacing:-0.115319pt;}
.ws6e{word-spacing:-0.115232pt;}
.ws27{word-spacing:-0.115200pt;}
.ws49{word-spacing:-0.108912pt;}
.ws7d{word-spacing:-0.108830pt;}
.ws22{word-spacing:-0.108800pt;}
.ws52{word-spacing:-0.102506pt;}
.ws70{word-spacing:-0.102428pt;}
.wsd{word-spacing:-0.102400pt;}
.ws75{word-spacing:-0.096026pt;}
.ws5{word-spacing:-0.096000pt;}
.ws56{word-spacing:-0.089693pt;}
.ws82{word-spacing:-0.089625pt;}
.ws12{word-spacing:-0.089600pt;}
.ws59{word-spacing:-0.083286pt;}
.ws74{word-spacing:-0.083223pt;}
.ws14{word-spacing:-0.083200pt;}
.ws47{word-spacing:-0.076879pt;}
.ws6d{word-spacing:-0.076821pt;}
.ws24{word-spacing:-0.076800pt;}
.ws5d{word-spacing:-0.070473pt;}
.ws80{word-spacing:-0.070419pt;}
.ws10{word-spacing:-0.070400pt;}
.ws48{word-spacing:-0.064066pt;}
.ws71{word-spacing:-0.064018pt;}
.ws8{word-spacing:-0.064000pt;}
.ws55{word-spacing:-0.057660pt;}
.ws6a{word-spacing:-0.057616pt;}
.ws16{word-spacing:-0.057600pt;}
.ws4a{word-spacing:-0.051253pt;}
.ws79{word-spacing:-0.051214pt;}
.ws15{word-spacing:-0.051200pt;}
.ws44{word-spacing:-0.044846pt;}
.ws6f{word-spacing:-0.044812pt;}
.ws21{word-spacing:-0.044800pt;}
.ws5a{word-spacing:-0.038440pt;}
.ws7c{word-spacing:-0.038411pt;}
.wsc{word-spacing:-0.038400pt;}
.ws4d{word-spacing:-0.032033pt;}
.ws5f{word-spacing:-0.032009pt;}
.ws1b{word-spacing:-0.032000pt;}
.ws53{word-spacing:-0.025626pt;}
.ws5e{word-spacing:-0.025607pt;}
.ws4{word-spacing:-0.025600pt;}
.ws50{word-spacing:-0.019220pt;}
.ws72{word-spacing:-0.019205pt;}
.ws11{word-spacing:-0.019200pt;}
.ws5b{word-spacing:-0.012813pt;}
.ws69{word-spacing:-0.012804pt;}
.ws6{word-spacing:-0.012800pt;}
.ws4f{word-spacing:-0.006407pt;}
.ws6b{word-spacing:-0.006402pt;}
.wse{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.006400pt;}
.ws87{word-spacing:0.006402pt;}
.ws45{word-spacing:0.006407pt;}
.ws1e{word-spacing:0.012800pt;}
.ws77{word-spacing:0.012804pt;}
.ws51{word-spacing:0.012813pt;}
.ws6c{word-spacing:0.019205pt;}
.ws5c{word-spacing:0.019220pt;}
.ws8d{word-spacing:0.021376pt;}
.wsee{word-spacing:0.023424pt;}
.ws3a{word-spacing:0.025600pt;}
.ws85{word-spacing:0.025607pt;}
.ws3{word-spacing:0.029824pt;}
.ws2b{word-spacing:0.032000pt;}
.ws78{word-spacing:0.032009pt;}
.ws1c{word-spacing:0.038400pt;}
.ws95{word-spacing:0.038411pt;}
.ws28{word-spacing:0.044800pt;}
.ws99{word-spacing:0.044812pt;}
.ws2e{word-spacing:0.051200pt;}
.wsa1{word-spacing:0.051214pt;}
.ws91{word-spacing:0.057616pt;}
.wsed{word-spacing:0.058560pt;}
.wsf{word-spacing:0.064000pt;}
.ws9f{word-spacing:0.064018pt;}
.wsa0{word-spacing:0.070419pt;}
.ws20{word-spacing:0.076800pt;}
.wsa7{word-spacing:0.076821pt;}
.ws8f{word-spacing:0.080160pt;}
.wsa2{word-spacing:0.083223pt;}
.ws86{word-spacing:0.089625pt;}
.ws8e{word-spacing:0.090848pt;}
.wsa5{word-spacing:0.096026pt;}
.ws35{word-spacing:0.108800pt;}
.ws31{word-spacing:0.115200pt;}
.wsa4{word-spacing:0.115232pt;}
.ws9{word-spacing:0.128000pt;}
.ws7e{word-spacing:0.147240pt;}
.ws39{word-spacing:0.153600pt;}
.wsae{word-spacing:0.160044pt;}
.ws90{word-spacing:0.160320pt;}
.ws96{word-spacing:0.307284pt;}
.wsc1{word-spacing:6.635371pt;}
.wsb0{word-spacing:10.741440pt;}
.wsb2{word-spacing:12.654592pt;}
.wsb1{word-spacing:12.659936pt;}
.wsd5{word-spacing:12.848332pt;}
.wsdc{word-spacing:26.567304pt;}
.wsda{word-spacing:26.573706pt;}
.wsd8{word-spacing:26.580108pt;}
.wsb6{word-spacing:36.003399pt;}
.wsba{word-spacing:36.016198pt;}
.wsb9{word-spacing:36.022598pt;}
.wsb8{word-spacing:36.035397pt;}
.wsb7{word-spacing:36.054595pt;}
.wsb5{word-spacing:36.163386pt;}
.ws61{word-spacing:42.814971pt;}
.wsf3{word-spacing:46.720044pt;}
.wsf6{word-spacing:46.771259pt;}
.wsf4{word-spacing:46.796866pt;}
.wsf7{word-spacing:46.809669pt;}
.wsf5{word-spacing:46.848080pt;}
.wsc6{word-spacing:56.515532pt;}
.wsc7{word-spacing:60.839315pt;}
.wsc9{word-spacing:61.013381pt;}
.ws76{word-spacing:63.908770pt;}
.wsc3{word-spacing:65.100435pt;}
.wsc4{word-spacing:65.107397pt;}
.wsc8{word-spacing:65.135248pt;}
.wsc5{word-spacing:65.149173pt;}
.wscd{word-spacing:65.170061pt;}
.wsdf{word-spacing:65.297952pt;}
.wscc{word-spacing:69.640059pt;}
.wscb{word-spacing:78.287624pt;}
.wsdd{word-spacing:79.369020pt;}
.wsc2{word-spacing:86.802900pt;}
.wsd1{word-spacing:86.893440pt;}
.wsd2{word-spacing:92.648928pt;}
.wsd3{word-spacing:94.268160pt;}
.wsb4{word-spacing:94.968085pt;}
.wsdb{word-spacing:97.293948pt;}
.wsca{word-spacing:99.690698pt;}
.wsac{word-spacing:100.317568pt;}
.wsce{word-spacing:108.658544pt;}
.wsad{word-spacing:109.274112pt;}
.wsab{word-spacing:129.757664pt;}
.wsef{word-spacing:130.263012pt;}
.wsaa{word-spacing:139.034848pt;}
.wse8{word-spacing:139.206271pt;}
.wse3{word-spacing:139.212673pt;}
.wse7{word-spacing:144.647767pt;}
.wse4{word-spacing:146.254609pt;}
.wse6{word-spacing:146.261011pt;}
.wse2{word-spacing:151.040000pt;}
.wsea{word-spacing:153.290143pt;}
.wsf0{word-spacing:156.817513pt;}
.wse5{word-spacing:160.332079pt;}
.wse1{word-spacing:162.252800pt;}
.wse9{word-spacing:171.208669pt;}
.wseb{word-spacing:172.815511pt;}
.ws54{word-spacing:175.912789pt;}
.wsd0{word-spacing:188.969184pt;}
.wsde{word-spacing:202.737337pt;}
.wsd9{word-spacing:202.743739pt;}
.wsd6{word-spacing:202.756543pt;}
.wsd7{word-spacing:202.775748pt;}
.wscf{word-spacing:204.071328pt;}
.wsf1{word-spacing:222.909283pt;}
.wsf2{word-spacing:222.960497pt;}
.wsd4{word-spacing:241.425888pt;}
.wsec{word-spacing:259.207262pt;}
.ws38{word-spacing:428.218035pt;}
.ws3e{word-spacing:670.302135pt;}
.ws64{word-spacing:754.859755pt;}
.ws3f{word-spacing:984.489204pt;}
.ws40{word-spacing:1034.838193pt;}
.ws65{word-spacing:1081.076888pt;}
.ws66{word-spacing:1107.516215pt;}
.ws41{word-spacing:1190.848000pt;}
.ws67{word-spacing:1286.881795pt;}
._23{margin-left:-601.957493pt;}
._9{margin-left:-553.339194pt;}
._22{margin-left:-418.867157pt;}
._8{margin-left:-394.903646pt;}
._2e{margin-left:-361.366214pt;}
._30{margin-left:-354.785539pt;}
._15{margin-left:-337.756655pt;}
._17{margin-left:-330.773446pt;}
._18{margin-left:-326.929478pt;}
._13{margin-left:-319.825529pt;}
._2d{margin-left:-306.701892pt;}
._11{margin-left:-305.713932pt;}
._14{margin-left:-303.809986pt;}
._2a{margin-left:-292.287314pt;}
._28{margin-left:-272.645649pt;}
._5{margin-left:-264.819882pt;}
._2f{margin-left:-260.935738pt;}
._25{margin-left:-247.020274pt;}
._31{margin-left:-245.059373pt;}
._b{margin-left:-239.897146pt;}
._16{margin-left:-236.660297pt;}
._12{margin-left:-222.201651pt;}
._1a{margin-left:-221.056000pt;}
._81{margin-left:-211.149580pt;}
._b6{margin-left:-189.133597pt;}
._2b{margin-left:-187.253221pt;}
._7{margin-left:-175.861536pt;}
._88{margin-left:-172.949948pt;}
._10{margin-left:-166.688571pt;}
._93{margin-left:-165.613531pt;}
._82{margin-left:-162.387044pt;}
._d{margin-left:-156.907517pt;}
._84{margin-left:-155.377117pt;}
._1e{margin-left:-149.417078pt;}
._89{margin-left:-144.508141pt;}
._3{margin-left:-142.051986pt;}
._19{margin-left:-137.216000pt;}
._4{margin-left:-134.016948pt;}
._a{margin-left:-129.804291pt;}
._95{margin-left:-120.123924pt;}
._e{margin-left:-118.604611pt;}
._ae{margin-left:-116.678285pt;}
._a9{margin-left:-111.828685pt;}
._20{margin-left:-108.185570pt;}
._1f{margin-left:-97.833855pt;}
._c{margin-left:-92.584021pt;}
._9f{margin-left:-90.739412pt;}
._a3{margin-left:-86.708920pt;}
._ad{margin-left:-85.463496pt;}
._a8{margin-left:-83.824645pt;}
._97{margin-left:-81.920000pt;}
._f{margin-left:-79.196956pt;}
._ac{margin-left:-77.768580pt;}
._1d{margin-left:-76.740824pt;}
._a7{margin-left:-75.702205pt;}
._9e{margin-left:-72.980064pt;}
._8c{margin-left:-70.726644pt;}
._2c{margin-left:-69.272131pt;}
._29{margin-left:-66.698544pt;}
._9d{margin-left:-64.549498pt;}
._ab{margin-left:-62.103474pt;}
._70{margin-left:-60.783614pt;}
._9a{margin-left:-58.902594pt;}
._a5{margin-left:-57.263743pt;}
._98{margin-left:-56.015400pt;}
._b4{margin-left:-54.702155pt;}
._8e{margin-left:-52.776109pt;}
._99{margin-left:-50.247414pt;}
._a4{margin-left:-49.197526pt;}
._27{margin-left:-48.234679pt;}
._1c{margin-left:-47.052936pt;}
._24{margin-left:-45.183070pt;}
._73{margin-left:-43.336998pt;}
._8d{margin-left:-42.264420pt;}
._b5{margin-left:-40.932853pt;}
._71{margin-left:-39.060261pt;}
._a0{margin-left:-37.751179pt;}
._6f{margin-left:-34.684929pt;}
._83{margin-left:-32.136835pt;}
._a1{margin-left:-31.035732pt;}
._26{margin-left:-26.609054pt;}
._9c{margin-left:-24.496051pt;}
._7b{margin-left:-22.348608pt;}
._6{margin-left:-20.804125pt;}
._72{margin-left:-18.327266pt;}
._6c{margin-left:-17.360002pt;}
._1b{margin-left:-15.340548pt;}
._92{margin-left:-12.803520pt;}
._45{margin-left:-11.863680pt;}
._3a{margin-left:-9.298560pt;}
._43{margin-left:-7.695360pt;}
._4d{margin-left:-6.257824pt;}
._46{margin-left:-5.114275pt;}
._44{margin-left:-3.527040pt;}
._34{margin-left:-1.923840pt;}
._2{margin-left:-1.024000pt;}
._0{width:0.894720pt;}
._61{width:1.791851pt;}
._1{width:2.853056pt;}
._42{width:4.168320pt;}
._40{width:5.771520pt;}
._33{width:7.695360pt;}
._38{width:8.774848pt;}
._3b{width:9.939840pt;}
._35{width:10.955200pt;}
._3c{width:12.451520pt;}
._54{width:14.524992pt;}
._36{width:15.871680pt;}
._3d{width:16.940480pt;}
._47{width:18.709344pt;}
._4b{width:19.692640pt;}
._37{width:20.627840pt;}
._4a{width:22.225696pt;}
._51{width:23.673920pt;}
._90{width:24.826025pt;}
._4c{width:25.763424pt;}
._58{width:28.943104pt;}
._56{width:30.086720pt;}
._50{width:31.369280pt;}
._7f{width:36.016875pt;}
._57{width:37.461440pt;}
._80{width:38.922701pt;}
._59{width:42.351200pt;}
._8f{width:43.481430pt;}
._55{width:45.675168pt;}
._94{width:46.704322pt;}
._5b{width:51.323776pt;}
._7d{width:53.749952pt;}
._5a{width:54.647744pt;}
._b8{width:57.308556pt;}
._75{width:58.249600pt;}
._5c{width:69.311680pt;}
._b7{width:71.987791pt;}
._5d{width:75.451936pt;}
._aa{width:76.614870pt;}
._6a{width:79.497772pt;}
._4f{width:81.378432pt;}
._a2{width:84.125528pt;}
._52{width:87.855360pt;}
._9b{width:89.899916pt;}
._76{width:91.211392pt;}
._6b{width:92.633219pt;}
._3e{width:93.546720pt;}
._39{width:96.870688pt;}
._53{width:99.703008pt;}
._6d{width:100.918729pt;}
._41{width:102.519296pt;}
._21{width:105.926351pt;}
._77{width:111.240704pt;}
._32{width:112.603890pt;}
._6e{width:114.256134pt;}
._5e{width:115.931941pt;}
._3f{width:117.215296pt;}
._4e{width:120.539264pt;}
._60{width:122.626389pt;}
._5f{width:124.284976pt;}
._a6{width:125.700649pt;}
._49{width:126.647456pt;}
._62{width:128.885259pt;}
._63{width:130.620448pt;}
._64{width:134.196816pt;}
._48{width:135.203200pt;}
._65{width:137.716523pt;}
._78{width:139.457024pt;}
._68{width:141.300224pt;}
._b0{width:143.360000pt;}
._69{width:144.827264pt;}
._66{width:153.911173pt;}
._67{width:157.494875pt;}
._91{width:160.000000pt;}
._96{width:166.748800pt;}
._b2{width:174.080000pt;}
._87{width:176.317274pt;}
._86{width:179.530513pt;}
._7e{width:182.604480pt;}
._8b{width:185.946164pt;}
._85{width:186.946324pt;}
._7c{width:188.179256pt;}
._8a{width:190.314365pt;}
._7a{width:191.550269pt;}
._79{width:212.456064pt;}
._af{width:224.315463pt;}
._74{width:240.854080pt;}
._b3{width:250.560000pt;}
._b1{width:324.800000pt;}
.fse{font-size:34.560000pt;}
.fs8{font-size:37.332267pt;}
.fsb{font-size:37.343467pt;}
.fs5{font-size:37.372267pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fsf{font-size:58.560000pt;}
.fs10{font-size:63.994667pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:64.017600pt;}
.fs4{font-size:64.066133pt;}
.fs9{font-size:67.639544pt;}
.fsd{font-size:67.658268pt;}
.fs6{font-size:67.709540pt;}
.fs11{font-size:69.626133pt;}
.fs0{font-size:74.560000pt;}
.fsa{font-size:96.026133pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.520400pt;}
.y8e{bottom:3.520533pt;}
.y1c5{bottom:3.840400pt;}
.y1c8{bottom:4.000400pt;}
.y3b{bottom:50.907067pt;}
.yd7{bottom:126.099227pt;}
.y19{bottom:126.103227pt;}
.y126{bottom:128.594329pt;}
.y156{bottom:128.608429pt;}
.y3a{bottom:128.827067pt;}
.yf6{bottom:128.953305pt;}
.ye6{bottom:129.088561pt;}
.y9b{bottom:129.757553pt;}
.y216{bottom:131.749139pt;}
.yd6{bottom:141.383067pt;}
.y18{bottom:141.387067pt;}
.y125{bottom:146.999389pt;}
.y155{bottom:147.013489pt;}
.y44{bottom:149.464628pt;}
.y39{bottom:156.427067pt;}
.yf5{bottom:156.544890pt;}
.yb9{bottom:156.679521pt;}
.ye5{bottom:156.680146pt;}
.y17{bottom:157.307067pt;}
.y9a{bottom:157.349139pt;}
.y6e{bottom:158.675481pt;}
.y215{bottom:159.340724pt;}
.yd5{bottom:162.747067pt;}
.y124{bottom:165.404449pt;}
.y154{bottom:165.418549pt;}
.y185{bottom:168.519625pt;}
.yd4{bottom:172.764915pt;}
.y41{bottom:178.827067pt;}
.y42{bottom:179.306667pt;}
.y40{bottom:182.827067pt;}
.y123{bottom:183.809509pt;}
.y153{bottom:183.823609pt;}
.y38{bottom:184.027067pt;}
.yf4{bottom:184.136476pt;}
.yb8{bottom:184.271106pt;}
.ye4{bottom:184.271732pt;}
.y99{bottom:184.940724pt;}
.y6d{bottom:186.273159pt;}
.y214{bottom:186.932310pt;}
.y184{bottom:196.111211pt;}
.y122{bottom:202.214569pt;}
.y152{bottom:202.228669pt;}
.y37{bottom:211.627067pt;}
.yd3{bottom:211.719625pt;}
.yf3{bottom:211.728061pt;}
.yb7{bottom:211.862692pt;}
.ye3{bottom:211.863317pt;}
.y98{bottom:212.532310pt;}
.y6c{bottom:213.864745pt;}
.y213{bottom:214.523895pt;}
.y121{bottom:220.619629pt;}
.y151{bottom:220.633729pt;}
.y183{bottom:223.702796pt;}
.y120{bottom:239.024689pt;}
.y150{bottom:239.038789pt;}
.y3e{bottom:239.067067pt;}
.y36{bottom:239.227067pt;}
.yd2{bottom:239.311211pt;}
.yf2{bottom:239.319647pt;}
.yb6{bottom:239.454277pt;}
.ye2{bottom:239.454903pt;}
.y97{bottom:240.123895pt;}
.y62{bottom:240.907067pt;}
.y67{bottom:240.909181pt;}
.y212{bottom:242.115481pt;}
.y1c1{bottom:250.245967pt;}
.y182{bottom:251.294382pt;}
.y60{bottom:252.507067pt;}
.y64{bottom:256.187067pt;}
.y11f{bottom:257.429749pt;}
.y14f{bottom:257.443849pt;}
.y35{bottom:266.827067pt;}
.yd1{bottom:266.902796pt;}
.yf1{bottom:266.911233pt;}
.yb5{bottom:267.045863pt;}
.ye1{bottom:267.046489pt;}
.y96{bottom:267.715481pt;}
.y211{bottom:269.707067pt;}
.y66{bottom:272.427067pt;}
.y11e{bottom:275.834809pt;}
.y14e{bottom:275.848909pt;}
.y1c0{bottom:277.837553pt;}
.y181{bottom:278.885967pt;}
.y6b{bottom:280.507067pt;}
.y63{bottom:289.630955pt;}
.y69{bottom:289.633069pt;}
.y11d{bottom:294.239869pt;}
.y14d{bottom:294.253969pt;}
.y34{bottom:294.427067pt;}
.yd0{bottom:294.494382pt;}
.yf0{bottom:294.502818pt;}
.yb4{bottom:294.637449pt;}
.ye0{bottom:294.638074pt;}
.y95{bottom:295.356102pt;}
.y210{bottom:298.604191pt;}
.y6a{bottom:300.908682pt;}
.y61{bottom:301.216323pt;}
.y65{bottom:304.904460pt;}
.y1bf{bottom:305.429139pt;}
.y180{bottom:306.477553pt;}
.y11c{bottom:312.644929pt;}
.y14c{bottom:312.659029pt;}
.y68{bottom:321.150955pt;}
.y33{bottom:322.027067pt;}
.ycf{bottom:322.085967pt;}
.yef{bottom:322.094404pt;}
.yb3{bottom:322.229034pt;}
.ydf{bottom:322.229660pt;}
.y94{bottom:322.947688pt;}
.y20f{bottom:327.156040pt;}
.y11b{bottom:331.049989pt;}
.y14b{bottom:331.064089pt;}
.y1be{bottom:333.020724pt;}
.y17f{bottom:334.069139pt;}
.y5f{bottom:344.071786pt;}
.y11a{bottom:349.455049pt;}
.y3f{bottom:349.467067pt;}
.y14a{bottom:349.469149pt;}
.y32{bottom:349.627067pt;}
.yce{bottom:349.677553pt;}
.yee{bottom:349.685989pt;}
.yb2{bottom:349.820620pt;}
.yde{bottom:349.821245pt;}
.y93{bottom:350.539274pt;}
.y20e{bottom:355.803916pt;}
.y1bd{bottom:360.612310pt;}
.y17e{bottom:361.660724pt;}
.y19f{bottom:361.871211pt;}
.y119{bottom:367.860109pt;}
.y149{bottom:367.874209pt;}
.y5e{bottom:371.668273pt;}
.y31{bottom:377.227067pt;}
.ycd{bottom:377.269139pt;}
.yed{bottom:377.277575pt;}
.yb1{bottom:377.412205pt;}
.ydd{bottom:377.412831pt;}
.y92{bottom:378.130859pt;}
.y20d{bottom:384.355766pt;}
.y118{bottom:386.265169pt;}
.y148{bottom:386.279269pt;}
.y1bc{bottom:388.203895pt;}
.y17d{bottom:389.252310pt;}
.y19e{bottom:389.462796pt;}
.y5d{bottom:399.264759pt;}
.y117{bottom:404.670229pt;}
.y147{bottom:404.684329pt;}
.y30{bottom:404.827067pt;}
.ycc{bottom:404.860724pt;}
.yec{bottom:404.869161pt;}
.yb0{bottom:405.003791pt;}
.ydc{bottom:405.004417pt;}
.y91{bottom:405.722445pt;}
.y1e6{bottom:412.317553pt;}
.y20c{bottom:413.003642pt;}
.y1bb{bottom:415.795481pt;}
.y17c{bottom:416.843895pt;}
.y19d{bottom:417.054382pt;}
.y16{bottom:418.587067pt;}
.y116{bottom:423.075289pt;}
.y146{bottom:423.089389pt;}
.y5c{bottom:426.861246pt;}
.y2f{bottom:432.427067pt;}
.ycb{bottom:432.452310pt;}
.yeb{bottom:432.460746pt;}
.yaf{bottom:432.595377pt;}
.ydb{bottom:432.596002pt;}
.y90{bottom:433.314030pt;}
.y1e5{bottom:439.909139pt;}
.y115{bottom:441.480349pt;}
.y145{bottom:441.494449pt;}
.y20b{bottom:441.555491pt;}
.y1ba{bottom:443.387067pt;}
.y17b{bottom:444.435481pt;}
.y19c{bottom:444.645967pt;}
.y15{bottom:446.187067pt;}
.y5b{bottom:454.457733pt;}
.y114{bottom:459.885409pt;}
.y144{bottom:459.899509pt;}
.y2e{bottom:460.027067pt;}
.yca{bottom:460.043895pt;}
.yea{bottom:460.052332pt;}
.yae{bottom:460.186962pt;}
.yda{bottom:460.187588pt;}
.y8d{bottom:463.146667pt;}
.y1b9{bottom:464.767033pt;}
.y8f{bottom:466.667200pt;}
.y8c{bottom:466.743313pt;}
.y1e4{bottom:467.500724pt;}
.y20a{bottom:470.203367pt;}
.y17a{bottom:472.027067pt;}
.y19b{bottom:472.237553pt;}
.y14{bottom:473.787067pt;}
.y113{bottom:478.290469pt;}
.y143{bottom:478.304569pt;}
.y5a{bottom:482.054220pt;}
.y1b8{bottom:484.765367pt;}
.y2d{bottom:487.627067pt;}
.yc9{bottom:487.635481pt;}
.ye9{bottom:487.643917pt;}
.yad{bottom:487.778548pt;}
.yd9{bottom:487.779173pt;}
.y1e3{bottom:495.092310pt;}
.y8b{bottom:495.551233pt;}
.y112{bottom:496.695529pt;}
.y142{bottom:496.709629pt;}
.y179{bottom:498.027067pt;}
.y209{bottom:498.755217pt;}
.y19a{bottom:499.829139pt;}
.y13{bottom:501.387067pt;}
.y1b7{bottom:504.763700pt;}
.y59{bottom:509.650707pt;}
.y111{bottom:515.100589pt;}
.y141{bottom:515.114689pt;}
.y2c{bottom:515.227067pt;}
.ye8{bottom:515.235503pt;}
.yac{bottom:515.370133pt;}
.yc8{bottom:515.370759pt;}
.y178{bottom:522.667067pt;}
.y1e2{bottom:522.683895pt;}
.y8a{bottom:523.142818pt;}
.y1b6{bottom:524.762033pt;}
.y208{bottom:527.307067pt;}
.y199{bottom:527.420724pt;}
.y12{bottom:528.987067pt;}
.y1f8{bottom:530.060724pt;}
.y110{bottom:533.505649pt;}
.y140{bottom:533.519749pt;}
.y227{bottom:535.795811pt;}
.y58{bottom:537.167111pt;}
.y2b{bottom:542.747067pt;}
.yab{bottom:542.881697pt;}
.yc7{bottom:542.882323pt;}
.y1b5{bottom:544.760367pt;}
.y177{bottom:547.307067pt;}
.y1e1{bottom:550.275481pt;}
.y89{bottom:550.734404pt;}
.y10f{bottom:551.830687pt;}
.y13f{bottom:551.844787pt;}
.y198{bottom:555.012310pt;}
.y207{bottom:555.947067pt;}
.y11{bottom:556.587067pt;}
.y1f7{bottom:557.652310pt;}
.y226{bottom:562.187067pt;}
.y1b4{bottom:564.758700pt;}
.y57{bottom:564.763598pt;}
.ye7{bottom:570.187067pt;}
.y10e{bottom:570.235747pt;}
.y13e{bottom:570.249847pt;}
.y2a{bottom:570.347067pt;}
.yaa{bottom:570.473283pt;}
.yc6{bottom:570.473908pt;}
.y176{bottom:571.947067pt;}
.y1e0{bottom:577.867067pt;}
.y88{bottom:578.325989pt;}
.y197{bottom:582.603895pt;}
.y10{bottom:584.187067pt;}
.y206{bottom:584.498817pt;}
.y1b3{bottom:584.757033pt;}
.y1f6{bottom:585.243895pt;}
.y10d{bottom:588.640807pt;}
.y13d{bottom:588.654907pt;}
.y225{bottom:588.675481pt;}
.y56{bottom:592.360085pt;}
.y175{bottom:596.587067pt;}
.y29{bottom:597.947067pt;}
.ya9{bottom:598.064868pt;}
.yc5{bottom:598.065494pt;}
.y1df{bottom:599.764113pt;}
.y1b2{bottom:604.755367pt;}
.y87{bottom:605.917575pt;}
.y10c{bottom:607.045867pt;}
.y13c{bottom:607.059967pt;}
.y196{bottom:610.195481pt;}
.yf{bottom:611.787067pt;}
.y1f5{bottom:612.835481pt;}
.y205{bottom:614.347067pt;}
.y224{bottom:616.267067pt;}
.y1de{bottom:618.249851pt;}
.y55{bottom:619.956572pt;}
.y174{bottom:621.307067pt;}
.y1b1{bottom:624.753700pt;}
.y10b{bottom:625.450927pt;}
.y13b{bottom:625.465027pt;}
.y28{bottom:625.547067pt;}
.ya8{bottom:625.656454pt;}
.yc4{bottom:625.657079pt;}
.y86{bottom:633.509161pt;}
.y1dd{bottom:636.735590pt;}
.y195{bottom:637.787067pt;}
.ye{bottom:639.387067pt;}
.y1f4{bottom:640.427067pt;}
.y204{bottom:643.076227pt;}
.y10a{bottom:643.855987pt;}
.y13a{bottom:643.870087pt;}
.y223{bottom:644.347067pt;}
.y1b0{bottom:644.752033pt;}
.y173{bottom:646.027067pt;}
.y54{bottom:647.553059pt;}
.y27{bottom:653.147067pt;}
.ya7{bottom:653.248039pt;}
.yc3{bottom:653.248665pt;}
.y1dc{bottom:655.221328pt;}
.y85{bottom:661.100746pt;}
.y109{bottom:662.261047pt;}
.y139{bottom:662.275147pt;}
.y194{bottom:663.787067pt;}
.y1af{bottom:664.750367pt;}
.yd{bottom:666.987067pt;}
.y1f3{bottom:667.158080pt;}
.y1da{bottom:669.706667pt;}
.y172{bottom:670.587067pt;}
.y203{bottom:672.044191pt;}
.y222{bottom:672.667067pt;}
.y1db{bottom:673.707067pt;}
.y237{bottom:674.115481pt;}
.y22a{bottom:674.123895pt;}
.y53{bottom:675.149546pt;}
.y108{bottom:680.666107pt;}
.y138{bottom:680.680207pt;}
.y26{bottom:680.747067pt;}
.ya6{bottom:680.839625pt;}
.yc2{bottom:680.840251pt;}
.y1ae{bottom:684.828693pt;}
.y193{bottom:688.347067pt;}
.y84{bottom:688.692332pt;}
.y1f2{bottom:691.152640pt;}
.y1d9{bottom:692.191702pt;}
.yc{bottom:694.587067pt;}
.y171{bottom:695.307067pt;}
.y107{bottom:699.071167pt;}
.y137{bottom:699.085267pt;}
.y202{bottom:700.596040pt;}
.y221{bottom:701.067067pt;}
.y236{bottom:701.707067pt;}
.y229{bottom:701.715481pt;}
.y52{bottom:702.746033pt;}
.y1ad{bottom:704.347067pt;}
.y1d7{bottom:706.746667pt;}
.y25{bottom:708.347067pt;}
.ya5{bottom:708.431211pt;}
.yc1{bottom:708.431836pt;}
.y1d8{bottom:710.747067pt;}
.y192{bottom:713.067067pt;}
.y1f1{bottom:715.147200pt;}
.y83{bottom:716.283917pt;}
.y165{bottom:717.474322pt;}
.y106{bottom:717.476227pt;}
.y136{bottom:717.490327pt;}
.y170{bottom:719.947067pt;}
.yb{bottom:722.187067pt;}
.y1d6{bottom:729.231702pt;}
.y201{bottom:729.243916pt;}
.y220{bottom:729.307067pt;}
.y235{bottom:730.027067pt;}
.y50{bottom:731.226667pt;}
.y51{bottom:734.747067pt;}
.y4f{bottom:734.759879pt;}
.y3d{bottom:735.787067pt;}
.y164{bottom:735.879382pt;}
.y105{bottom:735.881287pt;}
.y135{bottom:735.895387pt;}
.y24{bottom:735.947067pt;}
.ya4{bottom:736.022796pt;}
.yc0{bottom:736.023422pt;}
.y191{bottom:737.707067pt;}
.y1f0{bottom:739.147200pt;}
.y1ac{bottom:743.807027pt;}
.y82{bottom:743.875503pt;}
.y1d5{bottom:743.946667pt;}
.y16f{bottom:744.587067pt;}
.y1d4{bottom:747.787067pt;}
.ya{bottom:749.787067pt;}
.y163{bottom:754.284442pt;}
.y104{bottom:754.286347pt;}
.y134{bottom:754.300447pt;}
.y21f{bottom:757.627067pt;}
.y200{bottom:757.795766pt;}
.y234{bottom:758.267067pt;}
.y190{bottom:762.347067pt;}
.y1ef{bottom:763.069787pt;}
.y23{bottom:763.547067pt;}
.y4e{bottom:763.557606pt;}
.ya3{bottom:763.614382pt;}
.ybf{bottom:763.615007pt;}
.y1ab{bottom:763.805360pt;}
.y1d3{bottom:765.947067pt;}
.y16e{bottom:769.307067pt;}
.y81{bottom:771.393159pt;}
.y162{bottom:772.689502pt;}
.y103{bottom:772.691407pt;}
.y133{bottom:772.705507pt;}
.y9{bottom:777.387067pt;}
.y1aa{bottom:783.803693pt;}
.y21e{bottom:785.867067pt;}
.y1ff{bottom:786.443642pt;}
.y233{bottom:786.507067pt;}
.y18f{bottom:787.067067pt;}
.y1ee{bottom:788.427067pt;}
.y161{bottom:791.094562pt;}
.y102{bottom:791.096467pt;}
.y132{bottom:791.110567pt;}
.y22{bottom:791.147067pt;}
.y4d{bottom:791.154093pt;}
.ya2{bottom:791.205967pt;}
.ybe{bottom:791.206593pt;}
.y16d{bottom:793.947067pt;}
.y80{bottom:798.984745pt;}
.y1a9{bottom:803.802027pt;}
.y8{bottom:804.987067pt;}
.y1d2{bottom:807.528992pt;}
.y160{bottom:809.499622pt;}
.y101{bottom:809.501527pt;}
.y131{bottom:809.515627pt;}
.y18e{bottom:811.707067pt;}
.y1ed{bottom:812.522907pt;}
.y21d{bottom:814.107067pt;}
.y232{bottom:814.827067pt;}
.y1fe{bottom:814.995491pt;}
.y16c{bottom:818.587067pt;}
.y21{bottom:818.747067pt;}
.y4c{bottom:818.750580pt;}
.ya1{bottom:818.797553pt;}
.ybd{bottom:818.798179pt;}
.y1a8{bottom:823.800360pt;}
.y75{bottom:826.027067pt;}
.y7a{bottom:826.029181pt;}
.y1d1{bottom:827.128749pt;}
.y15f{bottom:827.904682pt;}
.y100{bottom:827.906587pt;}
.y130{bottom:827.920687pt;}
.y7{bottom:832.427067pt;}
.y18d{bottom:836.347067pt;}
.y1ec{bottom:836.838107pt;}
.y73{bottom:837.627067pt;}
.y77{bottom:841.307067pt;}
.y21c{bottom:842.427067pt;}
.y231{bottom:843.067067pt;}
.y16b{bottom:843.307067pt;}
.y1fd{bottom:843.643367pt;}
.y1a7{bottom:843.798693pt;}
.y1d0{bottom:845.614487pt;}
.y15e{bottom:846.309742pt;}
.yff{bottom:846.311647pt;}
.y12f{bottom:846.325747pt;}
.y20{bottom:846.347067pt;}
.y4b{bottom:846.350580pt;}
.ya0{bottom:846.389139pt;}
.ybc{bottom:846.389764pt;}
.y79{bottom:857.547067pt;}
.y6{bottom:860.187067pt;}
.y1eb{bottom:860.832667pt;}
.y18c{bottom:861.067067pt;}
.y1a6{bottom:863.797027pt;}
.y1cf{bottom:864.100225pt;}
.y15d{bottom:864.714802pt;}
.yfe{bottom:864.716707pt;}
.y12e{bottom:864.730807pt;}
.y7f{bottom:865.627067pt;}
.y16a{bottom:867.947067pt;}
.y21b{bottom:870.667067pt;}
.y230{bottom:871.307067pt;}
.y1fc{bottom:872.195217pt;}
.y1f{bottom:873.947067pt;}
.y4a{bottom:873.961119pt;}
.y9f{bottom:873.980724pt;}
.ybb{bottom:873.981350pt;}
.y7e{bottom:874.741619pt;}
.y76{bottom:874.750955pt;}
.y7c{bottom:874.753069pt;}
.y1ce{bottom:882.585964pt;}
.y15c{bottom:883.119862pt;}
.yfd{bottom:883.121767pt;}
.y12d{bottom:883.135867pt;}
.y1a5{bottom:883.795360pt;}
.y1ea{bottom:884.747067pt;}
.y18b{bottom:885.707067pt;}
.y7d{bottom:886.019346pt;}
.y74{bottom:886.336323pt;}
.y5{bottom:887.787067pt;}
.y78{bottom:890.024460pt;}
.y169{bottom:892.587067pt;}
.y21a{bottom:898.907067pt;}
.y22f{bottom:899.547067pt;}
.y1fb{bottom:900.747067pt;}
.y1cd{bottom:901.071702pt;}
.y15b{bottom:901.524922pt;}
.yfc{bottom:901.526827pt;}
.y12c{bottom:901.540927pt;}
.y1e{bottom:901.547067pt;}
.y49{bottom:901.557606pt;}
.y9e{bottom:901.572310pt;}
.yba{bottom:901.572935pt;}
.y1a4{bottom:903.793693pt;}
.y7b{bottom:906.270955pt;}
.y1e9{bottom:908.747067pt;}
.y18a{bottom:910.347067pt;}
.y1cb{bottom:915.626667pt;}
.y168{bottom:917.227067pt;}
.y4{bottom:917.467067pt;}
.y1cc{bottom:919.627067pt;}
.y15a{bottom:919.929982pt;}
.yfb{bottom:919.931887pt;}
.y12b{bottom:919.945987pt;}
.y1a3{bottom:923.792027pt;}
.y219{bottom:927.147067pt;}
.y22e{bottom:927.867067pt;}
.y1d{bottom:929.147067pt;}
.y48{bottom:929.154093pt;}
.y9d{bottom:929.163895pt;}
.y72{bottom:929.164521pt;}
.y1fa{bottom:929.387067pt;}
.y1e8{bottom:932.749947pt;}
.y189{bottom:935.067067pt;}
.y1ca{bottom:938.101328pt;}
.y12a{bottom:938.327093pt;}
.y159{bottom:938.335042pt;}
.yfa{bottom:938.336947pt;}
.y167{bottom:942.027067pt;}
.y1a2{bottom:943.790360pt;}
.y3{bottom:947.547067pt;}
.y1c7{bottom:952.586667pt;}
.y218{bottom:955.467067pt;}
.y22d{bottom:956.131935pt;}
.y1c9{bottom:956.587067pt;}
.y129{bottom:956.732153pt;}
.y158{bottom:956.740102pt;}
.yf9{bottom:956.742007pt;}
.y1c{bottom:956.747067pt;}
.y47{bottom:956.750580pt;}
.y9c{bottom:956.755481pt;}
.y71{bottom:956.756107pt;}
.y1e7{bottom:958.027067pt;}
.y188{bottom:959.787067pt;}
.y1a1{bottom:963.788693pt;}
.y166{bottom:966.587067pt;}
.y1c6{bottom:975.071702pt;}
.y128{bottom:975.137213pt;}
.y157{bottom:975.145162pt;}
.yf8{bottom:975.147067pt;}
.y2{bottom:977.073067pt;}
.y1a0{bottom:983.307067pt;}
.y217{bottom:983.547067pt;}
.y228{bottom:983.715572pt;}
.y1b{bottom:984.347067pt;}
.yd8{bottom:984.347692pt;}
.y46{bottom:984.350580pt;}
.y70{bottom:984.355748pt;}
.y22c{bottom:984.363697pt;}
.y1f9{bottom:985.627067pt;}
.y187{bottom:986.667067pt;}
.y1c4{bottom:989.786667pt;}
.yf7{bottom:993.387067pt;}
.y127{bottom:993.542273pt;}
.y1c3{bottom:993.627067pt;}
.y1{bottom:1009.227067pt;}
.y1a{bottom:1011.787067pt;}
.y1c2{bottom:1011.867067pt;}
.y45{bottom:1011.945467pt;}
.y3c{bottom:1011.947067pt;}
.y6f{bottom:1011.947333pt;}
.y22b{bottom:1011.955282pt;}
.y186{bottom:1013.067067pt;}
.h2c{height:16.160000pt;}
.h29{height:16.240000pt;}
.h2b{height:16.400000pt;}
.hb{height:19.520000pt;}
.h1e{height:24.013125pt;}
.h15{height:25.947145pt;}
.h13{height:27.661152pt;}
.h18{height:36.632336pt;}
.h9{height:36.660588pt;}
.h5{height:37.131406pt;}
.h23{height:40.688906pt;}
.h4{height:43.375000pt;}
.h26{height:44.465044pt;}
.h2{height:44.468750pt;}
.h16{height:44.480979pt;}
.h20{height:44.512775pt;}
.h8{height:44.514701pt;}
.he{height:44.521299pt;}
.h1f{height:44.576792pt;}
.h2e{height:45.120979pt;}
.h27{height:47.188024pt;}
.h11{height:47.406250pt;}
.h14{height:47.419287pt;}
.hd{height:47.455236pt;}
.h2a{height:48.377924pt;}
.h10{height:50.102143pt;}
.h1a{height:50.116012pt;}
.hc{height:50.153990pt;}
.h1{height:50.531875pt;}
.h21{height:55.736250pt;}
.h22{height:56.056890pt;}
.h1d{height:58.436949pt;}
.h2d{height:62.478427pt;}
.h1c{height:62.494064pt;}
.h1b{height:62.774144pt;}
.h25{height:62.776018pt;}
.h7{height:62.781250pt;}
.hf{height:62.794875pt;}
.h19{height:62.798515pt;}
.ha{height:62.846124pt;}
.h24{height:66.744438pt;}
.h6{height:66.750000pt;}
.h3{height:67.911563pt;}
.h28{height:68.300245pt;}
.h12{height:71.128733pt;}
.h17{height:81.743244pt;}
.h0{height:1122.666667pt;}
.w2{width:8.480000pt;}
.w6{width:8.800000pt;}
.w3{width:9.040000pt;}
.w4{width:10.720000pt;}
.w5{width:11.120000pt;}
.wb{width:46.000000pt;}
.w8{width:48.080000pt;}
.w7{width:51.360000pt;}
.wd{width:52.240000pt;}
.wc{width:53.280000pt;}
.w9{width:54.400000pt;}
.wa{width:56.560000pt;}
.we{width:58.880000pt;}
.wf{width:61.440000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x44{left:-5.440000pt;}
.x42{left:-3.280000pt;}
.x3e{left:-2.160000pt;}
.x46{left:-1.120000pt;}
.x0{left:0.000000pt;}
.x40{left:38.000000pt;}
.x3d{left:41.280000pt;}
.x4d{left:49.120000pt;}
.x3{left:120.000000pt;}
.x39{left:122.000000pt;}
.x52{left:126.720000pt;}
.x51{left:128.240000pt;}
.x4c{left:135.200000pt;}
.x50{left:137.519680pt;}
.x8{left:144.000000pt;}
.x53{left:147.448381pt;}
.x4f{left:151.040000pt;}
.x1{left:163.280000pt;}
.x7{left:168.000000pt;}
.x3a{left:179.995167pt;}
.x3b{left:184.160000pt;}
.x4e{left:200.400000pt;}
.x18{left:211.280000pt;}
.x17{left:238.960000pt;}
.x3c{left:247.200000pt;}
.x31{left:259.280000pt;}
.x5{left:263.280000pt;}
.xb{left:273.920000pt;}
.x30{left:286.960000pt;}
.x1c{left:298.320000pt;}
.xf{left:307.280000pt;}
.x16{left:310.960000pt;}
.x3f{left:316.720000pt;}
.x12{left:322.320000pt;}
.x36{left:326.800000pt;}
.x4{left:328.960000pt;}
.xe{left:334.960000pt;}
.x2{left:339.763520pt;}
.x35{left:352.320000pt;}
.x11{left:355.680000pt;}
.x41{left:360.240000pt;}
.x2f{left:365.040000pt;}
.xd{left:366.960000pt;}
.x1d{left:369.360000pt;}
.x24{left:370.960000pt;}
.x20{left:373.120000pt;}
.x1e{left:376.320000pt;}
.x21{left:380.962128pt;}
.x10{left:386.880000pt;}
.x26{left:388.560000pt;}
.x6{left:396.880000pt;}
.xc{left:398.320000pt;}
.x1b{left:403.200000pt;}
.x2b{left:404.401596pt;}
.x27{left:405.840000pt;}
.xa{left:406.960000pt;}
.x9{left:414.320000pt;}
.x25{left:415.846847pt;}
.x43{left:418.880000pt;}
.x1a{left:424.640000pt;}
.x29{left:425.920264pt;}
.x1f{left:426.880000pt;}
.x15{left:435.920000pt;}
.x2a{left:437.680000pt;}
.x22{left:439.600000pt;}
.x23{left:445.681672pt;}
.x28{left:452.400000pt;}
.x34{left:469.280000pt;}
.x19{left:481.600000pt;}
.x33{left:490.800000pt;}
.x14{left:493.120000pt;}
.x2e{left:502.080000pt;}
.x13{left:509.136243pt;}
.x45{left:538.480000pt;}
.x47{left:547.200000pt;}
.x32{left:553.760000pt;}
.x2d{left:565.280000pt;}
.x2c{left:581.283524pt;}
.x48{left:590.640000pt;}
.x49{left:594.960000pt;}
.x38{left:640.158240pt;}
.x37{left:643.925760pt;}
.x4a{left:650.400000pt;}
.x4b{left:656.960000pt;}
}




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