
    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_37e701a6d686bd6fa8cbe48f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107000;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_2475495c8e4d17ec2d615f2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_c71479c67b7b14000656a626.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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;}
.m5{transform:matrix(-0.040728,0.246660,-0.246660,-0.040728,0,0);-ms-transform:matrix(-0.040728,0.246660,-0.246660,-0.040728,0,0);-webkit-transform:matrix(-0.040728,0.246660,-0.246660,-0.040728,0,0);}
.m17{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.042033,-0.246441,0.246441,0.042033,0,0);-ms-transform:matrix(0.042033,-0.246441,0.246441,0.042033,0,0);-webkit-transform:matrix(0.042033,-0.246441,0.246441,0.042033,0,0);}
.m10{transform:matrix(0.045178,-0.245884,0.245884,0.045178,0,0);-ms-transform:matrix(0.045178,-0.245884,0.245884,0.045178,0,0);-webkit-transform:matrix(0.045178,-0.245884,0.245884,0.045178,0,0);}
.mf{transform:matrix(0.046273,-0.245680,0.245680,0.046273,0,0);-ms-transform:matrix(0.046273,-0.245680,0.245680,0.046273,0,0);-webkit-transform:matrix(0.046273,-0.245680,0.245680,0.046273,0,0);}
.m8{transform:matrix(0.046725,-0.245595,0.245595,0.046725,0,0);-ms-transform:matrix(0.046725,-0.245595,0.245595,0.046725,0,0);-webkit-transform:matrix(0.046725,-0.245595,0.245595,0.046725,0,0);}
.m1c{transform:matrix(0.049020,0.245147,-0.245147,0.049020,0,0);-ms-transform:matrix(0.049020,0.245147,-0.245147,0.049020,0,0);-webkit-transform:matrix(0.049020,0.245147,-0.245147,0.049020,0,0);}
.m1a{transform:matrix(0.084372,-0.235333,0.235333,0.084372,0,0);-ms-transform:matrix(0.084372,-0.235333,0.235333,0.084372,0,0);-webkit-transform:matrix(0.084372,-0.235333,0.235333,0.084372,0,0);}
.m18{transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.130112,-0.213473,0.213473,0.130112,0,0);-ms-transform:matrix(0.130112,-0.213473,0.213473,0.130112,0,0);-webkit-transform:matrix(0.130112,-0.213473,0.213473,0.130112,0,0);}
.ma{transform:matrix(0.130845,-0.213025,0.213025,0.130845,0,0);-ms-transform:matrix(0.130845,-0.213025,0.213025,0.130845,0,0);-webkit-transform:matrix(0.130845,-0.213025,0.213025,0.130845,0,0);}
.m2{transform:matrix(0.153195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153195,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.197783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197783,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.205300,-0.142659,0.142659,0.205300,0,0);-ms-transform:matrix(0.205300,-0.142659,0.142659,0.205300,0,0);-webkit-transform:matrix(0.205300,-0.142659,0.142659,0.205300,0,0);}
.m13{transform:matrix(0.205538,-0.142317,0.142317,0.205538,0,0);-ms-transform:matrix(0.205538,-0.142317,0.142317,0.205538,0,0);-webkit-transform:matrix(0.205538,-0.142317,0.142317,0.205538,0,0);}
.m1b{transform:matrix(0.230249,-0.097392,0.097392,0.230249,0,0);-ms-transform:matrix(0.230249,-0.097392,0.097392,0.230249,0,0);-webkit-transform:matrix(0.230249,-0.097392,0.097392,0.230249,0,0);}
.me{transform:matrix(0.238110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238110,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.244447,-0.052397,0.052397,0.244447,0,0);-ms-transform:matrix(0.244447,-0.052397,0.052397,0.244447,0,0);-webkit-transform:matrix(0.244447,-0.052397,0.052397,0.244447,0,0);}
.m15{transform:matrix(0.244461,0.052335,-0.052335,0.244461,0,0);-ms-transform:matrix(0.244461,0.052335,-0.052335,0.244461,0,0);-webkit-transform:matrix(0.244461,0.052335,-0.052335,0.244461,0,0);}
.mc{transform:matrix(0.244595,-0.051702,0.051702,0.244595,0,0);-ms-transform:matrix(0.244595,-0.051702,0.051702,0.244595,0,0);-webkit-transform:matrix(0.244595,-0.051702,0.051702,0.244595,0,0);}
.m7{transform:matrix(0.245733,0.045994,-0.045994,0.245733,0,0);-ms-transform:matrix(0.245733,0.045994,-0.045994,0.245733,0,0);-webkit-transform:matrix(0.245733,0.045994,-0.045994,0.245733,0,0);}
.m6{transform:matrix(0.245828,0.045481,-0.045481,0.245828,0,0);-ms-transform:matrix(0.245828,0.045481,-0.045481,0.245828,0,0);-webkit-transform:matrix(0.245828,0.045481,-0.045481,0.245828,0,0);}
.m11{transform:matrix(0.245884,0.045178,-0.045178,0.245884,0,0);-ms-transform:matrix(0.245884,0.045178,-0.045178,0.245884,0,0);-webkit-transform:matrix(0.245884,0.045178,-0.045178,0.245884,0,0);}
.m19{transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246012,0.044478,-0.044478,0.246012,0,0);-ms-transform:matrix(0.246012,0.044478,-0.044478,0.246012,0,0);-webkit-transform:matrix(0.246012,0.044478,-0.044478,0.246012,0,0);}
.md{transform:matrix(0.246197,0.043438,-0.043438,0.246197,0,0);-ms-transform:matrix(0.246197,0.043438,-0.043438,0.246197,0,0);-webkit-transform:matrix(0.246197,0.043438,-0.043438,0.246197,0,0);}
.m16{transform:matrix(0.249998,-0.001058,0.001058,0.249998,0,0);-ms-transform:matrix(0.249998,-0.001058,0.001058,0.249998,0,0);-webkit-transform:matrix(0.249998,-0.001058,0.001058,0.249998,0,0);}
.m4{transform:matrix(0.249998,-0.000982,0.000982,0.249998,0,0);-ms-transform:matrix(0.249998,-0.000982,0.000982,0.249998,0,0);-webkit-transform:matrix(0.249998,-0.000982,0.000982,0.249998,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);}
.v2{vertical-align:-7.976400px;}
.v7{vertical-align:-3.568501px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.892616px;}
.v1{vertical-align:12.156000px;}
.v8{vertical-align:19.489080px;}
.v4{vertical-align:23.198580px;}
.v6{vertical-align:67.711800px;}
.v5{vertical-align:89.961600px;}
.lsd{letter-spacing:-0.017992px;}
.lsc{letter-spacing:-0.007197px;}
.lsb{letter-spacing:-0.003598px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002999px;}
.ls6{letter-spacing:0.003598px;}
.ls1{letter-spacing:0.007197px;}
.ls7{letter-spacing:8.350320px;}
.ls8{letter-spacing:11.151120px;}
.ls3{letter-spacing:12.642214px;}
.lsa{letter-spacing:20.007326px;}
.ls4{letter-spacing:20.142214px;}
.ls9{letter-spacing:65.959405px;}
.ls2{letter-spacing:97.949537px;}
.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;}
}
.ws89{word-spacing:-50.392282px;}
.ws54{word-spacing:-38.417635px;}
.ws1{word-spacing:-17.506494px;}
.ws19{word-spacing:-11.670996px;}
.ws7a{word-spacing:-10.892707px;}
.ws0{word-spacing:-10.679537px;}
.ws55{word-spacing:-10.003730px;}
.ws1a{word-spacing:-10.003663px;}
.ws17{word-spacing:-8.336497px;}
.ws53{word-spacing:-7.280987px;}
.ws2c{word-spacing:-1.979142px;}
.ws76{word-spacing:-1.925165px;}
.wsf{word-spacing:-1.842401px;}
.ws10{word-spacing:-1.835204px;}
.ws2d{word-spacing:-1.679294px;}
.ws34{word-spacing:-1.662479px;}
.ws35{word-spacing:-1.655282px;}
.ws3a{word-spacing:-1.558125px;}
.ws44{word-spacing:-1.475360px;}
.ws8e{word-spacing:-1.442394px;}
.ws2f{word-spacing:-1.126312px;}
.ws99{word-spacing:-1.039949px;}
.ws9b{word-spacing:-0.967980px;}
.ws9a{word-spacing:-0.964382px;}
.ws9c{word-spacing:-0.953587px;}
.ws82{word-spacing:-0.899622px;}
.ws57{word-spacing:-0.842035px;}
.ws49{word-spacing:-0.755676px;}
.ws32{word-spacing:-0.669310px;}
.ws33{word-spacing:-0.662113px;}
.ws26{word-spacing:-0.659723px;}
.ws5{word-spacing:-0.611735px;}
.ws4d{word-spacing:-0.606942px;}
.ws4{word-spacing:-0.539773px;}
.ws48{word-spacing:-0.536168px;}
.ws2{word-spacing:-0.509786px;}
.ws79{word-spacing:-0.496585px;}
.ws3d{word-spacing:-0.478593px;}
.ws9{word-spacing:-0.431813px;}
.ws5c{word-spacing:-0.345450px;}
.ws65{word-spacing:-0.208710px;}
.ws47{word-spacing:-0.179922px;}
.ws78{word-spacing:-0.086363px;}
.ws38{word-spacing:-0.003598px;}
.ws1c{word-spacing:-0.002999px;}
.ws3{word-spacing:0.000000px;}
.ws80{word-spacing:0.005997px;}
.ws9d{word-spacing:0.007197px;}
.ws7f{word-spacing:0.008996px;}
.ws7e{word-spacing:0.014994px;}
.ws7c{word-spacing:0.020991px;}
.ws6{word-spacing:0.035984px;}
.ws3f{word-spacing:0.068370px;}
.ws59{word-spacing:0.158331px;}
.ws8{word-spacing:0.161930px;}
.ws7{word-spacing:0.169127px;}
.ws96{word-spacing:0.209912px;}
.ws98{word-spacing:0.239899px;}
.ws97{word-spacing:0.245897px;}
.wsd{word-spacing:0.251891px;}
.wsc{word-spacing:0.259088px;}
.ws14{word-spacing:0.298671px;}
.ws13{word-spacing:0.313064px;}
.wsa{word-spacing:0.367041px;}
.wsb{word-spacing:0.374238px;}
.ws15{word-spacing:0.428214px;}
.ws70{word-spacing:0.439010px;}
.ws6f{word-spacing:0.446207px;}
.wse{word-spacing:0.536168px;}
.ws74{word-spacing:0.550561px;}
.ws2e{word-spacing:0.572152px;}
.ws11{word-spacing:0.597341px;}
.ws12{word-spacing:0.611735px;}
.ws21{word-spacing:0.809660px;}
.ws29{word-spacing:0.815657px;}
.ws3c{word-spacing:0.914004px;}
.ws85{word-spacing:0.944603px;}
.ws1e{word-spacing:1.139521px;}
.ws66{word-spacing:1.414187px;}
.ws2b{word-spacing:1.475380px;}
.ws8b{word-spacing:1.544351px;}
.ws75{word-spacing:1.565321px;}
.ws73{word-spacing:1.709259px;}
.ws40{word-spacing:2.058308px;}
.ws64{word-spacing:2.094292px;}
.ws56{word-spacing:2.123080px;}
.ws24{word-spacing:2.249055px;}
.ws63{word-spacing:2.410955px;}
.ws41{word-spacing:2.432545px;}
.ws5a{word-spacing:2.446939px;}
.ws68{word-spacing:2.554892px;}
.ws8f{word-spacing:2.644889px;}
.ws72{word-spacing:2.745610px;}
.ws31{word-spacing:2.813980px;}
.ws30{word-spacing:2.828374px;}
.ws5e{word-spacing:3.062272px;}
.ws36{word-spacing:3.217005px;}
.ws58{word-spacing:3.274580px;}
.ws6c{word-spacing:3.429313px;}
.ws92{word-spacing:3.601487px;}
.ws62{word-spacing:3.699196px;}
.ws69{word-spacing:4.048245px;}
.ws8a{word-spacing:4.462125px;}
.ws5b{word-spacing:4.663578px;}
.ws8c{word-spacing:4.857959px;}
.ws3b{word-spacing:4.915469px;}
.ws87{word-spacing:5.166829px;}
.ws46{word-spacing:5.257321px;}
.ws93{word-spacing:5.337757px;}
.ws94{word-spacing:6.723175px;}
.ws6d{word-spacing:6.739878px;}
.ws43{word-spacing:6.909005px;}
.ws2a{word-spacing:7.256951px;}
.ws77{word-spacing:7.387597px;}
.ws1f{word-spacing:8.096598px;}
.ws67{word-spacing:8.420350px;}
.ws83{word-spacing:8.465443px;}
.ws71{word-spacing:8.553492px;}
.ws27{word-spacing:8.816296px;}
.ws28{word-spacing:8.942243px;}
.ws3e{word-spacing:9.107652px;}
.ws84{word-spacing:9.281100px;}
.ws45{word-spacing:9.348747px;}
.ws42{word-spacing:9.445905px;}
.ws91{word-spacing:9.715918px;}
.ws88{word-spacing:10.003663px;}
.ws4e{word-spacing:11.275206px;}
.ws61{word-spacing:12.508177px;}
.ws25{word-spacing:14.133062px;}
.ws5f{word-spacing:14.890345px;}
.ws90{word-spacing:15.323561px;}
.ws5d{word-spacing:16.743541px;}
.ws39{word-spacing:16.840699px;}
.ws23{word-spacing:16.843923px;}
.ws95{word-spacing:17.044838px;}
.ws8d{word-spacing:17.257749px;}
.ws60{word-spacing:18.503178px;}
.ws6e{word-spacing:18.747872px;}
.ws7b{word-spacing:21.305865px;}
.ws6b{word-spacing:23.425844px;}
.ws86{word-spacing:24.409744px;}
.ws4f{word-spacing:25.916181px;}
.ws22{word-spacing:28.008232px;}
.ws20{word-spacing:29.117765px;}
.ws81{word-spacing:31.276858px;}
.ws6a{word-spacing:36.092353px;}
.ws37{word-spacing:67.902563px;}
.ws16{word-spacing:97.949537px;}
.ws1d{word-spacing:99.618143px;}
.ws52{word-spacing:263.963711px;}
.ws51{word-spacing:264.009070px;}
.ws50{word-spacing:287.819065px;}
.ws4c{word-spacing:301.803679px;}
.ws18{word-spacing:620.032158px;}
.ws7d{word-spacing:834.622174px;}
.ws4b{word-spacing:1808.759719px;}
.ws1b{word-spacing:2655.129108px;}
.ws4a{word-spacing:4227.503902px;}
._1d{margin-left:-1741.752913px;}
._1c{margin-left:-1605.512376px;}
._1a{margin-left:-1066.099023px;}
._10{margin-left:-527.538341px;}
._18{margin-left:-475.785737px;}
._12{margin-left:-469.992520px;}
._13{margin-left:-465.944221px;}
._11{margin-left:-425.311294px;}
._1b{margin-left:-141.025882px;}
._6{margin-left:-97.949537px;}
._7{margin-left:-89.032591px;}
._2{margin-left:-4.677972px;}
._0{margin-left:-3.328601px;}
._3{margin-left:-1.649307px;}
._9{width:1.979142px;}
._4{width:97.780410px;}
._5{width:99.791938px;}
._c{width:133.861968px;}
._f{width:139.261486px;}
._e{width:168.469213px;}
._15{width:268.177318px;}
._14{width:297.684920px;}
._8{width:318.246034px;}
._17{width:388.279854px;}
._1{width:437.842231px;}
._b{width:731.699026px;}
._19{width:895.039981px;}
._16{width:1659.236421px;}
._d{width:2059.125500px;}
._a{width:2684.783857px;}
.fc1a{color:rgb(140,144,149);}
.fc19{color:rgb(158,162,168);}
.fc16{color:rgb(94,124,183);}
.fc15{color:rgb(238,200,207);}
.fc13{color:rgb(211,108,141);}
.fc12{color:rgb(196,127,152);}
.fc18{color:rgb(150,154,160);}
.fcf{color:rgb(147,149,152);}
.fc10{color:rgb(205,110,144);}
.fce{color:rgb(237,28,36);}
.fcd{color:rgb(58,83,164);}
.fc11{color:rgb(198,98,133);}
.fc0{color:rgb(64,64,65);}
.fc1{color:rgb(187,189,192);}
.fc14{color:rgb(166,104,126);}
.fc8{color:rgb(128,130,133);}
.fca{color:rgb(205,28,105);}
.fcc{color:rgb(160,162,165);}
.fc2{color:rgb(35,31,32);}
.fc3{color:rgb(88,89,91);}
.fc17{color:rgb(171,172,177);}
.fc4{color:rgb(109,110,112);}
.fc5{color:rgb(137,173,76);}
.fc6{color:transparent;}
.fc7{color:rgb(203,28,105);}
.fc9{color:rgb(206,28,99);}
.fcb{color:rgb(209,211,212);}
.fs10{font-size:14.264160px;}
.fs11{font-size:14.264232px;}
.fs26{font-size:20.991000px;}
.fs27{font-size:20.991188px;}
.fs20{font-size:23.989665px;}
.fs21{font-size:23.989734px;}
.fs23{font-size:23.989740px;}
.fs2{font-size:23.989800px;}
.fs22{font-size:23.989824px;}
.fsf{font-size:23.989985px;}
.fs5{font-size:24.426000px;}
.fs1a{font-size:26.190600px;}
.fs1b{font-size:28.285800px;}
.fs29{font-size:29.986928px;}
.fs2a{font-size:29.987048px;}
.fs17{font-size:29.987081px;}
.fs14{font-size:29.987083px;}
.fs13{font-size:29.987205px;}
.fs15{font-size:29.987359px;}
.fs0{font-size:29.987400px;}
.fs12{font-size:29.987469px;}
.fs16{font-size:29.987507px;}
.fs18{font-size:29.987528px;}
.fse{font-size:29.987618px;}
.fsb{font-size:31.732200px;}
.fs19{font-size:32.664600px;}
.fs2b{font-size:32.986342px;}
.fs1{font-size:35.984400px;}
.fs1e{font-size:35.984639px;}
.fsc{font-size:37.250400px;}
.fs4{font-size:38.415600px;}
.fsd{font-size:38.798400px;}
.fs25{font-size:39.182400px;}
.fs7{font-size:41.982000px;}
.fs1f{font-size:46.288800px;}
.fsa{font-size:53.977200px;}
.fs28{font-size:60.519600px;}
.fs8{font-size:62.973000px;}
.fs24{font-size:67.170000px;}
.fs9{font-size:71.969400px;}
.fs3{font-size:94.067400px;}
.fs6{font-size:107.953800px;}
.fs1c{font-size:121.539619px;}
.fs1d{font-size:138.192932px;}
.fs2c{font-size:181.267200px;}
.y2bc{bottom:-11.384550px;}
.y29b{bottom:-6.901350px;}
.y297{bottom:-6.446700px;}
.y2ae{bottom:-3.541950px;}
.y28e{bottom:-0.778650px;}
.y290{bottom:-0.703650px;}
.y0{bottom:0.000000px;}
.y299{bottom:0.069450px;}
.y2ba{bottom:0.198600px;}
.y28c{bottom:1.471350px;}
.yb3{bottom:6.567377px;}
.yf7{bottom:6.932550px;}
.y12f{bottom:7.314900px;}
.ye6{bottom:7.502400px;}
.y15b{bottom:7.569750px;}
.yfb{bottom:7.614750px;}
.y11d{bottom:7.629750px;}
.y18f{bottom:7.704750px;}
.y184{bottom:7.712250px;}
.y195{bottom:7.719750px;}
.y1f2{bottom:7.989600px;}
.y94{bottom:8.896800px;}
.y178{bottom:9.054300px;}
.yf8{bottom:27.316500px;}
.yfa{bottom:27.398850px;}
.y177{bottom:27.563850px;}
.y2cc{bottom:27.586350px;}
.y135{bottom:27.593850px;}
.y2c6{bottom:27.646350px;}
.y149{bottom:27.683700px;}
.y39{bottom:27.698700px;}
.y190{bottom:27.721350px;}
.y2aa{bottom:27.736350px;}
.yf2{bottom:27.758700px;}
.y15a{bottom:27.766200px;}
.y11e{bottom:27.773700px;}
.y11a{bottom:27.781200px;}
.y166{bottom:27.788700px;}
.y274{bottom:27.871200px;}
.y193{bottom:27.901350px;}
.y183{bottom:27.908700px;}
.y185{bottom:27.946200px;}
.y11c{bottom:28.021200px;}
.ybf{bottom:28.058550px;}
.y96{bottom:28.141050px;}
.y202{bottom:28.148550px;}
.y2c9{bottom:28.201050px;}
.y181{bottom:29.198100px;}
.y104{bottom:39.221440px;}
.y11b{bottom:49.019550px;}
.yb7{bottom:49.306985px;}
.y283{bottom:49.859400px;}
.y180{bottom:50.436600px;}
.y197{bottom:50.451450px;}
.y186{bottom:51.996000px;}
.y182{bottom:52.011000px;}
.y194{bottom:52.018350px;}
.y286{bottom:52.033350px;}
.y1ce{bottom:52.295850px;}
.y176{bottom:52.400550px;}
.y95{bottom:52.813050px;}
.y15d{bottom:53.142900px;}
.y101{bottom:53.187900px;}
.yf9{bottom:53.210400px;}
.yf6{bottom:53.427750px;}
.y130{bottom:53.937600px;}
.y34{bottom:55.032150px;}
.yb4{bottom:57.543600px;}
.y15c{bottom:59.890050px;}
.y14a{bottom:59.927550px;}
.y167{bottom:59.950050px;}
.y148{bottom:60.676447px;}
.y179{bottom:61.374450px;}
.y191{bottom:68.825456px;}
.y192{bottom:69.238377px;}
.y2c7{bottom:71.569267px;}
.y2cb{bottom:71.914717px;}
.y2bf{bottom:72.566934px;}
.y196{bottom:72.574434px;}
.y284{bottom:75.356359px;}
.y198{bottom:75.948409px;}
.y287{bottom:77.522550px;}
.y103{bottom:82.380450px;}
.y33{bottom:87.530850px;}
.y275{bottom:87.853200px;}
.y27e{bottom:87.855545px;}
.y1ec{bottom:88.814262px;}
.y11f{bottom:89.817300px;}
.yfe{bottom:91.677506px;}
.y9d{bottom:104.472619px;}
.y136{bottom:107.419800px;}
.y9f{bottom:114.218659px;}
.y2ca{bottom:114.218877px;}
.y295{bottom:114.549300px;}
.y2c8{bottom:120.222874px;}
.y7c{bottom:123.875250px;}
.y7e{bottom:123.882610px;}
.y102{bottom:124.737300px;}
.y81{bottom:126.176700px;}
.ya4{bottom:128.462674px;}
.ya{bottom:129.108170px;}
.y120{bottom:129.655350px;}
.ye4{bottom:136.560389px;}
.ya3{bottom:137.458894px;}
.y2be{bottom:139.416150px;}
.y7b{bottom:141.552750px;}
.ya2{bottom:146.456614px;}
.ye3{bottom:147.353910px;}
.y265{bottom:147.535950px;}
.y67{bottom:147.811026px;}
.y298{bottom:150.853500px;}
.yfd{bottom:151.019380px;}
.y267{bottom:153.828030px;}
.yf1{bottom:154.394700px;}
.y66{bottom:156.807246px;}
.yed{bottom:157.865670px;}
.y6c{bottom:158.026031px;}
.y7d{bottom:158.042700px;}
.y7a{bottom:158.043181px;}
.ye2{bottom:158.149230px;}
.ya1{bottom:159.171271px;}
.y266{bottom:162.824250px;}
.y65{bottom:165.803466px;}
.y9{bottom:165.846150px;}
.ye1{bottom:168.944550px;}
.yb8{bottom:169.493981px;}
.y276{bottom:173.312552px;}
.y64{bottom:174.799686px;}
.yec{bottom:179.456310px;}
.y79{bottom:181.732650px;}
.y80{bottom:181.734730px;}
.y78{bottom:183.517037px;}
.y264{bottom:183.520530px;}
.y63{bottom:183.795906px;}
.ya0{bottom:184.480637px;}
.y27d{bottom:185.283308px;}
.y2a0{bottom:188.144370px;}
.yeb{bottom:190.251630px;}
.y263{bottom:192.516750px;}
.y62{bottom:192.792126px;}
.y161{bottom:194.255300px;}
.y29f{bottom:197.140590px;}
.yb2{bottom:199.122600px;}
.y7f{bottom:199.403071px;}
.y76{bottom:199.404150px;}
.y61{bottom:201.788346px;}
.y29e{bottom:206.136810px;}
.y2b6{bottom:207.584550px;}
.yb1{bottom:209.917920px;}
.y60{bottom:210.784566px;}
.yea{bottom:211.842270px;}
.yfc{bottom:211.869000px;}
.y29d{bottom:215.133030px;}
.y74{bottom:215.889429px;}
.y77{bottom:215.897100px;}
.y5f{bottom:219.780786px;}
.ye9{bottom:222.637590px;}
.y29c{bottom:224.129250px;}
.y5e{bottom:228.777006px;}
.y1f1{bottom:229.495288px;}
.yb0{bottom:231.508560px;}
.y273{bottom:233.814810px;}
.y162{bottom:234.231300px;}
.y9e{bottom:235.856550px;}
.y8f{bottom:239.285325px;}
.y93{bottom:241.083855px;}
.y72{bottom:241.870382px;}
.yaf{bottom:242.303880px;}
.y272{bottom:242.811030px;}
.ye8{bottom:244.228230px;}
.y1cc{bottom:248.325150px;}
.y8e{bottom:249.906771px;}
.y29a{bottom:250.996500px;}
.y26b{bottom:251.062175px;}
.y271{bottom:251.807250px;}
.y92{bottom:251.879175px;}
.yae{bottom:253.099200px;}
.ye7{bottom:255.023550px;}
.y9c{bottom:255.158550px;}
.y2b{bottom:258.815640px;}
.y26a{bottom:260.058395px;}
.y270{bottom:260.803470px;}
.y163{bottom:260.969250px;}
.y32{bottom:261.145500px;}
.y6a{bottom:262.489615px;}
.y8d{bottom:262.501371px;}
.y71{bottom:268.103228px;}
.y1d0{bottom:268.328322px;}
.y269{bottom:269.054615px;}
.y2a{bottom:269.610960px;}
.y26f{bottom:269.799690px;}
.ycc{bottom:271.733732px;}
.yad{bottom:273.475830px;}
.y1cb{bottom:276.012088px;}
.y132{bottom:277.061250px;}
.yb6{bottom:277.204287px;}
.y268{bottom:278.050835px;}
.y1ea{bottom:278.451150px;}
.y26e{bottom:278.795910px;}
.y29{bottom:280.406280px;}
.y285{bottom:281.171700px;}
.y1ca{bottom:282.009538px;}
.yf0{bottom:283.654670px;}
.y2d{bottom:287.660910px;}
.y5d{bottom:287.717240px;}
.y26d{bottom:287.792130px;}
.y1c9{bottom:288.006988px;}
.y28{bottom:291.201600px;}
.y210{bottom:291.600450px;}
.y6d{bottom:292.141008px;}
.y1ee{bottom:292.324050px;}
.y1c8{bottom:294.004438px;}
.y2c{bottom:294.857850px;}
.yac{bottom:295.066470px;}
.y164{bottom:295.153950px;}
.y27f{bottom:295.989314px;}
.y26c{bottom:296.788350px;}
.y1c7{bottom:300.001888px;}
.y75{bottom:301.155175px;}
.y27{bottom:301.996920px;}
.y5c{bottom:305.709680px;}
.yab{bottom:305.861790px;}
.y1c6{bottom:305.999338px;}
.y91{bottom:306.305580px;}
.y73{bottom:306.714811px;}
.y1cf{bottom:307.329600px;}
.ye0{bottom:309.585030px;}
.y1c5{bottom:311.996788px;}
.y2b2{bottom:312.055440px;}
.y26{bottom:312.792240px;}
.y5b{bottom:314.705900px;}
.y68{bottom:314.973300px;}
.y1d1{bottom:316.576136px;}
.yaa{bottom:316.657110px;}
.y10a{bottom:316.975050px;}
.y90{bottom:317.100900px;}
.ydf{bottom:320.380350px;}
.y2b1{bottom:321.051660px;}
.y1f9{bottom:321.879060px;}
.y25{bottom:323.587560px;}
.y5a{bottom:323.702120px;}
.y262{bottom:324.460500px;}
.ya9{bottom:327.452430px;}
.y2ac{bottom:328.148250px;}
.y2b0{bottom:330.047880px;}
.ycb{bottom:330.559230px;}
.y1f8{bottom:330.875280px;}
.yde{bottom:331.175670px;}
.y165{bottom:332.323200px;}
.y59{bottom:332.698340px;}
.y30{bottom:332.797350px;}
.y24{bottom:334.382880px;}
.y2b5{bottom:338.114491px;}
.y83{bottom:338.401650px;}
.y2af{bottom:339.044100px;}
.y1f7{bottom:339.871500px;}
.y2f{bottom:340.125150px;}
.yca{bottom:341.354550px;}
.y58{bottom:341.694560px;}
.ydd{bottom:341.970990px;}
.y23{bottom:345.178200px;}
.y280{bottom:345.350915px;}
.y278{bottom:345.353968px;}
.y70{bottom:345.578287px;}
.y2b4{bottom:347.110711px;}
.y2ad{bottom:347.758500px;}
.ya8{bottom:349.043070px;}
.y31{bottom:349.413136px;}
.y21e{bottom:349.949370px;}
.y57{bottom:350.690780px;}
.ydc{bottom:352.766310px;}
.y22{bottom:355.973520px;}
.y2b3{bottom:356.106931px;}
.y12e{bottom:356.808450px;}
.y133{bottom:357.774150px;}
.y1f6{bottom:357.863940px;}
.y19a{bottom:357.999750px;}
.y21d{bottom:358.945590px;}
.y56{bottom:359.687000px;}
.ya7{bottom:359.838390px;}
.y2b8{bottom:362.355537px;}
.y2ab{bottom:362.356950px;}
.y1c4{bottom:362.477325px;}
.ydb{bottom:363.561630px;}
.y131{bottom:365.684700px;}
.y21{bottom:366.768840px;}
.y21c{bottom:367.941810px;}
.y1c3{bottom:368.474775px;}
.y55{bottom:368.683220px;}
.y293{bottom:368.712777px;}
.yb5{bottom:369.441300px;}
.y6f{bottom:369.562090px;}
.ya6{bottom:370.632810px;}
.y160{bottom:373.466608px;}
.yda{bottom:374.356950px;}
.y1c2{bottom:374.472225px;}
.y231{bottom:375.689250px;}
.y1f5{bottom:375.856380px;}
.y21b{bottom:376.938030px;}
.y2e{bottom:376.953900px;}
.y20{bottom:377.564160px;}
.y54{bottom:377.679440px;}
.yc9{bottom:379.407180px;}
.y1c1{bottom:380.469675px;}
.y1f4{bottom:384.852600px;}
.y21a{bottom:385.934250px;}
.y1c0{bottom:386.467125px;}
.y53{bottom:386.675660px;}
.y10b{bottom:387.432150px;}
.y86{bottom:388.630200px;}
.y28b{bottom:390.343500px;}
.yc8{bottom:390.582300px;}
.y289{bottom:391.812434px;}
.y291{bottom:391.814850px;}
.ya5{bottom:392.223450px;}
.y1bf{bottom:392.464575px;}
.y28f{bottom:392.518500px;}
.y28d{bottom:392.593500px;}
.y9a{bottom:393.797490px;}
.y1cd{bottom:396.260491px;}
.y52{bottom:397.291200px;}
.y219{bottom:397.928790px;}
.y1f{bottom:399.154800px;}
.y2bd{bottom:399.314550px;}
.y99{bottom:402.793710px;}
.y1f3{bottom:402.844950px;}
.yc0{bottom:404.468700px;}
.y218{bottom:406.925010px;}
.y82{bottom:408.936750px;}
.y1d2{bottom:409.288135px;}
.y98{bottom:411.789930px;}
.y6e{bottom:413.103577px;}
.y217{bottom:415.921230px;}
.y147{bottom:416.917050px;}
.y85{bottom:417.426900px;}
.y1e{bottom:420.745440px;}
.y97{bottom:420.786150px;}
.y142{bottom:423.457350px;}
.y143{bottom:423.707700px;}
.y1eb{bottom:423.900095px;}
.y216{bottom:424.917450px;}
.y27b{bottom:428.196000px;}
.y1f0{bottom:429.154731px;}
.y2a9{bottom:429.812827px;}
.y239{bottom:430.817471px;}
.y1d{bottom:431.540760px;}
.yc7{bottom:433.199400px;}
.y134{bottom:433.891238px;}
.y215{bottom:433.913670px;}
.y232{bottom:434.726944px;}
.y2a8{bottom:438.809047px;}
.y20f{bottom:439.749450px;}
.y238{bottom:439.813691px;}
.y145{bottom:441.024959px;}
.y1c{bottom:442.336080px;}
.yb9{bottom:442.597585px;}
.y204{bottom:444.095550px;}
.y2a7{bottom:447.805267px;}
.y254{bottom:447.920039px;}
.y237{bottom:448.809911px;}
.y214{bottom:450.406740px;}
.y144{bottom:450.542550px;}
.y20e{bottom:454.879350px;}
.y2a6{bottom:456.801487px;}
.y253{bottom:456.916259px;}
.y213{bottom:459.402960px;}
.y1b{bottom:463.926720px;}
.y2a5{bottom:465.797707px;}
.y126{bottom:467.761080px;}
.y212{bottom:468.399180px;}
.y20d{bottom:470.009250px;}
.y84{bottom:471.095100px;}
.y2a4{bottom:474.793927px;}
.yc6{bottom:476.085600px;}
.y125{bottom:476.757300px;}
.y211{bottom:477.395400px;}
.y2a3{bottom:483.790147px;}
.y236{bottom:484.142565px;}
.y20c{bottom:485.139150px;}
.y1a{bottom:485.517360px;}
.y2a2{bottom:492.786367px;}
.y235{bottom:493.138785px;}
.y19{bottom:496.312680px;}
.y1d4{bottom:498.499885px;}
.y1be{bottom:499.417101px;}
.y282{bottom:499.652022px;}
.y128{bottom:499.759050px;}
.y234{bottom:499.853550px;}
.y20b{bottom:500.269050px;}
.y1e6{bottom:501.245733px;}
.y2a1{bottom:501.782587px;}
.ybe{bottom:503.069369px;}
.y1bd{bottom:505.414551px;}
.y18{bottom:507.108000px;}
.y1bc{bottom:511.412001px;}
.y20a{bottom:515.398950px;}
.y1e5{bottom:515.740019px;}
.y1d3{bottom:515.743991px;}
.y257{bottom:516.196410px;}
.y1bb{bottom:517.409451px;}
.y17{bottom:517.904220px;}
.y203{bottom:519.064050px;}
.y1ba{bottom:523.406901px;}
.y256{bottom:525.192630px;}
.y288{bottom:525.251586px;}
.y28a{bottom:527.869451px;}
.y16{bottom:528.699540px;}
.y1b9{bottom:529.404351px;}
.y209{bottom:530.528850px;}
.y1e4{bottom:531.929327px;}
.y233{bottom:534.187350px;}
.y255{bottom:534.188850px;}
.y296{bottom:534.319500px;}
.y260{bottom:535.120680px;}
.y1b8{bottom:535.401801px;}
.y10f{bottom:537.017430px;}
.y15{bottom:539.494860px;}
.y1d5{bottom:540.104047px;}
.y25f{bottom:544.116900px;}
.y10e{bottom:544.214370px;}
.y87{bottom:545.313450px;}
.y208{bottom:545.658750px;}
.y146{bottom:546.690664px;}
.y15f{bottom:548.143882px;}
.yc5{bottom:548.851980px;}
.y1d6{bottom:549.224636px;}
.y14{bottom:550.290180px;}
.y10d{bottom:551.411310px;}
.y10c{bottom:558.608250px;}
.yc4{bottom:559.647300px;}
.y207{bottom:560.788650px;}
.y13{bottom:561.085500px;}
.y252{bottom:562.584360px;}
.y69{bottom:564.617156px;}
.y129{bottom:568.069950px;}
.y105{bottom:569.668200px;}
.y251{bottom:571.580580px;}
.y12{bottom:571.880820px;}
.y127{bottom:572.454000px;}
.ybd{bottom:575.541951px;}
.y206{bottom:575.918550px;}
.y12a{bottom:576.785700px;}
.y9b{bottom:578.534700px;}
.y250{bottom:580.576800px;}
.y11{bottom:582.676140px;}
.y1b7{bottom:584.880763px;}
.y1d7{bottom:588.084225px;}
.y1e9{bottom:588.085500px;}
.y1b6{bottom:590.878213px;}
.y205{bottom:591.048450px;}
.y12b{bottom:592.561200px;}
.y10{bottom:593.471460px;}
.y27c{bottom:596.108207px;}
.y277{bottom:596.111259px;}
.y1b5{bottom:596.875663px;}
.y25a{bottom:597.244855px;}
.y21f{bottom:602.738850px;}
.y1b4{bottom:602.873113px;}
.yef{bottom:604.512600px;}
.y259{bottom:606.241075px;}
.yd9{bottom:606.308370px;}
.y1b3{bottom:608.870563px;}
.y23b{bottom:609.093150px;}
.y12c{bottom:613.504350px;}
.y1b2{bottom:614.868013px;}
.yf{bottom:615.062100px;}
.y220{bottom:615.236099px;}
.y258{bottom:615.237295px;}
.yd8{bottom:617.103690px;}
.y1b1{bottom:620.865463px;}
.y230{bottom:621.084210px;}
.y1b0{bottom:626.862913px;}
.yd7{bottom:627.899010px;}
.y6b{bottom:627.932236px;}
.y22f{bottom:630.080430px;}
.y222{bottom:630.205680px;}
.y51{bottom:633.566656px;}
.ycd{bottom:633.619847px;}
.y12d{bottom:636.200850px;}
.yd6{bottom:638.694330px;}
.yba{bottom:639.009437px;}
.y22e{bottom:639.076650px;}
.y221{bottom:639.201900px;}
.y50{bottom:642.562876px;}
.ye5{bottom:643.155750px;}
.yd5{bottom:649.489650px;}
.y1ef{bottom:650.674697px;}
.y248{bottom:651.388470px;}
.y4f{bottom:651.559096px;}
.y199{bottom:651.669750px;}
.y88{bottom:655.542600px;}
.y8c{bottom:656.659874px;}
.y109{bottom:658.730790px;}
.yee{bottom:659.982992px;}
.y247{bottom:660.384690px;}
.y4e{bottom:660.555316px;}
.y119{bottom:660.830829px;}
.y261{bottom:664.205250px;}
.y1e3{bottom:665.374362px;}
.y108{bottom:667.727010px;}
.y1e8{bottom:668.549251px;}
.y8b{bottom:669.254474px;}
.y246{bottom:669.380910px;}
.y23a{bottom:669.603600px;}
.yc2{bottom:671.059127px;}
.y1e7{bottom:674.369005px;}
.y107{bottom:676.723230px;}
.y245{bottom:678.377130px;}
.y4d{bottom:678.547756px;}
.y1af{bottom:678.842812px;}
.yc1{bottom:681.854447px;}
.y224{bottom:682.558080px;}
.y243{bottom:684.529050px;}
.y1ae{bottom:684.840262px;}
.y106{bottom:685.719450px;}
.y100{bottom:686.971033px;}
.y244{bottom:687.373350px;}
.y4c{bottom:687.543976px;}
.y1ad{bottom:690.837712px;}
.y223{bottom:691.554300px;}
.y4b{bottom:696.540196px;}
.y1ac{bottom:696.835162px;}
.yff{bottom:697.766353px;}
.yc{bottom:699.922200px;}
.y1ab{bottom:702.832612px;}
.y4a{bottom:705.536416px;}
.y1aa{bottom:708.830062px;}
.y174{bottom:708.851010px;}
.ybc{bottom:711.482018px;}
.y158{bottom:711.876600px;}
.y201{bottom:713.872134px;}
.y49{bottom:714.532636px;}
.y8a{bottom:716.305800px;}
.y15e{bottom:718.566000px;}
.y173{bottom:719.646330px;}
.y23e{bottom:720.025650px;}
.y200{bottom:720.169434px;}
.y281{bottom:720.920098px;}
.y279{bottom:720.923151px;}
.y157{bottom:722.671920px;}
.y48{bottom:723.528856px;}
.y1ff{bottom:726.466734px;}
.y89{bottom:728.900400px;}
.y172{bottom:730.441650px;}
.yb{bottom:732.533250px;}
.y1fe{bottom:732.764034px;}
.y156{bottom:733.467240px;}
.y141{bottom:733.952285px;}
.y226{bottom:734.910480px;}
.y23f{bottom:735.019350px;}
.y1d8{bottom:736.522082px;}
.y171{bottom:741.236970px;}
.y225{bottom:743.906700px;}
.y140{bottom:744.747605px;}
.yd{bottom:748.055400px;}
.y159{bottom:749.236200px;}
.y47{bottom:750.270120px;}
.y241{bottom:750.905175px;}
.y170{bottom:752.032290px;}
.y229{bottom:754.276980px;}
.yf4{bottom:754.326600px;}
.y155{bottom:755.057880px;}
.y118{bottom:756.388200px;}
.y228{bottom:758.400930px;}
.yf3{bottom:758.730900px;}
.y2c0{bottom:758.762400px;}
.y46{bottom:759.266340px;}
.y1a9{bottom:759.807788px;}
.y240{bottom:759.901395px;}
.y18e{bottom:760.261800px;}
.y16f{bottom:762.827610px;}
.y1a8{bottom:765.805237px;}
.y154{bottom:765.853200px;}
.y13f{bottom:766.338245px;}
.y227{bottom:767.397150px;}
.y45{bottom:768.262560px;}
.y1a7{bottom:771.802688px;}
.y25c{bottom:772.620180px;}
.y16e{bottom:773.622930px;}
.y117{bottom:776.022870px;}
.y18d{bottom:776.128170px;}
.y153{bottom:776.648520px;}
.y13e{bottom:777.133565px;}
.y44{bottom:777.258780px;}
.y1a6{bottom:777.800138px;}
.y23d{bottom:780.270630px;}
.y25b{bottom:781.616400px;}
.y1dc{bottom:781.626493px;}
.y1e2{bottom:781.627768px;}
.y36{bottom:782.628839px;}
.y1a5{bottom:783.797588px;}
.y16d{bottom:784.418250px;}
.y43{bottom:786.255000px;}
.y116{bottom:786.818190px;}
.y152{bottom:787.443840px;}
.y13d{bottom:787.928885px;}
.y23c{bottom:789.266850px;}
.y1a4{bottom:789.795038px;}
.y1db{bottom:790.873028px;}
.ye{bottom:793.167450px;}
.y5{bottom:794.148053px;}
.y16c{bottom:795.213570px;}
.y42{bottom:795.251220px;}
.yd4{bottom:795.378030px;}
.y115{bottom:797.613510px;}
.y18c{bottom:797.718810px;}
.y7{bottom:797.829006px;}
.y17e{bottom:798.135570px;}
.y151{bottom:798.239160px;}
.y1dd{bottom:798.491700px;}
.y13c{bottom:798.724205px;}
.y24f{bottom:802.482210px;}
.y4{bottom:803.144273px;}
.y1d9{bottom:803.241975px;}
.y1de{bottom:803.243250px;}
.y41{bottom:804.247440px;}
.y22b{bottom:806.005680px;}
.y16b{bottom:806.008890px;}
.yd3{bottom:806.173350px;}
.y2c5{bottom:806.522130px;}
.y6{bottom:806.825226px;}
.y242{bottom:806.852100px;}
.y1df{bottom:807.740572px;}
.y18b{bottom:808.514130px;}
.y17d{bottom:808.930890px;}
.y150{bottom:809.034480px;}
.y24e{bottom:811.478430px;}
.y1e0{bottom:812.988322px;}
.y1da{bottom:814.739795px;}
.y22a{bottom:815.001900px;}
.y16a{bottom:816.804210px;}
.yd2{bottom:816.968670px;}
.y1e1{bottom:817.737536px;}
.y38{bottom:818.111430px;}
.y114{bottom:819.204150px;}
.y17c{bottom:819.726210px;}
.y14f{bottom:819.829800px;}
.y13b{bottom:820.314845px;}
.ybb{bottom:820.433785px;}
.y24d{bottom:820.474650px;}
.y1a3{bottom:821.281650px;}
.y40{bottom:822.239880px;}
.y37{bottom:825.608280px;}
.y3{bottom:825.822244px;}
.y35{bottom:827.107650px;}
.y1a2{bottom:827.279100px;}
.y169{bottom:827.599530px;}
.yd1{bottom:827.763990px;}
.y2c4{bottom:828.112770px;}
.y22c{bottom:828.745350px;}
.y18a{bottom:830.104770px;}
.y17b{bottom:830.521530px;}
.y14e{bottom:830.625120px;}
.y13a{bottom:831.110165px;}
.y3f{bottom:831.236100px;}
.y24c{bottom:832.469430px;}
.y1a1{bottom:833.276550px;}
.y2{bottom:834.818464px;}
.y22d{bottom:836.498400px;}
.y1fd{bottom:836.689950px;}
.y124{bottom:837.259890px;}
.y1ed{bottom:838.347600px;}
.y168{bottom:838.394850px;}
.yd0{bottom:838.559310px;}
.y1a0{bottom:839.274000px;}
.y27a{bottom:839.433900px;}
.y3e{bottom:840.232320px;}
.y113{bottom:840.794790px;}
.y189{bottom:840.900090px;}
.y17a{bottom:841.316850px;}
.y14d{bottom:841.420440px;}
.y24b{bottom:841.465650px;}
.y139{bottom:841.905485px;}
.y1fc{bottom:842.987250px;}
.y19f{bottom:845.271450px;}
.y25d{bottom:845.832750px;}
.y123{bottom:848.055210px;}
.y1{bottom:849.067200px;}
.y3d{bottom:849.228540px;}
.y1fb{bottom:849.284550px;}
.ycf{bottom:849.354630px;}
.y2c3{bottom:849.703410px;}
.yf5{bottom:851.160620px;}
.y19e{bottom:851.268900px;}
.y112{bottom:851.590110px;}
.y14c{bottom:852.215760px;}
.y138{bottom:852.700805px;}
.y24a{bottom:852.795030px;}
.y1fa{bottom:855.581850px;}
.y19d{bottom:857.266350px;}
.y3c{bottom:858.224760px;}
.y25e{bottom:858.327750px;}
.y122{bottom:858.850530px;}
.yce{bottom:860.149950px;}
.y2c2{bottom:860.498730px;}
.y249{bottom:861.791250px;}
.y111{bottom:862.385430px;}
.y188{bottom:862.490730px;}
.y175{bottom:862.828258px;}
.yc3{bottom:862.986150px;}
.y19c{bottom:863.263800px;}
.y3b{bottom:867.220980px;}
.y17f{bottom:867.252606px;}
.y19b{bottom:869.261250px;}
.y121{bottom:869.645850px;}
.y2b9{bottom:870.027000px;}
.y2b7{bottom:870.225600px;}
.y294{bottom:870.231541px;}
.y2c1{bottom:871.294050px;}
.y110{bottom:873.180750px;}
.y187{bottom:873.286050px;}
.y14b{bottom:873.806400px;}
.y292{bottom:873.973950px;}
.y137{bottom:874.291445px;}
.y3a{bottom:876.217200px;}
.y8{bottom:876.336900px;}
.y2bb{bottom:881.610150px;}
.h34{height:0.000000px;}
.h36{height:0.021000px;}
.h39{height:1.873500px;}
.h3b{height:4.066500px;}
.h35{height:5.737500px;}
.h3a{height:8.545500px;}
.h16{height:12.794952px;}
.h17{height:12.795016px;}
.h3c{height:13.081200px;}
.h2c{height:18.828927px;}
.h2d{height:18.829095px;}
.h27{height:21.518730px;}
.h28{height:21.518791px;}
.h2a{height:21.518797px;}
.h5{height:21.518851px;}
.h29{height:21.518872px;}
.h15{height:21.519016px;}
.h8{height:21.910122px;}
.h21{height:23.492968px;}
.h22{height:25.372363px;}
.h2f{height:25.944752px;}
.h31{height:26.898274px;}
.h32{height:26.898382px;}
.h1e{height:26.898412px;}
.h1b{height:26.898414px;}
.h1a{height:26.898523px;}
.h1c{height:26.898661px;}
.h3{height:26.898698px;}
.h19{height:26.898760px;}
.h1d{height:26.898794px;}
.h1f{height:26.898813px;}
.h14{height:26.898894px;}
.h11{height:28.463783px;}
.h20{height:29.300146px;}
.h33{height:29.588749px;}
.h4{height:32.278007px;}
.h25{height:32.278221px;}
.h12{height:33.413609px;}
.h7{height:34.458793px;}
.h13{height:34.802165px;}
.ha{height:37.657854px;}
.h2{height:39.054698px;}
.h26{height:41.521054px;}
.he{height:45.550470px;}
.h30{height:46.387778px;}
.hd{height:48.417548px;}
.h2e{height:54.286081px;}
.hb{height:56.486781px;}
.h2b{height:60.251490px;}
.hc{height:64.556552px;}
.hf{height:71.616128px;}
.h6{height:84.378458px;}
.h9{height:96.834559px;}
.h18{height:99.989807px;}
.h23{height:109.021039px;}
.h24{height:123.959060px;}
.h10{height:127.619454px;}
.h38{height:162.596678px;}
.h37{height:204.126000px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w6{width:0.000000px;}
.w7{width:0.067500px;}
.wb{width:1.432500px;}
.wa{width:1.873500px;}
.wd{width:6.475500px;}
.we{width:7.213500px;}
.w8{width:8.845500px;}
.w5{width:11.769000px;}
.wf{width:12.744000px;}
.wc{width:22.078500px;}
.w1{width:31.534500px;}
.w9{width:35.502000px;}
.w3{width:36.943500px;}
.w4{width:49.986000px;}
.w2{width:55.395000px;}
.w0{width:1263.000000px;}
.xc6{left:-4.486500px;}
.xcc{left:-2.665500px;}
.xc0{left:-1.181700px;}
.x0{left:0.000000px;}
.xbe{left:5.409450px;}
.x7f{left:10.428450px;}
.x76{left:12.326550px;}
.x80{left:15.087000px;}
.x61{left:16.109250px;}
.xd7{left:17.502150px;}
.x18{left:18.840150px;}
.x8d{left:20.482950px;}
.x3f{left:21.599400px;}
.x12{left:22.611150px;}
.x4f{left:24.445800px;}
.x2f{left:26.901000px;}
.x31{left:28.854306px;}
.xc8{left:32.989950px;}
.x48{left:35.321250px;}
.x19{left:37.048408px;}
.xb0{left:39.347294px;}
.x6a{left:40.801200px;}
.x4d{left:44.820427px;}
.x2e{left:46.819200px;}
.x92{left:51.558143px;}
.xa1{left:55.168050px;}
.x67{left:56.445300px;}
.xa5{left:57.541650px;}
.x8e{left:64.834950px;}
.x8f{left:66.834343px;}
.x90{left:71.142746px;}
.x66{left:72.329100px;}
.x87{left:73.775788px;}
.x88{left:74.942292px;}
.x33{left:77.271442px;}
.x89{left:84.271326px;}
.x8a{left:85.935618px;}
.xd3{left:87.223500px;}
.x85{left:91.150950px;}
.x65{left:92.168250px;}
.x4c{left:96.331119px;}
.x86{left:103.747800px;}
.x91{left:108.816343px;}
.xd2{left:111.738000px;}
.x3d{left:118.130400px;}
.x98{left:128.651400px;}
.xa2{left:130.886235px;}
.xca{left:162.809100px;}
.x62{left:166.044750px;}
.xb4{left:192.102150px;}
.x23{left:193.339800px;}
.x1a{left:197.252293px;}
.x2c{left:208.000650px;}
.xbb{left:216.026584px;}
.x15{left:222.525390px;}
.x54{left:223.779150px;}
.x4e{left:230.767650px;}
.x7a{left:235.954054px;}
.x79{left:238.212075px;}
.x78{left:244.959150px;}
.x6{left:249.257850px;}
.xb5{left:262.628250px;}
.x13{left:264.507750px;}
.xa9{left:268.400100px;}
.xbd{left:272.107500px;}
.xac{left:275.904447px;}
.xab{left:277.148924px;}
.xaa{left:280.485022px;}
.xa7{left:287.447549px;}
.xa6{left:291.195974px;}
.x2b{left:309.207450px;}
.x1{left:310.248000px;}
.x14{left:312.487590px;}
.xc3{left:318.894193px;}
.x77{left:332.909400px;}
.xc7{left:343.138500px;}
.x24{left:356.395350px;}
.x47{left:360.966114px;}
.x46{left:363.305100px;}
.x49{left:364.631400px;}
.xc9{left:376.767000px;}
.x68{left:381.202950px;}
.x5{left:382.837350px;}
.x1e{left:400.044069px;}
.x4{left:410.944740px;}
.x52{left:415.029300px;}
.xa0{left:416.764950px;}
.xa8{left:418.013850px;}
.x60{left:419.328750px;}
.x7{left:425.085092px;}
.x2{left:441.306983px;}
.x58{left:451.546950px;}
.x1f{left:455.874331px;}
.x3{left:458.174895px;}
.xb9{left:461.801904px;}
.x6c{left:462.918900px;}
.xb7{left:464.050929px;}
.x6b{left:465.276000px;}
.x2a{left:466.337550px;}
.xa3{left:480.188550px;}
.x5e{left:489.121050px;}
.xd9{left:497.093181px;}
.x8{left:503.083800px;}
.xba{left:510.300300px;}
.x22{left:511.948800px;}
.x1b{left:513.449852px;}
.x32{left:518.062350px;}
.x28{left:525.630145px;}
.x25{left:527.123850px;}
.xa4{left:529.195200px;}
.x63{left:553.219500px;}
.x55{left:557.588437px;}
.xc1{left:566.845500px;}
.xb2{left:572.221039px;}
.x64{left:575.185800px;}
.xc2{left:577.278300px;}
.xbf{left:578.460000px;}
.x20{left:586.318869px;}
.x53{left:601.782300px;}
.x16{left:603.364050px;}
.x3a{left:605.268195px;}
.xaf{left:606.423450px;}
.x9f{left:612.930750px;}
.xb{left:613.973550px;}
.xae{left:616.169400px;}
.xc4{left:619.528369px;}
.x38{left:621.011580px;}
.x3c{left:622.720862px;}
.x37{left:630.007800px;}
.x39{left:632.256855px;}
.x9d{left:635.677500px;}
.x3b{left:637.309732px;}
.x9c{left:638.659800px;}
.x4b{left:667.581000px;}
.x4a{left:669.829950px;}
.x26{left:678.736950px;}
.x29{left:682.414050px;}
.x36{left:684.885147px;}
.x35{left:690.876600px;}
.x27{left:693.776250px;}
.x2d{left:703.723050px;}
.x1c{left:713.416829px;}
.x9a{left:715.311600px;}
.xd1{left:716.603113px;}
.x9b{left:726.099450px;}
.x96{left:727.103060px;}
.x95{left:734.596811px;}
.x21{left:746.504761px;}
.xb8{left:748.174755px;}
.xb6{left:749.299268px;}
.x6e{left:759.131533px;}
.x50{left:766.606950px;}
.x51{left:769.605350px;}
.x30{left:777.897150px;}
.xce{left:792.703350px;}
.xbc{left:798.269469px;}
.xcf{left:801.699570px;}
.x1d{left:806.259155px;}
.xd0{left:810.695790px;}
.xcd{left:829.190250px;}
.x6f{left:833.141100px;}
.x99{left:846.058200px;}
.x34{left:849.686700px;}
.xd4{left:862.243800px;}
.x5c{left:869.208300px;}
.x5f{left:882.387600px;}
.x5a{left:887.860350px;}
.x56{left:897.684198px;}
.x5b{left:901.084650px;}
.x42{left:905.816075px;}
.xc5{left:916.761000px;}
.x8c{left:939.460364px;}
.x70{left:944.116350px;}
.xd6{left:952.047900px;}
.x45{left:959.657734px;}
.x72{left:961.449220px;}
.x84{left:971.323795px;}
.x43{left:977.589660px;}
.x81{left:979.786050px;}
.x74{left:987.262074px;}
.x75{left:990.026700px;}
.x5d{left:991.098750px;}
.x82{left:999.819020px;}
.x71{left:1001.084270px;}
.x83{left:1004.159257px;}
.x8b{left:1010.178150px;}
.xcb{left:1021.168650px;}
.xd8{left:1022.234221px;}
.x7e{left:1023.762300px;}
.x57{left:1030.001536px;}
.x9{left:1033.148400px;}
.xd5{left:1050.316870px;}
.xb3{left:1052.370784px;}
.xb1{left:1053.487200px;}
.xa{left:1058.345100px;}
.x40{left:1062.498450px;}
.x93{left:1068.593431px;}
.x94{left:1090.746300px;}
.xad{left:1097.688330px;}
.x9e{left:1098.722850px;}
.x7d{left:1110.342900px;}
.x7c{left:1126.191300px;}
.x10{left:1131.184050px;}
.xc{left:1141.702200px;}
.x17{left:1143.801150px;}
.xd{left:1147.699650px;}
.x7b{left:1152.834900px;}
.x11{left:1171.486950px;}
.x97{left:1172.723850px;}
.x6d{left:1178.503950px;}
.x69{left:1179.606000px;}
.x3e{left:1183.001456px;}
.x73{left:1184.193900px;}
.x59{left:1186.008067px;}
.xf{left:1189.538921px;}
.xe{left:1193.775000px;}
.x41{left:1210.491492px;}
.x44{left:1220.484360px;}
@media print{
.v2{vertical-align:-7.090133pt;}
.v7{vertical-align:-3.172001pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.015659pt;}
.v1{vertical-align:10.805333pt;}
.v8{vertical-align:17.323627pt;}
.v4{vertical-align:20.620960pt;}
.v6{vertical-align:60.188267pt;}
.v5{vertical-align:79.965867pt;}
.lsd{letter-spacing:-0.015993pt;}
.lsc{letter-spacing:-0.006397pt;}
.lsb{letter-spacing:-0.003199pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002666pt;}
.ls6{letter-spacing:0.003199pt;}
.ls1{letter-spacing:0.006397pt;}
.ls7{letter-spacing:7.422507pt;}
.ls8{letter-spacing:9.912107pt;}
.ls3{letter-spacing:11.237523pt;}
.lsa{letter-spacing:17.784290pt;}
.ls4{letter-spacing:17.904190pt;}
.ls9{letter-spacing:58.630582pt;}
.ls2{letter-spacing:87.066255pt;}
.ws89{word-spacing:-44.793139pt;}
.ws54{word-spacing:-34.149009pt;}
.ws1{word-spacing:-15.561328pt;}
.ws19{word-spacing:-10.374219pt;}
.ws7a{word-spacing:-9.682406pt;}
.ws0{word-spacing:-9.492922pt;}
.ws55{word-spacing:-8.892204pt;}
.ws1a{word-spacing:-8.892145pt;}
.ws17{word-spacing:-7.410220pt;}
.ws53{word-spacing:-6.471988pt;}
.ws2c{word-spacing:-1.759237pt;}
.ws76{word-spacing:-1.711258pt;}
.wsf{word-spacing:-1.637690pt;}
.ws10{word-spacing:-1.631293pt;}
.ws2d{word-spacing:-1.492706pt;}
.ws34{word-spacing:-1.477759pt;}
.ws35{word-spacing:-1.471362pt;}
.ws3a{word-spacing:-1.385000pt;}
.ws44{word-spacing:-1.311431pt;}
.ws8e{word-spacing:-1.282128pt;}
.ws2f{word-spacing:-1.001166pt;}
.ws99{word-spacing:-0.924399pt;}
.ws9b{word-spacing:-0.860427pt;}
.ws9a{word-spacing:-0.857228pt;}
.ws9c{word-spacing:-0.847633pt;}
.ws82{word-spacing:-0.799664pt;}
.ws57{word-spacing:-0.748476pt;}
.ws49{word-spacing:-0.671712pt;}
.ws32{word-spacing:-0.594942pt;}
.ws33{word-spacing:-0.588545pt;}
.ws26{word-spacing:-0.586420pt;}
.ws5{word-spacing:-0.543764pt;}
.ws4d{word-spacing:-0.539504pt;}
.ws4{word-spacing:-0.479798pt;}
.ws48{word-spacing:-0.476593pt;}
.ws2{word-spacing:-0.453143pt;}
.ws79{word-spacing:-0.441409pt;}
.ws3d{word-spacing:-0.425416pt;}
.ws9{word-spacing:-0.383834pt;}
.ws5c{word-spacing:-0.307067pt;}
.ws65{word-spacing:-0.185520pt;}
.ws47{word-spacing:-0.159931pt;}
.ws78{word-spacing:-0.076767pt;}
.ws38{word-spacing:-0.003199pt;}
.ws1c{word-spacing:-0.002666pt;}
.ws3{word-spacing:0.000000pt;}
.ws80{word-spacing:0.005331pt;}
.ws9d{word-spacing:0.006397pt;}
.ws7f{word-spacing:0.007997pt;}
.ws7e{word-spacing:0.013328pt;}
.ws7c{word-spacing:0.018659pt;}
.ws6{word-spacing:0.031986pt;}
.ws3f{word-spacing:0.060774pt;}
.ws59{word-spacing:0.140739pt;}
.ws8{word-spacing:0.143938pt;}
.ws7{word-spacing:0.150335pt;}
.ws96{word-spacing:0.186588pt;}
.ws98{word-spacing:0.213244pt;}
.ws97{word-spacing:0.218575pt;}
.wsd{word-spacing:0.223903pt;}
.wsc{word-spacing:0.230300pt;}
.ws14{word-spacing:0.265485pt;}
.ws13{word-spacing:0.278279pt;}
.wsa{word-spacing:0.326259pt;}
.wsb{word-spacing:0.332656pt;}
.ws15{word-spacing:0.380635pt;}
.ws70{word-spacing:0.390231pt;}
.ws6f{word-spacing:0.396628pt;}
.wse{word-spacing:0.476593pt;}
.ws74{word-spacing:0.489388pt;}
.ws2e{word-spacing:0.508580pt;}
.ws11{word-spacing:0.530970pt;}
.ws12{word-spacing:0.543764pt;}
.ws21{word-spacing:0.719698pt;}
.ws29{word-spacing:0.725029pt;}
.ws3c{word-spacing:0.812448pt;}
.ws85{word-spacing:0.839647pt;}
.ws1e{word-spacing:1.012908pt;}
.ws66{word-spacing:1.257055pt;}
.ws2b{word-spacing:1.311449pt;}
.ws8b{word-spacing:1.372757pt;}
.ws75{word-spacing:1.391397pt;}
.ws73{word-spacing:1.519341pt;}
.ws40{word-spacing:1.829607pt;}
.ws64{word-spacing:1.861593pt;}
.ws56{word-spacing:1.887182pt;}
.ws24{word-spacing:1.999160pt;}
.ws63{word-spacing:2.143071pt;}
.ws41{word-spacing:2.162263pt;}
.ws5a{word-spacing:2.175057pt;}
.ws68{word-spacing:2.271015pt;}
.ws8f{word-spacing:2.351012pt;}
.ws72{word-spacing:2.440542pt;}
.ws31{word-spacing:2.501316pt;}
.ws30{word-spacing:2.514110pt;}
.ws5e{word-spacing:2.722020pt;}
.ws36{word-spacing:2.859560pt;}
.ws58{word-spacing:2.910738pt;}
.ws6c{word-spacing:3.048279pt;}
.ws92{word-spacing:3.201322pt;}
.ws62{word-spacing:3.288175pt;}
.ws69{word-spacing:3.598440pt;}
.ws8a{word-spacing:3.966333pt;}
.ws5b{word-spacing:4.145403pt;}
.ws8c{word-spacing:4.318186pt;}
.ws3b{word-spacing:4.369306pt;}
.ws87{word-spacing:4.592737pt;}
.ws46{word-spacing:4.673174pt;}
.ws93{word-spacing:4.744673pt;}
.ws94{word-spacing:5.976156pt;}
.ws6d{word-spacing:5.991003pt;}
.ws43{word-spacing:6.141338pt;}
.ws2a{word-spacing:6.450623pt;}
.ws77{word-spacing:6.566753pt;}
.ws1f{word-spacing:7.196976pt;}
.ws67{word-spacing:7.484755pt;}
.ws83{word-spacing:7.524838pt;}
.ws71{word-spacing:7.603104pt;}
.ws27{word-spacing:7.836707pt;}
.ws28{word-spacing:7.948660pt;}
.ws3e{word-spacing:8.095690pt;}
.ws84{word-spacing:8.249867pt;}
.ws45{word-spacing:8.309997pt;}
.ws42{word-spacing:8.396360pt;}
.ws91{word-spacing:8.636371pt;}
.ws88{word-spacing:8.892145pt;}
.ws4e{word-spacing:10.022405pt;}
.ws61{word-spacing:11.118380pt;}
.ws25{word-spacing:12.562721pt;}
.ws5f{word-spacing:13.235862pt;}
.ws90{word-spacing:13.620943pt;}
.ws5d{word-spacing:14.883148pt;}
.ws39{word-spacing:14.969510pt;}
.ws23{word-spacing:14.972376pt;}
.ws95{word-spacing:15.150967pt;}
.ws8d{word-spacing:15.340221pt;}
.ws60{word-spacing:16.447270pt;}
.ws6e{word-spacing:16.664775pt;}
.ws7b{word-spacing:18.938547pt;}
.ws6b{word-spacing:20.822973pt;}
.ws86{word-spacing:21.697550pt;}
.ws4f{word-spacing:23.036605pt;}
.ws22{word-spacing:24.896206pt;}
.ws20{word-spacing:25.882458pt;}
.ws81{word-spacing:27.801652pt;}
.ws6a{word-spacing:32.082092pt;}
.ws37{word-spacing:60.357834pt;}
.ws16{word-spacing:87.066255pt;}
.ws1d{word-spacing:88.549460pt;}
.ws52{word-spacing:234.634410pt;}
.ws51{word-spacing:234.674729pt;}
.ws50{word-spacing:255.839169pt;}
.ws4c{word-spacing:268.269937pt;}
.ws18{word-spacing:551.139696pt;}
.ws7d{word-spacing:741.886377pt;}
.ws4b{word-spacing:1607.786417pt;}
.ws1b{word-spacing:2360.114763pt;}
.ws4a{word-spacing:3757.781246pt;}
._1d{margin-left:-1548.224812pt;}
._1c{margin-left:-1427.122112pt;}
._1a{margin-left:-947.643576pt;}
._10{margin-left:-468.922970pt;}
._18{margin-left:-422.920655pt;}
._12{margin-left:-417.771129pt;}
._13{margin-left:-414.172641pt;}
._11{margin-left:-378.054484pt;}
._1b{margin-left:-125.356339pt;}
._6{margin-left:-87.066255pt;}
._7{margin-left:-79.140081pt;}
._2{margin-left:-4.158197pt;}
._0{margin-left:-2.958757pt;}
._3{margin-left:-1.466051pt;}
._9{width:1.759237pt;}
._4{width:86.915920pt;}
._5{width:88.703945pt;}
._c{width:118.988416pt;}
._f{width:123.787987pt;}
._e{width:149.750412pt;}
._15{width:238.379838pt;}
._14{width:264.608818pt;}
._8{width:282.885363pt;}
._17{width:345.137648pt;}
._1{width:389.193094pt;}
._b{width:650.399134pt;}
._19{width:795.591094pt;}
._16{width:1474.876819pt;}
._d{width:1830.333778pt;}
._a{width:2386.474539pt;}
.fs10{font-size:12.679253pt;}
.fs11{font-size:12.679317pt;}
.fs26{font-size:18.658667pt;}
.fs27{font-size:18.658834pt;}
.fs20{font-size:21.324147pt;}
.fs21{font-size:21.324208pt;}
.fs23{font-size:21.324213pt;}
.fs2{font-size:21.324267pt;}
.fs22{font-size:21.324288pt;}
.fsf{font-size:21.324431pt;}
.fs5{font-size:21.712000pt;}
.fs1a{font-size:23.280533pt;}
.fs1b{font-size:25.142933pt;}
.fs29{font-size:26.655047pt;}
.fs2a{font-size:26.655154pt;}
.fs17{font-size:26.655183pt;}
.fs14{font-size:26.655185pt;}
.fs13{font-size:26.655293pt;}
.fs15{font-size:26.655430pt;}
.fs0{font-size:26.655467pt;}
.fs12{font-size:26.655528pt;}
.fs16{font-size:26.655562pt;}
.fs18{font-size:26.655581pt;}
.fse{font-size:26.655661pt;}
.fsb{font-size:28.206400pt;}
.fs19{font-size:29.035200pt;}
.fs2b{font-size:29.321193pt;}
.fs1{font-size:31.986133pt;}
.fs1e{font-size:31.986346pt;}
.fsc{font-size:33.111467pt;}
.fs4{font-size:34.147200pt;}
.fsd{font-size:34.487467pt;}
.fs25{font-size:34.828800pt;}
.fs7{font-size:37.317333pt;}
.fs1f{font-size:41.145600pt;}
.fsa{font-size:47.979733pt;}
.fs28{font-size:53.795200pt;}
.fs8{font-size:55.976000pt;}
.fs24{font-size:59.706667pt;}
.fs9{font-size:63.972800pt;}
.fs3{font-size:83.615467pt;}
.fs6{font-size:95.958933pt;}
.fs1c{font-size:108.035217pt;}
.fs1d{font-size:122.838162pt;}
.fs2c{font-size:161.126400pt;}
.y2bc{bottom:-10.119600pt;}
.y29b{bottom:-6.134533pt;}
.y297{bottom:-5.730400pt;}
.y2ae{bottom:-3.148400pt;}
.y28e{bottom:-0.692133pt;}
.y290{bottom:-0.625467pt;}
.y0{bottom:0.000000pt;}
.y299{bottom:0.061733pt;}
.y2ba{bottom:0.176533pt;}
.y28c{bottom:1.307867pt;}
.yb3{bottom:5.837668pt;}
.yf7{bottom:6.162267pt;}
.y12f{bottom:6.502133pt;}
.ye6{bottom:6.668800pt;}
.y15b{bottom:6.728667pt;}
.yfb{bottom:6.768667pt;}
.y11d{bottom:6.782000pt;}
.y18f{bottom:6.848667pt;}
.y184{bottom:6.855333pt;}
.y195{bottom:6.862000pt;}
.y1f2{bottom:7.101867pt;}
.y94{bottom:7.908267pt;}
.y178{bottom:8.048267pt;}
.yf8{bottom:24.281333pt;}
.yfa{bottom:24.354533pt;}
.y177{bottom:24.501200pt;}
.y2cc{bottom:24.521200pt;}
.y135{bottom:24.527867pt;}
.y2c6{bottom:24.574533pt;}
.y149{bottom:24.607733pt;}
.y39{bottom:24.621067pt;}
.y190{bottom:24.641200pt;}
.y2aa{bottom:24.654533pt;}
.yf2{bottom:24.674400pt;}
.y15a{bottom:24.681067pt;}
.y11e{bottom:24.687733pt;}
.y11a{bottom:24.694400pt;}
.y166{bottom:24.701067pt;}
.y274{bottom:24.774400pt;}
.y193{bottom:24.801200pt;}
.y183{bottom:24.807733pt;}
.y185{bottom:24.841067pt;}
.y11c{bottom:24.907733pt;}
.ybf{bottom:24.940933pt;}
.y96{bottom:25.014267pt;}
.y202{bottom:25.020933pt;}
.y2c9{bottom:25.067600pt;}
.y181{bottom:25.953867pt;}
.y104{bottom:34.863503pt;}
.y11b{bottom:43.572933pt;}
.yb7{bottom:43.828431pt;}
.y283{bottom:44.319467pt;}
.y180{bottom:44.832533pt;}
.y197{bottom:44.845733pt;}
.y186{bottom:46.218667pt;}
.y182{bottom:46.232000pt;}
.y194{bottom:46.238533pt;}
.y286{bottom:46.251867pt;}
.y1ce{bottom:46.485200pt;}
.y176{bottom:46.578267pt;}
.y95{bottom:46.944933pt;}
.y15d{bottom:47.238133pt;}
.y101{bottom:47.278133pt;}
.yf9{bottom:47.298133pt;}
.yf6{bottom:47.491333pt;}
.y130{bottom:47.944533pt;}
.y34{bottom:48.917467pt;}
.yb4{bottom:51.149867pt;}
.y15c{bottom:53.235600pt;}
.y14a{bottom:53.268933pt;}
.y167{bottom:53.288933pt;}
.y148{bottom:53.934619pt;}
.y179{bottom:54.555067pt;}
.y191{bottom:61.178183pt;}
.y192{bottom:61.545224pt;}
.y2c7{bottom:63.617126pt;}
.y2cb{bottom:63.924193pt;}
.y2bf{bottom:64.503941pt;}
.y196{bottom:64.510608pt;}
.y284{bottom:66.983430pt;}
.y198{bottom:67.509697pt;}
.y287{bottom:68.908933pt;}
.y103{bottom:73.227067pt;}
.y33{bottom:77.805200pt;}
.y275{bottom:78.091733pt;}
.y27e{bottom:78.093818pt;}
.y1ec{bottom:78.946010pt;}
.y11f{bottom:79.837600pt;}
.yfe{bottom:81.491116pt;}
.y9d{bottom:92.864550pt;}
.y136{bottom:95.484267pt;}
.y9f{bottom:101.527697pt;}
.y2ca{bottom:101.527891pt;}
.y295{bottom:101.821600pt;}
.y2c8{bottom:106.864777pt;}
.y7c{bottom:110.111333pt;}
.y7e{bottom:110.117876pt;}
.y102{bottom:110.877600pt;}
.y81{bottom:112.157067pt;}
.ya4{bottom:114.189044pt;}
.ya{bottom:114.762818pt;}
.y120{bottom:115.249200pt;}
.ye4{bottom:121.387013pt;}
.ya3{bottom:122.185684pt;}
.y2be{bottom:123.925467pt;}
.y7b{bottom:125.824667pt;}
.ya2{bottom:130.183657pt;}
.ye3{bottom:130.981253pt;}
.y265{bottom:131.143067pt;}
.y67{bottom:131.387578pt;}
.y298{bottom:134.092000pt;}
.yfd{bottom:134.239449pt;}
.y267{bottom:136.736027pt;}
.yf1{bottom:137.239733pt;}
.y66{bottom:139.384218pt;}
.yed{bottom:140.325040pt;}
.y6c{bottom:140.467583pt;}
.y7d{bottom:140.482400pt;}
.y7a{bottom:140.482827pt;}
.ye2{bottom:140.577093pt;}
.ya1{bottom:141.485575pt;}
.y266{bottom:144.732667pt;}
.y65{bottom:147.380858pt;}
.y9{bottom:147.418800pt;}
.ye1{bottom:150.172933pt;}
.yb8{bottom:150.661317pt;}
.y276{bottom:154.055601pt;}
.y64{bottom:155.377498pt;}
.yec{bottom:159.516720pt;}
.y79{bottom:161.540133pt;}
.y80{bottom:161.541982pt;}
.y78{bottom:163.126255pt;}
.y264{bottom:163.129360pt;}
.y63{bottom:163.374138pt;}
.ya0{bottom:163.982788pt;}
.y27d{bottom:164.696274pt;}
.y2a0{bottom:167.239440pt;}
.yeb{bottom:169.112560pt;}
.y263{bottom:171.126000pt;}
.y62{bottom:171.370778pt;}
.y161{bottom:172.671378pt;}
.y29f{bottom:175.236080pt;}
.yb2{bottom:176.997867pt;}
.y7f{bottom:177.247174pt;}
.y76{bottom:177.248133pt;}
.y61{bottom:179.367418pt;}
.y29e{bottom:183.232720pt;}
.y2b6{bottom:184.519600pt;}
.yb1{bottom:186.593707pt;}
.y60{bottom:187.364058pt;}
.yea{bottom:188.304240pt;}
.yfc{bottom:188.328000pt;}
.y29d{bottom:191.229360pt;}
.y74{bottom:191.901714pt;}
.y77{bottom:191.908533pt;}
.y5f{bottom:195.360698pt;}
.ye9{bottom:197.900080pt;}
.y29c{bottom:199.226000pt;}
.y5e{bottom:203.357338pt;}
.y1f1{bottom:203.995811pt;}
.yb0{bottom:205.785387pt;}
.y273{bottom:207.835387pt;}
.y162{bottom:208.205600pt;}
.y9e{bottom:209.650267pt;}
.y8f{bottom:212.698067pt;}
.y93{bottom:214.296760pt;}
.y72{bottom:214.995895pt;}
.yaf{bottom:215.381227pt;}
.y272{bottom:215.832027pt;}
.ye8{bottom:217.091760pt;}
.y1cc{bottom:220.733467pt;}
.y8e{bottom:222.139352pt;}
.y29a{bottom:223.108000pt;}
.y26b{bottom:223.166377pt;}
.y271{bottom:223.828667pt;}
.y92{bottom:223.892600pt;}
.yae{bottom:224.977067pt;}
.ye7{bottom:226.687600pt;}
.y9c{bottom:226.807600pt;}
.y2b{bottom:230.058347pt;}
.y26a{bottom:231.163017pt;}
.y270{bottom:231.825307pt;}
.y163{bottom:231.972667pt;}
.y32{bottom:232.129333pt;}
.y6a{bottom:233.324102pt;}
.y8d{bottom:233.334552pt;}
.y71{bottom:238.313981pt;}
.y1d0{bottom:238.514064pt;}
.y269{bottom:239.159657pt;}
.y2a{bottom:239.654187pt;}
.y26f{bottom:239.821947pt;}
.ycc{bottom:241.541095pt;}
.yad{bottom:243.089626pt;}
.y1cb{bottom:245.344078pt;}
.y132{bottom:246.276667pt;}
.yb6{bottom:246.403810pt;}
.y268{bottom:247.156297pt;}
.y1ea{bottom:247.512133pt;}
.y26e{bottom:247.818587pt;}
.y29{bottom:249.250027pt;}
.y285{bottom:249.930400pt;}
.y1ca{bottom:250.675145pt;}
.yf0{bottom:252.137484pt;}
.y2d{bottom:255.698587pt;}
.y5d{bottom:255.748658pt;}
.y26d{bottom:255.815227pt;}
.y1c9{bottom:256.006212pt;}
.y28{bottom:258.845867pt;}
.y210{bottom:259.200400pt;}
.y6d{bottom:259.680896pt;}
.y1ee{bottom:259.843600pt;}
.y1c8{bottom:261.337278pt;}
.y2c{bottom:262.095867pt;}
.yac{bottom:262.281306pt;}
.y164{bottom:262.359067pt;}
.y27f{bottom:263.101613pt;}
.y26c{bottom:263.811867pt;}
.y1c7{bottom:266.668345pt;}
.y75{bottom:267.693489pt;}
.y27{bottom:268.441707pt;}
.y5c{bottom:271.741938pt;}
.yab{bottom:271.877146pt;}
.y1c6{bottom:271.999412pt;}
.y91{bottom:272.271627pt;}
.y73{bottom:272.635388pt;}
.y1cf{bottom:273.181867pt;}
.ye0{bottom:275.186693pt;}
.y1c5{bottom:277.330478pt;}
.y2b2{bottom:277.382613pt;}
.y26{bottom:278.037547pt;}
.y5b{bottom:279.738578pt;}
.y68{bottom:279.976267pt;}
.y1d1{bottom:281.401009pt;}
.yaa{bottom:281.472986pt;}
.y10a{bottom:281.755600pt;}
.y90{bottom:281.867467pt;}
.ydf{bottom:284.782533pt;}
.y2b1{bottom:285.379253pt;}
.y1f9{bottom:286.114720pt;}
.y25{bottom:287.633387pt;}
.y5a{bottom:287.735218pt;}
.y262{bottom:288.409333pt;}
.ya9{bottom:291.068826pt;}
.y2ac{bottom:291.687333pt;}
.y2b0{bottom:293.375893pt;}
.ycb{bottom:293.830427pt;}
.y1f8{bottom:294.111360pt;}
.yde{bottom:294.378373pt;}
.y165{bottom:295.398400pt;}
.y59{bottom:295.731858pt;}
.y30{bottom:295.819867pt;}
.y24{bottom:297.229227pt;}
.y2b5{bottom:300.546214pt;}
.y83{bottom:300.801467pt;}
.y2af{bottom:301.372533pt;}
.y1f7{bottom:302.108000pt;}
.y2f{bottom:302.333467pt;}
.yca{bottom:303.426267pt;}
.y58{bottom:303.728498pt;}
.ydd{bottom:303.974213pt;}
.y23{bottom:306.825067pt;}
.y280{bottom:306.978591pt;}
.y278{bottom:306.981305pt;}
.y70{bottom:307.180700pt;}
.y2b4{bottom:308.542854pt;}
.y2ad{bottom:309.118667pt;}
.ya8{bottom:310.260506pt;}
.y31{bottom:310.589455pt;}
.y21e{bottom:311.066107pt;}
.y57{bottom:311.725138pt;}
.ydc{bottom:313.570053pt;}
.y22{bottom:316.420907pt;}
.y2b3{bottom:316.539494pt;}
.y12e{bottom:317.163067pt;}
.y133{bottom:318.021467pt;}
.y1f6{bottom:318.101280pt;}
.y19a{bottom:318.222000pt;}
.y21d{bottom:319.062747pt;}
.y56{bottom:319.721778pt;}
.ya7{bottom:319.856346pt;}
.y2b8{bottom:322.093810pt;}
.y2ab{bottom:322.095067pt;}
.y1c4{bottom:322.202066pt;}
.ydb{bottom:323.165893pt;}
.y131{bottom:325.053067pt;}
.y21{bottom:326.016747pt;}
.y21c{bottom:327.059387pt;}
.y1c3{bottom:327.533133pt;}
.y55{bottom:327.718418pt;}
.y293{bottom:327.744691pt;}
.yb5{bottom:328.392267pt;}
.y6f{bottom:328.499635pt;}
.ya6{bottom:329.451387pt;}
.y160{bottom:331.970318pt;}
.yda{bottom:332.761733pt;}
.y1c2{bottom:332.864200pt;}
.y231{bottom:333.946000pt;}
.y1f5{bottom:334.094560pt;}
.y21b{bottom:335.056027pt;}
.y2e{bottom:335.070133pt;}
.y20{bottom:335.612587pt;}
.y54{bottom:335.715058pt;}
.yc9{bottom:337.250827pt;}
.y1c1{bottom:338.195266pt;}
.y1f4{bottom:342.091200pt;}
.y21a{bottom:343.052667pt;}
.y1c0{bottom:343.526333pt;}
.y53{bottom:343.711698pt;}
.y10b{bottom:344.384133pt;}
.y86{bottom:345.449067pt;}
.y28b{bottom:346.972000pt;}
.yc8{bottom:347.184267pt;}
.y289{bottom:348.277719pt;}
.y291{bottom:348.279867pt;}
.ya5{bottom:348.643067pt;}
.y1bf{bottom:348.857400pt;}
.y28f{bottom:348.905333pt;}
.y28d{bottom:348.972000pt;}
.y9a{bottom:350.042213pt;}
.y1cd{bottom:352.231548pt;}
.y52{bottom:353.147733pt;}
.y219{bottom:353.714480pt;}
.y1f{bottom:354.804267pt;}
.y2bd{bottom:354.946267pt;}
.y99{bottom:358.038853pt;}
.y1f3{bottom:358.084400pt;}
.yc0{bottom:359.527733pt;}
.y218{bottom:361.711120pt;}
.y82{bottom:363.499333pt;}
.y1d2{bottom:363.811675pt;}
.y98{bottom:366.035493pt;}
.y6e{bottom:367.203179pt;}
.y217{bottom:369.707760pt;}
.y147{bottom:370.592933pt;}
.y85{bottom:371.046133pt;}
.y1e{bottom:373.995947pt;}
.y97{bottom:374.032133pt;}
.y142{bottom:376.406533pt;}
.y143{bottom:376.629067pt;}
.y1eb{bottom:376.800084pt;}
.y216{bottom:377.704400pt;}
.y27b{bottom:380.618667pt;}
.y1f0{bottom:381.470872pt;}
.y2a9{bottom:382.055846pt;}
.y239{bottom:382.948863pt;}
.y1d{bottom:383.591787pt;}
.yc7{bottom:385.066133pt;}
.y134{bottom:385.681100pt;}
.y215{bottom:385.701040pt;}
.y232{bottom:386.423950pt;}
.y2a8{bottom:390.052486pt;}
.y20f{bottom:390.888400pt;}
.y238{bottom:390.945503pt;}
.y145{bottom:392.022186pt;}
.y1c{bottom:393.187627pt;}
.yb9{bottom:393.420076pt;}
.y204{bottom:394.751600pt;}
.y2a7{bottom:398.049126pt;}
.y254{bottom:398.151146pt;}
.y237{bottom:398.942143pt;}
.y214{bottom:400.361547pt;}
.y144{bottom:400.482267pt;}
.y20e{bottom:404.337200pt;}
.y2a6{bottom:406.045766pt;}
.y253{bottom:406.147786pt;}
.y213{bottom:408.358187pt;}
.y1b{bottom:412.379307pt;}
.y2a5{bottom:414.042406pt;}
.y126{bottom:415.787627pt;}
.y212{bottom:416.354827pt;}
.y20d{bottom:417.786000pt;}
.y84{bottom:418.751200pt;}
.y2a4{bottom:422.039046pt;}
.yc6{bottom:423.187200pt;}
.y125{bottom:423.784267pt;}
.y211{bottom:424.351467pt;}
.y2a3{bottom:430.035686pt;}
.y236{bottom:430.348947pt;}
.y20c{bottom:431.234800pt;}
.y1a{bottom:431.570987pt;}
.y2a2{bottom:438.032326pt;}
.y235{bottom:438.345587pt;}
.y19{bottom:441.166827pt;}
.y1d4{bottom:443.111009pt;}
.y1be{bottom:443.926312pt;}
.y282{bottom:444.135131pt;}
.y128{bottom:444.230267pt;}
.y234{bottom:444.314267pt;}
.y20b{bottom:444.683600pt;}
.y1e6{bottom:445.551763pt;}
.y2a1{bottom:446.028966pt;}
.ybe{bottom:447.172773pt;}
.y1bd{bottom:449.257378pt;}
.y18{bottom:450.762667pt;}
.y1bc{bottom:454.588445pt;}
.y20a{bottom:458.132400pt;}
.y1e5{bottom:458.435572pt;}
.y1d3{bottom:458.439103pt;}
.y257{bottom:458.841253pt;}
.y1bb{bottom:459.919512pt;}
.y17{bottom:460.359307pt;}
.y203{bottom:461.390267pt;}
.y1ba{bottom:465.250578pt;}
.y256{bottom:466.837893pt;}
.y288{bottom:466.890298pt;}
.y28a{bottom:469.217290pt;}
.y16{bottom:469.955147pt;}
.y1b9{bottom:470.581645pt;}
.y209{bottom:471.581200pt;}
.y1e4{bottom:472.826069pt;}
.y233{bottom:474.833200pt;}
.y255{bottom:474.834533pt;}
.y296{bottom:474.950667pt;}
.y260{bottom:475.662827pt;}
.y1b8{bottom:475.912712pt;}
.y10f{bottom:477.348827pt;}
.y15{bottom:479.550987pt;}
.y1d5{bottom:480.092486pt;}
.y25f{bottom:483.659467pt;}
.y10e{bottom:483.746107pt;}
.y87{bottom:484.723067pt;}
.y208{bottom:485.030000pt;}
.y146{bottom:485.947257pt;}
.y15f{bottom:487.239006pt;}
.yc5{bottom:487.868427pt;}
.y1d6{bottom:488.199677pt;}
.y14{bottom:489.146827pt;}
.y10d{bottom:490.143387pt;}
.y10c{bottom:496.540667pt;}
.yc4{bottom:497.464267pt;}
.y207{bottom:498.478800pt;}
.y13{bottom:498.742667pt;}
.y252{bottom:500.074987pt;}
.y69{bottom:501.881917pt;}
.y129{bottom:504.951067pt;}
.y105{bottom:506.371733pt;}
.y251{bottom:508.071627pt;}
.y12{bottom:508.338507pt;}
.y127{bottom:508.848000pt;}
.ybd{bottom:511.592845pt;}
.y206{bottom:511.927600pt;}
.y12a{bottom:512.698400pt;}
.y9b{bottom:514.253067pt;}
.y250{bottom:516.068267pt;}
.y11{bottom:517.934347pt;}
.y1b7{bottom:519.894012pt;}
.y1d7{bottom:522.741533pt;}
.y1e9{bottom:522.742667pt;}
.y1b6{bottom:525.225078pt;}
.y205{bottom:525.376400pt;}
.y12b{bottom:526.721067pt;}
.y10{bottom:527.530187pt;}
.y27c{bottom:529.873961pt;}
.y277{bottom:529.876675pt;}
.y1b5{bottom:530.556145pt;}
.y25a{bottom:530.884316pt;}
.y21f{bottom:535.767867pt;}
.y1b4{bottom:535.887212pt;}
.yef{bottom:537.344533pt;}
.y259{bottom:538.880956pt;}
.yd9{bottom:538.940773pt;}
.y1b3{bottom:541.218278pt;}
.y23b{bottom:541.416133pt;}
.y12c{bottom:545.337200pt;}
.y1b2{bottom:546.549345pt;}
.yf{bottom:546.721867pt;}
.y220{bottom:546.876532pt;}
.y258{bottom:546.877596pt;}
.yd8{bottom:548.536613pt;}
.y1b1{bottom:551.880412pt;}
.y230{bottom:552.074853pt;}
.y1b0{bottom:557.211478pt;}
.yd7{bottom:558.132453pt;}
.y6b{bottom:558.161987pt;}
.y22f{bottom:560.071493pt;}
.y222{bottom:560.182827pt;}
.y51{bottom:563.170361pt;}
.ycd{bottom:563.217642pt;}
.y12d{bottom:565.511867pt;}
.yd6{bottom:567.728293pt;}
.yba{bottom:568.008388pt;}
.y22e{bottom:568.068133pt;}
.y221{bottom:568.179467pt;}
.y50{bottom:571.167001pt;}
.ye5{bottom:571.694000pt;}
.yd5{bottom:577.324133pt;}
.y1ef{bottom:578.377509pt;}
.y248{bottom:579.011973pt;}
.y4f{bottom:579.163641pt;}
.y199{bottom:579.262000pt;}
.y88{bottom:582.704533pt;}
.y8c{bottom:583.697665pt;}
.y109{bottom:585.538480pt;}
.yee{bottom:586.651548pt;}
.y247{bottom:587.008613pt;}
.y4e{bottom:587.160281pt;}
.y119{bottom:587.405181pt;}
.y261{bottom:590.404667pt;}
.y1e3{bottom:591.443877pt;}
.y108{bottom:593.535120pt;}
.y1e8{bottom:594.266001pt;}
.y8b{bottom:594.892865pt;}
.y246{bottom:595.005253pt;}
.y23a{bottom:595.203200pt;}
.yc2{bottom:596.497002pt;}
.y1e7{bottom:599.439116pt;}
.y107{bottom:601.531760pt;}
.y245{bottom:603.001893pt;}
.y4d{bottom:603.153561pt;}
.y1af{bottom:603.415833pt;}
.yc1{bottom:606.092842pt;}
.y224{bottom:606.718293pt;}
.y243{bottom:608.470267pt;}
.y1ae{bottom:608.746900pt;}
.y106{bottom:609.528400pt;}
.y100{bottom:610.640918pt;}
.y244{bottom:610.998533pt;}
.y4c{bottom:611.150201pt;}
.y1ad{bottom:614.077966pt;}
.y223{bottom:614.714933pt;}
.y4b{bottom:619.146841pt;}
.y1ac{bottom:619.409033pt;}
.yff{bottom:620.236758pt;}
.yc{bottom:622.153067pt;}
.y1ab{bottom:624.740100pt;}
.y4a{bottom:627.143481pt;}
.y1aa{bottom:630.071166pt;}
.y174{bottom:630.089787pt;}
.ybc{bottom:632.428461pt;}
.y158{bottom:632.779200pt;}
.y201{bottom:634.553008pt;}
.y49{bottom:635.140121pt;}
.y8a{bottom:636.716267pt;}
.y15e{bottom:638.725333pt;}
.y173{bottom:639.685627pt;}
.y23e{bottom:640.022800pt;}
.y200{bottom:640.150608pt;}
.y281{bottom:640.817865pt;}
.y279{bottom:640.820578pt;}
.y157{bottom:642.375040pt;}
.y48{bottom:643.136761pt;}
.y1ff{bottom:645.748208pt;}
.y89{bottom:647.911467pt;}
.y172{bottom:649.281467pt;}
.yb{bottom:651.140667pt;}
.y1fe{bottom:651.345808pt;}
.y156{bottom:651.970880pt;}
.y141{bottom:652.402031pt;}
.y226{bottom:653.253760pt;}
.y23f{bottom:653.350533pt;}
.y1d8{bottom:654.686295pt;}
.y171{bottom:658.877307pt;}
.y225{bottom:661.250400pt;}
.y140{bottom:661.997871pt;}
.yd{bottom:664.938133pt;}
.y159{bottom:665.987733pt;}
.y47{bottom:666.906773pt;}
.y241{bottom:667.471267pt;}
.y170{bottom:668.473147pt;}
.y229{bottom:670.468427pt;}
.yf4{bottom:670.512533pt;}
.y155{bottom:671.162560pt;}
.y118{bottom:672.345067pt;}
.y228{bottom:674.134160pt;}
.yf3{bottom:674.427467pt;}
.y2c0{bottom:674.455467pt;}
.y46{bottom:674.903413pt;}
.y1a9{bottom:675.384700pt;}
.y240{bottom:675.467907pt;}
.y18e{bottom:675.788267pt;}
.y16f{bottom:678.068987pt;}
.y1a8{bottom:680.715767pt;}
.y154{bottom:680.758400pt;}
.y13f{bottom:681.189551pt;}
.y227{bottom:682.130800pt;}
.y45{bottom:682.900053pt;}
.y1a7{bottom:686.046833pt;}
.y25c{bottom:686.773493pt;}
.y16e{bottom:687.664827pt;}
.y117{bottom:689.798107pt;}
.y18d{bottom:689.891707pt;}
.y153{bottom:690.354240pt;}
.y13e{bottom:690.785391pt;}
.y44{bottom:690.896693pt;}
.y1a6{bottom:691.377900pt;}
.y23d{bottom:693.573893pt;}
.y25b{bottom:694.770133pt;}
.y1dc{bottom:694.779105pt;}
.y1e2{bottom:694.780238pt;}
.y36{bottom:695.670079pt;}
.y1a5{bottom:696.708967pt;}
.y16d{bottom:697.260667pt;}
.y43{bottom:698.893333pt;}
.y116{bottom:699.393947pt;}
.y152{bottom:699.950080pt;}
.y13d{bottom:700.381231pt;}
.y23c{bottom:701.570533pt;}
.y1a4{bottom:702.040033pt;}
.y1db{bottom:702.998247pt;}
.ye{bottom:705.037733pt;}
.y5{bottom:705.909380pt;}
.y16c{bottom:706.856507pt;}
.y42{bottom:706.889973pt;}
.yd4{bottom:707.002693pt;}
.y115{bottom:708.989787pt;}
.y18c{bottom:709.083387pt;}
.y7{bottom:709.181339pt;}
.y17e{bottom:709.453840pt;}
.y151{bottom:709.545920pt;}
.y1dd{bottom:709.770400pt;}
.y13c{bottom:709.977071pt;}
.y24f{bottom:713.317520pt;}
.y4{bottom:713.906020pt;}
.y1d9{bottom:713.992867pt;}
.y1de{bottom:713.994000pt;}
.y41{bottom:714.886613pt;}
.y22b{bottom:716.449493pt;}
.y16b{bottom:716.452347pt;}
.yd3{bottom:716.598533pt;}
.y2c5{bottom:716.908560pt;}
.y6{bottom:717.177979pt;}
.y242{bottom:717.201867pt;}
.y1df{bottom:717.991619pt;}
.y18b{bottom:718.679227pt;}
.y17d{bottom:719.049680pt;}
.y150{bottom:719.141760pt;}
.y24e{bottom:721.314160pt;}
.y1e0{bottom:722.656286pt;}
.y1da{bottom:724.213151pt;}
.y22a{bottom:724.446133pt;}
.y16a{bottom:726.048187pt;}
.yd2{bottom:726.194373pt;}
.y1e1{bottom:726.877809pt;}
.y38{bottom:727.210160pt;}
.y114{bottom:728.181467pt;}
.y17c{bottom:728.645520pt;}
.y14f{bottom:728.737600pt;}
.y13b{bottom:729.168751pt;}
.ybb{bottom:729.274476pt;}
.y24d{bottom:729.310800pt;}
.y1a3{bottom:730.028133pt;}
.y40{bottom:730.879893pt;}
.y37{bottom:733.874027pt;}
.y3{bottom:734.064217pt;}
.y35{bottom:735.206800pt;}
.y1a2{bottom:735.359200pt;}
.y169{bottom:735.644027pt;}
.yd1{bottom:735.790213pt;}
.y2c4{bottom:736.100240pt;}
.y22c{bottom:736.662533pt;}
.y18a{bottom:737.870907pt;}
.y17b{bottom:738.241360pt;}
.y14e{bottom:738.333440pt;}
.y13a{bottom:738.764591pt;}
.y3f{bottom:738.876533pt;}
.y24c{bottom:739.972827pt;}
.y1a1{bottom:740.690267pt;}
.y2{bottom:742.060857pt;}
.y22d{bottom:743.554133pt;}
.y1fd{bottom:743.724400pt;}
.y124{bottom:744.231013pt;}
.y1ed{bottom:745.197867pt;}
.y168{bottom:745.239867pt;}
.yd0{bottom:745.386053pt;}
.y1a0{bottom:746.021333pt;}
.y27a{bottom:746.163467pt;}
.y3e{bottom:746.873173pt;}
.y113{bottom:747.373147pt;}
.y189{bottom:747.466747pt;}
.y17a{bottom:747.837200pt;}
.y14d{bottom:747.929280pt;}
.y24b{bottom:747.969467pt;}
.y139{bottom:748.360431pt;}
.y1fc{bottom:749.322000pt;}
.y19f{bottom:751.352400pt;}
.y25d{bottom:751.851333pt;}
.y123{bottom:753.826853pt;}
.y1{bottom:754.726400pt;}
.y3d{bottom:754.869813pt;}
.y1fb{bottom:754.919600pt;}
.ycf{bottom:754.981893pt;}
.y2c3{bottom:755.291920pt;}
.yf5{bottom:756.587218pt;}
.y19e{bottom:756.683467pt;}
.y112{bottom:756.968987pt;}
.y14c{bottom:757.525120pt;}
.y138{bottom:757.956271pt;}
.y24a{bottom:758.040027pt;}
.y1fa{bottom:760.517200pt;}
.y19d{bottom:762.014533pt;}
.y3c{bottom:762.866453pt;}
.y25e{bottom:762.958000pt;}
.y122{bottom:763.422693pt;}
.yce{bottom:764.577733pt;}
.y2c2{bottom:764.887760pt;}
.y249{bottom:766.036667pt;}
.y111{bottom:766.564827pt;}
.y188{bottom:766.658427pt;}
.y175{bottom:766.958451pt;}
.yc3{bottom:767.098800pt;}
.y19c{bottom:767.345600pt;}
.y3b{bottom:770.863093pt;}
.y17f{bottom:770.891206pt;}
.y19b{bottom:772.676667pt;}
.y121{bottom:773.018533pt;}
.y2b9{bottom:773.357333pt;}
.y2b7{bottom:773.533867pt;}
.y294{bottom:773.539148pt;}
.y2c1{bottom:774.483600pt;}
.y110{bottom:776.160667pt;}
.y187{bottom:776.254267pt;}
.y14b{bottom:776.716800pt;}
.y292{bottom:776.865733pt;}
.y137{bottom:777.147951pt;}
.y3a{bottom:778.859733pt;}
.y8{bottom:778.966133pt;}
.y2bb{bottom:783.653467pt;}
.h34{height:0.000000pt;}
.h36{height:0.018667pt;}
.h39{height:1.665333pt;}
.h3b{height:3.614667pt;}
.h35{height:5.100000pt;}
.h3a{height:7.596000pt;}
.h16{height:11.373290pt;}
.h17{height:11.373348pt;}
.h3c{height:11.627733pt;}
.h2c{height:16.736824pt;}
.h2d{height:16.736974pt;}
.h27{height:19.127760pt;}
.h28{height:19.127815pt;}
.h2a{height:19.127819pt;}
.h5{height:19.127867pt;}
.h29{height:19.127886pt;}
.h15{height:19.128015pt;}
.h8{height:19.475664pt;}
.h21{height:20.882638pt;}
.h22{height:22.553211pt;}
.h2f{height:23.062002pt;}
.h31{height:23.909577pt;}
.h32{height:23.909673pt;}
.h1e{height:23.909699pt;}
.h1b{height:23.909701pt;}
.h1a{height:23.909798pt;}
.h1c{height:23.909921pt;}
.h3{height:23.909954pt;}
.h19{height:23.910008pt;}
.h1d{height:23.910039pt;}
.h1f{height:23.910056pt;}
.h14{height:23.910128pt;}
.h11{height:25.301141pt;}
.h20{height:26.044574pt;}
.h33{height:26.301110pt;}
.h4{height:28.691562pt;}
.h25{height:28.691752pt;}
.h12{height:29.700986pt;}
.h7{height:30.630038pt;}
.h13{height:30.935258pt;}
.ha{height:33.473648pt;}
.h2{height:34.715287pt;}
.h26{height:36.907603pt;}
.he{height:40.489307pt;}
.h30{height:41.233580pt;}
.hd{height:43.037821pt;}
.h2e{height:48.254294pt;}
.hb{height:50.210472pt;}
.h2b{height:53.556880pt;}
.hc{height:57.383602pt;}
.hf{height:63.658781pt;}
.h6{height:75.003074pt;}
.h9{height:86.075163pt;}
.h18{height:88.879828pt;}
.h23{height:96.907590pt;}
.h24{height:110.185831pt;}
.h10{height:113.439515pt;}
.h38{height:144.530381pt;}
.h37{height:181.445333pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w6{width:0.000000pt;}
.w7{width:0.060000pt;}
.wb{width:1.273333pt;}
.wa{width:1.665333pt;}
.wd{width:5.756000pt;}
.we{width:6.412000pt;}
.w8{width:7.862667pt;}
.w5{width:10.461333pt;}
.wf{width:11.328000pt;}
.wc{width:19.625333pt;}
.w1{width:28.030667pt;}
.w9{width:31.557333pt;}
.w3{width:32.838667pt;}
.w4{width:44.432000pt;}
.w2{width:49.240000pt;}
.w0{width:1122.666667pt;}
.xc6{left:-3.988000pt;}
.xcc{left:-2.369333pt;}
.xc0{left:-1.050400pt;}
.x0{left:0.000000pt;}
.xbe{left:4.808400pt;}
.x7f{left:9.269733pt;}
.x76{left:10.956933pt;}
.x80{left:13.410667pt;}
.x61{left:14.319333pt;}
.xd7{left:15.557467pt;}
.x18{left:16.746800pt;}
.x8d{left:18.207067pt;}
.x3f{left:19.199467pt;}
.x12{left:20.098800pt;}
.x4f{left:21.729600pt;}
.x2f{left:23.912000pt;}
.x31{left:25.648272pt;}
.xc8{left:29.324400pt;}
.x48{left:31.396667pt;}
.x19{left:32.931918pt;}
.xb0{left:34.975372pt;}
.x6a{left:36.267733pt;}
.x4d{left:39.840380pt;}
.x2e{left:41.617067pt;}
.x92{left:45.829460pt;}
.xa1{left:49.038267pt;}
.x67{left:50.173600pt;}
.xa5{left:51.148133pt;}
.x8e{left:57.631067pt;}
.x8f{left:59.408305pt;}
.x90{left:63.237996pt;}
.x66{left:64.292533pt;}
.x87{left:65.578479pt;}
.x88{left:66.615371pt;}
.x33{left:68.685726pt;}
.x89{left:74.907845pt;}
.x8a{left:76.387216pt;}
.xd3{left:77.532000pt;}
.x85{left:81.023067pt;}
.x65{left:81.927333pt;}
.x4c{left:85.627662pt;}
.x86{left:92.220267pt;}
.x91{left:96.725638pt;}
.xd2{left:99.322667pt;}
.x3d{left:105.004800pt;}
.x98{left:114.356800pt;}
.xa2{left:116.343320pt;}
.xca{left:144.719200pt;}
.x62{left:147.595333pt;}
.xb4{left:170.757467pt;}
.x23{left:171.857600pt;}
.x1a{left:175.335371pt;}
.x2c{left:184.889467pt;}
.xbb{left:192.023630pt;}
.x15{left:197.800347pt;}
.x54{left:198.914800pt;}
.x4e{left:205.126800pt;}
.x7a{left:209.736937pt;}
.x79{left:211.744067pt;}
.x78{left:217.741467pt;}
.x6{left:221.562533pt;}
.xb5{left:233.447333pt;}
.x13{left:235.118000pt;}
.xa9{left:238.577867pt;}
.xbd{left:241.873333pt;}
.xac{left:245.248397pt;}
.xab{left:246.354599pt;}
.xaa{left:249.320020pt;}
.xa7{left:255.508932pt;}
.xa6{left:258.840866pt;}
.x2b{left:274.851067pt;}
.x1{left:275.776000pt;}
.x14{left:277.766747pt;}
.xc3{left:283.461505pt;}
.x77{left:295.919467pt;}
.xc7{left:305.012000pt;}
.x24{left:316.795867pt;}
.x47{left:320.858768pt;}
.x46{left:322.937867pt;}
.x49{left:324.116800pt;}
.xc9{left:334.904000pt;}
.x68{left:338.847067pt;}
.x5{left:340.299867pt;}
.x1e{left:355.594728pt;}
.x4{left:365.284213pt;}
.x52{left:368.914933pt;}
.xa0{left:370.457733pt;}
.xa8{left:371.567867pt;}
.x60{left:372.736667pt;}
.x7{left:377.853415pt;}
.x2{left:392.272873pt;}
.x58{left:401.375067pt;}
.x1f{left:405.221628pt;}
.x3{left:407.266573pt;}
.xb9{left:410.490581pt;}
.x6c{left:411.483467pt;}
.xb7{left:412.489715pt;}
.x6b{left:413.578667pt;}
.x2a{left:414.522267pt;}
.xa3{left:426.834267pt;}
.x5e{left:434.774267pt;}
.xd9{left:441.860605pt;}
.x8{left:447.185600pt;}
.xba{left:453.600267pt;}
.x22{left:455.065600pt;}
.x1b{left:456.399868pt;}
.x32{left:460.499867pt;}
.x28{left:467.226795pt;}
.x25{left:468.554533pt;}
.xa4{left:470.395733pt;}
.x63{left:491.750667pt;}
.x55{left:495.634166pt;}
.xc1{left:503.862667pt;}
.xb2{left:508.640924pt;}
.x64{left:511.276267pt;}
.xc2{left:513.136267pt;}
.xbf{left:514.186667pt;}
.x20{left:521.172328pt;}
.x53{left:534.917600pt;}
.x16{left:536.323600pt;}
.x3a{left:538.016173pt;}
.xaf{left:539.043067pt;}
.x9f{left:544.827333pt;}
.xb{left:545.754267pt;}
.xae{left:547.706133pt;}
.xc4{left:550.691883pt;}
.x38{left:552.010293pt;}
.x3c{left:553.529655pt;}
.x37{left:560.006933pt;}
.x39{left:562.006093pt;}
.x9d{left:565.046667pt;}
.x3b{left:566.497539pt;}
.x9c{left:567.697600pt;}
.x4b{left:593.405333pt;}
.x4a{left:595.404400pt;}
.x26{left:603.321733pt;}
.x29{left:606.590267pt;}
.x36{left:608.786798pt;}
.x35{left:614.112533pt;}
.x27{left:616.690000pt;}
.x2d{left:625.531600pt;}
.x1c{left:634.148293pt;}
.x9a{left:635.832533pt;}
.xd1{left:636.980545pt;}
.x9b{left:645.421733pt;}
.x96{left:646.313831pt;}
.x95{left:652.974943pt;}
.x21{left:663.559788pt;}
.xb8{left:665.044227pt;}
.xb6{left:666.043794pt;}
.x6e{left:674.783585pt;}
.x50{left:681.428400pt;}
.x51{left:684.093645pt;}
.x30{left:691.464133pt;}
.xce{left:704.625200pt;}
.xbc{left:709.572862pt;}
.xcf{left:712.621840pt;}
.x1d{left:716.674804pt;}
.xd0{left:720.618480pt;}
.xcd{left:737.058000pt;}
.x6f{left:740.569867pt;}
.x99{left:752.051733pt;}
.x34{left:755.277067pt;}
.xd4{left:766.438933pt;}
.x5c{left:772.629600pt;}
.x5f{left:784.344533pt;}
.x5a{left:789.209200pt;}
.x56{left:797.941509pt;}
.x5b{left:800.964133pt;}
.x42{left:805.169845pt;}
.xc5{left:814.898667pt;}
.x8c{left:835.075879pt;}
.x70{left:839.214533pt;}
.xd6{left:846.264800pt;}
.x45{left:853.029097pt;}
.x72{left:854.621529pt;}
.x84{left:863.398929pt;}
.x43{left:868.968586pt;}
.x81{left:870.920933pt;}
.x74{left:877.566288pt;}
.x75{left:880.023733pt;}
.x5d{left:880.976667pt;}
.x82{left:888.728018pt;}
.x71{left:889.852684pt;}
.x83{left:892.586006pt;}
.x8b{left:897.936133pt;}
.xcb{left:907.705467pt;}
.xd8{left:908.652641pt;}
.x7e{left:910.010933pt;}
.x57{left:915.556920pt;}
.x9{left:918.354133pt;}
.xd5{left:933.614996pt;}
.xb3{left:935.440697pt;}
.xb1{left:936.433067pt;}
.xa{left:940.751200pt;}
.x40{left:944.443067pt;}
.x93{left:949.860827pt;}
.x94{left:969.552267pt;}
.xad{left:975.722960pt;}
.x9e{left:976.642533pt;}
.x7d{left:986.971467pt;}
.x7c{left:1001.058933pt;}
.x10{left:1005.496933pt;}
.xc{left:1014.846400pt;}
.x17{left:1016.712133pt;}
.xd{left:1020.177467pt;}
.x7b{left:1024.742133pt;}
.x11{left:1041.321733pt;}
.x97{left:1042.421200pt;}
.x6d{left:1047.559067pt;}
.x69{left:1048.538667pt;}
.x3e{left:1051.556850pt;}
.x73{left:1052.616800pt;}
.x59{left:1054.229393pt;}
.xf{left:1057.367930pt;}
.xe{left:1061.133333pt;}
.x41{left:1075.992437pt;}
.x44{left:1084.874986pt;}
}




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