
    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_356e790ef274604a57c57c43.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_a199d7f2aa1241d33c125ccb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_db136150240d579987c0f90a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_6c8f32284c425e40de7f4542.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_56939cb1bf6fd8b37f8350c4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_245728e036bca9e4714ed470.woff')format("woff");}.ff6{font-family:ff6;line-height:1.362000;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_a2e113565aa67ba84fbbf1dd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_4603bdd0aa97b82b7cecf2e4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.862000;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_5c043a5545f20a38a6020398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.249412,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249412,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249412,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249804,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249804,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249804,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.899963px;}
.v5{vertical-align:-17.849991px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.768760px;}
.v6{vertical-align:17.849991px;}
.v3{vertical-align:18.876879px;}
.v2{vertical-align:21.000000px;}
.v9{vertical-align:22.512000px;}
.v8{vertical-align:44.982000px;}
.ls65{letter-spacing:-4.968000px;}
.ls4d{letter-spacing:-3.071477px;}
.ls8b{letter-spacing:-2.565000px;}
.ls30{letter-spacing:-2.268000px;}
.ls5e{letter-spacing:-1.890000px;}
.ls58{letter-spacing:-1.501584px;}
.ls42{letter-spacing:-1.352912px;}
.ls34{letter-spacing:-1.188000px;}
.ls7b{letter-spacing:-1.125000px;}
.ls5a{letter-spacing:-1.098720px;}
.ls88{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-0.972000px;}
.ls5b{letter-spacing:-0.915600px;}
.ls32{letter-spacing:-0.864000px;}
.ls31{letter-spacing:-0.810000px;}
.ls5f{letter-spacing:-0.798000px;}
.ls79{letter-spacing:-0.765000px;}
.ls53{letter-spacing:-0.732480px;}
.ls7a{letter-spacing:-0.720000px;}
.ls60{letter-spacing:-0.714000px;}
.ls2f{letter-spacing:-0.648000px;}
.ls8a{letter-spacing:-0.630000px;}
.ls3e{letter-spacing:-0.546000px;}
.ls35{letter-spacing:-0.540000px;}
.ls48{letter-spacing:-0.511913px;}
.ls3c{letter-spacing:-0.504000px;}
.ls8f{letter-spacing:-0.495000px;}
.ls36{letter-spacing:-0.486000px;}
.ls27{letter-spacing:-0.378000px;}
.ls8e{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.324000px;}
.ls3d{letter-spacing:-0.294000px;}
.ls12{letter-spacing:-0.270000px;}
.ls73{letter-spacing:-0.225000px;}
.ls15{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.210000px;}
.ls78{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.175500px;}
.ls3b{letter-spacing:-0.168000px;}
.lsd{letter-spacing:-0.162000px;}
.ls71{letter-spacing:-0.140400px;}
.ls8c{letter-spacing:-0.135000px;}
.ls3a{letter-spacing:-0.126000px;}
.ls4b{letter-spacing:-0.109696px;}
.ls16{letter-spacing:-0.108000px;}
.ls72{letter-spacing:-0.090000px;}
.ls4a{letter-spacing:-0.073130px;}
.ls17{letter-spacing:-0.070200px;}
.lsf{letter-spacing:-0.054000px;}
.ls74{letter-spacing:-0.045000px;}
.ls4e{letter-spacing:-0.036565px;}
.ls66{letter-spacing:-0.035100px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013772px;}
.ls2{letter-spacing:0.013956px;}
.lsb{letter-spacing:0.018028px;}
.ls1{letter-spacing:0.027516px;}
.ls63{letter-spacing:0.035100px;}
.ls2d{letter-spacing:0.040527px;}
.ls75{letter-spacing:0.045000px;}
.ls8{letter-spacing:0.052122px;}
.ls10{letter-spacing:0.054000px;}
.ls84{letter-spacing:0.054045px;}
.ls64{letter-spacing:0.070200px;}
.ls5d{letter-spacing:0.073248px;}
.ls76{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.105300px;}
.ls1c{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.121772px;}
.ls1a{letter-spacing:0.122850px;}
.ls2a{letter-spacing:0.126000px;}
.ls6b{letter-spacing:0.135000px;}
.ls21{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.156902px;}
.ls61{letter-spacing:0.157950px;}
.ls9{letter-spacing:0.159568px;}
.ls22{letter-spacing:0.162000px;}
.ls38{letter-spacing:0.168000px;}
.ls1f{letter-spacing:0.175500px;}
.ls69{letter-spacing:0.180000px;}
.ls6a{letter-spacing:0.202500px;}
.lsa{letter-spacing:0.210600px;}
.ls5{letter-spacing:0.216000px;}
.ls6d{letter-spacing:0.225000px;}
.ls62{letter-spacing:0.245700px;}
.ls39{letter-spacing:0.252000px;}
.ls68{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.270000px;}
.ls7d{letter-spacing:0.315000px;}
.ls14{letter-spacing:0.324000px;}
.ls67{letter-spacing:0.324729px;}
.ls25{letter-spacing:0.351000px;}
.ls77{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378000px;}
.ls7f{letter-spacing:0.405000px;}
.ls1e{letter-spacing:0.432000px;}
.ls6f{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.456300px;}
.ls28{letter-spacing:0.486000px;}
.ls7c{letter-spacing:0.495000px;}
.ls24{letter-spacing:0.540000px;}
.ls8d{letter-spacing:0.585000px;}
.ls52{letter-spacing:0.585984px;}
.ls11{letter-spacing:0.594000px;}
.ls86{letter-spacing:0.630000px;}
.ls1d{letter-spacing:0.648000px;}
.ls45{letter-spacing:0.658174px;}
.ls18{letter-spacing:0.702000px;}
.ls26{letter-spacing:0.756000px;}
.ls89{letter-spacing:0.765000px;}
.ls29{letter-spacing:0.810000px;}
.ls87{letter-spacing:0.823463px;}
.ls46{letter-spacing:0.841000px;}
.ls20{letter-spacing:0.864000px;}
.ls81{letter-spacing:0.872988px;}
.ls3f{letter-spacing:0.987260px;}
.ls50{letter-spacing:1.025472px;}
.ls6c{letter-spacing:1.048500px;}
.ls44{letter-spacing:1.060391px;}
.ls55{letter-spacing:1.062096px;}
.ls2c{letter-spacing:1.243217px;}
.ls7e{letter-spacing:1.305000px;}
.ls6e{letter-spacing:1.345500px;}
.ls82{letter-spacing:1.395000px;}
.ls57{letter-spacing:1.428336px;}
.ls80{letter-spacing:1.440000px;}
.ls70{letter-spacing:1.489500px;}
.ls40{letter-spacing:1.535738px;}
.ls51{letter-spacing:1.831200px;}
.ls85{letter-spacing:1.863000px;}
.ls41{letter-spacing:1.937956px;}
.ls54{letter-spacing:2.746800px;}
.ls0{letter-spacing:3.000000px;}
.ls83{letter-spacing:3.537000px;}
.ls43{letter-spacing:42.452197px;}
.ls2b{letter-spacing:51.266704px;}
.ls4c{letter-spacing:56.383538px;}
.ls4f{letter-spacing:63.623448px;}
.ls47{letter-spacing:66.731490px;}
.ls49{letter-spacing:70.351445px;}
.ls5c{letter-spacing:78.997968px;}
.ls59{letter-spacing:96.138000px;}
.ls56{letter-spacing:100.203264px;}
.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;}
}
.wsa1{word-spacing:-108.480288px;}
.wsa4{word-spacing:-104.415024px;}
.wsa9{word-spacing:-87.274992px;}
.ws94{word-spacing:-78.615180px;}
.ws91{word-spacing:-74.995225px;}
.ws9a{word-spacing:-71.887183px;}
.ws97{word-spacing:-64.647274px;}
.ws8c{word-spacing:-50.715932px;}
.ws1{word-spacing:-15.000000px;}
.wsd2{word-spacing:-13.860000px;}
.ws62{word-spacing:-13.596000px;}
.ws15{word-spacing:-12.528000px;}
.ws61{word-spacing:-12.474000px;}
.ws29{word-spacing:-12.258000px;}
.ws74{word-spacing:-12.096000px;}
.wsd7{word-spacing:-12.042000px;}
.ws1b{word-spacing:-11.988000px;}
.wse{word-spacing:-11.934000px;}
.ws73{word-spacing:-11.880000px;}
.ws72{word-spacing:-11.826000px;}
.ws6c{word-spacing:-11.718000px;}
.ws6e{word-spacing:-11.556000px;}
.ws6f{word-spacing:-11.502000px;}
.ws70{word-spacing:-11.394000px;}
.ws71{word-spacing:-11.178000px;}
.wsd3{word-spacing:-10.440000px;}
.wsd4{word-spacing:-10.417500px;}
.wsfb{word-spacing:-10.395000px;}
.wsf1{word-spacing:-10.350000px;}
.wsef{word-spacing:-10.260000px;}
.wsf3{word-spacing:-10.215000px;}
.ws8a{word-spacing:-10.201691px;}
.wsf4{word-spacing:-10.170000px;}
.ws9d{word-spacing:-10.108224px;}
.ws6d{word-spacing:-10.098000px;}
.wsd5{word-spacing:-10.080000px;}
.ws10d{word-spacing:-9.945000px;}
.wsee{word-spacing:-9.855000px;}
.wsf0{word-spacing:-9.765000px;}
.ws0{word-spacing:-9.600000px;}
.ws93{word-spacing:-9.506952px;}
.wsa0{word-spacing:-9.339120px;}
.ws8d{word-spacing:-9.324126px;}
.ws9b{word-spacing:-9.302496px;}
.ws89{word-spacing:-9.250996px;}
.wsd6{word-spacing:-9.180000px;}
.ws7d{word-spacing:-9.114000px;}
.ws8f{word-spacing:-9.104735px;}
.ws88{word-spacing:-8.988000px;}
.ws9c{word-spacing:-8.863008px;}
.ws7{word-spacing:-8.424000px;}
.wsaa{word-spacing:-8.350272px;}
.ws4b{word-spacing:-8.318700px;}
.ws99{word-spacing:-8.227170px;}
.ws5{word-spacing:-8.178300px;}
.ws96{word-spacing:-8.154040px;}
.ws24{word-spacing:-8.143200px;}
.ws25{word-spacing:-8.108100px;}
.wsc3{word-spacing:-8.073000px;}
.wsc2{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.wsc5{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.967700px;}
.wsc4{word-spacing:-7.932600px;}
.ws6{word-spacing:-7.897500px;}
.wsd1{word-spacing:-7.827300px;}
.ws4{word-spacing:-7.792200px;}
.wsf2{word-spacing:-7.740000px;}
.ws9e{word-spacing:-7.544544px;}
.wsa8{word-spacing:-7.361424px;}
.wsb1{word-spacing:-7.224000px;}
.wsa6{word-spacing:-7.178304px;}
.ws8b{word-spacing:-6.910823px;}
.wsa3{word-spacing:-6.775440px;}
.ws8{word-spacing:-6.630000px;}
.ws102{word-spacing:-6.255000px;}
.wsf6{word-spacing:-6.120000px;}
.wse5{word-spacing:-6.030000px;}
.wsec{word-spacing:-5.985000px;}
.wse8{word-spacing:-5.940000px;}
.wsf5{word-spacing:-5.895000px;}
.ws109{word-spacing:-5.625000px;}
.wsc1{word-spacing:-4.284000px;}
.wscb{word-spacing:-2.214000px;}
.ws5f{word-spacing:-2.106000px;}
.wsac{word-spacing:-1.937956px;}
.wsbf{word-spacing:-1.890000px;}
.wsaf{word-spacing:-1.831200px;}
.wsab{word-spacing:-1.535738px;}
.ws5a{word-spacing:-1.458000px;}
.wsc{word-spacing:-1.242000px;}
.wsd{word-spacing:-1.188000px;}
.wscc{word-spacing:-1.134000px;}
.ws59{word-spacing:-1.080000px;}
.wsdc{word-spacing:-1.035000px;}
.ws13{word-spacing:-1.026000px;}
.wsdb{word-spacing:-0.990000px;}
.ws26{word-spacing:-0.972000px;}
.ws2b{word-spacing:-0.918000px;}
.ws10a{word-spacing:-0.900000px;}
.ws5e{word-spacing:-0.864000px;}
.ws106{word-spacing:-0.855000px;}
.ws14{word-spacing:-0.810000px;}
.ws100{word-spacing:-0.765000px;}
.ws5c{word-spacing:-0.756000px;}
.ws112{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.702000px;}
.ws103{word-spacing:-0.675000px;}
.ws12{word-spacing:-0.648000px;}
.ws65{word-spacing:-0.594000px;}
.ws10c{word-spacing:-0.585000px;}
.wscd{word-spacing:-0.540000px;}
.wseb{word-spacing:-0.495000px;}
.ws64{word-spacing:-0.486000px;}
.wsf7{word-spacing:-0.450000px;}
.ws55{word-spacing:-0.432000px;}
.wsfa{word-spacing:-0.405000px;}
.ws3d{word-spacing:-0.378000px;}
.wsdf{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.324000px;}
.ws111{word-spacing:-0.315000px;}
.ws6b{word-spacing:-0.270000px;}
.wsda{word-spacing:-0.264000px;}
.wse2{word-spacing:-0.225000px;}
.wsa{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.210600px;}
.wse0{word-spacing:-0.180000px;}
.ws2f{word-spacing:-0.175500px;}
.wsbe{word-spacing:-0.162000px;}
.ws2e{word-spacing:-0.140400px;}
.wsfd{word-spacing:-0.135000px;}
.wsf{word-spacing:-0.108000px;}
.ws10f{word-spacing:-0.090000px;}
.wsd8{word-spacing:-0.070200px;}
.ws66{word-spacing:-0.054000px;}
.ws107{word-spacing:-0.045000px;}
.wsd0{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.wscf{word-spacing:0.035100px;}
.wsde{word-spacing:0.045000px;}
.ws11{word-spacing:0.054000px;}
.ws18{word-spacing:0.070200px;}
.ws110{word-spacing:0.090000px;}
.ws4d{word-spacing:0.108000px;}
.wsf8{word-spacing:0.135000px;}
.ws39{word-spacing:0.162000px;}
.wsd9{word-spacing:0.175500px;}
.ws10e{word-spacing:0.180000px;}
.ws3e{word-spacing:0.216000px;}
.wsdd{word-spacing:0.225000px;}
.ws4c{word-spacing:0.270000px;}
.ws50{word-spacing:0.324000px;}
.ws45{word-spacing:0.378000px;}
.wse6{word-spacing:0.405000px;}
.ws35{word-spacing:0.432000px;}
.ws6a{word-spacing:0.486000px;}
.wsc0{word-spacing:0.540000px;}
.ws101{word-spacing:0.585000px;}
.ws53{word-spacing:0.594000px;}
.ws22{word-spacing:0.612000px;}
.ws105{word-spacing:0.630000px;}
.ws30{word-spacing:0.648000px;}
.wse3{word-spacing:0.675000px;}
.ws16{word-spacing:0.702000px;}
.wse9{word-spacing:0.720000px;}
.ws67{word-spacing:0.756000px;}
.ws49{word-spacing:0.864000px;}
.wse1{word-spacing:0.945000px;}
.ws4f{word-spacing:0.972000px;}
.wse4{word-spacing:0.990000px;}
.ws51{word-spacing:1.026000px;}
.wsea{word-spacing:1.035000px;}
.ws54{word-spacing:1.080000px;}
.wsed{word-spacing:1.125000px;}
.ws2c{word-spacing:1.134000px;}
.wsf9{word-spacing:1.170000px;}
.ws10{word-spacing:1.188000px;}
.ws104{word-spacing:1.215000px;}
.wsb{word-spacing:1.242000px;}
.wsfc{word-spacing:1.305000px;}
.ws56{word-spacing:1.350000px;}
.wsad{word-spacing:1.352912px;}
.wse7{word-spacing:1.395000px;}
.ws114{word-spacing:1.404000px;}
.ws11c{word-spacing:1.458000px;}
.ws108{word-spacing:1.485000px;}
.ws10b{word-spacing:1.530000px;}
.ws19{word-spacing:1.620000px;}
.ws52{word-spacing:1.674000px;}
.ws4e{word-spacing:1.782000px;}
.ws33{word-spacing:1.890000px;}
.ws36{word-spacing:1.998000px;}
.ws5d{word-spacing:2.052000px;}
.wsc6{word-spacing:2.106000px;}
.ws40{word-spacing:2.214000px;}
.ws63{word-spacing:2.268000px;}
.ws1a{word-spacing:2.322000px;}
.ws38{word-spacing:2.376000px;}
.ws113{word-spacing:2.430000px;}
.wsfe{word-spacing:2.520000px;}
.ws2d{word-spacing:2.538000px;}
.wsff{word-spacing:2.565000px;}
.ws48{word-spacing:2.592000px;}
.ws31{word-spacing:2.808000px;}
.ws117{word-spacing:3.024000px;}
.ws118{word-spacing:3.132000px;}
.ws47{word-spacing:3.186000px;}
.ws41{word-spacing:3.348000px;}
.ws4a{word-spacing:3.510000px;}
.ws34{word-spacing:3.564000px;}
.ws60{word-spacing:3.618000px;}
.ws28{word-spacing:3.726000px;}
.ws3b{word-spacing:3.834000px;}
.ws3f{word-spacing:3.942000px;}
.ws3a{word-spacing:3.996000px;}
.ws23{word-spacing:4.131000px;}
.wsce{word-spacing:4.158000px;}
.ws3c{word-spacing:4.482000px;}
.wsc7{word-spacing:4.536000px;}
.ws43{word-spacing:4.590000px;}
.wsc9{word-spacing:4.806000px;}
.ws1e{word-spacing:4.845000px;}
.ws8e{word-spacing:4.863172px;}
.ws5b{word-spacing:4.914000px;}
.ws32{word-spacing:5.022000px;}
.ws46{word-spacing:5.076000px;}
.wsc8{word-spacing:5.238000px;}
.ws2a{word-spacing:5.454000px;}
.ws37{word-spacing:5.562000px;}
.ws11b{word-spacing:5.670000px;}
.ws27{word-spacing:5.886000px;}
.ws42{word-spacing:6.048000px;}
.wsca{word-spacing:6.210000px;}
.ws11d{word-spacing:6.264000px;}
.ws119{word-spacing:6.480000px;}
.ws11a{word-spacing:6.750000px;}
.ws1f{word-spacing:8.313000px;}
.ws68{word-spacing:8.478000px;}
.ws58{word-spacing:8.694000px;}
.ws57{word-spacing:8.802000px;}
.ws69{word-spacing:11.664000px;}
.ws115{word-spacing:11.826000px;}
.ws21{word-spacing:11.985000px;}
.ws116{word-spacing:12.366000px;}
.ws20{word-spacing:13.260000px;}
.wsae{word-spacing:15.282000px;}
.ws1d{word-spacing:15.402000px;}
.ws90{word-spacing:21.098117px;}
.wsb3{word-spacing:46.956000px;}
.wsbc{word-spacing:47.082000px;}
.ws98{word-spacing:60.003493px;}
.ws92{word-spacing:60.186319px;}
.ws95{word-spacing:61.466101px;}
.ws9f{word-spacing:66.289440px;}
.wsa5{word-spacing:66.619056px;}
.wsa7{word-spacing:69.072864px;}
.wsb9{word-spacing:76.902000px;}
.ws76{word-spacing:76.986000px;}
.wsa2{word-spacing:84.601440px;}
.ws82{word-spacing:85.344000px;}
.ws7f{word-spacing:107.436000px;}
.ws83{word-spacing:108.864000px;}
.ws80{word-spacing:109.704000px;}
.ws75{word-spacing:110.040000px;}
.wsbd{word-spacing:127.890000px;}
.wsb2{word-spacing:131.884200px;}
.ws85{word-spacing:133.224000px;}
.ws7e{word-spacing:136.374000px;}
.wsb8{word-spacing:138.474000px;}
.ws7b{word-spacing:139.650000px;}
.ws78{word-spacing:147.168000px;}
.ws7a{word-spacing:149.730000px;}
.ws77{word-spacing:152.166000px;}
.ws7c{word-spacing:152.964000px;}
.ws79{word-spacing:160.104000px;}
.ws86{word-spacing:165.522000px;}
.wsbb{word-spacing:166.152000px;}
.ws84{word-spacing:178.038000px;}
.ws87{word-spacing:178.584000px;}
.ws81{word-spacing:178.668000px;}
.wsb7{word-spacing:269.346000px;}
.wsb5{word-spacing:311.262000px;}
.wsb4{word-spacing:313.530000px;}
.wsb6{word-spacing:317.268000px;}
.wsb0{word-spacing:372.918000px;}
.wsba{word-spacing:415.001990px;}
._2a{margin-left:-101.708068px;}
._2b{margin-left:-95.771052px;}
._2c{margin-left:-80.496348px;}
._26{margin-left:-70.705122px;}
._25{margin-left:-67.679717px;}
._28{margin-left:-63.989100px;}
._27{margin-left:-55.216683px;}
._24{margin-left:-42.853624px;}
._29{margin-left:-20.952007px;}
._15{margin-left:-17.725212px;}
._13{margin-left:-16.677628px;}
._a{margin-left:-15.666000px;}
._9{margin-left:-13.431600px;}
._8{margin-left:-11.994626px;}
._5{margin-left:-10.292400px;}
._12{margin-left:-8.687126px;}
._7{margin-left:-6.999000px;}
._10{margin-left:-5.956238px;}
._3{margin-left:-4.208974px;}
._2{margin-left:-3.073200px;}
._0{margin-left:-1.876800px;}
._4{width:1.059600px;}
._c{width:2.453100px;}
._b{width:3.498600px;}
._17{width:4.664374px;}
._d{width:5.808000px;}
._50{width:7.450200px;}
._18{width:8.476838px;}
._51{width:10.059000px;}
._6{width:11.093451px;}
._4f{width:12.893974px;}
._4e{width:13.995000px;}
._19{width:15.232174px;}
._4d{width:17.055000px;}
._f{width:18.629989px;}
._16{width:33.550800px;}
._11{width:39.544800px;}
._14{width:42.376800px;}
._e{width:48.046710px;}
._39{width:56.490000px;}
._2d{width:75.502800px;}
._3f{width:80.850000px;}
._2f{width:85.890000px;}
._21{width:95.004000px;}
._1c{width:118.482000px;}
._1a{width:133.644000px;}
._44{width:136.710000px;}
._22{width:141.792000px;}
._1e{width:143.724000px;}
._1b{width:161.984400px;}
._46{width:165.709194px;}
._32{width:169.326900px;}
._1d{width:183.036000px;}
._20{width:185.514000px;}
._23{width:187.782000px;}
._36{width:189.486900px;}
._1f{width:196.560000px;}
._40{width:215.927994px;}
._37{width:219.096900px;}
._31{width:231.649193px;}
._34{width:239.256900px;}
._43{width:240.311401px;}
._4a{width:256.955994px;}
._45{width:259.893001px;}
._47{width:261.180900px;}
._3a{width:267.926959px;}
._48{width:274.741194px;}
._41{width:281.466900px;}
._4b{width:289.976974px;}
._3c{width:304.645193px;}
._33{width:312.186000px;}
._38{width:332.346000px;}
._1{width:341.092800px;}
._2e{width:348.725993px;}
._35{width:352.506000px;}
._49{width:354.269990px;}
._3b{width:362.922000px;}
._30{width:388.290000px;}
._3d{width:391.579194px;}
._42{width:394.589990px;}
._4c{width:425.165990px;}
._3e{width:430.374000px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsb{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fsc{font-size:36.565200px;}
.fse{font-size:36.624000px;}
.fs3{font-size:39.000000px;}
.fsd{font-size:40.527000px;}
.fsf{font-size:40.590600px;}
.fsa{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:2.804526px;}
.y12a{bottom:2.808738px;}
.ybc{bottom:3.199200px;}
.y38{bottom:3.199350px;}
.y102{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y37{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ybd{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y36{bottom:68.037452px;}
.y79{bottom:71.045552px;}
.ybb{bottom:75.101244px;}
.y11d{bottom:76.977722px;}
.y101{bottom:80.014648px;}
.y23a{bottom:82.662034px;}
.y35{bottom:83.037452px;}
.y78{bottom:86.045552px;}
.y12b{bottom:86.296350px;}
.y1ea{bottom:86.865148px;}
.yba{bottom:90.099744px;}
.y130{bottom:91.618347px;}
.y1a8{bottom:93.641248px;}
.y100{bottom:95.013148px;}
.y239{bottom:95.408284px;}
.y34{bottom:98.037452px;}
.y1e9{bottom:99.611398px;}
.y77{bottom:101.048552px;}
.yb9{bottom:105.098244px;}
.y12f{bottom:106.616847px;}
.y238{bottom:108.154534px;}
.y1a7{bottom:108.641248px;}
.yff{bottom:110.011648px;}
.y1e8{bottom:112.357648px;}
.y33{bottom:113.037452px;}
.y13b{bottom:113.569650px;}
.y76{bottom:116.047052px;}
.y261{bottom:117.662404px;}
.yb8{bottom:120.096744px;}
.y237{bottom:120.900784px;}
.y12e{bottom:121.615347px;}
.y1a6{bottom:123.642748px;}
.yfe{bottom:125.010148px;}
.y1e7{bottom:125.103898px;}
.y32{bottom:128.037452px;}
.y13a{bottom:128.568150px;}
.y75{bottom:131.045552px;}
.y236{bottom:133.647034px;}
.yb7{bottom:135.095244px;}
.y12d{bottom:136.613847px;}
.y1e6{bottom:137.850148px;}
.y1a5{bottom:138.641248px;}
.yfd{bottom:140.008648px;}
.y139{bottom:143.566650px;}
.y74{bottom:146.044052px;}
.y235{bottom:146.393284px;}
.y31{bottom:147.493950px;}
.y260{bottom:147.659403px;}
.yb6{bottom:150.093744px;}
.y1e5{bottom:150.596398px;}
.y12c{bottom:151.612347px;}
.y1a4{bottom:153.641248px;}
.yfc{bottom:155.007148px;}
.y138{bottom:158.565150px;}
.y234{bottom:159.139534px;}
.y25f{bottom:162.657903px;}
.y1e4{bottom:163.342648px;}
.yb5{bottom:165.092244px;}
.y1a3{bottom:168.641248px;}
.yfb{bottom:170.005648px;}
.y233{bottom:171.885784px;}
.y137{bottom:173.563650px;}
.y1e3{bottom:176.088898px;}
.y25e{bottom:177.656403px;}
.y128{bottom:178.435500px;}
.y73{bottom:179.045552px;}
.yb4{bottom:180.090744px;}
.y1a2{bottom:183.644248px;}
.y232{bottom:184.632034px;}
.yfa{bottom:185.004148px;}
.y136{bottom:188.562150px;}
.y1e2{bottom:188.835148px;}
.y25d{bottom:192.654903px;}
.y122{bottom:193.463699px;}
.y72{bottom:194.047052px;}
.yb3{bottom:195.089244px;}
.y2f{bottom:196.573805px;}
.y231{bottom:197.378284px;}
.y1a1{bottom:198.642748px;}
.y11b{bottom:199.936661px;}
.yf9{bottom:200.002648px;}
.y1e1{bottom:201.581398px;}
.y135{bottom:203.560650px;}
.y25c{bottom:207.653403px;}
.y71{bottom:209.045552px;}
.yb2{bottom:210.087744px;}
.y230{bottom:210.124534px;}
.y2e{bottom:211.572305px;}
.y1a0{bottom:213.641248px;}
.y1e0{bottom:214.327648px;}
.yf8{bottom:215.001148px;}
.y129{bottom:217.516938px;}
.y134{bottom:218.559150px;}
.y25b{bottom:222.651903px;}
.y22f{bottom:222.870784px;}
.y70{bottom:224.048552px;}
.yb1{bottom:225.086244px;}
.y2d{bottom:226.570805px;}
.y123{bottom:227.057063px;}
.y1df{bottom:227.073898px;}
.y19f{bottom:228.647248px;}
.yf7{bottom:229.999648px;}
.y22e{bottom:235.617034px;}
.y25a{bottom:237.650403px;}
.y6f{bottom:239.047052px;}
.y1de{bottom:239.820148px;}
.yb0{bottom:240.084744px;}
.y2c{bottom:241.570805px;}
.y19e{bottom:243.645748px;}
.yf6{bottom:244.998148px;}
.y22d{bottom:248.363284px;}
.y133{bottom:251.562150px;}
.y1dd{bottom:252.566398px;}
.y259{bottom:252.648903px;}
.y6e{bottom:254.045552px;}
.yaf{bottom:255.098267px;}
.y2b{bottom:256.570805px;}
.y19d{bottom:258.644248px;}
.yf5{bottom:259.996648px;}
.y124{bottom:260.650427px;}
.y22c{bottom:261.109534px;}
.y1dc{bottom:265.312648px;}
.y132{bottom:266.560650px;}
.y6d{bottom:269.047052px;}
.yae{bottom:270.096767px;}
.y2a{bottom:271.572305px;}
.y19c{bottom:273.642748px;}
.y22b{bottom:273.855784px;}
.yf4{bottom:274.995148px;}
.y258{bottom:275.138243px;}
.y1db{bottom:278.058898px;}
.y131{bottom:281.559150px;}
.y6c{bottom:284.045552px;}
.yad{bottom:285.095267px;}
.y29{bottom:286.570805px;}
.y22a{bottom:286.602034px;}
.y19b{bottom:288.641248px;}
.yf3{bottom:289.993648px;}
.y257{bottom:290.136743px;}
.y1da{bottom:290.805148px;}
.y125{bottom:294.243791px;}
.y6b{bottom:299.056052px;}
.y229{bottom:299.348284px;}
.yac{bottom:300.093767px;}
.y28{bottom:301.572305px;}
.y1d9{bottom:303.551398px;}
.y19a{bottom:303.641248px;}
.yf2{bottom:304.992148px;}
.y228{bottom:312.094534px;}
.y256{bottom:312.641243px;}
.y6a{bottom:314.054552px;}
.yab{bottom:315.092267px;}
.y1d8{bottom:316.297648px;}
.y27{bottom:316.570805px;}
.y199{bottom:318.641248px;}
.yf1{bottom:319.990648px;}
.y227{bottom:324.840784px;}
.y126{bottom:328.752755px;}
.y1d7{bottom:329.043898px;}
.y69{bottom:329.053052px;}
.yaa{bottom:330.090767px;}
.y26{bottom:331.572305px;}
.y198{bottom:333.641248px;}
.yf0{bottom:334.989148px;}
.y255{bottom:335.145743px;}
.y226{bottom:337.587034px;}
.y1d6{bottom:341.790148px;}
.y15a{bottom:343.212605px;}
.y68{bottom:344.051552px;}
.ya9{bottom:345.089267px;}
.y25{bottom:346.570805px;}
.y197{bottom:348.648771px;}
.yef{bottom:349.987648px;}
.y225{bottom:350.333284px;}
.y1d5{bottom:354.536398px;}
.y254{bottom:357.650243px;}
.y159{bottom:358.214105px;}
.ya8{bottom:360.087767px;}
.y24{bottom:361.576805px;}
.y127{bottom:362.346119px;}
.y224{bottom:363.079534px;}
.y196{bottom:363.647271px;}
.yee{bottom:364.986148px;}
.y1d4{bottom:367.282648px;}
.y253{bottom:372.648743px;}
.y158{bottom:373.212605px;}
.ya7{bottom:375.086267px;}
.y223{bottom:375.825784px;}
.y23{bottom:376.575305px;}
.y67{bottom:377.045552px;}
.y195{bottom:378.645771px;}
.yed{bottom:379.984648px;}
.y1d3{bottom:380.028898px;}
.y252{bottom:387.648743px;}
.y157{bottom:388.214105px;}
.y222{bottom:388.572034px;}
.ya6{bottom:390.084767px;}
.y22{bottom:391.573805px;}
.y66{bottom:392.050052px;}
.y1d2{bottom:392.775148px;}
.y194{bottom:393.644271px;}
.yec{bottom:394.983148px;}
.y221{bottom:401.318284px;}
.y156{bottom:403.212605px;}
.ya5{bottom:405.083267px;}
.y1d1{bottom:405.521398px;}
.y21{bottom:406.572305px;}
.y65{bottom:407.048552px;}
.y193{bottom:408.642771px;}
.yeb{bottom:409.981648px;}
.y220{bottom:414.064534px;}
.y251{bottom:417.648743px;}
.y155{bottom:418.211105px;}
.y1d0{bottom:418.267648px;}
.y20{bottom:421.570805px;}
.y64{bottom:422.047052px;}
.y192{bottom:423.641271px;}
.yea{bottom:424.980148px;}
.y21f{bottom:426.810784px;}
.y1cf{bottom:431.013898px;}
.y250{bottom:432.648743px;}
.y1f{bottom:436.573805px;}
.y63{bottom:437.045552px;}
.ya4{bottom:438.093767px;}
.y191{bottom:438.647271px;}
.y21e{bottom:439.557034px;}
.ye9{bottom:439.980148px;}
.y1ce{bottom:443.760148px;}
.y166{bottom:450.655031px;}
.y1e{bottom:451.572305px;}
.y62{bottom:452.056052px;}
.y21d{bottom:452.303284px;}
.ya3{bottom:453.092267px;}
.y190{bottom:453.645771px;}
.y165{bottom:456.272531px;}
.y1cd{bottom:456.506398px;}
.y121{bottom:462.021620px;}
.y24f{bottom:464.121738px;}
.y21c{bottom:465.049534px;}
.y1d{bottom:466.570805px;}
.y61{bottom:467.054552px;}
.ya2{bottom:468.090767px;}
.y18f{bottom:468.644271px;}
.y1cc{bottom:469.252648px;}
.ye8{bottom:473.019194px;}
.y120{bottom:477.020120px;}
.y21b{bottom:477.795784px;}
.y24e{bottom:479.120238px;}
.y164{bottom:479.425031px;}
.y1c{bottom:481.570805px;}
.y1cb{bottom:481.998898px;}
.y60{bottom:482.053052px;}
.ya1{bottom:483.089267px;}
.y18e{bottom:483.642771px;}
.y163{bottom:485.042531px;}
.ye7{bottom:488.017694px;}
.y21a{bottom:490.542034px;}
.y11f{bottom:492.018620px;}
.y24d{bottom:494.118738px;}
.y1ca{bottom:494.745148px;}
.y1b{bottom:496.570805px;}
.y5f{bottom:497.051552px;}
.ya0{bottom:498.087767px;}
.y18d{bottom:498.641271px;}
.ye6{bottom:503.016194px;}
.y219{bottom:503.288284px;}
.y11e{bottom:507.017120px;}
.y1c9{bottom:507.491398px;}
.y162{bottom:508.195031px;}
.y24c{bottom:509.117238px;}
.y1a{bottom:511.612769px;}
.y5e{bottom:512.050052px;}
.y9f{bottom:513.086267px;}
.y18c{bottom:513.672771px;}
.y161{bottom:513.812531px;}
.y218{bottom:516.034534px;}
.ye5{bottom:518.014694px;}
.y1c8{bottom:520.237648px;}
.y24b{bottom:524.115738px;}
.y19{bottom:526.611269px;}
.y5d{bottom:527.048552px;}
.y9e{bottom:528.084767px;}
.y18b{bottom:528.671271px;}
.y217{bottom:528.780784px;}
.y1c7{bottom:532.983898px;}
.ye4{bottom:533.013194px;}
.y11a{bottom:533.839508px;}
.y160{bottom:536.966091px;}
.y24a{bottom:539.115738px;}
.y216{bottom:541.527034px;}
.y5c{bottom:542.047052px;}
.y9d{bottom:543.095267px;}
.y18a{bottom:543.669771px;}
.y1c6{bottom:545.730148px;}
.ye3{bottom:548.011694px;}
.y114{bottom:548.845963px;}
.y215{bottom:554.273284px;}
.y15f{bottom:554.501091px;}
.y5b{bottom:557.045552px;}
.y9c{bottom:558.093767px;}
.y1c5{bottom:558.480148px;}
.y189{bottom:558.668271px;}
.ye2{bottom:563.010194px;}
.y214{bottom:567.019534px;}
.y249{bottom:569.135238px;}
.y18{bottom:571.755269px;}
.y15e{bottom:572.036091px;}
.y5a{bottom:572.066506px;}
.y188{bottom:573.666771px;}
.ye1{bottom:578.008694px;}
.y115{bottom:579.341339px;}
.y213{bottom:579.765784px;}
.y248{bottom:584.133738px;}
.y59{bottom:587.065006px;}
.y17{bottom:588.252269px;}
.y187{bottom:588.665271px;}
.y15d{bottom:589.571091px;}
.y9b{bottom:591.087767px;}
.y212{bottom:592.512034px;}
.ye0{bottom:593.007194px;}
.y247{bottom:599.132238px;}
.y58{bottom:602.063506px;}
.y186{bottom:603.663771px;}
.y16{bottom:604.749269px;}
.y211{bottom:605.258284px;}
.y9a{bottom:606.086267px;}
.y15c{bottom:607.104584px;}
.y1c4{bottom:607.980148px;}
.ydf{bottom:608.005694px;}
.y116{bottom:610.814835px;}
.y246{bottom:614.130738px;}
.y210{bottom:618.004534px;}
.y185{bottom:618.662271px;}
.y99{bottom:621.084767px;}
.y15{bottom:621.246269px;}
.yde{bottom:623.004194px;}
.y15b{bottom:624.637939px;}
.y245{bottom:629.129238px;}
.y20f{bottom:630.750784px;}
.y184{bottom:633.660771px;}
.y57{bottom:635.057506px;}
.y98{bottom:636.116221px;}
.y14{bottom:637.743269px;}
.y1c3{bottom:637.981648px;}
.ydd{bottom:638.002694px;}
.y117{bottom:641.310212px;}
.y20e{bottom:643.497034px;}
.y244{bottom:644.127738px;}
.y183{bottom:648.659271px;}
.y56{bottom:650.056006px;}
.y97{bottom:651.114721px;}
.y1c2{bottom:652.980148px;}
.ydc{bottom:653.001194px;}
.y13{bottom:654.240269px;}
.y20d{bottom:656.243284px;}
.y243{bottom:659.126238px;}
.y182{bottom:663.657771px;}
.y55{bottom:665.054506px;}
.y96{bottom:666.113221px;}
.y1c1{bottom:667.980148px;}
.ydb{bottom:667.999694px;}
.y20c{bottom:668.989534px;}
.y12{bottom:670.737269px;}
.y118{bottom:671.705035px;}
.y242{bottom:674.124738px;}
.y181{bottom:678.656271px;}
.y54{bottom:680.053006px;}
.y20b{bottom:681.735784px;}
.yda{bottom:682.998194px;}
.y11{bottom:687.234269px;}
.y241{bottom:689.123238px;}
.y180{bottom:693.654771px;}
.y20a{bottom:694.482034px;}
.y53{bottom:695.051506px;}
.y1c0{bottom:697.992194px;}
.yd9{bottom:697.996694px;}
.y95{bottom:699.107221px;}
.y119{bottom:703.279085px;}
.y10{bottom:703.731269px;}
.y240{bottom:704.121738px;}
.y209{bottom:707.228284px;}
.y143{bottom:708.023106px;}
.y17f{bottom:708.653271px;}
.y52{bottom:710.050006px;}
.y1bf{bottom:712.990694px;}
.yd8{bottom:712.995194px;}
.y94{bottom:714.105721px;}
.y23f{bottom:719.120238px;}
.y208{bottom:719.974534px;}
.yf{bottom:720.228269px;}
.y142{bottom:723.030606px;}
.y17e{bottom:723.651771px;}
.y51{bottom:725.048506px;}
.y1be{bottom:727.989194px;}
.yd7{bottom:727.993694px;}
.y93{bottom:729.104221px;}
.y207{bottom:732.720784px;}
.y23e{bottom:734.118738px;}
.ye{bottom:736.725269px;}
.y141{bottom:738.029106px;}
.y17d{bottom:738.650271px;}
.y50{bottom:740.047006px;}
.y1bd{bottom:742.987694px;}
.yd6{bottom:742.992194px;}
.y92{bottom:744.102721px;}
.y206{bottom:745.467034px;}
.y23d{bottom:749.117238px;}
.y140{bottom:753.027606px;}
.yd{bottom:753.222269px;}
.y17c{bottom:753.648771px;}
.y4f{bottom:755.045506px;}
.y1bc{bottom:757.986194px;}
.yd5{bottom:757.990694px;}
.y205{bottom:758.213284px;}
.y91{bottom:759.101221px;}
.y23c{bottom:764.115738px;}
.y13f{bottom:768.026106px;}
.y17b{bottom:768.647271px;}
.yc{bottom:769.725269px;}
.y4e{bottom:770.045506px;}
.y204{bottom:770.959534px;}
.y1bb{bottom:772.984694px;}
.yd4{bottom:772.989194px;}
.y90{bottom:774.099721px;}
.y23b{bottom:779.115784px;}
.y13e{bottom:783.024606px;}
.y17a{bottom:783.645771px;}
.y203{bottom:783.705784px;}
.y4d{bottom:785.050006px;}
.yb{bottom:786.222269px;}
.y1ba{bottom:787.983194px;}
.yd3{bottom:787.987694px;}
.y8f{bottom:789.098221px;}
.y202{bottom:796.452034px;}
.y13d{bottom:798.023106px;}
.y179{bottom:798.644271px;}
.y4c{bottom:800.048506px;}
.y107{bottom:801.618474px;}
.ya{bottom:802.719269px;}
.y1b9{bottom:802.981694px;}
.yd2{bottom:802.986194px;}
.y8e{bottom:804.096721px;}
.y201{bottom:809.198284px;}
.y13c{bottom:813.021606px;}
.y178{bottom:813.642771px;}
.y4b{bottom:815.047006px;}
.yd1{bottom:817.984694px;}
.y1b8{bottom:817.989194px;}
.y8d{bottom:819.095221px;}
.y106{bottom:821.341919px;}
.y200{bottom:821.944534px;}
.y177{bottom:828.641271px;}
.y4a{bottom:830.045506px;}
.y105{bottom:831.619974px;}
.y9{bottom:832.719269px;}
.yd0{bottom:832.983194px;}
.y1b7{bottom:832.987694px;}
.y8c{bottom:834.093721px;}
.y1ff{bottom:834.690784px;}
.y176{bottom:843.639771px;}
.y154{bottom:844.782264px;}
.y49{bottom:845.057506px;}
.y104{bottom:846.618474px;}
.y1fe{bottom:847.437034px;}
.ycf{bottom:847.981694px;}
.y1b6{bottom:847.986194px;}
.y8b{bottom:849.092221px;}
.y153{bottom:850.399764px;}
.y8{bottom:850.719269px;}
.y175{bottom:858.639771px;}
.y48{bottom:860.056006px;}
.y1fd{bottom:860.183284px;}
.y103{bottom:861.616974px;}
.y1b5{bottom:862.984694px;}
.yce{bottom:862.986194px;}
.y8a{bottom:864.090721px;}
.y7{bottom:868.719269px;}
.y1fc{bottom:872.929534px;}
.y152{bottom:873.552264px;}
.y47{bottom:875.054506px;}
.y1b4{bottom:877.983194px;}
.ycd{bottom:877.984694px;}
.y89{bottom:879.089221px;}
.y151{bottom:879.169764px;}
.y1fb{bottom:885.675784px;}
.y46{bottom:890.053006px;}
.y174{bottom:891.659271px;}
.y1b3{bottom:892.981694px;}
.ycc{bottom:892.983194px;}
.y113{bottom:893.313486px;}
.y88{bottom:894.087721px;}
.y1fa{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y150{bottom:902.322264px;}
.y45{bottom:905.051506px;}
.y173{bottom:906.657771px;}
.y14f{bottom:907.939764px;}
.ycb{bottom:907.981694px;}
.y87{bottom:909.086221px;}
.y112{bottom:910.848486px;}
.y1f9{bottom:911.168284px;}
.y44{bottom:920.050006px;}
.y172{bottom:921.656271px;}
.y1b2{bottom:922.984694px;}
.yca{bottom:922.992194px;}
.y1f8{bottom:923.914534px;}
.y86{bottom:924.084721px;}
.y111{bottom:928.383486px;}
.y14e{bottom:931.092264px;}
.y43{bottom:935.048506px;}
.y171{bottom:936.654771px;}
.y1f7{bottom:936.660784px;}
.y14d{bottom:936.709764px;}
.y1b1{bottom:937.983194px;}
.yc9{bottom:937.990694px;}
.y85{bottom:939.090721px;}
.y110{bottom:945.918486px;}
.y5{bottom:946.719269px;}
.y1f6{bottom:949.407034px;}
.y42{bottom:950.047006px;}
.y170{bottom:951.653271px;}
.y1b0{bottom:952.981694px;}
.yc8{bottom:952.989194px;}
.y84{bottom:954.089221px;}
.y30{bottom:954.366760px;}
.y14c{bottom:959.862264px;}
.y1f5{bottom:962.153284px;}
.y10f{bottom:963.453486px;}
.y41{bottom:965.045506px;}
.y14b{bottom:965.479764px;}
.y16f{bottom:966.651771px;}
.y1af{bottom:967.981694px;}
.yc7{bottom:967.987694px;}
.y83{bottom:969.087721px;}
.y1f4{bottom:974.899534px;}
.y40{bottom:980.047006px;}
.y10e{bottom:980.988486px;}
.y16e{bottom:981.650271px;}
.y1ae{bottom:982.981694px;}
.yc6{bottom:982.986194px;}
.y82{bottom:984.086221px;}
.y1f3{bottom:987.645784px;}
.y14a{bottom:988.632264px;}
.y149{bottom:994.249764px;}
.y3f{bottom:995.045506px;}
.y16d{bottom:996.648771px;}
.yc5{bottom:997.984694px;}
.y1ad{bottom:997.987694px;}
.y10d{bottom:998.523486px;}
.y81{bottom:999.084721px;}
.y1f2{bottom:1000.392034px;}
.y3e{bottom:1010.044006px;}
.y16c{bottom:1011.647271px;}
.yc4{bottom:1012.983194px;}
.y1ac{bottom:1012.986194px;}
.y1f1{bottom:1013.138284px;}
.y80{bottom:1014.090721px;}
.y10c{bottom:1016.058486px;}
.y148{bottom:1017.402264px;}
.y147{bottom:1023.019764px;}
.y3d{bottom:1025.044006px;}
.y1f0{bottom:1025.884534px;}
.y16b{bottom:1026.645771px;}
.yc3{bottom:1027.981694px;}
.y1ab{bottom:1027.984694px;}
.y7f{bottom:1029.089221px;}
.y10b{bottom:1033.593486px;}
.y1ef{bottom:1038.630784px;}
.y16a{bottom:1041.644271px;}
.y1aa{bottom:1042.983194px;}
.yc2{bottom:1042.984694px;}
.y7e{bottom:1044.087721px;}
.y146{bottom:1046.172264px;}
.y10a{bottom:1051.128486px;}
.y1ee{bottom:1051.377034px;}
.y145{bottom:1051.789764px;}
.y169{bottom:1056.642771px;}
.y1a9{bottom:1057.981694px;}
.yc1{bottom:1057.983194px;}
.y3c{bottom:1058.047006px;}
.y7d{bottom:1059.086221px;}
.y1ed{bottom:1064.123284px;}
.y109{bottom:1068.663486px;}
.y168{bottom:1071.641271px;}
.yc0{bottom:1072.981694px;}
.y3b{bottom:1073.045506px;}
.y7c{bottom:1074.084721px;}
.y144{bottom:1074.948578px;}
.y1ec{bottom:1076.869534px;}
.y108{bottom:1086.198486px;}
.y167{bottom:1086.639771px;}
.ybf{bottom:1087.980194px;}
.y3a{bottom:1088.044006px;}
.y7b{bottom:1089.083221px;}
.y1eb{bottom:1089.615784px;}
.y7a{bottom:1140.640320px;}
.ybe{bottom:1140.746521px;}
.y39{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h2c{height:25.010597px;}
.h2f{height:25.050816px;}
.h2e{height:27.720468px;}
.h31{height:27.763970px;}
.h11{height:30.684677px;}
.h2{height:34.523438px;}
.h28{height:34.713900px;}
.h3e{height:35.411133px;}
.h8{height:38.838867px;}
.h2a{height:41.538000px;}
.h2b{height:41.768460px;}
.h29{height:43.008000px;}
.h9{height:44.122143px;}
.h3f{height:44.505000px;}
.h41{height:45.090000px;}
.h3{height:45.679688px;}
.h40{height:46.080000px;}
.h14{height:47.469727px;}
.h12{height:48.534668px;}
.h7{height:49.050293px;}
.h6{height:49.183594px;}
.h13{height:49.373525px;}
.h42{height:50.439000px;}
.ha{height:53.406000px;}
.hb{height:53.440010px;}
.h35{height:53.481131px;}
.h22{height:53.482046px;}
.h1a{height:53.524046px;}
.h23{height:53.553863px;}
.h16{height:53.560046px;}
.h25{height:53.565680px;}
.h1b{height:53.565863px;}
.h37{height:53.577218px;}
.h3d{height:53.577680px;}
.h32{height:53.577863px;}
.h36{height:53.583131px;}
.h39{height:53.583310px;}
.h3c{height:53.583680px;}
.he{height:53.583863px;}
.h21{height:53.584779px;}
.h26{height:53.589680px;}
.h1c{height:53.589863px;}
.h17{height:53.590046px;}
.h24{height:53.595680px;}
.hd{height:53.595863px;}
.h1e{height:53.595909px;}
.hf{height:53.601863px;}
.h3a{height:53.601910px;}
.h15{height:53.602046px;}
.h38{height:53.607310px;}
.h3b{height:53.607680px;}
.hc{height:53.607863px;}
.h1f{height:53.607886px;}
.h1d{height:53.607909px;}
.h18{height:53.608046px;}
.h20{height:53.614779px;}
.h19{height:54.108000px;}
.h27{height:55.296000px;}
.h4{height:57.099609px;}
.h34{height:64.050000px;}
.h10{height:77.677734px;}
.h33{height:87.990000px;}
.h5{height:112.201172px;}
.h2d{height:207.394500px;}
.h30{height:224.988007px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:340.156494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x12{left:8.267555px;}
.x10{left:16.333054px;}
.x11{left:46.046769px;}
.x13{left:48.193692px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.xb{left:198.219016px;}
.x5{left:233.858253px;}
.x14{left:238.570953px;}
.xc{left:247.436554px;}
.xf{left:250.185963px;}
.x6{left:251.853347px;}
.xe{left:254.807894px;}
.xa{left:257.250000px;}
.xd{left:259.530301px;}
.x1a{left:303.093293px;}
.x17{left:335.328453px;}
.x18{left:480.700792px;}
.x15{left:502.131452px;}
.x4{left:586.814117px;}
.x19{left:627.553792px;}
.x16{left:638.463452px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x1b{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v4{vertical-align:-16.799967pt;}
.v5{vertical-align:-15.866659pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.127786pt;}
.v6{vertical-align:15.866659pt;}
.v3{vertical-align:16.779448pt;}
.v2{vertical-align:18.666667pt;}
.v9{vertical-align:20.010667pt;}
.v8{vertical-align:39.984000pt;}
.ls65{letter-spacing:-4.416000pt;}
.ls4d{letter-spacing:-2.730202pt;}
.ls8b{letter-spacing:-2.280000pt;}
.ls30{letter-spacing:-2.016000pt;}
.ls5e{letter-spacing:-1.680000pt;}
.ls58{letter-spacing:-1.334741pt;}
.ls42{letter-spacing:-1.202589pt;}
.ls34{letter-spacing:-1.056000pt;}
.ls7b{letter-spacing:-1.000000pt;}
.ls5a{letter-spacing:-0.976640pt;}
.ls88{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.864000pt;}
.ls5b{letter-spacing:-0.813867pt;}
.ls32{letter-spacing:-0.768000pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls5f{letter-spacing:-0.709333pt;}
.ls79{letter-spacing:-0.680000pt;}
.ls53{letter-spacing:-0.651093pt;}
.ls7a{letter-spacing:-0.640000pt;}
.ls60{letter-spacing:-0.634667pt;}
.ls2f{letter-spacing:-0.576000pt;}
.ls8a{letter-spacing:-0.560000pt;}
.ls3e{letter-spacing:-0.485333pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls48{letter-spacing:-0.455034pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls8f{letter-spacing:-0.440000pt;}
.ls36{letter-spacing:-0.432000pt;}
.ls27{letter-spacing:-0.336000pt;}
.ls8e{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.288000pt;}
.ls3d{letter-spacing:-0.261333pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls73{letter-spacing:-0.200000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.186667pt;}
.ls78{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.156000pt;}
.ls3b{letter-spacing:-0.149333pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls71{letter-spacing:-0.124800pt;}
.ls8c{letter-spacing:-0.120000pt;}
.ls3a{letter-spacing:-0.112000pt;}
.ls4b{letter-spacing:-0.097507pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls72{letter-spacing:-0.080000pt;}
.ls4a{letter-spacing:-0.065005pt;}
.ls17{letter-spacing:-0.062400pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls74{letter-spacing:-0.040000pt;}
.ls4e{letter-spacing:-0.032502pt;}
.ls66{letter-spacing:-0.031200pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012242pt;}
.ls2{letter-spacing:0.012405pt;}
.lsb{letter-spacing:0.016025pt;}
.ls1{letter-spacing:0.024458pt;}
.ls63{letter-spacing:0.031200pt;}
.ls2d{letter-spacing:0.036024pt;}
.ls75{letter-spacing:0.040000pt;}
.ls8{letter-spacing:0.046331pt;}
.ls10{letter-spacing:0.048000pt;}
.ls84{letter-spacing:0.048040pt;}
.ls64{letter-spacing:0.062400pt;}
.ls5d{letter-spacing:0.065109pt;}
.ls76{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.093600pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.108242pt;}
.ls1a{letter-spacing:0.109200pt;}
.ls2a{letter-spacing:0.112000pt;}
.ls6b{letter-spacing:0.120000pt;}
.ls21{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.139468pt;}
.ls61{letter-spacing:0.140400pt;}
.ls9{letter-spacing:0.141839pt;}
.ls22{letter-spacing:0.144000pt;}
.ls38{letter-spacing:0.149333pt;}
.ls1f{letter-spacing:0.156000pt;}
.ls69{letter-spacing:0.160000pt;}
.ls6a{letter-spacing:0.180000pt;}
.lsa{letter-spacing:0.187200pt;}
.ls5{letter-spacing:0.192000pt;}
.ls6d{letter-spacing:0.200000pt;}
.ls62{letter-spacing:0.218400pt;}
.ls39{letter-spacing:0.224000pt;}
.ls68{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.240000pt;}
.ls7d{letter-spacing:0.280000pt;}
.ls14{letter-spacing:0.288000pt;}
.ls67{letter-spacing:0.288648pt;}
.ls25{letter-spacing:0.312000pt;}
.ls77{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336000pt;}
.ls7f{letter-spacing:0.360000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls6f{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.405600pt;}
.ls28{letter-spacing:0.432000pt;}
.ls7c{letter-spacing:0.440000pt;}
.ls24{letter-spacing:0.480000pt;}
.ls8d{letter-spacing:0.520000pt;}
.ls52{letter-spacing:0.520875pt;}
.ls11{letter-spacing:0.528000pt;}
.ls86{letter-spacing:0.560000pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls45{letter-spacing:0.585043pt;}
.ls18{letter-spacing:0.624000pt;}
.ls26{letter-spacing:0.672000pt;}
.ls89{letter-spacing:0.680000pt;}
.ls29{letter-spacing:0.720000pt;}
.ls87{letter-spacing:0.731967pt;}
.ls46{letter-spacing:0.747555pt;}
.ls20{letter-spacing:0.768000pt;}
.ls81{letter-spacing:0.775989pt;}
.ls3f{letter-spacing:0.877565pt;}
.ls50{letter-spacing:0.911531pt;}
.ls6c{letter-spacing:0.932000pt;}
.ls44{letter-spacing:0.942570pt;}
.ls55{letter-spacing:0.944085pt;}
.ls2c{letter-spacing:1.105082pt;}
.ls7e{letter-spacing:1.160000pt;}
.ls6e{letter-spacing:1.196000pt;}
.ls82{letter-spacing:1.240000pt;}
.ls57{letter-spacing:1.269632pt;}
.ls80{letter-spacing:1.280000pt;}
.ls70{letter-spacing:1.324000pt;}
.ls40{letter-spacing:1.365101pt;}
.ls51{letter-spacing:1.627733pt;}
.ls85{letter-spacing:1.656000pt;}
.ls41{letter-spacing:1.722627pt;}
.ls54{letter-spacing:2.441600pt;}
.ls0{letter-spacing:2.666667pt;}
.ls83{letter-spacing:3.144000pt;}
.ls43{letter-spacing:37.735286pt;}
.ls2b{letter-spacing:45.570403pt;}
.ls4c{letter-spacing:50.118701pt;}
.ls4f{letter-spacing:56.554176pt;}
.ls47{letter-spacing:59.316880pt;}
.ls49{letter-spacing:62.534618pt;}
.ls5c{letter-spacing:70.220416pt;}
.ls59{letter-spacing:85.456000pt;}
.ls56{letter-spacing:89.069568pt;}
.wsa1{word-spacing:-96.426923pt;}
.wsa4{word-spacing:-92.813355pt;}
.wsa9{word-spacing:-77.577771pt;}
.ws94{word-spacing:-69.880160pt;}
.ws91{word-spacing:-66.662422pt;}
.ws9a{word-spacing:-63.899718pt;}
.ws97{word-spacing:-57.464243pt;}
.ws8c{word-spacing:-45.080829pt;}
.ws1{word-spacing:-13.333333pt;}
.wsd2{word-spacing:-12.320000pt;}
.ws62{word-spacing:-12.085333pt;}
.ws15{word-spacing:-11.136000pt;}
.ws61{word-spacing:-11.088000pt;}
.ws29{word-spacing:-10.896000pt;}
.ws74{word-spacing:-10.752000pt;}
.wsd7{word-spacing:-10.704000pt;}
.ws1b{word-spacing:-10.656000pt;}
.wse{word-spacing:-10.608000pt;}
.ws73{word-spacing:-10.560000pt;}
.ws72{word-spacing:-10.512000pt;}
.ws6c{word-spacing:-10.416000pt;}
.ws6e{word-spacing:-10.272000pt;}
.ws6f{word-spacing:-10.224000pt;}
.ws70{word-spacing:-10.128000pt;}
.ws71{word-spacing:-9.936000pt;}
.wsd3{word-spacing:-9.280000pt;}
.wsd4{word-spacing:-9.260000pt;}
.wsfb{word-spacing:-9.240000pt;}
.wsf1{word-spacing:-9.200000pt;}
.wsef{word-spacing:-9.120000pt;}
.wsf3{word-spacing:-9.080000pt;}
.ws8a{word-spacing:-9.068170pt;}
.wsf4{word-spacing:-9.040000pt;}
.ws9d{word-spacing:-8.985088pt;}
.ws6d{word-spacing:-8.976000pt;}
.wsd5{word-spacing:-8.960000pt;}
.ws10d{word-spacing:-8.840000pt;}
.wsee{word-spacing:-8.760000pt;}
.wsf0{word-spacing:-8.680000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws93{word-spacing:-8.450624pt;}
.wsa0{word-spacing:-8.301440pt;}
.ws8d{word-spacing:-8.288112pt;}
.ws9b{word-spacing:-8.268885pt;}
.ws89{word-spacing:-8.223107pt;}
.wsd6{word-spacing:-8.160000pt;}
.ws7d{word-spacing:-8.101333pt;}
.ws8f{word-spacing:-8.093098pt;}
.ws88{word-spacing:-7.989333pt;}
.ws9c{word-spacing:-7.878229pt;}
.ws7{word-spacing:-7.488000pt;}
.wsaa{word-spacing:-7.422464pt;}
.ws4b{word-spacing:-7.394400pt;}
.ws99{word-spacing:-7.313040pt;}
.ws5{word-spacing:-7.269600pt;}
.ws96{word-spacing:-7.248035pt;}
.ws24{word-spacing:-7.238400pt;}
.ws25{word-spacing:-7.207200pt;}
.wsc3{word-spacing:-7.176000pt;}
.wsc2{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.wsc5{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.082400pt;}
.wsc4{word-spacing:-7.051200pt;}
.ws6{word-spacing:-7.020000pt;}
.wsd1{word-spacing:-6.957600pt;}
.ws4{word-spacing:-6.926400pt;}
.wsf2{word-spacing:-6.880000pt;}
.ws9e{word-spacing:-6.706261pt;}
.wsa8{word-spacing:-6.543488pt;}
.wsb1{word-spacing:-6.421333pt;}
.wsa6{word-spacing:-6.380715pt;}
.ws8b{word-spacing:-6.142954pt;}
.wsa3{word-spacing:-6.022613pt;}
.ws8{word-spacing:-5.893333pt;}
.ws102{word-spacing:-5.560000pt;}
.wsf6{word-spacing:-5.440000pt;}
.wse5{word-spacing:-5.360000pt;}
.wsec{word-spacing:-5.320000pt;}
.wse8{word-spacing:-5.280000pt;}
.wsf5{word-spacing:-5.240000pt;}
.ws109{word-spacing:-5.000000pt;}
.wsc1{word-spacing:-3.808000pt;}
.wscb{word-spacing:-1.968000pt;}
.ws5f{word-spacing:-1.872000pt;}
.wsac{word-spacing:-1.722627pt;}
.wsbf{word-spacing:-1.680000pt;}
.wsaf{word-spacing:-1.627733pt;}
.wsab{word-spacing:-1.365101pt;}
.ws5a{word-spacing:-1.296000pt;}
.wsc{word-spacing:-1.104000pt;}
.wsd{word-spacing:-1.056000pt;}
.wscc{word-spacing:-1.008000pt;}
.ws59{word-spacing:-0.960000pt;}
.wsdc{word-spacing:-0.920000pt;}
.ws13{word-spacing:-0.912000pt;}
.wsdb{word-spacing:-0.880000pt;}
.ws26{word-spacing:-0.864000pt;}
.ws2b{word-spacing:-0.816000pt;}
.ws10a{word-spacing:-0.800000pt;}
.ws5e{word-spacing:-0.768000pt;}
.ws106{word-spacing:-0.760000pt;}
.ws14{word-spacing:-0.720000pt;}
.ws100{word-spacing:-0.680000pt;}
.ws5c{word-spacing:-0.672000pt;}
.ws112{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.624000pt;}
.ws103{word-spacing:-0.600000pt;}
.ws12{word-spacing:-0.576000pt;}
.ws65{word-spacing:-0.528000pt;}
.ws10c{word-spacing:-0.520000pt;}
.wscd{word-spacing:-0.480000pt;}
.wseb{word-spacing:-0.440000pt;}
.ws64{word-spacing:-0.432000pt;}
.wsf7{word-spacing:-0.400000pt;}
.ws55{word-spacing:-0.384000pt;}
.wsfa{word-spacing:-0.360000pt;}
.ws3d{word-spacing:-0.336000pt;}
.wsdf{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.288000pt;}
.ws111{word-spacing:-0.280000pt;}
.ws6b{word-spacing:-0.240000pt;}
.wsda{word-spacing:-0.234667pt;}
.wse2{word-spacing:-0.200000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.187200pt;}
.wse0{word-spacing:-0.160000pt;}
.ws2f{word-spacing:-0.156000pt;}
.wsbe{word-spacing:-0.144000pt;}
.ws2e{word-spacing:-0.124800pt;}
.wsfd{word-spacing:-0.120000pt;}
.wsf{word-spacing:-0.096000pt;}
.ws10f{word-spacing:-0.080000pt;}
.wsd8{word-spacing:-0.062400pt;}
.ws66{word-spacing:-0.048000pt;}
.ws107{word-spacing:-0.040000pt;}
.wsd0{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.wscf{word-spacing:0.031200pt;}
.wsde{word-spacing:0.040000pt;}
.ws11{word-spacing:0.048000pt;}
.ws18{word-spacing:0.062400pt;}
.ws110{word-spacing:0.080000pt;}
.ws4d{word-spacing:0.096000pt;}
.wsf8{word-spacing:0.120000pt;}
.ws39{word-spacing:0.144000pt;}
.wsd9{word-spacing:0.156000pt;}
.ws10e{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.192000pt;}
.wsdd{word-spacing:0.200000pt;}
.ws4c{word-spacing:0.240000pt;}
.ws50{word-spacing:0.288000pt;}
.ws45{word-spacing:0.336000pt;}
.wse6{word-spacing:0.360000pt;}
.ws35{word-spacing:0.384000pt;}
.ws6a{word-spacing:0.432000pt;}
.wsc0{word-spacing:0.480000pt;}
.ws101{word-spacing:0.520000pt;}
.ws53{word-spacing:0.528000pt;}
.ws22{word-spacing:0.544000pt;}
.ws105{word-spacing:0.560000pt;}
.ws30{word-spacing:0.576000pt;}
.wse3{word-spacing:0.600000pt;}
.ws16{word-spacing:0.624000pt;}
.wse9{word-spacing:0.640000pt;}
.ws67{word-spacing:0.672000pt;}
.ws49{word-spacing:0.768000pt;}
.wse1{word-spacing:0.840000pt;}
.ws4f{word-spacing:0.864000pt;}
.wse4{word-spacing:0.880000pt;}
.ws51{word-spacing:0.912000pt;}
.wsea{word-spacing:0.920000pt;}
.ws54{word-spacing:0.960000pt;}
.wsed{word-spacing:1.000000pt;}
.ws2c{word-spacing:1.008000pt;}
.wsf9{word-spacing:1.040000pt;}
.ws10{word-spacing:1.056000pt;}
.ws104{word-spacing:1.080000pt;}
.wsb{word-spacing:1.104000pt;}
.wsfc{word-spacing:1.160000pt;}
.ws56{word-spacing:1.200000pt;}
.wsad{word-spacing:1.202589pt;}
.wse7{word-spacing:1.240000pt;}
.ws114{word-spacing:1.248000pt;}
.ws11c{word-spacing:1.296000pt;}
.ws108{word-spacing:1.320000pt;}
.ws10b{word-spacing:1.360000pt;}
.ws19{word-spacing:1.440000pt;}
.ws52{word-spacing:1.488000pt;}
.ws4e{word-spacing:1.584000pt;}
.ws33{word-spacing:1.680000pt;}
.ws36{word-spacing:1.776000pt;}
.ws5d{word-spacing:1.824000pt;}
.wsc6{word-spacing:1.872000pt;}
.ws40{word-spacing:1.968000pt;}
.ws63{word-spacing:2.016000pt;}
.ws1a{word-spacing:2.064000pt;}
.ws38{word-spacing:2.112000pt;}
.ws113{word-spacing:2.160000pt;}
.wsfe{word-spacing:2.240000pt;}
.ws2d{word-spacing:2.256000pt;}
.wsff{word-spacing:2.280000pt;}
.ws48{word-spacing:2.304000pt;}
.ws31{word-spacing:2.496000pt;}
.ws117{word-spacing:2.688000pt;}
.ws118{word-spacing:2.784000pt;}
.ws47{word-spacing:2.832000pt;}
.ws41{word-spacing:2.976000pt;}
.ws4a{word-spacing:3.120000pt;}
.ws34{word-spacing:3.168000pt;}
.ws60{word-spacing:3.216000pt;}
.ws28{word-spacing:3.312000pt;}
.ws3b{word-spacing:3.408000pt;}
.ws3f{word-spacing:3.504000pt;}
.ws3a{word-spacing:3.552000pt;}
.ws23{word-spacing:3.672000pt;}
.wsce{word-spacing:3.696000pt;}
.ws3c{word-spacing:3.984000pt;}
.wsc7{word-spacing:4.032000pt;}
.ws43{word-spacing:4.080000pt;}
.wsc9{word-spacing:4.272000pt;}
.ws1e{word-spacing:4.306667pt;}
.ws8e{word-spacing:4.322819pt;}
.ws5b{word-spacing:4.368000pt;}
.ws32{word-spacing:4.464000pt;}
.ws46{word-spacing:4.512000pt;}
.wsc8{word-spacing:4.656000pt;}
.ws2a{word-spacing:4.848000pt;}
.ws37{word-spacing:4.944000pt;}
.ws11b{word-spacing:5.040000pt;}
.ws27{word-spacing:5.232000pt;}
.ws42{word-spacing:5.376000pt;}
.wsca{word-spacing:5.520000pt;}
.ws11d{word-spacing:5.568000pt;}
.ws119{word-spacing:5.760000pt;}
.ws11a{word-spacing:6.000000pt;}
.ws1f{word-spacing:7.389333pt;}
.ws68{word-spacing:7.536000pt;}
.ws58{word-spacing:7.728000pt;}
.ws57{word-spacing:7.824000pt;}
.ws69{word-spacing:10.368000pt;}
.ws115{word-spacing:10.512000pt;}
.ws21{word-spacing:10.653333pt;}
.ws116{word-spacing:10.992000pt;}
.ws20{word-spacing:11.786667pt;}
.wsae{word-spacing:13.584000pt;}
.ws1d{word-spacing:13.690667pt;}
.ws90{word-spacing:18.753881pt;}
.wsb3{word-spacing:41.738667pt;}
.wsbc{word-spacing:41.850667pt;}
.ws98{word-spacing:53.336438pt;}
.ws92{word-spacing:53.498950pt;}
.ws95{word-spacing:54.636534pt;}
.ws9f{word-spacing:58.923947pt;}
.wsa5{word-spacing:59.216939pt;}
.wsa7{word-spacing:61.398101pt;}
.wsb9{word-spacing:68.357333pt;}
.ws76{word-spacing:68.432000pt;}
.wsa2{word-spacing:75.201280pt;}
.ws82{word-spacing:75.861333pt;}
.ws7f{word-spacing:95.498667pt;}
.ws83{word-spacing:96.768000pt;}
.ws80{word-spacing:97.514667pt;}
.ws75{word-spacing:97.813333pt;}
.wsbd{word-spacing:113.680000pt;}
.wsb2{word-spacing:117.230400pt;}
.ws85{word-spacing:118.421333pt;}
.ws7e{word-spacing:121.221333pt;}
.wsb8{word-spacing:123.088000pt;}
.ws7b{word-spacing:124.133333pt;}
.ws78{word-spacing:130.816000pt;}
.ws7a{word-spacing:133.093333pt;}
.ws77{word-spacing:135.258667pt;}
.ws7c{word-spacing:135.968000pt;}
.ws79{word-spacing:142.314667pt;}
.ws86{word-spacing:147.130667pt;}
.wsbb{word-spacing:147.690667pt;}
.ws84{word-spacing:158.256000pt;}
.ws87{word-spacing:158.741333pt;}
.ws81{word-spacing:158.816000pt;}
.wsb7{word-spacing:239.418667pt;}
.wsb5{word-spacing:276.677333pt;}
.wsb4{word-spacing:278.693333pt;}
.wsb6{word-spacing:282.016000pt;}
.wsb0{word-spacing:331.482667pt;}
.wsba{word-spacing:368.890658pt;}
._2a{margin-left:-90.407172pt;}
._2b{margin-left:-85.129824pt;}
._2c{margin-left:-71.552309pt;}
._26{margin-left:-62.848997pt;}
._25{margin-left:-60.159749pt;}
._28{margin-left:-56.879200pt;}
._27{margin-left:-49.081496pt;}
._24{margin-left:-38.092110pt;}
._29{margin-left:-18.624006pt;}
._15{margin-left:-15.755744pt;}
._13{margin-left:-14.824558pt;}
._a{margin-left:-13.925333pt;}
._9{margin-left:-11.939200pt;}
._8{margin-left:-10.661890pt;}
._5{margin-left:-9.148800pt;}
._12{margin-left:-7.721890pt;}
._7{margin-left:-6.221333pt;}
._10{margin-left:-5.294434pt;}
._3{margin-left:-3.741310pt;}
._2{margin-left:-2.731733pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.941867pt;}
._c{width:2.180533pt;}
._b{width:3.109867pt;}
._17{width:4.146110pt;}
._d{width:5.162667pt;}
._50{width:6.622400pt;}
._18{width:7.534967pt;}
._51{width:8.941333pt;}
._6{width:9.860846pt;}
._4f{width:11.461310pt;}
._4e{width:12.440000pt;}
._19{width:13.539710pt;}
._4d{width:15.160000pt;}
._f{width:16.559991pt;}
._16{width:29.822933pt;}
._11{width:35.150933pt;}
._14{width:37.668267pt;}
._e{width:42.708187pt;}
._39{width:50.213333pt;}
._2d{width:67.113600pt;}
._3f{width:71.866667pt;}
._2f{width:76.346667pt;}
._21{width:84.448000pt;}
._1c{width:105.317333pt;}
._1a{width:118.794667pt;}
._44{width:121.520000pt;}
._22{width:126.037333pt;}
._1e{width:127.754667pt;}
._1b{width:143.986133pt;}
._46{width:147.297061pt;}
._32{width:150.512800pt;}
._1d{width:162.698667pt;}
._20{width:164.901333pt;}
._23{width:166.917333pt;}
._36{width:168.432800pt;}
._1f{width:174.720000pt;}
._40{width:191.935994pt;}
._37{width:194.752800pt;}
._31{width:205.910394pt;}
._34{width:212.672800pt;}
._43{width:213.610134pt;}
._4a{width:228.405328pt;}
._45{width:231.016001pt;}
._47{width:232.160800pt;}
._3a{width:238.157297pt;}
._48{width:244.214395pt;}
._41{width:250.192800pt;}
._4b{width:257.757310pt;}
._3c{width:270.795727pt;}
._33{width:277.498667pt;}
._38{width:295.418667pt;}
._1{width:303.193600pt;}
._2e{width:309.978660pt;}
._35{width:313.338667pt;}
._49{width:314.906658pt;}
._3b{width:322.597333pt;}
._30{width:345.146667pt;}
._3d{width:348.070395pt;}
._42{width:350.746658pt;}
._4c{width:377.925324pt;}
._3e{width:382.554667pt;}
.fsb{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fsc{font-size:32.502400pt;}
.fse{font-size:32.554667pt;}
.fs3{font-size:34.666667pt;}
.fsd{font-size:36.024000pt;}
.fsf{font-size:36.080533pt;}
.fsa{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:2.492912pt;}
.y12a{bottom:2.496656pt;}
.ybc{bottom:2.843733pt;}
.y38{bottom:2.843867pt;}
.y102{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y37{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ybd{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y36{bottom:60.477735pt;}
.y79{bottom:63.151602pt;}
.ybb{bottom:66.756662pt;}
.y11d{bottom:68.424642pt;}
.y101{bottom:71.124132pt;}
.y23a{bottom:73.477363pt;}
.y35{bottom:73.811069pt;}
.y78{bottom:76.484935pt;}
.y12b{bottom:76.707866pt;}
.y1ea{bottom:77.213465pt;}
.yba{bottom:80.088662pt;}
.y130{bottom:81.438530pt;}
.y1a8{bottom:83.236665pt;}
.y100{bottom:84.456132pt;}
.y239{bottom:84.807363pt;}
.y34{bottom:87.144402pt;}
.y1e9{bottom:88.543465pt;}
.y77{bottom:89.820935pt;}
.yb9{bottom:93.420662pt;}
.y12f{bottom:94.770530pt;}
.y238{bottom:96.137363pt;}
.y1a7{bottom:96.569998pt;}
.yff{bottom:97.788132pt;}
.y1e8{bottom:99.873465pt;}
.y33{bottom:100.477735pt;}
.y13b{bottom:100.950800pt;}
.y76{bottom:103.152935pt;}
.y261{bottom:104.588804pt;}
.yb8{bottom:106.752662pt;}
.y237{bottom:107.467363pt;}
.y12e{bottom:108.102530pt;}
.y1a6{bottom:109.904665pt;}
.yfe{bottom:111.120132pt;}
.y1e7{bottom:111.203465pt;}
.y32{bottom:113.811069pt;}
.y13a{bottom:114.282800pt;}
.y75{bottom:116.484935pt;}
.y236{bottom:118.797363pt;}
.yb7{bottom:120.084662pt;}
.y12d{bottom:121.434530pt;}
.y1e6{bottom:122.533465pt;}
.y1a5{bottom:123.236665pt;}
.yfd{bottom:124.452132pt;}
.y139{bottom:127.614800pt;}
.y74{bottom:129.816935pt;}
.y235{bottom:130.127363pt;}
.y31{bottom:131.105733pt;}
.y260{bottom:131.252803pt;}
.yb6{bottom:133.416662pt;}
.y1e5{bottom:133.863465pt;}
.y12c{bottom:134.766530pt;}
.y1a4{bottom:136.569998pt;}
.yfc{bottom:137.784132pt;}
.y138{bottom:140.946800pt;}
.y234{bottom:141.457363pt;}
.y25f{bottom:144.584803pt;}
.y1e4{bottom:145.193465pt;}
.yb5{bottom:146.748662pt;}
.y1a3{bottom:149.903331pt;}
.yfb{bottom:151.116132pt;}
.y233{bottom:152.787363pt;}
.y137{bottom:154.278800pt;}
.y1e3{bottom:156.523465pt;}
.y25e{bottom:157.916803pt;}
.y128{bottom:158.609333pt;}
.y73{bottom:159.151602pt;}
.yb4{bottom:160.080662pt;}
.y1a2{bottom:163.239331pt;}
.y232{bottom:164.117363pt;}
.yfa{bottom:164.448132pt;}
.y136{bottom:167.610800pt;}
.y1e2{bottom:167.853465pt;}
.y25d{bottom:171.248803pt;}
.y122{bottom:171.967733pt;}
.y72{bottom:172.486269pt;}
.yb3{bottom:173.412662pt;}
.y2f{bottom:174.732271pt;}
.y231{bottom:175.447363pt;}
.y1a1{bottom:176.571331pt;}
.y11b{bottom:177.721476pt;}
.yf9{bottom:177.780132pt;}
.y1e1{bottom:179.183465pt;}
.y135{bottom:180.942800pt;}
.y25c{bottom:184.580803pt;}
.y71{bottom:185.818269pt;}
.yb2{bottom:186.744662pt;}
.y230{bottom:186.777363pt;}
.y2e{bottom:188.064271pt;}
.y1a0{bottom:189.903331pt;}
.y1e0{bottom:190.513465pt;}
.yf8{bottom:191.112132pt;}
.y129{bottom:193.348390pt;}
.y134{bottom:194.274800pt;}
.y25b{bottom:197.912803pt;}
.y22f{bottom:198.107363pt;}
.y70{bottom:199.154269pt;}
.yb1{bottom:200.076662pt;}
.y2d{bottom:201.396271pt;}
.y123{bottom:201.828501pt;}
.y1df{bottom:201.843465pt;}
.y19f{bottom:203.241998pt;}
.yf7{bottom:204.444132pt;}
.y22e{bottom:209.437363pt;}
.y25a{bottom:211.244803pt;}
.y6f{bottom:212.486269pt;}
.y1de{bottom:213.173465pt;}
.yb0{bottom:213.408662pt;}
.y2c{bottom:214.729605pt;}
.y19e{bottom:216.573998pt;}
.yf6{bottom:217.776132pt;}
.y22d{bottom:220.767363pt;}
.y133{bottom:223.610800pt;}
.y1dd{bottom:224.503465pt;}
.y259{bottom:224.576803pt;}
.y6e{bottom:225.818269pt;}
.yaf{bottom:226.754015pt;}
.y2b{bottom:228.062938pt;}
.y19d{bottom:229.905998pt;}
.yf5{bottom:231.108132pt;}
.y124{bottom:231.689269pt;}
.y22c{bottom:232.097363pt;}
.y1dc{bottom:235.833465pt;}
.y132{bottom:236.942800pt;}
.y6d{bottom:239.152935pt;}
.yae{bottom:240.086015pt;}
.y2a{bottom:241.397605pt;}
.y19c{bottom:243.237998pt;}
.y22b{bottom:243.427363pt;}
.yf4{bottom:244.440132pt;}
.y258{bottom:244.567327pt;}
.y1db{bottom:247.163465pt;}
.y131{bottom:250.274800pt;}
.y6c{bottom:252.484935pt;}
.yad{bottom:253.418015pt;}
.y29{bottom:254.729605pt;}
.y22a{bottom:254.757363pt;}
.y19b{bottom:256.569998pt;}
.yf3{bottom:257.772132pt;}
.y257{bottom:257.899327pt;}
.y1da{bottom:258.493465pt;}
.y125{bottom:261.550037pt;}
.y6b{bottom:265.827602pt;}
.y229{bottom:266.087363pt;}
.yac{bottom:266.750015pt;}
.y28{bottom:268.064271pt;}
.y1d9{bottom:269.823465pt;}
.y19a{bottom:269.903331pt;}
.yf2{bottom:271.104132pt;}
.y228{bottom:277.417363pt;}
.y256{bottom:277.903327pt;}
.y6a{bottom:279.159602pt;}
.yab{bottom:280.082015pt;}
.y1d8{bottom:281.153465pt;}
.y27{bottom:281.396271pt;}
.y199{bottom:283.236665pt;}
.yf1{bottom:284.436132pt;}
.y227{bottom:288.747363pt;}
.y126{bottom:292.224671pt;}
.y1d7{bottom:292.483465pt;}
.y69{bottom:292.491602pt;}
.yaa{bottom:293.414015pt;}
.y26{bottom:294.730938pt;}
.y198{bottom:296.569998pt;}
.yf0{bottom:297.768132pt;}
.y255{bottom:297.907327pt;}
.y226{bottom:300.077363pt;}
.y1d6{bottom:303.813465pt;}
.y15a{bottom:305.077871pt;}
.y68{bottom:305.823602pt;}
.ya9{bottom:306.746015pt;}
.y25{bottom:308.062938pt;}
.y197{bottom:309.910018pt;}
.yef{bottom:311.100132pt;}
.y225{bottom:311.407363pt;}
.y1d5{bottom:315.143465pt;}
.y254{bottom:317.911327pt;}
.y159{bottom:318.412538pt;}
.ya8{bottom:320.078015pt;}
.y24{bottom:321.401605pt;}
.y127{bottom:322.085439pt;}
.y224{bottom:322.737363pt;}
.y196{bottom:323.242018pt;}
.yee{bottom:324.432132pt;}
.y1d4{bottom:326.473465pt;}
.y253{bottom:331.243327pt;}
.y158{bottom:331.744538pt;}
.ya7{bottom:333.410015pt;}
.y223{bottom:334.067363pt;}
.y23{bottom:334.733605pt;}
.y67{bottom:335.151602pt;}
.y195{bottom:336.574018pt;}
.yed{bottom:337.764132pt;}
.y1d3{bottom:337.803465pt;}
.y252{bottom:344.576660pt;}
.y157{bottom:345.079205pt;}
.y222{bottom:345.397363pt;}
.ya6{bottom:346.742015pt;}
.y22{bottom:348.065605pt;}
.y66{bottom:348.488935pt;}
.y1d2{bottom:349.133465pt;}
.y194{bottom:349.906018pt;}
.yec{bottom:351.096132pt;}
.y221{bottom:356.727363pt;}
.y156{bottom:358.411205pt;}
.ya5{bottom:360.074015pt;}
.y1d1{bottom:360.463465pt;}
.y21{bottom:361.397605pt;}
.y65{bottom:361.820935pt;}
.y193{bottom:363.238018pt;}
.yeb{bottom:364.428132pt;}
.y220{bottom:368.057363pt;}
.y251{bottom:371.243327pt;}
.y155{bottom:371.743205pt;}
.y1d0{bottom:371.793465pt;}
.y20{bottom:374.729605pt;}
.y64{bottom:375.152935pt;}
.y192{bottom:376.570018pt;}
.yea{bottom:377.760132pt;}
.y21f{bottom:379.387363pt;}
.y1cf{bottom:383.123465pt;}
.y250{bottom:384.576660pt;}
.y1f{bottom:388.065605pt;}
.y63{bottom:388.484935pt;}
.ya4{bottom:389.416682pt;}
.y191{bottom:389.908685pt;}
.y21e{bottom:390.717363pt;}
.ye9{bottom:391.093465pt;}
.y1ce{bottom:394.453465pt;}
.y166{bottom:400.582249pt;}
.y1e{bottom:401.397605pt;}
.y62{bottom:401.827602pt;}
.y21d{bottom:402.047363pt;}
.ya3{bottom:402.748682pt;}
.y190{bottom:403.240685pt;}
.y165{bottom:405.575583pt;}
.y1cd{bottom:405.783465pt;}
.y121{bottom:410.685885pt;}
.y24f{bottom:412.552656pt;}
.y21c{bottom:413.377363pt;}
.y1d{bottom:414.729605pt;}
.y61{bottom:415.159602pt;}
.ya2{bottom:416.080682pt;}
.y18f{bottom:416.572685pt;}
.y1cc{bottom:417.113465pt;}
.ye8{bottom:420.461506pt;}
.y120{bottom:424.017885pt;}
.y21b{bottom:424.707363pt;}
.y24e{bottom:425.884656pt;}
.y164{bottom:426.155583pt;}
.y1c{bottom:428.062938pt;}
.y1cb{bottom:428.443465pt;}
.y60{bottom:428.491602pt;}
.ya1{bottom:429.412682pt;}
.y18e{bottom:429.904685pt;}
.y163{bottom:431.148916pt;}
.ye7{bottom:433.793506pt;}
.y21a{bottom:436.037363pt;}
.y11f{bottom:437.349885pt;}
.y24d{bottom:439.216656pt;}
.y1ca{bottom:439.773465pt;}
.y1b{bottom:441.396271pt;}
.y5f{bottom:441.823602pt;}
.ya0{bottom:442.744682pt;}
.y18d{bottom:443.236685pt;}
.ye6{bottom:447.125506pt;}
.y219{bottom:447.367363pt;}
.y11e{bottom:450.681885pt;}
.y1c9{bottom:451.103465pt;}
.y162{bottom:451.728916pt;}
.y24c{bottom:452.548656pt;}
.y1a{bottom:454.766906pt;}
.y5e{bottom:455.155602pt;}
.y9f{bottom:456.076682pt;}
.y18c{bottom:456.598018pt;}
.y161{bottom:456.722249pt;}
.y218{bottom:458.697363pt;}
.ye5{bottom:460.457506pt;}
.y1c8{bottom:462.433465pt;}
.y24b{bottom:465.880656pt;}
.y19{bottom:468.098906pt;}
.y5d{bottom:468.487602pt;}
.y9e{bottom:469.408682pt;}
.y18b{bottom:469.930018pt;}
.y217{bottom:470.027363pt;}
.y1c7{bottom:473.763465pt;}
.ye4{bottom:473.789506pt;}
.y11a{bottom:474.524007pt;}
.y160{bottom:477.303192pt;}
.y24a{bottom:479.213989pt;}
.y216{bottom:481.357363pt;}
.y5c{bottom:481.819602pt;}
.y9d{bottom:482.751349pt;}
.y18a{bottom:483.262018pt;}
.y1c6{bottom:485.093465pt;}
.ye3{bottom:487.121506pt;}
.y114{bottom:487.863078pt;}
.y215{bottom:492.687363pt;}
.y15f{bottom:492.889858pt;}
.y5b{bottom:495.151602pt;}
.y9c{bottom:496.083349pt;}
.y1c5{bottom:496.426799pt;}
.y189{bottom:496.594018pt;}
.ye2{bottom:500.453506pt;}
.y214{bottom:504.017363pt;}
.y249{bottom:505.897989pt;}
.y18{bottom:508.226906pt;}
.y15e{bottom:508.476525pt;}
.y5a{bottom:508.503561pt;}
.y188{bottom:509.926018pt;}
.ye1{bottom:513.785506pt;}
.y115{bottom:514.970079pt;}
.y213{bottom:515.347363pt;}
.y248{bottom:519.229989pt;}
.y59{bottom:521.835561pt;}
.y17{bottom:522.890906pt;}
.y187{bottom:523.258018pt;}
.y15d{bottom:524.063192pt;}
.y9b{bottom:525.411349pt;}
.y212{bottom:526.677363pt;}
.ye0{bottom:527.117506pt;}
.y247{bottom:532.561989pt;}
.y58{bottom:535.167561pt;}
.y186{bottom:536.590018pt;}
.y16{bottom:537.554906pt;}
.y211{bottom:538.007363pt;}
.y9a{bottom:538.743349pt;}
.y15c{bottom:539.648519pt;}
.y1c4{bottom:540.426799pt;}
.ydf{bottom:540.449506pt;}
.y116{bottom:542.946520pt;}
.y246{bottom:545.893989pt;}
.y210{bottom:549.337363pt;}
.y185{bottom:549.922018pt;}
.y99{bottom:552.075349pt;}
.y15{bottom:552.218906pt;}
.yde{bottom:553.781506pt;}
.y15b{bottom:555.233724pt;}
.y245{bottom:559.225989pt;}
.y20f{bottom:560.667363pt;}
.y184{bottom:563.254018pt;}
.y57{bottom:564.495561pt;}
.y98{bottom:565.436641pt;}
.y14{bottom:566.882906pt;}
.y1c3{bottom:567.094799pt;}
.ydd{bottom:567.113506pt;}
.y117{bottom:570.053522pt;}
.y20e{bottom:571.997363pt;}
.y244{bottom:572.557989pt;}
.y183{bottom:576.586018pt;}
.y56{bottom:577.827561pt;}
.y97{bottom:578.768641pt;}
.y1c2{bottom:580.426799pt;}
.ydc{bottom:580.445506pt;}
.y13{bottom:581.546906pt;}
.y20d{bottom:583.327363pt;}
.y243{bottom:585.889989pt;}
.y182{bottom:589.918018pt;}
.y55{bottom:591.159561pt;}
.y96{bottom:592.100641pt;}
.y1c1{bottom:593.760132pt;}
.ydb{bottom:593.777506pt;}
.y20c{bottom:594.657363pt;}
.y12{bottom:596.210906pt;}
.y118{bottom:597.071142pt;}
.y242{bottom:599.221989pt;}
.y181{bottom:603.250018pt;}
.y54{bottom:604.491561pt;}
.y20b{bottom:605.987363pt;}
.yda{bottom:607.109506pt;}
.y11{bottom:610.874906pt;}
.y241{bottom:612.553989pt;}
.y180{bottom:616.582018pt;}
.y20a{bottom:617.317363pt;}
.y53{bottom:617.823561pt;}
.y1c0{bottom:620.437506pt;}
.yd9{bottom:620.441506pt;}
.y95{bottom:621.428641pt;}
.y119{bottom:625.136964pt;}
.y10{bottom:625.538906pt;}
.y240{bottom:625.885989pt;}
.y209{bottom:628.647363pt;}
.y143{bottom:629.353872pt;}
.y17f{bottom:629.914018pt;}
.y52{bottom:631.155561pt;}
.y1bf{bottom:633.769506pt;}
.yd8{bottom:633.773506pt;}
.y94{bottom:634.760641pt;}
.y23f{bottom:639.217989pt;}
.y208{bottom:639.977363pt;}
.yf{bottom:640.202906pt;}
.y142{bottom:642.693872pt;}
.y17e{bottom:643.246018pt;}
.y51{bottom:644.487561pt;}
.y1be{bottom:647.101506pt;}
.yd7{bottom:647.105506pt;}
.y93{bottom:648.092641pt;}
.y207{bottom:651.307363pt;}
.y23e{bottom:652.549989pt;}
.ye{bottom:654.866906pt;}
.y141{bottom:656.025872pt;}
.y17d{bottom:656.578018pt;}
.y50{bottom:657.819561pt;}
.y1bd{bottom:660.433506pt;}
.yd6{bottom:660.437506pt;}
.y92{bottom:661.424641pt;}
.y206{bottom:662.637363pt;}
.y23d{bottom:665.881989pt;}
.y140{bottom:669.357872pt;}
.yd{bottom:669.530906pt;}
.y17c{bottom:669.910018pt;}
.y4f{bottom:671.151561pt;}
.y1bc{bottom:673.765506pt;}
.yd5{bottom:673.769506pt;}
.y205{bottom:673.967363pt;}
.y91{bottom:674.756641pt;}
.y23c{bottom:679.213989pt;}
.y13f{bottom:682.689872pt;}
.y17b{bottom:683.242018pt;}
.yc{bottom:684.200239pt;}
.y4e{bottom:684.484895pt;}
.y204{bottom:685.297363pt;}
.y1bb{bottom:687.097506pt;}
.yd4{bottom:687.101506pt;}
.y90{bottom:688.088641pt;}
.y23b{bottom:692.547363pt;}
.y13e{bottom:696.021872pt;}
.y17a{bottom:696.574018pt;}
.y203{bottom:696.627363pt;}
.y4d{bottom:697.822228pt;}
.yb{bottom:698.864239pt;}
.y1ba{bottom:700.429506pt;}
.yd3{bottom:700.433506pt;}
.y8f{bottom:701.420641pt;}
.y202{bottom:707.957363pt;}
.y13d{bottom:709.353872pt;}
.y179{bottom:709.906018pt;}
.y4c{bottom:711.154228pt;}
.y107{bottom:712.549755pt;}
.ya{bottom:713.528239pt;}
.y1b9{bottom:713.761506pt;}
.yd2{bottom:713.765506pt;}
.y8e{bottom:714.752641pt;}
.y201{bottom:719.287363pt;}
.y13c{bottom:722.685872pt;}
.y178{bottom:723.238018pt;}
.y4b{bottom:724.486228pt;}
.yd1{bottom:727.097506pt;}
.y1b8{bottom:727.101506pt;}
.y8d{bottom:728.084641pt;}
.y106{bottom:730.081706pt;}
.y200{bottom:730.617363pt;}
.y177{bottom:736.570018pt;}
.y4a{bottom:737.818228pt;}
.y105{bottom:739.217755pt;}
.y9{bottom:740.194906pt;}
.yd0{bottom:740.429506pt;}
.y1b7{bottom:740.433506pt;}
.y8c{bottom:741.416641pt;}
.y1ff{bottom:741.947363pt;}
.y176{bottom:749.902018pt;}
.y154{bottom:750.917568pt;}
.y49{bottom:751.162228pt;}
.y104{bottom:752.549755pt;}
.y1fe{bottom:753.277363pt;}
.ycf{bottom:753.761506pt;}
.y1b6{bottom:753.765506pt;}
.y8b{bottom:754.748641pt;}
.y153{bottom:755.910902pt;}
.y8{bottom:756.194906pt;}
.y175{bottom:763.235352pt;}
.y48{bottom:764.494228pt;}
.y1fd{bottom:764.607363pt;}
.y103{bottom:765.881755pt;}
.y1b5{bottom:767.097506pt;}
.yce{bottom:767.098839pt;}
.y8a{bottom:768.080641pt;}
.y7{bottom:772.194906pt;}
.y1fc{bottom:775.937363pt;}
.y152{bottom:776.490902pt;}
.y47{bottom:777.826228pt;}
.y1b4{bottom:780.429506pt;}
.ycd{bottom:780.430839pt;}
.y89{bottom:781.412641pt;}
.y151{bottom:781.484235pt;}
.y1fb{bottom:787.267363pt;}
.y46{bottom:791.158228pt;}
.y174{bottom:792.586018pt;}
.y1b3{bottom:793.761506pt;}
.ycc{bottom:793.762839pt;}
.y113{bottom:794.056432pt;}
.y88{bottom:794.744641pt;}
.y1fa{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y150{bottom:802.064235pt;}
.y45{bottom:804.490228pt;}
.y173{bottom:805.918018pt;}
.y14f{bottom:807.057568pt;}
.ycb{bottom:807.094839pt;}
.y87{bottom:808.076641pt;}
.y112{bottom:809.643099pt;}
.y1f9{bottom:809.927363pt;}
.y44{bottom:817.822228pt;}
.y172{bottom:819.250018pt;}
.y1b2{bottom:820.430839pt;}
.yca{bottom:820.437506pt;}
.y1f8{bottom:821.257363pt;}
.y86{bottom:821.408641pt;}
.y111{bottom:825.229766pt;}
.y14e{bottom:827.637568pt;}
.y43{bottom:831.154228pt;}
.y171{bottom:832.582018pt;}
.y1f7{bottom:832.587363pt;}
.y14d{bottom:832.630902pt;}
.y1b1{bottom:833.762839pt;}
.yc9{bottom:833.769506pt;}
.y85{bottom:834.747308pt;}
.y110{bottom:840.816432pt;}
.y5{bottom:841.528239pt;}
.y1f6{bottom:843.917363pt;}
.y42{bottom:844.486228pt;}
.y170{bottom:845.914018pt;}
.y1b0{bottom:847.094839pt;}
.yc8{bottom:847.101506pt;}
.y84{bottom:848.079308pt;}
.y30{bottom:848.326009pt;}
.y14c{bottom:853.210902pt;}
.y1f5{bottom:855.247363pt;}
.y10f{bottom:856.403099pt;}
.y41{bottom:857.818228pt;}
.y14b{bottom:858.204235pt;}
.y16f{bottom:859.246018pt;}
.y1af{bottom:860.428173pt;}
.yc7{bottom:860.433506pt;}
.y83{bottom:861.411308pt;}
.y1f4{bottom:866.577363pt;}
.y40{bottom:871.152895pt;}
.y10e{bottom:871.989766pt;}
.y16e{bottom:872.578018pt;}
.y1ae{bottom:873.761506pt;}
.yc6{bottom:873.765506pt;}
.y82{bottom:874.743308pt;}
.y1f3{bottom:877.907363pt;}
.y14a{bottom:878.784235pt;}
.y149{bottom:883.777568pt;}
.y3f{bottom:884.484895pt;}
.y16d{bottom:885.910018pt;}
.yc5{bottom:887.097506pt;}
.y1ad{bottom:887.100173pt;}
.y10d{bottom:887.576432pt;}
.y81{bottom:888.075308pt;}
.y1f2{bottom:889.237363pt;}
.y3e{bottom:897.816895pt;}
.y16c{bottom:899.242018pt;}
.yc4{bottom:900.429506pt;}
.y1ac{bottom:900.432173pt;}
.y1f1{bottom:900.567363pt;}
.y80{bottom:901.413975pt;}
.y10c{bottom:903.163099pt;}
.y148{bottom:904.357568pt;}
.y147{bottom:909.350902pt;}
.y3d{bottom:911.150228pt;}
.y1f0{bottom:911.897363pt;}
.y16b{bottom:912.574018pt;}
.yc3{bottom:913.761506pt;}
.y1ab{bottom:913.764173pt;}
.y7f{bottom:914.745975pt;}
.y10b{bottom:918.749766pt;}
.y1ef{bottom:923.227363pt;}
.y16a{bottom:925.906018pt;}
.y1aa{bottom:927.096173pt;}
.yc2{bottom:927.097506pt;}
.y7e{bottom:928.077975pt;}
.y146{bottom:929.930902pt;}
.y10a{bottom:934.336432pt;}
.y1ee{bottom:934.557363pt;}
.y145{bottom:934.924235pt;}
.y169{bottom:939.238018pt;}
.y1a9{bottom:940.428173pt;}
.yc1{bottom:940.429506pt;}
.y3c{bottom:940.486228pt;}
.y7d{bottom:941.409975pt;}
.y1ed{bottom:945.887363pt;}
.y109{bottom:949.923099pt;}
.y168{bottom:952.570018pt;}
.yc0{bottom:953.761506pt;}
.y3b{bottom:953.818228pt;}
.y7c{bottom:954.741975pt;}
.y144{bottom:955.509847pt;}
.y1ec{bottom:957.217363pt;}
.y108{bottom:965.509766pt;}
.y167{bottom:965.902018pt;}
.ybf{bottom:967.093506pt;}
.y3a{bottom:967.150228pt;}
.y7b{bottom:968.073975pt;}
.y1eb{bottom:968.547363pt;}
.y7a{bottom:1013.902507pt;}
.ybe{bottom:1013.996908pt;}
.y39{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h2c{height:22.231642pt;}
.h2f{height:22.267392pt;}
.h2e{height:24.640416pt;}
.h31{height:24.679085pt;}
.h11{height:27.275268pt;}
.h2{height:30.687500pt;}
.h28{height:30.856800pt;}
.h3e{height:31.476562pt;}
.h8{height:34.523438pt;}
.h2a{height:36.922667pt;}
.h2b{height:37.127520pt;}
.h29{height:38.229333pt;}
.h9{height:39.219682pt;}
.h3f{height:39.560000pt;}
.h41{height:40.080000pt;}
.h3{height:40.604167pt;}
.h40{height:40.960000pt;}
.h14{height:42.195312pt;}
.h12{height:43.141927pt;}
.h7{height:43.600260pt;}
.h6{height:43.718750pt;}
.h13{height:43.887578pt;}
.h42{height:44.834667pt;}
.ha{height:47.472000pt;}
.hb{height:47.502231pt;}
.h35{height:47.538783pt;}
.h22{height:47.539597pt;}
.h1a{height:47.576930pt;}
.h23{height:47.603434pt;}
.h16{height:47.608930pt;}
.h25{height:47.613938pt;}
.h1b{height:47.614101pt;}
.h37{height:47.624194pt;}
.h3d{height:47.624605pt;}
.h32{height:47.624767pt;}
.h36{height:47.629450pt;}
.h39{height:47.629608pt;}
.h3c{height:47.629938pt;}
.he{height:47.630101pt;}
.h21{height:47.630915pt;}
.h26{height:47.635271pt;}
.h1c{height:47.635434pt;}
.h17{height:47.635597pt;}
.h24{height:47.640605pt;}
.hd{height:47.640767pt;}
.h1e{height:47.640808pt;}
.hf{height:47.646101pt;}
.h3a{height:47.646142pt;}
.h15{height:47.646264pt;}
.h38{height:47.650942pt;}
.h3b{height:47.651271pt;}
.hc{height:47.651434pt;}
.h1f{height:47.651454pt;}
.h1d{height:47.651475pt;}
.h18{height:47.651597pt;}
.h20{height:47.657581pt;}
.h19{height:48.096000pt;}
.h27{height:49.152000pt;}
.h4{height:50.755208pt;}
.h34{height:56.933333pt;}
.h10{height:69.046875pt;}
.h33{height:78.213333pt;}
.h5{height:99.734375pt;}
.h2d{height:184.350667pt;}
.h30{height:199.989339pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:302.361328pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x12{left:7.348938pt;}
.x10{left:14.518270pt;}
.x11{left:40.930461pt;}
.x13{left:42.838837pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.xb{left:176.194681pt;}
.x5{left:207.874003pt;}
.x14{left:212.063070pt;}
.xc{left:219.943604pt;}
.xf{left:222.387523pt;}
.x6{left:223.869642pt;}
.xe{left:226.495906pt;}
.xa{left:228.666667pt;}
.xd{left:230.693601pt;}
.x1a{left:269.416261pt;}
.x17{left:298.069736pt;}
.x18{left:427.289593pt;}
.x15{left:446.339068pt;}
.x4{left:521.612549pt;}
.x19{left:557.825593pt;}
.x16{left:567.523068pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1b{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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