
    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_1488b355fbc27ea9c7b26a44.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_26c205f4b871cde3c703de50.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_df44c27b016eea255f8fc685.woff')format("woff");}.ff3{font-family:ff3;line-height:0.808594;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_4794229d6cb57181d75ca5f8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_4548a630c71896087035e6e7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.929688;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_1874f3e67af04ab83b0224d0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_c9103dc6d613ff6305e43f4b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_22f21ffed7cc2226855fa1c4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.928223;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_0ab416977770718b7eec445e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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;}
.m6{transform:matrix(0.000000,0.250018,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250018,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250018,-0.250000,0.000000,0,0);}
.m3{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);}
.ma{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.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.188962,-0.163687,0.163687,0.188962,0,0);-ms-transform:matrix(0.188962,-0.163687,0.163687,0.188962,0,0);-webkit-transform:matrix(0.188962,-0.163687,0.163687,0.188962,0,0);}
.m4{transform:matrix(0.188969,-0.163697,0.163679,0.188969,0,0);-ms-transform:matrix(0.188969,-0.163697,0.163679,0.188969,0,0);-webkit-transform:matrix(0.188969,-0.163697,0.163679,0.188969,0,0);}
.m5{transform:matrix(0.240196,0.069324,-0.069324,0.240196,0,0);-ms-transform:matrix(0.240196,0.069324,-0.069324,0.240196,0,0);-webkit-transform:matrix(0.240196,0.069324,-0.069324,0.240196,0,0);}
.m2{transform:matrix(0.240214,0.069342,-0.069324,0.240196,0,0);-ms-transform:matrix(0.240214,0.069342,-0.069324,0.240196,0,0);-webkit-transform:matrix(0.240214,0.069342,-0.069324,0.240196,0,0);}
.m8{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,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);}
.v8{vertical-align:-20.880067px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-12.239870px;}
.vc{vertical-align:-5.759996px;}
.vf{vertical-align:-4.319960px;}
.vb{vertical-align:-2.159982px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.159982px;}
.v5{vertical-align:3.599946px;}
.ve{vertical-align:5.040112px;}
.v7{vertical-align:12.240139px;}
.vd{vertical-align:18.720153px;}
.v3{vertical-align:20.879996px;}
.v9{vertical-align:22.320099px;}
.v1{vertical-align:27.360004px;}
.v6{vertical-align:34.560103px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005857px;}
.ls11{letter-spacing:0.007523px;}
.ls2c{letter-spacing:0.007527px;}
.ls2b{letter-spacing:0.007662px;}
.ls12{letter-spacing:0.007797px;}
.ls18{letter-spacing:0.029925px;}
.ls1e{letter-spacing:0.030153px;}
.ls22{letter-spacing:0.030169px;}
.ls13{letter-spacing:0.042290px;}
.ls29{letter-spacing:0.042425px;}
.ls2f{letter-spacing:0.042429px;}
.ls2a{letter-spacing:0.161309px;}
.ls9{letter-spacing:0.161314px;}
.lsa{letter-spacing:0.161377px;}
.ls2d{letter-spacing:0.161381px;}
.ls8{letter-spacing:0.161449px;}
.ls10{letter-spacing:0.188201px;}
.ls3{letter-spacing:0.215264px;}
.ls30{letter-spacing:0.232004px;}
.ls1{letter-spacing:0.358839px;}
.ls2{letter-spacing:0.358884px;}
.ls14{letter-spacing:0.359109px;}
.ls0{letter-spacing:0.359114px;}
.ls31{letter-spacing:0.359145px;}
.ls2e{letter-spacing:0.502681px;}
.ls23{letter-spacing:0.529025px;}
.ls19{letter-spacing:0.529269px;}
.ls32{letter-spacing:0.552377px;}
.ls16{letter-spacing:0.741095px;}
.ls21{letter-spacing:0.753583px;}
.ls1c{letter-spacing:0.759326px;}
.lsc{letter-spacing:0.854199px;}
.ls34{letter-spacing:0.880837px;}
.lsf{letter-spacing:1.118711px;}
.ls7{letter-spacing:1.702289px;}
.lsb{letter-spacing:2.040696px;}
.lsd{letter-spacing:2.592902px;}
.ls1d{letter-spacing:5.105025px;}
.ls20{letter-spacing:5.300866px;}
.ls15{letter-spacing:5.304679px;}
.ls1b{letter-spacing:5.777241px;}
.ls17{letter-spacing:5.787103px;}
.lse{letter-spacing:20.039289px;}
.ls36{letter-spacing:26.099420px;}
.ls35{letter-spacing:46.085852px;}
.ls6{letter-spacing:64.085852px;}
.ls27{letter-spacing:108.179510px;}
.ls26{letter-spacing:127.030226px;}
.ls24{letter-spacing:127.030231px;}
.ls1a{letter-spacing:127.030505px;}
.ls25{letter-spacing:127.596438px;}
.ls1f{letter-spacing:127.596578px;}
.ls28{letter-spacing:138.419514px;}
.ls33{letter-spacing:845.999324px;}
.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;}
}
.ws15{word-spacing:-59.762250px;}
.ws2{word-spacing:-18.000676px;}
.ws38{word-spacing:-16.347600px;}
.ws39{word-spacing:-16.346972px;}
.ws3d{word-spacing:-15.861150px;}
.ws6{word-spacing:-14.940563px;}
.ws1{word-spacing:-13.500563px;}
.ws7{word-spacing:-13.147695px;}
.ws12{word-spacing:-12.607488px;}
.ws14{word-spacing:-12.601958px;}
.ws0{word-spacing:-12.060450px;}
.ws16{word-spacing:-11.880495px;}
.ws20{word-spacing:-10.218893px;}
.ws21{word-spacing:-10.218332px;}
.ws26{word-spacing:-10.212401px;}
.ws27{word-spacing:-10.212065px;}
.ws1c{word-spacing:-10.189575px;}
.ws30{word-spacing:-10.183095px;}
.ws31{word-spacing:-10.182574px;}
.ws25{word-spacing:-9.914760px;}
.ws35{word-spacing:-9.909529px;}
.ws2a{word-spacing:-9.908460px;}
.ws4{word-spacing:-9.720371px;}
.ws8{word-spacing:-9.187556px;}
.ws3{word-spacing:-9.000349px;}
.wsa{word-spacing:-5.656280px;}
.wsf{word-spacing:-5.653308px;}
.wsd{word-spacing:-5.652823px;}
.wsb{word-spacing:-4.715048px;}
.wse{word-spacing:-4.712356px;}
.ws2d{word-spacing:-2.099032px;}
.ws1b{word-spacing:-1.600070px;}
.ws1d{word-spacing:-0.937407px;}
.ws19{word-spacing:-0.925758px;}
.wsc{word-spacing:-0.755747px;}
.ws1a{word-spacing:-0.582885px;}
.ws18{word-spacing:-0.445735px;}
.ws2c{word-spacing:-0.229759px;}
.ws10{word-spacing:-0.142897px;}
.ws2b{word-spacing:-0.098468px;}
.ws5{word-spacing:0.000000px;}
.ws17{word-spacing:0.342873px;}
.ws9{word-spacing:3.167399px;}
.ws2e{word-spacing:52.989314px;}
.ws32{word-spacing:53.016530px;}
.ws36{word-spacing:53.016665px;}
.ws22{word-spacing:53.652796px;}
.ws28{word-spacing:54.389048px;}
.ws1e{word-spacing:54.461302px;}
.ws3a{word-spacing:173.141617px;}
.ws23{word-spacing:973.024765px;}
.ws24{word-spacing:973.124876px;}
.ws29{word-spacing:973.157560px;}
.ws1f{word-spacing:973.262058px;}
.ws2f{word-spacing:973.262062px;}
.ws37{word-spacing:973.280142px;}
.ws33{word-spacing:973.280214px;}
.ws34{word-spacing:973.294107px;}
.ws13{word-spacing:1102.732644px;}
.ws11{word-spacing:1195.517667px;}
.ws3b{word-spacing:1557.380125px;}
.ws3c{word-spacing:1557.526487px;}
._2b{margin-left:-1560.381957px;}
._46{margin-left:-830.284007px;}
._52{margin-left:-794.499843px;}
._43{margin-left:-238.175528px;}
._4f{margin-left:-228.114430px;}
._44{margin-left:-164.652894px;}
._50{margin-left:-157.340302px;}
._3d{margin-left:-139.139667px;}
._3a{margin-left:-137.652905px;}
._42{margin-left:-90.537507px;}
._47{margin-left:-89.325648px;}
._53{margin-left:-87.436267px;}
._4e{margin-left:-86.413467px;}
._3{margin-left:-9.078844px;}
._1{margin-left:-5.781186px;}
._4{margin-left:-4.280934px;}
._9{margin-left:-3.266128px;}
._7{margin-left:-2.206915px;}
._0{margin-left:-1.039876px;}
._2{width:1.165254px;}
._6{width:2.441441px;}
._5{width:3.465173px;}
._8{width:4.956027px;}
._a{width:6.903584px;}
._b{width:8.047017px;}
._11{width:9.091597px;}
._13{width:10.987150px;}
._12{width:12.550539px;}
._14{width:13.569492px;}
._10{width:16.246074px;}
._d{width:17.345306px;}
._c{width:18.398479px;}
._f{width:20.152965px;}
._e{width:21.523858px;}
._56{width:25.759495px;}
._4a{width:45.975060px;}
._49{width:52.867337px;}
._4c{width:54.248423px;}
._48{width:61.507391px;}
._4b{width:63.608508px;}
._1d{width:96.129557px;}
._28{width:105.709259px;}
._3c{width:108.179510px;}
._4d{width:125.544818px;}
._41{width:131.146474px;}
._3f{width:136.398656px;}
._39{width:137.699361px;}
._40{width:138.880399px;}
._23{width:139.979488px;}
._1e{width:153.021351px;}
._16{width:166.877089px;}
._22{width:168.529545px;}
._29{width:177.330894px;}
._3e{width:179.910850px;}
._34{width:185.876143px;}
._54{width:188.204301px;}
._35{width:201.136632px;}
._18{width:205.582140px;}
._36{width:208.763496px;}
._20{width:218.062289px;}
._3b{width:219.172753px;}
._24{width:242.564811px;}
._27{width:246.372490px;}
._21{width:247.475944px;}
._1c{width:262.410090px;}
._1f{width:267.480326px;}
._32{width:274.758222px;}
._26{width:276.519931px;}
._25{width:300.066257px;}
._38{width:304.860247px;}
._37{width:319.561605px;}
._33{width:330.052753px;}
._31{width:376.140364px;}
._30{width:436.201663px;}
._51{width:480.250190px;}
._45{width:502.214980px;}
._2f{width:525.072406px;}
._1b{width:529.214677px;}
._2e{width:705.672648px;}
._1a{width:739.856655px;}
._17{width:745.106162px;}
._19{width:812.637504px;}
._55{width:850.474052px;}
._2c{width:1049.643198px;}
._15{width:1103.808757px;}
._2d{width:1112.414722px;}
._2a{width:2550.652830px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:12.240495px;}
.fs25{font-size:15.668460px;}
.fs15{font-size:16.367625px;}
.fse{font-size:17.012115px;}
.fs9{font-size:17.021835px;}
.fsd{font-size:20.407305px;}
.fsf{font-size:20.409053px;}
.fs10{font-size:20.413808px;}
.fs8{font-size:20.419785px;}
.fsa{font-size:20.419787px;}
.fsb{font-size:20.425605px;}
.fsc{font-size:21.155715px;}
.fs11{font-size:21.386655px;}
.fs2a{font-size:24.437882px;}
.fs22{font-size:24.557322px;}
.fs1d{font-size:24.573542px;}
.fs26{font-size:32.822685px;}
.fs2b{font-size:33.923385px;}
.fs1a{font-size:33.944985px;}
.fs23{font-size:34.041330px;}
.fs1e{font-size:34.062975px;}
.fs16{font-size:34.287345px;}
.fs4{font-size:36.001395px;}
.fs6{font-size:38.881485px;}
.fs2f{font-size:39.310294px;}
.fs24{font-size:39.633840px;}
.fs2c{font-size:39.638115px;}
.fs1f{font-size:39.659040px;}
.fs29{font-size:40.730295px;}
.fs28{font-size:40.732380px;}
.fs19{font-size:40.756838px;}
.fs18{font-size:40.758300px;}
.fs21{font-size:40.848260px;}
.fs20{font-size:40.849605px;}
.fs1c{font-size:40.873328px;}
.fs1b{font-size:40.875570px;}
.fs7{font-size:41.761620px;}
.fs3{font-size:48.241800px;}
.fs14{font-size:50.407833px;}
.fs12{font-size:50.429951px;}
.fs0{font-size:54.002250px;}
.fs30{font-size:54.492300px;}
.fs27{font-size:56.730600px;}
.fs17{font-size:59.261850px;}
.fs5{font-size:59.762250px;}
.fs31{font-size:63.444600px;}
.fs2e{font-size:65.387887px;}
.fs2d{font-size:65.390400px;}
.fs2{font-size:72.002705px;}
.fs1{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y67{bottom:1.080025px;}
.y6b{bottom:1.259996px;}
.y184{bottom:1.799973px;}
.y197{bottom:1.800007px;}
.y3{bottom:2.879928px;}
.y38{bottom:2.879998px;}
.y155{bottom:3.239989px;}
.y7a{bottom:3.240006px;}
.y5d{bottom:3.419975px;}
.y12e{bottom:3.420044px;}
.y82{bottom:3.599979px;}
.y75{bottom:3.599980px;}
.y159{bottom:3.599997px;}
.y78{bottom:3.600014px;}
.y87{bottom:3.600015px;}
.y64{bottom:4.139991px;}
.y61{bottom:4.139992px;}
.y6a{bottom:4.320030px;}
.y13d{bottom:20.879997px;}
.y121{bottom:20.879998px;}
.y139{bottom:21.059966px;}
.y125{bottom:21.059967px;}
.y12c{bottom:21.060035px;}
.y143{bottom:21.060036px;}
.y131{bottom:36.720016px;}
.y2{bottom:104.040115px;}
.y1{bottom:106.920043px;}
.y36{bottom:108.000000px;}
.y37{bottom:124.740074px;}
.y35{bottom:127.620072px;}
.y31{bottom:134.820099px;}
.y1ad{bottom:144.180039px;}
.y232{bottom:145.080093px;}
.y30{bottom:146.880066px;}
.y6f{bottom:149.400055px;}
.y1a8{bottom:149.940033px;}
.y18c{bottom:150.300041px;}
.ycf{bottom:151.380066px;}
.yb0{bottom:151.740074px;}
.y146{bottom:156.420043px;}
.y1ac{bottom:159.660049px;}
.y1eb{bottom:160.380066px;}
.y231{bottom:160.560036px;}
.yd5{bottom:164.160049px;}
.y239{bottom:164.880066px;}
.y18b{bottom:165.780052px;}
.y6e{bottom:166.860077px;}
.y1a7{bottom:167.040047px;}
.y2f{bottom:167.580093px;}
.yaf{bottom:168.840088px;}
.y230{bottom:176.220085px;}
.y1ea{bottom:177.660049px;}
.y268{bottom:179.460091px;}
.yd4{bottom:179.820099px;}
.y238{bottom:180.360077px;}
.y1ab{bottom:181.260064px;}
.y6d{bottom:184.140060px;}
.y1a6{bottom:184.320099px;}
.yae{bottom:186.120072px;}
.y18a{bottom:187.380066px;}
.yce{bottom:188.460091px;}
.y145{bottom:190.080093px;}
.y1c4{bottom:194.400055px;}
.y1d4{bottom:194.580093px;}
.y1e9{bottom:194.760064px;}
.y267{bottom:194.940033px;}
.y2e{bottom:195.660049px;}
.y6c{bottom:201.240074px;}
.yd3{bottom:201.420043px;}
.y1a5{bottom:201.600083px;}
.yad{bottom:203.400055px;}
.y1c8{bottom:204.120072px;}
.y1d8{bottom:204.300041px;}
.y102{bottom:207.000068px;}
.y107{bottom:208.620072px;}
.y1c9{bottom:209.700096px;}
.y10c{bottom:209.880066px;}
.y266{bottom:210.420043px;}
.y237{bottom:210.960091px;}
.y1e8{bottom:212.040047px;}
.y142{bottom:212.400055px;}
.y2d{bottom:212.940033px;}
.y103{bottom:215.646672px;}
.y69{bottom:216.000068px;}
.y106{bottom:217.260064px;}
.y1a4{bottom:218.880066px;}
.y68{bottom:220.320099px;}
.yac{bottom:220.680039px;}
.y101{bottom:221.940033px;}
.y141{bottom:224.640060px;}
.y105{bottom:225.900055px;}
.y265{bottom:226.080093px;}
.y1e7{bottom:229.500068px;}
.y2c{bottom:230.220085px;}
.y144{bottom:233.460091px;}
.y104{bottom:234.540047px;}
.y1d3{bottom:235.080093px;}
.y66{bottom:235.260064px;}
.y1a3{bottom:236.160049px;}
.y100{bottom:236.880066px;}
.yab{bottom:237.960091px;}
.y65{bottom:239.400055px;}
.y1ca{bottom:240.840088px;}
.y264{bottom:241.560036px;}
.y109{bottom:242.100083px;}
.y10d{bottom:243.540047px;}
.y1d2{bottom:246.960091px;}
.y1e6{bottom:247.140060px;}
.y2b{bottom:247.500068px;}
.yff{bottom:251.820099px;}
.y108{bottom:252.929014px;}
.y1a2{bottom:253.440033px;}
.y10a{bottom:253.980079px;}
.y63{bottom:254.340088px;}
.yaa{bottom:255.240074px;}
.y263{bottom:257.040047px;}
.y62{bottom:258.480079px;}
.y1d1{bottom:258.840088px;}
.y13f{bottom:259.740074px;}
.yf9{bottom:260.627751px;}
.y1e5{bottom:264.420043px;}
.y2a{bottom:264.600083px;}
.y10b{bottom:266.040047px;}
.yfe{bottom:266.760064px;}
.y112{bottom:267.670311px;}
.y140{bottom:268.560036px;}
.y1a1{bottom:270.540047px;}
.y1d0{bottom:270.720085px;}
.y1cb{bottom:271.980079px;}
.ya9{bottom:272.340088px;}
.y262{bottom:272.520058px;}
.y60{bottom:273.420043px;}
.y5f{bottom:277.560036px;}
.y113{bottom:279.374451px;}
.yfd{bottom:281.700096px;}
.y29{bottom:281.880066px;}
.y13c{bottom:282.780052px;}
.y261{bottom:288.180039px;}
.ya8{bottom:289.620072px;}
.y5c{bottom:292.500068px;}
.y5e{bottom:292.860077px;}
.y13b{bottom:294.840088px;}
.yfc{bottom:296.640060px;}
.y1e4{bottom:298.980079px;}
.y28{bottom:299.160049px;}
.y1a0{bottom:299.880066px;}
.y1d5{bottom:302.397652px;}
.y1cc{bottom:303.300041px;}
.y13e{bottom:303.660049px;}
.ya7{bottom:306.900055px;}
.y1c5{bottom:307.995366px;}
.yfb{bottom:311.580093px;}
.y1d6{bottom:311.925546px;}
.y1c6{bottom:314.116187px;}
.y5b{bottom:315.180039px;}
.y1e3{bottom:316.260064px;}
.y27{bottom:316.440033px;}
.y1d7{bottom:318.413807px;}
.y138{bottom:318.600083px;}
.y1d9{bottom:318.960091px;}
.y260{bottom:319.140060px;}
.y1c7{bottom:321.136737px;}
.ya6{bottom:324.180039px;}
.yfa{bottom:326.520058px;}
.y10f{bottom:326.891076px;}
.y111{bottom:329.407281px;}
.y137{bottom:330.840088px;}
.y1e2{bottom:333.540047px;}
.y26{bottom:333.720085px;}
.y1cd{bottom:334.440033px;}
.y25f{bottom:334.620072px;}
.y13a{bottom:339.660049px;}
.ya5{bottom:341.460091px;}
.ycd{bottom:343.080093px;}
.y19f{bottom:349.920043px;}
.y25e{bottom:350.100083px;}
.y25{bottom:350.820099px;}
.y5a{bottom:351.720085px;}
.y135{bottom:353.880066px;}
.ya4{bottom:358.920043px;}
.y19e{bottom:365.580093px;}
.y25d{bottom:365.760064px;}
.y134{bottom:365.940033px;}
.y1e1{bottom:367.920043px;}
.y24{bottom:368.100083px;}
.y1dd{bottom:368.280052px;}
.y136{bottom:374.760064px;}
.ya3{bottom:376.200096px;}
.ycc{bottom:378.000068px;}
.y1dc{bottom:380.160049px;}
.y110{bottom:380.890739px;}
.y25c{bottom:381.240074px;}
.y23{bottom:385.380066px;}
.y59{bottom:385.560036px;}
.y10e{bottom:385.927056px;}
.y19d{bottom:387.360077px;}
.y132{bottom:389.700096px;}
.y130{bottom:391.680039px;}
.y1db{bottom:392.040047px;}
.ya2{bottom:393.660049px;}
.y1ce{bottom:396.720085px;}
.y189{bottom:400.680039px;}
.y133{bottom:402.120072px;}
.y22{bottom:402.660049px;}
.y58{bottom:403.020058px;}
.y1da{bottom:403.920043px;}
.y188{bottom:404.100083px;}
.y21f{bottom:404.460091px;}
.y187{bottom:407.520058px;}
.ycb{bottom:408.420043px;}
.y12f{bottom:410.760064px;}
.y186{bottom:410.940033px;}
.ya1{bottom:411.120072px;}
.y25b{bottom:412.200096px;}
.y1e0{bottom:418.500068px;}
.ydf{bottom:419.400055px;}
.y21{bottom:419.940033px;}
.y57{bottom:420.480079px;}
.ye4{bottom:421.020058px;}
.yf3{bottom:421.200096px;}
.y22f{bottom:421.740074px;}
.ye9{bottom:422.280052px;}
.yf6{bottom:422.460091px;}
.y1cf{bottom:427.860077px;}
.ye0{bottom:428.036250px;}
.yef{bottom:428.219675px;}
.y185{bottom:428.220085px;}
.ya0{bottom:428.400055px;}
.ye3{bottom:429.660049px;}
.yf2{bottom:429.840088px;}
.yde{bottom:434.340088px;}
.y20{bottom:437.220085px;}
.y56{bottom:437.580093px;}
.y21e{bottom:437.940033px;}
.ye2{bottom:438.300041px;}
.yf1{bottom:438.480079px;}
.y1df{bottom:440.100083px;}
.y12b{bottom:442.440033px;}
.y25a{bottom:443.340088px;}
.y9f{bottom:445.680039px;}
.y183{bottom:446.220085px;}
.ye1{bottom:446.940033px;}
.yf0{bottom:447.120072px;}
.ydd{bottom:449.280052px;}
.y204{bottom:453.240074px;}
.y21d{bottom:453.420043px;}
.y1f{bottom:454.320099px;}
.ye6{bottom:454.500068px;}
.y12a{bottom:454.680039px;}
.yea{bottom:455.940033px;}
.yf7{bottom:456.120072px;}
.y259{bottom:458.820099px;}
.y208{bottom:462.780052px;}
.y9e{bottom:463.320099px;}
.y12d{bottom:463.500068px;}
.ydc{bottom:464.220085px;}
.y1aa{bottom:464.760064px;}
.ye5{bottom:465.324328px;}
.yf4{bottom:465.450108px;}
.ye7{bottom:466.380066px;}
.yf5{bottom:466.560036px;}
.y55{bottom:466.920043px;}
.y209{bottom:468.540047px;}
.y1e{bottom:471.600083px;}
.yd6{bottom:473.027732px;}
.yeb{bottom:473.028311px;}
.y258{bottom:474.300041px;}
.y21c{bottom:475.020058px;}
.y128{bottom:477.720085px;}
.y1b7{bottom:477.900055px;}
.ye8{bottom:478.440033px;}
.ydb{bottom:479.160049px;}
.y116{bottom:483.130311px;}
.y182{bottom:485.100083px;}
.y1b9{bottom:487.620072px;}
.y1d{bottom:488.880066px;}
.y127{bottom:489.780052px;}
.y257{bottom:489.960091px;}
.y117{bottom:492.310431px;}
.y9d{bottom:492.840088px;}
.y1ba{bottom:493.200096px;}
.y21b{bottom:493.740074px;}
.yda{bottom:494.100083px;}
.y220{bottom:495.720085px;}
.y129{bottom:498.600083px;}
.y236{bottom:499.680039px;}
.y21a{bottom:505.620072px;}
.y1c{bottom:506.160049px;}
.y20a{bottom:508.140060px;}
.yd9{bottom:509.040047px;}
.yee{bottom:509.220085px;}
.y224{bottom:511.200096px;}
.y235{bottom:512.280052px;}
.y124{bottom:512.820099px;}
.y1bb{bottom:514.980079px;}
.y54{bottom:517.140060px;}
.y219{bottom:517.500068px;}
.y181{bottom:518.940033px;}
.y225{bottom:520.380066px;}
.y256{bottom:521.460091px;}
.y1b{bottom:523.440033px;}
.yd8{bottom:523.980079px;}
.yed{bottom:524.160049px;}
.y123{bottom:525.060036px;}
.y218{bottom:529.560036px;}
.y126{bottom:533.880066px;}
.y53{bottom:534.420043px;}
.y180{bottom:536.220085px;}
.y1bc{bottom:536.940033px;}
.yd7{bottom:538.920043px;}
.yec{bottom:539.100083px;}
.y1a{bottom:540.720085px;}
.y9c{bottom:542.700096px;}
.y115{bottom:543.428376px;}
.y20b{bottom:547.920043px;}
.y120{bottom:548.820099px;}
.y52{bottom:551.700096px;}
.y17f{bottom:553.500068px;}
.y1b8{bottom:554.759107px;}
.y19{bottom:557.820099px;}
.y9b{bottom:558.180039px;}
.y1bd{bottom:558.720085px;}
.y11f{bottom:560.880066px;}
.y213{bottom:561.071852px;}
.y22b{bottom:562.680039px;}
.y205{bottom:566.830175px;}
.y51{bottom:568.800041px;}
.y122{bottom:569.700096px;}
.y214{bottom:570.604375px;}
.y17e{bottom:570.780052px;}
.y255{bottom:571.500068px;}
.y206{bottom:572.942595px;}
.y18{bottom:575.100083px;}
.y215{bottom:577.271669px;}
.y216{bottom:577.620072px;}
.y9a{bottom:579.780052px;}
.y207{bottom:579.972175px;}
.y1be{bottom:580.500068px;}
.y22a{bottom:581.580093px;}
.y114{bottom:583.927146px;}
.y50{bottom:586.080093px;}
.y20c{bottom:587.520058px;}
.y17d{bottom:588.060036px;}
.y254{bottom:588.600083px;}
.y226{bottom:590.040047px;}
.y17{bottom:592.380066px;}
.y11e{bottom:594.180039px;}
.yf8{bottom:596.346831px;}
.y1bf{bottom:602.280052px;}
.y4f{bottom:603.360077px;}
.y17c{bottom:605.340088px;}
.y4e{bottom:620.640060px;}
.y253{bottom:621.540047px;}
.y17b{bottom:622.440033px;}
.y1c0{bottom:624.060036px;}
.y16{bottom:625.320099px;}
.y20d{bottom:627.120072px;}
.y212{bottom:629.640060px;}
.y11d{bottom:636.120072px;}
.y22e{bottom:636.300041px;}
.y4d{bottom:637.920043px;}
.y17a{bottom:639.720085px;}
.y211{bottom:641.520058px;}
.y1c1{bottom:646.020058px;}
.yd2{bottom:647.460091px;}
.y210{bottom:653.400055px;}
.y4c{bottom:655.200096px;}
.y179{bottom:657.000068px;}
.y227{bottom:659.880066px;}
.yd1{bottom:662.940033px;}
.y20f{bottom:665.280052px;}
.y20e{bottom:666.720085px;}
.y1c2{bottom:667.800041px;}
.y11c{bottom:669.600083px;}
.y252{bottom:671.580093px;}
.yca{bottom:671.760064px;}
.y4b{bottom:672.300041px;}
.y178{bottom:674.280052px;}
.y15{bottom:675.000068px;}
.y221{bottom:677.514539px;}
.y11b{bottom:685.080093px;}
.y217{bottom:686.520058px;}
.y222{bottom:687.425977px;}
.y19c{bottom:688.140060px;}
.y251{bottom:688.860077px;}
.yc9{bottom:689.040081px;}
.y99{bottom:689.580059px;}
.y177{bottom:691.560070px;}
.yd0{bottom:693.540081px;}
.y223{bottom:698.582759px;}
.y4a{bottom:701.640060px;}
.y19b{bottom:705.240074px;}
.y250{bottom:706.140060px;}
.yc8{bottom:706.320065px;}
.y11a{bottom:706.680073px;}
.y98{bottom:706.860077px;}
.y14{bottom:708.480079px;}
.y1c3{bottom:711.360077px;}
.y14c{bottom:715.140060px;}
.y19a{bottom:720.000068px;}
.y176{bottom:720.720051px;}
.y97{bottom:722.160049px;}
.y24f{bottom:723.420078px;}
.yc7{bottom:723.600083px;}
.y13{bottom:724.140060px;}
.y96{bottom:725.760064px;}
.y91{bottom:728.460056px;}
.y228{bottom:729.720051px;}
.y1f6{bottom:736.560070px;}
.y199{bottom:737.280052px;}
.y12{bottom:739.620072px;}
.y24e{bottom:740.700061px;}
.yc6{bottom:740.880066px;}
.y95{bottom:741.240074px;}
.y90{bottom:742.140060px;}
.y49{bottom:742.860077px;}
.y150{bottom:743.037760px;}
.y94{bottom:744.840054px;}
.y8f{bottom:745.740074px;}
.y1f8{bottom:746.280052px;}
.y1a9{bottom:748.260064px;}
.y14d{bottom:748.800076px;}
.y1f9{bottom:751.860077px;}
.y198{bottom:754.560070px;}
.y11{bottom:755.100083px;}
.y24d{bottom:757.800076px;}
.yc5{bottom:757.980079px;}
.y48{bottom:760.140060px;}
.y93{bottom:760.320065px;}
.y8e{bottom:763.020058px;}
.y92{bottom:763.920078px;}
.y10{bottom:770.580059px;}
.y1b6{bottom:771.480079px;}
.y175{bottom:771.660049px;}
.y196{bottom:772.560070px;}
.y1fa{bottom:773.640060px;}
.y24c{bottom:775.080059px;}
.yc4{bottom:775.260064px;}
.y47{bottom:777.420078px;}
.y8c{bottom:779.580059px;}
.y8d{bottom:780.300076px;}
.y8b{bottom:783.180073px;}
.y1b5{bottom:784.080059px;}
.yf{bottom:786.240074px;}
.y195{bottom:790.560070px;}
.y24b{bottom:792.360077px;}
.yc3{bottom:792.540081px;}
.y1b4{bottom:792.720051px;}
.y46{bottom:794.700061px;}
.y1fb{bottom:795.600083px;}
.y89{bottom:799.380066px;}
.y1b2{bottom:800.100083px;}
.y8a{bottom:800.280052px;}
.y234{bottom:801.000068px;}
.ye{bottom:801.720051px;}
.y88{bottom:802.980079px;}
.y1b1{bottom:807.300076px;}
.y24a{bottom:809.640060px;}
.yc2{bottom:809.820065px;}
.y45{bottom:811.800076px;}
.y1f7{bottom:813.419773px;}
.y233{bottom:813.600083px;}
.y7f{bottom:814.500068px;}
.y1b0{bottom:815.400055px;}
.yd{bottom:817.200061px;}
.y1fc{bottom:817.380066px;}
.y151{bottom:817.558038px;}
.y86{bottom:818.460056px;}
.y174{bottom:821.340054px;}
.y85{bottom:822.060070px;}
.y249{bottom:826.920078px;}
.yc1{bottom:827.100083px;}
.y1af{bottom:828.540081px;}
.y194{bottom:828.720051px;}
.y44{bottom:829.080059px;}
.y7e{bottom:831.600083px;}
.yc{bottom:832.680073px;}
.y173{bottom:836.820065px;}
.y84{bottom:837.540081px;}
.y1fd{bottom:839.160049px;}
.y83{bottom:841.140060px;}
.y248{bottom:844.200061px;}
.yc0{bottom:844.380066px;}
.y1b3{bottom:845.640060px;}
.y43{bottom:846.360077px;}
.yb{bottom:848.340054px;}
.y7d{bottom:848.880066px;}
.y22d{bottom:851.040081px;}
.y81{bottom:856.800076px;}
.y80{bottom:860.400055px;}
.y1fe{bottom:860.940067px;}
.y14f{bottom:861.296494px;}
.y247{bottom:861.300076px;}
.ybf{bottom:861.480079px;}
.y193{bottom:862.560070px;}
.ya{bottom:864.900055px;}
.y7c{bottom:866.160049px;}
.y1ae{bottom:866.340054px;}
.y172{bottom:869.040081px;}
.y229{bottom:869.220051px;}
.y171{bottom:872.640060px;}
.y7b{bottom:875.340054px;}
.y42{bottom:875.520058px;}
.y246{bottom:878.580059px;}
.ybe{bottom:878.760064px;}
.y192{bottom:879.840054px;}
.y9{bottom:881.280052px;}
.y1ff{bottom:882.720051px;}
.y16f{bottom:888.480079px;}
.y14e{bottom:889.017854px;}
.y277{bottom:889.920078px;}
.y16e{bottom:892.080059px;}
.y170{bottom:893.160049px;}
.y79{bottom:893.340054px;}
.y245{bottom:895.860077px;}
.ybd{bottom:896.040081px;}
.y8{bottom:896.760064px;}
.y191{bottom:897.120072px;}
.y74{bottom:901.620072px;}
.y200{bottom:904.680073px;}
.y73{bottom:905.220051px;}
.y276{bottom:905.400055px;}
.y16c{bottom:907.920078px;}
.y77{bottom:910.260064px;}
.y16b{bottom:911.520058px;}
.y16d{bottom:912.600083px;}
.y244{bottom:913.140060px;}
.ybc{bottom:913.320065px;}
.y76{bottom:913.860077px;}
.y190{bottom:914.400055px;}
.y41{bottom:916.740074px;}
.y119{bottom:919.980079px;}
.y275{bottom:920.880066px;}
.y118{bottom:922.680073px;}
.y201{bottom:926.460056px;}
.y169{bottom:928.080059px;}
.y243{bottom:930.420078px;}
.ybb{bottom:930.600083px;}
.y147{bottom:931.320065px;}
.y18f{bottom:931.500068px;}
.y168{bottom:931.680073px;}
.y16a{bottom:932.760064px;}
.y274{bottom:936.360077px;}
.y166{bottom:947.520058px;}
.yba{bottom:947.880066px;}
.y202{bottom:948.240074px;}
.y18e{bottom:948.780053px;}
.y72{bottom:949.500068px;}
.y165{bottom:951.120072px;}
.y273{bottom:952.020058px;}
.y167{bottom:952.200061px;}
.y7{bottom:962.460056px;}
.y242{bottom:964.800076px;}
.yb9{bottom:964.980079px;}
.y18d{bottom:966.060070px;}
.y272{bottom:967.500068px;}
.y40{bottom:967.680073px;}
.y203{bottom:970.020058px;}
.y164{bottom:971.280053px;}
.y241{bottom:982.080059px;}
.yb8{bottom:982.260064px;}
.y271{bottom:982.980063px;}
.y71{bottom:983.340070px;}
.y161{bottom:987.120072px;}
.y14b{bottom:989.999670px;}
.y162{bottom:990.720068px;}
.y160{bottom:990.900072px;}
.y6{bottom:991.260064px;}
.y163{bottom:991.980063px;}
.y270{bottom:998.460074px;}
.y240{bottom:999.360060px;}
.yb7{bottom:999.540064px;}
.y70{bottom:1000.620072px;}
.y15e{bottom:1006.740074px;}
.y1de{bottom:1007.100065px;}
.y15d{bottom:1010.340070px;}
.y15f{bottom:1011.420061px;}
.y26f{bottom:1014.120072px;}
.y23f{bottom:1016.640060px;}
.yb6{bottom:1016.820065px;}
.y3f{bottom:1017.720068px;}
.y15b{bottom:1026.180073px;}
.y1f5{bottom:1029.240074px;}
.y26e{bottom:1029.600065px;}
.y15a{bottom:1029.780069px;}
.y1ee{bottom:1030.320065px;}
.y15c{bottom:1030.860060px;}
.y23e{bottom:1033.920061px;}
.yb5{bottom:1034.100065px;}
.y5{bottom:1034.280069px;}
.y3e{bottom:1035.000068px;}
.y1f4{bottom:1041.120072px;}
.y14a{bottom:1041.662772px;}
.y26d{bottom:1045.080059px;}
.y158{bottom:1046.340070px;}
.y1f3{bottom:1049.580059px;}
.y157{bottom:1049.940067px;}
.y23d{bottom:1051.020058px;}
.yb4{bottom:1051.380066px;}
.y3d{bottom:1052.280069px;}
.y1f1{bottom:1056.600065px;}
.y4{bottom:1060.380066px;}
.y26c{bottom:1060.560070px;}
.y1f0{bottom:1063.440067px;}
.y156{bottom:1065.780069px;}
.y23c{bottom:1068.300058px;}
.yb3{bottom:1068.660067px;}
.y3c{bottom:1069.560070px;}
.y1ef{bottom:1071.180073px;}
.y26b{bottom:1076.220068px;}
.y149{bottom:1077.302694px;}
.y153{bottom:1078.020058px;}
.y22c{bottom:1083.420061px;}
.y154{bottom:1083.780069px;}
.y23b{bottom:1085.580059px;}
.yb2{bottom:1086.120072px;}
.y3b{bottom:1086.840070px;}
.y26a{bottom:1091.700061px;}
.y1f2{bottom:1100.160067px;}
.y1ec{bottom:1100.880066px;}
.yb1{bottom:1103.580059px;}
.y3a{bottom:1104.120072px;}
.y148{bottom:1105.017162px;}
.y269{bottom:1107.180073px;}
.y23a{bottom:1118.520058px;}
.y1ed{bottom:1120.140069px;}
.y39{bottom:1121.220068px;}
.y152{bottom:1122.660067px;}
.y34{bottom:1142.820065px;}
.y33{bottom:1160.100065px;}
.y32{bottom:1177.380066px;}
.h36{height:8.546830px;}
.h4f{height:10.439964px;}
.h52{height:10.439998px;}
.h66{height:11.407067px;}
.h55{height:11.916079px;}
.h2e{height:12.385285px;}
.h28{height:12.392361px;}
.h30{height:14.861811px;}
.h27{height:14.866162px;}
.h2a{height:14.870399px;}
.h3{height:14.939964px;}
.hf{height:14.939965px;}
.h2f{height:15.007975px;}
.h29{height:15.214989px;}
.h34{height:15.215232px;}
.h2d{height:15.224663px;}
.h2c{height:15.401939px;}
.h32{height:15.570070px;}
.h4e{height:16.559967px;}
.h1c{height:16.560001px;}
.h53{height:16.560002px;}
.h51{height:16.560035px;}
.h39{height:16.739937px;}
.h14{height:16.740006px;}
.h1e{height:16.919975px;}
.h49{height:16.919992px;}
.h48{height:16.919993px;}
.h1b{height:16.920009px;}
.h21{height:16.920010px;}
.h6c{height:17.242549px;}
.h63{height:17.326821px;}
.h5e{height:17.338266px;}
.h15{height:17.639992px;}
.h18{height:19.079955px;}
.h17{height:19.080025px;}
.h19{height:19.259996px;}
.h68{height:22.918183px;}
.h67{height:23.158584px;}
.h6d{height:23.686739px;}
.h5b{height:23.701821px;}
.h64{height:23.769093px;}
.h5f{height:23.784206px;}
.h57{height:23.940871px;}
.h56{height:24.191999px;}
.h6{height:25.137693px;}
.h50{height:27.148693px;}
.h71{height:27.736023px;}
.h65{height:27.964306px;}
.h6e{height:27.967322px;}
.h60{height:27.982086px;}
.h6b{height:28.737928px;}
.h6a{height:28.739399px;}
.h5a{height:28.756655px;}
.h59{height:28.757687px;}
.h62{height:28.821160px;}
.h61{height:28.822109px;}
.h5d{height:28.838847px;}
.h5c{height:28.840429px;}
.h35{height:34.121817px;}
.h46{height:34.121957px;}
.h2b{height:34.122092px;}
.h31{height:34.289948px;}
.h44{height:34.290083px;}
.h38{height:35.099945px;}
.h3a{height:35.100013px;}
.h16{height:35.195584px;}
.h45{height:35.196875px;}
.h33{height:35.212319px;}
.h41{height:35.279983px;}
.h43{height:35.279984px;}
.h3c{height:35.280052px;}
.h2{height:37.706649px;}
.h72{height:38.048823px;}
.h7{height:38.102173px;}
.h69{height:38.420577px;}
.h13{height:39.315115px;}
.h58{height:40.134856px;}
.hb{height:41.728524px;}
.h8{height:43.243989px;}
.h10{height:43.508552px;}
.h4d{height:43.536525px;}
.h4c{height:43.536530px;}
.h9{height:44.509667px;}
.h73{height:44.764378px;}
.h22{height:45.328466px;}
.h1a{height:45.328470px;}
.h24{height:45.328605px;}
.h1f{height:45.328610px;}
.h54{height:45.511662px;}
.h23{height:46.048484px;}
.h20{height:46.048488px;}
.h70{height:46.135497px;}
.h6f{height:46.137270px;}
.h4a{height:47.136476px;}
.h47{height:47.856489px;}
.h4b{height:48.028756px;}
.h11{height:48.028761px;}
.hd{height:49.257167px;}
.h3f{height:50.039977px;}
.hc{height:50.275326px;}
.h12{height:50.366037px;}
.h3d{height:50.759994px;}
.h74{height:50.802689px;}
.ha{height:52.419938px;}
.h26{height:52.526019px;}
.h3e{height:52.739937px;}
.he{height:52.926844px;}
.h25{height:57.515683px;}
.h4{height:59.439133px;}
.h5{height:61.044464px;}
.h1d{height:76.288628px;}
.h40{height:77.008367px;}
.h42{height:77.008371px;}
.h3b{height:77.008641px;}
.h37{height:77.008646px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4a{width:2.519989px;}
.w5{width:3.779983px;}
.w1c{width:3.779984px;}
.w14{width:3.780000px;}
.w32{width:3.780017px;}
.w19{width:3.780018px;}
.w36{width:4.860008px;}
.w3e{width:5.039978px;}
.w25{width:5.039979px;}
.w1f{width:5.040005px;}
.w24{width:5.040012px;}
.w41{width:5.040047px;}
.w10{width:5.759996px;}
.w4f{width:5.939999px;}
.w59{width:6.659981px;}
.w2{width:6.660015px;}
.we{width:7.019989px;}
.w4d{width:7.019990px;}
.w12{width:7.199993px;}
.w20{width:7.379997px;}
.w38{width:7.379998px;}
.w3d{width:7.559967px;}
.w11{width:7.560001px;}
.w3a{width:7.560002px;}
.w40{width:7.560036px;}
.w4{width:7.920010px;}
.w54{width:8.100013px;}
.w4c{width:8.279983px;}
.w49{width:8.280018px;}
.wc{width:8.640008px;}
.wd{width:9.000000px;}
.w3b{width:9.180004px;}
.w3c{width:9.180038px;}
.w39{width:9.359973px;}
.wf{width:9.359974px;}
.w3f{width:9.360008px;}
.w42{width:9.360009px;}
.w27{width:9.719982px;}
.wb{width:9.720017px;}
.w1e{width:9.899985px;}
.w2e{width:10.439999px;}
.w51{width:10.440033px;}
.w7{width:10.800007px;}
.w2a{width:11.159981px;}
.w2b{width:11.160015px;}
.w2d{width:11.160016px;}
.w31{width:11.339985px;}
.w21{width:11.340002px;}
.w34{width:11.340019px;}
.w45{width:11.520024px;}
.w29{width:11.520057px;}
.w44{width:11.699993px;}
.w28{width:11.700001px;}
.w46{width:11.700027px;}
.w43{width:11.879997px;}
.w47{width:11.879998px;}
.w16{width:12.599997px;}
.w4e{width:13.319996px;}
.w9{width:13.500000px;}
.w53{width:14.939999px;}
.w55{width:18.899987px;}
.w52{width:18.900020px;}
.w4b{width:20.879998px;}
.w1d{width:21.419975px;}
.w1a{width:21.420010px;}
.w6{width:21.780018px;}
.w33{width:22.500000px;}
.w13{width:23.399986px;}
.w18{width:25.919975px;}
.w57{width:26.279983px;}
.w35{width:26.279984px;}
.w56{width:26.460022px;}
.w37{width:29.159981px;}
.w48{width:29.160015px;}
.w2c{width:29.879997px;}
.w5a{width:30.420010px;}
.w17{width:31.680005px;}
.w50{width:32.579990px;}
.w2f{width:33.660015px;}
.wa{width:33.839951px;}
.w5b{width:33.839985px;}
.w5c{width:33.840019px;}
.w8{width:33.840020px;}
.w1b{width:37.620037px;}
.w15{width:42.480011px;}
.w30{width:45.719982px;}
.w58{width:51.660015px;}
.w23{width:52.020022px;}
.w22{width:71.640009px;}
.w26{width:110.879997px;}
.w3{width:196.200010px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.379998px;}
.x23{left:112.680005px;}
.xc{left:116.099997px;}
.x38{left:118.079999px;}
.x39{left:125.640000px;}
.x9{left:127.620002px;}
.x3a{left:130.680005px;}
.xb{left:131.939999px;}
.xf9{left:133.379998px;}
.x3b{left:138.060001px;}
.x24{left:141.840002px;}
.x6b{left:144.000000px;}
.x6c{left:145.439999px;}
.x7{left:148.860008px;}
.x67{left:151.020006px;}
.x6e{left:152.641406px;}
.x4a{left:154.979994px;}
.x25{left:159.120002px;}
.x27{left:160.740006px;}
.x4b{left:162.360008px;}
.xf0{left:164.340002px;}
.xe7{left:166.319996px;}
.x3d{left:167.400003px;}
.x83{left:169.384754px;}
.x3e{left:170.819996px;}
.x3c{left:173.699993px;}
.xa0{left:177.120002px;}
.x68{left:180.900003px;}
.x28{left:184.139992px;}
.x29{left:187.919992px;}
.x3{left:195.300007px;}
.x66{left:197.642166px;}
.xd1{left:201.960005px;}
.x93{left:206.099997px;}
.x69{left:208.439999px;}
.x86{left:209.520006px;}
.x84{left:219.060758px;}
.xd0{left:220.500000px;}
.x5{left:223.199993px;}
.xcd{left:227.340002px;}
.x2a{left:230.400003px;}
.xf4{left:231.835730px;}
.xe8{left:234.719999px;}
.x26{left:235.800007px;}
.x6a{left:238.319996px;}
.xd{left:240.300007px;}
.xe{left:242.099997px;}
.x4{left:247.680005px;}
.xf5{left:248.939999px;}
.x2b{left:259.560001px;}
.x3f{left:261.539996px;}
.xc5{left:262.800007px;}
.x48{left:264.060001px;}
.xd3{left:271.800007px;}
.xe6{left:273.060001px;}
.x1{left:281.159998px;}
.x1a{left:285.479994px;}
.xef{left:291.060001px;}
.x7a{left:292.321532px;}
.x1b{left:294.660015px;}
.x65{left:297.899987px;}
.x7b{left:299.519989px;}
.x18{left:301.319996px;}
.xee{left:303.480011px;}
.x76{left:305.100013px;}
.x7d{left:309.961102px;}
.x19{left:311.579990px;}
.xed{left:314.100013px;}
.x64{left:315.180005px;}
.xb1{left:316.265917px;}
.xb2{left:319.326521px;}
.xd4{left:320.939999px;}
.xa{left:322.379998px;}
.xd7{left:325.620002px;}
.x7f{left:329.763804px;}
.x6{left:332.639992px;}
.x77{left:335.160015px;}
.x1f{left:336.600014px;}
.xd8{left:338.220017px;}
.x85{left:340.019989px;}
.x20{left:343.620002px;}
.xd9{left:345.600014px;}
.xe4{left:347.939999px;}
.x21{left:350.279983px;}
.x75{left:351.751529px;}
.x5f{left:355.115569px;}
.x1c{left:360.899987px;}
.x78{left:362.699993px;}
.x63{left:367.019989px;}
.x1d{left:369.000000px;}
.xb4{left:370.439999px;}
.x94{left:372.779983px;}
.x2c{left:374.399987px;}
.x22{left:375.660015px;}
.x1e{left:376.920010px;}
.xb5{left:378.000000px;}
.x98{left:379.079990px;}
.x40{left:380.339985px;}
.x80{left:383.047022px;}
.x62{left:384.120002px;}
.xaa{left:386.459988px;}
.xc6{left:387.899987px;}
.x99{left:390.240006px;}
.x79{left:392.579990px;}
.x87{left:395.279983px;}
.xab{left:397.620002px;}
.x95{left:399.060001px;}
.x61{left:401.399987px;}
.x8d{left:402.660015px;}
.x9a{left:405.360008px;}
.x8e{left:407.699993px;}
.xb6{left:408.779983px;}
.x88{left:410.399987px;}
.xac{left:412.740006px;}
.x6d{left:414.720017px;}
.x9b{left:416.519989px;}
.x60{left:418.680005px;}
.xe1{left:419.759994px;}
.x89{left:421.560001px;}
.xad{left:423.899987px;}
.xc7{left:426.240006px;}
.xa1{left:427.680005px;}
.xb7{left:428.759994px;}
.xda{left:431.100014px;}
.x41{left:432.360008px;}
.x74{left:434.879998px;}
.xf{left:438.300007px;}
.xec{left:439.740006px;}
.xa5{left:442.620002px;}
.x7e{left:444.787295px;}
.x10{left:446.220017px;}
.x8f{left:448.740006px;}
.x47{left:451.800007px;}
.xb8{left:454.500000px;}
.x2{left:455.939999px;}
.xce{left:457.019989px;}
.xb9{left:459.540012px;}
.x11{left:460.800007px;}
.x5d{left:462.600014px;}
.x12{left:464.579990px;}
.xb3{left:466.204306px;}
.x2d{left:468.540012px;}
.x5b{left:469.620002px;}
.xf1{left:471.420010px;}
.xdf{left:472.500000px;}
.x90{left:474.120002px;}
.x2e{left:476.100014px;}
.x91{left:477.899987px;}
.xa6{left:479.879998px;}
.xe2{left:480.959988px;}
.xd2{left:484.199993px;}
.xba{left:485.279983px;}
.x13{left:486.360008px;}
.xa2{left:487.620002px;}
.x4c{left:489.420010px;}
.x9c{left:491.399987px;}
.xbb{left:492.839985px;}
.x8a{left:494.100014px;}
.x42{left:496.259994px;}
.x96{left:497.699993px;}
.x5c{left:499.680005px;}
.x2f{left:502.019989px;}
.x73{left:504.000000px;}
.x30{left:505.800007px;}
.x6f{left:509.431012px;}
.x92{left:511.560001px;}
.xa3{left:513.720017px;}
.x5a{left:516.264041px;}
.x9d{left:517.680005px;}
.xdb{left:518.759994px;}
.x8b{left:520.199993px;}
.x72{left:521.279983px;}
.x14{left:523.079990px;}
.xa4{left:524.879998px;}
.x81{left:525.968667px;}
.x31{left:527.220017px;}
.x9e{left:528.839985px;}
.x8c{left:531.360008px;}
.xa7{left:532.439999px;}
.xcf{left:533.519989px;}
.x97{left:534.959988px;}
.xbc{left:536.040012px;}
.xa8{left:537.300007px;}
.x71{left:538.560001px;}
.xc8{left:540.899987px;}
.x33{left:544.319996px;}
.xe3{left:548.100014px;}
.xd5{left:550.620002px;}
.xe9{left:554.220017px;}
.x70{left:555.839985px;}
.x15{left:556.920010px;}
.x32{left:559.439999px;}
.xf2{left:560.699993px;}
.xbd{left:561.779983px;}
.xc9{left:564.300007px;}
.x7c{left:569.160015px;}
.xb0{left:571.680005px;}
.x43{left:574.019989px;}
.xdc{left:576.720017px;}
.x44{left:579.059967px;}
.x34{left:581.940033px;}
.xdd{left:584.100014px;}
.x35{left:585.720017px;}
.xd6{left:592.919975px;}
.xde{left:595.259994px;}
.x59{left:599.399987px;}
.xca{left:602.460023px;}
.xeb{left:604.980011px;}
.x36{left:607.139992px;}
.x16{left:608.220017px;}
.xbe{left:612.539978px;}
.x4f{left:616.500000px;}
.xa9{left:620.460023px;}
.xea{left:624.240006px;}
.xf8{left:627.659981px;}
.xe5{left:632.159981px;}
.x58{left:633.960023px;}
.xbf{left:638.279983px;}
.xcb{left:640.799973px;}
.x17{left:642.059967px;}
.x45{left:644.399987px;}
.xc0{left:645.840019px;}
.x50{left:649.080025px;}
.x57{left:651.240006px;}
.x9f{left:655.919975px;}
.xc1{left:658.259994px;}
.x56{left:668.519989px;}
.x37{left:672.299973px;}
.x52{left:673.943825px;}
.xc2{left:676.620002px;}
.x82{left:678.967092px;}
.xc3{left:684.179970px;}
.x4d{left:686.700027px;}
.xae{left:689.940033px;}
.xf7{left:691.019989px;}
.xcc{left:694.080025px;}
.xf6{left:695.159981px;}
.xc4{left:696.600014px;}
.xf3{left:701.820030px;}
.x55{left:703.080025px;}
.x54{left:720.360008px;}
.x5e{left:733.679970px;}
.x53{left:737.639992px;}
.x46{left:755.279983px;}
.xe0{left:757.080025px;}
.x51{left:765.360008px;}
.x49{left:771.299973px;}
.xaf{left:779.940033px;}
.x4e{left:786.779983px;}
@media print{
.v8{vertical-align:-18.560060pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-10.879884pt;}
.vc{vertical-align:-5.119996pt;}
.vf{vertical-align:-3.839964pt;}
.vb{vertical-align:-1.919984pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.919984pt;}
.v5{vertical-align:3.199952pt;}
.ve{vertical-align:4.480100pt;}
.v7{vertical-align:10.880124pt;}
.vd{vertical-align:16.640136pt;}
.v3{vertical-align:18.559996pt;}
.v9{vertical-align:19.840088pt;}
.v1{vertical-align:24.320004pt;}
.v6{vertical-align:30.720092pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005206pt;}
.ls11{letter-spacing:0.006687pt;}
.ls2c{letter-spacing:0.006691pt;}
.ls2b{letter-spacing:0.006811pt;}
.ls12{letter-spacing:0.006931pt;}
.ls18{letter-spacing:0.026600pt;}
.ls1e{letter-spacing:0.026803pt;}
.ls22{letter-spacing:0.026817pt;}
.ls13{letter-spacing:0.037591pt;}
.ls29{letter-spacing:0.037711pt;}
.ls2f{letter-spacing:0.037715pt;}
.ls2a{letter-spacing:0.143386pt;}
.ls9{letter-spacing:0.143390pt;}
.lsa{letter-spacing:0.143446pt;}
.ls2d{letter-spacing:0.143450pt;}
.ls8{letter-spacing:0.143510pt;}
.ls10{letter-spacing:0.167290pt;}
.ls3{letter-spacing:0.191346pt;}
.ls30{letter-spacing:0.206226pt;}
.ls1{letter-spacing:0.318968pt;}
.ls2{letter-spacing:0.319008pt;}
.ls14{letter-spacing:0.319208pt;}
.ls0{letter-spacing:0.319212pt;}
.ls31{letter-spacing:0.319240pt;}
.ls2e{letter-spacing:0.446828pt;}
.ls23{letter-spacing:0.470245pt;}
.ls19{letter-spacing:0.470461pt;}
.ls32{letter-spacing:0.491002pt;}
.ls16{letter-spacing:0.658751pt;}
.ls21{letter-spacing:0.669851pt;}
.ls1c{letter-spacing:0.674956pt;}
.lsc{letter-spacing:0.759288pt;}
.ls34{letter-spacing:0.782966pt;}
.lsf{letter-spacing:0.994410pt;}
.ls7{letter-spacing:1.513146pt;}
.lsb{letter-spacing:1.813952pt;}
.lsd{letter-spacing:2.304802pt;}
.ls1d{letter-spacing:4.537800pt;}
.ls20{letter-spacing:4.711881pt;}
.ls15{letter-spacing:4.715270pt;}
.ls1b{letter-spacing:5.135325pt;}
.ls17{letter-spacing:5.144092pt;}
.lse{letter-spacing:17.812701pt;}
.ls36{letter-spacing:23.199484pt;}
.ls35{letter-spacing:40.965202pt;}
.ls6{letter-spacing:56.965202pt;}
.ls27{letter-spacing:96.159564pt;}
.ls26{letter-spacing:112.915757pt;}
.ls24{letter-spacing:112.915761pt;}
.ls1a{letter-spacing:112.916005pt;}
.ls25{letter-spacing:113.419056pt;}
.ls1f{letter-spacing:113.419180pt;}
.ls28{letter-spacing:123.039568pt;}
.ls33{letter-spacing:751.999399pt;}
.ws15{word-spacing:-53.122000pt;}
.ws2{word-spacing:-16.000601pt;}
.ws38{word-spacing:-14.531200pt;}
.ws39{word-spacing:-14.530642pt;}
.ws3d{word-spacing:-14.098800pt;}
.ws6{word-spacing:-13.280500pt;}
.ws1{word-spacing:-12.000500pt;}
.ws7{word-spacing:-11.686840pt;}
.ws12{word-spacing:-11.206656pt;}
.ws14{word-spacing:-11.201741pt;}
.ws0{word-spacing:-10.720400pt;}
.ws16{word-spacing:-10.560440pt;}
.ws20{word-spacing:-9.083460pt;}
.ws21{word-spacing:-9.082962pt;}
.ws26{word-spacing:-9.077690pt;}
.ws27{word-spacing:-9.077391pt;}
.ws1c{word-spacing:-9.057400pt;}
.ws30{word-spacing:-9.051640pt;}
.ws31{word-spacing:-9.051177pt;}
.ws25{word-spacing:-8.813120pt;}
.ws35{word-spacing:-8.808470pt;}
.ws2a{word-spacing:-8.807520pt;}
.ws4{word-spacing:-8.640330pt;}
.ws8{word-spacing:-8.166717pt;}
.ws3{word-spacing:-8.000310pt;}
.wsa{word-spacing:-5.027805pt;}
.wsf{word-spacing:-5.025162pt;}
.wsd{word-spacing:-5.024732pt;}
.wsb{word-spacing:-4.191154pt;}
.wse{word-spacing:-4.188761pt;}
.ws2d{word-spacing:-1.865806pt;}
.ws1b{word-spacing:-1.422284pt;}
.ws1d{word-spacing:-0.833251pt;}
.ws19{word-spacing:-0.822896pt;}
.wsc{word-spacing:-0.671775pt;}
.ws1a{word-spacing:-0.518120pt;}
.ws18{word-spacing:-0.396209pt;}
.ws2c{word-spacing:-0.204230pt;}
.ws10{word-spacing:-0.127019pt;}
.ws2b{word-spacing:-0.087527pt;}
.ws5{word-spacing:0.000000pt;}
.ws17{word-spacing:0.304776pt;}
.ws9{word-spacing:2.815466pt;}
.ws2e{word-spacing:47.101613pt;}
.ws32{word-spacing:47.125805pt;}
.ws36{word-spacing:47.125925pt;}
.ws22{word-spacing:47.691374pt;}
.ws28{word-spacing:48.345820pt;}
.ws1e{word-spacing:48.410046pt;}
.ws3a{word-spacing:153.903660pt;}
.ws23{word-spacing:864.910902pt;}
.ws24{word-spacing:864.999890pt;}
.ws29{word-spacing:865.028942pt;}
.ws1f{word-spacing:865.121829pt;}
.ws2f{word-spacing:865.121833pt;}
.ws37{word-spacing:865.137904pt;}
.ws33{word-spacing:865.137968pt;}
.ws34{word-spacing:865.150317pt;}
.ws13{word-spacing:980.206795pt;}
.ws11{word-spacing:1062.682370pt;}
.ws3b{word-spacing:1384.337889pt;}
.ws3c{word-spacing:1384.467988pt;}
._2b{margin-left:-1387.006184pt;}
._46{margin-left:-738.030228pt;}
._52{margin-left:-706.222082pt;}
._43{margin-left:-211.711580pt;}
._4f{margin-left:-202.768382pt;}
._44{margin-left:-146.358128pt;}
._50{margin-left:-139.858046pt;}
._3d{margin-left:-123.679704pt;}
._3a{margin-left:-122.358138pt;}
._42{margin-left:-80.477784pt;}
._47{margin-left:-79.400576pt;}
._53{margin-left:-77.721126pt;}
._4e{margin-left:-76.811970pt;}
._3{margin-left:-8.070084pt;}
._1{margin-left:-5.138832pt;}
._4{margin-left:-3.805275pt;}
._9{margin-left:-2.903225pt;}
._7{margin-left:-1.961702pt;}
._0{margin-left:-0.924335pt;}
._2{width:1.035781pt;}
._6{width:2.170170pt;}
._5{width:3.080154pt;}
._8{width:4.405357pt;}
._a{width:6.136519pt;}
._b{width:7.152904pt;}
._11{width:8.081420pt;}
._13{width:9.766355pt;}
._12{width:11.156035pt;}
._14{width:12.061771pt;}
._10{width:14.440955pt;}
._d{width:15.418050pt;}
._c{width:16.354204pt;}
._f{width:17.913746pt;}
._e{width:19.132318pt;}
._56{width:22.897329pt;}
._4a{width:40.866720pt;}
._49{width:46.993188pt;}
._4c{width:48.220820pt;}
._48{width:54.673236pt;}
._4b{width:56.540896pt;}
._1d{width:85.448495pt;}
._28{width:93.963786pt;}
._3c{width:96.159564pt;}
._4d{width:111.595394pt;}
._41{width:116.574644pt;}
._3f{width:121.243250pt;}
._39{width:122.399432pt;}
._40{width:123.449243pt;}
._23{width:124.426211pt;}
._1e{width:136.018979pt;}
._16{width:148.335190pt;}
._22{width:149.804040pt;}
._29{width:157.627461pt;}
._3e{width:159.920756pt;}
._34{width:165.223239pt;}
._54{width:167.292712pt;}
._35{width:178.788117pt;}
._18{width:182.739680pt;}
._36{width:185.567552pt;}
._20{width:193.833146pt;}
._3b{width:194.820225pt;}
._24{width:215.613166pt;}
._27{width:218.997769pt;}
._21{width:219.978617pt;}
._1c{width:233.253414pt;}
._1f{width:237.760290pt;}
._32{width:244.229531pt;}
._26{width:245.795494pt;}
._25{width:266.725562pt;}
._38{width:270.986886pt;}
._37{width:284.054760pt;}
._33{width:293.380225pt;}
._31{width:334.346990pt;}
._30{width:387.734812pt;}
._51{width:426.889058pt;}
._45{width:446.413316pt;}
._2f{width:466.731027pt;}
._1b{width:470.413046pt;}
._2e{width:627.264576pt;}
._1a{width:657.650360pt;}
._17{width:662.316588pt;}
._19{width:722.344448pt;}
._55{width:755.976935pt;}
._2c{width:933.016176pt;}
._15{width:981.163340pt;}
._2d{width:988.813087pt;}
._2a{width:2267.246960pt;}
.fs13{font-size:10.880440pt;}
.fs25{font-size:13.927520pt;}
.fs15{font-size:14.549000pt;}
.fse{font-size:15.121880pt;}
.fs9{font-size:15.130520pt;}
.fsd{font-size:18.139827pt;}
.fsf{font-size:18.141380pt;}
.fs10{font-size:18.145607pt;}
.fs8{font-size:18.150920pt;}
.fsa{font-size:18.150922pt;}
.fsb{font-size:18.156093pt;}
.fsc{font-size:18.805080pt;}
.fs11{font-size:19.010360pt;}
.fs2a{font-size:21.722562pt;}
.fs22{font-size:21.828730pt;}
.fs1d{font-size:21.843148pt;}
.fs26{font-size:29.175720pt;}
.fs2b{font-size:30.154120pt;}
.fs1a{font-size:30.173320pt;}
.fs23{font-size:30.258960pt;}
.fs1e{font-size:30.278200pt;}
.fs16{font-size:30.477640pt;}
.fs4{font-size:32.001240pt;}
.fs6{font-size:34.561320pt;}
.fs2f{font-size:34.942484pt;}
.fs24{font-size:35.230080pt;}
.fs2c{font-size:35.233880pt;}
.fs1f{font-size:35.252480pt;}
.fs29{font-size:36.204707pt;}
.fs28{font-size:36.206560pt;}
.fs19{font-size:36.228300pt;}
.fs18{font-size:36.229600pt;}
.fs21{font-size:36.309565pt;}
.fs20{font-size:36.310760pt;}
.fs1c{font-size:36.331847pt;}
.fs1b{font-size:36.333840pt;}
.fs7{font-size:37.121440pt;}
.fs3{font-size:42.881600pt;}
.fs14{font-size:44.806962pt;}
.fs12{font-size:44.826623pt;}
.fs0{font-size:48.002000pt;}
.fs30{font-size:48.437600pt;}
.fs27{font-size:50.427200pt;}
.fs17{font-size:52.677200pt;}
.fs5{font-size:53.122000pt;}
.fs31{font-size:56.395200pt;}
.fs2e{font-size:58.122566pt;}
.fs2d{font-size:58.124800pt;}
.fs2{font-size:64.002404pt;}
.fs1{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:0.960022pt;}
.y6b{bottom:1.119996pt;}
.y184{bottom:1.599976pt;}
.y197{bottom:1.600006pt;}
.y3{bottom:2.559936pt;}
.y38{bottom:2.559998pt;}
.y155{bottom:2.879990pt;}
.y7a{bottom:2.880005pt;}
.y5d{bottom:3.039978pt;}
.y12e{bottom:3.040039pt;}
.y82{bottom:3.199981pt;}
.y75{bottom:3.199982pt;}
.y159{bottom:3.199997pt;}
.y78{bottom:3.200012pt;}
.y87{bottom:3.200013pt;}
.y64{bottom:3.679992pt;}
.y61{bottom:3.679993pt;}
.y6a{bottom:3.840027pt;}
.y13d{bottom:18.559997pt;}
.y121{bottom:18.559998pt;}
.y139{bottom:18.719970pt;}
.y125{bottom:18.719971pt;}
.y12c{bottom:18.720031pt;}
.y143{bottom:18.720032pt;}
.y131{bottom:32.640014pt;}
.y2{bottom:92.480103pt;}
.y1{bottom:95.040039pt;}
.y36{bottom:96.000000pt;}
.y37{bottom:110.880066pt;}
.y35{bottom:113.440064pt;}
.y31{bottom:119.840088pt;}
.y1ad{bottom:128.160035pt;}
.y232{bottom:128.960083pt;}
.y30{bottom:130.560059pt;}
.y6f{bottom:132.800049pt;}
.y1a8{bottom:133.280030pt;}
.y18c{bottom:133.600037pt;}
.ycf{bottom:134.560059pt;}
.yb0{bottom:134.880066pt;}
.y146{bottom:139.040039pt;}
.y1ac{bottom:141.920044pt;}
.y1eb{bottom:142.560059pt;}
.y231{bottom:142.720032pt;}
.yd5{bottom:145.920044pt;}
.y239{bottom:146.560059pt;}
.y18b{bottom:147.360047pt;}
.y6e{bottom:148.320069pt;}
.y1a7{bottom:148.480042pt;}
.y2f{bottom:148.960083pt;}
.yaf{bottom:150.080079pt;}
.y230{bottom:156.640076pt;}
.y1ea{bottom:157.920044pt;}
.y268{bottom:159.520081pt;}
.yd4{bottom:159.840088pt;}
.y238{bottom:160.320069pt;}
.y1ab{bottom:161.120057pt;}
.y6d{bottom:163.680054pt;}
.y1a6{bottom:163.840088pt;}
.yae{bottom:165.440064pt;}
.y18a{bottom:166.560059pt;}
.yce{bottom:167.520081pt;}
.y145{bottom:168.960083pt;}
.y1c4{bottom:172.800049pt;}
.y1d4{bottom:172.960083pt;}
.y1e9{bottom:173.120057pt;}
.y267{bottom:173.280030pt;}
.y2e{bottom:173.920044pt;}
.y6c{bottom:178.880066pt;}
.yd3{bottom:179.040039pt;}
.y1a5{bottom:179.200074pt;}
.yad{bottom:180.800049pt;}
.y1c8{bottom:181.440064pt;}
.y1d8{bottom:181.600037pt;}
.y102{bottom:184.000061pt;}
.y107{bottom:185.440064pt;}
.y1c9{bottom:186.400086pt;}
.y10c{bottom:186.560059pt;}
.y266{bottom:187.040039pt;}
.y237{bottom:187.520081pt;}
.y1e8{bottom:188.480042pt;}
.y142{bottom:188.800049pt;}
.y2d{bottom:189.280030pt;}
.y103{bottom:191.685930pt;}
.y69{bottom:192.000061pt;}
.y106{bottom:193.120057pt;}
.y1a4{bottom:194.560059pt;}
.y68{bottom:195.840088pt;}
.yac{bottom:196.160035pt;}
.y101{bottom:197.280030pt;}
.y141{bottom:199.680054pt;}
.y105{bottom:200.800049pt;}
.y265{bottom:200.960083pt;}
.y1e7{bottom:204.000061pt;}
.y2c{bottom:204.640076pt;}
.y144{bottom:207.520081pt;}
.y104{bottom:208.480042pt;}
.y1d3{bottom:208.960083pt;}
.y66{bottom:209.120057pt;}
.y1a3{bottom:209.920044pt;}
.y100{bottom:210.560059pt;}
.yab{bottom:211.520081pt;}
.y65{bottom:212.800049pt;}
.y1ca{bottom:214.080079pt;}
.y264{bottom:214.720032pt;}
.y109{bottom:215.200074pt;}
.y10d{bottom:216.480042pt;}
.y1d2{bottom:219.520081pt;}
.y1e6{bottom:219.680054pt;}
.y2b{bottom:220.000061pt;}
.yff{bottom:223.840088pt;}
.y108{bottom:224.825791pt;}
.y1a2{bottom:225.280030pt;}
.y10a{bottom:225.760071pt;}
.y63{bottom:226.080079pt;}
.yaa{bottom:226.880066pt;}
.y263{bottom:228.480042pt;}
.y62{bottom:229.760071pt;}
.y1d1{bottom:230.080079pt;}
.y13f{bottom:230.880066pt;}
.yf9{bottom:231.669112pt;}
.y1e5{bottom:235.040039pt;}
.y2a{bottom:235.200074pt;}
.y10b{bottom:236.480042pt;}
.yfe{bottom:237.120057pt;}
.y112{bottom:237.929165pt;}
.y140{bottom:238.720032pt;}
.y1a1{bottom:240.480042pt;}
.y1d0{bottom:240.640076pt;}
.y1cb{bottom:241.760071pt;}
.ya9{bottom:242.080079pt;}
.y262{bottom:242.240052pt;}
.y60{bottom:243.040039pt;}
.y5f{bottom:246.720032pt;}
.y113{bottom:248.332845pt;}
.yfd{bottom:250.400086pt;}
.y29{bottom:250.560059pt;}
.y13c{bottom:251.360047pt;}
.y261{bottom:256.160035pt;}
.ya8{bottom:257.440064pt;}
.y5c{bottom:260.000061pt;}
.y5e{bottom:260.320069pt;}
.y13b{bottom:262.080079pt;}
.yfc{bottom:263.680054pt;}
.y1e4{bottom:265.760071pt;}
.y28{bottom:265.920044pt;}
.y1a0{bottom:266.560059pt;}
.y1d5{bottom:268.797913pt;}
.y1cc{bottom:269.600037pt;}
.y13e{bottom:269.920044pt;}
.ya7{bottom:272.800049pt;}
.y1c5{bottom:273.773659pt;}
.yfb{bottom:276.960083pt;}
.y1d6{bottom:277.267152pt;}
.y1c6{bottom:279.214389pt;}
.y5b{bottom:280.160035pt;}
.y1e3{bottom:281.120057pt;}
.y27{bottom:281.280030pt;}
.y1d7{bottom:283.034495pt;}
.y138{bottom:283.200074pt;}
.y1d9{bottom:283.520081pt;}
.y260{bottom:283.680054pt;}
.y1c7{bottom:285.454878pt;}
.ya6{bottom:288.160035pt;}
.yfa{bottom:290.240052pt;}
.y10f{bottom:290.569845pt;}
.y111{bottom:292.806472pt;}
.y137{bottom:294.080079pt;}
.y1e2{bottom:296.480042pt;}
.y26{bottom:296.640076pt;}
.y1cd{bottom:297.280030pt;}
.y25f{bottom:297.440064pt;}
.y13a{bottom:301.920044pt;}
.ya5{bottom:303.520081pt;}
.ycd{bottom:304.960083pt;}
.y19f{bottom:311.040039pt;}
.y25e{bottom:311.200074pt;}
.y25{bottom:311.840088pt;}
.y5a{bottom:312.640076pt;}
.y135{bottom:314.560059pt;}
.ya4{bottom:319.040039pt;}
.y19e{bottom:324.960083pt;}
.y25d{bottom:325.120057pt;}
.y134{bottom:325.280030pt;}
.y1e1{bottom:327.040039pt;}
.y24{bottom:327.200074pt;}
.y1dd{bottom:327.360047pt;}
.y136{bottom:333.120057pt;}
.ya3{bottom:334.400086pt;}
.ycc{bottom:336.000061pt;}
.y1dc{bottom:337.920044pt;}
.y110{bottom:338.569545pt;}
.y25c{bottom:338.880066pt;}
.y23{bottom:342.560059pt;}
.y59{bottom:342.720032pt;}
.y10e{bottom:343.046272pt;}
.y19d{bottom:344.320069pt;}
.y132{bottom:346.400086pt;}
.y130{bottom:348.160035pt;}
.y1db{bottom:348.480042pt;}
.ya2{bottom:349.920044pt;}
.y1ce{bottom:352.640076pt;}
.y189{bottom:356.160035pt;}
.y133{bottom:357.440064pt;}
.y22{bottom:357.920044pt;}
.y58{bottom:358.240052pt;}
.y1da{bottom:359.040039pt;}
.y188{bottom:359.200074pt;}
.y21f{bottom:359.520081pt;}
.y187{bottom:362.240052pt;}
.ycb{bottom:363.040039pt;}
.y12f{bottom:365.120057pt;}
.y186{bottom:365.280030pt;}
.ya1{bottom:365.440064pt;}
.y25b{bottom:366.400086pt;}
.y1e0{bottom:372.000061pt;}
.ydf{bottom:372.800049pt;}
.y21{bottom:373.280030pt;}
.y57{bottom:373.760071pt;}
.ye4{bottom:374.240052pt;}
.yf3{bottom:374.400086pt;}
.y22f{bottom:374.880066pt;}
.ye9{bottom:375.360047pt;}
.yf6{bottom:375.520081pt;}
.y1cf{bottom:380.320069pt;}
.ye0{bottom:380.476666pt;}
.yef{bottom:380.639711pt;}
.y185{bottom:380.640076pt;}
.ya0{bottom:380.800049pt;}
.ye3{bottom:381.920044pt;}
.yf2{bottom:382.080079pt;}
.yde{bottom:386.080079pt;}
.y20{bottom:388.640076pt;}
.y56{bottom:388.960083pt;}
.y21e{bottom:389.280030pt;}
.ye2{bottom:389.600037pt;}
.yf1{bottom:389.760071pt;}
.y1df{bottom:391.200074pt;}
.y12b{bottom:393.280030pt;}
.y25a{bottom:394.080079pt;}
.y9f{bottom:396.160035pt;}
.y183{bottom:396.640076pt;}
.ye1{bottom:397.280030pt;}
.yf0{bottom:397.440064pt;}
.ydd{bottom:399.360047pt;}
.y204{bottom:402.880066pt;}
.y21d{bottom:403.040039pt;}
.y1f{bottom:403.840088pt;}
.ye6{bottom:404.000061pt;}
.y12a{bottom:404.160035pt;}
.yea{bottom:405.280030pt;}
.yf7{bottom:405.440064pt;}
.y259{bottom:407.840088pt;}
.y208{bottom:411.360047pt;}
.y9e{bottom:411.840088pt;}
.y12d{bottom:412.000061pt;}
.ydc{bottom:412.640076pt;}
.y1aa{bottom:413.120057pt;}
.ye5{bottom:413.621625pt;}
.yf4{bottom:413.733429pt;}
.ye7{bottom:414.560059pt;}
.yf5{bottom:414.720032pt;}
.y55{bottom:415.040039pt;}
.y209{bottom:416.480042pt;}
.y1e{bottom:419.200074pt;}
.yd6{bottom:420.469096pt;}
.yeb{bottom:420.469610pt;}
.y258{bottom:421.600037pt;}
.y21c{bottom:422.240052pt;}
.y128{bottom:424.640076pt;}
.y1b7{bottom:424.800049pt;}
.ye8{bottom:425.280030pt;}
.ydb{bottom:425.920044pt;}
.y116{bottom:429.449165pt;}
.y182{bottom:431.200074pt;}
.y1b9{bottom:433.440064pt;}
.y1d{bottom:434.560059pt;}
.y127{bottom:435.360047pt;}
.y257{bottom:435.520081pt;}
.y117{bottom:437.609272pt;}
.y9d{bottom:438.080079pt;}
.y1ba{bottom:438.400086pt;}
.y21b{bottom:438.880066pt;}
.yda{bottom:439.200074pt;}
.y220{bottom:440.640076pt;}
.y129{bottom:443.200074pt;}
.y236{bottom:444.160035pt;}
.y21a{bottom:449.440064pt;}
.y1c{bottom:449.920044pt;}
.y20a{bottom:451.680054pt;}
.yd9{bottom:452.480042pt;}
.yee{bottom:452.640076pt;}
.y224{bottom:454.400086pt;}
.y235{bottom:455.360047pt;}
.y124{bottom:455.840088pt;}
.y1bb{bottom:457.760071pt;}
.y54{bottom:459.680054pt;}
.y219{bottom:460.000061pt;}
.y181{bottom:461.280030pt;}
.y225{bottom:462.560059pt;}
.y256{bottom:463.520081pt;}
.y1b{bottom:465.280030pt;}
.yd8{bottom:465.760071pt;}
.yed{bottom:465.920044pt;}
.y123{bottom:466.720032pt;}
.y218{bottom:470.720032pt;}
.y126{bottom:474.560059pt;}
.y53{bottom:475.040039pt;}
.y180{bottom:476.640076pt;}
.y1bc{bottom:477.280030pt;}
.yd7{bottom:479.040039pt;}
.yec{bottom:479.200074pt;}
.y1a{bottom:480.640076pt;}
.y9c{bottom:482.400086pt;}
.y115{bottom:483.047445pt;}
.y20b{bottom:487.040039pt;}
.y120{bottom:487.840088pt;}
.y52{bottom:490.400086pt;}
.y17f{bottom:492.000061pt;}
.y1b8{bottom:493.119207pt;}
.y19{bottom:495.840088pt;}
.y9b{bottom:496.160035pt;}
.y1bd{bottom:496.640076pt;}
.y11f{bottom:498.560059pt;}
.y213{bottom:498.730535pt;}
.y22b{bottom:500.160035pt;}
.y205{bottom:503.849045pt;}
.y51{bottom:505.600037pt;}
.y122{bottom:506.400086pt;}
.y214{bottom:507.203889pt;}
.y17e{bottom:507.360047pt;}
.y255{bottom:508.000061pt;}
.y206{bottom:509.282307pt;}
.y18{bottom:511.200074pt;}
.y215{bottom:513.130373pt;}
.y216{bottom:513.440064pt;}
.y9a{bottom:515.360047pt;}
.y207{bottom:515.530822pt;}
.y1be{bottom:516.000061pt;}
.y22a{bottom:516.960083pt;}
.y114{bottom:519.046352pt;}
.y50{bottom:520.960083pt;}
.y20c{bottom:522.240052pt;}
.y17d{bottom:522.720032pt;}
.y254{bottom:523.200074pt;}
.y226{bottom:524.480042pt;}
.y17{bottom:526.560059pt;}
.y11e{bottom:528.160035pt;}
.yf8{bottom:530.086072pt;}
.y1bf{bottom:535.360047pt;}
.y4f{bottom:536.320069pt;}
.y17c{bottom:538.080079pt;}
.y4e{bottom:551.680054pt;}
.y253{bottom:552.480042pt;}
.y17b{bottom:553.280030pt;}
.y1c0{bottom:554.720032pt;}
.y16{bottom:555.840088pt;}
.y20d{bottom:557.440064pt;}
.y212{bottom:559.680054pt;}
.y11d{bottom:565.440064pt;}
.y22e{bottom:565.600037pt;}
.y4d{bottom:567.040039pt;}
.y17a{bottom:568.640076pt;}
.y211{bottom:570.240052pt;}
.y1c1{bottom:574.240052pt;}
.yd2{bottom:575.520081pt;}
.y210{bottom:580.800049pt;}
.y4c{bottom:582.400086pt;}
.y179{bottom:584.000061pt;}
.y227{bottom:586.560059pt;}
.yd1{bottom:589.280030pt;}
.y20f{bottom:591.360047pt;}
.y20e{bottom:592.640076pt;}
.y1c2{bottom:593.600037pt;}
.y11c{bottom:595.200074pt;}
.y252{bottom:596.960083pt;}
.yca{bottom:597.120057pt;}
.y4b{bottom:597.600037pt;}
.y178{bottom:599.360047pt;}
.y15{bottom:600.000061pt;}
.y221{bottom:602.235146pt;}
.y11b{bottom:608.960083pt;}
.y217{bottom:610.240052pt;}
.y222{bottom:611.045313pt;}
.y19c{bottom:611.680054pt;}
.y251{bottom:612.320069pt;}
.yc9{bottom:612.480072pt;}
.y99{bottom:612.960053pt;}
.y177{bottom:614.720063pt;}
.yd0{bottom:616.480072pt;}
.y223{bottom:620.962453pt;}
.y4a{bottom:623.680054pt;}
.y19b{bottom:626.880066pt;}
.y250{bottom:627.680054pt;}
.yc8{bottom:627.840058pt;}
.y11a{bottom:628.160065pt;}
.y98{bottom:628.320069pt;}
.y14{bottom:629.760071pt;}
.y1c3{bottom:632.320069pt;}
.y14c{bottom:635.680054pt;}
.y19a{bottom:640.000061pt;}
.y176{bottom:640.640046pt;}
.y97{bottom:641.920044pt;}
.y24f{bottom:643.040070pt;}
.yc7{bottom:643.200074pt;}
.y13{bottom:643.680054pt;}
.y96{bottom:645.120057pt;}
.y91{bottom:647.520050pt;}
.y228{bottom:648.640046pt;}
.y1f6{bottom:654.720063pt;}
.y199{bottom:655.360047pt;}
.y12{bottom:657.440064pt;}
.y24e{bottom:658.400055pt;}
.yc6{bottom:658.560059pt;}
.y95{bottom:658.880066pt;}
.y90{bottom:659.680054pt;}
.y49{bottom:660.320069pt;}
.y150{bottom:660.478009pt;}
.y94{bottom:662.080048pt;}
.y8f{bottom:662.880066pt;}
.y1f8{bottom:663.360047pt;}
.y1a9{bottom:665.120057pt;}
.y14d{bottom:665.600068pt;}
.y1f9{bottom:668.320069pt;}
.y198{bottom:670.720063pt;}
.y11{bottom:671.200074pt;}
.y24d{bottom:673.600068pt;}
.yc5{bottom:673.760071pt;}
.y48{bottom:675.680054pt;}
.y93{bottom:675.840058pt;}
.y8e{bottom:678.240052pt;}
.y92{bottom:679.040070pt;}
.y10{bottom:684.960053pt;}
.y1b6{bottom:685.760071pt;}
.y175{bottom:685.920044pt;}
.y196{bottom:686.720063pt;}
.y1fa{bottom:687.680054pt;}
.y24c{bottom:688.960053pt;}
.yc4{bottom:689.120057pt;}
.y47{bottom:691.040070pt;}
.y8c{bottom:692.960053pt;}
.y8d{bottom:693.600068pt;}
.y8b{bottom:696.160065pt;}
.y1b5{bottom:696.960053pt;}
.yf{bottom:698.880066pt;}
.y195{bottom:702.720063pt;}
.y24b{bottom:704.320069pt;}
.yc3{bottom:704.480072pt;}
.y1b4{bottom:704.640046pt;}
.y46{bottom:706.400055pt;}
.y1fb{bottom:707.200074pt;}
.y89{bottom:710.560059pt;}
.y1b2{bottom:711.200074pt;}
.y8a{bottom:711.360047pt;}
.y234{bottom:712.000061pt;}
.ye{bottom:712.640046pt;}
.y88{bottom:713.760071pt;}
.y1b1{bottom:717.600068pt;}
.y24a{bottom:719.680054pt;}
.yc2{bottom:719.840058pt;}
.y45{bottom:721.600068pt;}
.y1f7{bottom:723.039798pt;}
.y233{bottom:723.200074pt;}
.y7f{bottom:724.000061pt;}
.y1b0{bottom:724.800049pt;}
.yd{bottom:726.400055pt;}
.y1fc{bottom:726.560059pt;}
.y151{bottom:726.718256pt;}
.y86{bottom:727.520050pt;}
.y174{bottom:730.080048pt;}
.y85{bottom:730.720063pt;}
.y249{bottom:735.040070pt;}
.yc1{bottom:735.200074pt;}
.y1af{bottom:736.480072pt;}
.y194{bottom:736.640046pt;}
.y44{bottom:736.960053pt;}
.y7e{bottom:739.200074pt;}
.yc{bottom:740.160065pt;}
.y173{bottom:743.840058pt;}
.y84{bottom:744.480072pt;}
.y1fd{bottom:745.920044pt;}
.y83{bottom:747.680054pt;}
.y248{bottom:750.400055pt;}
.yc0{bottom:750.560059pt;}
.y1b3{bottom:751.680054pt;}
.y43{bottom:752.320069pt;}
.yb{bottom:754.080048pt;}
.y7d{bottom:754.560059pt;}
.y22d{bottom:756.480072pt;}
.y81{bottom:761.600068pt;}
.y80{bottom:764.800049pt;}
.y1fe{bottom:765.280060pt;}
.y14f{bottom:765.596884pt;}
.y247{bottom:765.600068pt;}
.ybf{bottom:765.760071pt;}
.y193{bottom:766.720063pt;}
.ya{bottom:768.800049pt;}
.y7c{bottom:769.920044pt;}
.y1ae{bottom:770.080048pt;}
.y172{bottom:772.480072pt;}
.y229{bottom:772.640046pt;}
.y171{bottom:775.680054pt;}
.y7b{bottom:778.080048pt;}
.y42{bottom:778.240052pt;}
.y246{bottom:780.960053pt;}
.ybe{bottom:781.120057pt;}
.y192{bottom:782.080048pt;}
.y9{bottom:783.360047pt;}
.y1ff{bottom:784.640046pt;}
.y16f{bottom:789.760071pt;}
.y14e{bottom:790.238093pt;}
.y277{bottom:791.040070pt;}
.y16e{bottom:792.960053pt;}
.y170{bottom:793.920044pt;}
.y79{bottom:794.080048pt;}
.y245{bottom:796.320069pt;}
.ybd{bottom:796.480072pt;}
.y8{bottom:797.120057pt;}
.y191{bottom:797.440064pt;}
.y74{bottom:801.440064pt;}
.y200{bottom:804.160065pt;}
.y73{bottom:804.640046pt;}
.y276{bottom:804.800049pt;}
.y16c{bottom:807.040070pt;}
.y77{bottom:809.120057pt;}
.y16b{bottom:810.240052pt;}
.y16d{bottom:811.200074pt;}
.y244{bottom:811.680054pt;}
.ybc{bottom:811.840058pt;}
.y76{bottom:812.320069pt;}
.y190{bottom:812.800049pt;}
.y41{bottom:814.880066pt;}
.y119{bottom:817.760071pt;}
.y275{bottom:818.560059pt;}
.y118{bottom:820.160065pt;}
.y201{bottom:823.520050pt;}
.y169{bottom:824.960053pt;}
.y243{bottom:827.040070pt;}
.ybb{bottom:827.200074pt;}
.y147{bottom:827.840058pt;}
.y18f{bottom:828.000061pt;}
.y168{bottom:828.160065pt;}
.y16a{bottom:829.120057pt;}
.y274{bottom:832.320069pt;}
.y166{bottom:842.240052pt;}
.yba{bottom:842.560059pt;}
.y202{bottom:842.880066pt;}
.y18e{bottom:843.360047pt;}
.y72{bottom:844.000061pt;}
.y165{bottom:845.440064pt;}
.y273{bottom:846.240052pt;}
.y167{bottom:846.400055pt;}
.y7{bottom:855.520050pt;}
.y242{bottom:857.600068pt;}
.yb9{bottom:857.760071pt;}
.y18d{bottom:858.720063pt;}
.y272{bottom:860.000061pt;}
.y40{bottom:860.160065pt;}
.y203{bottom:862.240052pt;}
.y164{bottom:863.360047pt;}
.y241{bottom:872.960053pt;}
.yb8{bottom:873.120057pt;}
.y271{bottom:873.760056pt;}
.y71{bottom:874.080063pt;}
.y161{bottom:877.440064pt;}
.y14b{bottom:879.999707pt;}
.y162{bottom:880.640061pt;}
.y160{bottom:880.800064pt;}
.y6{bottom:881.120057pt;}
.y163{bottom:881.760056pt;}
.y270{bottom:887.520066pt;}
.y240{bottom:888.320054pt;}
.yb7{bottom:888.480057pt;}
.y70{bottom:889.440064pt;}
.y15e{bottom:894.880066pt;}
.y1de{bottom:895.200058pt;}
.y15d{bottom:898.080063pt;}
.y15f{bottom:899.040055pt;}
.y26f{bottom:901.440064pt;}
.y23f{bottom:903.680054pt;}
.yb6{bottom:903.840058pt;}
.y3f{bottom:904.640061pt;}
.y15b{bottom:912.160065pt;}
.y1f5{bottom:914.880066pt;}
.y26e{bottom:915.200058pt;}
.y15a{bottom:915.360062pt;}
.y1ee{bottom:915.840058pt;}
.y15c{bottom:916.320054pt;}
.y23e{bottom:919.040055pt;}
.yb5{bottom:919.200058pt;}
.y5{bottom:919.360062pt;}
.y3e{bottom:920.000061pt;}
.y1f4{bottom:925.440064pt;}
.y14a{bottom:925.922464pt;}
.y26d{bottom:928.960053pt;}
.y158{bottom:930.080063pt;}
.y1f3{bottom:932.960053pt;}
.y157{bottom:933.280060pt;}
.y23d{bottom:934.240052pt;}
.yb4{bottom:934.560059pt;}
.y3d{bottom:935.360062pt;}
.y1f1{bottom:939.200058pt;}
.y4{bottom:942.560059pt;}
.y26c{bottom:942.720063pt;}
.y1f0{bottom:945.280060pt;}
.y156{bottom:947.360062pt;}
.y23c{bottom:949.600052pt;}
.yb3{bottom:949.920060pt;}
.y3c{bottom:950.720063pt;}
.y1ef{bottom:952.160065pt;}
.y26b{bottom:956.640061pt;}
.y149{bottom:957.602394pt;}
.y153{bottom:958.240052pt;}
.y22c{bottom:963.040055pt;}
.y154{bottom:963.360062pt;}
.y23b{bottom:964.960053pt;}
.yb2{bottom:965.440064pt;}
.y3b{bottom:966.080063pt;}
.y26a{bottom:970.400055pt;}
.y1f2{bottom:977.920060pt;}
.y1ec{bottom:978.560059pt;}
.yb1{bottom:980.960053pt;}
.y3a{bottom:981.440064pt;}
.y148{bottom:982.237477pt;}
.y269{bottom:984.160065pt;}
.y23a{bottom:994.240052pt;}
.y1ed{bottom:995.680062pt;}
.y39{bottom:996.640061pt;}
.y152{bottom:997.920060pt;}
.y34{bottom:1015.840058pt;}
.y33{bottom:1031.200058pt;}
.y32{bottom:1046.560059pt;}
.h36{height:7.597182pt;}
.h4f{height:9.279968pt;}
.h52{height:9.279998pt;}
.h66{height:10.139615pt;}
.h55{height:10.592070pt;}
.h2e{height:11.009142pt;}
.h28{height:11.015432pt;}
.h30{height:13.210498pt;}
.h27{height:13.214366pt;}
.h2a{height:13.218132pt;}
.h3{height:13.279968pt;}
.hf{height:13.279969pt;}
.h2f{height:13.340422pt;}
.h29{height:13.524434pt;}
.h34{height:13.524651pt;}
.h2d{height:13.533034pt;}
.h2c{height:13.690612pt;}
.h32{height:13.840062pt;}
.h4e{height:14.719971pt;}
.h1c{height:14.720001pt;}
.h53{height:14.720002pt;}
.h51{height:14.720031pt;}
.h39{height:14.879944pt;}
.h14{height:14.880005pt;}
.h1e{height:15.039978pt;}
.h49{height:15.039993pt;}
.h48{height:15.039994pt;}
.h1b{height:15.040008pt;}
.h21{height:15.040009pt;}
.h6c{height:15.326710pt;}
.h63{height:15.401619pt;}
.h5e{height:15.411792pt;}
.h15{height:15.679993pt;}
.h18{height:16.959960pt;}
.h17{height:16.960022pt;}
.h19{height:17.119996pt;}
.h68{height:20.371719pt;}
.h67{height:20.585408pt;}
.h6d{height:21.054879pt;}
.h5b{height:21.068285pt;}
.h64{height:21.128082pt;}
.h5f{height:21.141517pt;}
.h57{height:21.280774pt;}
.h56{height:21.503999pt;}
.h6{height:22.344616pt;}
.h50{height:24.132172pt;}
.h71{height:24.654243pt;}
.h65{height:24.857161pt;}
.h6e{height:24.859842pt;}
.h60{height:24.872966pt;}
.h6b{height:25.544825pt;}
.h6a{height:25.546132pt;}
.h5a{height:25.561471pt;}
.h59{height:25.562389pt;}
.h62{height:25.618809pt;}
.h61{height:25.619652pt;}
.h5d{height:25.634531pt;}
.h5c{height:25.635937pt;}
.h35{height:30.330504pt;}
.h46{height:30.330628pt;}
.h2b{height:30.330748pt;}
.h31{height:30.479954pt;}
.h44{height:30.480074pt;}
.h38{height:31.199951pt;}
.h3a{height:31.200012pt;}
.h16{height:31.284964pt;}
.h45{height:31.286111pt;}
.h33{height:31.299839pt;}
.h41{height:31.359985pt;}
.h43{height:31.359986pt;}
.h3c{height:31.360046pt;}
.h2{height:33.517021pt;}
.h72{height:33.821176pt;}
.h7{height:33.868599pt;}
.h69{height:34.151624pt;}
.h13{height:34.946769pt;}
.h58{height:35.675428pt;}
.hb{height:37.092021pt;}
.h8{height:38.439102pt;}
.h10{height:38.674269pt;}
.h4d{height:38.699134pt;}
.h4c{height:38.699138pt;}
.h9{height:39.564148pt;}
.h73{height:39.790559pt;}
.h22{height:40.291969pt;}
.h1a{height:40.291973pt;}
.h24{height:40.292093pt;}
.h1f{height:40.292097pt;}
.h54{height:40.454811pt;}
.h23{height:40.931985pt;}
.h20{height:40.931989pt;}
.h70{height:41.009330pt;}
.h6f{height:41.010906pt;}
.h4a{height:41.899090pt;}
.h47{height:42.539102pt;}
.h4b{height:42.692228pt;}
.h11{height:42.692232pt;}
.hd{height:43.784148pt;}
.h3f{height:44.479980pt;}
.hc{height:44.689179pt;}
.h12{height:44.769811pt;}
.h3d{height:45.119995pt;}
.h74{height:45.157946pt;}
.ha{height:46.595500pt;}
.h26{height:46.689795pt;}
.h3e{height:46.879944pt;}
.he{height:47.046084pt;}
.h25{height:51.125052pt;}
.h4{height:52.834785pt;}
.h5{height:54.261746pt;}
.h1d{height:67.812113pt;}
.h40{height:68.451881pt;}
.h42{height:68.451885pt;}
.h3b{height:68.452125pt;}
.h37{height:68.452129pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4a{width:2.239990pt;}
.w5{width:3.359985pt;}
.w1c{width:3.359986pt;}
.w14{width:3.360000pt;}
.w32{width:3.360015pt;}
.w19{width:3.360016pt;}
.w36{width:4.320007pt;}
.w3e{width:4.479980pt;}
.w25{width:4.479981pt;}
.w1f{width:4.480004pt;}
.w24{width:4.480011pt;}
.w41{width:4.480042pt;}
.w10{width:5.119996pt;}
.w4f{width:5.279999pt;}
.w59{width:5.919983pt;}
.w2{width:5.920013pt;}
.we{width:6.239990pt;}
.w4d{width:6.239991pt;}
.w12{width:6.399994pt;}
.w20{width:6.559997pt;}
.w38{width:6.559998pt;}
.w3d{width:6.719971pt;}
.w11{width:6.720001pt;}
.w3a{width:6.720002pt;}
.w40{width:6.720032pt;}
.w4{width:7.040009pt;}
.w54{width:7.200012pt;}
.w4c{width:7.359985pt;}
.w49{width:7.360016pt;}
.wc{width:7.680007pt;}
.wd{width:8.000000pt;}
.w3b{width:8.160004pt;}
.w3c{width:8.160034pt;}
.w39{width:8.319976pt;}
.wf{width:8.319977pt;}
.w3f{width:8.320007pt;}
.w42{width:8.320008pt;}
.w27{width:8.639984pt;}
.wb{width:8.640015pt;}
.w1e{width:8.799987pt;}
.w2e{width:9.279999pt;}
.w51{width:9.280029pt;}
.w7{width:9.600006pt;}
.w2a{width:9.919983pt;}
.w2b{width:9.920013pt;}
.w2d{width:9.920014pt;}
.w31{width:10.079987pt;}
.w21{width:10.080002pt;}
.w34{width:10.080017pt;}
.w45{width:10.240021pt;}
.w29{width:10.240051pt;}
.w44{width:10.399994pt;}
.w28{width:10.400001pt;}
.w46{width:10.400024pt;}
.w43{width:10.559997pt;}
.w47{width:10.559998pt;}
.w16{width:11.199997pt;}
.w4e{width:11.839996pt;}
.w9{width:12.000000pt;}
.w53{width:13.279999pt;}
.w55{width:16.799988pt;}
.w52{width:16.800018pt;}
.w4b{width:18.559998pt;}
.w1d{width:19.039978pt;}
.w1a{width:19.040009pt;}
.w6{width:19.360016pt;}
.w33{width:20.000000pt;}
.w13{width:20.799988pt;}
.w18{width:23.039978pt;}
.w57{width:23.359985pt;}
.w35{width:23.359986pt;}
.w56{width:23.520020pt;}
.w37{width:25.919983pt;}
.w48{width:25.920013pt;}
.w2c{width:26.559997pt;}
.w5a{width:27.040009pt;}
.w17{width:28.160004pt;}
.w50{width:28.959991pt;}
.w2f{width:29.920013pt;}
.wa{width:30.079956pt;}
.w5b{width:30.079987pt;}
.w5c{width:30.080017pt;}
.w8{width:30.080018pt;}
.w1b{width:33.440033pt;}
.w15{width:37.760010pt;}
.w30{width:40.639984pt;}
.w58{width:45.920013pt;}
.w23{width:46.240020pt;}
.w22{width:63.680008pt;}
.w26{width:98.559997pt;}
.w3{width:174.400009pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.559998pt;}
.x23{left:100.160004pt;}
.xc{left:103.199997pt;}
.x38{left:104.959999pt;}
.x39{left:111.680000pt;}
.x9{left:113.440002pt;}
.x3a{left:116.160004pt;}
.xb{left:117.279999pt;}
.xf9{left:118.559998pt;}
.x3b{left:122.720001pt;}
.x24{left:126.080002pt;}
.x6b{left:128.000000pt;}
.x6c{left:129.279999pt;}
.x7{left:132.320007pt;}
.x67{left:134.240005pt;}
.x6e{left:135.681250pt;}
.x4a{left:137.759995pt;}
.x25{left:141.440002pt;}
.x27{left:142.880005pt;}
.x4b{left:144.320007pt;}
.xf0{left:146.080002pt;}
.xe7{left:147.839996pt;}
.x3d{left:148.800003pt;}
.x83{left:150.564226pt;}
.x3e{left:151.839996pt;}
.x3c{left:154.399994pt;}
.xa0{left:157.440002pt;}
.x68{left:160.800003pt;}
.x28{left:163.679993pt;}
.x29{left:167.039993pt;}
.x3{left:173.600006pt;}
.x66{left:175.681925pt;}
.xd1{left:179.520004pt;}
.x93{left:183.199997pt;}
.x69{left:185.279999pt;}
.x86{left:186.240005pt;}
.x84{left:194.720673pt;}
.xd0{left:196.000000pt;}
.x5{left:198.399994pt;}
.xcd{left:202.080002pt;}
.x2a{left:204.800003pt;}
.xf4{left:206.076205pt;}
.xe8{left:208.639999pt;}
.x26{left:209.600006pt;}
.x6a{left:211.839996pt;}
.xd{left:213.600006pt;}
.xe{left:215.199997pt;}
.x4{left:220.160004pt;}
.xf5{left:221.279999pt;}
.x2b{left:230.720001pt;}
.x3f{left:232.479996pt;}
.xc5{left:233.600006pt;}
.x48{left:234.720001pt;}
.xd3{left:241.600006pt;}
.xe6{left:242.720001pt;}
.x1{left:249.919998pt;}
.x1a{left:253.759995pt;}
.xef{left:258.720001pt;}
.x7a{left:259.841362pt;}
.x1b{left:261.920013pt;}
.x65{left:264.799988pt;}
.x7b{left:266.239990pt;}
.x18{left:267.839996pt;}
.xee{left:269.760010pt;}
.x76{left:271.200012pt;}
.x7d{left:275.520979pt;}
.x19{left:276.959991pt;}
.xed{left:279.200012pt;}
.x64{left:280.160004pt;}
.xb1{left:281.125260pt;}
.xb2{left:283.845797pt;}
.xd4{left:285.279999pt;}
.xa{left:286.559998pt;}
.xd7{left:289.440002pt;}
.x7f{left:293.123381pt;}
.x6{left:295.679993pt;}
.x77{left:297.920013pt;}
.x1f{left:299.200012pt;}
.xd8{left:300.640015pt;}
.x85{left:302.239990pt;}
.x20{left:305.440002pt;}
.xd9{left:307.200012pt;}
.xe4{left:309.279999pt;}
.x21{left:311.359985pt;}
.x75{left:312.668026pt;}
.x5f{left:315.658283pt;}
.x1c{left:320.799988pt;}
.x78{left:322.399994pt;}
.x63{left:326.239990pt;}
.x1d{left:328.000000pt;}
.xb4{left:329.279999pt;}
.x94{left:331.359985pt;}
.x2c{left:332.799988pt;}
.x22{left:333.920013pt;}
.x1e{left:335.040009pt;}
.xb5{left:336.000000pt;}
.x98{left:336.959991pt;}
.x40{left:338.079987pt;}
.x80{left:340.486242pt;}
.x62{left:341.440002pt;}
.xaa{left:343.519989pt;}
.xc6{left:344.799988pt;}
.x99{left:346.880005pt;}
.x79{left:348.959991pt;}
.x87{left:351.359985pt;}
.xab{left:353.440002pt;}
.x95{left:354.720001pt;}
.x61{left:356.799988pt;}
.x8d{left:357.920013pt;}
.x9a{left:360.320007pt;}
.x8e{left:362.399994pt;}
.xb6{left:363.359985pt;}
.x88{left:364.799988pt;}
.xac{left:366.880005pt;}
.x6d{left:368.640015pt;}
.x9b{left:370.239990pt;}
.x60{left:372.160004pt;}
.xe1{left:373.119995pt;}
.x89{left:374.720001pt;}
.xad{left:376.799988pt;}
.xc7{left:378.880005pt;}
.xa1{left:380.160004pt;}
.xb7{left:381.119995pt;}
.xda{left:383.200012pt;}
.x41{left:384.320007pt;}
.x74{left:386.559998pt;}
.xf{left:389.600006pt;}
.xec{left:390.880005pt;}
.xa5{left:393.440002pt;}
.x7e{left:395.366484pt;}
.x10{left:396.640015pt;}
.x8f{left:398.880005pt;}
.x47{left:401.600006pt;}
.xb8{left:404.000000pt;}
.x2{left:405.279999pt;}
.xce{left:406.239990pt;}
.xb9{left:408.480011pt;}
.x11{left:409.600006pt;}
.x5d{left:411.200012pt;}
.x12{left:412.959991pt;}
.xb3{left:414.403827pt;}
.x2d{left:416.480011pt;}
.x5b{left:417.440002pt;}
.xf1{left:419.040009pt;}
.xdf{left:420.000000pt;}
.x90{left:421.440002pt;}
.x2e{left:423.200012pt;}
.x91{left:424.799988pt;}
.xa6{left:426.559998pt;}
.xe2{left:427.519989pt;}
.xd2{left:430.399994pt;}
.xba{left:431.359985pt;}
.x13{left:432.320007pt;}
.xa2{left:433.440002pt;}
.x4c{left:435.040009pt;}
.x9c{left:436.799988pt;}
.xbb{left:438.079987pt;}
.x8a{left:439.200012pt;}
.x42{left:441.119995pt;}
.x96{left:442.399994pt;}
.x5c{left:444.160004pt;}
.x2f{left:446.239990pt;}
.x73{left:448.000000pt;}
.x30{left:449.600006pt;}
.x6f{left:452.827567pt;}
.x92{left:454.720001pt;}
.xa3{left:456.640015pt;}
.x5a{left:458.901370pt;}
.x9d{left:460.160004pt;}
.xdb{left:461.119995pt;}
.x8b{left:462.399994pt;}
.x72{left:463.359985pt;}
.x14{left:464.959991pt;}
.xa4{left:466.559998pt;}
.x81{left:467.527704pt;}
.x31{left:468.640015pt;}
.x9e{left:470.079987pt;}
.x8c{left:472.320007pt;}
.xa7{left:473.279999pt;}
.xcf{left:474.239990pt;}
.x97{left:475.519989pt;}
.xbc{left:476.480011pt;}
.xa8{left:477.600006pt;}
.x71{left:478.720001pt;}
.xc8{left:480.799988pt;}
.x33{left:483.839996pt;}
.xe3{left:487.200012pt;}
.xd5{left:489.440002pt;}
.xe9{left:492.640015pt;}
.x70{left:494.079987pt;}
.x15{left:495.040009pt;}
.x32{left:497.279999pt;}
.xf2{left:498.399994pt;}
.xbd{left:499.359985pt;}
.xc9{left:501.600006pt;}
.x7c{left:505.920013pt;}
.xb0{left:508.160004pt;}
.x43{left:510.239990pt;}
.xdc{left:512.640015pt;}
.x44{left:514.719971pt;}
.x34{left:517.280029pt;}
.xdd{left:519.200012pt;}
.x35{left:520.640015pt;}
.xd6{left:527.039978pt;}
.xde{left:529.119995pt;}
.x59{left:532.799988pt;}
.xca{left:535.520020pt;}
.xeb{left:537.760010pt;}
.x36{left:539.679993pt;}
.x16{left:540.640015pt;}
.xbe{left:544.479980pt;}
.x4f{left:548.000000pt;}
.xa9{left:551.520020pt;}
.xea{left:554.880005pt;}
.xf8{left:557.919983pt;}
.xe5{left:561.919983pt;}
.x58{left:563.520020pt;}
.xbf{left:567.359985pt;}
.xcb{left:569.599976pt;}
.x17{left:570.719971pt;}
.x45{left:572.799988pt;}
.xc0{left:574.080017pt;}
.x50{left:576.960022pt;}
.x57{left:578.880005pt;}
.x9f{left:583.039978pt;}
.xc1{left:585.119995pt;}
.x56{left:594.239990pt;}
.x37{left:597.599976pt;}
.x52{left:599.061178pt;}
.xc2{left:601.440002pt;}
.x82{left:603.526304pt;}
.xc3{left:608.159973pt;}
.x4d{left:610.400024pt;}
.xae{left:613.280029pt;}
.xf7{left:614.239990pt;}
.xcc{left:616.960022pt;}
.xf6{left:617.919983pt;}
.xc4{left:619.200012pt;}
.xf3{left:623.840027pt;}
.x55{left:624.960022pt;}
.x54{left:640.320007pt;}
.x5e{left:652.159973pt;}
.x53{left:655.679993pt;}
.x46{left:671.359985pt;}
.xe0{left:672.960022pt;}
.x51{left:680.320007pt;}
.x49{left:685.599976pt;}
.xaf{left:693.280029pt;}
.x4e{left:699.359985pt;}
}




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