
    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_b10e6ae65cfbbd0e59b72f3b.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f83e439955c67e7d39dfb037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.226000;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_e8f7e3384415ef36f80320fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904815;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_deb2024903a655ece54cabe2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.055000;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_2f3a70af051d7ba38ffba5e5.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_30702fd69daf8a87a5e3ec24.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6d4af1ec66b26384c940f69a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_2f3a70af051d7ba38ffba5e5.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m9{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);}
.m2{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m4{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m7{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m8{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m1{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);}
.m3{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);}
.m5{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,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);}
.m6{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);}
.vb{vertical-align:-50.274000px;}
.v2{vertical-align:-28.078800px;}
.v5{vertical-align:-20.970000px;}
.v6{vertical-align:-16.488000px;}
.vc{vertical-align:-15.484200px;}
.v4{vertical-align:-14.482505px;}
.v1{vertical-align:-12.979200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:13.986000px;}
.v9{vertical-align:15.984000px;}
.v3{vertical-align:19.980000px;}
.v7{vertical-align:25.494000px;}
.va{vertical-align:50.988000px;}
.ls11{letter-spacing:-4.800000px;}
.ls22{letter-spacing:-4.200000px;}
.ls39{letter-spacing:-4.080000px;}
.ls20{letter-spacing:-4.074000px;}
.ls21{letter-spacing:-3.948000px;}
.ls13{letter-spacing:-3.600000px;}
.ls37{letter-spacing:-3.402000px;}
.ls3f{letter-spacing:-3.120000px;}
.ls1f{letter-spacing:-2.982000px;}
.ls26{letter-spacing:-2.535000px;}
.ls2b{letter-spacing:-2.448000px;}
.ls1b{letter-spacing:-2.406624px;}
.ls9{letter-spacing:-2.077020px;}
.ls18{letter-spacing:-1.920000px;}
.ls33{letter-spacing:-1.806000px;}
.ls35{letter-spacing:-1.764000px;}
.ls36{letter-spacing:-1.638000px;}
.ls2e{letter-spacing:-1.462214px;}
.ls2c{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.364734px;}
.ls38{letter-spacing:-1.176000px;}
.ls12{letter-spacing:-1.152000px;}
.ls29{letter-spacing:-1.020000px;}
.ls2a{letter-spacing:-0.974809px;}
.ls27{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.912000px;}
.lsa{letter-spacing:-0.843625px;}
.ls23{letter-spacing:-0.840000px;}
.ls2d{letter-spacing:-0.839520px;}
.ls8{letter-spacing:-0.830808px;}
.ls7{letter-spacing:-0.780000px;}
.ls24{letter-spacing:-0.725015px;}
.ls34{letter-spacing:-0.630000px;}
.ls28{letter-spacing:-0.559680px;}
.ls2f{letter-spacing:-0.510000px;}
.ls14{letter-spacing:-0.487405px;}
.lse{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.440699px;}
.lsb{letter-spacing:-0.434004px;}
.ls6{letter-spacing:-0.396016px;}
.ls4{letter-spacing:-0.390000px;}
.ls19{letter-spacing:-0.279840px;}
.ls1a{letter-spacing:-0.255000px;}
.lsc{letter-spacing:-0.253026px;}
.lsf{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.227370px;}
.ls1e{letter-spacing:-0.213240px;}
.ls1d{letter-spacing:-0.210000px;}
.ls3a{letter-spacing:-0.122430px;}
.ls3{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.078000px;}
.ls43{letter-spacing:0.210000px;}
.ls16{letter-spacing:0.279840px;}
.ls3c{letter-spacing:0.335808px;}
.ls15{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.487405px;}
.ls41{letter-spacing:0.489720px;}
.ls3b{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.702000px;}
.ls3d{letter-spacing:0.840000px;}
.ls3e{letter-spacing:0.852959px;}
.ls30{letter-spacing:1.260000px;}
.ls25{letter-spacing:1.728000px;}
.ls0{letter-spacing:5.952096px;}
.ls1{letter-spacing:8.897082px;}
.ls31{letter-spacing:22.848000px;}
.ls2{letter-spacing:27.776256px;}
.ls32{letter-spacing:133.350000px;}
.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;}
}
.ws129{word-spacing:-48.000000px;}
.wsf4{word-spacing:-42.000000px;}
.ws6{word-spacing:-38.626356px;}
.ws1a{word-spacing:-27.776256px;}
.wsa7{word-spacing:-12.495000px;}
.ws162{word-spacing:-12.480000px;}
.ws3{word-spacing:-12.289800px;}
.ws36{word-spacing:-12.000000px;}
.ws34{word-spacing:-11.760000px;}
.ws12b{word-spacing:-11.730000px;}
.ws39{word-spacing:-11.697711px;}
.ws190{word-spacing:-11.340000px;}
.ws37{word-spacing:-10.848000px;}
.ws279{word-spacing:-10.710000px;}
.ws13a{word-spacing:-10.661982px;}
.wsf3{word-spacing:-10.500000px;}
.wsf7{word-spacing:-10.290000px;}
.ws123{word-spacing:-9.936968px;}
.ws15b{word-spacing:-9.870000px;}
.ws5{word-spacing:-9.701687px;}
.ws0{word-spacing:-9.360000px;}
.ws8{word-spacing:-9.182250px;}
.ws2{word-spacing:-8.970000px;}
.ws18f{word-spacing:-8.880000px;}
.ws4{word-spacing:-8.745000px;}
.ws38{word-spacing:-8.400000px;}
.ws163{word-spacing:-7.920000px;}
.wsfb{word-spacing:-7.518000px;}
.ws18e{word-spacing:-7.331808px;}
.wsa6{word-spacing:-7.275840px;}
.ws35{word-spacing:-7.200000px;}
.ws12a{word-spacing:-6.996000px;}
.ws20b{word-spacing:-6.972000px;}
.wsa5{word-spacing:-6.716160px;}
.ws1ef{word-spacing:-6.611220px;}
.ws114{word-spacing:-6.552000px;}
.ws128{word-spacing:-6.436320px;}
.wsfc{word-spacing:-6.426000px;}
.ws7{word-spacing:-6.325650px;}
.wsb8{word-spacing:-6.288000px;}
.ws12c{word-spacing:-6.156480px;}
.ws124{word-spacing:-6.121500px;}
.ws9{word-spacing:-6.072624px;}
.ws164{word-spacing:-5.999070px;}
.wse{word-spacing:-5.952096px;}
.ws223{word-spacing:-5.712000px;}
.ws1{word-spacing:-5.456880px;}
.wsa8{word-spacing:-4.589376px;}
.ws20f{word-spacing:-4.563328px;}
.wsae{word-spacing:-4.560000px;}
.ws20e{word-spacing:-4.494000px;}
.ws232{word-spacing:-4.452000px;}
.ws1b4{word-spacing:-4.284000px;}
.ws41{word-spacing:-3.648000px;}
.ws209{word-spacing:-3.326538px;}
.ws94{word-spacing:-3.216000px;}
.ws3c{word-spacing:-3.168000px;}
.ws63{word-spacing:-3.072000px;}
.ws21f{word-spacing:-2.982000px;}
.ws2c{word-spacing:-2.880000px;}
.ws187{word-spacing:-2.832000px;}
.wsd0{word-spacing:-2.784000px;}
.ws17c{word-spacing:-2.736000px;}
.ws1f7{word-spacing:-2.729467px;}
.ws1f6{word-spacing:-2.688000px;}
.ws208{word-spacing:-2.558876px;}
.ws207{word-spacing:-2.520000px;}
.ws66{word-spacing:-2.448000px;}
.ws21e{word-spacing:-2.436000px;}
.ws203{word-spacing:-2.430932px;}
.ws14d{word-spacing:-2.400000px;}
.ws202{word-spacing:-2.394000px;}
.ws145{word-spacing:-2.352000px;}
.ws57{word-spacing:-2.304000px;}
.ws182{word-spacing:-2.256000px;}
.ws24d{word-spacing:-2.226000px;}
.wsb4{word-spacing:-2.208000px;}
.ws185{word-spacing:-2.112000px;}
.wsb7{word-spacing:-2.064000px;}
.ws24a{word-spacing:-2.058000px;}
.ws280{word-spacing:-2.047101px;}
.ws1a7{word-spacing:-2.016000px;}
.ws22c{word-spacing:-2.004453px;}
.ws12{word-spacing:-1.996418px;}
.ws22b{word-spacing:-1.974000px;}
.ws249{word-spacing:-1.932000px;}
.ws19e{word-spacing:-1.920000px;}
.ws242{word-spacing:-1.919157px;}
.ws1b7{word-spacing:-1.876509px;}
.ws74{word-spacing:-1.872000px;}
.ws1b8{word-spacing:-1.848000px;}
.wsaa{word-spacing:-1.824000px;}
.wse5{word-spacing:-1.776000px;}
.ws19{word-spacing:-1.764000px;}
.wsd8{word-spacing:-1.728000px;}
.ws88{word-spacing:-1.680000px;}
.ws13{word-spacing:-1.649215px;}
.wsc4{word-spacing:-1.584000px;}
.ws239{word-spacing:-1.554000px;}
.ws263{word-spacing:-1.492678px;}
.ws183{word-spacing:-1.488000px;}
.ws262{word-spacing:-1.470000px;}
.ws1b2{word-spacing:-1.450030px;}
.ws79{word-spacing:-1.440000px;}
.ws1b3{word-spacing:-1.428000px;}
.ws24e{word-spacing:-1.407382px;}
.wse8{word-spacing:-1.392000px;}
.ws236{word-spacing:-1.386000px;}
.ws54{word-spacing:-1.344000px;}
.ws18c{word-spacing:-1.302000px;}
.ws87{word-spacing:-1.296000px;}
.ws6f{word-spacing:-1.248000px;}
.ws55{word-spacing:-1.200000px;}
.ws48{word-spacing:-1.152000px;}
.ws1fd{word-spacing:-1.134000px;}
.ws1a5{word-spacing:-1.104000px;}
.ws7c{word-spacing:-1.056000px;}
.ws237{word-spacing:-1.023550px;}
.ws64{word-spacing:-1.008000px;}
.ws1d2{word-spacing:-0.966000px;}
.ws67{word-spacing:-0.960000px;}
.ws26c{word-spacing:-0.938254px;}
.ws1ea{word-spacing:-0.924000px;}
.ws245{word-spacing:-0.882000px;}
.wsa2{word-spacing:-0.864000px;}
.ws1c8{word-spacing:-0.852959px;}
.ws1ab{word-spacing:-0.840000px;}
.wsb1{word-spacing:-0.816000px;}
.wsc7{word-spacing:-0.768000px;}
.wsd4{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.702000px;}
.ws65{word-spacing:-0.672000px;}
.wscd{word-spacing:-0.624000px;}
.ws1d6{word-spacing:-0.597071px;}
.ws1d5{word-spacing:-0.588000px;}
.ws195{word-spacing:-0.576000px;}
.wsdc{word-spacing:-0.487405px;}
.ws84{word-spacing:-0.480000px;}
.ws1e5{word-spacing:-0.469127px;}
.ws1e4{word-spacing:-0.462000px;}
.wse6{word-spacing:-0.432000px;}
.ws44{word-spacing:-0.384000px;}
.wsd5{word-spacing:-0.336000px;}
.ws18{word-spacing:-0.303803px;}
.ws267{word-spacing:-0.298536px;}
.ws62{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.249242px;}
.ws158{word-spacing:-0.213240px;}
.ws127{word-spacing:-0.210000px;}
.ws1a6{word-spacing:-0.192000px;}
.ws1a8{word-spacing:-0.168000px;}
.ws5e{word-spacing:-0.096000px;}
.ws1f0{word-spacing:-0.078000px;}
.ws148{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.ws20{word-spacing:0.043400px;}
.wsc8{word-spacing:0.048000px;}
.wsaf{word-spacing:0.096000px;}
.ws18d{word-spacing:0.122430px;}
.ws1eb{word-spacing:0.126000px;}
.ws1ec{word-spacing:0.127944px;}
.ws40{word-spacing:0.144000px;}
.ws69{word-spacing:0.192000px;}
.ws126{word-spacing:0.210000px;}
.ws125{word-spacing:0.213240px;}
.ws5a{word-spacing:0.240000px;}
.ws1fe{word-spacing:0.252000px;}
.ws16f{word-spacing:0.255000px;}
.ws1ff{word-spacing:0.255888px;}
.ws9f{word-spacing:0.288000px;}
.ws24{word-spacing:0.303803px;}
.ws157{word-spacing:0.336000px;}
.ws1b6{word-spacing:0.341183px;}
.wsc{word-spacing:0.390000px;}
.ws14{word-spacing:0.390604px;}
.ws99{word-spacing:0.432000px;}
.ws22{word-spacing:0.440699px;}
.ws4a{word-spacing:0.480000px;}
.ws8d{word-spacing:0.487405px;}
.ws268{word-spacing:0.511775px;}
.ws201{word-spacing:0.546000px;}
.ws9c{word-spacing:0.576000px;}
.wsac{word-spacing:0.624000px;}
.ws275{word-spacing:0.714000px;}
.ws155{word-spacing:0.720000px;}
.ws75{word-spacing:0.768000px;}
.wsd{word-spacing:0.780000px;}
.ws156{word-spacing:0.816000px;}
.wsf{word-spacing:0.830808px;}
.ws1ce{word-spacing:0.840000px;}
.ws33{word-spacing:0.864000px;}
.ws21a{word-spacing:0.882000px;}
.ws219{word-spacing:0.895607px;}
.wsc5{word-spacing:0.912000px;}
.ws1e8{word-spacing:0.924000px;}
.ws1e9{word-spacing:0.938254px;}
.ws1c2{word-spacing:0.966000px;}
.ws141{word-spacing:0.974809px;}
.ws9a{word-spacing:1.008000px;}
.ws1bd{word-spacing:1.092000px;}
.ws142{word-spacing:1.104000px;}
.ws15{word-spacing:1.128410px;}
.ws1bb{word-spacing:1.134000px;}
.ws1bc{word-spacing:1.151494px;}
.ws18a{word-spacing:1.152000px;}
.ws248{word-spacing:1.176000px;}
.ws80{word-spacing:1.200000px;}
.ws23{word-spacing:1.215211px;}
.wsab{word-spacing:1.248000px;}
.ws184{word-spacing:1.296000px;}
.wsbb{word-spacing:1.344000px;}
.ws1d9{word-spacing:1.364734px;}
.wsb{word-spacing:1.365000px;}
.ws7e{word-spacing:1.392000px;}
.ws1cd{word-spacing:1.428000px;}
.ws4b{word-spacing:1.440000px;}
.ws1cc{word-spacing:1.450030px;}
.ws147{word-spacing:1.462214px;}
.ws2d{word-spacing:1.488000px;}
.ws16{word-spacing:1.519014px;}
.ws51{word-spacing:1.536000px;}
.ws1e3{word-spacing:1.554000px;}
.ws4e{word-spacing:1.584000px;}
.ws86{word-spacing:1.632000px;}
.ws16b{word-spacing:1.638000px;}
.ws1e7{word-spacing:1.680000px;}
.ws1e{word-spacing:1.692616px;}
.ws225{word-spacing:1.764000px;}
.ws81{word-spacing:1.776000px;}
.ws226{word-spacing:1.791213px;}
.ws9b{word-spacing:1.824000px;}
.ws229{word-spacing:1.848000px;}
.ws22a{word-spacing:1.876509px;}
.ws1d7{word-spacing:1.890000px;}
.ws31{word-spacing:1.920000px;}
.ws16c{word-spacing:1.974000px;}
.ws1c{word-spacing:1.996418px;}
.wse0{word-spacing:2.016000px;}
.ws20a{word-spacing:2.058000px;}
.wsa9{word-spacing:2.064000px;}
.ws1b1{word-spacing:2.100000px;}
.ws197{word-spacing:2.160000px;}
.ws2f{word-spacing:2.208000px;}
.ws1f2{word-spacing:2.226000px;}
.ws1a1{word-spacing:2.304000px;}
.ws20d{word-spacing:2.310000px;}
.ws269{word-spacing:2.345636px;}
.ws194{word-spacing:2.352000px;}
.ws144{word-spacing:2.400000px;}
.ws1f8{word-spacing:2.436000px;}
.ws143{word-spacing:2.448000px;}
.ws1f9{word-spacing:2.473580px;}
.ws1d{word-spacing:2.473823px;}
.ws1e0{word-spacing:2.520000px;}
.ws13b{word-spacing:2.535000px;}
.ws16e{word-spacing:2.544000px;}
.ws1a4{word-spacing:2.592000px;}
.ws78{word-spacing:2.640000px;}
.ws180{word-spacing:2.688000px;}
.ws211{word-spacing:2.729467px;}
.wsa0{word-spacing:2.736000px;}
.wse1{word-spacing:2.784000px;}
.ws247{word-spacing:2.814000px;}
.ws53{word-spacing:2.832000px;}
.ws246{word-spacing:2.857411px;}
.ws52{word-spacing:2.928000px;}
.ws13f{word-spacing:2.976000px;}
.ws13d{word-spacing:3.024000px;}
.ws231{word-spacing:3.066000px;}
.wsb2{word-spacing:3.072000px;}
.ws230{word-spacing:3.113299px;}
.wseb{word-spacing:3.120000px;}
.ws200{word-spacing:3.150000px;}
.ws8c{word-spacing:3.168000px;}
.wsee{word-spacing:3.216000px;}
.ws233{word-spacing:3.234000px;}
.wsb6{word-spacing:3.264000px;}
.ws256{word-spacing:3.276000px;}
.ws234{word-spacing:3.283891px;}
.ws1b{word-spacing:3.298430px;}
.ws30{word-spacing:3.312000px;}
.ws1de{word-spacing:3.318000px;}
.ws244{word-spacing:3.360000px;}
.ws17{word-spacing:3.385231px;}
.ws14e{word-spacing:3.408000px;}
.ws45{word-spacing:3.456000px;}
.ws1ae{word-spacing:3.528000px;}
.wsef{word-spacing:3.552000px;}
.ws1ad{word-spacing:3.582426px;}
.wsec{word-spacing:3.600000px;}
.wsbf{word-spacing:3.648000px;}
.ws5d{word-spacing:3.696000px;}
.wsb3{word-spacing:3.744000px;}
.wsf1{word-spacing:3.792000px;}
.wsea{word-spacing:3.840000px;}
.wse4{word-spacing:3.888000px;}
.wsd9{word-spacing:3.936000px;}
.ws1d3{word-spacing:3.948000px;}
.wsbc{word-spacing:3.984000px;}
.ws77{word-spacing:4.032000px;}
.ws60{word-spacing:4.080000px;}
.ws1af{word-spacing:4.116000px;}
.ws140{word-spacing:4.176000px;}
.ws1df{word-spacing:4.179497px;}
.wsde{word-spacing:4.272000px;}
.ws1c3{word-spacing:4.284000px;}
.ws58{word-spacing:4.320000px;}
.ws22f{word-spacing:4.350089px;}
.ws6b{word-spacing:4.368000px;}
.ws1e1{word-spacing:4.452000px;}
.wsc3{word-spacing:4.464000px;}
.ws1a2{word-spacing:4.512000px;}
.ws1e2{word-spacing:4.520681px;}
.ws199{word-spacing:4.560000px;}
.ws23e{word-spacing:4.578000px;}
.ws32{word-spacing:4.608000px;}
.ws281{word-spacing:4.662000px;}
.ws266{word-spacing:4.733920px;}
.wsba{word-spacing:4.800000px;}
.wscb{word-spacing:4.848000px;}
.ws98{word-spacing:4.896000px;}
.ws72{word-spacing:4.944000px;}
.ws21{word-spacing:4.991046px;}
.ws13e{word-spacing:5.040000px;}
.wsf0{word-spacing:5.088000px;}
.ws1c9{word-spacing:5.124000px;}
.ws7d{word-spacing:5.136000px;}
.wsc0{word-spacing:5.184000px;}
.ws1c5{word-spacing:5.208000px;}
.ws1c4{word-spacing:5.288343px;}
.ws23d{word-spacing:5.292000px;}
.wsd2{word-spacing:5.328000px;}
.ws224{word-spacing:5.334000px;}
.ws23c{word-spacing:5.373639px;}
.ws198{word-spacing:5.376000px;}
.ws10{word-spacing:5.381650px;}
.ws76{word-spacing:5.472000px;}
.ws26d{word-spacing:5.502000px;}
.ws93{word-spacing:5.507672px;}
.ws46{word-spacing:5.520000px;}
.wsed{word-spacing:5.568000px;}
.ws6d{word-spacing:5.616000px;}
.ws24b{word-spacing:5.670000px;}
.ws97{word-spacing:5.712000px;}
.ws24c{word-spacing:5.757470px;}
.wsdd{word-spacing:5.808000px;}
.ws1b9{word-spacing:5.838000px;}
.wsdb{word-spacing:5.856000px;}
.ws5f{word-spacing:5.904000px;}
.ws1d4{word-spacing:5.922000px;}
.ws42{word-spacing:5.952000px;}
.wse3{word-spacing:6.000000px;}
.ws270{word-spacing:6.006000px;}
.ws1d8{word-spacing:6.013358px;}
.wscc{word-spacing:6.048000px;}
.ws265{word-spacing:6.056006px;}
.ws16d{word-spacing:6.096000px;}
.ws91{word-spacing:6.192000px;}
.ws83{word-spacing:6.288000px;}
.ws9e{word-spacing:6.336000px;}
.ws241{word-spacing:6.342000px;}
.ws1f{word-spacing:6.379859px;}
.wsda{word-spacing:6.384000px;}
.ws92{word-spacing:6.385000px;}
.ws21b{word-spacing:6.426000px;}
.wsdf{word-spacing:6.432000px;}
.ws7f{word-spacing:6.480000px;}
.ws1a3{word-spacing:6.576000px;}
.ws228{word-spacing:6.594000px;}
.ws13c{word-spacing:6.720000px;}
.ws8a{word-spacing:6.816000px;}
.ws85{word-spacing:6.912000px;}
.ws146{word-spacing:6.960000px;}
.ws21d{word-spacing:6.972000px;}
.wsd7{word-spacing:7.008000px;}
.ws24f{word-spacing:7.014000px;}
.ws9d{word-spacing:7.056000px;}
.ws21c{word-spacing:7.079556px;}
.wsc6{word-spacing:7.104000px;}
.ws250{word-spacing:7.122204px;}
.ws27d{word-spacing:7.140000px;}
.ws1ee{word-spacing:7.182000px;}
.ws186{word-spacing:7.200000px;}
.ws6e{word-spacing:7.248000px;}
.wsd1{word-spacing:7.296000px;}
.ws282{word-spacing:7.308000px;}
.ws59{word-spacing:7.344000px;}
.ws95{word-spacing:7.392000px;}
.ws243{word-spacing:7.434000px;}
.ws2b{word-spacing:7.440000px;}
.ws8e{word-spacing:7.457291px;}
.wsce{word-spacing:7.488000px;}
.ws204{word-spacing:7.518000px;}
.ws2e{word-spacing:7.584000px;}
.ws172{word-spacing:7.632000px;}
.ws264{word-spacing:7.633979px;}
.ws61{word-spacing:7.680000px;}
.ws26f{word-spacing:7.728000px;}
.ws179{word-spacing:7.824000px;}
.ws26e{word-spacing:7.847219px;}
.ws26a{word-spacing:7.854000px;}
.ws17a{word-spacing:7.872000px;}
.ws1d0{word-spacing:7.896000px;}
.wsa3{word-spacing:7.920000px;}
.ws11{word-spacing:7.942273px;}
.ws4d{word-spacing:8.016000px;}
.ws1d1{word-spacing:8.017811px;}
.ws251{word-spacing:8.060459px;}
.ws28{word-spacing:8.064000px;}
.ws176{word-spacing:8.112000px;}
.ws7a{word-spacing:8.208000px;}
.ws17f{word-spacing:8.256000px;}
.ws1a9{word-spacing:8.316000px;}
.ws1fb{word-spacing:8.400000px;}
.ws1aa{word-spacing:8.444290px;}
.ws6c{word-spacing:8.448000px;}
.ws212{word-spacing:8.526000px;}
.ws14b{word-spacing:8.544000px;}
.wsbd{word-spacing:8.592000px;}
.wsc2{word-spacing:8.736000px;}
.ws170{word-spacing:8.928000px;}
.ws238{word-spacing:8.946000px;}
.ws71{word-spacing:9.024000px;}
.ws68{word-spacing:9.072000px;}
.ws193{word-spacing:9.120000px;}
.ws175{word-spacing:9.216000px;}
.ws6a{word-spacing:9.264000px;}
.ws210{word-spacing:9.324000px;}
.wsbe{word-spacing:9.408000px;}
.ws50{word-spacing:9.456000px;}
.ws260{word-spacing:9.492000px;}
.wse7{word-spacing:9.600000px;}
.ws25a{word-spacing:9.618000px;}
.ws191{word-spacing:9.648000px;}
.ws17e{word-spacing:9.696000px;}
.ws5b{word-spacing:9.744000px;}
.ws25b{word-spacing:9.766376px;}
.ws1c6{word-spacing:9.828000px;}
.ws196{word-spacing:9.840000px;}
.ws20c{word-spacing:9.894320px;}
.ws90{word-spacing:9.936000px;}
.wsb0{word-spacing:9.984000px;}
.ws271{word-spacing:9.996000px;}
.ws26{word-spacing:10.032000px;}
.ws8f{word-spacing:10.089275px;}
.ws153{word-spacing:10.128000px;}
.ws171{word-spacing:10.176000px;}
.ws82{word-spacing:10.224000px;}
.ws1ba{word-spacing:10.332000px;}
.ws56{word-spacing:10.368000px;}
.ws222{word-spacing:10.458000px;}
.ws17d{word-spacing:10.464000px;}
.ws177{word-spacing:10.560000px;}
.ws149{word-spacing:10.608000px;}
.ws221{word-spacing:10.619334px;}
.ws154{word-spacing:10.656000px;}
.ws181{word-spacing:10.752000px;}
.ws26b{word-spacing:10.794000px;}
.wsca{word-spacing:10.800000px;}
.ws4f{word-spacing:10.848000px;}
.ws27e{word-spacing:10.878000px;}
.ws49{word-spacing:10.992000px;}
.ws73{word-spacing:11.040000px;}
.ws274{word-spacing:11.046000px;}
.wsc9{word-spacing:11.136000px;}
.ws47{word-spacing:11.232000px;}
.ws235{word-spacing:11.256000px;}
.wsa1{word-spacing:11.280000px;}
.ws1b5{word-spacing:11.340000px;}
.ws8b{word-spacing:11.376000px;}
.ws1e6{word-spacing:11.424000px;}
.ws5c{word-spacing:11.472000px;}
.ws3e{word-spacing:11.520000px;}
.ws283{word-spacing:11.592000px;}
.ws27f{word-spacing:11.600237px;}
.ws192{word-spacing:11.712000px;}
.ws284{word-spacing:11.770828px;}
.ws27c{word-spacing:11.802000px;}
.ws96{word-spacing:11.808000px;}
.ws1ed{word-spacing:11.886000px;}
.ws217{word-spacing:11.928000px;}
.wsc1{word-spacing:11.952000px;}
.ws27b{word-spacing:11.984068px;}
.ws276{word-spacing:12.012000px;}
.ws27{word-spacing:12.048000px;}
.ws3b{word-spacing:12.144000px;}
.ws258{word-spacing:12.180000px;}
.ws277{word-spacing:12.197308px;}
.ws1ca{word-spacing:12.264000px;}
.ws259{word-spacing:12.367899px;}
.ws1fc{word-spacing:12.390000px;}
.ws3f{word-spacing:12.432000px;}
.ws1cb{word-spacing:12.453195px;}
.wsb5{word-spacing:12.528000px;}
.ws14c{word-spacing:12.624000px;}
.ws253{word-spacing:12.684000px;}
.wsd3{word-spacing:12.816000px;}
.ws1f5{word-spacing:12.852000px;}
.wsd6{word-spacing:12.912000px;}
.ws3d{word-spacing:12.960000px;}
.ws216{word-spacing:13.020000px;}
.ws1f4{word-spacing:13.050266px;}
.ws23b{word-spacing:13.062000px;}
.ws1a0{word-spacing:13.200000px;}
.ws215{word-spacing:13.220858px;}
.ws1b0{word-spacing:13.230000px;}
.wsb9{word-spacing:13.248000px;}
.ws7b{word-spacing:13.296000px;}
.ws278{word-spacing:13.314000px;}
.ws70{word-spacing:13.536000px;}
.ws4c{word-spacing:13.584000px;}
.ws19b{word-spacing:13.728000px;}
.ws29{word-spacing:13.968000px;}
.ws173{word-spacing:14.016000px;}
.ws19a{word-spacing:14.208000px;}
.ws14a{word-spacing:14.304000px;}
.ws1ac{word-spacing:14.742000px;}
.ws151{word-spacing:14.784000px;}
.ws1cf{word-spacing:14.868000px;}
.ws257{word-spacing:14.910000px;}
.ws286{word-spacing:14.952000px;}
.wse2{word-spacing:15.024000px;}
.ws152{word-spacing:15.168000px;}
.ws285{word-spacing:15.182663px;}
.ws1c1{word-spacing:15.246000px;}
.ws1c0{word-spacing:15.481198px;}
.wscf{word-spacing:15.504000px;}
.ws22e{word-spacing:15.708000px;}
.ws43{word-spacing:15.744000px;}
.ws22d{word-spacing:15.950326px;}
.ws188{word-spacing:16.272000px;}
.ws19c{word-spacing:16.368000px;}
.ws27a{word-spacing:16.632000px;}
.ws89{word-spacing:16.656000px;}
.ws1dd{word-spacing:16.758000px;}
.ws18b{word-spacing:16.800000px;}
.ws1f1{word-spacing:16.926000px;}
.ws1dc{word-spacing:17.016524px;}
.ws272{word-spacing:17.052000px;}
.ws261{word-spacing:17.262000px;}
.ws273{word-spacing:17.315059px;}
.ws254{word-spacing:17.682000px;}
.ws1fa{word-spacing:17.869482px;}
.ws255{word-spacing:17.954778px;}
.ws213{word-spacing:18.060000px;}
.ws150{word-spacing:18.864000px;}
.ws240{word-spacing:19.026000px;}
.ws220{word-spacing:19.698000px;}
.wsa4{word-spacing:19.728000px;}
.ws19d{word-spacing:20.112000px;}
.ws2a{word-spacing:20.256000px;}
.ws189{word-spacing:20.352000px;}
.ws17b{word-spacing:20.640000px;}
.ws227{word-spacing:20.940133px;}
.ws174{word-spacing:21.168000px;}
.ws1db{word-spacing:21.504000px;}
.ws1c7{word-spacing:21.546000px;}
.ws25c{word-spacing:21.630000px;}
.ws252{word-spacing:22.218000px;}
.ws218{word-spacing:22.302000px;}
.ws23a{word-spacing:22.554000px;}
.ws1f3{word-spacing:23.016000px;}
.ws23f{word-spacing:23.058000px;}
.ws19f{word-spacing:23.088000px;}
.ws178{word-spacing:23.232000px;}
.ws1da{word-spacing:23.352000px;}
.ws14f{word-spacing:24.960000px;}
.ws25d{word-spacing:25.956000px;}
.wsad{word-spacing:25.968000px;}
.ws206{word-spacing:27.090000px;}
.ws205{word-spacing:27.507914px;}
.ws1be{word-spacing:30.324000px;}
.ws25f{word-spacing:30.996000px;}
.ws25e{word-spacing:31.474172px;}
.wse9{word-spacing:32.304000px;}
.ws214{word-spacing:32.508000px;}
.ws1bf{word-spacing:35.406000px;}
.ws16a{word-spacing:118.398000px;}
.ws167{word-spacing:128.142000px;}
.ws169{word-spacing:133.728000px;}
.ws165{word-spacing:202.314000px;}
.ws12f{word-spacing:220.038000px;}
.ws137{word-spacing:223.398000px;}
.ws133{word-spacing:224.532000px;}
.ws139{word-spacing:225.204000px;}
.ws131{word-spacing:231.294000px;}
.ws135{word-spacing:238.812000px;}
.ws166{word-spacing:239.809306px;}
.wsf6{word-spacing:263.928000px;}
.ws103{word-spacing:264.138000px;}
.wsfe{word-spacing:264.348000px;}
.ws110{word-spacing:264.894000px;}
.ws107{word-spacing:265.440000px;}
.wsff{word-spacing:265.776000px;}
.wsf9{word-spacing:267.288000px;}
.ws101{word-spacing:268.884000px;}
.ws10d{word-spacing:269.010000px;}
.ws122{word-spacing:269.304000px;}
.wsf5{word-spacing:269.346000px;}
.wsfa{word-spacing:269.724000px;}
.ws105{word-spacing:273.504000px;}
.ws11e{word-spacing:277.368000px;}
.ws168{word-spacing:308.816394px;}
.wsf8{word-spacing:326.802000px;}
.wsfd{word-spacing:328.398000px;}
.ws104{word-spacing:330.624000px;}
.ws11d{word-spacing:332.136000px;}
.ws100{word-spacing:332.388000px;}
.ws10f{word-spacing:332.556000px;}
.ws10c{word-spacing:332.724000px;}
.ws102{word-spacing:334.026000px;}
.ws108{word-spacing:334.950000px;}
.ws120{word-spacing:335.916000px;}
.ws121{word-spacing:341.880000px;}
.ws136{word-spacing:356.076000px;}
.ws132{word-spacing:356.454000px;}
.ws12e{word-spacing:356.958000px;}
.ws134{word-spacing:357.252000px;}
.ws138{word-spacing:357.294000px;}
.ws130{word-spacing:359.436000px;}
.ws10e{word-spacing:366.534000px;}
.ws11f{word-spacing:368.424000px;}
.ws117{word-spacing:368.970000px;}
.ws106{word-spacing:372.246000px;}
.ws10b{word-spacing:374.934000px;}
.ws113{word-spacing:385.644000px;}
.ws112{word-spacing:386.736000px;}
.ws10a{word-spacing:388.458000px;}
.ws109{word-spacing:389.088000px;}
.ws111{word-spacing:389.298000px;}
.ws118{word-spacing:391.356000px;}
.ws119{word-spacing:391.650000px;}
.ws11b{word-spacing:392.406000px;}
.ws161{word-spacing:393.960000px;}
.ws15d{word-spacing:394.968000px;}
.ws15a{word-spacing:395.262000px;}
.ws15f{word-spacing:403.578000px;}
.ws115{word-spacing:403.704000px;}
.ws11c{word-spacing:406.224000px;}
.ws11a{word-spacing:408.912000px;}
.ws159{word-spacing:538.104000px;}
.ws15c{word-spacing:540.250200px;}
.wsf2{word-spacing:603.456000px;}
.ws15e{word-spacing:641.760000px;}
.ws160{word-spacing:656.040000px;}
.ws12d{word-spacing:671.832000px;}
.ws116{word-spacing:1322.958000px;}
._58{margin-left:-20.635293px;}
._43{margin-left:-14.906089px;}
._4{margin-left:-6.029038px;}
._3{margin-left:-4.290000px;}
._5{margin-left:-3.248353px;}
._1{margin-left:-2.180241px;}
._0{margin-left:-1.088105px;}
._2{width:1.774646px;}
._8{width:2.928000px;}
._7{width:4.560000px;}
._6{width:6.385354px;}
._9{width:9.264000px;}
._b{width:10.565948px;}
._a{width:13.249354px;}
._4e{width:108.020241px;}
._57{width:114.282000px;}
._4f{width:128.856000px;}
._50{width:138.427391px;}
._56{width:141.414000px;}
._10{width:176.112835px;}
._2b{width:185.454948px;}
._1a{width:187.152000px;}
._26{width:188.907595px;}
._17{width:190.430241px;}
._1f{width:192.074241px;}
._22{width:194.361188px;}
._13{width:197.048166px;}
._53{width:199.374000px;}
._54{width:206.682000px;}
._55{width:208.059000px;}
._51{width:224.423084px;}
._47{width:253.890000px;}
._4b{width:256.406241px;}
._52{width:269.220000px;}
._18{width:275.814000px;}
._36{width:277.112940px;}
._28{width:278.726218px;}
._14{width:280.328353px;}
._30{width:282.740241px;}
._32{width:284.419406px;}
._f{width:308.601595px;}
._1e{width:317.982000px;}
._1c{width:322.308000px;}
._3a{width:325.569459px;}
._25{width:328.351354px;}
._21{width:332.600105px;}
._19{width:338.054241px;}
._16{width:341.004000px;}
._12{width:342.012000px;}
._42{width:359.894241px;}
._4a{width:374.006241px;}
._46{width:377.622000px;}
._4d{width:379.476000px;}
._45{width:380.582353px;}
._48{width:382.354707px;}
._35{width:407.732241px;}
._23{width:421.080452px;}
._4c{width:433.944000px;}
._44{width:449.295935px;}
._3e{width:532.598241px;}
._3b{width:546.237595px;}
._3f{width:564.350105px;}
._1d{width:566.328000px;}
._20{width:578.790452px;}
._34{width:596.904000px;}
._d{width:614.418000px;}
._27{width:631.298105px;}
._11{width:637.927354px;}
._49{width:652.092000px;}
._29{width:672.962241px;}
._41{width:694.718241px;}
._2f{width:715.088105px;}
._24{width:794.468105px;}
._e{width:859.358241px;}
._31{width:872.126105px;}
._33{width:877.376241px;}
._39{width:950.964000px;}
._3c{width:964.992000px;}
._2a{width:1043.406000px;}
._37{width:1046.556000px;}
._3d{width:1060.164000px;}
._2c{width:1077.338105px;}
._40{width:1081.710000px;}
._1b{width:1138.830000px;}
._2d{width:1180.448241px;}
._2e{width:1198.428000px;}
._38{width:1258.068000px;}
._15{width:1343.664000px;}
._c{width:1468.656000px;}
.fc2{color:rgb(20,19,20);}
.fc1{color:rgb(0,128,173);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:22.737000px;}
.fs15{font-size:23.087764px;}
.fs9{font-size:23.857876px;}
.fs1a{font-size:24.486000px;}
.fs1b{font-size:24.863746px;}
.fsf{font-size:25.302600px;}
.fs16{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs12{font-size:36.729000px;}
.fs2{font-size:39.000000px;}
.fs4{font-size:39.601611px;}
.fs1{font-size:40.300200px;}
.fsa{font-size:40.921859px;}
.fsd{font-size:41.540400px;}
.fs18{font-size:42.000000px;}
.fse{font-size:42.181246px;}
.fs19{font-size:42.647929px;}
.fsc{font-size:43.400400px;}
.fs10{font-size:44.069876px;}
.fs13{font-size:48.000000px;}
.fs14{font-size:48.740461px;}
.fs6{font-size:49.159200px;}
.fsb{font-size:49.600800px;}
.fs17{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs11{font-size:63.000000px;}
.fs5{font-size:84.321000px;}
.fs0{font-size:127.101600px;}
.y0{bottom:0.000000px;}
.y299{bottom:69.423900px;}
.y205{bottom:69.440400px;}
.y37b{bottom:69.453900px;}
.y303{bottom:69.457800px;}
.y3d1{bottom:69.463950px;}
.y248{bottom:70.183200px;}
.yd1{bottom:70.196550px;}
.y8b{bottom:70.245000px;}
.y18a{bottom:70.827750px;}
.y189{bottom:70.830750px;}
.y1e8{bottom:73.153050px;}
.y1e7{bottom:73.156050px;}
.y155{bottom:78.425400px;}
.y154{bottom:78.431400px;}
.y6{bottom:80.786850px;}
.y37a{bottom:81.539400px;}
.y302{bottom:81.543300px;}
.y3d0{bottom:81.549450px;}
.y379{bottom:81.559350px;}
.y188{bottom:83.577750px;}
.y111{bottom:83.965200px;}
.y298{bottom:85.467900px;}
.y204{bottom:85.772400px;}
.y1e6{bottom:85.903050px;}
.y247{bottom:85.963200px;}
.yd0{bottom:85.976550px;}
.y8a{bottom:86.025000px;}
.y301{bottom:93.628800px;}
.y3cf{bottom:93.634950px;}
.y378{bottom:93.644850px;}
.y153{bottom:94.175400px;}
.y152{bottom:94.271250px;}
.y110{bottom:99.709200px;}
.y14{bottom:99.863700px;}
.y297{bottom:101.511900px;}
.y246{bottom:101.743200px;}
.ycf{bottom:101.756550px;}
.y89{bottom:101.805000px;}
.y203{bottom:102.083250px;}
.y300{bottom:105.714300px;}
.y3ce{bottom:105.720450px;}
.y2ff{bottom:105.726150px;}
.y377{bottom:105.730350px;}
.y3cd{bottom:105.745350px;}
.y151{bottom:110.015250px;}
.y185{bottom:110.787600px;}
.y10f{bottom:115.453200px;}
.y1e4{bottom:116.102400px;}
.y245{bottom:117.523200px;}
.yce{bottom:117.536550px;}
.y296{bottom:117.555900px;}
.y88{bottom:117.585000px;}
.y2fe{bottom:117.811650px;}
.y376{bottom:117.815850px;}
.y3cc{bottom:117.830850px;}
.y202{bottom:118.415250px;}
.y4{bottom:121.422900px;}
.y5{bottom:121.424850px;}
.y150{bottom:125.759250px;}
.y1e3{bottom:128.849400px;}
.y2fd{bottom:129.897150px;}
.y375{bottom:129.901350px;}
.y3cb{bottom:129.916350px;}
.y374{bottom:129.921300px;}
.y10e{bottom:131.197200px;}
.y184{bottom:133.058100px;}
.y244{bottom:133.303200px;}
.ycd{bottom:133.316550px;}
.y87{bottom:133.365000px;}
.y295{bottom:133.599900px;}
.y3{bottom:133.824900px;}
.y201{bottom:134.747250px;}
.y14f{bottom:141.503250px;}
.y2fc{bottom:141.982650px;}
.y3ca{bottom:142.001850px;}
.y373{bottom:142.006800px;}
.y183{bottom:145.805100px;}
.y10d{bottom:146.941200px;}
.y243{bottom:149.083200px;}
.ycc{bottom:149.096550px;}
.y86{bottom:149.145000px;}
.y294{bottom:149.603850px;}
.y200{bottom:151.079250px;}
.y2fb{bottom:154.068150px;}
.y2fa{bottom:154.080000px;}
.y3c9{bottom:154.087350px;}
.y372{bottom:154.092300px;}
.y1e2{bottom:156.663900px;}
.y14e{bottom:157.247250px;}
.y10c{bottom:162.697200px;}
.y242{bottom:164.863200px;}
.ycb{bottom:164.876550px;}
.y85{bottom:164.925000px;}
.y47{bottom:165.477300px;}
.y293{bottom:165.647850px;}
.y2f9{bottom:166.165500px;}
.y3c8{bottom:166.172850px;}
.y371{bottom:166.177800px;}
.y3c7{bottom:166.192800px;}
.y1ff{bottom:167.411250px;}
.y182{bottom:167.949600px;}
.y1e1{bottom:169.410900px;}
.y14d{bottom:172.991250px;}
.y2f8{bottom:178.251000px;}
.y370{bottom:178.263300px;}
.y36f{bottom:178.268400px;}
.y3c6{bottom:178.278300px;}
.y10b{bottom:178.441200px;}
.y241{bottom:180.643200px;}
.yca{bottom:180.656550px;}
.y181{bottom:180.696600px;}
.y84{bottom:180.705000px;}
.y46{bottom:181.605300px;}
.y292{bottom:181.691850px;}
.y1fe{bottom:183.743250px;}
.y14c{bottom:188.735250px;}
.y2f7{bottom:190.336500px;}
.y36e{bottom:190.353900px;}
.y3c5{bottom:190.363800px;}
.y36d{bottom:190.368900px;}
.y10a{bottom:194.215200px;}
.y240{bottom:196.423200px;}
.yc9{bottom:196.436550px;}
.y83{bottom:196.485000px;}
.y45{bottom:197.721300px;}
.y291{bottom:197.735850px;}
.y1e0{bottom:197.865900px;}
.y2f6{bottom:202.422000px;}
.y2f5{bottom:202.430850px;}
.y3c4{bottom:202.449300px;}
.y36c{bottom:202.454400px;}
.y180{bottom:202.967100px;}
.y14b{bottom:204.479250px;}
.y109{bottom:209.959200px;}
.y1df{bottom:210.612900px;}
.y23f{bottom:212.203200px;}
.yc8{bottom:212.216550px;}
.y82{bottom:212.265000px;}
.y290{bottom:213.779850px;}
.y44{bottom:213.837300px;}
.y2f4{bottom:214.516350px;}
.y3c3{bottom:214.534800px;}
.y36b{bottom:214.539900px;}
.y1fd{bottom:215.071050px;}
.y14a{bottom:220.223250px;}
.y17f{bottom:225.363600px;}
.y108{bottom:225.703200px;}
.y2f3{bottom:226.601850px;}
.y36a{bottom:226.625400px;}
.y369{bottom:226.630350px;}
.y3c2{bottom:226.640250px;}
.y23e{bottom:227.983200px;}
.yc7{bottom:227.996550px;}
.y81{bottom:228.045000px;}
.y28f{bottom:229.823850px;}
.y43{bottom:229.965300px;}
.y149{bottom:235.967250px;}
.y2f2{bottom:238.687350px;}
.y2f1{bottom:238.693350px;}
.y368{bottom:238.715850px;}
.y367{bottom:238.725750px;}
.y1de{bottom:240.054900px;}
.y107{bottom:241.447200px;}
.y23d{bottom:243.763200px;}
.yc6{bottom:243.776550px;}
.y80{bottom:243.825000px;}
.y250{bottom:245.682150px;}
.y28e{bottom:245.867850px;}
.y42{bottom:246.093300px;}
.y17e{bottom:247.760100px;}
.y2f0{bottom:250.778850px;}
.y366{bottom:250.811250px;}
.y148{bottom:251.711250px;}
.y1dd{bottom:252.801900px;}
.y106{bottom:257.191200px;}
.y23c{bottom:259.543200px;}
.yc5{bottom:259.556550px;}
.y7f{bottom:259.605000px;}
.y28d{bottom:261.911850px;}
.y41{bottom:262.209300px;}
.y2ef{bottom:262.864350px;}
.y2ee{bottom:262.873200px;}
.y365{bottom:262.896750px;}
.y364{bottom:262.906800px;}
.y3c1{bottom:262.911750px;}
.y1dc{bottom:265.548900px;}
.y24f{bottom:266.052150px;}
.y147{bottom:267.455250px;}
.y17d{bottom:270.156600px;}
.y105{bottom:272.935200px;}
.y2ed{bottom:274.958700px;}
.y363{bottom:274.992300px;}
.y3c0{bottom:274.997250px;}
.y23b{bottom:275.323200px;}
.yc4{bottom:275.336550px;}
.y7e{bottom:275.385000px;}
.y28c{bottom:277.830900px;}
.y146{bottom:283.199250px;}
.y24e{bottom:286.422150px;}
.y2ec{bottom:287.044200px;}
.y362{bottom:287.077800px;}
.y3bf{bottom:287.082750px;}
.y361{bottom:287.087850px;}
.y23a{bottom:291.103200px;}
.yc3{bottom:291.116550px;}
.y7d{bottom:291.165000px;}
.y17c{bottom:292.553100px;}
.y28b{bottom:293.874900px;}
.y1db{bottom:294.350400px;}
.y145{bottom:298.943250px;}
.y2eb{bottom:299.129700px;}
.y2ea{bottom:299.135700px;}
.y3be{bottom:299.168250px;}
.y360{bottom:299.173350px;}
.y104{bottom:303.682200px;}
.y239{bottom:306.883200px;}
.yc2{bottom:306.896550px;}
.y7c{bottom:306.945000px;}
.y1da{bottom:307.097400px;}
.y39{bottom:307.149201px;}
.y3a{bottom:307.163100px;}
.y28a{bottom:309.918900px;}
.y2e9{bottom:311.221200px;}
.y35f{bottom:311.258850px;}
.y3bd{bottom:311.263800px;}
.y35e{bottom:311.273700px;}
.y144{bottom:314.687250px;}
.y17b{bottom:314.949600px;}
.y24c{bottom:317.361150px;}
.y38{bottom:321.568984px;}
.y238{bottom:322.663200px;}
.yc1{bottom:322.676550px;}
.y7b{bottom:322.725000px;}
.y2e8{bottom:323.306700px;}
.y2e7{bottom:323.309550px;}
.y3bc{bottom:323.349300px;}
.y35d{bottom:323.359200px;}
.y3bb{bottom:323.374200px;}
.y289{bottom:325.962900px;}
.y143{bottom:330.431250px;}
.y103{bottom:334.435200px;}
.y2e6{bottom:335.395050px;}
.y2e5{bottom:335.404050px;}
.y35c{bottom:335.444700px;}
.y3ba{bottom:335.459700px;}
.y37{bottom:335.988767px;}
.y17a{bottom:337.220100px;}
.y1d9{bottom:337.232400px;}
.y237{bottom:338.443200px;}
.yc0{bottom:338.456550px;}
.y7a{bottom:338.505000px;}
.y288{bottom:342.006900px;}
.y142{bottom:346.193250px;}
.y2e4{bottom:347.489550px;}
.y35b{bottom:347.530200px;}
.y35a{bottom:347.535300px;}
.y3b9{bottom:347.545200px;}
.y179{bottom:349.967100px;}
.y1d8{bottom:349.979400px;}
.y35{bottom:350.390018px;}
.y36{bottom:350.408550px;}
.y236{bottom:354.223200px;}
.ybf{bottom:354.236550px;}
.y79{bottom:354.285000px;}
.y287{bottom:358.050900px;}
.y2e3{bottom:359.575050px;}
.y359{bottom:359.620800px;}
.y3b8{bottom:359.630700px;}
.y358{bottom:359.635800px;}
.y256{bottom:360.844050px;}
.y141{bottom:361.937250px;}
.y34{bottom:364.809801px;}
.y235{bottom:370.003200px;}
.ybe{bottom:370.016550px;}
.y234{bottom:370.052400px;}
.y78{bottom:370.065000px;}
.y102{bottom:371.535000px;}
.y2e2{bottom:371.660550px;}
.y3b7{bottom:371.716200px;}
.y357{bottom:371.721300px;}
.y178{bottom:372.237600px;}
.y286{bottom:374.094900px;}
.y140{bottom:377.681250px;}
.y1d7{bottom:379.085400px;}
.y33{bottom:379.229584px;}
.y2e1{bottom:383.754900px;}
.y3b6{bottom:383.801700px;}
.y356{bottom:383.806800px;}
.y3b5{bottom:383.811750px;}
.ybd{bottom:385.796550px;}
.y233{bottom:385.832400px;}
.y77{bottom:385.845000px;}
.y101{bottom:387.279000px;}
.y285{bottom:390.138900px;}
.y1d6{bottom:391.832400px;}
.y13f{bottom:393.425250px;}
.y13e{bottom:393.443250px;}
.y32{bottom:393.649367px;}
.y177{bottom:394.508100px;}
.y2e0{bottom:395.840400px;}
.y355{bottom:395.892300px;}
.y3b4{bottom:395.897250px;}
.y40{bottom:396.549518px;}
.ybc{bottom:401.576550px;}
.y232{bottom:401.612400px;}
.y76{bottom:401.625000px;}
.y100{bottom:403.023000px;}
.y255{bottom:403.096050px;}
.y284{bottom:406.182900px;}
.y176{bottom:407.255100px;}
.y2df{bottom:407.925900px;}
.y2de{bottom:407.928900px;}
.y3b3{bottom:407.982750px;}
.y354{bottom:408.002700px;}
.y31{bottom:408.059689px;}
.y3f{bottom:408.793551px;}
.y13d{bottom:409.187250px;}
.ybb{bottom:417.356550px;}
.y231{bottom:417.392400px;}
.y75{bottom:417.405000px;}
.yff{bottom:418.767000px;}
.y2dd{bottom:420.014400px;}
.y2dc{bottom:420.020250px;}
.y353{bottom:420.088200px;}
.y3e{bottom:421.037584px;}
.y283{bottom:422.226900px;}
.y30{bottom:422.479472px;}
.y1e5{bottom:423.164400px;}
.y13c{bottom:424.931250px;}
.y175{bottom:429.399600px;}
.y2db{bottom:432.105750px;}
.y352{bottom:432.173700px;}
.yba{bottom:433.136550px;}
.y230{bottom:433.172400px;}
.y74{bottom:433.185000px;}
.y3d{bottom:433.281617px;}
.yfe{bottom:434.511000px;}
.y2f{bottom:436.899255px;}
.y24d{bottom:437.167500px;}
.y282{bottom:438.270900px;}
.y13b{bottom:440.675250px;}
.y174{bottom:442.146600px;}
.y254{bottom:444.140550px;}
.y2da{bottom:444.191250px;}
.y2d9{bottom:444.194250px;}
.y351{bottom:444.259200px;}
.y3c{bottom:445.525650px;}
.yb9{bottom:448.916550px;}
.y22f{bottom:448.952400px;}
.y73{bottom:448.965000px;}
.yfd{bottom:450.255000px;}
.y1d5{bottom:450.339750px;}
.y2e{bottom:451.319038px;}
.y281{bottom:454.314900px;}
.y2d8{bottom:456.279750px;}
.y2d7{bottom:456.297450px;}
.y350{bottom:456.344700px;}
.y34f{bottom:456.349650px;}
.y1a9{bottom:457.199250px;}
.y3b{bottom:459.088800px;}
.y173{bottom:464.417100px;}
.yb8{bottom:464.696550px;}
.y22e{bottom:464.732400px;}
.y72{bottom:464.745000px;}
.yfc{bottom:465.999000px;}
.y1d4{bottom:466.083750px;}
.y2d6{bottom:468.382950px;}
.y34e{bottom:468.435150px;}
.y3b2{bottom:468.445200px;}
.y34d{bottom:468.450150px;}
.y280{bottom:470.358900px;}
.y13a{bottom:471.425250px;}
.y1a8{bottom:472.943250px;}
.y2d{bottom:479.789700px;}
.y2d5{bottom:480.468450px;}
.yb7{bottom:480.476550px;}
.y22d{bottom:480.512400px;}
.y71{bottom:480.525000px;}
.y3b1{bottom:480.530700px;}
.y34c{bottom:480.535650px;}
.yfb{bottom:481.743000px;}
.y1d3{bottom:481.827750px;}
.y253{bottom:485.710050px;}
.y27f{bottom:486.402900px;}
.y172{bottom:486.813600px;}
.y1a7{bottom:488.687250px;}
.y2d4{bottom:492.553950px;}
.y3b0{bottom:492.616200px;}
.y34b{bottom:492.621150px;}
.yb6{bottom:496.256550px;}
.y22c{bottom:496.292400px;}
.y70{bottom:496.305000px;}
.yfa{bottom:497.487000px;}
.y1d2{bottom:497.571750px;}
.y27e{bottom:502.446900px;}
.y1a6{bottom:504.431250px;}
.y2d3{bottom:504.639450px;}
.y34a{bottom:504.706650px;}
.y3af{bottom:504.721650px;}
.y349{bottom:504.726600px;}
.y139{bottom:508.471200px;}
.y171{bottom:509.210100px;}
.yb5{bottom:512.036550px;}
.y22b{bottom:512.072400px;}
.y6f{bottom:512.085000px;}
.yf9{bottom:513.231000px;}
.y1d1{bottom:513.315750px;}
.y2c{bottom:514.067400px;}
.y2d2{bottom:516.724950px;}
.y3ae{bottom:516.807150px;}
.y348{bottom:516.812100px;}
.y27d{bottom:518.490900px;}
.y1a5{bottom:520.175250px;}
.y1a4{bottom:520.181250px;}
.y138{bottom:524.215200px;}
.y252{bottom:527.017050px;}
.yb4{bottom:527.816550px;}
.yb3{bottom:527.817900px;}
.y22a{bottom:527.852400px;}
.y6e{bottom:527.865000px;}
.y2d1{bottom:528.810450px;}
.y2d0{bottom:528.822300px;}
.y3ad{bottom:528.892650px;}
.y347{bottom:528.897600px;}
.yf8{bottom:528.975000px;}
.y1d0{bottom:529.059750px;}
.y170{bottom:531.606600px;}
.y2b{bottom:532.069650px;}
.y27c{bottom:534.534900px;}
.y1a3{bottom:535.931250px;}
.y137{bottom:539.959200px;}
.y258{bottom:540.499050px;}
.y2cf{bottom:540.907800px;}
.y3ac{bottom:540.978150px;}
.y346{bottom:540.983100px;}
.y3ab{bottom:540.998100px;}
.yb2{bottom:543.597900px;}
.y229{bottom:543.632400px;}
.y6d{bottom:543.645000px;}
.yf7{bottom:544.719000px;}
.y1cf{bottom:544.803750px;}
.y27b{bottom:550.578900px;}
.y1a2{bottom:551.675250px;}
.y2ce{bottom:552.993300px;}
.y345{bottom:553.068600px;}
.y3aa{bottom:553.083600px;}
.y344{bottom:553.093650px;}
.y16f{bottom:554.003100px;}
.y136{bottom:555.703200px;}
.yb1{bottom:559.379250px;}
.yb0{bottom:559.381950px;}
.y228{bottom:559.412400px;}
.y6c{bottom:559.425000px;}
.y257{bottom:560.375550px;}
.yf6{bottom:560.463000px;}
.y1ce{bottom:560.547750px;}
.y2cd{bottom:565.078800px;}
.y3a9{bottom:565.169100px;}
.y343{bottom:565.179150px;}
.y27a{bottom:566.622900px;}
.y251{bottom:568.051050px;}
.y135{bottom:571.447200px;}
.yaf{bottom:575.161950px;}
.y227{bottom:575.192400px;}
.y6b{bottom:575.205000px;}
.y2a{bottom:575.581350px;}
.y29{bottom:575.590706px;}
.yf5{bottom:576.207000px;}
.y1cd{bottom:576.291750px;}
.y16e{bottom:576.399600px;}
.y2cc{bottom:577.164300px;}
.y2cb{bottom:577.167300px;}
.y3a8{bottom:577.254600px;}
.y342{bottom:577.264650px;}
.y1a1{bottom:582.422250px;}
.y279{bottom:582.666900px;}
.y1e{bottom:584.285768px;}
.y134{bottom:587.191200px;}
.y2ca{bottom:589.252800px;}
.y2c9{bottom:589.258800px;}
.y3a7{bottom:589.340100px;}
.y341{bottom:589.350150px;}
.y3a6{bottom:589.355100px;}
.y28{bottom:589.847737px;}
.yae{bottom:590.941950px;}
.yad{bottom:590.944650px;}
.y226{bottom:590.972400px;}
.y6a{bottom:590.985000px;}
.y24a{bottom:591.020850px;}
.y24b{bottom:591.023550px;}
.yf4{bottom:591.951000px;}
.y1cc{bottom:592.035750px;}
.y1cb{bottom:592.041750px;}
.y1d{bottom:596.529801px;}
.y278{bottom:598.710900px;}
.y16d{bottom:598.796100px;}
.y2c8{bottom:601.344300px;}
.y340{bottom:601.435650px;}
.y3a5{bottom:601.440600px;}
.y133{bottom:602.935200px;}
.y27{bottom:604.104769px;}
.yac{bottom:606.724650px;}
.y225{bottom:606.752400px;}
.y69{bottom:606.765000px;}
.yf3{bottom:607.695000px;}
.yf2{bottom:607.755000px;}
.y1ca{bottom:607.785750px;}
.y249{bottom:607.789350px;}
.y1c9{bottom:607.791750px;}
.y1c{bottom:608.773834px;}
.y1a0{bottom:613.175250px;}
.y2c7{bottom:613.429800px;}
.y2c6{bottom:613.432650px;}
.y33f{bottom:613.521150px;}
.y3a4{bottom:613.526100px;}
.y33e{bottom:613.531050px;}
.y277{bottom:614.754900px;}
.y26{bottom:618.361800px;}
.y25{bottom:618.374324px;}
.y1b{bottom:621.017867px;}
.y16c{bottom:621.192600px;}
.yab{bottom:622.504650px;}
.y224{bottom:622.532400px;}
.y68{bottom:622.545000px;}
.yaa{bottom:622.629000px;}
.yf1{bottom:623.499000px;}
.y1c8{bottom:623.535750px;}
.y1c7{bottom:623.673900px;}
.y2c5{bottom:625.518150px;}
.y2c4{bottom:625.527150px;}
.y3a3{bottom:625.611600px;}
.y33d{bottom:625.616550px;}
.y1fc{bottom:629.211750px;}
.y276{bottom:630.798900px;}
.y24{bottom:632.631356px;}
.y1a{bottom:633.261900px;}
.y132{bottom:633.685200px;}
.y2c3{bottom:637.612650px;}
.y33c{bottom:637.702050px;}
.y33b{bottom:637.707150px;}
.y223{bottom:638.312400px;}
.y67{bottom:638.325000px;}
.ya9{bottom:638.409000px;}
.yf0{bottom:639.243000px;}
.y1c6{bottom:639.417900px;}
.y16b{bottom:643.589100px;}
.y1fb{bottom:646.647750px;}
.y19{bottom:646.825200px;}
.y275{bottom:646.842900px;}
.y23{bottom:646.888387px;}
.y2c2{bottom:649.698150px;}
.y33a{bottom:649.792650px;}
.y3a2{bottom:649.797600px;}
.y339{bottom:649.802550px;}
.y19f{bottom:650.209200px;}
.y222{bottom:654.092400px;}
.y66{bottom:654.105000px;}
.ya8{bottom:654.189000px;}
.yef{bottom:654.987000px;}
.y1c5{bottom:655.161900px;}
.y22{bottom:661.145419px;}
.y2c1{bottom:661.783650px;}
.y2c0{bottom:661.795500px;}
.y3a1{bottom:661.883100px;}
.y338{bottom:661.888050px;}
.y274{bottom:662.886900px;}
.y1fa{bottom:664.083750px;}
.y19e{bottom:665.953200px;}
.y16a{bottom:665.985600px;}
.y221{bottom:669.872400px;}
.y65{bottom:669.885000px;}
.ya7{bottom:669.969000px;}
.yee{bottom:670.731000px;}
.y131{bottom:670.749000px;}
.y1c4{bottom:670.905900px;}
.y2bf{bottom:673.881000px;}
.y337{bottom:673.973550px;}
.y336{bottom:673.978650px;}
.y3a0{bottom:673.983600px;}
.y21{bottom:675.410026px;}
.y273{bottom:678.855900px;}
.y18{bottom:679.820417px;}
.y1f9{bottom:681.519750px;}
.y19d{bottom:681.697200px;}
.y220{bottom:685.652400px;}
.y64{bottom:685.665000px;}
.ya6{bottom:685.749000px;}
.y2be{bottom:685.966500px;}
.y335{bottom:686.064150px;}
.y39f{bottom:686.069100px;}
.y334{bottom:686.079000px;}
.yed{bottom:686.475000px;}
.y130{bottom:686.493000px;}
.y1c3{bottom:686.649900px;}
.y169{bottom:688.382100px;}
.y20{bottom:689.667058px;}
.y17{bottom:692.064450px;}
.y272{bottom:694.899900px;}
.y19c{bottom:697.441200px;}
.y2bd{bottom:698.052000px;}
.y39e{bottom:698.154600px;}
.y39d{bottom:698.159550px;}
.y333{bottom:698.164500px;}
.y1f8{bottom:698.949900px;}
.y21f{bottom:701.432400px;}
.y63{bottom:701.445000px;}
.ya5{bottom:701.529000px;}
.yec{bottom:702.219000px;}
.y12f{bottom:702.237000px;}
.y1c2{bottom:702.393900px;}
.y1f{bottom:703.924089px;}
.y16{bottom:704.464650px;}
.y2bc{bottom:710.137500px;}
.y2bb{bottom:710.152200px;}
.y39c{bottom:710.245050px;}
.y332{bottom:710.250000px;}
.y39b{bottom:710.265000px;}
.y168{bottom:710.652600px;}
.y271{bottom:710.943900px;}
.y19b{bottom:713.185200px;}
.y19a{bottom:713.197200px;}
.y1f7{bottom:716.385900px;}
.y21e{bottom:717.212400px;}
.y62{bottom:717.225000px;}
.ya4{bottom:717.309000px;}
.yeb{bottom:717.963000px;}
.y12e{bottom:717.981000px;}
.y1c1{bottom:718.137900px;}
.y2ba{bottom:722.237700px;}
.y331{bottom:722.335500px;}
.y39a{bottom:722.350500px;}
.y167{bottom:723.399600px;}
.y270{bottom:726.987900px;}
.y199{bottom:728.941200px;}
.y15{bottom:732.242850px;}
.y21d{bottom:732.992400px;}
.y61{bottom:733.005000px;}
.ya3{bottom:733.089000px;}
.yea{bottom:733.707000px;}
.y12d{bottom:733.725000px;}
.y1c0{bottom:733.881900px;}
.y2b9{bottom:734.323200px;}
.y330{bottom:734.431050px;}
.y399{bottom:734.436000px;}
.y26f{bottom:743.031900px;}
.y198{bottom:744.685200px;}
.y197{bottom:744.691200px;}
.y166{bottom:745.670100px;}
.y2b8{bottom:746.408700px;}
.y32f{bottom:746.516550px;}
.y398{bottom:746.521500px;}
.y32e{bottom:746.526450px;}
.y21c{bottom:748.772400px;}
.y60{bottom:748.785000px;}
.ya2{bottom:748.869000px;}
.ye9{bottom:749.451000px;}
.y12c{bottom:749.469000px;}
.y1bf{bottom:749.625900px;}
.y1f6{bottom:756.806550px;}
.y2b7{bottom:758.494200px;}
.y397{bottom:758.607000px;}
.y32d{bottom:758.611950px;}
.y396{bottom:758.627100px;}
.y26e{bottom:759.075900px;}
.y196{bottom:760.441200px;}
.y21b{bottom:764.552400px;}
.y5f{bottom:764.565000px;}
.ya1{bottom:764.649000px;}
.y12b{bottom:765.213000px;}
.ye8{bottom:765.321000px;}
.y1be{bottom:765.369900px;}
.y1f5{bottom:766.063050px;}
.y165{bottom:768.066600px;}
.y2b6{bottom:770.579700px;}
.y2b5{bottom:770.591550px;}
.y32c{bottom:770.697450px;}
.y32b{bottom:770.702550px;}
.y395{bottom:770.712600px;}
.y26d{bottom:775.119900px;}
.y195{bottom:776.185200px;}
.y194{bottom:776.197200px;}
.y1f4{bottom:778.810050px;}
.y21a{bottom:780.332400px;}
.y5e{bottom:780.345000px;}
.ya0{bottom:780.429000px;}
.y12a{bottom:780.957000px;}
.ye7{bottom:781.065000px;}
.y1bd{bottom:781.113900px;}
.y2b4{bottom:782.677050px;}
.y32a{bottom:782.788050px;}
.y329{bottom:782.793000px;}
.y394{bottom:782.798100px;}
.y164{bottom:790.463100px;}
.y26c{bottom:791.163900px;}
.y193{bottom:791.941200px;}
.y2b3{bottom:794.762550px;}
.y328{bottom:794.878500px;}
.y327{bottom:794.883600px;}
.y219{bottom:796.112400px;}
.y5d{bottom:796.125000px;}
.y9f{bottom:796.209000px;}
.y129{bottom:796.701000px;}
.ye6{bottom:796.809000px;}
.y1bc{bottom:796.857900px;}
.y10{bottom:805.227933px;}
.y12{bottom:805.228500px;}
.y2b2{bottom:806.848050px;}
.y326{bottom:806.969100px;}
.y325{bottom:806.988900px;}
.y26b{bottom:807.207900px;}
.y192{bottom:807.685200px;}
.y191{bottom:807.697200px;}
.y11{bottom:808.583550px;}
.y218{bottom:811.892400px;}
.y5c{bottom:811.905000px;}
.y9e{bottom:811.989000px;}
.y128{bottom:812.445000px;}
.y127{bottom:812.469000px;}
.ye5{bottom:812.553000px;}
.y1bb{bottom:812.601900px;}
.y163{bottom:812.859600px;}
.y1f1{bottom:814.466850px;}
.yd{bottom:818.727933px;}
.yf{bottom:818.728500px;}
.y2b1{bottom:818.933550px;}
.y2b0{bottom:818.936550px;}
.y324{bottom:819.074400px;}
.ye{bottom:822.083550px;}
.y26a{bottom:823.251900px;}
.y190{bottom:823.441200px;}
.y217{bottom:827.672400px;}
.y5b{bottom:827.685000px;}
.y9d{bottom:827.769000px;}
.y126{bottom:828.213000px;}
.ye4{bottom:828.297000px;}
.y1ba{bottom:828.345900px;}
.y2af{bottom:831.022050px;}
.y2ae{bottom:831.033900px;}
.y323{bottom:831.159900px;}
.yc{bottom:832.228500px;}
.y162{bottom:835.256100px;}
.yb{bottom:835.583550px;}
.y18f{bottom:839.191200px;}
.y269{bottom:839.295900px;}
.y2ad{bottom:843.119400px;}
.y322{bottom:843.245400px;}
.y216{bottom:843.452400px;}
.y5a{bottom:843.465000px;}
.y9c{bottom:843.549000px;}
.y125{bottom:843.957000px;}
.ye3{bottom:844.041000px;}
.y1b9{bottom:844.089900px;}
.y1f0{bottom:851.426850px;}
.y18e{bottom:854.935200px;}
.y2ac{bottom:855.204900px;}
.y321{bottom:855.330900px;}
.y268{bottom:855.339900px;}
.y320{bottom:855.340950px;}
.y393{bottom:855.351000px;}
.ya{bottom:855.834150px;}
.y161{bottom:857.652600px;}
.y215{bottom:859.232400px;}
.y59{bottom:859.245000px;}
.y9b{bottom:859.329000px;}
.y124{bottom:859.701000px;}
.ye2{bottom:859.785000px;}
.y1b8{bottom:859.833900px;}
.y2ab{bottom:867.290400px;}
.y31f{bottom:867.426450px;}
.y392{bottom:867.436500px;}
.y267{bottom:871.383900px;}
.y9{bottom:873.834150px;}
.y214{bottom:875.012400px;}
.y58{bottom:875.025000px;}
.y9a{bottom:875.109000px;}
.y123{bottom:875.445000px;}
.y122{bottom:875.511000px;}
.ye1{bottom:875.529000px;}
.y1b7{bottom:875.577900px;}
.y2aa{bottom:879.375900px;}
.y2a9{bottom:879.390750px;}
.y31e{bottom:879.511950px;}
.y31d{bottom:879.517050px;}
.y391{bottom:879.522000px;}
.y160{bottom:879.923100px;}
.y18d{bottom:885.685200px;}
.y266{bottom:887.427900px;}
.y1ef{bottom:888.974850px;}
.y213{bottom:890.792400px;}
.y57{bottom:890.805000px;}
.y99{bottom:890.889000px;}
.y121{bottom:891.255000px;}
.ye0{bottom:891.273000px;}
.y1b6{bottom:891.321900px;}
.y2a8{bottom:891.476250px;}
.y31c{bottom:891.602550px;}
.y390{bottom:891.607500px;}
.y31b{bottom:891.617400px;}
.y15f{bottom:892.670100px;}
.y265{bottom:903.471900px;}
.y2a7{bottom:903.561750px;}
.y38f{bottom:903.693000px;}
.y31a{bottom:903.702900px;}
.y38e{bottom:903.712950px;}
.y8{bottom:904.590000px;}
.y212{bottom:906.572400px;}
.y56{bottom:906.585000px;}
.y98{bottom:906.669000px;}
.y120{bottom:906.999000px;}
.ydf{bottom:907.017000px;}
.y1b5{bottom:907.065900px;}
.y15e{bottom:914.940600px;}
.y2a6{bottom:915.647250px;}
.y319{bottom:915.788400px;}
.y38d{bottom:915.798450px;}
.y264{bottom:919.500900px;}
.y211{bottom:922.352400px;}
.y55{bottom:922.365000px;}
.y97{bottom:922.449000px;}
.y18c{bottom:922.701000px;}
.y11f{bottom:922.743000px;}
.yde{bottom:922.761000px;}
.y1b4{bottom:922.809900px;}
.y2a5{bottom:927.732750px;}
.y318{bottom:927.873900px;}
.y38c{bottom:927.883950px;}
.y7{bottom:929.886300px;}
.y1ee{bottom:933.221850px;}
.y263{bottom:935.544900px;}
.y15d{bottom:937.211100px;}
.y210{bottom:938.132400px;}
.y54{bottom:938.145000px;}
.y96{bottom:938.229000px;}
.y18b{bottom:938.451000px;}
.y11e{bottom:938.487000px;}
.ydd{bottom:938.505000px;}
.y1b3{bottom:938.553900px;}
.y2a4{bottom:939.818250px;}
.y2a3{bottom:939.830100px;}
.y38b{bottom:939.969450px;}
.y317{bottom:939.979500px;}
.y15c{bottom:949.958100px;}
.y262{bottom:951.588900px;}
.y2a2{bottom:951.915600px;}
.y38a{bottom:952.054950px;}
.y389{bottom:952.059900px;}
.y316{bottom:952.065000px;}
.y20f{bottom:953.912400px;}
.y53{bottom:953.925000px;}
.y95{bottom:954.009000px;}
.y11d{bottom:954.231000px;}
.ydc{bottom:954.249000px;}
.y1b2{bottom:954.297900px;}
.y2a1{bottom:964.001100px;}
.y388{bottom:964.145400px;}
.y315{bottom:964.150500px;}
.y261{bottom:967.617900px;}
.y20e{bottom:969.692400px;}
.y52{bottom:969.705000px;}
.y94{bottom:969.789000px;}
.y11c{bottom:969.975000px;}
.ydb{bottom:969.993000px;}
.y1b1{bottom:970.041900px;}
.y15b{bottom:972.102600px;}
.y2a0{bottom:976.086600px;}
.y314{bottom:976.236000px;}
.y313{bottom:976.245900px;}
.y387{bottom:976.250850px;}
.y1ed{bottom:976.891350px;}
.y3df{bottom:977.139300px;}
.y3e0{bottom:977.140800px;}
.y260{bottom:983.661900px;}
.y15a{bottom:984.849600px;}
.y20d{bottom:985.472400px;}
.y51{bottom:985.485000px;}
.y93{bottom:985.569000px;}
.y11b{bottom:985.719000px;}
.yda{bottom:985.737000px;}
.y1b0{bottom:985.803900px;}
.y29f{bottom:988.172100px;}
.y29e{bottom:988.174950px;}
.y312{bottom:988.331400px;}
.y386{bottom:988.336350px;}
.y13{bottom:988.653600px;}
.y3dd{bottom:989.137800px;}
.y3de{bottom:989.140800px;}
.y25f{bottom:999.705900px;}
.y29d{bottom:1000.260450px;}
.y311{bottom:1000.416900px;}
.y310{bottom:1000.421850px;}
.y3dc{bottom:1001.139300px;}
.y20c{bottom:1001.252400px;}
.y50{bottom:1001.265000px;}
.y92{bottom:1001.349000px;}
.y11a{bottom:1001.463000px;}
.yd9{bottom:1001.481000px;}
.y1af{bottom:1001.547900px;}
.y159{bottom:1007.120100px;}
.y30f{bottom:1012.507350px;}
.y30e{bottom:1012.512300px;}
.y385{bottom:1012.527300px;}
.y3da{bottom:1013.139300px;}
.y3db{bottom:1013.140800px;}
.y25e{bottom:1015.724850px;}
.y1ec{bottom:1015.972350px;}
.y20b{bottom:1017.032400px;}
.y4f{bottom:1017.045000px;}
.y91{bottom:1017.129000px;}
.y119{bottom:1017.207000px;}
.yd8{bottom:1017.225000px;}
.y1ae{bottom:1017.291900px;}
.y30d{bottom:1024.597800px;}
.y30c{bottom:1024.607850px;}
.y384{bottom:1024.612800px;}
.y3d8{bottom:1025.133300px;}
.y3e3{bottom:1025.139300px;}
.y3d9{bottom:1025.140800px;}
.y29c{bottom:1027.348950px;}
.y158{bottom:1029.516600px;}
.y25d{bottom:1031.768850px;}
.y1{bottom:1031.809650px;}
.y20a{bottom:1032.812400px;}
.y4e{bottom:1032.825000px;}
.y90{bottom:1032.909000px;}
.y118{bottom:1032.951000px;}
.yd7{bottom:1032.969000px;}
.y1ad{bottom:1033.047900px;}
.y30b{bottom:1036.693350px;}
.y383{bottom:1036.698300px;}
.y3d7{bottom:1037.134800px;}
.y3e2{bottom:1037.140800px;}
.y1eb{bottom:1046.275950px;}
.y1ea{bottom:1046.278950px;}
.y25c{bottom:1047.812850px;}
.y209{bottom:1048.592400px;}
.y4d{bottom:1048.605000px;}
.y8f{bottom:1048.689000px;}
.y117{bottom:1048.695000px;}
.y116{bottom:1048.701000px;}
.yd6{bottom:1048.713000px;}
.y30a{bottom:1048.778850px;}
.y382{bottom:1048.783800px;}
.y1ac{bottom:1048.791900px;}
.y309{bottom:1048.793850px;}
.y3d6{bottom:1049.136300px;}
.y157{bottom:1051.913100px;}
.y1e9{bottom:1059.025950px;}
.y381{bottom:1060.869300px;}
.y380{bottom:1060.874250px;}
.y308{bottom:1060.879350px;}
.y3d5{bottom:1061.137800px;}
.y25b{bottom:1063.856850px;}
.y208{bottom:1064.372400px;}
.y4c{bottom:1064.385000px;}
.y115{bottom:1064.445000px;}
.y29b{bottom:1064.447250px;}
.yd5{bottom:1064.457000px;}
.y8e{bottom:1064.469000px;}
.y114{bottom:1064.485200px;}
.y1ab{bottom:1064.535900px;}
.y37f{bottom:1072.959750px;}
.y307{bottom:1072.964850px;}
.y37e{bottom:1072.970400px;}
.y3d4{bottom:1073.139300px;}
.y156{bottom:1074.311400px;}
.y25a{bottom:1079.900850px;}
.y207{bottom:1080.152400px;}
.y4b{bottom:1080.165000px;}
.yd4{bottom:1080.201000px;}
.y113{bottom:1080.229200px;}
.y8d{bottom:1080.249000px;}
.y1f3{bottom:1083.287850px;}
.y306{bottom:1085.050350px;}
.y305{bottom:1085.055300px;}
.y37d{bottom:1085.055900px;}
.y3d2{bottom:1085.139300px;}
.y3d3{bottom:1085.140800px;}
.y29a{bottom:1095.285750px;}
.y1aa{bottom:1095.285900px;}
.y206{bottom:1095.932400px;}
.y259{bottom:1095.944850px;}
.y4a{bottom:1095.945000px;}
.y112{bottom:1095.973200px;}
.y8c{bottom:1096.029000px;}
.y187{bottom:1097.090400px;}
.y1f2{bottom:1097.095350px;}
.y304{bottom:1097.140800px;}
.y37c{bottom:1097.141400px;}
.y3e1{bottom:1097.145300px;}
.y186{bottom:1097.178600px;}
.y2{bottom:1114.487400px;}
.yd3{bottom:1123.674150px;}
.yd2{bottom:1126.920900px;}
.y48{bottom:1126.971000px;}
.y49{bottom:1127.983800px;}
.h17{height:16.030664px;}
.ha{height:23.476150px;}
.h1d{height:27.342000px;}
.h15{height:27.496822px;}
.hc{height:35.287288px;}
.h4{height:38.376000px;}
.h5{height:38.383800px;}
.h6{height:38.967986px;}
.h3{height:39.655397px;}
.hb{height:40.267109px;}
.he{height:40.875754px;}
.h19{height:41.328000px;}
.hf{height:41.506346px;}
.h1a{height:41.965562px;}
.hd{height:42.705994px;}
.h13{height:42.743838px;}
.h18{height:43.044000px;}
.h10{height:43.364758px;}
.h14{height:47.232000px;}
.h1e{height:47.266800px;}
.h21{height:47.292000px;}
.h1f{height:47.316600px;}
.h20{height:47.332200px;}
.h24{height:47.392200px;}
.h22{height:47.532000px;}
.h23{height:47.731800px;}
.h16{height:47.960613px;}
.h11{height:53.172000px;}
.h12{height:53.181000px;}
.h9{height:59.040000px;}
.h1b{height:66.822000px;}
.h7{height:82.971864px;}
.h8{height:82.972464px;}
.h2{height:88.251209px;}
.h1c{height:92.316000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:42.519600px;}
.x40{left:48.519600px;}
.x76{left:49.815600px;}
.x25{left:59.523600px;}
.x9b{left:63.779550px;}
.x75{left:65.031300px;}
.x49{left:67.446150px;}
.x7c{left:68.979150px;}
.x4a{left:70.018650px;}
.x3{left:72.283500px;}
.xa5{left:76.358400px;}
.x62{left:78.283500px;}
.xe{left:79.403592px;}
.x17{left:80.787450px;}
.x4b{left:83.920500px;}
.x21{left:90.102750px;}
.xc2{left:93.543300px;}
.x68{left:94.795200px;}
.x57{left:99.400350px;}
.xb0{left:100.780650px;}
.x7f{left:105.028500px;}
.x80{left:107.464500px;}
.x9c{left:111.879150px;}
.x58{left:114.928200px;}
.xaa{left:117.030750px;}
.xa{left:120.220350px;}
.xb{left:123.262950px;}
.x9e{left:124.482150px;}
.xad{left:125.646300px;}
.x4c{left:127.021950px;}
.x69{left:128.604750px;}
.x4d{left:131.274300px;}
.xa0{left:134.590350px;}
.xc4{left:152.195850px;}
.x7d{left:154.992750px;}
.x6{left:157.919250px;}
.x7a{left:160.463700px;}
.xa3{left:165.496050px;}
.x7b{left:166.774200px;}
.xc3{left:168.117600px;}
.xc5{left:177.237600px;}
.x4e{left:178.481700px;}
.xa7{left:181.494150px;}
.x4f{left:184.708050px;}
.x9d{left:187.614300px;}
.x4{left:190.416750px;}
.x77{left:197.043300px;}
.x13{left:199.685919px;}
.x71{left:201.735600px;}
.x56{left:206.497800px;}
.x18{left:209.591700px;}
.x72{left:211.878450px;}
.xf{left:216.800100px;}
.x10{left:219.613500px;}
.x50{left:223.704600px;}
.x8{left:227.384250px;}
.x51{left:229.931100px;}
.xa2{left:232.732650px;}
.x32{left:235.661700px;}
.x5a{left:238.077900px;}
.xae{left:246.028500px;}
.xb1{left:249.582300px;}
.x19{left:252.457350px;}
.xa4{left:257.492700px;}
.x5b{left:259.709100px;}
.x6c{left:264.703650px;}
.x52{left:271.993800px;}
.x5c{left:274.996950px;}
.x53{left:278.220150px;}
.x2d{left:280.586400px;}
.xa9{left:284.437800px;}
.x9f{left:286.886850px;}
.x24{left:291.582750px;}
.xa6{left:297.390600px;}
.x54{left:300.515700px;}
.x59{left:301.632750px;}
.x1{left:302.776650px;}
.x9{left:304.839600px;}
.x55{left:316.043550px;}
.x5{left:318.149100px;}
.x73{left:320.371200px;}
.x47{left:323.536650px;}
.x74{left:326.681550px;}
.x14{left:328.200750px;}
.x6a{left:329.717700px;}
.x15{left:331.290300px;}
.x7{left:332.400479px;}
.x48{left:333.795000px;}
.x6b{left:341.057550px;}
.x1c{left:345.071850px;}
.x16{left:350.406600px;}
.x46{left:356.061150px;}
.x2{left:358.168650px;}
.x7e{left:362.555700px;}
.xab{left:366.504000px;}
.xa8{left:370.792200px;}
.xac{left:371.978250px;}
.xa1{left:378.221550px;}
.xaf{left:397.667100px;}
.x30{left:400.626450px;}
.x31{left:416.394300px;}
.x6d{left:426.146550px;}
.x1f{left:431.697300px;}
.x41{left:435.412950px;}
.x20{left:445.954200px;}
.x78{left:451.016550px;}
.x26{left:463.455600px;}
.x79{left:467.264400px;}
.x22{left:477.030750px;}
.xb5{left:480.295350px;}
.xc{left:489.475500px;}
.xd{left:492.876300px;}
.x2b{left:493.915800px;}
.x82{left:497.482950px;}
.x37{left:502.938600px;}
.x8f{left:510.059250px;}
.xc1{left:513.291750px;}
.xb9{left:515.148150px;}
.x38{left:517.614300px;}
.xb4{left:519.313050px;}
.xb6{left:520.437750px;}
.x85{left:528.297900px;}
.x63{left:530.031150px;}
.x87{left:532.307250px;}
.xb3{left:540.239250px;}
.x92{left:547.489800px;}
.x8d{left:551.407500px;}
.x5d{left:552.941550px;}
.x60{left:558.748500px;}
.x28{left:561.460350px;}
.x61{left:565.804350px;}
.x42{left:567.372900px;}
.x5e{left:568.709400px;}
.x3c{left:577.699500px;}
.x33{left:580.309350px;}
.x3d{left:584.851350px;}
.xb8{left:589.213800px;}
.x8e{left:590.879850px;}
.x34{left:594.985200px;}
.xb2{left:599.616450px;}
.xc7{left:603.913350px;}
.x81{left:606.258000px;}
.x11{left:609.230550px;}
.x6e{left:610.819500px;}
.x12{left:612.725400px;}
.x6f{left:617.129850px;}
.xc6{left:619.078650px;}
.x29{left:621.951300px;}
.x2e{left:624.697500px;}
.x35{left:629.485050px;}
.x2f{left:631.802850px;}
.x93{left:642.531300px;}
.x36{left:644.160900px;}
.x89{left:659.300100px;}
.x97{left:665.318250px;}
.x5f{left:666.641400px;}
.x95{left:668.298300px;}
.x88{left:676.465800px;}
.x1a{left:683.000850px;}
.x70{left:686.554800px;}
.x9a{left:688.335150px;}
.x3a{left:690.313500px;}
.x3e{left:692.748150px;}
.xbb{left:696.259950px;}
.x1b{left:697.474800px;}
.xbe{left:698.529900px;}
.x3f{left:699.900000px;}
.x3b{left:706.081350px;}
.x91{left:710.413500px;}
.xba{left:714.533400px;}
.x8b{left:717.660600px;}
.x83{left:720.862200px;}
.x99{left:724.295850px;}
.xc0{left:730.615500px;}
.xbf{left:732.845550px;}
.x64{left:735.618300px;}
.x90{left:737.148900px;}
.x67{left:739.838850px;}
.x86{left:742.905900px;}
.xbd{left:750.865050px;}
.x43{left:755.397300px;}
.x65{left:756.702000px;}
.x66{left:762.991350px;}
.x44{left:764.280150px;}
.x1d{left:765.619950px;}
.xbc{left:766.990200px;}
.x27{left:769.390800px;}
.x45{left:772.564650px;}
.x1e{left:779.876700px;}
.x2a{left:782.956800px;}
.x98{left:784.358100px;}
.x94{left:786.224250px;}
.x8c{left:800.204850px;}
.xb7{left:801.593850px;}
.x84{left:802.989600px;}
.x96{left:810.122250px;}
.x39{left:824.069250px;}
.x8a{left:831.368100px;}
.x2c{left:838.927950px;}
@media print{
.vb{vertical-align:-44.688000pt;}
.v2{vertical-align:-24.958933pt;}
.v5{vertical-align:-18.640000pt;}
.v6{vertical-align:-14.656000pt;}
.vc{vertical-align:-13.763733pt;}
.v4{vertical-align:-12.873338pt;}
.v1{vertical-align:-11.537067pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.432000pt;}
.v9{vertical-align:14.208000pt;}
.v3{vertical-align:17.760000pt;}
.v7{vertical-align:22.661333pt;}
.va{vertical-align:45.322667pt;}
.ls11{letter-spacing:-4.266667pt;}
.ls22{letter-spacing:-3.733333pt;}
.ls39{letter-spacing:-3.626667pt;}
.ls20{letter-spacing:-3.621333pt;}
.ls21{letter-spacing:-3.509333pt;}
.ls13{letter-spacing:-3.200000pt;}
.ls37{letter-spacing:-3.024000pt;}
.ls3f{letter-spacing:-2.773333pt;}
.ls1f{letter-spacing:-2.650667pt;}
.ls26{letter-spacing:-2.253333pt;}
.ls2b{letter-spacing:-2.176000pt;}
.ls1b{letter-spacing:-2.139221pt;}
.ls9{letter-spacing:-1.846240pt;}
.ls18{letter-spacing:-1.706667pt;}
.ls33{letter-spacing:-1.605333pt;}
.ls35{letter-spacing:-1.568000pt;}
.ls36{letter-spacing:-1.456000pt;}
.ls2e{letter-spacing:-1.299746pt;}
.ls2c{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.213097pt;}
.ls38{letter-spacing:-1.045333pt;}
.ls12{letter-spacing:-1.024000pt;}
.ls29{letter-spacing:-0.906667pt;}
.ls2a{letter-spacing:-0.866497pt;}
.ls27{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.810667pt;}
.lsa{letter-spacing:-0.749889pt;}
.ls23{letter-spacing:-0.746667pt;}
.ls2d{letter-spacing:-0.746240pt;}
.ls8{letter-spacing:-0.738496pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls24{letter-spacing:-0.644458pt;}
.ls34{letter-spacing:-0.560000pt;}
.ls28{letter-spacing:-0.497493pt;}
.ls2f{letter-spacing:-0.453333pt;}
.ls14{letter-spacing:-0.433249pt;}
.lse{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.391732pt;}
.lsb{letter-spacing:-0.385781pt;}
.ls6{letter-spacing:-0.352014pt;}
.ls4{letter-spacing:-0.346667pt;}
.ls19{letter-spacing:-0.248747pt;}
.ls1a{letter-spacing:-0.226667pt;}
.lsc{letter-spacing:-0.224912pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.202107pt;}
.ls1e{letter-spacing:-0.189546pt;}
.ls1d{letter-spacing:-0.186667pt;}
.ls3a{letter-spacing:-0.108827pt;}
.ls3{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.069333pt;}
.ls43{letter-spacing:0.186667pt;}
.ls16{letter-spacing:0.248747pt;}
.ls3c{letter-spacing:0.298496pt;}
.ls15{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.433249pt;}
.ls41{letter-spacing:0.435307pt;}
.ls3b{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.624000pt;}
.ls3d{letter-spacing:0.746667pt;}
.ls3e{letter-spacing:0.758185pt;}
.ls30{letter-spacing:1.120000pt;}
.ls25{letter-spacing:1.536000pt;}
.ls0{letter-spacing:5.290752pt;}
.ls1{letter-spacing:7.908517pt;}
.ls31{letter-spacing:20.309333pt;}
.ls2{letter-spacing:24.690005pt;}
.ls32{letter-spacing:118.533333pt;}
.ws129{word-spacing:-42.666667pt;}
.wsf4{word-spacing:-37.333333pt;}
.ws6{word-spacing:-34.334539pt;}
.ws1a{word-spacing:-24.690005pt;}
.wsa7{word-spacing:-11.106667pt;}
.ws162{word-spacing:-11.093333pt;}
.ws3{word-spacing:-10.924267pt;}
.ws36{word-spacing:-10.666667pt;}
.ws34{word-spacing:-10.453333pt;}
.ws12b{word-spacing:-10.426667pt;}
.ws39{word-spacing:-10.397965pt;}
.ws190{word-spacing:-10.080000pt;}
.ws37{word-spacing:-9.642667pt;}
.ws279{word-spacing:-9.520000pt;}
.ws13a{word-spacing:-9.477318pt;}
.wsf3{word-spacing:-9.333333pt;}
.wsf7{word-spacing:-9.146667pt;}
.ws123{word-spacing:-8.832860pt;}
.ws15b{word-spacing:-8.773333pt;}
.ws5{word-spacing:-8.623721pt;}
.ws0{word-spacing:-8.320000pt;}
.ws8{word-spacing:-8.162000pt;}
.ws2{word-spacing:-7.973333pt;}
.ws18f{word-spacing:-7.893333pt;}
.ws4{word-spacing:-7.773333pt;}
.ws38{word-spacing:-7.466667pt;}
.ws163{word-spacing:-7.040000pt;}
.wsfb{word-spacing:-6.682667pt;}
.ws18e{word-spacing:-6.517163pt;}
.wsa6{word-spacing:-6.467413pt;}
.ws35{word-spacing:-6.400000pt;}
.ws12a{word-spacing:-6.218667pt;}
.ws20b{word-spacing:-6.197333pt;}
.wsa5{word-spacing:-5.969920pt;}
.ws1ef{word-spacing:-5.876640pt;}
.ws114{word-spacing:-5.824000pt;}
.ws128{word-spacing:-5.721173pt;}
.wsfc{word-spacing:-5.712000pt;}
.ws7{word-spacing:-5.622800pt;}
.wsb8{word-spacing:-5.589333pt;}
.ws12c{word-spacing:-5.472427pt;}
.ws124{word-spacing:-5.441333pt;}
.ws9{word-spacing:-5.397888pt;}
.ws164{word-spacing:-5.332507pt;}
.wse{word-spacing:-5.290752pt;}
.ws223{word-spacing:-5.077333pt;}
.ws1{word-spacing:-4.850560pt;}
.wsa8{word-spacing:-4.079445pt;}
.ws20f{word-spacing:-4.056292pt;}
.wsae{word-spacing:-4.053333pt;}
.ws20e{word-spacing:-3.994667pt;}
.ws232{word-spacing:-3.957333pt;}
.ws1b4{word-spacing:-3.808000pt;}
.ws41{word-spacing:-3.242667pt;}
.ws209{word-spacing:-2.956923pt;}
.ws94{word-spacing:-2.858667pt;}
.ws3c{word-spacing:-2.816000pt;}
.ws63{word-spacing:-2.730667pt;}
.ws21f{word-spacing:-2.650667pt;}
.ws2c{word-spacing:-2.560000pt;}
.ws187{word-spacing:-2.517333pt;}
.wsd0{word-spacing:-2.474667pt;}
.ws17c{word-spacing:-2.432000pt;}
.ws1f7{word-spacing:-2.426193pt;}
.ws1f6{word-spacing:-2.389333pt;}
.ws208{word-spacing:-2.274556pt;}
.ws207{word-spacing:-2.240000pt;}
.ws66{word-spacing:-2.176000pt;}
.ws21e{word-spacing:-2.165333pt;}
.ws203{word-spacing:-2.160828pt;}
.ws14d{word-spacing:-2.133333pt;}
.ws202{word-spacing:-2.128000pt;}
.ws145{word-spacing:-2.090667pt;}
.ws57{word-spacing:-2.048000pt;}
.ws182{word-spacing:-2.005333pt;}
.ws24d{word-spacing:-1.978667pt;}
.wsb4{word-spacing:-1.962667pt;}
.ws185{word-spacing:-1.877333pt;}
.wsb7{word-spacing:-1.834667pt;}
.ws24a{word-spacing:-1.829333pt;}
.ws280{word-spacing:-1.819645pt;}
.ws1a7{word-spacing:-1.792000pt;}
.ws22c{word-spacing:-1.781736pt;}
.ws12{word-spacing:-1.774594pt;}
.ws22b{word-spacing:-1.754667pt;}
.ws249{word-spacing:-1.717333pt;}
.ws19e{word-spacing:-1.706667pt;}
.ws242{word-spacing:-1.705917pt;}
.ws1b7{word-spacing:-1.668008pt;}
.ws74{word-spacing:-1.664000pt;}
.ws1b8{word-spacing:-1.642667pt;}
.wsaa{word-spacing:-1.621333pt;}
.wse5{word-spacing:-1.578667pt;}
.ws19{word-spacing:-1.568000pt;}
.wsd8{word-spacing:-1.536000pt;}
.ws88{word-spacing:-1.493333pt;}
.ws13{word-spacing:-1.465969pt;}
.wsc4{word-spacing:-1.408000pt;}
.ws239{word-spacing:-1.381333pt;}
.ws263{word-spacing:-1.326824pt;}
.ws183{word-spacing:-1.322667pt;}
.ws262{word-spacing:-1.306667pt;}
.ws1b2{word-spacing:-1.288915pt;}
.ws79{word-spacing:-1.280000pt;}
.ws1b3{word-spacing:-1.269333pt;}
.ws24e{word-spacing:-1.251006pt;}
.wse8{word-spacing:-1.237333pt;}
.ws236{word-spacing:-1.232000pt;}
.ws54{word-spacing:-1.194667pt;}
.ws18c{word-spacing:-1.157333pt;}
.ws87{word-spacing:-1.152000pt;}
.ws6f{word-spacing:-1.109333pt;}
.ws55{word-spacing:-1.066667pt;}
.ws48{word-spacing:-1.024000pt;}
.ws1fd{word-spacing:-1.008000pt;}
.ws1a5{word-spacing:-0.981333pt;}
.ws7c{word-spacing:-0.938667pt;}
.ws237{word-spacing:-0.909822pt;}
.ws64{word-spacing:-0.896000pt;}
.ws1d2{word-spacing:-0.858667pt;}
.ws67{word-spacing:-0.853333pt;}
.ws26c{word-spacing:-0.834004pt;}
.ws1ea{word-spacing:-0.821333pt;}
.ws245{word-spacing:-0.784000pt;}
.wsa2{word-spacing:-0.768000pt;}
.ws1c8{word-spacing:-0.758185pt;}
.ws1ab{word-spacing:-0.746667pt;}
.wsb1{word-spacing:-0.725333pt;}
.wsc7{word-spacing:-0.682667pt;}
.wsd4{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.624000pt;}
.ws65{word-spacing:-0.597333pt;}
.wscd{word-spacing:-0.554667pt;}
.ws1d6{word-spacing:-0.530730pt;}
.ws1d5{word-spacing:-0.522667pt;}
.ws195{word-spacing:-0.512000pt;}
.wsdc{word-spacing:-0.433249pt;}
.ws84{word-spacing:-0.426667pt;}
.ws1e5{word-spacing:-0.417002pt;}
.ws1e4{word-spacing:-0.410667pt;}
.wse6{word-spacing:-0.384000pt;}
.ws44{word-spacing:-0.341333pt;}
.wsd5{word-spacing:-0.298667pt;}
.ws18{word-spacing:-0.270047pt;}
.ws267{word-spacing:-0.265365pt;}
.ws62{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.221549pt;}
.ws158{word-spacing:-0.189546pt;}
.ws127{word-spacing:-0.186667pt;}
.ws1a6{word-spacing:-0.170667pt;}
.ws1a8{word-spacing:-0.149333pt;}
.ws5e{word-spacing:-0.085333pt;}
.ws1f0{word-spacing:-0.069333pt;}
.ws148{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.ws20{word-spacing:0.038578pt;}
.wsc8{word-spacing:0.042667pt;}
.wsaf{word-spacing:0.085333pt;}
.ws18d{word-spacing:0.108827pt;}
.ws1eb{word-spacing:0.112000pt;}
.ws1ec{word-spacing:0.113728pt;}
.ws40{word-spacing:0.128000pt;}
.ws69{word-spacing:0.170667pt;}
.ws126{word-spacing:0.186667pt;}
.ws125{word-spacing:0.189546pt;}
.ws5a{word-spacing:0.213333pt;}
.ws1fe{word-spacing:0.224000pt;}
.ws16f{word-spacing:0.226667pt;}
.ws1ff{word-spacing:0.227456pt;}
.ws9f{word-spacing:0.256000pt;}
.ws24{word-spacing:0.270047pt;}
.ws157{word-spacing:0.298667pt;}
.ws1b6{word-spacing:0.303274pt;}
.wsc{word-spacing:0.346667pt;}
.ws14{word-spacing:0.347203pt;}
.ws99{word-spacing:0.384000pt;}
.ws22{word-spacing:0.391732pt;}
.ws4a{word-spacing:0.426667pt;}
.ws8d{word-spacing:0.433249pt;}
.ws268{word-spacing:0.454911pt;}
.ws201{word-spacing:0.485333pt;}
.ws9c{word-spacing:0.512000pt;}
.wsac{word-spacing:0.554667pt;}
.ws275{word-spacing:0.634667pt;}
.ws155{word-spacing:0.640000pt;}
.ws75{word-spacing:0.682667pt;}
.wsd{word-spacing:0.693333pt;}
.ws156{word-spacing:0.725333pt;}
.wsf{word-spacing:0.738496pt;}
.ws1ce{word-spacing:0.746667pt;}
.ws33{word-spacing:0.768000pt;}
.ws21a{word-spacing:0.784000pt;}
.ws219{word-spacing:0.796095pt;}
.wsc5{word-spacing:0.810667pt;}
.ws1e8{word-spacing:0.821333pt;}
.ws1e9{word-spacing:0.834004pt;}
.ws1c2{word-spacing:0.858667pt;}
.ws141{word-spacing:0.866497pt;}
.ws9a{word-spacing:0.896000pt;}
.ws1bd{word-spacing:0.970667pt;}
.ws142{word-spacing:0.981333pt;}
.ws15{word-spacing:1.003031pt;}
.ws1bb{word-spacing:1.008000pt;}
.ws1bc{word-spacing:1.023550pt;}
.ws18a{word-spacing:1.024000pt;}
.ws248{word-spacing:1.045333pt;}
.ws80{word-spacing:1.066667pt;}
.ws23{word-spacing:1.080188pt;}
.wsab{word-spacing:1.109333pt;}
.ws184{word-spacing:1.152000pt;}
.wsbb{word-spacing:1.194667pt;}
.ws1d9{word-spacing:1.213097pt;}
.wsb{word-spacing:1.213333pt;}
.ws7e{word-spacing:1.237333pt;}
.ws1cd{word-spacing:1.269333pt;}
.ws4b{word-spacing:1.280000pt;}
.ws1cc{word-spacing:1.288915pt;}
.ws147{word-spacing:1.299746pt;}
.ws2d{word-spacing:1.322667pt;}
.ws16{word-spacing:1.350235pt;}
.ws51{word-spacing:1.365333pt;}
.ws1e3{word-spacing:1.381333pt;}
.ws4e{word-spacing:1.408000pt;}
.ws86{word-spacing:1.450667pt;}
.ws16b{word-spacing:1.456000pt;}
.ws1e7{word-spacing:1.493333pt;}
.ws1e{word-spacing:1.504547pt;}
.ws225{word-spacing:1.568000pt;}
.ws81{word-spacing:1.578667pt;}
.ws226{word-spacing:1.592189pt;}
.ws9b{word-spacing:1.621333pt;}
.ws229{word-spacing:1.642667pt;}
.ws22a{word-spacing:1.668008pt;}
.ws1d7{word-spacing:1.680000pt;}
.ws31{word-spacing:1.706667pt;}
.ws16c{word-spacing:1.754667pt;}
.ws1c{word-spacing:1.774594pt;}
.wse0{word-spacing:1.792000pt;}
.ws20a{word-spacing:1.829333pt;}
.wsa9{word-spacing:1.834667pt;}
.ws1b1{word-spacing:1.866667pt;}
.ws197{word-spacing:1.920000pt;}
.ws2f{word-spacing:1.962667pt;}
.ws1f2{word-spacing:1.978667pt;}
.ws1a1{word-spacing:2.048000pt;}
.ws20d{word-spacing:2.053333pt;}
.ws269{word-spacing:2.085010pt;}
.ws194{word-spacing:2.090667pt;}
.ws144{word-spacing:2.133333pt;}
.ws1f8{word-spacing:2.165333pt;}
.ws143{word-spacing:2.176000pt;}
.ws1f9{word-spacing:2.198738pt;}
.ws1d{word-spacing:2.198954pt;}
.ws1e0{word-spacing:2.240000pt;}
.ws13b{word-spacing:2.253333pt;}
.ws16e{word-spacing:2.261333pt;}
.ws1a4{word-spacing:2.304000pt;}
.ws78{word-spacing:2.346667pt;}
.ws180{word-spacing:2.389333pt;}
.ws211{word-spacing:2.426193pt;}
.wsa0{word-spacing:2.432000pt;}
.wse1{word-spacing:2.474667pt;}
.ws247{word-spacing:2.501333pt;}
.ws53{word-spacing:2.517333pt;}
.ws246{word-spacing:2.539921pt;}
.ws52{word-spacing:2.602667pt;}
.ws13f{word-spacing:2.645333pt;}
.ws13d{word-spacing:2.688000pt;}
.ws231{word-spacing:2.725333pt;}
.wsb2{word-spacing:2.730667pt;}
.ws230{word-spacing:2.767377pt;}
.wseb{word-spacing:2.773333pt;}
.ws200{word-spacing:2.800000pt;}
.ws8c{word-spacing:2.816000pt;}
.wsee{word-spacing:2.858667pt;}
.ws233{word-spacing:2.874667pt;}
.wsb6{word-spacing:2.901333pt;}
.ws256{word-spacing:2.912000pt;}
.ws234{word-spacing:2.919014pt;}
.ws1b{word-spacing:2.931938pt;}
.ws30{word-spacing:2.944000pt;}
.ws1de{word-spacing:2.949333pt;}
.ws244{word-spacing:2.986667pt;}
.ws17{word-spacing:3.009094pt;}
.ws14e{word-spacing:3.029333pt;}
.ws45{word-spacing:3.072000pt;}
.ws1ae{word-spacing:3.136000pt;}
.wsef{word-spacing:3.157333pt;}
.ws1ad{word-spacing:3.184379pt;}
.wsec{word-spacing:3.200000pt;}
.wsbf{word-spacing:3.242667pt;}
.ws5d{word-spacing:3.285333pt;}
.wsb3{word-spacing:3.328000pt;}
.wsf1{word-spacing:3.370667pt;}
.wsea{word-spacing:3.413333pt;}
.wse4{word-spacing:3.456000pt;}
.wsd9{word-spacing:3.498667pt;}
.ws1d3{word-spacing:3.509333pt;}
.wsbc{word-spacing:3.541333pt;}
.ws77{word-spacing:3.584000pt;}
.ws60{word-spacing:3.626667pt;}
.ws1af{word-spacing:3.658667pt;}
.ws140{word-spacing:3.712000pt;}
.ws1df{word-spacing:3.715109pt;}
.wsde{word-spacing:3.797333pt;}
.ws1c3{word-spacing:3.808000pt;}
.ws58{word-spacing:3.840000pt;}
.ws22f{word-spacing:3.866746pt;}
.ws6b{word-spacing:3.882667pt;}
.ws1e1{word-spacing:3.957333pt;}
.wsc3{word-spacing:3.968000pt;}
.ws1a2{word-spacing:4.010667pt;}
.ws1e2{word-spacing:4.018383pt;}
.ws199{word-spacing:4.053333pt;}
.ws23e{word-spacing:4.069333pt;}
.ws32{word-spacing:4.096000pt;}
.ws281{word-spacing:4.144000pt;}
.ws266{word-spacing:4.207929pt;}
.wsba{word-spacing:4.266667pt;}
.wscb{word-spacing:4.309333pt;}
.ws98{word-spacing:4.352000pt;}
.ws72{word-spacing:4.394667pt;}
.ws21{word-spacing:4.436485pt;}
.ws13e{word-spacing:4.480000pt;}
.wsf0{word-spacing:4.522667pt;}
.ws1c9{word-spacing:4.554667pt;}
.ws7d{word-spacing:4.565333pt;}
.wsc0{word-spacing:4.608000pt;}
.ws1c5{word-spacing:4.629333pt;}
.ws1c4{word-spacing:4.700750pt;}
.ws23d{word-spacing:4.704000pt;}
.wsd2{word-spacing:4.736000pt;}
.ws224{word-spacing:4.741333pt;}
.ws23c{word-spacing:4.776568pt;}
.ws198{word-spacing:4.778667pt;}
.ws10{word-spacing:4.783689pt;}
.ws76{word-spacing:4.864000pt;}
.ws26d{word-spacing:4.890667pt;}
.ws93{word-spacing:4.895709pt;}
.ws46{word-spacing:4.906667pt;}
.wsed{word-spacing:4.949333pt;}
.ws6d{word-spacing:4.992000pt;}
.ws24b{word-spacing:5.040000pt;}
.ws97{word-spacing:5.077333pt;}
.ws24c{word-spacing:5.117752pt;}
.wsdd{word-spacing:5.162667pt;}
.ws1b9{word-spacing:5.189333pt;}
.wsdb{word-spacing:5.205333pt;}
.ws5f{word-spacing:5.248000pt;}
.ws1d4{word-spacing:5.264000pt;}
.ws42{word-spacing:5.290667pt;}
.wse3{word-spacing:5.333333pt;}
.ws270{word-spacing:5.338667pt;}
.ws1d8{word-spacing:5.345207pt;}
.wscc{word-spacing:5.376000pt;}
.ws265{word-spacing:5.383116pt;}
.ws16d{word-spacing:5.418667pt;}
.ws91{word-spacing:5.504000pt;}
.ws83{word-spacing:5.589333pt;}
.ws9e{word-spacing:5.632000pt;}
.ws241{word-spacing:5.637333pt;}
.ws1f{word-spacing:5.670986pt;}
.wsda{word-spacing:5.674667pt;}
.ws92{word-spacing:5.675556pt;}
.ws21b{word-spacing:5.712000pt;}
.wsdf{word-spacing:5.717333pt;}
.ws7f{word-spacing:5.760000pt;}
.ws1a3{word-spacing:5.845333pt;}
.ws228{word-spacing:5.861333pt;}
.ws13c{word-spacing:5.973333pt;}
.ws8a{word-spacing:6.058667pt;}
.ws85{word-spacing:6.144000pt;}
.ws146{word-spacing:6.186667pt;}
.ws21d{word-spacing:6.197333pt;}
.wsd7{word-spacing:6.229333pt;}
.ws24f{word-spacing:6.234667pt;}
.ws9d{word-spacing:6.272000pt;}
.ws21c{word-spacing:6.292939pt;}
.wsc6{word-spacing:6.314667pt;}
.ws250{word-spacing:6.330848pt;}
.ws27d{word-spacing:6.346667pt;}
.ws1ee{word-spacing:6.384000pt;}
.ws186{word-spacing:6.400000pt;}
.ws6e{word-spacing:6.442667pt;}
.wsd1{word-spacing:6.485333pt;}
.ws282{word-spacing:6.496000pt;}
.ws59{word-spacing:6.528000pt;}
.ws95{word-spacing:6.570667pt;}
.ws243{word-spacing:6.608000pt;}
.ws2b{word-spacing:6.613333pt;}
.ws8e{word-spacing:6.628703pt;}
.wsce{word-spacing:6.656000pt;}
.ws204{word-spacing:6.682667pt;}
.ws2e{word-spacing:6.741333pt;}
.ws172{word-spacing:6.784000pt;}
.ws264{word-spacing:6.785759pt;}
.ws61{word-spacing:6.826667pt;}
.ws26f{word-spacing:6.869333pt;}
.ws179{word-spacing:6.954667pt;}
.ws26e{word-spacing:6.975306pt;}
.ws26a{word-spacing:6.981333pt;}
.ws17a{word-spacing:6.997333pt;}
.ws1d0{word-spacing:7.018667pt;}
.wsa3{word-spacing:7.040000pt;}
.ws11{word-spacing:7.059798pt;}
.ws4d{word-spacing:7.125333pt;}
.ws1d1{word-spacing:7.126943pt;}
.ws251{word-spacing:7.164852pt;}
.ws28{word-spacing:7.168000pt;}
.ws176{word-spacing:7.210667pt;}
.ws7a{word-spacing:7.296000pt;}
.ws17f{word-spacing:7.338667pt;}
.ws1a9{word-spacing:7.392000pt;}
.ws1fb{word-spacing:7.466667pt;}
.ws1aa{word-spacing:7.506036pt;}
.ws6c{word-spacing:7.509333pt;}
.ws212{word-spacing:7.578667pt;}
.ws14b{word-spacing:7.594667pt;}
.wsbd{word-spacing:7.637333pt;}
.wsc2{word-spacing:7.765333pt;}
.ws170{word-spacing:7.936000pt;}
.ws238{word-spacing:7.952000pt;}
.ws71{word-spacing:8.021333pt;}
.ws68{word-spacing:8.064000pt;}
.ws193{word-spacing:8.106667pt;}
.ws175{word-spacing:8.192000pt;}
.ws6a{word-spacing:8.234667pt;}
.ws210{word-spacing:8.288000pt;}
.wsbe{word-spacing:8.362667pt;}
.ws50{word-spacing:8.405333pt;}
.ws260{word-spacing:8.437333pt;}
.wse7{word-spacing:8.533333pt;}
.ws25a{word-spacing:8.549333pt;}
.ws191{word-spacing:8.576000pt;}
.ws17e{word-spacing:8.618667pt;}
.ws5b{word-spacing:8.661333pt;}
.ws25b{word-spacing:8.681223pt;}
.ws1c6{word-spacing:8.736000pt;}
.ws196{word-spacing:8.746667pt;}
.ws20c{word-spacing:8.794951pt;}
.ws90{word-spacing:8.832000pt;}
.wsb0{word-spacing:8.874667pt;}
.ws271{word-spacing:8.885333pt;}
.ws26{word-spacing:8.917333pt;}
.ws8f{word-spacing:8.968245pt;}
.ws153{word-spacing:9.002667pt;}
.ws171{word-spacing:9.045333pt;}
.ws82{word-spacing:9.088000pt;}
.ws1ba{word-spacing:9.184000pt;}
.ws56{word-spacing:9.216000pt;}
.ws222{word-spacing:9.296000pt;}
.ws17d{word-spacing:9.301333pt;}
.ws177{word-spacing:9.386667pt;}
.ws149{word-spacing:9.429333pt;}
.ws221{word-spacing:9.439408pt;}
.ws154{word-spacing:9.472000pt;}
.ws181{word-spacing:9.557333pt;}
.ws26b{word-spacing:9.594667pt;}
.wsca{word-spacing:9.600000pt;}
.ws4f{word-spacing:9.642667pt;}
.ws27e{word-spacing:9.669333pt;}
.ws49{word-spacing:9.770667pt;}
.ws73{word-spacing:9.813333pt;}
.ws274{word-spacing:9.818667pt;}
.wsc9{word-spacing:9.898667pt;}
.ws47{word-spacing:9.984000pt;}
.ws235{word-spacing:10.005333pt;}
.wsa1{word-spacing:10.026667pt;}
.ws1b5{word-spacing:10.080000pt;}
.ws8b{word-spacing:10.112000pt;}
.ws1e6{word-spacing:10.154667pt;}
.ws5c{word-spacing:10.197333pt;}
.ws3e{word-spacing:10.240000pt;}
.ws283{word-spacing:10.304000pt;}
.ws27f{word-spacing:10.311322pt;}
.ws192{word-spacing:10.410667pt;}
.ws284{word-spacing:10.462959pt;}
.ws27c{word-spacing:10.490667pt;}
.ws96{word-spacing:10.496000pt;}
.ws1ed{word-spacing:10.565333pt;}
.ws217{word-spacing:10.602667pt;}
.wsc1{word-spacing:10.624000pt;}
.ws27b{word-spacing:10.652505pt;}
.ws276{word-spacing:10.677333pt;}
.ws27{word-spacing:10.709333pt;}
.ws3b{word-spacing:10.794667pt;}
.ws258{word-spacing:10.826667pt;}
.ws277{word-spacing:10.842051pt;}
.ws1ca{word-spacing:10.901333pt;}
.ws259{word-spacing:10.993688pt;}
.ws1fc{word-spacing:11.013333pt;}
.ws3f{word-spacing:11.050667pt;}
.ws1cb{word-spacing:11.069507pt;}
.wsb5{word-spacing:11.136000pt;}
.ws14c{word-spacing:11.221333pt;}
.ws253{word-spacing:11.274667pt;}
.wsd3{word-spacing:11.392000pt;}
.ws1f5{word-spacing:11.424000pt;}
.wsd6{word-spacing:11.477333pt;}
.ws3d{word-spacing:11.520000pt;}
.ws216{word-spacing:11.573333pt;}
.ws1f4{word-spacing:11.600237pt;}
.ws23b{word-spacing:11.610667pt;}
.ws1a0{word-spacing:11.733333pt;}
.ws215{word-spacing:11.751874pt;}
.ws1b0{word-spacing:11.760000pt;}
.wsb9{word-spacing:11.776000pt;}
.ws7b{word-spacing:11.818667pt;}
.ws278{word-spacing:11.834667pt;}
.ws70{word-spacing:12.032000pt;}
.ws4c{word-spacing:12.074667pt;}
.ws19b{word-spacing:12.202667pt;}
.ws29{word-spacing:12.416000pt;}
.ws173{word-spacing:12.458667pt;}
.ws19a{word-spacing:12.629333pt;}
.ws14a{word-spacing:12.714667pt;}
.ws1ac{word-spacing:13.104000pt;}
.ws151{word-spacing:13.141333pt;}
.ws1cf{word-spacing:13.216000pt;}
.ws257{word-spacing:13.253333pt;}
.ws286{word-spacing:13.290667pt;}
.wse2{word-spacing:13.354667pt;}
.ws152{word-spacing:13.482667pt;}
.ws285{word-spacing:13.495700pt;}
.ws1c1{word-spacing:13.552000pt;}
.ws1c0{word-spacing:13.761065pt;}
.wscf{word-spacing:13.781333pt;}
.ws22e{word-spacing:13.962667pt;}
.ws43{word-spacing:13.994667pt;}
.ws22d{word-spacing:14.178067pt;}
.ws188{word-spacing:14.464000pt;}
.ws19c{word-spacing:14.549333pt;}
.ws27a{word-spacing:14.784000pt;}
.ws89{word-spacing:14.805333pt;}
.ws1dd{word-spacing:14.896000pt;}
.ws18b{word-spacing:14.933333pt;}
.ws1f1{word-spacing:15.045333pt;}
.ws1dc{word-spacing:15.125799pt;}
.ws272{word-spacing:15.157333pt;}
.ws261{word-spacing:15.344000pt;}
.ws273{word-spacing:15.391164pt;}
.ws254{word-spacing:15.717333pt;}
.ws1fa{word-spacing:15.883984pt;}
.ws255{word-spacing:15.959803pt;}
.ws213{word-spacing:16.053333pt;}
.ws150{word-spacing:16.768000pt;}
.ws240{word-spacing:16.912000pt;}
.ws220{word-spacing:17.509333pt;}
.wsa4{word-spacing:17.536000pt;}
.ws19d{word-spacing:17.877333pt;}
.ws2a{word-spacing:18.005333pt;}
.ws189{word-spacing:18.090667pt;}
.ws17b{word-spacing:18.346667pt;}
.ws227{word-spacing:18.613452pt;}
.ws174{word-spacing:18.816000pt;}
.ws1db{word-spacing:19.114667pt;}
.ws1c7{word-spacing:19.152000pt;}
.ws25c{word-spacing:19.226667pt;}
.ws252{word-spacing:19.749333pt;}
.ws218{word-spacing:19.824000pt;}
.ws23a{word-spacing:20.048000pt;}
.ws1f3{word-spacing:20.458667pt;}
.ws23f{word-spacing:20.496000pt;}
.ws19f{word-spacing:20.522667pt;}
.ws178{word-spacing:20.650667pt;}
.ws1da{word-spacing:20.757333pt;}
.ws14f{word-spacing:22.186667pt;}
.ws25d{word-spacing:23.072000pt;}
.wsad{word-spacing:23.082667pt;}
.ws206{word-spacing:24.080000pt;}
.ws205{word-spacing:24.451479pt;}
.ws1be{word-spacing:26.954667pt;}
.ws25f{word-spacing:27.552000pt;}
.ws25e{word-spacing:27.977042pt;}
.wse9{word-spacing:28.714667pt;}
.ws214{word-spacing:28.896000pt;}
.ws1bf{word-spacing:31.472000pt;}
.ws16a{word-spacing:105.242667pt;}
.ws167{word-spacing:113.904000pt;}
.ws169{word-spacing:118.869333pt;}
.ws165{word-spacing:179.834667pt;}
.ws12f{word-spacing:195.589333pt;}
.ws137{word-spacing:198.576000pt;}
.ws133{word-spacing:199.584000pt;}
.ws139{word-spacing:200.181333pt;}
.ws131{word-spacing:205.594667pt;}
.ws135{word-spacing:212.277333pt;}
.ws166{word-spacing:213.163828pt;}
.wsf6{word-spacing:234.602667pt;}
.ws103{word-spacing:234.789333pt;}
.wsfe{word-spacing:234.976000pt;}
.ws110{word-spacing:235.461333pt;}
.ws107{word-spacing:235.946667pt;}
.wsff{word-spacing:236.245333pt;}
.wsf9{word-spacing:237.589333pt;}
.ws101{word-spacing:239.008000pt;}
.ws10d{word-spacing:239.120000pt;}
.ws122{word-spacing:239.381333pt;}
.wsf5{word-spacing:239.418667pt;}
.wsfa{word-spacing:239.754667pt;}
.ws105{word-spacing:243.114667pt;}
.ws11e{word-spacing:246.549333pt;}
.ws168{word-spacing:274.503461pt;}
.wsf8{word-spacing:290.490667pt;}
.wsfd{word-spacing:291.909333pt;}
.ws104{word-spacing:293.888000pt;}
.ws11d{word-spacing:295.232000pt;}
.ws100{word-spacing:295.456000pt;}
.ws10f{word-spacing:295.605333pt;}
.ws10c{word-spacing:295.754667pt;}
.ws102{word-spacing:296.912000pt;}
.ws108{word-spacing:297.733333pt;}
.ws120{word-spacing:298.592000pt;}
.ws121{word-spacing:303.893333pt;}
.ws136{word-spacing:316.512000pt;}
.ws132{word-spacing:316.848000pt;}
.ws12e{word-spacing:317.296000pt;}
.ws134{word-spacing:317.557333pt;}
.ws138{word-spacing:317.594667pt;}
.ws130{word-spacing:319.498667pt;}
.ws10e{word-spacing:325.808000pt;}
.ws11f{word-spacing:327.488000pt;}
.ws117{word-spacing:327.973333pt;}
.ws106{word-spacing:330.885333pt;}
.ws10b{word-spacing:333.274667pt;}
.ws113{word-spacing:342.794667pt;}
.ws112{word-spacing:343.765333pt;}
.ws10a{word-spacing:345.296000pt;}
.ws109{word-spacing:345.856000pt;}
.ws111{word-spacing:346.042667pt;}
.ws118{word-spacing:347.872000pt;}
.ws119{word-spacing:348.133333pt;}
.ws11b{word-spacing:348.805333pt;}
.ws161{word-spacing:350.186667pt;}
.ws15d{word-spacing:351.082667pt;}
.ws15a{word-spacing:351.344000pt;}
.ws15f{word-spacing:358.736000pt;}
.ws115{word-spacing:358.848000pt;}
.ws11c{word-spacing:361.088000pt;}
.ws11a{word-spacing:363.477333pt;}
.ws159{word-spacing:478.314667pt;}
.ws15c{word-spacing:480.222400pt;}
.wsf2{word-spacing:536.405333pt;}
.ws15e{word-spacing:570.453333pt;}
.ws160{word-spacing:583.146667pt;}
.ws12d{word-spacing:597.184000pt;}
.ws116{word-spacing:1175.962667pt;}
._58{margin-left:-18.342483pt;}
._43{margin-left:-13.249857pt;}
._4{margin-left:-5.359145pt;}
._3{margin-left:-3.813333pt;}
._5{margin-left:-2.887425pt;}
._1{margin-left:-1.937992pt;}
._0{margin-left:-0.967205pt;}
._2{width:1.577463pt;}
._8{width:2.602667pt;}
._7{width:4.053333pt;}
._6{width:5.675870pt;}
._9{width:8.234667pt;}
._b{width:9.391954pt;}
._a{width:11.777203pt;}
._4e{width:96.017992pt;}
._57{width:101.584000pt;}
._4f{width:114.538667pt;}
._50{width:123.046570pt;}
._56{width:125.701333pt;}
._10{width:156.544742pt;}
._2b{width:164.848842pt;}
._1a{width:166.357333pt;}
._26{width:167.917862pt;}
._17{width:169.271325pt;}
._1f{width:170.732659pt;}
._22{width:172.765501pt;}
._13{width:175.153925pt;}
._53{width:177.221333pt;}
._54{width:183.717333pt;}
._55{width:184.941333pt;}
._51{width:199.487186pt;}
._47{width:225.680000pt;}
._4b{width:227.916659pt;}
._52{width:239.306667pt;}
._18{width:245.168000pt;}
._36{width:246.322614pt;}
._28{width:247.756638pt;}
._14{width:249.180759pt;}
._30{width:251.324659pt;}
._32{width:252.817250pt;}
._f{width:274.312529pt;}
._1e{width:282.650667pt;}
._1c{width:286.496000pt;}
._3a{width:289.395075pt;}
._25{width:291.867870pt;}
._21{width:295.644538pt;}
._19{width:300.492659pt;}
._16{width:303.114667pt;}
._12{width:304.010667pt;}
._42{width:319.905992pt;}
._4a{width:332.449992pt;}
._46{width:335.664000pt;}
._4d{width:337.312000pt;}
._45{width:338.295425pt;}
._48{width:339.870850pt;}
._35{width:362.428659pt;}
._23{width:374.293735pt;}
._4c{width:385.728000pt;}
._44{width:399.374165pt;}
._3e{width:473.420659pt;}
._3b{width:485.544529pt;}
._3f{width:501.644538pt;}
._1d{width:503.402667pt;}
._20{width:514.480401pt;}
._34{width:530.581333pt;}
._d{width:546.149333pt;}
._27{width:561.153871pt;}
._11{width:567.046537pt;}
._49{width:579.637333pt;}
._29{width:598.188659pt;}
._41{width:617.527325pt;}
._2f{width:635.633871pt;}
._24{width:706.193871pt;}
._e{width:763.873992pt;}
._31{width:775.223205pt;}
._33{width:779.889992pt;}
._39{width:845.301333pt;}
._3c{width:857.770667pt;}
._2a{width:927.472000pt;}
._37{width:930.272000pt;}
._3d{width:942.368000pt;}
._2c{width:957.633871pt;}
._40{width:961.520000pt;}
._1b{width:1012.293333pt;}
._2d{width:1049.287325pt;}
._2e{width:1065.269333pt;}
._38{width:1118.282667pt;}
._15{width:1194.368000pt;}
._c{width:1305.472000pt;}
.fs3{font-size:20.210667pt;}
.fs15{font-size:20.522457pt;}
.fs9{font-size:21.207001pt;}
.fs1a{font-size:21.765333pt;}
.fs1b{font-size:22.101108pt;}
.fsf{font-size:22.491200pt;}
.fs16{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs12{font-size:32.648000pt;}
.fs2{font-size:34.666667pt;}
.fs4{font-size:35.201432pt;}
.fs1{font-size:35.822400pt;}
.fsa{font-size:36.374985pt;}
.fsd{font-size:36.924800pt;}
.fs18{font-size:37.333333pt;}
.fse{font-size:37.494441pt;}
.fs19{font-size:37.909270pt;}
.fsc{font-size:38.578133pt;}
.fs10{font-size:39.173223pt;}
.fs13{font-size:42.666667pt;}
.fs14{font-size:43.324854pt;}
.fs6{font-size:43.697067pt;}
.fsb{font-size:44.089600pt;}
.fs17{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs11{font-size:56.000000pt;}
.fs5{font-size:74.952000pt;}
.fs0{font-size:112.979200pt;}
.y0{bottom:0.000000pt;}
.y299{bottom:61.710133pt;}
.y205{bottom:61.724800pt;}
.y37b{bottom:61.736800pt;}
.y303{bottom:61.740267pt;}
.y3d1{bottom:61.745733pt;}
.y248{bottom:62.385067pt;}
.yd1{bottom:62.396933pt;}
.y8b{bottom:62.440000pt;}
.y18a{bottom:62.958000pt;}
.y189{bottom:62.960667pt;}
.y1e8{bottom:65.024933pt;}
.y1e7{bottom:65.027600pt;}
.y155{bottom:69.711467pt;}
.y154{bottom:69.716800pt;}
.y6{bottom:71.810533pt;}
.y37a{bottom:72.479467pt;}
.y302{bottom:72.482933pt;}
.y3d0{bottom:72.488400pt;}
.y379{bottom:72.497200pt;}
.y188{bottom:74.291333pt;}
.y111{bottom:74.635733pt;}
.y298{bottom:75.971467pt;}
.y204{bottom:76.242133pt;}
.y1e6{bottom:76.358267pt;}
.y247{bottom:76.411733pt;}
.yd0{bottom:76.423600pt;}
.y8a{bottom:76.466667pt;}
.y301{bottom:83.225600pt;}
.y3cf{bottom:83.231067pt;}
.y378{bottom:83.239867pt;}
.y153{bottom:83.711467pt;}
.y152{bottom:83.796667pt;}
.y110{bottom:88.630400pt;}
.y14{bottom:88.767733pt;}
.y297{bottom:90.232800pt;}
.y246{bottom:90.438400pt;}
.ycf{bottom:90.450267pt;}
.y89{bottom:90.493333pt;}
.y203{bottom:90.740667pt;}
.y300{bottom:93.968267pt;}
.y3ce{bottom:93.973733pt;}
.y2ff{bottom:93.978800pt;}
.y377{bottom:93.982533pt;}
.y3cd{bottom:93.995867pt;}
.y151{bottom:97.791333pt;}
.y185{bottom:98.477867pt;}
.y10f{bottom:102.625067pt;}
.y1e4{bottom:103.202133pt;}
.y245{bottom:104.465067pt;}
.yce{bottom:104.476933pt;}
.y296{bottom:104.494133pt;}
.y88{bottom:104.520000pt;}
.y2fe{bottom:104.721467pt;}
.y376{bottom:104.725200pt;}
.y3cc{bottom:104.738533pt;}
.y202{bottom:105.258000pt;}
.y4{bottom:107.931467pt;}
.y5{bottom:107.933200pt;}
.y150{bottom:111.786000pt;}
.y1e3{bottom:114.532800pt;}
.y2fd{bottom:115.464133pt;}
.y375{bottom:115.467867pt;}
.y3cb{bottom:115.481200pt;}
.y374{bottom:115.485600pt;}
.y10e{bottom:116.619733pt;}
.y184{bottom:118.273867pt;}
.y244{bottom:118.491733pt;}
.ycd{bottom:118.503600pt;}
.y87{bottom:118.546667pt;}
.y295{bottom:118.755467pt;}
.y3{bottom:118.955467pt;}
.y201{bottom:119.775333pt;}
.y14f{bottom:125.780667pt;}
.y2fc{bottom:126.206800pt;}
.y3ca{bottom:126.223867pt;}
.y373{bottom:126.228267pt;}
.y183{bottom:129.604533pt;}
.y10d{bottom:130.614400pt;}
.y243{bottom:132.518400pt;}
.ycc{bottom:132.530267pt;}
.y86{bottom:132.573333pt;}
.y294{bottom:132.981200pt;}
.y200{bottom:134.292667pt;}
.y2fb{bottom:136.949467pt;}
.y2fa{bottom:136.960000pt;}
.y3c9{bottom:136.966533pt;}
.y372{bottom:136.970933pt;}
.y1e2{bottom:139.256800pt;}
.y14e{bottom:139.775333pt;}
.y10c{bottom:144.619733pt;}
.y242{bottom:146.545067pt;}
.ycb{bottom:146.556933pt;}
.y85{bottom:146.600000pt;}
.y47{bottom:147.090933pt;}
.y293{bottom:147.242533pt;}
.y2f9{bottom:147.702667pt;}
.y3c8{bottom:147.709200pt;}
.y371{bottom:147.713600pt;}
.y3c7{bottom:147.726933pt;}
.y1ff{bottom:148.810000pt;}
.y182{bottom:149.288533pt;}
.y1e1{bottom:150.587467pt;}
.y14d{bottom:153.770000pt;}
.y2f8{bottom:158.445333pt;}
.y370{bottom:158.456267pt;}
.y36f{bottom:158.460800pt;}
.y3c6{bottom:158.469600pt;}
.y10b{bottom:158.614400pt;}
.y241{bottom:160.571733pt;}
.yca{bottom:160.583600pt;}
.y181{bottom:160.619200pt;}
.y84{bottom:160.626667pt;}
.y46{bottom:161.426933pt;}
.y292{bottom:161.503867pt;}
.y1fe{bottom:163.327333pt;}
.y14c{bottom:167.764667pt;}
.y2f7{bottom:169.188000pt;}
.y36e{bottom:169.203467pt;}
.y3c5{bottom:169.212267pt;}
.y36d{bottom:169.216800pt;}
.y10a{bottom:172.635733pt;}
.y240{bottom:174.598400pt;}
.yc9{bottom:174.610267pt;}
.y83{bottom:174.653333pt;}
.y45{bottom:175.752267pt;}
.y291{bottom:175.765200pt;}
.y1e0{bottom:175.880800pt;}
.y2f6{bottom:179.930667pt;}
.y2f5{bottom:179.938533pt;}
.y3c4{bottom:179.954933pt;}
.y36c{bottom:179.959467pt;}
.y180{bottom:180.415200pt;}
.y14b{bottom:181.759333pt;}
.y109{bottom:186.630400pt;}
.y1df{bottom:187.211467pt;}
.y23f{bottom:188.625067pt;}
.yc8{bottom:188.636933pt;}
.y82{bottom:188.680000pt;}
.y290{bottom:190.026533pt;}
.y44{bottom:190.077600pt;}
.y2f4{bottom:190.681200pt;}
.y3c3{bottom:190.697600pt;}
.y36b{bottom:190.702133pt;}
.y1fd{bottom:191.174267pt;}
.y14a{bottom:195.754000pt;}
.y17f{bottom:200.323200pt;}
.y108{bottom:200.625067pt;}
.y2f3{bottom:201.423867pt;}
.y36a{bottom:201.444800pt;}
.y369{bottom:201.449200pt;}
.y3c2{bottom:201.458000pt;}
.y23e{bottom:202.651733pt;}
.yc7{bottom:202.663600pt;}
.y81{bottom:202.706667pt;}
.y28f{bottom:204.287867pt;}
.y43{bottom:204.413600pt;}
.y149{bottom:209.748667pt;}
.y2f2{bottom:212.166533pt;}
.y2f1{bottom:212.171867pt;}
.y368{bottom:212.191867pt;}
.y367{bottom:212.200667pt;}
.y1de{bottom:213.382133pt;}
.y107{bottom:214.619733pt;}
.y23d{bottom:216.678400pt;}
.yc6{bottom:216.690267pt;}
.y80{bottom:216.733333pt;}
.y250{bottom:218.384133pt;}
.y28e{bottom:218.549200pt;}
.y42{bottom:218.749600pt;}
.y17e{bottom:220.231200pt;}
.y2f0{bottom:222.914533pt;}
.y366{bottom:222.943333pt;}
.y148{bottom:223.743333pt;}
.y1dd{bottom:224.712800pt;}
.y106{bottom:228.614400pt;}
.y23c{bottom:230.705067pt;}
.yc5{bottom:230.716933pt;}
.y7f{bottom:230.760000pt;}
.y28d{bottom:232.810533pt;}
.y41{bottom:233.074933pt;}
.y2ef{bottom:233.657200pt;}
.y2ee{bottom:233.665067pt;}
.y365{bottom:233.686000pt;}
.y364{bottom:233.694933pt;}
.y3c1{bottom:233.699333pt;}
.y1dc{bottom:236.043467pt;}
.y24f{bottom:236.490800pt;}
.y147{bottom:237.738000pt;}
.y17d{bottom:240.139200pt;}
.y105{bottom:242.609067pt;}
.y2ed{bottom:244.407733pt;}
.y363{bottom:244.437600pt;}
.y3c0{bottom:244.442000pt;}
.y23b{bottom:244.731733pt;}
.yc4{bottom:244.743600pt;}
.y7e{bottom:244.786667pt;}
.y28c{bottom:246.960800pt;}
.y146{bottom:251.732667pt;}
.y24e{bottom:254.597467pt;}
.y2ec{bottom:255.150400pt;}
.y362{bottom:255.180267pt;}
.y3bf{bottom:255.184667pt;}
.y361{bottom:255.189200pt;}
.y23a{bottom:258.758400pt;}
.yc3{bottom:258.770267pt;}
.y7d{bottom:258.813333pt;}
.y17c{bottom:260.047200pt;}
.y28b{bottom:261.222133pt;}
.y1db{bottom:261.644800pt;}
.y145{bottom:265.727333pt;}
.y2eb{bottom:265.893067pt;}
.y2ea{bottom:265.898400pt;}
.y3be{bottom:265.927333pt;}
.y360{bottom:265.931867pt;}
.y104{bottom:269.939733pt;}
.y239{bottom:272.785067pt;}
.yc2{bottom:272.796933pt;}
.y7c{bottom:272.840000pt;}
.y1da{bottom:272.975467pt;}
.y39{bottom:273.021512pt;}
.y3a{bottom:273.033867pt;}
.y28a{bottom:275.483467pt;}
.y2e9{bottom:276.641067pt;}
.y35f{bottom:276.674533pt;}
.y3bd{bottom:276.678933pt;}
.y35e{bottom:276.687733pt;}
.y144{bottom:279.722000pt;}
.y17b{bottom:279.955200pt;}
.y24c{bottom:282.098800pt;}
.y38{bottom:285.839097pt;}
.y238{bottom:286.811733pt;}
.yc1{bottom:286.823600pt;}
.y7b{bottom:286.866667pt;}
.y2e8{bottom:287.383733pt;}
.y2e7{bottom:287.386267pt;}
.y3bc{bottom:287.421600pt;}
.y35d{bottom:287.430400pt;}
.y3bb{bottom:287.443733pt;}
.y289{bottom:289.744800pt;}
.y143{bottom:293.716667pt;}
.y103{bottom:297.275733pt;}
.y2e6{bottom:298.128933pt;}
.y2e5{bottom:298.136933pt;}
.y35c{bottom:298.173067pt;}
.y3ba{bottom:298.186400pt;}
.y37{bottom:298.656682pt;}
.y17a{bottom:299.751200pt;}
.y1d9{bottom:299.762133pt;}
.y237{bottom:300.838400pt;}
.yc0{bottom:300.850267pt;}
.y7a{bottom:300.893333pt;}
.y288{bottom:304.006133pt;}
.y142{bottom:307.727333pt;}
.y2e4{bottom:308.879600pt;}
.y35b{bottom:308.915733pt;}
.y35a{bottom:308.920267pt;}
.y3b9{bottom:308.929067pt;}
.y179{bottom:311.081867pt;}
.y1d8{bottom:311.092800pt;}
.y35{bottom:311.457794pt;}
.y36{bottom:311.474267pt;}
.y236{bottom:314.865067pt;}
.ybf{bottom:314.876933pt;}
.y79{bottom:314.920000pt;}
.y287{bottom:318.267467pt;}
.y2e3{bottom:319.622267pt;}
.y359{bottom:319.662933pt;}
.y3b8{bottom:319.671733pt;}
.y358{bottom:319.676267pt;}
.y256{bottom:320.750267pt;}
.y141{bottom:321.722000pt;}
.y34{bottom:324.275379pt;}
.y235{bottom:328.891733pt;}
.ybe{bottom:328.903600pt;}
.y234{bottom:328.935467pt;}
.y78{bottom:328.946667pt;}
.y102{bottom:330.253333pt;}
.y2e2{bottom:330.364933pt;}
.y3b7{bottom:330.414400pt;}
.y357{bottom:330.418933pt;}
.y178{bottom:330.877867pt;}
.y286{bottom:332.528800pt;}
.y140{bottom:335.716667pt;}
.y1d7{bottom:336.964800pt;}
.y33{bottom:337.092964pt;}
.y2e1{bottom:341.115467pt;}
.y3b6{bottom:341.157067pt;}
.y356{bottom:341.161600pt;}
.y3b5{bottom:341.166000pt;}
.ybd{bottom:342.930267pt;}
.y233{bottom:342.962133pt;}
.y77{bottom:342.973333pt;}
.y101{bottom:344.248000pt;}
.y285{bottom:346.790133pt;}
.y1d6{bottom:348.295467pt;}
.y13f{bottom:349.711333pt;}
.y13e{bottom:349.727333pt;}
.y32{bottom:349.910549pt;}
.y177{bottom:350.673867pt;}
.y2e0{bottom:351.858133pt;}
.y355{bottom:351.904267pt;}
.y3b4{bottom:351.908667pt;}
.y40{bottom:352.488461pt;}
.ybc{bottom:356.956933pt;}
.y232{bottom:356.988800pt;}
.y76{bottom:357.000000pt;}
.y100{bottom:358.242667pt;}
.y255{bottom:358.307600pt;}
.y284{bottom:361.051467pt;}
.y176{bottom:362.004533pt;}
.y2df{bottom:362.600800pt;}
.y2de{bottom:362.603467pt;}
.y3b3{bottom:362.651333pt;}
.y354{bottom:362.669067pt;}
.y31{bottom:362.719723pt;}
.y3f{bottom:363.372046pt;}
.y13d{bottom:363.722000pt;}
.ybb{bottom:370.983600pt;}
.y231{bottom:371.015467pt;}
.y75{bottom:371.026667pt;}
.yff{bottom:372.237333pt;}
.y2dd{bottom:373.346133pt;}
.y2dc{bottom:373.351333pt;}
.y353{bottom:373.411733pt;}
.y3e{bottom:374.255630pt;}
.y283{bottom:375.312800pt;}
.y30{bottom:375.537308pt;}
.y1e5{bottom:376.146133pt;}
.y13c{bottom:377.716667pt;}
.y175{bottom:381.688533pt;}
.y2db{bottom:384.094000pt;}
.y352{bottom:384.154400pt;}
.yba{bottom:385.010267pt;}
.y230{bottom:385.042133pt;}
.y74{bottom:385.053333pt;}
.y3d{bottom:385.139215pt;}
.yfe{bottom:386.232000pt;}
.y2f{bottom:388.354893pt;}
.y24d{bottom:388.593333pt;}
.y282{bottom:389.574133pt;}
.y13b{bottom:391.711333pt;}
.y174{bottom:393.019200pt;}
.y254{bottom:394.791600pt;}
.y2da{bottom:394.836667pt;}
.y2d9{bottom:394.839333pt;}
.y351{bottom:394.897067pt;}
.y3c{bottom:396.022800pt;}
.yb9{bottom:399.036933pt;}
.y22f{bottom:399.068800pt;}
.y73{bottom:399.080000pt;}
.yfd{bottom:400.226667pt;}
.y1d5{bottom:400.302000pt;}
.y2e{bottom:401.172478pt;}
.y281{bottom:403.835467pt;}
.y2d8{bottom:405.582000pt;}
.y2d7{bottom:405.597733pt;}
.y350{bottom:405.639733pt;}
.y34f{bottom:405.644133pt;}
.y1a9{bottom:406.399333pt;}
.y3b{bottom:408.078933pt;}
.y173{bottom:412.815200pt;}
.yb8{bottom:413.063600pt;}
.y22e{bottom:413.095467pt;}
.y72{bottom:413.106667pt;}
.yfc{bottom:414.221333pt;}
.y1d4{bottom:414.296667pt;}
.y2d6{bottom:416.340400pt;}
.y34e{bottom:416.386800pt;}
.y3b2{bottom:416.395733pt;}
.y34d{bottom:416.400133pt;}
.y280{bottom:418.096800pt;}
.y13a{bottom:419.044667pt;}
.y1a8{bottom:420.394000pt;}
.y2d{bottom:426.479733pt;}
.y2d5{bottom:427.083067pt;}
.yb7{bottom:427.090267pt;}
.y22d{bottom:427.122133pt;}
.y71{bottom:427.133333pt;}
.y3b1{bottom:427.138400pt;}
.y34c{bottom:427.142800pt;}
.yfb{bottom:428.216000pt;}
.y1d3{bottom:428.291333pt;}
.y253{bottom:431.742267pt;}
.y27f{bottom:432.358133pt;}
.y172{bottom:432.723200pt;}
.y1a7{bottom:434.388667pt;}
.y2d4{bottom:437.825733pt;}
.y3b0{bottom:437.881067pt;}
.y34b{bottom:437.885467pt;}
.yb6{bottom:441.116933pt;}
.y22c{bottom:441.148800pt;}
.y70{bottom:441.160000pt;}
.yfa{bottom:442.210667pt;}
.y1d2{bottom:442.286000pt;}
.y27e{bottom:446.619467pt;}
.y1a6{bottom:448.383333pt;}
.y2d3{bottom:448.568400pt;}
.y34a{bottom:448.628133pt;}
.y3af{bottom:448.641467pt;}
.y349{bottom:448.645867pt;}
.y139{bottom:451.974400pt;}
.y171{bottom:452.631200pt;}
.yb5{bottom:455.143600pt;}
.y22b{bottom:455.175467pt;}
.y6f{bottom:455.186667pt;}
.yf9{bottom:456.205333pt;}
.y1d1{bottom:456.280667pt;}
.y2c{bottom:456.948800pt;}
.y2d2{bottom:459.311067pt;}
.y3ae{bottom:459.384133pt;}
.y348{bottom:459.388533pt;}
.y27d{bottom:460.880800pt;}
.y1a5{bottom:462.378000pt;}
.y1a4{bottom:462.383333pt;}
.y138{bottom:465.969067pt;}
.y252{bottom:468.459600pt;}
.yb4{bottom:469.170267pt;}
.yb3{bottom:469.171467pt;}
.y22a{bottom:469.202133pt;}
.y6e{bottom:469.213333pt;}
.y2d1{bottom:470.053733pt;}
.y2d0{bottom:470.064267pt;}
.y3ad{bottom:470.126800pt;}
.y347{bottom:470.131200pt;}
.yf8{bottom:470.200000pt;}
.y1d0{bottom:470.275333pt;}
.y170{bottom:472.539200pt;}
.y2b{bottom:472.950800pt;}
.y27c{bottom:475.142133pt;}
.y1a3{bottom:476.383333pt;}
.y137{bottom:479.963733pt;}
.y258{bottom:480.443600pt;}
.y2cf{bottom:480.806933pt;}
.y3ac{bottom:480.869467pt;}
.y346{bottom:480.873867pt;}
.y3ab{bottom:480.887200pt;}
.yb2{bottom:483.198133pt;}
.y229{bottom:483.228800pt;}
.y6d{bottom:483.240000pt;}
.yf7{bottom:484.194667pt;}
.y1cf{bottom:484.270000pt;}
.y27b{bottom:489.403467pt;}
.y1a2{bottom:490.378000pt;}
.y2ce{bottom:491.549600pt;}
.y345{bottom:491.616533pt;}
.y3aa{bottom:491.629867pt;}
.y344{bottom:491.638800pt;}
.y16f{bottom:492.447200pt;}
.y136{bottom:493.958400pt;}
.yb1{bottom:497.226000pt;}
.yb0{bottom:497.228400pt;}
.y228{bottom:497.255467pt;}
.y6c{bottom:497.266667pt;}
.y257{bottom:498.111600pt;}
.yf6{bottom:498.189333pt;}
.y1ce{bottom:498.264667pt;}
.y2cd{bottom:502.292267pt;}
.y3a9{bottom:502.372533pt;}
.y343{bottom:502.381467pt;}
.y27a{bottom:503.664800pt;}
.y251{bottom:504.934267pt;}
.y135{bottom:507.953067pt;}
.yaf{bottom:511.255067pt;}
.y227{bottom:511.282133pt;}
.y6b{bottom:511.293333pt;}
.y2a{bottom:511.627867pt;}
.y29{bottom:511.636183pt;}
.yf5{bottom:512.184000pt;}
.y1cd{bottom:512.259333pt;}
.y16e{bottom:512.355200pt;}
.y2cc{bottom:513.034933pt;}
.y2cb{bottom:513.037600pt;}
.y3a8{bottom:513.115200pt;}
.y342{bottom:513.124133pt;}
.y1a1{bottom:517.708667pt;}
.y279{bottom:517.926133pt;}
.y1e{bottom:519.365127pt;}
.y134{bottom:521.947733pt;}
.y2ca{bottom:523.780267pt;}
.y2c9{bottom:523.785600pt;}
.y3a7{bottom:523.857867pt;}
.y341{bottom:523.866800pt;}
.y3a6{bottom:523.871200pt;}
.y28{bottom:524.309100pt;}
.yae{bottom:525.281733pt;}
.yad{bottom:525.284133pt;}
.y226{bottom:525.308800pt;}
.y6a{bottom:525.320000pt;}
.y24a{bottom:525.351867pt;}
.y24b{bottom:525.354267pt;}
.yf4{bottom:526.178667pt;}
.y1cc{bottom:526.254000pt;}
.y1cb{bottom:526.259333pt;}
.y1d{bottom:530.248712pt;}
.y278{bottom:532.187467pt;}
.y16d{bottom:532.263200pt;}
.y2c8{bottom:534.528267pt;}
.y340{bottom:534.609467pt;}
.y3a5{bottom:534.613867pt;}
.y133{bottom:535.942400pt;}
.y27{bottom:536.982017pt;}
.yac{bottom:539.310800pt;}
.y225{bottom:539.335467pt;}
.y69{bottom:539.346667pt;}
.yf3{bottom:540.173333pt;}
.yf2{bottom:540.226667pt;}
.y1ca{bottom:540.254000pt;}
.y249{bottom:540.257200pt;}
.y1c9{bottom:540.259333pt;}
.y1c{bottom:541.132297pt;}
.y1a0{bottom:545.044667pt;}
.y2c7{bottom:545.270933pt;}
.y2c6{bottom:545.273467pt;}
.y33f{bottom:545.352133pt;}
.y3a4{bottom:545.356533pt;}
.y33e{bottom:545.360933pt;}
.y277{bottom:546.448800pt;}
.y26{bottom:549.654933pt;}
.y25{bottom:549.666066pt;}
.y1b{bottom:552.015882pt;}
.y16c{bottom:552.171200pt;}
.yab{bottom:553.337467pt;}
.y224{bottom:553.362133pt;}
.y68{bottom:553.373333pt;}
.yaa{bottom:553.448000pt;}
.yf1{bottom:554.221333pt;}
.y1c8{bottom:554.254000pt;}
.y1c7{bottom:554.376800pt;}
.y2c5{bottom:556.016133pt;}
.y2c4{bottom:556.024133pt;}
.y3a3{bottom:556.099200pt;}
.y33d{bottom:556.103600pt;}
.y1fc{bottom:559.299333pt;}
.y276{bottom:560.710133pt;}
.y24{bottom:562.338983pt;}
.y1a{bottom:562.899467pt;}
.y132{bottom:563.275733pt;}
.y2c3{bottom:566.766800pt;}
.y33c{bottom:566.846267pt;}
.y33b{bottom:566.850800pt;}
.y223{bottom:567.388800pt;}
.y67{bottom:567.400000pt;}
.ya9{bottom:567.474667pt;}
.yf0{bottom:568.216000pt;}
.y1c6{bottom:568.371467pt;}
.y16b{bottom:572.079200pt;}
.y1fb{bottom:574.798000pt;}
.y19{bottom:574.955733pt;}
.y275{bottom:574.971467pt;}
.y23{bottom:575.011900pt;}
.y2c2{bottom:577.509467pt;}
.y33a{bottom:577.593467pt;}
.y3a2{bottom:577.597867pt;}
.y339{bottom:577.602267pt;}
.y19f{bottom:577.963733pt;}
.y222{bottom:581.415467pt;}
.y66{bottom:581.426667pt;}
.ya8{bottom:581.501333pt;}
.yef{bottom:582.210667pt;}
.y1c5{bottom:582.366133pt;}
.y22{bottom:587.684817pt;}
.y2c1{bottom:588.252133pt;}
.y2c0{bottom:588.262667pt;}
.y3a1{bottom:588.340533pt;}
.y338{bottom:588.344933pt;}
.y274{bottom:589.232800pt;}
.y1fa{bottom:590.296667pt;}
.y19e{bottom:591.958400pt;}
.y16a{bottom:591.987200pt;}
.y221{bottom:595.442133pt;}
.y65{bottom:595.453333pt;}
.ya7{bottom:595.528000pt;}
.yee{bottom:596.205333pt;}
.y131{bottom:596.221333pt;}
.y1c4{bottom:596.360800pt;}
.y2bf{bottom:599.005333pt;}
.y337{bottom:599.087600pt;}
.y336{bottom:599.092133pt;}
.y3a0{bottom:599.096533pt;}
.y21{bottom:600.364468pt;}
.y273{bottom:603.427467pt;}
.y18{bottom:604.284815pt;}
.y1f9{bottom:605.795333pt;}
.y19d{bottom:605.953067pt;}
.y220{bottom:609.468800pt;}
.y64{bottom:609.480000pt;}
.ya6{bottom:609.554667pt;}
.y2be{bottom:609.748000pt;}
.y335{bottom:609.834800pt;}
.y39f{bottom:609.839200pt;}
.y334{bottom:609.848000pt;}
.yed{bottom:610.200000pt;}
.y130{bottom:610.216000pt;}
.y1c3{bottom:610.355467pt;}
.y169{bottom:611.895200pt;}
.y20{bottom:613.037385pt;}
.y17{bottom:615.168400pt;}
.y272{bottom:617.688800pt;}
.y19c{bottom:619.947733pt;}
.y2bd{bottom:620.490667pt;}
.y39e{bottom:620.581867pt;}
.y39d{bottom:620.586267pt;}
.y333{bottom:620.590667pt;}
.y1f8{bottom:621.288800pt;}
.y21f{bottom:623.495467pt;}
.y63{bottom:623.506667pt;}
.ya5{bottom:623.581333pt;}
.yec{bottom:624.194667pt;}
.y12f{bottom:624.210667pt;}
.y1c2{bottom:624.350133pt;}
.y1f{bottom:625.710301pt;}
.y16{bottom:626.190800pt;}
.y2bc{bottom:631.233333pt;}
.y2bb{bottom:631.246400pt;}
.y39c{bottom:631.328933pt;}
.y332{bottom:631.333333pt;}
.y39b{bottom:631.346667pt;}
.y168{bottom:631.691200pt;}
.y271{bottom:631.950133pt;}
.y19b{bottom:633.942400pt;}
.y19a{bottom:633.953067pt;}
.y1f7{bottom:636.787467pt;}
.y21e{bottom:637.522133pt;}
.y62{bottom:637.533333pt;}
.ya4{bottom:637.608000pt;}
.yeb{bottom:638.189333pt;}
.y12e{bottom:638.205333pt;}
.y1c1{bottom:638.344800pt;}
.y2ba{bottom:641.989067pt;}
.y331{bottom:642.076000pt;}
.y39a{bottom:642.089333pt;}
.y167{bottom:643.021867pt;}
.y270{bottom:646.211467pt;}
.y199{bottom:647.947733pt;}
.y15{bottom:650.882533pt;}
.y21d{bottom:651.548800pt;}
.y61{bottom:651.560000pt;}
.ya3{bottom:651.634667pt;}
.yea{bottom:652.184000pt;}
.y12d{bottom:652.200000pt;}
.y1c0{bottom:652.339467pt;}
.y2b9{bottom:652.731733pt;}
.y330{bottom:652.827600pt;}
.y399{bottom:652.832000pt;}
.y26f{bottom:660.472800pt;}
.y198{bottom:661.942400pt;}
.y197{bottom:661.947733pt;}
.y166{bottom:662.817867pt;}
.y2b8{bottom:663.474400pt;}
.y32f{bottom:663.570267pt;}
.y398{bottom:663.574667pt;}
.y32e{bottom:663.579067pt;}
.y21c{bottom:665.575467pt;}
.y60{bottom:665.586667pt;}
.ya2{bottom:665.661333pt;}
.ye9{bottom:666.178667pt;}
.y12c{bottom:666.194667pt;}
.y1bf{bottom:666.334133pt;}
.y1f6{bottom:672.716933pt;}
.y2b7{bottom:674.217067pt;}
.y397{bottom:674.317333pt;}
.y32d{bottom:674.321733pt;}
.y396{bottom:674.335200pt;}
.y26e{bottom:674.734133pt;}
.y196{bottom:675.947733pt;}
.y21b{bottom:679.602133pt;}
.y5f{bottom:679.613333pt;}
.ya1{bottom:679.688000pt;}
.y12b{bottom:680.189333pt;}
.ye8{bottom:680.285333pt;}
.y1be{bottom:680.328800pt;}
.y1f5{bottom:680.944933pt;}
.y165{bottom:682.725867pt;}
.y2b6{bottom:684.959733pt;}
.y2b5{bottom:684.970267pt;}
.y32c{bottom:685.064400pt;}
.y32b{bottom:685.068933pt;}
.y395{bottom:685.077867pt;}
.y26d{bottom:688.995467pt;}
.y195{bottom:689.942400pt;}
.y194{bottom:689.953067pt;}
.y1f4{bottom:692.275600pt;}
.y21a{bottom:693.628800pt;}
.y5e{bottom:693.640000pt;}
.ya0{bottom:693.714667pt;}
.y12a{bottom:694.184000pt;}
.ye7{bottom:694.280000pt;}
.y1bd{bottom:694.323467pt;}
.y2b4{bottom:695.712933pt;}
.y32a{bottom:695.811600pt;}
.y329{bottom:695.816000pt;}
.y394{bottom:695.820533pt;}
.y164{bottom:702.633867pt;}
.y26c{bottom:703.256800pt;}
.y193{bottom:703.947733pt;}
.y2b3{bottom:706.455600pt;}
.y328{bottom:706.558667pt;}
.y327{bottom:706.563200pt;}
.y219{bottom:707.655467pt;}
.y5d{bottom:707.666667pt;}
.y9f{bottom:707.741333pt;}
.y129{bottom:708.178667pt;}
.ye6{bottom:708.274667pt;}
.y1bc{bottom:708.318133pt;}
.y10{bottom:715.758163pt;}
.y12{bottom:715.758667pt;}
.y2b2{bottom:717.198267pt;}
.y326{bottom:717.305867pt;}
.y325{bottom:717.323467pt;}
.y26b{bottom:717.518133pt;}
.y192{bottom:717.942400pt;}
.y191{bottom:717.953067pt;}
.y11{bottom:718.740933pt;}
.y218{bottom:721.682133pt;}
.y5c{bottom:721.693333pt;}
.y9e{bottom:721.768000pt;}
.y128{bottom:722.173333pt;}
.y127{bottom:722.194667pt;}
.ye5{bottom:722.269333pt;}
.y1bb{bottom:722.312800pt;}
.y163{bottom:722.541867pt;}
.y1f1{bottom:723.970533pt;}
.yd{bottom:727.758163pt;}
.yf{bottom:727.758667pt;}
.y2b1{bottom:727.940933pt;}
.y2b0{bottom:727.943600pt;}
.y324{bottom:728.066133pt;}
.ye{bottom:730.740933pt;}
.y26a{bottom:731.779467pt;}
.y190{bottom:731.947733pt;}
.y217{bottom:735.708800pt;}
.y5b{bottom:735.720000pt;}
.y9d{bottom:735.794667pt;}
.y126{bottom:736.189333pt;}
.ye4{bottom:736.264000pt;}
.y1ba{bottom:736.307467pt;}
.y2af{bottom:738.686267pt;}
.y2ae{bottom:738.696800pt;}
.y323{bottom:738.808800pt;}
.yc{bottom:739.758667pt;}
.y162{bottom:742.449867pt;}
.yb{bottom:742.740933pt;}
.y18f{bottom:745.947733pt;}
.y269{bottom:746.040800pt;}
.y2ad{bottom:749.439467pt;}
.y322{bottom:749.551467pt;}
.y216{bottom:749.735467pt;}
.y5a{bottom:749.746667pt;}
.y9c{bottom:749.821333pt;}
.y125{bottom:750.184000pt;}
.ye3{bottom:750.258667pt;}
.y1b9{bottom:750.302133pt;}
.y1f0{bottom:756.823867pt;}
.y18e{bottom:759.942400pt;}
.y2ac{bottom:760.182133pt;}
.y321{bottom:760.294133pt;}
.y268{bottom:760.302133pt;}
.y320{bottom:760.303067pt;}
.y393{bottom:760.312000pt;}
.ya{bottom:760.741467pt;}
.y161{bottom:762.357867pt;}
.y215{bottom:763.762133pt;}
.y59{bottom:763.773333pt;}
.y9b{bottom:763.848000pt;}
.y124{bottom:764.178667pt;}
.ye2{bottom:764.253333pt;}
.y1b8{bottom:764.296800pt;}
.y2ab{bottom:770.924800pt;}
.y31f{bottom:771.045733pt;}
.y392{bottom:771.054667pt;}
.y267{bottom:774.563467pt;}
.y9{bottom:776.741467pt;}
.y214{bottom:777.788800pt;}
.y58{bottom:777.800000pt;}
.y9a{bottom:777.874667pt;}
.y123{bottom:778.173333pt;}
.y122{bottom:778.232000pt;}
.ye1{bottom:778.248000pt;}
.y1b7{bottom:778.291467pt;}
.y2aa{bottom:781.667467pt;}
.y2a9{bottom:781.680667pt;}
.y31e{bottom:781.788400pt;}
.y31d{bottom:781.792933pt;}
.y391{bottom:781.797333pt;}
.y160{bottom:782.153867pt;}
.y18d{bottom:787.275733pt;}
.y266{bottom:788.824800pt;}
.y1ef{bottom:790.199867pt;}
.y213{bottom:791.815467pt;}
.y57{bottom:791.826667pt;}
.y99{bottom:791.901333pt;}
.y121{bottom:792.226667pt;}
.ye0{bottom:792.242667pt;}
.y1b6{bottom:792.286133pt;}
.y2a8{bottom:792.423333pt;}
.y31c{bottom:792.535600pt;}
.y390{bottom:792.540000pt;}
.y31b{bottom:792.548800pt;}
.y15f{bottom:793.484533pt;}
.y265{bottom:803.086133pt;}
.y2a7{bottom:803.166000pt;}
.y38f{bottom:803.282667pt;}
.y31a{bottom:803.291467pt;}
.y38e{bottom:803.300400pt;}
.y8{bottom:804.080000pt;}
.y212{bottom:805.842133pt;}
.y56{bottom:805.853333pt;}
.y98{bottom:805.928000pt;}
.y120{bottom:806.221333pt;}
.ydf{bottom:806.237333pt;}
.y1b5{bottom:806.280800pt;}
.y15e{bottom:813.280533pt;}
.y2a6{bottom:813.908667pt;}
.y319{bottom:814.034133pt;}
.y38d{bottom:814.043067pt;}
.y264{bottom:817.334133pt;}
.y211{bottom:819.868800pt;}
.y55{bottom:819.880000pt;}
.y97{bottom:819.954667pt;}
.y18c{bottom:820.178667pt;}
.y11f{bottom:820.216000pt;}
.yde{bottom:820.232000pt;}
.y1b4{bottom:820.275467pt;}
.y2a5{bottom:824.651333pt;}
.y318{bottom:824.776800pt;}
.y38c{bottom:824.785733pt;}
.y7{bottom:826.565600pt;}
.y1ee{bottom:829.530533pt;}
.y263{bottom:831.595467pt;}
.y15d{bottom:833.076533pt;}
.y210{bottom:833.895467pt;}
.y54{bottom:833.906667pt;}
.y96{bottom:833.981333pt;}
.y18b{bottom:834.178667pt;}
.y11e{bottom:834.210667pt;}
.ydd{bottom:834.226667pt;}
.y1b3{bottom:834.270133pt;}
.y2a4{bottom:835.394000pt;}
.y2a3{bottom:835.404533pt;}
.y38b{bottom:835.528400pt;}
.y317{bottom:835.537333pt;}
.y15c{bottom:844.407200pt;}
.y262{bottom:845.856800pt;}
.y2a2{bottom:846.147200pt;}
.y38a{bottom:846.271067pt;}
.y389{bottom:846.275467pt;}
.y316{bottom:846.280000pt;}
.y20f{bottom:847.922133pt;}
.y53{bottom:847.933333pt;}
.y95{bottom:848.008000pt;}
.y11d{bottom:848.205333pt;}
.ydc{bottom:848.221333pt;}
.y1b2{bottom:848.264800pt;}
.y2a1{bottom:856.889867pt;}
.y388{bottom:857.018133pt;}
.y315{bottom:857.022667pt;}
.y261{bottom:860.104800pt;}
.y20e{bottom:861.948800pt;}
.y52{bottom:861.960000pt;}
.y94{bottom:862.034667pt;}
.y11c{bottom:862.200000pt;}
.ydb{bottom:862.216000pt;}
.y1b1{bottom:862.259467pt;}
.y15b{bottom:864.091200pt;}
.y2a0{bottom:867.632533pt;}
.y314{bottom:867.765333pt;}
.y313{bottom:867.774133pt;}
.y387{bottom:867.778533pt;}
.y1ed{bottom:868.347867pt;}
.y3df{bottom:868.568267pt;}
.y3e0{bottom:868.569600pt;}
.y260{bottom:874.366133pt;}
.y15a{bottom:875.421867pt;}
.y20d{bottom:875.975467pt;}
.y51{bottom:875.986667pt;}
.y93{bottom:876.061333pt;}
.y11b{bottom:876.194667pt;}
.yda{bottom:876.210667pt;}
.y1b0{bottom:876.270133pt;}
.y29f{bottom:878.375200pt;}
.y29e{bottom:878.377733pt;}
.y312{bottom:878.516800pt;}
.y386{bottom:878.521200pt;}
.y13{bottom:878.803200pt;}
.y3dd{bottom:879.233600pt;}
.y3de{bottom:879.236267pt;}
.y25f{bottom:888.627467pt;}
.y29d{bottom:889.120400pt;}
.y311{bottom:889.259467pt;}
.y310{bottom:889.263867pt;}
.y3dc{bottom:889.901600pt;}
.y20c{bottom:890.002133pt;}
.y50{bottom:890.013333pt;}
.y92{bottom:890.088000pt;}
.y11a{bottom:890.189333pt;}
.yd9{bottom:890.205333pt;}
.y1af{bottom:890.264800pt;}
.y159{bottom:895.217867pt;}
.y30f{bottom:900.006533pt;}
.y30e{bottom:900.010933pt;}
.y385{bottom:900.024267pt;}
.y3da{bottom:900.568267pt;}
.y3db{bottom:900.569600pt;}
.y25e{bottom:902.866533pt;}
.y1ec{bottom:903.086533pt;}
.y20b{bottom:904.028800pt;}
.y4f{bottom:904.040000pt;}
.y91{bottom:904.114667pt;}
.y119{bottom:904.184000pt;}
.yd8{bottom:904.200000pt;}
.y1ae{bottom:904.259467pt;}
.y30d{bottom:910.753600pt;}
.y30c{bottom:910.762533pt;}
.y384{bottom:910.766933pt;}
.y3d8{bottom:911.229600pt;}
.y3e3{bottom:911.234933pt;}
.y3d9{bottom:911.236267pt;}
.y29c{bottom:913.199067pt;}
.y158{bottom:915.125867pt;}
.y25d{bottom:917.127867pt;}
.y1{bottom:917.164133pt;}
.y20a{bottom:918.055467pt;}
.y4e{bottom:918.066667pt;}
.y90{bottom:918.141333pt;}
.y118{bottom:918.178667pt;}
.yd7{bottom:918.194667pt;}
.y1ad{bottom:918.264800pt;}
.y30b{bottom:921.505200pt;}
.y383{bottom:921.509600pt;}
.y3d7{bottom:921.897600pt;}
.y3e2{bottom:921.902933pt;}
.y1eb{bottom:930.023067pt;}
.y1ea{bottom:930.025733pt;}
.y25c{bottom:931.389200pt;}
.y209{bottom:932.082133pt;}
.y4d{bottom:932.093333pt;}
.y8f{bottom:932.168000pt;}
.y117{bottom:932.173333pt;}
.y116{bottom:932.178667pt;}
.yd6{bottom:932.189333pt;}
.y30a{bottom:932.247867pt;}
.y382{bottom:932.252267pt;}
.y1ac{bottom:932.259467pt;}
.y309{bottom:932.261200pt;}
.y3d6{bottom:932.565600pt;}
.y157{bottom:935.033867pt;}
.y1e9{bottom:941.356400pt;}
.y381{bottom:942.994933pt;}
.y380{bottom:942.999333pt;}
.y308{bottom:943.003867pt;}
.y3d5{bottom:943.233600pt;}
.y25b{bottom:945.650533pt;}
.y208{bottom:946.108800pt;}
.y4c{bottom:946.120000pt;}
.y115{bottom:946.173333pt;}
.y29b{bottom:946.175333pt;}
.yd5{bottom:946.184000pt;}
.y8e{bottom:946.194667pt;}
.y114{bottom:946.209067pt;}
.y1ab{bottom:946.254133pt;}
.y37f{bottom:953.742000pt;}
.y307{bottom:953.746533pt;}
.y37e{bottom:953.751467pt;}
.y3d4{bottom:953.901600pt;}
.y156{bottom:954.943467pt;}
.y25a{bottom:959.911867pt;}
.y207{bottom:960.135467pt;}
.y4b{bottom:960.146667pt;}
.yd4{bottom:960.178667pt;}
.y113{bottom:960.203733pt;}
.y8d{bottom:960.221333pt;}
.y1f3{bottom:962.922533pt;}
.y306{bottom:964.489200pt;}
.y305{bottom:964.493600pt;}
.y37d{bottom:964.494133pt;}
.y3d2{bottom:964.568267pt;}
.y3d3{bottom:964.569600pt;}
.y29a{bottom:973.587333pt;}
.y1aa{bottom:973.587467pt;}
.y206{bottom:974.162133pt;}
.y259{bottom:974.173200pt;}
.y4a{bottom:974.173333pt;}
.y112{bottom:974.198400pt;}
.y8c{bottom:974.248000pt;}
.y187{bottom:975.191467pt;}
.y1f2{bottom:975.195867pt;}
.y304{bottom:975.236267pt;}
.y37c{bottom:975.236800pt;}
.y3e1{bottom:975.240267pt;}
.y186{bottom:975.269867pt;}
.y2{bottom:990.655467pt;}
.yd3{bottom:998.821467pt;}
.yd2{bottom:1001.707467pt;}
.y48{bottom:1001.752000pt;}
.y49{bottom:1002.652267pt;}
.h17{height:14.249479pt;}
.ha{height:20.867689pt;}
.h1d{height:24.304000pt;}
.h15{height:24.441620pt;}
.hc{height:31.366478pt;}
.h4{height:34.112000pt;}
.h5{height:34.118933pt;}
.h6{height:34.638209pt;}
.h3{height:35.249242pt;}
.hb{height:35.792986pt;}
.he{height:36.334003pt;}
.h19{height:36.736000pt;}
.hf{height:36.894530pt;}
.h1a{height:37.302722pt;}
.hd{height:37.960883pt;}
.h13{height:37.994523pt;}
.h18{height:38.261333pt;}
.h10{height:38.546451pt;}
.h14{height:41.984000pt;}
.h1e{height:42.014933pt;}
.h21{height:42.037333pt;}
.h1f{height:42.059200pt;}
.h20{height:42.073067pt;}
.h24{height:42.126400pt;}
.h22{height:42.250667pt;}
.h23{height:42.428267pt;}
.h16{height:42.631656pt;}
.h11{height:47.264000pt;}
.h12{height:47.272000pt;}
.h9{height:52.480000pt;}
.h1b{height:59.397333pt;}
.h7{height:73.752768pt;}
.h8{height:73.753301pt;}
.h2{height:78.445519pt;}
.h1c{height:82.058667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:37.795200pt;}
.x40{left:43.128533pt;}
.x76{left:44.280533pt;}
.x25{left:52.909867pt;}
.x9b{left:56.692933pt;}
.x75{left:57.805600pt;}
.x49{left:59.952133pt;}
.x7c{left:61.314800pt;}
.x4a{left:62.238800pt;}
.x3{left:64.252000pt;}
.xa5{left:67.874133pt;}
.x62{left:69.585333pt;}
.xe{left:70.580971pt;}
.x17{left:71.811067pt;}
.x4b{left:74.596000pt;}
.x21{left:80.091333pt;}
.xc2{left:83.149600pt;}
.x68{left:84.262400pt;}
.x57{left:88.355867pt;}
.xb0{left:89.582800pt;}
.x7f{left:93.358667pt;}
.x80{left:95.524000pt;}
.x9c{left:99.448133pt;}
.x58{left:102.158400pt;}
.xaa{left:104.027333pt;}
.xa{left:106.862533pt;}
.xb{left:109.567067pt;}
.x9e{left:110.650800pt;}
.xad{left:111.685600pt;}
.x4c{left:112.908400pt;}
.x69{left:114.315333pt;}
.x4d{left:116.688267pt;}
.xa0{left:119.635867pt;}
.xc4{left:135.285200pt;}
.x7d{left:137.771333pt;}
.x6{left:140.372667pt;}
.x7a{left:142.634400pt;}
.xa3{left:147.107600pt;}
.x7b{left:148.243733pt;}
.xc3{left:149.437867pt;}
.xc5{left:157.544533pt;}
.x4e{left:158.650400pt;}
.xa7{left:161.328133pt;}
.x4f{left:164.184933pt;}
.x9d{left:166.768267pt;}
.x4{left:169.259333pt;}
.x77{left:175.149600pt;}
.x13{left:177.498595pt;}
.x71{left:179.320533pt;}
.x56{left:183.553600pt;}
.x18{left:186.303733pt;}
.x72{left:188.336400pt;}
.xf{left:192.711200pt;}
.x10{left:195.212000pt;}
.x50{left:198.848533pt;}
.x8{left:202.119333pt;}
.x51{left:204.383200pt;}
.xa2{left:206.873467pt;}
.x32{left:209.477067pt;}
.x5a{left:211.624800pt;}
.xae{left:218.692000pt;}
.xb1{left:221.850933pt;}
.x19{left:224.406533pt;}
.xa4{left:228.882400pt;}
.x5b{left:230.852533pt;}
.x6c{left:235.292133pt;}
.x52{left:241.772267pt;}
.x5c{left:244.441733pt;}
.x53{left:247.306800pt;}
.x2d{left:249.410133pt;}
.xa9{left:252.833600pt;}
.x9f{left:255.010533pt;}
.x24{left:259.184667pt;}
.xa6{left:264.347200pt;}
.x54{left:267.125067pt;}
.x59{left:268.118000pt;}
.x1{left:269.134800pt;}
.x9{left:270.968533pt;}
.x55{left:280.927600pt;}
.x5{left:282.799200pt;}
.x73{left:284.774400pt;}
.x47{left:287.588133pt;}
.x74{left:290.383600pt;}
.x14{left:291.734000pt;}
.x6a{left:293.082400pt;}
.x15{left:294.480267pt;}
.x7{left:295.467093pt;}
.x48{left:296.706667pt;}
.x6b{left:303.162267pt;}
.x1c{left:306.730533pt;}
.x16{left:311.472533pt;}
.x46{left:316.498800pt;}
.x2{left:318.372133pt;}
.x7e{left:322.271733pt;}
.xab{left:325.781333pt;}
.xa8{left:329.593067pt;}
.xac{left:330.647333pt;}
.xa1{left:336.196933pt;}
.xaf{left:353.481867pt;}
.x30{left:356.112400pt;}
.x31{left:370.128267pt;}
.x6d{left:378.796933pt;}
.x1f{left:383.730933pt;}
.x41{left:387.033733pt;}
.x20{left:396.403733pt;}
.x78{left:400.903600pt;}
.x26{left:411.960533pt;}
.x79{left:415.346133pt;}
.x22{left:424.027333pt;}
.xb5{left:426.929200pt;}
.xc{left:435.089333pt;}
.xd{left:438.112267pt;}
.x2b{left:439.036267pt;}
.x82{left:442.207067pt;}
.x37{left:447.056533pt;}
.x8f{left:453.386000pt;}
.xc1{left:456.259333pt;}
.xb9{left:457.909467pt;}
.x38{left:460.101600pt;}
.xb4{left:461.611600pt;}
.xb6{left:462.611333pt;}
.x85{left:469.598133pt;}
.x63{left:471.138800pt;}
.x87{left:473.162000pt;}
.xb3{left:480.212667pt;}
.x92{left:486.657600pt;}
.x8d{left:490.140000pt;}
.x5d{left:491.503600pt;}
.x60{left:496.665333pt;}
.x28{left:499.075867pt;}
.x61{left:502.937200pt;}
.x42{left:504.331467pt;}
.x5e{left:505.519467pt;}
.x3c{left:513.510667pt;}
.x33{left:515.830533pt;}
.x3d{left:519.867867pt;}
.xb8{left:523.745600pt;}
.x8e{left:525.226533pt;}
.x34{left:528.875733pt;}
.xb2{left:532.992400pt;}
.xc7{left:536.811867pt;}
.x81{left:538.896000pt;}
.x11{left:541.538267pt;}
.x6e{left:542.950667pt;}
.x12{left:544.644800pt;}
.x6f{left:548.559867pt;}
.xc6{left:550.292133pt;}
.x29{left:552.845600pt;}
.x2e{left:555.286667pt;}
.x35{left:559.542267pt;}
.x2f{left:561.602533pt;}
.x93{left:571.138933pt;}
.x36{left:572.587467pt;}
.x89{left:586.044533pt;}
.x97{left:591.394000pt;}
.x5f{left:592.570133pt;}
.x95{left:594.042933pt;}
.x88{left:601.302933pt;}
.x1a{left:607.111867pt;}
.x70{left:610.270933pt;}
.x9a{left:611.853467pt;}
.x3a{left:613.612000pt;}
.x3e{left:615.776133pt;}
.xbb{left:618.897733pt;}
.x1b{left:619.977600pt;}
.xbe{left:620.915467pt;}
.x3f{left:622.133333pt;}
.x3b{left:627.627867pt;}
.x91{left:631.478667pt;}
.xba{left:635.140800pt;}
.x8b{left:637.920533pt;}
.x83{left:640.766400pt;}
.x99{left:643.818533pt;}
.xc0{left:649.436000pt;}
.xbf{left:651.418267pt;}
.x64{left:653.882933pt;}
.x90{left:655.243467pt;}
.x67{left:657.634533pt;}
.x86{left:660.360800pt;}
.xbd{left:667.435600pt;}
.x43{left:671.464267pt;}
.x65{left:672.624000pt;}
.x66{left:678.214533pt;}
.x44{left:679.360133pt;}
.x1d{left:680.551067pt;}
.xbc{left:681.769067pt;}
.x27{left:683.902933pt;}
.x45{left:686.724133pt;}
.x1e{left:693.223733pt;}
.x2a{left:695.961600pt;}
.x98{left:697.207200pt;}
.x94{left:698.866000pt;}
.x8c{left:711.293200pt;}
.xb7{left:712.527867pt;}
.x84{left:713.768533pt;}
.x96{left:720.108667pt;}
.x39{left:732.506000pt;}
.x8a{left:738.993867pt;}
.x2c{left:745.713733pt;}
}




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