
    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_d80871ff1c0150ba3f4c4021.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_31166a9c414261ba106bd94d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_62769c35d20caa1cf2b85f04.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_33955b8822d51fbfeb1990e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_59dfb5fdd5d447d1b8d16770.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bfa94c8c6485f20de69f5ae0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;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:ffa;src:url('chunks/assets/font_290a7f0d40592b89f51aa649.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090000;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:ffb;src:url('chunks/assets/font_11edfae8e1f56a853b908394.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.197000;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:ffc;src:url('chunks/assets/font_3b6a0e21dd78e3dc2040bfa6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;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:ffd;src:url('chunks/assets/font_0a898a226d203416f6ec30a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.328000;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:ffe;src:url('chunks/assets/font_fd2d8fb958868b7259123fd1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.126000;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:fff;src:url('chunks/assets/font_0a1d4e65ddf1a6d5a2185a50.woff2')format("woff");}.fff{font-family:fff;line-height:1.144000;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:ff10;src:url('chunks/assets/font_f7da0f5eca5efd6f841e6c33.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-19.199890px;}
.v2{vertical-align:-15.000092px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.000000px;}
.v4{vertical-align:19.192749px;}
.v1{vertical-align:24.000000px;}
.ls13{letter-spacing:-2.880000px;}
.ls8{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.630000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000004px;}
.lse{letter-spacing:0.000005px;}
.lsf{letter-spacing:0.000007px;}
.ls6{letter-spacing:0.000009px;}
.lsa{letter-spacing:0.000011px;}
.ls10{letter-spacing:0.000032px;}
.lsd{letter-spacing:0.000050px;}
.lsc{letter-spacing:0.000051px;}
.ls11{letter-spacing:0.000078px;}
.ls2{letter-spacing:0.008976px;}
.ls26{letter-spacing:0.048000px;}
.ls25{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.588000px;}
.ls23{letter-spacing:0.600000px;}
.ls24{letter-spacing:0.600002px;}
.ls1f{letter-spacing:0.731924px;}
.ls1d{letter-spacing:0.744009px;}
.ls16{letter-spacing:0.779989px;}
.ls1c{letter-spacing:0.811157px;}
.ls1e{letter-spacing:0.815420px;}
.ls1b{letter-spacing:0.829256px;}
.ls14{letter-spacing:0.839905px;}
.ls15{letter-spacing:0.839956px;}
.ls22{letter-spacing:0.839996px;}
.ls4{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.840002px;}
.ls19{letter-spacing:0.845398px;}
.ls17{letter-spacing:0.851990px;}
.ls5{letter-spacing:0.900000px;}
.ls21{letter-spacing:0.900015px;}
.ls20{letter-spacing:0.965973px;}
.ls3{letter-spacing:1.711262px;}
.ls1{letter-spacing:3.360000px;}
.ls7{letter-spacing:15.000000px;}
.ls12{letter-spacing:228.000092px;}
.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;}
}
.ws1d{word-spacing:-15.900000px;}
.ws1c{word-spacing:-15.840000px;}
.wsf8{word-spacing:-15.600000px;}
.ws45{word-spacing:-15.000000px;}
.wsc2{word-spacing:-14.100000px;}
.wsc4{word-spacing:-13.332000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws9e{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws81{word-spacing:-11.340000px;}
.wsef{word-spacing:-11.088000px;}
.wsd1{word-spacing:-10.500000px;}
.wsc3{word-spacing:-9.870000px;}
.ws2{word-spacing:-9.408000px;}
.ws10b{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws15c{word-spacing:-8.400000px;}
.wsc7{word-spacing:-7.500000px;}
.ws9f{word-spacing:-6.000000px;}
.ws1e{word-spacing:-1.890000px;}
.ws9a{word-spacing:-1.380000px;}
.ws15a{word-spacing:-1.248000px;}
.ws10f{word-spacing:-1.200000px;}
.ws9b{word-spacing:-1.020000px;}
.ws10e{word-spacing:-0.912000px;}
.ws43{word-spacing:-0.900000px;}
.ws25{word-spacing:-0.840000px;}
.wsf2{word-spacing:-0.780000px;}
.wsf1{word-spacing:-0.720000px;}
.ws75{word-spacing:-0.660000px;}
.wsff{word-spacing:-0.600000px;}
.ws131{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.540000px;}
.ws15b{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.480000px;}
.ws58{word-spacing:-0.420000px;}
.ws100{word-spacing:-0.360000px;}
.ws106{word-spacing:-0.300000px;}
.ws134{word-spacing:-0.288000px;}
.ws35{word-spacing:-0.240000px;}
.wsa0{word-spacing:-0.192000px;}
.wsa7{word-spacing:-0.180000px;}
.ws157{word-spacing:-0.144000px;}
.wsf6{word-spacing:-0.120000px;}
.ws156{word-spacing:-0.096000px;}
.ws57{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.wsf3{word-spacing:-0.042000px;}
.ws1b{word-spacing:-0.008976px;}
.ws0{word-spacing:0.000000px;}
.ws130{word-spacing:0.048000px;}
.ws53{word-spacing:0.060000px;}
.wsd0{word-spacing:0.096000px;}
.ws2e{word-spacing:0.120000px;}
.ws46{word-spacing:0.180000px;}
.ws48{word-spacing:0.240000px;}
.ws4a{word-spacing:0.300000px;}
.wsa6{word-spacing:0.360000px;}
.wsbf{word-spacing:0.420000px;}
.ws142{word-spacing:0.432000px;}
.wsdb{word-spacing:0.480000px;}
.wsda{word-spacing:0.540000px;}
.ws5a{word-spacing:0.600000px;}
.ws3c{word-spacing:0.660000px;}
.ws116{word-spacing:0.672000px;}
.ws63{word-spacing:0.720000px;}
.ws149{word-spacing:0.768000px;}
.ws23{word-spacing:0.780000px;}
.ws11c{word-spacing:0.816000px;}
.ws72{word-spacing:0.840000px;}
.ws13f{word-spacing:0.864000px;}
.ws41{word-spacing:0.900000px;}
.ws129{word-spacing:0.912000px;}
.wsce{word-spacing:0.960000px;}
.ws3d{word-spacing:1.020000px;}
.ws154{word-spacing:1.056000px;}
.ws3e{word-spacing:1.080000px;}
.ws11f{word-spacing:1.104000px;}
.wsd9{word-spacing:1.140000px;}
.ws38{word-spacing:1.200000px;}
.ws115{word-spacing:1.248000px;}
.ws59{word-spacing:1.260000px;}
.wsfc{word-spacing:1.320000px;}
.ws124{word-spacing:1.344000px;}
.wsc1{word-spacing:1.380000px;}
.wseb{word-spacing:1.440000px;}
.ws12f{word-spacing:1.488000px;}
.ws60{word-spacing:1.500000px;}
.ws133{word-spacing:1.536000px;}
.ws34{word-spacing:1.560000px;}
.ws114{word-spacing:1.584000px;}
.ws31{word-spacing:1.620000px;}
.ws32{word-spacing:1.680000px;}
.ws151{word-spacing:1.728000px;}
.wscb{word-spacing:1.740000px;}
.ws112{word-spacing:1.776000px;}
.ws5e{word-spacing:1.800000px;}
.ws160{word-spacing:1.824000px;}
.ws27{word-spacing:1.860000px;}
.ws17{word-spacing:1.920000px;}
.ws146{word-spacing:1.968000px;}
.ws66{word-spacing:1.980000px;}
.ws97{word-spacing:2.040000px;}
.ws113{word-spacing:2.064000px;}
.ws3b{word-spacing:2.100000px;}
.ws12c{word-spacing:2.112000px;}
.ws83{word-spacing:2.160000px;}
.ws54{word-spacing:2.220000px;}
.ws13c{word-spacing:2.256000px;}
.ws73{word-spacing:2.280000px;}
.ws88{word-spacing:2.340000px;}
.ws145{word-spacing:2.352000px;}
.wsd7{word-spacing:2.400000px;}
.ws14c{word-spacing:2.447995px;}
.ws5c{word-spacing:2.460000px;}
.ws84{word-spacing:2.520000px;}
.ws119{word-spacing:2.544000px;}
.ws8c{word-spacing:2.580000px;}
.ws14{word-spacing:2.640000px;}
.wsf5{word-spacing:2.688000px;}
.wsa3{word-spacing:2.700000px;}
.ws118{word-spacing:2.736000px;}
.wsca{word-spacing:2.760000px;}
.ws11a{word-spacing:2.784000px;}
.wsa8{word-spacing:2.820000px;}
.ws11d{word-spacing:2.832000px;}
.wsa2{word-spacing:2.880000px;}
.ws128{word-spacing:2.928000px;}
.ws22{word-spacing:2.940000px;}
.ws159{word-spacing:2.976000px;}
.ws11{word-spacing:3.000000px;}
.ws110{word-spacing:3.024000px;}
.wsb{word-spacing:3.059994px;}
.ws117{word-spacing:3.072000px;}
.wsc8{word-spacing:3.120000px;}
.ws2d{word-spacing:3.180000px;}
.ws51{word-spacing:3.240000px;}
.wsf4{word-spacing:3.264000px;}
.ws2a{word-spacing:3.300000px;}
.ws14b{word-spacing:3.312000px;}
.ws47{word-spacing:3.360000px;}
.wsb2{word-spacing:3.420000px;}
.ws132{word-spacing:3.456000px;}
.ws5d{word-spacing:3.480000px;}
.ws30{word-spacing:3.540000px;}
.ws152{word-spacing:3.552000px;}
.ws19{word-spacing:3.600000px;}
.ws74{word-spacing:3.660000px;}
.ws29{word-spacing:3.720000px;}
.ws4f{word-spacing:3.780000px;}
.ws121{word-spacing:3.792000px;}
.ws4d{word-spacing:3.840000px;}
.ws111{word-spacing:3.888000px;}
.ws4e{word-spacing:3.900000px;}
.ws12a{word-spacing:3.936000px;}
.ws7d{word-spacing:3.960000px;}
.ws148{word-spacing:3.984000px;}
.ws6c{word-spacing:4.020000px;}
.ws143{word-spacing:4.032000px;}
.ws15{word-spacing:4.080000px;}
.wsc{word-spacing:4.140000px;}
.ws10c{word-spacing:4.176000px;}
.wsaa{word-spacing:4.200000px;}
.ws155{word-spacing:4.224000px;}
.ws9d{word-spacing:4.259994px;}
.wsec{word-spacing:4.272000px;}
.ws40{word-spacing:4.320000px;}
.ws150{word-spacing:4.368000px;}
.ws9c{word-spacing:4.380000px;}
.ws144{word-spacing:4.416000px;}
.ws69{word-spacing:4.440000px;}
.ws158{word-spacing:4.464000px;}
.ws56{word-spacing:4.500000px;}
.ws137{word-spacing:4.512000px;}
.ws89{word-spacing:4.560000px;}
.wsed{word-spacing:4.608000px;}
.ws64{word-spacing:4.620000px;}
.ws24{word-spacing:4.680000px;}
.ws147{word-spacing:4.704000px;}
.ws36{word-spacing:4.740000px;}
.ws87{word-spacing:4.800000px;}
.ws11b{word-spacing:4.848000px;}
.wsbc{word-spacing:4.860000px;}
.ws153{word-spacing:4.896000px;}
.ws6b{word-spacing:4.920000px;}
.ws2c{word-spacing:4.980000px;}
.ws33{word-spacing:5.040000px;}
.ws120{word-spacing:5.088000px;}
.ws2f{word-spacing:5.100000px;}
.ws8f{word-spacing:5.159994px;}
.ws12{word-spacing:5.220000px;}
.ws141{word-spacing:5.232000px;}
.ws13{word-spacing:5.280000px;}
.wsd5{word-spacing:5.340000px;}
.ws21{word-spacing:5.400000px;}
.ws95{word-spacing:5.460000px;}
.ws10d{word-spacing:5.472000px;}
.ws50{word-spacing:5.520000px;}
.ws13d{word-spacing:5.568000px;}
.wsa4{word-spacing:5.580000px;}
.ws94{word-spacing:5.640000px;}
.ws136{word-spacing:5.664000px;}
.wsbd{word-spacing:5.700000px;}
.ws8d{word-spacing:5.760000px;}
.ws108{word-spacing:5.820000px;}
.ws86{word-spacing:5.880000px;}
.ws28{word-spacing:5.940000px;}
.ws55{word-spacing:6.000000px;}
.ws49{word-spacing:6.060000px;}
.wsbe{word-spacing:6.120000px;}
.wsc0{word-spacing:6.180000px;}
.ws90{word-spacing:6.240000px;}
.ws125{word-spacing:6.288000px;}
.ws37{word-spacing:6.300000px;}
.ws123{word-spacing:6.336000px;}
.ws8b{word-spacing:6.360000px;}
.ws92{word-spacing:6.420000px;}
.ws6d{word-spacing:6.480000px;}
.ws15e{word-spacing:6.528000px;}
.ws85{word-spacing:6.600000px;}
.ws20{word-spacing:6.660000px;}
.ws82{word-spacing:6.720000px;}
.ws68{word-spacing:6.780000px;}
.ws98{word-spacing:6.840000px;}
.wsde{word-spacing:6.900000px;}
.wsd{word-spacing:6.960000px;}
.ws26{word-spacing:7.020000px;}
.wsfb{word-spacing:7.080000px;}
.ws16{word-spacing:7.140000px;}
.ws12e{word-spacing:7.152000px;}
.ws9{word-spacing:7.200000px;}
.ws76{word-spacing:7.260000px;}
.ws8e{word-spacing:7.320000px;}
.ws12b{word-spacing:7.344000px;}
.ws7c{word-spacing:7.380000px;}
.ws3f{word-spacing:7.440000px;}
.ws14d{word-spacing:7.488000px;}
.wsb6{word-spacing:7.500000px;}
.ws62{word-spacing:7.560000px;}
.ws13e{word-spacing:7.584000px;}
.ws5f{word-spacing:7.620000px;}
.ws93{word-spacing:7.680000px;}
.ws42{word-spacing:7.740000px;}
.wsa9{word-spacing:7.800000px;}
.wsa{word-spacing:7.860000px;}
.ws126{word-spacing:7.872000px;}
.ws8{word-spacing:7.920000px;}
.wsd2{word-spacing:7.980000px;}
.ws105{word-spacing:8.040000px;}
.ws13a{word-spacing:8.064000px;}
.ws7e{word-spacing:8.100000px;}
.ws6e{word-spacing:8.160000px;}
.ws65{word-spacing:8.220000px;}
.wsf{word-spacing:8.280000px;}
.ws71{word-spacing:8.340000px;}
.wsdc{word-spacing:8.400000px;}
.wsb1{word-spacing:8.520000px;}
.ws91{word-spacing:8.580000px;}
.ws103{word-spacing:8.640000px;}
.wsad{word-spacing:8.700000px;}
.ws3a{word-spacing:8.760000px;}
.wse0{word-spacing:8.820000px;}
.wsee{word-spacing:8.832000px;}
.ws4c{word-spacing:8.880000px;}
.ws4b{word-spacing:8.940000px;}
.ws11e{word-spacing:8.976000px;}
.ws8a{word-spacing:9.000000px;}
.wsb5{word-spacing:9.120000px;}
.wscf{word-spacing:9.180000px;}
.ws7f{word-spacing:9.240000px;}
.wsaf{word-spacing:9.300000px;}
.ws18{word-spacing:9.360000px;}
.wsdd{word-spacing:9.420000px;}
.ws61{word-spacing:9.480000px;}
.ws135{word-spacing:9.504000px;}
.wsb3{word-spacing:9.720000px;}
.ws13b{word-spacing:9.744000px;}
.wsf7{word-spacing:9.780000px;}
.ws77{word-spacing:9.840000px;}
.wse1{word-spacing:9.900000px;}
.wsc5{word-spacing:9.960000px;}
.ws7a{word-spacing:10.020000px;}
.wsb7{word-spacing:10.080000px;}
.ws39{word-spacing:10.200000px;}
.ws79{word-spacing:10.260000px;}
.wsd4{word-spacing:10.320000px;}
.ws52{word-spacing:10.380000px;}
.ws5b{word-spacing:10.440000px;}
.ws14f{word-spacing:10.512000px;}
.ws102{word-spacing:10.560000px;}
.ws10a{word-spacing:10.620000px;}
.ws6a{word-spacing:10.680000px;}
.wsfd{word-spacing:10.740000px;}
.wsd8{word-spacing:10.860000px;}
.wsae{word-spacing:10.980000px;}
.ws139{word-spacing:10.992000px;}
.wsc6{word-spacing:11.040000px;}
.ws78{word-spacing:11.280000px;}
.wsb8{word-spacing:11.340000px;}
.wsb9{word-spacing:11.460000px;}
.ws70{word-spacing:11.580000px;}
.ws127{word-spacing:11.616000px;}
.wsd6{word-spacing:11.640000px;}
.ws140{word-spacing:11.808000px;}
.ws96{word-spacing:11.880000px;}
.ws7b{word-spacing:11.940000px;}
.ws104{word-spacing:12.000000px;}
.wsd3{word-spacing:12.180000px;}
.ws122{word-spacing:12.192000px;}
.wsb4{word-spacing:12.540000px;}
.ws14e{word-spacing:12.576000px;}
.wsc9{word-spacing:12.600000px;}
.ws109{word-spacing:12.720000px;}
.ws101{word-spacing:12.900000px;}
.wsfe{word-spacing:13.080000px;}
.wsa5{word-spacing:13.500000px;}
.ws138{word-spacing:13.584000px;}
.wsf0{word-spacing:13.620000px;}
.ws10{word-spacing:13.800000px;}
.wse{word-spacing:13.920000px;}
.wsbb{word-spacing:14.100000px;}
.ws6f{word-spacing:14.340000px;}
.ws44{word-spacing:14.820000px;}
.wsb0{word-spacing:14.880000px;}
.wsfa{word-spacing:15.000000px;}
.wsba{word-spacing:15.420000px;}
.wsab{word-spacing:15.540000px;}
.ws12d{word-spacing:15.648000px;}
.ws67{word-spacing:15.840000px;}
.ws107{word-spacing:16.620000px;}
.ws2b{word-spacing:16.740000px;}
.ws80{word-spacing:17.100000px;}
.wsf9{word-spacing:18.060000px;}
.wsea{word-spacing:18.420000px;}
.wsdf{word-spacing:18.540000px;}
.ws15f{word-spacing:18.912000px;}
.ws99{word-spacing:19.500000px;}
.ws1f{word-spacing:19.668000px;}
.wscd{word-spacing:19.980000px;}
.wscc{word-spacing:21.480000px;}
.wsac{word-spacing:21.900000px;}
.ws14a{word-spacing:22.176000px;}
.wse8{word-spacing:72.096000px;}
.ws15d{word-spacing:73.056000px;}
.wse7{word-spacing:76.449534px;}
.wse4{word-spacing:121.329600px;}
.wse5{word-spacing:156.000000px;}
.wse9{word-spacing:164.640000px;}
.wsa1{word-spacing:173.327982px;}
.wse6{word-spacing:204.000000px;}
.wse3{word-spacing:216.000000px;}
.wse2{word-spacing:316.127908px;}
._51{margin-left:-26.040040px;}
._3f{margin-left:-19.452086px;}
._3e{margin-left:-17.507923px;}
._40{margin-left:-16.056101px;}
._e{margin-left:-13.332004px;}
._38{margin-left:-12.173995px;}
._f{margin-left:-11.087981px;}
._3c{margin-left:-9.538771px;}
._4f{margin-left:-8.113172px;}
._3b{margin-left:-7.053147px;}
._12{margin-left:-4.926000px;}
._1{margin-left:-3.892800px;}
._4{margin-left:-2.868000px;}
._0{margin-left:-1.632000px;}
._2{width:1.620000px;}
._10{width:2.728800px;}
._8{width:3.996000px;}
._7{width:4.998000px;}
._c{width:6.084000px;}
._5{width:7.696668px;}
._b{width:9.097292px;}
._a{width:10.548000px;}
._11{width:12.084023px;}
._52{width:13.319953px;}
._13{width:14.815193px;}
._d{width:17.094000px;}
._9{width:18.407981px;}
._3d{width:19.433991px;}
._67{width:22.776092px;}
._50{width:25.980047px;}
._66{width:28.200001px;}
._3a{width:30.000001px;}
._39{width:32.999997px;}
._42{width:37.007978px;}
._3{width:40.084174px;}
._14{width:42.480000px;}
._69{width:56.255991px;}
._5a{width:59.088023px;}
._56{width:64.428000px;}
._68{width:73.055991px;}
._5c{width:75.119908px;}
._35{width:79.476018px;}
._18{width:81.024066px;}
._58{width:99.120000px;}
._44{width:101.039978px;}
._37{width:115.583890px;}
._20{width:119.616073px;}
._57{width:123.120000px;}
._53{width:126.719908px;}
._1d{width:136.320018px;}
._1a{width:137.723977px;}
._62{width:143.999890px;}
._19{width:156.768000px;}
._23{width:168.000018px;}
._59{width:171.120000px;}
._2a{width:176.016018px;}
._2d{width:181.344018px;}
._1e{width:182.976018px;}
._2e{width:191.531890px;}
._29{width:194.015890px;}
._2b{width:199.344073px;}
._2c{width:211.919883px;}
._60{width:215.999908px;}
._5f{width:219.120000px;}
._33{width:226.932018px;}
._2f{width:235.296018px;}
._25{width:237.312018px;}
._54{width:238.656000px;}
._17{width:245.855890px;}
._1f{width:259.535890px;}
._27{width:267.456018px;}
._28{width:274.704018px;}
._55{width:276.000000px;}
._31{width:284.244018px;}
._21{width:308.016018px;}
._34{width:331.295890px;}
._30{width:332.591890px;}
._22{width:353.903890px;}
._24{width:360.672073px;}
._32{width:371.676073px;}
._1b{width:384.863890px;}
._36{width:393.312018px;}
._26{width:432.863890px;}
._15{width:450.671977px;}
._5e{width:454.704023px;}
._5d{width:472.368023px;}
._16{width:475.440114px;}
._5b{width:479.040023px;}
._65{width:522.592823px;}
._1c{width:560.880066px;}
._64{width:637.588823px;}
._63{width:703.202423px;}
._61{width:772.032023px;}
._45{width:824.783940px;}
._48{width:977.424009px;}
._49{width:993.456009px;}
._4b{width:1163.351919px;}
._43{width:1183.787940px;}
._41{width:1188.423655px;}
._4e{width:1203.887919px;}
._4d{width:1215.611919px;}
._4c{width:1243.871919px;}
._4a{width:1265.424009px;}
._46{width:1323.971895px;}
._47{width:1342.416078px;}
._6{width:1748.784009px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y4d{bottom:49.625399px;}
.y26{bottom:49.625999px;}
.y24{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.y147{bottom:87.139050px;}
.y119{bottom:88.583917px;}
.y49{bottom:89.999995px;}
.y105{bottom:89.999999px;}
.ye8{bottom:90.000000px;}
.yf1{bottom:90.000004px;}
.ye9{bottom:90.000009px;}
.y100{bottom:90.000027px;}
.y10b{bottom:90.000031px;}
.y12c{bottom:90.047522px;}
.y223{bottom:90.679350px;}
.ye7{bottom:90.797522px;}
.ya3{bottom:90.797533px;}
.y1a1{bottom:90.797550px;}
.y25c{bottom:91.139523px;}
.yd8{bottom:91.202522px;}
.y14b{bottom:95.876553px;}
.y1e5{bottom:96.187031px;}
.y4{bottom:97.125005px;}
.y20a{bottom:103.547516px;}
.yc8{bottom:104.297516px;}
.y222{bottom:104.923347px;}
.y146{bottom:105.139046px;}
.y25b{bottom:105.383514px;}
.y79{bottom:107.672516px;}
.y12b{bottom:108.047516px;}
.ye6{bottom:108.797516px;}
.ya2{bottom:108.797539px;}
.y1a0{bottom:108.797550px;}
.yd7{bottom:109.202522px;}
.y14a{bottom:113.876553px;}
.y1e4{bottom:114.187031px;}
.y180{bottom:116.565903px;}
.y221{bottom:119.167350px;}
.y25a{bottom:119.627518px;}
.y1ac{bottom:120.937031px;}
.y209{bottom:121.547516px;}
.yc7{bottom:122.297516px;}
.y145{bottom:123.139046px;}
.y78{bottom:125.672516px;}
.y12a{bottom:126.047516px;}
.ye5{bottom:126.797516px;}
.ya1{bottom:126.797539px;}
.y19f{bottom:126.797550px;}
.yd6{bottom:127.202522px;}
.y149{bottom:131.876553px;}
.y1e3{bottom:132.187031px;}
.y220{bottom:133.411354px;}
.y259{bottom:133.871521px;}
.y17f{bottom:134.565903px;}
.y1ab{bottom:138.937031px;}
.y23{bottom:139.264499px;}
.y208{bottom:139.547516px;}
.yc6{bottom:140.297516px;}
.y144{bottom:141.139046px;}
.y77{bottom:143.672516px;}
.ye4{bottom:144.797516px;}
.ya0{bottom:144.797539px;}
.y19e{bottom:144.797562px;}
.yd5{bottom:145.202522px;}
.y21f{bottom:147.655346px;}
.y258{bottom:148.115524px;}
.y1e2{bottom:150.187031px;}
.y17e{bottom:152.565903px;}
.y48{bottom:152.567099px;}
.y1aa{bottom:156.937031px;}
.y207{bottom:157.547516px;}
.yc5{bottom:158.297516px;}
.y143{bottom:159.139046px;}
.y76{bottom:161.672516px;}
.y21e{bottom:161.899349px;}
.y257{bottom:162.359516px;}
.ye3{bottom:162.797516px;}
.y9f{bottom:162.797539px;}
.y19d{bottom:162.797562px;}
.yd4{bottom:163.202522px;}
.y1e1{bottom:168.187031px;}
.y17d{bottom:170.565903px;}
.y161{bottom:173.864545px;}
.y1a9{bottom:174.937031px;}
.y206{bottom:175.547516px;}
.y21d{bottom:176.143353px;}
.yc4{bottom:176.297516px;}
.y256{bottom:176.603519px;}
.y142{bottom:177.139046px;}
.y75{bottom:179.672516px;}
.ye2{bottom:180.797516px;}
.y9e{bottom:180.797539px;}
.y19c{bottom:180.797562px;}
.yd3{bottom:181.202522px;}
.y116{bottom:183.851930px;}
.yf6{bottom:183.851948px;}
.yfc{bottom:183.851953px;}
.yf2{bottom:183.851971px;}
.yed{bottom:183.851975px;}
.y101{bottom:183.851994px;}
.y10c{bottom:183.851998px;}
.y1e0{bottom:186.187031px;}
.y160{bottom:188.108547px;}
.y47{bottom:189.317099px;}
.y255{bottom:190.847523px;}
.yf7{bottom:192.851948px;}
.y1a8{bottom:192.937042px;}
.y205{bottom:193.547516px;}
.yc3{bottom:194.297516px;}
.y141{bottom:195.139069px;}
.y1a{bottom:196.933500px;}
.y74{bottom:197.672516px;}
.ye1{bottom:198.797516px;}
.y9d{bottom:198.797539px;}
.y19b{bottom:198.797562px;}
.yd2{bottom:199.202522px;}
.y1df{bottom:204.187042px;}
.y254{bottom:205.091515px;}
.y17c{bottom:206.565903px;}
.y46{bottom:207.317088px;}
.y21c{bottom:208.693359px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1a7{bottom:210.937042px;}
.y204{bottom:211.547516px;}
.yc2{bottom:212.297516px;}
.y140{bottom:213.139069px;}
.y73{bottom:215.672516px;}
.ye0{bottom:216.797516px;}
.y9c{bottom:216.797539px;}
.y19a{bottom:216.797562px;}
.yd1{bottom:217.202522px;}
.y253{bottom:219.335518px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1de{bottom:222.187042px;}
.y1a6{bottom:228.937042px;}
.y203{bottom:229.547516px;}
.yc1{bottom:230.297516px;}
.y13f{bottom:231.139069px;}
.y252{bottom:233.579521px;}
.y72{bottom:233.672516px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ydf{bottom:234.797516px;}
.y9b{bottom:234.797539px;}
.y199{bottom:234.797562px;}
.yd0{bottom:235.202522px;}
.y1dd{bottom:240.187042px;}
.y20d{bottom:240.626700px;}
.y45{bottom:244.067088px;}
.y1a5{bottom:246.937042px;}
.y202{bottom:247.547516px;}
.y251{bottom:247.823524px;}
.yc0{bottom:248.297516px;}
.y13e{bottom:249.139069px;}
.y71{bottom:251.672516px;}
.yde{bottom:252.797516px;}
.y198{bottom:252.797562px;}
.ycf{bottom:253.202522px;}
.y1dc{bottom:258.187042px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y44{bottom:262.067088px;}
.y250{bottom:262.067528px;}
.y17b{bottom:263.432510px;}
.y1a4{bottom:264.937042px;}
.y201{bottom:265.547516px;}
.ybf{bottom:266.297516px;}
.y13d{bottom:267.139069px;}
.y21b{bottom:268.021065px;}
.y70{bottom:269.672516px;}
.ydd{bottom:270.797516px;}
.y9a{bottom:270.797539px;}
.y197{bottom:270.797562px;}
.yce{bottom:271.202522px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1db{bottom:276.187042px;}
.y24f{bottom:276.311531px;}
.y43{bottom:280.067088px;}
.y17a{bottom:281.432510px;}
.y21a{bottom:282.265068px;}
.y1a3{bottom:282.937042px;}
.y200{bottom:283.547516px;}
.ybe{bottom:284.297516px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y13c{bottom:285.139069px;}
.y6f{bottom:287.672516px;}
.ydc{bottom:288.797516px;}
.y196{bottom:288.797562px;}
.ycd{bottom:289.202522px;}
.y24e{bottom:290.555511px;}
.y1da{bottom:294.187042px;}
.y219{bottom:296.509071px;}
.y42{bottom:298.067088px;}
.y179{bottom:299.432510px;}
.y1a2{bottom:300.937042px;}
.y1ff{bottom:301.547516px;}
.ybd{bottom:302.297516px;}
.y13b{bottom:303.139069px;}
.y24d{bottom:304.799515px;}
.y6e{bottom:305.672516px;}
.ydb{bottom:306.797516px;}
.y99{bottom:306.797539px;}
.y195{bottom:306.797562px;}
.ycc{bottom:307.202522px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y218{bottom:310.753075px;}
.y1d9{bottom:312.187042px;}
.y41{bottom:316.067088px;}
.y178{bottom:317.432510px;}
.y24c{bottom:319.043518px;}
.y1fe{bottom:319.547516px;}
.ybc{bottom:320.297516px;}
.y13a{bottom:321.139069px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y6d{bottom:323.672516px;}
.yda{bottom:324.797516px;}
.y194{bottom:324.797562px;}
.y217{bottom:324.997055px;}
.ycb{bottom:325.202522px;}
.yf8{bottom:329.843953px;}
.y1d8{bottom:330.187042px;}
.y24b{bottom:333.287521px;}
.y40{bottom:334.067088px;}
.y177{bottom:335.432510px;}
.y1fd{bottom:337.547516px;}
.ybb{bottom:338.297516px;}
.y117{bottom:338.843934px;}
.yf9{bottom:338.843953px;}
.yfd{bottom:338.843957px;}
.yf3{bottom:338.843976px;}
.yee{bottom:338.843980px;}
.y102{bottom:338.843998px;}
.yea{bottom:338.844003px;}
.y139{bottom:339.139069px;}
.y216{bottom:339.241058px;}
.y6c{bottom:341.672516px;}
.yd9{bottom:342.797516px;}
.y193{bottom:342.797562px;}
.y129{bottom:343.202522px;}
.y24a{bottom:347.531525px;}
.y11{bottom:348.133500px;}
.y1d7{bottom:348.187042px;}
.y3f{bottom:352.067088px;}
.y176{bottom:353.432510px;}
.y215{bottom:353.485062px;}
.y1fc{bottom:355.547516px;}
.yba{bottom:356.297516px;}
.y138{bottom:357.139069px;}
.y6b{bottom:359.672516px;}
.y98{bottom:360.797516px;}
.y192{bottom:360.797562px;}
.y1b0{bottom:361.007515px;}
.yca{bottom:361.202522px;}
.y249{bottom:361.775528px;}
.y1d6{bottom:366.187042px;}
.y214{bottom:367.729065px;}
.y3e{bottom:370.067088px;}
.y175{bottom:371.432510px;}
.y1fb{bottom:373.547516px;}
.yb9{bottom:374.297516px;}
.y137{bottom:375.139069px;}
.y1af{bottom:375.251495px;}
.y248{bottom:376.019531px;}
.y6a{bottom:377.672516px;}
.y97{bottom:378.797516px;}
.y191{bottom:378.797562px;}
.yc9{bottom:379.202522px;}
.y213{bottom:381.973068px;}
.y1d5{bottom:384.187042px;}
.y10{bottom:386.785499px;}
.y3d{bottom:388.067088px;}
.y174{bottom:389.432510px;}
.y1ae{bottom:389.495499px;}
.y247{bottom:390.263535px;}
.y1fa{bottom:391.547516px;}
.yb8{bottom:392.297516px;}
.y136{bottom:393.139069px;}
.y69{bottom:395.672516px;}
.y96{bottom:396.797516px;}
.y190{bottom:396.797562px;}
.y1d4{bottom:402.187042px;}
.y246{bottom:404.507538px;}
.y3c{bottom:406.067088px;}
.y173{bottom:407.432510px;}
.yf{bottom:408.044999px;}
.y1f9{bottom:409.547516px;}
.yb7{bottom:410.297516px;}
.y212{bottom:410.473068px;}
.y135{bottom:411.139069px;}
.y68{bottom:413.672516px;}
.y95{bottom:414.797516px;}
.y18f{bottom:414.797562px;}
.y1c8{bottom:414.854677px;}
.y128{bottom:415.202499px;}
.y245{bottom:418.751541px;}
.y1d3{bottom:420.187042px;}
.y3b{bottom:424.067088px;}
.y211{bottom:424.717072px;}
.y172{bottom:425.432510px;}
.y1f8{bottom:427.547516px;}
.yb6{bottom:428.297516px;}
.y134{bottom:429.139069px;}
.y67{bottom:431.672516px;}
.y94{bottom:432.797516px;}
.y18e{bottom:432.797562px;}
.y244{bottom:432.995499px;}
.y1c7{bottom:433.082689px;}
.y1d2{bottom:438.187042px;}
.y3a{bottom:442.067088px;}
.y171{bottom:443.432510px;}
.y1f7{bottom:445.547516px;}
.yb5{bottom:446.297516px;}
.y133{bottom:447.139069px;}
.y243{bottom:447.239502px;}
.y66{bottom:449.672516px;}
.y93{bottom:450.797516px;}
.y18d{bottom:450.797562px;}
.y1c6{bottom:451.154649px;}
.y210{bottom:453.217072px;}
.y1d1{bottom:456.187180px;}
.y39{bottom:460.067088px;}
.y170{bottom:461.432510px;}
.y242{bottom:461.483505px;}
.y1f6{bottom:463.547516px;}
.yb4{bottom:464.297516px;}
.y132{bottom:465.139069px;}
.y127{bottom:466.547516px;}
.y65{bottom:467.672516px;}
.y92{bottom:468.797516px;}
.y18c{bottom:468.797562px;}
.y1c5{bottom:469.382661px;}
.y1d0{bottom:474.187180px;}
.y241{bottom:475.727509px;}
.yfa{bottom:476.291935px;}
.yfe{bottom:476.291940px;}
.y106{bottom:476.291958px;}
.y10f{bottom:476.291963px;}
.yf4{bottom:476.291981px;}
.yef{bottom:476.291985px;}
.y103{bottom:476.292004px;}
.y10d{bottom:476.292008px;}
.yeb{bottom:476.292031px;}
.y38{bottom:478.067088px;}
.y16f{bottom:479.432510px;}
.y1f5{bottom:481.547516px;}
.yb3{bottom:482.297516px;}
.y126{bottom:484.547516px;}
.ye{bottom:484.864502px;}
.y107{bottom:485.291958px;}
.y20f{bottom:485.467163px;}
.y64{bottom:485.672516px;}
.y91{bottom:486.797516px;}
.y18b{bottom:486.797562px;}
.y1c4{bottom:487.526674px;}
.y269{bottom:487.528061px;}
.y240{bottom:489.971512px;}
.y1cf{bottom:492.187180px;}
.y37{bottom:496.067088px;}
.y16e{bottom:497.432510px;}
.y1f4{bottom:499.547516px;}
.y20e{bottom:499.711166px;}
.yb2{bottom:500.297516px;}
.y131{bottom:501.139069px;}
.yd{bottom:502.864502px;}
.y63{bottom:503.672516px;}
.y23f{bottom:504.215515px;}
.y90{bottom:504.797516px;}
.y18a{bottom:504.797562px;}
.y1c3{bottom:505.670686px;}
.y268{bottom:506.572037px;}
.y1ce{bottom:510.187180px;}
.y36{bottom:514.067088px;}
.y16d{bottom:515.432510px;}
.y1f3{bottom:517.547516px;}
.yb1{bottom:518.297516px;}
.y23e{bottom:518.459518px;}
.yc{bottom:520.864502px;}
.y125{bottom:521.297516px;}
.y62{bottom:521.672516px;}
.y8f{bottom:522.797516px;}
.y189{bottom:522.797562px;}
.y267{bottom:523.575302px;}
.y1c2{bottom:523.814653px;}
.y1cd{bottom:528.187180px;}
.y35{bottom:532.067088px;}
.y23d{bottom:532.703522px;}
.y16c{bottom:533.432510px;}
.y1f2{bottom:535.547516px;}
.yb0{bottom:536.297516px;}
.y130{bottom:537.139069px;}
.yb{bottom:538.864499px;}
.y124{bottom:539.297516px;}
.y61{bottom:539.672516px;}
.y8e{bottom:540.797516px;}
.y188{bottom:540.797562px;}
.y1c1{bottom:541.958665px;}
.y266{bottom:542.619278px;}
.y15f{bottom:544.068738px;}
.y1cc{bottom:546.187180px;}
.y23c{bottom:546.947525px;}
.y34{bottom:550.067088px;}
.y16b{bottom:551.432510px;}
.y1f1{bottom:553.547516px;}
.yaf{bottom:554.297516px;}
.ya{bottom:556.864499px;}
.y123{bottom:557.297516px;}
.y60{bottom:557.672516px;}
.y8d{bottom:558.797516px;}
.y187{bottom:558.797562px;}
.y1c0{bottom:560.102678px;}
.y23b{bottom:561.191528px;}
.y15e{bottom:562.296750px;}
.y1cb{bottom:564.187180px;}
.y265{bottom:566.497787px;}
.y33{bottom:568.067088px;}
.y16a{bottom:569.432510px;}
.y1f0{bottom:571.547516px;}
.yae{bottom:572.297516px;}
.y122{bottom:575.297516px;}
.y23a{bottom:575.435532px;}
.y5f{bottom:575.672516px;}
.y8c{bottom:576.797516px;}
.y186{bottom:576.797562px;}
.y224{bottom:577.879028px;}
.y15d{bottom:580.440717px;}
.y264{bottom:580.741791px;}
.y1ca{bottom:582.187180px;}
.y32{bottom:586.067088px;}
.y169{bottom:587.432510px;}
.y1bf{bottom:588.110673px;}
.y1ef{bottom:589.547516px;}
.y239{bottom:589.679535px;}
.yad{bottom:590.297516px;}
.y20c{bottom:591.023849px;}
.y121{bottom:593.297516px;}
.y5e{bottom:593.672516px;}
.y8b{bottom:594.797516px;}
.y185{bottom:594.797562px;}
.y15c{bottom:598.584729px;}
.y263{bottom:602.533813px;}
.y238{bottom:603.923538px;}
.y31{bottom:604.067088px;}
.y168{bottom:605.432510px;}
.y1ee{bottom:607.547516px;}
.yac{bottom:608.297516px;}
.y1be{bottom:609.160803px;}
.y12f{bottom:609.889069px;}
.y120{bottom:611.297516px;}
.y5d{bottom:611.672516px;}
.y8a{bottom:612.797516px;}
.y184{bottom:612.797562px;}
.y15b{bottom:616.728742px;}
.y262{bottom:616.777817px;}
.y237{bottom:618.167542px;}
.y30{bottom:622.067088px;}
.y108{bottom:622.091977px;}
.y167{bottom:623.432510px;}
.y1ed{bottom:625.547516px;}
.yab{bottom:626.297516px;}
.y20b{bottom:627.023849px;}
.y1bd{bottom:627.310812px;}
.y12e{bottom:627.889069px;}
.y11f{bottom:629.297516px;}
.y5c{bottom:629.672516px;}
.y89{bottom:630.797516px;}
.y183{bottom:630.797562px;}
.y118{bottom:631.091912px;}
.y114{bottom:631.091958px;}
.y112{bottom:631.091977px;}
.y236{bottom:632.411499px;}
.y1e8{bottom:633.991058px;}
.y15a{bottom:634.872754px;}
.y261{bottom:638.569794px;}
.y2f{bottom:640.067088px;}
.y166{bottom:641.432510px;}
.y1ec{bottom:643.547516px;}
.yaa{bottom:644.297516px;}
.y1bc{bottom:645.460775px;}
.y9{bottom:645.510000px;}
.y12d{bottom:645.889069px;}
.y235{bottom:646.655502px;}
.y11e{bottom:647.297516px;}
.y5b{bottom:647.672516px;}
.y1e7{bottom:648.235062px;}
.y88{bottom:648.797516px;}
.y182{bottom:648.797562px;}
.y260{bottom:652.813797px;}
.y159{bottom:653.016721px;}
.y2e{bottom:658.067088px;}
.y165{bottom:659.432510px;}
.y234{bottom:660.899506px;}
.y1eb{bottom:661.547516px;}
.ya9{bottom:662.297516px;}
.y1e6{bottom:662.479065px;}
.y1bb{bottom:663.610784px;}
.y5a{bottom:665.672516px;}
.y8{bottom:666.771000px;}
.y87{bottom:666.797516px;}
.y181{bottom:666.797562px;}
.y158{bottom:671.160733px;}
.y233{bottom:675.143509px;}
.y148{bottom:676.339050px;}
.y164{bottom:677.432510px;}
.y1ea{bottom:679.547516px;}
.ya8{bottom:680.297516px;}
.y1ba{bottom:681.760794px;}
.y59{bottom:683.672516px;}
.y11d{bottom:684.047516px;}
.y86{bottom:684.797516px;}
.y25f{bottom:685.213806px;}
.y157{bottom:689.304746px;}
.y232{bottom:689.387512px;}
.y163{bottom:695.432510px;}
.ya7{bottom:698.297516px;}
.y1b9{bottom:699.916799px;}
.y58{bottom:701.672516px;}
.y11c{bottom:702.047516px;}
.y85{bottom:702.797516px;}
.y231{bottom:703.631515px;}
.y2d{bottom:706.559687px;}
.y156{bottom:707.448712px;}
.y1e9{bottom:715.547516px;}
.ya6{bottom:716.297516px;}
.y230{bottom:717.875519px;}
.y1b8{bottom:718.060812px;}
.y57{bottom:719.672516px;}
.y84{bottom:720.797516px;}
.y2c{bottom:720.803691px;}
.y4b{bottom:720.849515px;}
.y25e{bottom:721.213806px;}
.y155{bottom:725.592725px;}
.y7{bottom:726.298500px;}
.y162{bottom:731.432510px;}
.y22f{bottom:732.119522px;}
.ya5{bottom:734.297516px;}
.y1b7{bottom:736.210775px;}
.y56{bottom:737.672516px;}
.y11b{bottom:738.047516px;}
.y83{bottom:738.797516px;}
.y154{bottom:743.736737px;}
.y22e{bottom:746.363525px;}
.y3{bottom:752.599495px;}
.y1b6{bottom:754.360784px;}
.y55{bottom:755.672516px;}
.y11a{bottom:756.047516px;}
.y82{bottom:756.797516px;}
.y2b{bottom:758.652140px;}
.y22d{bottom:760.607529px;}
.y153{bottom:761.880750px;}
.y115{bottom:768.311929px;}
.y113{bottom:768.311947px;}
.ya4{bottom:770.297516px;}
.y1b5{bottom:772.510794px;}
.y54{bottom:773.672516px;}
.y81{bottom:774.797516px;}
.y22c{bottom:774.851532px;}
.yfb{bottom:777.311924px;}
.yff{bottom:777.311929px;}
.y109{bottom:777.311947px;}
.y110{bottom:777.311952px;}
.yf5{bottom:777.312016px;}
.yec{bottom:777.312020px;}
.y104{bottom:777.312039px;}
.y10e{bottom:777.312043px;}
.y152{bottom:780.024716px;}
.y22b{bottom:789.095490px;}
.y1b4{bottom:790.662771px;}
.y53{bottom:791.672516px;}
.y80{bottom:792.797516px;}
.y151{bottom:798.168729px;}
.y2a{bottom:801.392573px;}
.y270{bottom:803.332031px;}
.y22a{bottom:803.339539px;}
.y52{bottom:809.672516px;}
.y7f{bottom:810.797516px;}
.y150{bottom:816.312741px;}
.y26f{bottom:817.576080px;}
.y229{bottom:817.583496px;}
.y1b3{bottom:818.670767px;}
.y29{bottom:823.895503px;}
.y51{bottom:827.672516px;}
.y7e{bottom:828.797516px;}
.y228{bottom:831.827545px;}
.y1b2{bottom:842.514761px;}
.y14f{bottom:843.576688px;}
.y50{bottom:845.672516px;}
.y227{bottom:846.071503px;}
.y26e{bottom:846.076080px;}
.y28{bottom:846.398524px;}
.y7d{bottom:846.797516px;}
.y226{bottom:860.315552px;}
.y26d{bottom:860.320038px;}
.y4f{bottom:863.672516px;}
.y7c{bottom:864.797516px;}
.y1b1{bottom:866.664724px;}
.y14e{bottom:867.420774px;}
.y225{bottom:874.559509px;}
.y26c{bottom:874.564087px;}
.y2{bottom:879.369000px;}
.y14d{bottom:881.664731px;}
.y7b{bottom:882.797516px;}
.y1ad{bottom:888.803558px;}
.y26b{bottom:888.808044px;}
.y4e{bottom:899.672516px;}
.y27{bottom:899.785217px;}
.y7a{bottom:900.797516px;}
.y14c{bottom:903.047516px;}
.y26a{bottom:903.052093px;}
.y25{bottom:925.867035px;}
.y25d{bottom:939.068995px;}
.y1c9{bottom:939.188978px;}
.y4a{bottom:939.188995px;}
.yf0{bottom:939.188998px;}
.y10a{bottom:939.189017px;}
.y111{bottom:939.189021px;}
.y4c{bottom:940.111084px;}
.y1{bottom:966.726000px;}
.h22{height:29.299200px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h13{height:41.856000px;}
.hb{height:42.048000px;}
.h19{height:42.144025px;}
.h18{height:42.528000px;}
.h14{height:45.456000px;}
.h6{height:45.900000px;}
.hd{height:46.704000px;}
.h3{height:48.195000px;}
.h21{height:48.407354px;}
.h1e{height:48.475104px;}
.h1c{height:48.491949px;}
.h1f{height:48.499090px;}
.h1d{height:48.499273px;}
.h20{height:48.499823px;}
.h1a{height:49.104000px;}
.h11{height:52.320000px;}
.h1b{height:52.320183px;}
.h12{height:53.160000px;}
.h17{height:53.640000px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.h10{height:59.340000px;}
.h16{height:61.380000px;}
.hf{height:64.866000px;}
.h15{height:65.274000px;}
.he{height:69.108000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.xa{left:78.746400px;}
.x8{left:80.907303px;}
.xe{left:85.535402px;}
.x59{left:87.033350px;}
.xb{left:93.530399px;}
.x5b{left:97.799400px;}
.x1{left:102.045000px;}
.xd{left:103.295403px;}
.x2{left:106.297500px;}
.x57{left:112.835403px;}
.x28{left:128.866657px;}
.xf{left:134.926181px;}
.x29{left:143.110649px;}
.x10{left:149.170184px;}
.x2a{left:157.354652px;}
.x11{left:163.414187px;}
.x2b{left:171.586651px;}
.x12{left:177.658179px;}
.x2c{left:185.830654px;}
.x13{left:191.878184px;}
.x2d{left:200.074657px;}
.x4{left:203.484001px;}
.x14{left:206.122176px;}
.x2e{left:214.318661px;}
.x15{left:220.366179px;}
.x3c{left:228.562664px;}
.x2f{left:232.462650px;}
.x16{left:234.610183px;}
.x3d{left:242.806644px;}
.x30{left:246.706653px;}
.x17{left:248.854186px;}
.x3e{left:257.050648px;}
.x31{left:260.950657px;}
.x18{left:266.998175px;}
.x3f{left:271.294651px;}
.x32{left:275.182644px;}
.x19{left:281.242179px;}
.x40{left:285.538654px;}
.x33{left:289.426647px;}
.x1a{left:295.486182px;}
.x41{left:299.782657px;}
.x5a{left:301.535416px;}
.x34{left:303.670650px;}
.x1b{left:309.718192px;}
.x42{left:314.026661px;}
.x35{left:317.914654px;}
.x1c{left:323.962172px;}
.x36{left:332.158657px;}
.x9{left:337.343507px;}
.x37{left:346.402660px;}
.x1d{left:352.450179px;}
.x38{left:360.646664px;}
.x55{left:364.618644px;}
.x1e{left:366.694182px;}
.x39{left:374.890644px;}
.x46{left:378.814657px;}
.x1f{left:380.938186px;}
.x3a{left:389.134647px;}
.x47{left:393.058638px;}
.x20{left:395.182189px;}
.x3b{left:403.378651px;}
.x48{left:407.302641px;}
.x21{left:409.426192px;}
.x43{left:417.622654px;}
.x49{left:421.534651px;}
.x22{left:423.670195px;}
.x44{left:431.866657px;}
.x4a{left:435.778654px;}
.x23{left:437.914199px;}
.x45{left:446.110660px;}
.x4b{left:450.022657px;}
.x24{left:452.158202px;}
.x3{left:454.959000px;}
.x50{left:460.354664px;}
.x4c{left:464.266661px;}
.x25{left:466.402205px;}
.x51{left:474.598667px;}
.x4d{left:478.510664px;}
.x26{left:480.646163px;}
.x5{left:485.858414px;}
.x52{left:488.842670px;}
.x4e{left:492.754667px;}
.x27{left:494.890166px;}
.x58{left:498.633336px;}
.x53{left:503.086674px;}
.x4f{left:506.998671px;}
.x54{left:517.330631px;}
.x7{left:521.631592px;}
.x56{left:552.322623px;}
.xc{left:565.911004px;}
@media print{
.v5{vertical-align:-17.066569pt;}
.v2{vertical-align:-13.333415pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.333333pt;}
.v4{vertical-align:17.060221pt;}
.v1{vertical-align:21.333333pt;}
.ls13{letter-spacing:-2.560000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000003pt;}
.lse{letter-spacing:0.000005pt;}
.lsf{letter-spacing:0.000006pt;}
.ls6{letter-spacing:0.000008pt;}
.lsa{letter-spacing:0.000010pt;}
.ls10{letter-spacing:0.000028pt;}
.lsd{letter-spacing:0.000045pt;}
.lsc{letter-spacing:0.000046pt;}
.ls11{letter-spacing:0.000069pt;}
.ls2{letter-spacing:0.007979pt;}
.ls26{letter-spacing:0.042667pt;}
.ls25{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.522667pt;}
.ls23{letter-spacing:0.533333pt;}
.ls24{letter-spacing:0.533335pt;}
.ls1f{letter-spacing:0.650599pt;}
.ls1d{letter-spacing:0.661341pt;}
.ls16{letter-spacing:0.693324pt;}
.ls1c{letter-spacing:0.721029pt;}
.ls1e{letter-spacing:0.724818pt;}
.ls1b{letter-spacing:0.737117pt;}
.ls14{letter-spacing:0.746582pt;}
.ls15{letter-spacing:0.746628pt;}
.ls22{letter-spacing:0.746663pt;}
.ls4{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.746668pt;}
.ls19{letter-spacing:0.751465pt;}
.ls17{letter-spacing:0.757324pt;}
.ls5{letter-spacing:0.800000pt;}
.ls21{letter-spacing:0.800013pt;}
.ls20{letter-spacing:0.858643pt;}
.ls3{letter-spacing:1.521122pt;}
.ls1{letter-spacing:2.986667pt;}
.ls7{letter-spacing:13.333333pt;}
.ls12{letter-spacing:202.666748pt;}
.ws1d{word-spacing:-14.133333pt;}
.ws1c{word-spacing:-14.080000pt;}
.wsf8{word-spacing:-13.866667pt;}
.ws45{word-spacing:-13.333333pt;}
.wsc2{word-spacing:-12.533333pt;}
.wsc4{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws9e{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws81{word-spacing:-10.080000pt;}
.wsef{word-spacing:-9.856000pt;}
.wsd1{word-spacing:-9.333333pt;}
.wsc3{word-spacing:-8.773333pt;}
.ws2{word-spacing:-8.362667pt;}
.ws10b{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws15c{word-spacing:-7.466667pt;}
.wsc7{word-spacing:-6.666667pt;}
.ws9f{word-spacing:-5.333333pt;}
.ws1e{word-spacing:-1.680000pt;}
.ws9a{word-spacing:-1.226667pt;}
.ws15a{word-spacing:-1.109333pt;}
.ws10f{word-spacing:-1.066667pt;}
.ws9b{word-spacing:-0.906667pt;}
.ws10e{word-spacing:-0.810667pt;}
.ws43{word-spacing:-0.800000pt;}
.ws25{word-spacing:-0.746667pt;}
.wsf2{word-spacing:-0.693333pt;}
.wsf1{word-spacing:-0.640000pt;}
.ws75{word-spacing:-0.586667pt;}
.wsff{word-spacing:-0.533333pt;}
.ws131{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws15b{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.426667pt;}
.ws58{word-spacing:-0.373333pt;}
.ws100{word-spacing:-0.320000pt;}
.ws106{word-spacing:-0.266667pt;}
.ws134{word-spacing:-0.256000pt;}
.ws35{word-spacing:-0.213333pt;}
.wsa0{word-spacing:-0.170667pt;}
.wsa7{word-spacing:-0.160000pt;}
.ws157{word-spacing:-0.128000pt;}
.wsf6{word-spacing:-0.106667pt;}
.ws156{word-spacing:-0.085333pt;}
.ws57{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.wsf3{word-spacing:-0.037333pt;}
.ws1b{word-spacing:-0.007979pt;}
.ws0{word-spacing:0.000000pt;}
.ws130{word-spacing:0.042667pt;}
.ws53{word-spacing:0.053333pt;}
.wsd0{word-spacing:0.085333pt;}
.ws2e{word-spacing:0.106667pt;}
.ws46{word-spacing:0.160000pt;}
.ws48{word-spacing:0.213333pt;}
.ws4a{word-spacing:0.266667pt;}
.wsa6{word-spacing:0.320000pt;}
.wsbf{word-spacing:0.373333pt;}
.ws142{word-spacing:0.384000pt;}
.wsdb{word-spacing:0.426667pt;}
.wsda{word-spacing:0.480000pt;}
.ws5a{word-spacing:0.533333pt;}
.ws3c{word-spacing:0.586667pt;}
.ws116{word-spacing:0.597333pt;}
.ws63{word-spacing:0.640000pt;}
.ws149{word-spacing:0.682667pt;}
.ws23{word-spacing:0.693333pt;}
.ws11c{word-spacing:0.725333pt;}
.ws72{word-spacing:0.746667pt;}
.ws13f{word-spacing:0.768000pt;}
.ws41{word-spacing:0.800000pt;}
.ws129{word-spacing:0.810667pt;}
.wsce{word-spacing:0.853333pt;}
.ws3d{word-spacing:0.906667pt;}
.ws154{word-spacing:0.938667pt;}
.ws3e{word-spacing:0.960000pt;}
.ws11f{word-spacing:0.981333pt;}
.wsd9{word-spacing:1.013333pt;}
.ws38{word-spacing:1.066667pt;}
.ws115{word-spacing:1.109333pt;}
.ws59{word-spacing:1.120000pt;}
.wsfc{word-spacing:1.173333pt;}
.ws124{word-spacing:1.194667pt;}
.wsc1{word-spacing:1.226667pt;}
.wseb{word-spacing:1.280000pt;}
.ws12f{word-spacing:1.322667pt;}
.ws60{word-spacing:1.333333pt;}
.ws133{word-spacing:1.365333pt;}
.ws34{word-spacing:1.386667pt;}
.ws114{word-spacing:1.408000pt;}
.ws31{word-spacing:1.440000pt;}
.ws32{word-spacing:1.493333pt;}
.ws151{word-spacing:1.536000pt;}
.wscb{word-spacing:1.546667pt;}
.ws112{word-spacing:1.578667pt;}
.ws5e{word-spacing:1.600000pt;}
.ws160{word-spacing:1.621333pt;}
.ws27{word-spacing:1.653333pt;}
.ws17{word-spacing:1.706667pt;}
.ws146{word-spacing:1.749333pt;}
.ws66{word-spacing:1.760000pt;}
.ws97{word-spacing:1.813333pt;}
.ws113{word-spacing:1.834667pt;}
.ws3b{word-spacing:1.866667pt;}
.ws12c{word-spacing:1.877333pt;}
.ws83{word-spacing:1.920000pt;}
.ws54{word-spacing:1.973333pt;}
.ws13c{word-spacing:2.005333pt;}
.ws73{word-spacing:2.026667pt;}
.ws88{word-spacing:2.080000pt;}
.ws145{word-spacing:2.090667pt;}
.wsd7{word-spacing:2.133333pt;}
.ws14c{word-spacing:2.175996pt;}
.ws5c{word-spacing:2.186667pt;}
.ws84{word-spacing:2.240000pt;}
.ws119{word-spacing:2.261333pt;}
.ws8c{word-spacing:2.293333pt;}
.ws14{word-spacing:2.346667pt;}
.wsf5{word-spacing:2.389333pt;}
.wsa3{word-spacing:2.400000pt;}
.ws118{word-spacing:2.432000pt;}
.wsca{word-spacing:2.453333pt;}
.ws11a{word-spacing:2.474667pt;}
.wsa8{word-spacing:2.506667pt;}
.ws11d{word-spacing:2.517333pt;}
.wsa2{word-spacing:2.560000pt;}
.ws128{word-spacing:2.602667pt;}
.ws22{word-spacing:2.613333pt;}
.ws159{word-spacing:2.645333pt;}
.ws11{word-spacing:2.666667pt;}
.ws110{word-spacing:2.688000pt;}
.wsb{word-spacing:2.719995pt;}
.ws117{word-spacing:2.730667pt;}
.wsc8{word-spacing:2.773333pt;}
.ws2d{word-spacing:2.826667pt;}
.ws51{word-spacing:2.880000pt;}
.wsf4{word-spacing:2.901333pt;}
.ws2a{word-spacing:2.933333pt;}
.ws14b{word-spacing:2.944000pt;}
.ws47{word-spacing:2.986667pt;}
.wsb2{word-spacing:3.040000pt;}
.ws132{word-spacing:3.072000pt;}
.ws5d{word-spacing:3.093333pt;}
.ws30{word-spacing:3.146667pt;}
.ws152{word-spacing:3.157333pt;}
.ws19{word-spacing:3.200000pt;}
.ws74{word-spacing:3.253333pt;}
.ws29{word-spacing:3.306667pt;}
.ws4f{word-spacing:3.360000pt;}
.ws121{word-spacing:3.370667pt;}
.ws4d{word-spacing:3.413333pt;}
.ws111{word-spacing:3.456000pt;}
.ws4e{word-spacing:3.466667pt;}
.ws12a{word-spacing:3.498667pt;}
.ws7d{word-spacing:3.520000pt;}
.ws148{word-spacing:3.541333pt;}
.ws6c{word-spacing:3.573333pt;}
.ws143{word-spacing:3.584000pt;}
.ws15{word-spacing:3.626667pt;}
.wsc{word-spacing:3.680000pt;}
.ws10c{word-spacing:3.712000pt;}
.wsaa{word-spacing:3.733333pt;}
.ws155{word-spacing:3.754667pt;}
.ws9d{word-spacing:3.786661pt;}
.wsec{word-spacing:3.797333pt;}
.ws40{word-spacing:3.840000pt;}
.ws150{word-spacing:3.882667pt;}
.ws9c{word-spacing:3.893333pt;}
.ws144{word-spacing:3.925333pt;}
.ws69{word-spacing:3.946667pt;}
.ws158{word-spacing:3.968000pt;}
.ws56{word-spacing:4.000000pt;}
.ws137{word-spacing:4.010667pt;}
.ws89{word-spacing:4.053333pt;}
.wsed{word-spacing:4.096000pt;}
.ws64{word-spacing:4.106667pt;}
.ws24{word-spacing:4.160000pt;}
.ws147{word-spacing:4.181333pt;}
.ws36{word-spacing:4.213333pt;}
.ws87{word-spacing:4.266667pt;}
.ws11b{word-spacing:4.309333pt;}
.wsbc{word-spacing:4.320000pt;}
.ws153{word-spacing:4.352000pt;}
.ws6b{word-spacing:4.373333pt;}
.ws2c{word-spacing:4.426667pt;}
.ws33{word-spacing:4.480000pt;}
.ws120{word-spacing:4.522667pt;}
.ws2f{word-spacing:4.533333pt;}
.ws8f{word-spacing:4.586661pt;}
.ws12{word-spacing:4.640000pt;}
.ws141{word-spacing:4.650667pt;}
.ws13{word-spacing:4.693333pt;}
.wsd5{word-spacing:4.746667pt;}
.ws21{word-spacing:4.800000pt;}
.ws95{word-spacing:4.853333pt;}
.ws10d{word-spacing:4.864000pt;}
.ws50{word-spacing:4.906667pt;}
.ws13d{word-spacing:4.949333pt;}
.wsa4{word-spacing:4.960000pt;}
.ws94{word-spacing:5.013333pt;}
.ws136{word-spacing:5.034667pt;}
.wsbd{word-spacing:5.066667pt;}
.ws8d{word-spacing:5.120000pt;}
.ws108{word-spacing:5.173333pt;}
.ws86{word-spacing:5.226667pt;}
.ws28{word-spacing:5.280000pt;}
.ws55{word-spacing:5.333333pt;}
.ws49{word-spacing:5.386667pt;}
.wsbe{word-spacing:5.440000pt;}
.wsc0{word-spacing:5.493333pt;}
.ws90{word-spacing:5.546667pt;}
.ws125{word-spacing:5.589333pt;}
.ws37{word-spacing:5.600000pt;}
.ws123{word-spacing:5.632000pt;}
.ws8b{word-spacing:5.653333pt;}
.ws92{word-spacing:5.706667pt;}
.ws6d{word-spacing:5.760000pt;}
.ws15e{word-spacing:5.802667pt;}
.ws85{word-spacing:5.866667pt;}
.ws20{word-spacing:5.920000pt;}
.ws82{word-spacing:5.973333pt;}
.ws68{word-spacing:6.026667pt;}
.ws98{word-spacing:6.080000pt;}
.wsde{word-spacing:6.133333pt;}
.wsd{word-spacing:6.186667pt;}
.ws26{word-spacing:6.240000pt;}
.wsfb{word-spacing:6.293333pt;}
.ws16{word-spacing:6.346667pt;}
.ws12e{word-spacing:6.357333pt;}
.ws9{word-spacing:6.400000pt;}
.ws76{word-spacing:6.453333pt;}
.ws8e{word-spacing:6.506667pt;}
.ws12b{word-spacing:6.528000pt;}
.ws7c{word-spacing:6.560000pt;}
.ws3f{word-spacing:6.613333pt;}
.ws14d{word-spacing:6.656000pt;}
.wsb6{word-spacing:6.666667pt;}
.ws62{word-spacing:6.720000pt;}
.ws13e{word-spacing:6.741333pt;}
.ws5f{word-spacing:6.773333pt;}
.ws93{word-spacing:6.826667pt;}
.ws42{word-spacing:6.880000pt;}
.wsa9{word-spacing:6.933333pt;}
.wsa{word-spacing:6.986667pt;}
.ws126{word-spacing:6.997333pt;}
.ws8{word-spacing:7.040000pt;}
.wsd2{word-spacing:7.093333pt;}
.ws105{word-spacing:7.146667pt;}
.ws13a{word-spacing:7.168000pt;}
.ws7e{word-spacing:7.200000pt;}
.ws6e{word-spacing:7.253333pt;}
.ws65{word-spacing:7.306667pt;}
.wsf{word-spacing:7.360000pt;}
.ws71{word-spacing:7.413333pt;}
.wsdc{word-spacing:7.466667pt;}
.wsb1{word-spacing:7.573333pt;}
.ws91{word-spacing:7.626667pt;}
.ws103{word-spacing:7.680000pt;}
.wsad{word-spacing:7.733333pt;}
.ws3a{word-spacing:7.786667pt;}
.wse0{word-spacing:7.840000pt;}
.wsee{word-spacing:7.850667pt;}
.ws4c{word-spacing:7.893333pt;}
.ws4b{word-spacing:7.946667pt;}
.ws11e{word-spacing:7.978667pt;}
.ws8a{word-spacing:8.000000pt;}
.wsb5{word-spacing:8.106667pt;}
.wscf{word-spacing:8.160000pt;}
.ws7f{word-spacing:8.213333pt;}
.wsaf{word-spacing:8.266667pt;}
.ws18{word-spacing:8.320000pt;}
.wsdd{word-spacing:8.373333pt;}
.ws61{word-spacing:8.426667pt;}
.ws135{word-spacing:8.448000pt;}
.wsb3{word-spacing:8.640000pt;}
.ws13b{word-spacing:8.661333pt;}
.wsf7{word-spacing:8.693333pt;}
.ws77{word-spacing:8.746667pt;}
.wse1{word-spacing:8.800000pt;}
.wsc5{word-spacing:8.853333pt;}
.ws7a{word-spacing:8.906667pt;}
.wsb7{word-spacing:8.960000pt;}
.ws39{word-spacing:9.066667pt;}
.ws79{word-spacing:9.120000pt;}
.wsd4{word-spacing:9.173333pt;}
.ws52{word-spacing:9.226667pt;}
.ws5b{word-spacing:9.280000pt;}
.ws14f{word-spacing:9.344000pt;}
.ws102{word-spacing:9.386667pt;}
.ws10a{word-spacing:9.440000pt;}
.ws6a{word-spacing:9.493333pt;}
.wsfd{word-spacing:9.546667pt;}
.wsd8{word-spacing:9.653333pt;}
.wsae{word-spacing:9.760000pt;}
.ws139{word-spacing:9.770667pt;}
.wsc6{word-spacing:9.813333pt;}
.ws78{word-spacing:10.026667pt;}
.wsb8{word-spacing:10.080000pt;}
.wsb9{word-spacing:10.186667pt;}
.ws70{word-spacing:10.293333pt;}
.ws127{word-spacing:10.325333pt;}
.wsd6{word-spacing:10.346667pt;}
.ws140{word-spacing:10.496000pt;}
.ws96{word-spacing:10.560000pt;}
.ws7b{word-spacing:10.613333pt;}
.ws104{word-spacing:10.666667pt;}
.wsd3{word-spacing:10.826667pt;}
.ws122{word-spacing:10.837333pt;}
.wsb4{word-spacing:11.146667pt;}
.ws14e{word-spacing:11.178667pt;}
.wsc9{word-spacing:11.200000pt;}
.ws109{word-spacing:11.306667pt;}
.ws101{word-spacing:11.466667pt;}
.wsfe{word-spacing:11.626667pt;}
.wsa5{word-spacing:12.000000pt;}
.ws138{word-spacing:12.074667pt;}
.wsf0{word-spacing:12.106667pt;}
.ws10{word-spacing:12.266667pt;}
.wse{word-spacing:12.373333pt;}
.wsbb{word-spacing:12.533333pt;}
.ws6f{word-spacing:12.746667pt;}
.ws44{word-spacing:13.173333pt;}
.wsb0{word-spacing:13.226667pt;}
.wsfa{word-spacing:13.333333pt;}
.wsba{word-spacing:13.706667pt;}
.wsab{word-spacing:13.813333pt;}
.ws12d{word-spacing:13.909333pt;}
.ws67{word-spacing:14.080000pt;}
.ws107{word-spacing:14.773333pt;}
.ws2b{word-spacing:14.880000pt;}
.ws80{word-spacing:15.200000pt;}
.wsf9{word-spacing:16.053333pt;}
.wsea{word-spacing:16.373333pt;}
.wsdf{word-spacing:16.480000pt;}
.ws15f{word-spacing:16.810667pt;}
.ws99{word-spacing:17.333333pt;}
.ws1f{word-spacing:17.482667pt;}
.wscd{word-spacing:17.760000pt;}
.wscc{word-spacing:19.093333pt;}
.wsac{word-spacing:19.466667pt;}
.ws14a{word-spacing:19.712000pt;}
.wse8{word-spacing:64.085333pt;}
.ws15d{word-spacing:64.938667pt;}
.wse7{word-spacing:67.955141pt;}
.wse4{word-spacing:107.848533pt;}
.wse5{word-spacing:138.666667pt;}
.wse9{word-spacing:146.346667pt;}
.wsa1{word-spacing:154.069317pt;}
.wse6{word-spacing:181.333333pt;}
.wse3{word-spacing:192.000000pt;}
.wse2{word-spacing:281.002585pt;}
._51{margin-left:-23.146702pt;}
._3f{margin-left:-17.290743pt;}
._3e{margin-left:-15.562598pt;}
._40{margin-left:-14.272090pt;}
._e{margin-left:-11.850670pt;}
._38{margin-left:-10.821329pt;}
._f{margin-left:-9.855983pt;}
._3c{margin-left:-8.478908pt;}
._4f{margin-left:-7.211708pt;}
._3b{margin-left:-6.269464pt;}
._12{margin-left:-4.378667pt;}
._1{margin-left:-3.460267pt;}
._4{margin-left:-2.549333pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.440000pt;}
._10{width:2.425600pt;}
._8{width:3.552000pt;}
._7{width:4.442667pt;}
._c{width:5.408000pt;}
._5{width:6.841483pt;}
._b{width:8.086482pt;}
._a{width:9.376000pt;}
._11{width:10.741354pt;}
._52{width:11.839958pt;}
._13{width:13.169061pt;}
._d{width:15.194667pt;}
._9{width:16.362650pt;}
._3d{width:17.274658pt;}
._67{width:20.245415pt;}
._50{width:23.093375pt;}
._66{width:25.066667pt;}
._3a{width:26.666667pt;}
._39{width:29.333331pt;}
._42{width:32.895980pt;}
._3{width:35.630377pt;}
._14{width:37.760000pt;}
._69{width:50.005325pt;}
._5a{width:52.522687pt;}
._56{width:57.269333pt;}
._68{width:64.938659pt;}
._5c{width:66.773251pt;}
._35{width:70.645349pt;}
._18{width:72.021392pt;}
._58{width:88.106667pt;}
._44{width:89.813314pt;}
._37{width:102.741236pt;}
._20{width:106.325398pt;}
._57{width:109.440000pt;}
._53{width:112.639918pt;}
._1d{width:121.173349pt;}
._1a{width:122.421312pt;}
._62{width:127.999903pt;}
._19{width:139.349333pt;}
._23{width:149.333349pt;}
._59{width:152.106667pt;}
._2a{width:156.458682pt;}
._2d{width:161.194682pt;}
._1e{width:162.645349pt;}
._2e{width:170.250569pt;}
._29{width:172.458569pt;}
._2b{width:177.194732pt;}
._2c{width:188.373229pt;}
._60{width:191.999918pt;}
._5f{width:194.773333pt;}
._33{width:201.717349pt;}
._2f{width:209.152016pt;}
._25{width:210.944016pt;}
._54{width:212.138667pt;}
._17{width:218.538569pt;}
._1f{width:230.698569pt;}
._27{width:237.738682pt;}
._28{width:244.181349pt;}
._55{width:245.333333pt;}
._31{width:252.661349pt;}
._21{width:273.792016pt;}
._34{width:294.485236pt;}
._30{width:295.637236pt;}
._22{width:314.581236pt;}
._24{width:320.597398pt;}
._32{width:330.378732pt;}
._1b{width:342.101236pt;}
._36{width:349.610682pt;}
._26{width:384.767902pt;}
._15{width:400.597312pt;}
._5e{width:404.181354pt;}
._5d{width:419.882687pt;}
._16{width:422.613435pt;}
._5b{width:425.813354pt;}
._65{width:464.526954pt;}
._1c{width:498.560059pt;}
._64{width:566.745620pt;}
._63{width:625.068820pt;}
._61{width:686.250687pt;}
._45{width:733.141280pt;}
._48{width:868.821341pt;}
._49{width:883.072008pt;}
._4b{width:1034.090594pt;}
._43{width:1052.255947pt;}
._41{width:1056.376582pt;}
._4e{width:1070.122594pt;}
._4d{width:1080.543928pt;}
._4c{width:1105.663928pt;}
._4a{width:1124.821341pt;}
._46{width:1176.863906pt;}
._47{width:1193.258736pt;}
._6{width:1554.474675pt;}
.fs9{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y4d{bottom:44.111465pt;}
.y26{bottom:44.112000pt;}
.y24{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.y147{bottom:77.456933pt;}
.y119{bottom:78.741259pt;}
.y49{bottom:79.999996pt;}
.y105{bottom:79.999999pt;}
.ye8{bottom:80.000000pt;}
.yf1{bottom:80.000004pt;}
.ye9{bottom:80.000008pt;}
.y100{bottom:80.000024pt;}
.y10b{bottom:80.000028pt;}
.y12c{bottom:80.042241pt;}
.y223{bottom:80.603867pt;}
.ye7{bottom:80.708908pt;}
.ya3{bottom:80.708918pt;}
.y1a1{bottom:80.708933pt;}
.y25c{bottom:81.012909pt;}
.yd8{bottom:81.068909pt;}
.y14b{bottom:85.223602pt;}
.y1e5{bottom:85.499583pt;}
.y4{bottom:86.333337pt;}
.y20a{bottom:92.042236pt;}
.yc8{bottom:92.708903pt;}
.y222{bottom:93.265198pt;}
.y146{bottom:93.456930pt;}
.y25b{bottom:93.674235pt;}
.y79{bottom:95.708903pt;}
.y12b{bottom:96.042236pt;}
.ye6{bottom:96.708903pt;}
.ya2{bottom:96.708923pt;}
.y1a0{bottom:96.708933pt;}
.yd7{bottom:97.068909pt;}
.y14a{bottom:101.223602pt;}
.y1e4{bottom:101.499583pt;}
.y180{bottom:103.614136pt;}
.y221{bottom:105.926533pt;}
.y25a{bottom:106.335571pt;}
.y1ac{bottom:107.499583pt;}
.y209{bottom:108.042236pt;}
.yc7{bottom:108.708903pt;}
.y145{bottom:109.456930pt;}
.y78{bottom:111.708903pt;}
.y12a{bottom:112.042236pt;}
.ye5{bottom:112.708903pt;}
.ya1{bottom:112.708923pt;}
.y19f{bottom:112.708933pt;}
.yd6{bottom:113.068909pt;}
.y149{bottom:117.223602pt;}
.y1e3{bottom:117.499583pt;}
.y220{bottom:118.587870pt;}
.y259{bottom:118.996908pt;}
.y17f{bottom:119.614136pt;}
.y1ab{bottom:123.499583pt;}
.y23{bottom:123.790666pt;}
.y208{bottom:124.042236pt;}
.yc6{bottom:124.708903pt;}
.y144{bottom:125.456930pt;}
.y77{bottom:127.708903pt;}
.ye4{bottom:128.708903pt;}
.ya0{bottom:128.708923pt;}
.y19e{bottom:128.708944pt;}
.yd5{bottom:129.068909pt;}
.y21f{bottom:131.249196pt;}
.y258{bottom:131.658244pt;}
.y1e2{bottom:133.499583pt;}
.y17e{bottom:135.614136pt;}
.y48{bottom:135.615200pt;}
.y1aa{bottom:139.499583pt;}
.y207{bottom:140.042236pt;}
.yc5{bottom:140.708903pt;}
.y143{bottom:141.456930pt;}
.y76{bottom:143.708903pt;}
.y21e{bottom:143.910533pt;}
.y257{bottom:144.319570pt;}
.ye3{bottom:144.708903pt;}
.y9f{bottom:144.708923pt;}
.y19d{bottom:144.708944pt;}
.yd4{bottom:145.068909pt;}
.y1e1{bottom:149.499583pt;}
.y17d{bottom:151.614136pt;}
.y161{bottom:154.546262pt;}
.y1a9{bottom:155.499583pt;}
.y206{bottom:156.042236pt;}
.y21d{bottom:156.571869pt;}
.yc4{bottom:156.708903pt;}
.y256{bottom:156.980906pt;}
.y142{bottom:157.456930pt;}
.y75{bottom:159.708903pt;}
.ye2{bottom:160.708903pt;}
.y9e{bottom:160.708923pt;}
.y19c{bottom:160.708944pt;}
.yd3{bottom:161.068909pt;}
.y116{bottom:163.423937pt;}
.yf6{bottom:163.423954pt;}
.yfc{bottom:163.423958pt;}
.yf2{bottom:163.423974pt;}
.yed{bottom:163.423978pt;}
.y101{bottom:163.423995pt;}
.y10c{bottom:163.423998pt;}
.y1e0{bottom:165.499583pt;}
.y160{bottom:167.207597pt;}
.y47{bottom:168.281866pt;}
.y255{bottom:169.642242pt;}
.yf7{bottom:171.423954pt;}
.y1a8{bottom:171.499593pt;}
.y205{bottom:172.042236pt;}
.yc3{bottom:172.708903pt;}
.y141{bottom:173.456950pt;}
.y1a{bottom:175.052000pt;}
.y74{bottom:175.708903pt;}
.ye1{bottom:176.708903pt;}
.y9d{bottom:176.708923pt;}
.y19b{bottom:176.708944pt;}
.yd2{bottom:177.068909pt;}
.y1df{bottom:181.499593pt;}
.y254{bottom:182.303569pt;}
.y17c{bottom:183.614136pt;}
.y46{bottom:184.281856pt;}
.y21c{bottom:185.505208pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1a7{bottom:187.499593pt;}
.y204{bottom:188.042236pt;}
.yc2{bottom:188.708903pt;}
.y140{bottom:189.456950pt;}
.y73{bottom:191.708903pt;}
.ye0{bottom:192.708903pt;}
.y9c{bottom:192.708923pt;}
.y19a{bottom:192.708944pt;}
.yd1{bottom:193.068909pt;}
.y253{bottom:194.964905pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1de{bottom:197.499593pt;}
.y1a6{bottom:203.499593pt;}
.y203{bottom:204.042236pt;}
.yc1{bottom:204.708903pt;}
.y13f{bottom:205.456950pt;}
.y252{bottom:207.626241pt;}
.y72{bottom:207.708903pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ydf{bottom:208.708903pt;}
.y9b{bottom:208.708923pt;}
.y199{bottom:208.708944pt;}
.yd0{bottom:209.068909pt;}
.y1dd{bottom:213.499593pt;}
.y20d{bottom:213.890400pt;}
.y45{bottom:216.948523pt;}
.y1a5{bottom:219.499593pt;}
.y202{bottom:220.042236pt;}
.y251{bottom:220.287577pt;}
.yc0{bottom:220.708903pt;}
.y13e{bottom:221.456950pt;}
.y71{bottom:223.708903pt;}
.yde{bottom:224.708903pt;}
.y198{bottom:224.708944pt;}
.ycf{bottom:225.068909pt;}
.y1dc{bottom:229.499593pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y44{bottom:232.948523pt;}
.y250{bottom:232.948914pt;}
.y17b{bottom:234.162231pt;}
.y1a4{bottom:235.499593pt;}
.y201{bottom:236.042236pt;}
.ybf{bottom:236.708903pt;}
.y13d{bottom:237.456950pt;}
.y21b{bottom:238.240946pt;}
.y70{bottom:239.708903pt;}
.ydd{bottom:240.708903pt;}
.y9a{bottom:240.708923pt;}
.y197{bottom:240.708944pt;}
.yce{bottom:241.068909pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1db{bottom:245.499593pt;}
.y24f{bottom:245.610250pt;}
.y43{bottom:248.948523pt;}
.y17a{bottom:250.162231pt;}
.y21a{bottom:250.902283pt;}
.y1a3{bottom:251.499593pt;}
.y200{bottom:252.042236pt;}
.ybe{bottom:252.708903pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y13c{bottom:253.456950pt;}
.y6f{bottom:255.708903pt;}
.ydc{bottom:256.708903pt;}
.y196{bottom:256.708944pt;}
.ycd{bottom:257.068909pt;}
.y24e{bottom:258.271566pt;}
.y1da{bottom:261.499593pt;}
.y219{bottom:263.563619pt;}
.y42{bottom:264.948523pt;}
.y179{bottom:266.162231pt;}
.y1a2{bottom:267.499593pt;}
.y1ff{bottom:268.042236pt;}
.ybd{bottom:268.708903pt;}
.y13b{bottom:269.456950pt;}
.y24d{bottom:270.932902pt;}
.y6e{bottom:271.708903pt;}
.ydb{bottom:272.708903pt;}
.y99{bottom:272.708923pt;}
.y195{bottom:272.708944pt;}
.ycc{bottom:273.068909pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y218{bottom:276.224955pt;}
.y1d9{bottom:277.499593pt;}
.y41{bottom:280.948523pt;}
.y178{bottom:282.162231pt;}
.y24c{bottom:283.594238pt;}
.y1fe{bottom:284.042236pt;}
.ybc{bottom:284.708903pt;}
.y13a{bottom:285.456950pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y6d{bottom:287.708903pt;}
.yda{bottom:288.708903pt;}
.y194{bottom:288.708944pt;}
.y217{bottom:288.886271pt;}
.ycb{bottom:289.068909pt;}
.yf8{bottom:293.194625pt;}
.y1d8{bottom:293.499593pt;}
.y24b{bottom:296.255575pt;}
.y40{bottom:296.948523pt;}
.y177{bottom:298.162231pt;}
.y1fd{bottom:300.042236pt;}
.ybb{bottom:300.708903pt;}
.y117{bottom:301.194608pt;}
.yf9{bottom:301.194625pt;}
.yfd{bottom:301.194628pt;}
.yf3{bottom:301.194645pt;}
.yee{bottom:301.194649pt;}
.y102{bottom:301.194665pt;}
.yea{bottom:301.194669pt;}
.y139{bottom:301.456950pt;}
.y216{bottom:301.547607pt;}
.y6c{bottom:303.708903pt;}
.yd9{bottom:304.708903pt;}
.y193{bottom:304.708944pt;}
.y129{bottom:305.068909pt;}
.y24a{bottom:308.916911pt;}
.y11{bottom:309.452000pt;}
.y1d7{bottom:309.499593pt;}
.y3f{bottom:312.948523pt;}
.y176{bottom:314.162231pt;}
.y215{bottom:314.208944pt;}
.y1fc{bottom:316.042236pt;}
.yba{bottom:316.708903pt;}
.y138{bottom:317.456950pt;}
.y6b{bottom:319.708903pt;}
.y98{bottom:320.708903pt;}
.y192{bottom:320.708944pt;}
.y1b0{bottom:320.895569pt;}
.yca{bottom:321.068909pt;}
.y249{bottom:321.578247pt;}
.y1d6{bottom:325.499593pt;}
.y214{bottom:326.870280pt;}
.y3e{bottom:328.948523pt;}
.y175{bottom:330.162231pt;}
.y1fb{bottom:332.042236pt;}
.yb9{bottom:332.708903pt;}
.y137{bottom:333.456950pt;}
.y1af{bottom:333.556885pt;}
.y248{bottom:334.239583pt;}
.y6a{bottom:335.708903pt;}
.y97{bottom:336.708903pt;}
.y191{bottom:336.708944pt;}
.yc9{bottom:337.068909pt;}
.y213{bottom:339.531616pt;}
.y1d5{bottom:341.499593pt;}
.y10{bottom:343.809333pt;}
.y3d{bottom:344.948523pt;}
.y174{bottom:346.162231pt;}
.y1ae{bottom:346.218221pt;}
.y247{bottom:346.900920pt;}
.y1fa{bottom:348.042236pt;}
.yb8{bottom:348.708903pt;}
.y136{bottom:349.456950pt;}
.y69{bottom:351.708903pt;}
.y96{bottom:352.708903pt;}
.y190{bottom:352.708944pt;}
.y1d4{bottom:357.499593pt;}
.y246{bottom:359.562256pt;}
.y3c{bottom:360.948523pt;}
.y173{bottom:362.162231pt;}
.yf{bottom:362.706666pt;}
.y1f9{bottom:364.042236pt;}
.yb7{bottom:364.708903pt;}
.y212{bottom:364.864950pt;}
.y135{bottom:365.456950pt;}
.y68{bottom:367.708903pt;}
.y95{bottom:368.708903pt;}
.y18f{bottom:368.708944pt;}
.y1c8{bottom:368.759713pt;}
.y128{bottom:369.068888pt;}
.y245{bottom:372.223592pt;}
.y1d3{bottom:373.499593pt;}
.y3b{bottom:376.948523pt;}
.y211{bottom:377.526286pt;}
.y172{bottom:378.162231pt;}
.y1f8{bottom:380.042236pt;}
.yb6{bottom:380.708903pt;}
.y134{bottom:381.456950pt;}
.y67{bottom:383.708903pt;}
.y94{bottom:384.708903pt;}
.y18e{bottom:384.708944pt;}
.y244{bottom:384.884888pt;}
.y1c7{bottom:384.962390pt;}
.y1d2{bottom:389.499593pt;}
.y3a{bottom:392.948523pt;}
.y171{bottom:394.162231pt;}
.y1f7{bottom:396.042236pt;}
.yb5{bottom:396.708903pt;}
.y133{bottom:397.456950pt;}
.y243{bottom:397.546224pt;}
.y66{bottom:399.708903pt;}
.y93{bottom:400.708903pt;}
.y18d{bottom:400.708944pt;}
.y1c6{bottom:401.026355pt;}
.y210{bottom:402.859619pt;}
.y1d1{bottom:405.499715pt;}
.y39{bottom:408.948523pt;}
.y170{bottom:410.162231pt;}
.y242{bottom:410.207560pt;}
.y1f6{bottom:412.042236pt;}
.yb4{bottom:412.708903pt;}
.y132{bottom:413.456950pt;}
.y127{bottom:414.708903pt;}
.y65{bottom:415.708903pt;}
.y92{bottom:416.708903pt;}
.y18c{bottom:416.708944pt;}
.y1c5{bottom:417.229032pt;}
.y1d0{bottom:421.499715pt;}
.y241{bottom:422.868896pt;}
.yfa{bottom:423.370609pt;}
.yfe{bottom:423.370613pt;}
.y106{bottom:423.370630pt;}
.y10f{bottom:423.370633pt;}
.yf4{bottom:423.370650pt;}
.yef{bottom:423.370654pt;}
.y103{bottom:423.370670pt;}
.y10d{bottom:423.370674pt;}
.yeb{bottom:423.370694pt;}
.y38{bottom:424.948523pt;}
.y16f{bottom:426.162231pt;}
.y1f5{bottom:428.042236pt;}
.yb3{bottom:428.708903pt;}
.y126{bottom:430.708903pt;}
.ye{bottom:430.990669pt;}
.y107{bottom:431.370630pt;}
.y20f{bottom:431.526367pt;}
.y64{bottom:431.708903pt;}
.y91{bottom:432.708903pt;}
.y18b{bottom:432.708944pt;}
.y1c4{bottom:433.357043pt;}
.y269{bottom:433.358276pt;}
.y240{bottom:435.530233pt;}
.y1cf{bottom:437.499715pt;}
.y37{bottom:440.948523pt;}
.y16e{bottom:442.162231pt;}
.y1f4{bottom:444.042236pt;}
.y20e{bottom:444.187703pt;}
.yb2{bottom:444.708903pt;}
.y131{bottom:445.456950pt;}
.yd{bottom:446.990669pt;}
.y63{bottom:447.708903pt;}
.y23f{bottom:448.191569pt;}
.y90{bottom:448.708903pt;}
.y18a{bottom:448.708944pt;}
.y1c3{bottom:449.485054pt;}
.y268{bottom:450.286255pt;}
.y1ce{bottom:453.499715pt;}
.y36{bottom:456.948523pt;}
.y16d{bottom:458.162231pt;}
.y1f3{bottom:460.042236pt;}
.yb1{bottom:460.708903pt;}
.y23e{bottom:460.852905pt;}
.yc{bottom:462.990669pt;}
.y125{bottom:463.375570pt;}
.y62{bottom:463.708903pt;}
.y8f{bottom:464.708903pt;}
.y189{bottom:464.708944pt;}
.y267{bottom:465.400269pt;}
.y1c2{bottom:465.613025pt;}
.y1cd{bottom:469.499715pt;}
.y35{bottom:472.948523pt;}
.y23d{bottom:473.514242pt;}
.y16c{bottom:474.162231pt;}
.y1f2{bottom:476.042236pt;}
.yb0{bottom:476.708903pt;}
.y130{bottom:477.456950pt;}
.yb{bottom:478.990666pt;}
.y124{bottom:479.375570pt;}
.y61{bottom:479.708903pt;}
.y8e{bottom:480.708903pt;}
.y188{bottom:480.708944pt;}
.y1c1{bottom:481.741036pt;}
.y266{bottom:482.328247pt;}
.y15f{bottom:483.616656pt;}
.y1cc{bottom:485.499715pt;}
.y23c{bottom:486.175578pt;}
.y34{bottom:488.948523pt;}
.y16b{bottom:490.162231pt;}
.y1f1{bottom:492.042236pt;}
.yaf{bottom:492.708903pt;}
.ya{bottom:494.990666pt;}
.y123{bottom:495.375570pt;}
.y60{bottom:495.708903pt;}
.y8d{bottom:496.708903pt;}
.y187{bottom:496.708944pt;}
.y1c0{bottom:497.869047pt;}
.y23b{bottom:498.836914pt;}
.y15e{bottom:499.819333pt;}
.y1cb{bottom:501.499715pt;}
.y265{bottom:503.553589pt;}
.y33{bottom:504.948523pt;}
.y16a{bottom:506.162231pt;}
.y1f0{bottom:508.042236pt;}
.yae{bottom:508.708903pt;}
.y122{bottom:511.375570pt;}
.y23a{bottom:511.498250pt;}
.y5f{bottom:511.708903pt;}
.y8c{bottom:512.708903pt;}
.y186{bottom:512.708944pt;}
.y224{bottom:513.670247pt;}
.y15d{bottom:515.947304pt;}
.y264{bottom:516.214925pt;}
.y1ca{bottom:517.499715pt;}
.y32{bottom:520.948523pt;}
.y169{bottom:522.162231pt;}
.y1bf{bottom:522.765043pt;}
.y1ef{bottom:524.042236pt;}
.y239{bottom:524.159587pt;}
.yad{bottom:524.708903pt;}
.y20c{bottom:525.354533pt;}
.y121{bottom:527.375570pt;}
.y5e{bottom:527.708903pt;}
.y8b{bottom:528.708903pt;}
.y185{bottom:528.708944pt;}
.y15c{bottom:532.075315pt;}
.y263{bottom:535.585612pt;}
.y238{bottom:536.820923pt;}
.y31{bottom:536.948523pt;}
.y168{bottom:538.162231pt;}
.y1ee{bottom:540.042236pt;}
.yac{bottom:540.708903pt;}
.y1be{bottom:541.476269pt;}
.y12f{bottom:542.123617pt;}
.y120{bottom:543.375570pt;}
.y5d{bottom:543.708903pt;}
.y8a{bottom:544.708903pt;}
.y184{bottom:544.708944pt;}
.y15b{bottom:548.203326pt;}
.y262{bottom:548.246948pt;}
.y237{bottom:549.482259pt;}
.y30{bottom:552.948523pt;}
.y108{bottom:552.970646pt;}
.y167{bottom:554.162231pt;}
.y1ed{bottom:556.042236pt;}
.yab{bottom:556.708903pt;}
.y20b{bottom:557.354533pt;}
.y1bd{bottom:557.609611pt;}
.y12e{bottom:558.123617pt;}
.y11f{bottom:559.375570pt;}
.y5c{bottom:559.708903pt;}
.y89{bottom:560.708903pt;}
.y183{bottom:560.708944pt;}
.y118{bottom:560.970589pt;}
.y114{bottom:560.970629pt;}
.y112{bottom:560.970646pt;}
.y236{bottom:562.143555pt;}
.y1e8{bottom:563.547607pt;}
.y15a{bottom:564.331337pt;}
.y261{bottom:567.617594pt;}
.y2f{bottom:568.948523pt;}
.y166{bottom:570.162231pt;}
.y1ec{bottom:572.042236pt;}
.yaa{bottom:572.708903pt;}
.y1bc{bottom:573.742911pt;}
.y9{bottom:573.786667pt;}
.y12d{bottom:574.123617pt;}
.y235{bottom:574.804891pt;}
.y11e{bottom:575.375570pt;}
.y5b{bottom:575.708903pt;}
.y1e7{bottom:576.208944pt;}
.y88{bottom:576.708903pt;}
.y182{bottom:576.708944pt;}
.y260{bottom:580.278931pt;}
.y159{bottom:580.459307pt;}
.y2e{bottom:584.948523pt;}
.y165{bottom:586.162231pt;}
.y234{bottom:587.466227pt;}
.y1eb{bottom:588.042236pt;}
.ya9{bottom:588.708903pt;}
.y1e6{bottom:588.870280pt;}
.y1bb{bottom:589.876253pt;}
.y5a{bottom:591.708903pt;}
.y8{bottom:592.685334pt;}
.y87{bottom:592.708903pt;}
.y181{bottom:592.708944pt;}
.y158{bottom:596.587318pt;}
.y233{bottom:600.127563pt;}
.y148{bottom:601.190267pt;}
.y164{bottom:602.162231pt;}
.y1ea{bottom:604.042236pt;}
.ya8{bottom:604.708903pt;}
.y1ba{bottom:606.009594pt;}
.y59{bottom:607.708903pt;}
.y11d{bottom:608.042236pt;}
.y86{bottom:608.708903pt;}
.y25f{bottom:609.078939pt;}
.y157{bottom:612.715330pt;}
.y232{bottom:612.788900pt;}
.y163{bottom:618.162231pt;}
.ya7{bottom:620.708903pt;}
.y1b9{bottom:622.148266pt;}
.y58{bottom:623.708903pt;}
.y11c{bottom:624.042236pt;}
.y85{bottom:624.708903pt;}
.y231{bottom:625.450236pt;}
.y2d{bottom:628.053056pt;}
.y156{bottom:628.843300pt;}
.y1e9{bottom:636.042236pt;}
.ya6{bottom:636.708903pt;}
.y230{bottom:638.111572pt;}
.y1b8{bottom:638.276277pt;}
.y57{bottom:639.708903pt;}
.y84{bottom:640.708903pt;}
.y2c{bottom:640.714392pt;}
.y4b{bottom:640.755124pt;}
.y25e{bottom:641.078939pt;}
.y155{bottom:644.971311pt;}
.y7{bottom:645.598667pt;}
.y162{bottom:650.162231pt;}
.y22f{bottom:650.772909pt;}
.ya5{bottom:652.708903pt;}
.y1b7{bottom:654.409578pt;}
.y56{bottom:655.708903pt;}
.y11b{bottom:656.042236pt;}
.y83{bottom:656.708903pt;}
.y154{bottom:661.099322pt;}
.y22e{bottom:663.434245pt;}
.y3{bottom:668.977329pt;}
.y1b6{bottom:670.542919pt;}
.y55{bottom:671.708903pt;}
.y11a{bottom:672.042236pt;}
.y82{bottom:672.708903pt;}
.y2b{bottom:674.357458pt;}
.y22d{bottom:676.095581pt;}
.y153{bottom:677.227333pt;}
.y115{bottom:682.943937pt;}
.y113{bottom:682.943953pt;}
.ya4{bottom:684.708903pt;}
.y1b5{bottom:686.676261pt;}
.y54{bottom:687.708903pt;}
.y81{bottom:688.708903pt;}
.y22c{bottom:688.756917pt;}
.yfb{bottom:690.943933pt;}
.yff{bottom:690.943937pt;}
.y109{bottom:690.943953pt;}
.y110{bottom:690.943957pt;}
.yf5{bottom:690.944014pt;}
.yec{bottom:690.944018pt;}
.y104{bottom:690.944035pt;}
.y10e{bottom:690.944038pt;}
.y152{bottom:693.355303pt;}
.y22b{bottom:701.418213pt;}
.y1b4{bottom:702.811352pt;}
.y53{bottom:703.708903pt;}
.y80{bottom:704.708903pt;}
.y151{bottom:709.483315pt;}
.y2a{bottom:712.348954pt;}
.y270{bottom:714.072917pt;}
.y22a{bottom:714.079590pt;}
.y52{bottom:719.708903pt;}
.y7f{bottom:720.708903pt;}
.y150{bottom:725.611326pt;}
.y26f{bottom:726.734294pt;}
.y229{bottom:726.740885pt;}
.y1b3{bottom:727.707348pt;}
.y29{bottom:732.351558pt;}
.y51{bottom:735.708903pt;}
.y7e{bottom:736.708903pt;}
.y228{bottom:739.402262pt;}
.y1b2{bottom:748.902010pt;}
.y14f{bottom:749.845945pt;}
.y50{bottom:751.708903pt;}
.y227{bottom:752.063558pt;}
.y26e{bottom:752.067627pt;}
.y28{bottom:752.354244pt;}
.y7d{bottom:752.708903pt;}
.y226{bottom:764.724935pt;}
.y26d{bottom:764.728923pt;}
.y4f{bottom:767.708903pt;}
.y7c{bottom:768.708903pt;}
.y1b1{bottom:770.368644pt;}
.y14e{bottom:771.040688pt;}
.y225{bottom:777.386230pt;}
.y26c{bottom:777.390299pt;}
.y2{bottom:781.661334pt;}
.y14d{bottom:783.701983pt;}
.y7b{bottom:784.708903pt;}
.y1ad{bottom:790.047607pt;}
.y26b{bottom:790.051595pt;}
.y4e{bottom:799.708903pt;}
.y27{bottom:799.809082pt;}
.y7a{bottom:800.708903pt;}
.y14c{bottom:802.708903pt;}
.y26a{bottom:802.712972pt;}
.y25{bottom:822.992920pt;}
.y25d{bottom:834.727995pt;}
.y1c9{bottom:834.834647pt;}
.y4a{bottom:834.834662pt;}
.yf0{bottom:834.834665pt;}
.y10a{bottom:834.834682pt;}
.y111{bottom:834.834686pt;}
.y4c{bottom:835.654297pt;}
.y1{bottom:859.312000pt;}
.h22{height:26.043733pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h13{height:37.205333pt;}
.hb{height:37.376000pt;}
.h19{height:37.461355pt;}
.h18{height:37.802667pt;}
.h14{height:40.405333pt;}
.h6{height:40.800000pt;}
.hd{height:41.514667pt;}
.h3{height:42.840000pt;}
.h21{height:43.028759pt;}
.h1e{height:43.088981pt;}
.h1c{height:43.103955pt;}
.h1f{height:43.110302pt;}
.h1d{height:43.110465pt;}
.h20{height:43.110953pt;}
.h1a{height:43.648000pt;}
.h11{height:46.506667pt;}
.h1b{height:46.506829pt;}
.h12{height:47.253333pt;}
.h17{height:47.680000pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.h10{height:52.746667pt;}
.h16{height:54.560000pt;}
.hf{height:57.658667pt;}
.h15{height:58.021333pt;}
.he{height:61.429333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.xa{left:69.996800pt;}
.x8{left:71.917603pt;}
.xe{left:76.031469pt;}
.x59{left:77.362978pt;}
.xb{left:83.138133pt;}
.x5b{left:86.932800pt;}
.x1{left:90.706667pt;}
.xd{left:91.818136pt;}
.x2{left:94.486667pt;}
.x57{left:100.298136pt;}
.x28{left:114.548140pt;}
.xf{left:119.934383pt;}
.x29{left:127.209466pt;}
.x10{left:132.595719pt;}
.x2a{left:139.870802pt;}
.x11{left:145.257055pt;}
.x2b{left:152.521467pt;}
.x12{left:157.918381pt;}
.x2c{left:165.182803pt;}
.x13{left:170.558385pt;}
.x2d{left:177.844140pt;}
.x4{left:180.874667pt;}
.x14{left:183.219712pt;}
.x2e{left:190.505476pt;}
.x15{left:195.881048pt;}
.x3c{left:203.166812pt;}
.x2f{left:206.633467pt;}
.x16{left:208.542385pt;}
.x3d{left:215.828128pt;}
.x30{left:219.294803pt;}
.x17{left:221.203721pt;}
.x3e{left:228.489465pt;}
.x31{left:231.956139pt;}
.x18{left:237.331712pt;}
.x3f{left:241.150801pt;}
.x32{left:244.606794pt;}
.x19{left:249.993048pt;}
.x40{left:253.812137pt;}
.x33{left:257.268131pt;}
.x1a{left:262.654384pt;}
.x41{left:266.473473pt;}
.x5a{left:268.031481pt;}
.x34{left:269.929467pt;}
.x1b{left:275.305059pt;}
.x42{left:279.134810pt;}
.x35{left:282.590803pt;}
.x1c{left:287.966375pt;}
.x36{left:295.252139pt;}
.x9{left:299.860895pt;}
.x37{left:307.913476pt;}
.x1d{left:313.289048pt;}
.x38{left:320.574812pt;}
.x55{left:324.105461pt;}
.x1e{left:325.950384pt;}
.x39{left:333.236128pt;}
.x46{left:336.724140pt;}
.x1f{left:338.611720pt;}
.x3a{left:345.897464pt;}
.x47{left:349.385456pt;}
.x20{left:351.273057pt;}
.x3b{left:358.558800pt;}
.x48{left:362.046792pt;}
.x21{left:363.934393pt;}
.x43{left:371.220137pt;}
.x49{left:374.697467pt;}
.x22{left:376.595729pt;}
.x44{left:383.881473pt;}
.x4a{left:387.358804pt;}
.x23{left:389.257065pt;}
.x45{left:396.542809pt;}
.x4b{left:400.020140pt;}
.x24{left:401.918402pt;}
.x3{left:404.408000pt;}
.x50{left:409.204146pt;}
.x4c{left:412.681476pt;}
.x25{left:414.579738pt;}
.x51{left:421.865482pt;}
.x4d{left:425.342812pt;}
.x26{left:427.241034pt;}
.x5{left:431.874146pt;}
.x52{left:434.526818pt;}
.x4e{left:438.004149pt;}
.x27{left:439.902370pt;}
.x58{left:443.229632pt;}
.x53{left:447.188154pt;}
.x4f{left:450.665485pt;}
.x54{left:459.849450pt;}
.x7{left:463.672526pt;}
.x56{left:490.953443pt;}
.xc{left:503.032004pt;}
}




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