
    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_fb44f6704ceb4d1f1cc924d2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_4a249ae370f8aba73b969416.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_3eee4e9fa74a61e312266030.woff')format("woff");}.ff3{font-family:ff3;line-height:1.068000;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_4637499040663cec538d6775.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_c6471130016482d5bfbfae5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_0e59870438e40250f15d02be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_915bfd651c8926ba7d0354c3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_90d140a3d699736cd0ca4500.woff')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_90d140a3d699736cd0ca4500.woff')format("woff");}.ff9{font-family:ff9;line-height:0.943000;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_4637499040663cec538d6775.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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_4637499040663cec538d6775.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_90d140a3d699736cd0ca4500.woff')format("woff");}.ffc{font-family:ffc;line-height:0.943000;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_261c7e499bad1f1a66fbff6f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.v3{vertical-align:32.400000px;}
.ls1a{letter-spacing:-9.600000px;}
.ls16{letter-spacing:-8.160000px;}
.ls25{letter-spacing:-5.820000px;}
.ls2e{letter-spacing:-4.500000px;}
.ls2a{letter-spacing:-4.266000px;}
.ls1f{letter-spacing:-3.960000px;}
.ls32{letter-spacing:-3.942000px;}
.ls3{letter-spacing:-2.400000px;}
.ls2{letter-spacing:-2.280000px;}
.ls21{letter-spacing:-1.860000px;}
.ls33{letter-spacing:-1.404000px;}
.ls23{letter-spacing:-1.140000px;}
.ls29{letter-spacing:-1.134000px;}
.ls22{letter-spacing:-1.080000px;}
.lse{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.864000px;}
.ls26{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.780000px;}
.ls18{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.702000px;}
.ls10{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.480000px;}
.ls35{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.378000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.300000px;}
.ls27{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.162000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.324000px;}
.ls34{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.702000px;}
.ls36{letter-spacing:1.512000px;}
.ls0{letter-spacing:1.680000px;}
.ls2b{letter-spacing:2.058600px;}
.ls1e{letter-spacing:6.088200px;}
.ls2c{letter-spacing:6.626400px;}
.ls6{letter-spacing:12.582000px;}
.ls1d{letter-spacing:30.176400px;}
.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;}
}
.ws3{word-spacing:-54.000000px;}
.wsd{word-spacing:-19.488000px;}
.wsbc{word-spacing:-16.344000px;}
.wsc{word-spacing:-14.544000px;}
.ws7{word-spacing:-14.328000px;}
.ws10b{word-spacing:-13.920000px;}
.ws19c{word-spacing:-13.770000px;}
.ws45{word-spacing:-13.740000px;}
.ws44{word-spacing:-13.620000px;}
.ws46{word-spacing:-13.500000px;}
.wsc2{word-spacing:-13.200000px;}
.ws10a{word-spacing:-13.080000px;}
.wsbf{word-spacing:-13.020000px;}
.wse{word-spacing:-12.960000px;}
.wsc3{word-spacing:-12.840000px;}
.ws47{word-spacing:-12.780000px;}
.wsbe{word-spacing:-12.720000px;}
.ws16{word-spacing:-12.582000px;}
.wsc0{word-spacing:-12.540000px;}
.ws147{word-spacing:-12.528000px;}
.wsc1{word-spacing:-12.480000px;}
.ws4{word-spacing:-12.420000px;}
.ws142{word-spacing:-12.258000px;}
.ws153{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.988000px;}
.ws5{word-spacing:-11.880000px;}
.ws13e{word-spacing:-11.772000px;}
.ws6{word-spacing:-11.718000px;}
.wsb{word-spacing:-11.664000px;}
.wsa{word-spacing:-11.556000px;}
.ws8{word-spacing:-11.502000px;}
.ws19b{word-spacing:-11.232000px;}
.ws2{word-spacing:-10.896000px;}
.ws146{word-spacing:-10.854000px;}
.ws10{word-spacing:-10.176000px;}
.wsbd{word-spacing:-9.060000px;}
.ws1{word-spacing:-8.904000px;}
.ws0{word-spacing:-8.898912px;}
.ws10c{word-spacing:-8.520000px;}
.wsf{word-spacing:-7.940460px;}
.wsc4{word-spacing:-7.800000px;}
.ws6a{word-spacing:-5.700000px;}
.ws128{word-spacing:-5.460000px;}
.ws11b{word-spacing:-5.220000px;}
.ws173{word-spacing:-4.320000px;}
.wsd9{word-spacing:-4.284000px;}
.ws117{word-spacing:-4.080000px;}
.ws116{word-spacing:-3.900000px;}
.ws1bf{word-spacing:-3.564000px;}
.wsf2{word-spacing:-3.300000px;}
.ws12b{word-spacing:-3.240000px;}
.ws187{word-spacing:-3.180000px;}
.ws51{word-spacing:-3.120000px;}
.ws12c{word-spacing:-2.880000px;}
.ws12d{word-spacing:-2.700000px;}
.ws1d0{word-spacing:-2.646000px;}
.wscb{word-spacing:-2.640000px;}
.ws7b{word-spacing:-2.580000px;}
.ws69{word-spacing:-2.520000px;}
.wsb2{word-spacing:-2.460000px;}
.ws22{word-spacing:-2.430000px;}
.ws1c4{word-spacing:-2.376000px;}
.ws12e{word-spacing:-2.340000px;}
.ws2b{word-spacing:-2.268000px;}
.ws6f{word-spacing:-2.100000px;}
.ws1e0{word-spacing:-2.040000px;}
.ws101{word-spacing:-1.998000px;}
.ws31{word-spacing:-1.980000px;}
.ws28{word-spacing:-1.944000px;}
.ws6e{word-spacing:-1.920000px;}
.wsff{word-spacing:-1.890000px;}
.wsd6{word-spacing:-1.860000px;}
.ws6d{word-spacing:-1.800000px;}
.ws100{word-spacing:-1.782000px;}
.ws119{word-spacing:-1.740000px;}
.ws1a{word-spacing:-1.728000px;}
.ws7a{word-spacing:-1.680000px;}
.ws1b5{word-spacing:-1.620000px;}
.ws118{word-spacing:-1.560000px;}
.ws11e{word-spacing:-1.500000px;}
.ws1b{word-spacing:-1.458000px;}
.wsd7{word-spacing:-1.380000px;}
.ws23{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.242000px;}
.wsb8{word-spacing:-1.080000px;}
.ws13a{word-spacing:-1.026000px;}
.ws2a{word-spacing:-0.972000px;}
.ws76{word-spacing:-0.900000px;}
.ws13b{word-spacing:-0.864000px;}
.wsa6{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.810000px;}
.ws16a{word-spacing:-0.780000px;}
.ws102{word-spacing:-0.648000px;}
.ws1e1{word-spacing:-0.600000px;}
.ws1e{word-spacing:-0.594000px;}
.ws43{word-spacing:-0.540000px;}
.ws61{word-spacing:-0.480000px;}
.ws1dc{word-spacing:-0.324000px;}
.wsdc{word-spacing:-0.300000px;}
.ws105{word-spacing:-0.216000px;}
.ws63{word-spacing:-0.060000px;}
.ws13{word-spacing:0.000000px;}
.ws90{word-spacing:0.060000px;}
.ws149{word-spacing:0.108000px;}
.ws1e2{word-spacing:0.120000px;}
.ws2c{word-spacing:0.216000px;}
.ws8f{word-spacing:0.240000px;}
.ws1d7{word-spacing:0.270000px;}
.ws174{word-spacing:0.300000px;}
.ws14a{word-spacing:0.324000px;}
.ws11{word-spacing:0.360000px;}
.ws154{word-spacing:0.432000px;}
.ws12{word-spacing:0.480000px;}
.ws155{word-spacing:0.486000px;}
.ws131{word-spacing:0.540000px;}
.ws1e3{word-spacing:0.600000px;}
.ws2d{word-spacing:0.648000px;}
.ws159{word-spacing:0.702000px;}
.ws8b{word-spacing:0.720000px;}
.ws29{word-spacing:0.864000px;}
.ws85{word-spacing:0.900000px;}
.ws1f{word-spacing:0.918000px;}
.ws9d{word-spacing:0.960000px;}
.ws20{word-spacing:0.972000px;}
.ws14b{word-spacing:1.026000px;}
.ws79{word-spacing:1.080000px;}
.ws17{word-spacing:1.134000px;}
.ws177{word-spacing:1.140000px;}
.ws18{word-spacing:1.188000px;}
.ws130{word-spacing:1.200000px;}
.ws14c{word-spacing:1.242000px;}
.wsf6{word-spacing:1.260000px;}
.ws103{word-spacing:1.296000px;}
.ws1c5{word-spacing:1.350000px;}
.wse7{word-spacing:1.440000px;}
.ws11d{word-spacing:1.500000px;}
.wse2{word-spacing:1.560000px;}
.ws156{word-spacing:1.566000px;}
.ws157{word-spacing:1.620000px;}
.ws15b{word-spacing:1.674000px;}
.wsfa{word-spacing:1.680000px;}
.ws19{word-spacing:1.728000px;}
.ws21{word-spacing:1.782000px;}
.ws88{word-spacing:1.800000px;}
.ws158{word-spacing:1.836000px;}
.wsa5{word-spacing:1.860000px;}
.ws5c{word-spacing:1.920000px;}
.ws106{word-spacing:1.998000px;}
.ws8d{word-spacing:2.040000px;}
.ws108{word-spacing:2.052000px;}
.ws8e{word-spacing:2.100000px;}
.ws5d{word-spacing:2.160000px;}
.ws1b9{word-spacing:2.214000px;}
.ws107{word-spacing:2.322000px;}
.ws170{word-spacing:2.340000px;}
.ws5a{word-spacing:2.400000px;}
.ws104{word-spacing:2.430000px;}
.ws5e{word-spacing:2.520000px;}
.ws15a{word-spacing:2.538000px;}
.ws42{word-spacing:2.635200px;}
.ws109{word-spacing:2.700000px;}
.ws16d{word-spacing:2.760000px;}
.wsb9{word-spacing:2.940000px;}
.ws110{word-spacing:3.000000px;}
.ws82{word-spacing:3.060000px;}
.ws137{word-spacing:3.120000px;}
.ws48{word-spacing:3.180000px;}
.wscf{word-spacing:3.240000px;}
.ws96{word-spacing:3.300000px;}
.wsbb{word-spacing:3.360000px;}
.ws1c6{word-spacing:3.402000px;}
.ws120{word-spacing:3.420000px;}
.wsd3{word-spacing:3.480000px;}
.ws1c8{word-spacing:3.510000px;}
.ws95{word-spacing:3.540000px;}
.ws99{word-spacing:3.660000px;}
.ws133{word-spacing:3.720000px;}
.ws71{word-spacing:3.780000px;}
.wsee{word-spacing:3.840000px;}
.ws4c{word-spacing:3.900000px;}
.ws6b{word-spacing:3.960000px;}
.ws6c{word-spacing:4.020000px;}
.ws1b7{word-spacing:4.050000px;}
.ws182{word-spacing:4.080000px;}
.ws91{word-spacing:4.140000px;}
.ws12f{word-spacing:4.200000px;}
.ws86{word-spacing:4.260000px;}
.ws93{word-spacing:4.380000px;}
.ws183{word-spacing:4.500000px;}
.ws196{word-spacing:4.536000px;}
.ws32{word-spacing:4.560000px;}
.ws113{word-spacing:4.680000px;}
.ws1cd{word-spacing:4.698000px;}
.ws11f{word-spacing:4.740000px;}
.ws24{word-spacing:4.860000px;}
.ws67{word-spacing:4.920000px;}
.wse6{word-spacing:4.980000px;}
.ws16b{word-spacing:5.040000px;}
.ws25{word-spacing:5.076000px;}
.wsed{word-spacing:5.160000px;}
.ws33{word-spacing:5.220000px;}
.ws1ad{word-spacing:5.238000px;}
.ws87{word-spacing:5.280000px;}
.ws26{word-spacing:5.346000px;}
.ws4e{word-spacing:5.400000px;}
.ws1ce{word-spacing:5.454000px;}
.ws77{word-spacing:5.460000px;}
.wsf4{word-spacing:5.520000px;}
.ws64{word-spacing:5.580000px;}
.wsf5{word-spacing:5.700000px;}
.ws1d8{word-spacing:5.778000px;}
.ws65{word-spacing:5.820000px;}
.ws49{word-spacing:5.880000px;}
.ws163{word-spacing:6.000000px;}
.ws7f{word-spacing:6.060000px;}
.ws1de{word-spacing:6.102000px;}
.wse3{word-spacing:6.120000px;}
.wsf0{word-spacing:6.180000px;}
.ws70{word-spacing:6.300000px;}
.ws41{word-spacing:6.350400px;}
.ws136{word-spacing:6.360000px;}
.ws184{word-spacing:6.480000px;}
.wsef{word-spacing:6.540000px;}
.ws27{word-spacing:6.588000px;}
.ws10f{word-spacing:6.660000px;}
.wsba{word-spacing:6.720000px;}
.ws8c{word-spacing:6.780000px;}
.ws30{word-spacing:6.840000px;}
.wsf3{word-spacing:6.900000px;}
.wsd2{word-spacing:6.960000px;}
.ws121{word-spacing:7.020000px;}
.ws4b{word-spacing:7.080000px;}
.ws1ba{word-spacing:7.182000px;}
.ws5f{word-spacing:7.320000px;}
.ws17b{word-spacing:7.440000px;}
.ws78{word-spacing:7.500000px;}
.ws134{word-spacing:7.560000px;}
.wsf1{word-spacing:7.800000px;}
.ws135{word-spacing:7.860000px;}
.ws115{word-spacing:7.920000px;}
.ws1ca{word-spacing:7.938000px;}
.ws8a{word-spacing:7.980000px;}
.ws11a{word-spacing:8.100000px;}
.ws60{word-spacing:8.160000px;}
.wsf7{word-spacing:8.220000px;}
.ws36{word-spacing:8.280000px;}
.ws2f{word-spacing:8.400000px;}
.ws126{word-spacing:8.520000px;}
.ws37{word-spacing:8.580000px;}
.ws97{word-spacing:8.940000px;}
.ws92{word-spacing:9.000000px;}
.wsb7{word-spacing:9.060000px;}
.ws4a{word-spacing:9.120000px;}
.ws19a{word-spacing:9.234000px;}
.wsb5{word-spacing:9.300000px;}
.ws1cb{word-spacing:9.342000px;}
.ws123{word-spacing:9.540000px;}
.ws3c{word-spacing:9.600000px;}
.ws1d6{word-spacing:9.612000px;}
.ws3d{word-spacing:9.660000px;}
.ws1a2{word-spacing:9.720000px;}
.ws165{word-spacing:9.780000px;}
.ws114{word-spacing:9.840000px;}
.ws1b1{word-spacing:9.936000px;}
.ws98{word-spacing:9.960000px;}
.wsac{word-spacing:10.020000px;}
.ws172{word-spacing:10.080000px;}
.ws18d{word-spacing:10.098000px;}
.ws3e{word-spacing:10.140000px;}
.wsad{word-spacing:10.200000px;}
.ws3f{word-spacing:10.260000px;}
.wsce{word-spacing:10.320000px;}
.ws190{word-spacing:10.368000px;}
.ws171{word-spacing:10.380000px;}
.wsaf{word-spacing:10.440000px;}
.ws15c{word-spacing:10.620000px;}
.ws1a6{word-spacing:10.638000px;}
.ws11c{word-spacing:10.680000px;}
.wsae{word-spacing:10.740000px;}
.ws1d2{word-spacing:10.746000px;}
.ws52{word-spacing:10.800000px;}
.ws1da{word-spacing:10.854000px;}
.ws10d{word-spacing:10.920000px;}
.ws1a5{word-spacing:10.962000px;}
.ws83{word-spacing:11.040000px;}
.ws1bb{word-spacing:11.070000px;}
.ws81{word-spacing:11.160000px;}
.wsaa{word-spacing:11.220000px;}
.ws75{word-spacing:11.460000px;}
.ws1b3{word-spacing:11.502000px;}
.ws72{word-spacing:11.520000px;}
.ws53{word-spacing:11.580000px;}
.ws80{word-spacing:11.640000px;}
.ws56{word-spacing:12.000000px;}
.ws14{word-spacing:12.042000px;}
.ws84{word-spacing:12.060000px;}
.ws55{word-spacing:12.120000px;}
.wse8{word-spacing:12.240000px;}
.wsa9{word-spacing:12.300000px;}
.ws185{word-spacing:12.480000px;}
.ws15{word-spacing:12.582000px;}
.ws35{word-spacing:12.600000px;}
.ws5b{word-spacing:12.780000px;}
.ws1c0{word-spacing:12.798000px;}
.wsb3{word-spacing:12.960000px;}
.ws17e{word-spacing:13.020000px;}
.ws16e{word-spacing:13.080000px;}
.wsb1{word-spacing:13.140000px;}
.ws181{word-spacing:13.200000px;}
.ws192{word-spacing:13.284000px;}
.ws17a{word-spacing:13.320000px;}
.wsd4{word-spacing:13.380000px;}
.ws161{word-spacing:13.440000px;}
.ws9c{word-spacing:13.500000px;}
.ws1ac{word-spacing:13.716000px;}
.ws16f{word-spacing:13.800000px;}
.ws1db{word-spacing:13.824000px;}
.ws112{word-spacing:13.920000px;}
.ws180{word-spacing:13.980000px;}
.ws162{word-spacing:14.040000px;}
.ws40{word-spacing:14.100000px;}
.wsd5{word-spacing:14.160000px;}
.wsa4{word-spacing:14.340000px;}
.ws59{word-spacing:14.400000px;}
.wscc{word-spacing:14.640000px;}
.ws1cc{word-spacing:14.688000px;}
.ws169{word-spacing:14.700000px;}
.ws7e{word-spacing:14.760000px;}
.ws129{word-spacing:14.820000px;}
.ws1c2{word-spacing:14.850000px;}
.wsb6{word-spacing:14.940000px;}
.wsca{word-spacing:15.000000px;}
.wsea{word-spacing:15.060000px;}
.ws12a{word-spacing:15.180000px;}
.ws176{word-spacing:15.300000px;}
.ws197{word-spacing:15.336000px;}
.ws9f{word-spacing:15.480000px;}
.ws1bd{word-spacing:15.552000px;}
.wsb0{word-spacing:15.600000px;}
.ws1d5{word-spacing:15.606000px;}
.wsf8{word-spacing:15.780000px;}
.ws15d{word-spacing:16.080000px;}
.ws94{word-spacing:16.140000px;}
.ws57{word-spacing:16.320000px;}
.ws38{word-spacing:16.380000px;}
.wsec{word-spacing:16.440000px;}
.wsfd{word-spacing:16.470000px;}
.wscd{word-spacing:16.500000px;}
.ws58{word-spacing:16.680000px;}
.ws1b4{word-spacing:16.740000px;}
.ws39{word-spacing:16.800000px;}
.ws66{word-spacing:16.860000px;}
.ws3a{word-spacing:16.920000px;}
.wsa2{word-spacing:17.040000px;}
.ws2e{word-spacing:17.100000px;}
.ws127{word-spacing:17.220000px;}
.wsfe{word-spacing:17.226000px;}
.ws1a8{word-spacing:17.280000px;}
.ws3b{word-spacing:17.340000px;}
.wsdb{word-spacing:17.400000px;}
.wsda{word-spacing:17.460000px;}
.ws167{word-spacing:17.520000px;}
.ws179{word-spacing:17.640000px;}
.ws175{word-spacing:17.760000px;}
.ws168{word-spacing:18.060000px;}
.ws164{word-spacing:18.120000px;}
.ws1b6{word-spacing:18.306000px;}
.ws138{word-spacing:18.540000px;}
.ws1ae{word-spacing:18.630000px;}
.wsa3{word-spacing:18.660000px;}
.wsde{word-spacing:18.960000px;}
.wsdd{word-spacing:19.080000px;}
.ws74{word-spacing:19.200000px;}
.ws17c{word-spacing:19.260000px;}
.ws34{word-spacing:19.320000px;}
.ws18c{word-spacing:19.440000px;}
.ws125{word-spacing:19.560000px;}
.ws1af{word-spacing:19.710000px;}
.ws124{word-spacing:19.980000px;}
.ws19d{word-spacing:20.034000px;}
.ws1c9{word-spacing:20.142000px;}
.ws73{word-spacing:20.280000px;}
.wsd0{word-spacing:20.400000px;}
.ws4f{word-spacing:20.460000px;}
.wse4{word-spacing:20.640000px;}
.ws1df{word-spacing:20.682000px;}
.ws18b{word-spacing:20.700000px;}
.wsa7{word-spacing:20.760000px;}
.ws1d1{word-spacing:20.844000px;}
.ws132{word-spacing:20.940000px;}
.ws7c{word-spacing:21.000000px;}
.ws17f{word-spacing:21.060000px;}
.wsa8{word-spacing:21.240000px;}
.wse9{word-spacing:21.300000px;}
.ws166{word-spacing:21.540000px;}
.ws186{word-spacing:21.660000px;}
.ws178{word-spacing:21.780000px;}
.ws16c{word-spacing:21.840000px;}
.ws189{word-spacing:22.020000px;}
.ws7d{word-spacing:22.140000px;}
.ws1d9{word-spacing:22.626000px;}
.ws1c1{word-spacing:22.680000px;}
.wsd8{word-spacing:22.800000px;}
.ws1b8{word-spacing:23.058000px;}
.ws54{word-spacing:23.100000px;}
.wsd1{word-spacing:23.760000px;}
.wseb{word-spacing:23.820000px;}
.ws15e{word-spacing:23.880000px;}
.ws9a{word-spacing:23.940000px;}
.ws199{word-spacing:23.976000px;}
.ws9b{word-spacing:24.480000px;}
.ws62{word-spacing:24.600000px;}
.ws198{word-spacing:24.894000px;}
.ws1aa{word-spacing:24.948000px;}
.ws111{word-spacing:25.740000px;}
.wsfb{word-spacing:25.800000px;}
.ws1be{word-spacing:25.812000px;}
.ws4d{word-spacing:25.860000px;}
.ws1c3{word-spacing:26.298000px;}
.ws18e{word-spacing:26.406000px;}
.ws18a{word-spacing:27.060000px;}
.wse5{word-spacing:27.180000px;}
.ws195{word-spacing:27.216000px;}
.ws122{word-spacing:27.480000px;}
.ws191{word-spacing:27.540000px;}
.ws68{word-spacing:27.840000px;}
.ws15f{word-spacing:27.900000px;}
.ws139{word-spacing:28.140000px;}
.ws18f{word-spacing:28.512000px;}
.wse1{word-spacing:29.100000px;}
.ws160{word-spacing:29.160000px;}
.wsa1{word-spacing:29.760000px;}
.ws9e{word-spacing:30.060000px;}
.wse0{word-spacing:30.180000px;}
.wsf9{word-spacing:30.240000px;}
.wsdf{word-spacing:31.380000px;}
.ws17d{word-spacing:31.500000px;}
.ws50{word-spacing:32.880000px;}
.ws1b2{word-spacing:33.210000px;}
.wsab{word-spacing:33.600000px;}
.wsfc{word-spacing:36.240000px;}
.ws1a3{word-spacing:36.720000px;}
.ws1a4{word-spacing:37.746000px;}
.ws1dd{word-spacing:38.772000px;}
.ws89{word-spacing:39.000000px;}
.ws193{word-spacing:39.096000px;}
.ws1a9{word-spacing:40.338000px;}
.ws1a7{word-spacing:40.716000px;}
.ws19f{word-spacing:41.850000px;}
.ws10e{word-spacing:44.820000px;}
.ws188{word-spacing:50.100000px;}
.ws1d4{word-spacing:50.706000px;}
.ws1d3{word-spacing:51.462000px;}
.ws1bc{word-spacing:51.678000px;}
.ws1a0{word-spacing:65.124000px;}
.ws19e{word-spacing:66.582000px;}
.ws1b0{word-spacing:66.636000px;}
.wsa0{word-spacing:69.780000px;}
.ws194{word-spacing:74.952000px;}
.ws1cf{word-spacing:78.678000px;}
.ws1ab{word-spacing:90.936000px;}
.wsc6{word-spacing:108.546000px;}
.wsc9{word-spacing:111.840000px;}
.wsc8{word-spacing:118.806000px;}
.ws1c7{word-spacing:132.300000px;}
.wsc7{word-spacing:139.434000px;}
.ws1a1{word-spacing:157.086000px;}
.ws14f{word-spacing:175.675200px;}
.ws14e{word-spacing:194.899200px;}
.ws143{word-spacing:292.796400px;}
.ws148{word-spacing:296.688000px;}
.ws144{word-spacing:333.379200px;}
.ws13f{word-spacing:359.708400px;}
.ws13d{word-spacing:426.312600px;}
.ws140{word-spacing:471.191400px;}
.ws13c{word-spacing:503.638800px;}
.ws14d{word-spacing:580.074000px;}
.ws141{word-spacing:602.195400px;}
.ws145{word-spacing:658.462800px;}
.wsc5{word-spacing:682.121400px;}
.ws152{word-spacing:687.318000px;}
.ws151{word-spacing:694.284000px;}
.ws150{word-spacing:714.912000px;}
._14{margin-left:-2823.971400px;}
._5{margin-left:-9.156888px;}
._4{margin-left:-7.333488px;}
._9{margin-left:-5.634000px;}
._10{margin-left:-4.536312px;}
._2{margin-left:-3.279600px;}
._0{margin-left:-1.308000px;}
._1{width:1.200000px;}
._3{width:2.748000px;}
._15{width:3.846600px;}
._b{width:5.207400px;}
._11{width:6.511800px;}
._a{width:7.926600px;}
._12{width:9.762000px;}
._23{width:10.929000px;}
._8{width:11.940600px;}
._7{width:13.323600px;}
._e{width:15.178200px;}
._f{width:18.553800px;}
._24{width:20.080200px;}
._d{width:22.965000px;}
._6{width:35.783400px;}
._1e{width:44.663400px;}
._1f{width:56.111400px;}
._16{width:59.119200px;}
._41{width:64.710000px;}
._2c{width:66.750000px;}
._13{width:70.139400px;}
._38{width:121.590000px;}
._2a{width:128.808600px;}
._1a{width:130.848000px;}
._21{width:134.682000px;}
._3c{width:139.429200px;}
._1c{width:150.342000px;}
._18{width:154.230000px;}
._33{width:157.878600px;}
._37{width:181.122600px;}
._2d{width:204.612600px;}
._42{width:207.157200px;}
._2b{width:210.961800px;}
._32{width:255.374400px;}
._34{width:304.398600px;}
._29{width:306.118200px;}
._36{width:309.846600px;}
._2f{width:321.306000px;}
._35{width:330.241800px;}
._20{width:416.333400px;}
._3b{width:422.262000px;}
._30{width:424.972800px;}
._22{width:427.781400px;}
._3a{width:448.247400px;}
._28{width:455.997600px;}
._27{width:464.081400px;}
._31{width:509.472600px;}
._26{width:554.378400px;}
._2e{width:585.303600px;}
._25{width:591.253488px;}
._1d{width:621.005400px;}
._1b{width:646.049400px;}
._17{width:677.747400px;}
._19{width:689.195400px;}
._39{width:699.346800px;}
._3e{width:706.326000px;}
._40{width:710.160000px;}
._3f{width:725.820000px;}
._3d{width:729.708000px;}
._c{width:1762.269000px;}
.fc2{color:rgb(9,70,36);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:109.275600px;}
.y6f{bottom:127.559100px;}
.ycf{bottom:127.794750px;}
.y19f{bottom:127.949550px;}
.ya6{bottom:128.061600px;}
.y32{bottom:128.527500px;}
.y215{bottom:137.705250px;}
.y1d6{bottom:142.716150px;}
.y31{bottom:143.527500px;}
.y108{bottom:145.559100px;}
.y6e{bottom:145.643850px;}
.yf8{bottom:145.825950px;}
.yce{bottom:145.966500px;}
.y19e{bottom:146.027550px;}
.ya5{bottom:146.121750px;}
.y214{bottom:155.705250px;}
.y1d5{bottom:157.873200px;}
.y30{bottom:158.527500px;}
.y107{bottom:163.559100px;}
.y6d{bottom:163.728450px;}
.yf7{bottom:164.092650px;}
.y19d{bottom:164.105400px;}
.ycd{bottom:164.138100px;}
.ya4{bottom:164.181900px;}
.y1d4{bottom:173.030250px;}
.y213{bottom:173.705250px;}
.y106{bottom:181.559100px;}
.y6c{bottom:181.813200px;}
.y19c{bottom:182.183100px;}
.ya3{bottom:182.242050px;}
.ycc{bottom:182.309850px;}
.yf6{bottom:182.359500px;}
.y1d3{bottom:188.187450px;}
.y212{bottom:191.705250px;}
.y26{bottom:195.165450px;}
.y2d{bottom:195.472200px;}
.y105{bottom:199.559100px;}
.y6b{bottom:199.897950px;}
.y19b{bottom:200.260950px;}
.ya2{bottom:200.302200px;}
.ycb{bottom:200.481450px;}
.yf5{bottom:200.626200px;}
.y1d2{bottom:203.344500px;}
.y2c{bottom:213.533550px;}
.y25{bottom:213.749250px;}
.y211{bottom:213.957300px;}
.y104{bottom:217.559100px;}
.y6a{bottom:217.982550px;}
.y19a{bottom:218.338800px;}
.ya1{bottom:218.362500px;}
.y1d1{bottom:218.501550px;}
.yca{bottom:218.653050px;}
.yf4{bottom:218.893050px;}
.y2b{bottom:231.594900px;}
.y210{bottom:231.957300px;}
.y24{bottom:232.333050px;}
.y1d0{bottom:233.658600px;}
.y69{bottom:236.067300px;}
.y199{bottom:236.416650px;}
.ya0{bottom:236.422650px;}
.yc9{bottom:236.824650px;}
.yf3{bottom:237.159900px;}
.y1cf{bottom:248.815650px;}
.y2a{bottom:249.656400px;}
.y20f{bottom:249.957300px;}
.y23{bottom:250.916850px;}
.y68{bottom:254.151900px;}
.y9f{bottom:254.482800px;}
.y198{bottom:254.494500px;}
.yc8{bottom:254.996400px;}
.yf2{bottom:255.426600px;}
.y1ce{bottom:263.972700px;}
.y29{bottom:267.717750px;}
.y20e{bottom:267.957300px;}
.y22{bottom:269.500650px;}
.y67{bottom:272.236650px;}
.y9e{bottom:272.542950px;}
.y197{bottom:272.572350px;}
.yc7{bottom:273.168000px;}
.yf1{bottom:273.693450px;}
.y1cd{bottom:279.129750px;}
.y28{bottom:285.778950px;}
.y20d{bottom:285.957300px;}
.y66{bottom:290.321250px;}
.y9d{bottom:290.603100px;}
.y196{bottom:290.650200px;}
.yf0{bottom:291.960300px;}
.y1cc{bottom:294.286800px;}
.yc6{bottom:295.591650px;}
.y21{bottom:300.840300px;}
.y27{bottom:303.840300px;}
.y20c{bottom:303.957300px;}
.y65{bottom:308.406000px;}
.y9c{bottom:308.663250px;}
.y195{bottom:308.728050px;}
.y1cb{bottom:309.444000px;}
.yef{bottom:310.227000px;}
.yc5{bottom:313.763250px;}
.y1ca{bottom:324.601050px;}
.y20b{bottom:326.209200px;}
.y64{bottom:326.490750px;}
.y9b{bottom:326.723400px;}
.y194{bottom:326.805900px;}
.yee{bottom:328.493850px;}
.yc4{bottom:336.186900px;}
.y1c9{bottom:339.758100px;}
.y20a{bottom:344.209200px;}
.y63{bottom:344.575350px;}
.y9a{bottom:344.783550px;}
.y193{bottom:344.883750px;}
.yed{bottom:346.760550px;}
.yc3{bottom:354.358500px;}
.y1c8{bottom:354.915150px;}
.y20{bottom:360.169500px;}
.y209{bottom:362.209200px;}
.y62{bottom:362.660100px;}
.y99{bottom:362.843700px;}
.y192{bottom:362.961600px;}
.yec{bottom:365.027400px;}
.y1c7{bottom:370.072200px;}
.y61{bottom:380.744700px;}
.y98{bottom:380.903850px;}
.y191{bottom:381.039300px;}
.yeb{bottom:383.294250px;}
.y1c6{bottom:385.229250px;}
.y1f{bottom:385.234800px;}
.y208{bottom:388.713150px;}
.yc2{bottom:398.041950px;}
.y60{bottom:398.829450px;}
.y97{bottom:398.964000px;}
.y190{bottom:399.117300px;}
.y1c5{bottom:400.386450px;}
.yea{bottom:401.560950px;}
.y1c4{bottom:415.543500px;}
.y5f{bottom:416.914200px;}
.y96{bottom:417.024150px;}
.y18f{bottom:417.195150px;}
.ye9{bottom:419.827800px;}
.y5e{bottom:434.998800px;}
.y95{bottom:435.084450px;}
.y18e{bottom:435.272850px;}
.y1e{bottom:435.811950px;}
.ye8{bottom:438.094500px;}
.y207{bottom:439.476900px;}
.yc1{bottom:440.473500px;}
.y1c3{bottom:443.456400px;}
.y1d{bottom:452.373300px;}
.y5d{bottom:453.083550px;}
.y94{bottom:453.144600px;}
.y18d{bottom:453.350850px;}
.y206{bottom:454.476900px;}
.ye7{bottom:456.361350px;}
.yc0{bottom:458.645100px;}
.y1c{bottom:468.934650px;}
.y205{bottom:469.476900px;}
.y5c{bottom:471.168300px;}
.y93{bottom:471.204750px;}
.y18c{bottom:471.428550px;}
.ye6{bottom:474.628200px;}
.ybf{bottom:476.816700px;}
.y204{bottom:484.476900px;}
.y1b{bottom:485.496000px;}
.y1c2{bottom:485.873400px;}
.y5b{bottom:489.252900px;}
.y92{bottom:489.264900px;}
.y18b{bottom:489.506400px;}
.ye5{bottom:492.894900px;}
.ybe{bottom:494.988300px;}
.y203{bottom:499.476900px;}
.y1a{bottom:502.057350px;}
.y1c1{bottom:504.030450px;}
.y91{bottom:507.325050px;}
.y5a{bottom:507.337650px;}
.y18a{bottom:507.584250px;}
.ye4{bottom:511.161750px;}
.ybd{bottom:513.160050px;}
.y202{bottom:514.476900px;}
.y19{bottom:518.618700px;}
.y1c0{bottom:522.187500px;}
.y59{bottom:525.422400px;}
.y189{bottom:525.662100px;}
.y12b{bottom:527.815350px;}
.ye3{bottom:529.428600px;}
.y201{bottom:529.476900px;}
.ybc{bottom:531.331650px;}
.y18{bottom:535.180050px;}
.y90{bottom:538.141200px;}
.y1bf{bottom:540.344550px;}
.y58{bottom:543.507000px;}
.y188{bottom:543.739950px;}
.y200{bottom:544.476900px;}
.y12a{bottom:545.831700px;}
.ye2{bottom:547.695300px;}
.ybb{bottom:549.503250px;}
.y17{bottom:551.741400px;}
.y1be{bottom:558.501600px;}
.y1ff{bottom:559.476900px;}
.y57{bottom:561.591750px;}
.y187{bottom:561.817800px;}
.y129{bottom:563.848050px;}
.ye1{bottom:565.962150px;}
.yba{bottom:567.675000px;}
.y16{bottom:568.302750px;}
.y1fe{bottom:574.476900px;}
.y1bd{bottom:576.658650px;}
.y56{bottom:579.676350px;}
.y186{bottom:579.895650px;}
.y8f{bottom:580.461150px;}
.y128{bottom:581.864250px;}
.ye0{bottom:584.229000px;}
.y15{bottom:584.864100px;}
.yb9{bottom:585.846600px;}
.y1fd{bottom:589.476900px;}
.y1bc{bottom:594.815700px;}
.y55{bottom:597.761100px;}
.y185{bottom:597.973500px;}
.y8e{bottom:598.521300px;}
.y127{bottom:599.880600px;}
.y14{bottom:601.425450px;}
.y159{bottom:601.653600px;}
.y166{bottom:602.066400px;}
.ydf{bottom:602.495700px;}
.yb8{bottom:604.018200px;}
.y1fc{bottom:604.476900px;}
.y1bb{bottom:612.972900px;}
.y54{bottom:615.845700px;}
.y184{bottom:616.051350px;}
.y8d{bottom:616.581450px;}
.y126{bottom:617.896950px;}
.y13{bottom:617.986800px;}
.y1fb{bottom:619.476900px;}
.y149{bottom:619.712700px;}
.y165{bottom:620.262450px;}
.yde{bottom:620.762550px;}
.y158{bottom:621.223350px;}
.yb7{bottom:622.189800px;}
.y147{bottom:627.812700px;}
.y1ba{bottom:631.129950px;}
.y53{bottom:633.930450px;}
.y183{bottom:634.129200px;}
.y1fa{bottom:634.476900px;}
.y12{bottom:634.548300px;}
.y8c{bottom:634.641750px;}
.y146{bottom:635.912700px;}
.y125{bottom:635.913300px;}
.y164{bottom:638.458500px;}
.ydd{bottom:639.029400px;}
.yb6{bottom:640.361550px;}
.y157{bottom:640.793100px;}
.y1b9{bottom:649.287000px;}
.y1f9{bottom:649.476900px;}
.y11{bottom:651.109650px;}
.y52{bottom:652.015200px;}
.y148{bottom:652.112700px;}
.y182{bottom:652.207050px;}
.y8b{bottom:652.701900px;}
.y124{bottom:653.929650px;}
.y163{bottom:656.654550px;}
.ydc{bottom:657.296100px;}
.yb5{bottom:658.533150px;}
.y156{bottom:660.362850px;}
.y1f8{bottom:664.476900px;}
.y1b8{bottom:667.444050px;}
.y10{bottom:667.671000px;}
.y51{bottom:670.099800px;}
.y181{bottom:670.284900px;}
.y145{bottom:670.431000px;}
.y8a{bottom:670.762050px;}
.y123{bottom:671.945850px;}
.y162{bottom:674.850450px;}
.ydb{bottom:675.562950px;}
.yb4{bottom:676.704750px;}
.y1f7{bottom:679.476900px;}
.y155{bottom:679.932750px;}
.yf{bottom:684.232350px;}
.y1b7{bottom:685.601100px;}
.y144{bottom:686.631000px;}
.y50{bottom:688.184550px;}
.y180{bottom:688.362600px;}
.y89{bottom:688.822200px;}
.y122{bottom:689.962200px;}
.y161{bottom:693.046500px;}
.yda{bottom:693.829800px;}
.y1f6{bottom:694.476900px;}
.yb3{bottom:694.876350px;}
.y154{bottom:699.502500px;}
.ye{bottom:700.793700px;}
.y1b6{bottom:703.758150px;}
.y4f{bottom:706.269300px;}
.y143{bottom:706.420050px;}
.y17f{bottom:706.440600px;}
.y88{bottom:706.882350px;}
.y121{bottom:707.978550px;}
.y1f5{bottom:709.476900px;}
.y160{bottom:711.242550px;}
.yd9{bottom:712.096500px;}
.yb2{bottom:713.048100px;}
.yd{bottom:717.355050px;}
.y153{bottom:719.072250px;}
.y1b5{bottom:721.915200px;}
.y4e{bottom:724.353900px;}
.y1f4{bottom:724.476900px;}
.y17e{bottom:724.518300px;}
.y87{bottom:724.942500px;}
.y120{bottom:725.994900px;}
.y142{bottom:727.679850px;}
.y15f{bottom:729.438600px;}
.yd8{bottom:730.363350px;}
.yb1{bottom:731.219700px;}
.y152{bottom:738.642000px;}
.y1f3{bottom:739.476900px;}
.y1b4{bottom:740.072250px;}
.yc{bottom:742.420350px;}
.y4d{bottom:742.438650px;}
.y17d{bottom:742.596150px;}
.y86{bottom:743.002650px;}
.y11f{bottom:744.011100px;}
.y15e{bottom:747.634650px;}
.yd7{bottom:748.630050px;}
.y141{bottom:748.939800px;}
.yb0{bottom:749.391300px;}
.y1f2{bottom:754.476900px;}
.y151{bottom:758.211900px;}
.y1b3{bottom:758.229450px;}
.y4c{bottom:760.523250px;}
.y17c{bottom:760.674000px;}
.y85{bottom:761.062800px;}
.y11e{bottom:762.027450px;}
.y15d{bottom:765.830700px;}
.yd6{bottom:766.896900px;}
.yaf{bottom:767.562900px;}
.y1f1{bottom:769.476900px;}
.y140{bottom:770.199600px;}
.y1b2{bottom:776.386350px;}
.y150{bottom:777.781650px;}
.y4b{bottom:778.608000px;}
.y17b{bottom:778.752000px;}
.y84{bottom:779.122950px;}
.y11d{bottom:780.043800px;}
.y15c{bottom:784.026750px;}
.y1f0{bottom:784.476900px;}
.yd5{bottom:785.163600px;}
.yae{bottom:785.734650px;}
.y13f{bottom:791.459400px;}
.yb{bottom:794.497500px;}
.y1b1{bottom:794.543550px;}
.y4a{bottom:796.692750px;}
.y17a{bottom:796.829700px;}
.y83{bottom:797.183100px;}
.y14f{bottom:797.351400px;}
.y11c{bottom:798.060150px;}
.y1ef{bottom:799.476900px;}
.yd4{bottom:803.430450px;}
.yad{bottom:803.906250px;}
.y13e{bottom:811.248600px;}
.y1b0{bottom:812.700600px;}
.y1ee{bottom:814.476900px;}
.y49{bottom:814.777350px;}
.y179{bottom:814.907550px;}
.y15b{bottom:814.978650px;}
.y82{bottom:815.243250px;}
.y11b{bottom:816.076500px;}
.y14e{bottom:816.921150px;}
.y13d{bottom:819.348600px;}
.yd3{bottom:821.697300px;}
.yac{bottom:822.077850px;}
.y1ed{bottom:829.476900px;}
.y1af{bottom:830.857650px;}
.y48{bottom:832.862100px;}
.y178{bottom:832.985400px;}
.y81{bottom:833.303400px;}
.y11a{bottom:834.092700px;}
.y14d{bottom:836.490900px;}
.yd2{bottom:839.964150px;}
.yab{bottom:840.249600px;}
.ya{bottom:842.322600px;}
.y1ec{bottom:844.476900px;}
.y13c{bottom:845.766750px;}
.y1ae{bottom:849.014700px;}
.y47{bottom:850.946850px;}
.y177{bottom:851.063250px;}
.y80{bottom:851.363700px;}
.y119{bottom:852.109200px;}
.y13b{bottom:853.866750px;}
.y14c{bottom:856.060800px;}
.y15a{bottom:857.434500px;}
.yd1{bottom:858.230850px;}
.yaa{bottom:858.421200px;}
.y1eb{bottom:859.476900px;}
.y1ad{bottom:867.171750px;}
.y46{bottom:869.031450px;}
.y176{bottom:869.141100px;}
.y9{bottom:869.385450px;}
.y7f{bottom:869.423850px;}
.y118{bottom:870.125400px;}
.y1ea{bottom:874.476900px;}
.y14b{bottom:875.630550px;}
.yd0{bottom:876.497700px;}
.ya9{bottom:876.592800px;}
.y13a{bottom:881.755950px;}
.y1ac{bottom:885.328800px;}
.y45{bottom:887.116200px;}
.y175{bottom:887.218950px;}
.y8{bottom:887.446800px;}
.y7e{bottom:887.484000px;}
.y117{bottom:888.141750px;}
.y1e9{bottom:889.476900px;}
.ya8{bottom:894.764400px;}
.y139{bottom:903.015750px;}
.y1ab{bottom:903.486000px;}
.y1e8{bottom:904.476900px;}
.y44{bottom:905.200800px;}
.y174{bottom:905.296800px;}
.y7{bottom:905.508150px;}
.y7d{bottom:905.544150px;}
.y116{bottom:906.157950px;}
.y14a{bottom:912.969450px;}
.y1e7{bottom:919.476900px;}
.y1aa{bottom:921.643050px;}
.y43{bottom:923.285550px;}
.y173{bottom:923.374650px;}
.y6{bottom:923.569500px;}
.y7c{bottom:923.604300px;}
.y115{bottom:924.174450px;}
.y138{bottom:924.275550px;}
.y103{bottom:934.229250px;}
.y1e6{bottom:934.476900px;}
.y1a9{bottom:939.800100px;}
.y42{bottom:941.370150px;}
.y172{bottom:941.452350px;}
.y5{bottom:941.630850px;}
.y7b{bottom:941.664600px;}
.y114{bottom:942.190650px;}
.y137{bottom:944.064750px;}
.y1e5{bottom:949.476900px;}
.y136{bottom:952.164600px;}
.y102{bottom:955.489050px;}
.y1a8{bottom:957.957150px;}
.y41{bottom:959.454900px;}
.y171{bottom:959.530350px;}
.y7a{bottom:959.724750px;}
.y113{bottom:960.207000px;}
.y1e4{bottom:964.476900px;}
.y4{bottom:968.196150px;}
.y1a7{bottom:976.114200px;}
.y101{bottom:976.749000px;}
.y40{bottom:977.539650px;}
.y170{bottom:977.608200px;}
.y79{bottom:977.784900px;}
.y112{bottom:978.223350px;}
.y1e3{bottom:979.476900px;}
.y135{bottom:980.053650px;}
.y3{bottom:989.857500px;}
.y1a6{bottom:994.271250px;}
.y1e2{bottom:994.476900px;}
.y3f{bottom:995.624250px;}
.y16f{bottom:995.685900px;}
.y78{bottom:995.845050px;}
.y111{bottom:996.239700px;}
.y100{bottom:998.008800px;}
.y134{bottom:999.842850px;}
.y131{bottom:1007.942850px;}
.y1e1{bottom:1009.476900px;}
.y1a5{bottom:1012.428450px;}
.y3e{bottom:1013.709000px;}
.y16e{bottom:1013.763750px;}
.y77{bottom:1013.905200px;}
.y110{bottom:1014.256050px;}
.y130{bottom:1016.042850px;}
.yff{bottom:1019.268750px;}
.y132{bottom:1024.142700px;}
.y1e0{bottom:1024.476900px;}
.y2{bottom:1029.517500px;}
.y3d{bottom:1031.793750px;}
.y16d{bottom:1031.841600px;}
.y76{bottom:1031.965350px;}
.y133{bottom:1032.242850px;}
.y10f{bottom:1032.272250px;}
.y1df{bottom:1039.476900px;}
.yfe{bottom:1040.528550px;}
.y1a4{bottom:1043.341350px;}
.y3c{bottom:1049.878350px;}
.y16c{bottom:1049.919600px;}
.y75{bottom:1050.025500px;}
.y10e{bottom:1050.288600px;}
.y12f{bottom:1052.031900px;}
.y1de{bottom:1054.476900px;}
.yfd{bottom:1061.788350px;}
.y1{bottom:1065.578850px;}
.y3b{bottom:1067.963100px;}
.y16b{bottom:1067.997300px;}
.y74{bottom:1068.085650px;}
.y10d{bottom:1068.304950px;}
.y1dd{bottom:1069.476900px;}
.y12e{bottom:1071.820950px;}
.yfc{bottom:1083.048150px;}
.y1dc{bottom:1084.476900px;}
.y1a3{bottom:1085.758350px;}
.y3a{bottom:1086.047850px;}
.y16a{bottom:1086.075150px;}
.y73{bottom:1086.145800px;}
.y10c{bottom:1086.321300px;}
.y12d{bottom:1088.020950px;}
.y1db{bottom:1099.476900px;}
.y1a2{bottom:1103.915250px;}
.y39{bottom:1104.132450px;}
.y169{bottom:1104.153000px;}
.y72{bottom:1104.205950px;}
.y10b{bottom:1104.337500px;}
.yfb{bottom:1106.434050px;}
.y12c{bottom:1108.560000px;}
.y1da{bottom:1114.476900px;}
.y34{bottom:1121.267700px;}
.y1a1{bottom:1122.072450px;}
.y38{bottom:1122.217200px;}
.y168{bottom:1122.230850px;}
.y71{bottom:1122.266250px;}
.y10a{bottom:1122.354000px;}
.y1d9{bottom:1129.476900px;}
.y1a0{bottom:1140.229500px;}
.y37{bottom:1140.301800px;}
.y167{bottom:1140.308700px;}
.y70{bottom:1140.326400px;}
.y109{bottom:1140.370200px;}
.yfa{bottom:1141.477050px;}
.y1d8{bottom:1144.476900px;}
.y36{bottom:1158.386550px;}
.y1d7{bottom:1159.476900px;}
.yf9{bottom:1159.477050px;}
.y2f{bottom:1160.341200px;}
.y2e{bottom:1178.341200px;}
.y35{bottom:1193.406000px;}
.ya7{bottom:1193.406150px;}
.hb{height:31.147200px;}
.ha{height:34.608000px;}
.hf{height:37.962000px;}
.h6{height:38.556000px;}
.h4{height:38.928000px;}
.hc{height:38.934000px;}
.he{height:42.720000px;}
.hd{height:42.840000px;}
.h13{height:43.260000px;}
.h5{height:43.794000px;}
.h9{height:48.660000px;}
.h7{height:51.912000px;}
.h3{height:58.392000px;}
.h8{height:60.564000px;}
.h11{height:76.193400px;}
.h10{height:76.194000px;}
.h12{height:76.194600px;}
.h2{height:86.520000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:76.535400px;}
.x11{left:93.543300px;}
.x5{left:110.551200px;}
.x19{left:114.803100px;}
.x16{left:127.558950px;}
.x18{left:136.062900px;}
.xc{left:144.566850px;}
.x17{left:168.904800px;}
.x1{left:172.735500px;}
.x3{left:179.327100px;}
.x2{left:201.616500px;}
.xd{left:209.791200px;}
.x2a{left:226.802400px;}
.x1b{left:247.591350px;}
.x31{left:250.866150px;}
.x24{left:256.825200px;}
.x25{left:262.272300px;}
.x22{left:269.076300px;}
.x1a{left:288.826350px;}
.x4{left:326.413050px;}
.x6{left:330.655350px;}
.x7{left:375.767700px;}
.x2b{left:428.736000px;}
.x15{left:434.881050px;}
.x1c{left:436.390350px;}
.x2c{left:437.747550px;}
.x12{left:440.078700px;}
.x2d{left:447.582300px;}
.x1d{left:451.685700px;}
.x13{left:457.086600px;}
.x26{left:460.919700px;}
.x27{left:466.366800px;}
.xe{left:474.094500px;}
.x23{left:477.949800px;}
.x35{left:491.102250px;}
.x8{left:492.520350px;}
.x14{left:493.750050px;}
.x9{left:539.090550px;}
.x33{left:541.100400px;}
.x32{left:554.763750px;}
.x34{left:588.097050px;}
.x1e{left:633.944700px;}
.x2e{left:638.467650px;}
.x20{left:651.697650px;}
.x1f{left:654.026400px;}
.x28{left:658.636350px;}
.x2f{left:662.221050px;}
.x29{left:664.083450px;}
.xa{left:669.991350px;}
.x21{left:681.984150px;}
.x30{left:690.759300px;}
.xf{left:705.518550px;}
.xb{left:720.802350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.v3{vertical-align:28.800000pt;}
.ls1a{letter-spacing:-8.533333pt;}
.ls16{letter-spacing:-7.253333pt;}
.ls25{letter-spacing:-5.173333pt;}
.ls2e{letter-spacing:-4.000000pt;}
.ls2a{letter-spacing:-3.792000pt;}
.ls1f{letter-spacing:-3.520000pt;}
.ls32{letter-spacing:-3.504000pt;}
.ls3{letter-spacing:-2.133333pt;}
.ls2{letter-spacing:-2.026667pt;}
.ls21{letter-spacing:-1.653333pt;}
.ls33{letter-spacing:-1.248000pt;}
.ls23{letter-spacing:-1.013333pt;}
.ls29{letter-spacing:-1.008000pt;}
.ls22{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls26{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.624000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.426667pt;}
.ls35{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.266667pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.288000pt;}
.ls34{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.624000pt;}
.ls36{letter-spacing:1.344000pt;}
.ls0{letter-spacing:1.493333pt;}
.ls2b{letter-spacing:1.829867pt;}
.ls1e{letter-spacing:5.411733pt;}
.ls2c{letter-spacing:5.890133pt;}
.ls6{letter-spacing:11.184000pt;}
.ls1d{letter-spacing:26.823467pt;}
.ws3{word-spacing:-48.000000pt;}
.wsd{word-spacing:-17.322667pt;}
.wsbc{word-spacing:-14.528000pt;}
.wsc{word-spacing:-12.928000pt;}
.ws7{word-spacing:-12.736000pt;}
.ws10b{word-spacing:-12.373333pt;}
.ws19c{word-spacing:-12.240000pt;}
.ws45{word-spacing:-12.213333pt;}
.ws44{word-spacing:-12.106667pt;}
.ws46{word-spacing:-12.000000pt;}
.wsc2{word-spacing:-11.733333pt;}
.ws10a{word-spacing:-11.626667pt;}
.wsbf{word-spacing:-11.573333pt;}
.wse{word-spacing:-11.520000pt;}
.wsc3{word-spacing:-11.413333pt;}
.ws47{word-spacing:-11.360000pt;}
.wsbe{word-spacing:-11.306667pt;}
.ws16{word-spacing:-11.184000pt;}
.wsc0{word-spacing:-11.146667pt;}
.ws147{word-spacing:-11.136000pt;}
.wsc1{word-spacing:-11.093333pt;}
.ws4{word-spacing:-11.040000pt;}
.ws142{word-spacing:-10.896000pt;}
.ws153{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.656000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws13e{word-spacing:-10.464000pt;}
.ws6{word-spacing:-10.416000pt;}
.wsb{word-spacing:-10.368000pt;}
.wsa{word-spacing:-10.272000pt;}
.ws8{word-spacing:-10.224000pt;}
.ws19b{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws146{word-spacing:-9.648000pt;}
.ws10{word-spacing:-9.045333pt;}
.wsbd{word-spacing:-8.053333pt;}
.ws1{word-spacing:-7.914667pt;}
.ws0{word-spacing:-7.910144pt;}
.ws10c{word-spacing:-7.573333pt;}
.wsf{word-spacing:-7.058187pt;}
.wsc4{word-spacing:-6.933333pt;}
.ws6a{word-spacing:-5.066667pt;}
.ws128{word-spacing:-4.853333pt;}
.ws11b{word-spacing:-4.640000pt;}
.ws173{word-spacing:-3.840000pt;}
.wsd9{word-spacing:-3.808000pt;}
.ws117{word-spacing:-3.626667pt;}
.ws116{word-spacing:-3.466667pt;}
.ws1bf{word-spacing:-3.168000pt;}
.wsf2{word-spacing:-2.933333pt;}
.ws12b{word-spacing:-2.880000pt;}
.ws187{word-spacing:-2.826667pt;}
.ws51{word-spacing:-2.773333pt;}
.ws12c{word-spacing:-2.560000pt;}
.ws12d{word-spacing:-2.400000pt;}
.ws1d0{word-spacing:-2.352000pt;}
.wscb{word-spacing:-2.346667pt;}
.ws7b{word-spacing:-2.293333pt;}
.ws69{word-spacing:-2.240000pt;}
.wsb2{word-spacing:-2.186667pt;}
.ws22{word-spacing:-2.160000pt;}
.ws1c4{word-spacing:-2.112000pt;}
.ws12e{word-spacing:-2.080000pt;}
.ws2b{word-spacing:-2.016000pt;}
.ws6f{word-spacing:-1.866667pt;}
.ws1e0{word-spacing:-1.813333pt;}
.ws101{word-spacing:-1.776000pt;}
.ws31{word-spacing:-1.760000pt;}
.ws28{word-spacing:-1.728000pt;}
.ws6e{word-spacing:-1.706667pt;}
.wsff{word-spacing:-1.680000pt;}
.wsd6{word-spacing:-1.653333pt;}
.ws6d{word-spacing:-1.600000pt;}
.ws100{word-spacing:-1.584000pt;}
.ws119{word-spacing:-1.546667pt;}
.ws1a{word-spacing:-1.536000pt;}
.ws7a{word-spacing:-1.493333pt;}
.ws1b5{word-spacing:-1.440000pt;}
.ws118{word-spacing:-1.386667pt;}
.ws11e{word-spacing:-1.333333pt;}
.ws1b{word-spacing:-1.296000pt;}
.wsd7{word-spacing:-1.226667pt;}
.ws23{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.104000pt;}
.wsb8{word-spacing:-0.960000pt;}
.ws13a{word-spacing:-0.912000pt;}
.ws2a{word-spacing:-0.864000pt;}
.ws76{word-spacing:-0.800000pt;}
.ws13b{word-spacing:-0.768000pt;}
.wsa6{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.720000pt;}
.ws16a{word-spacing:-0.693333pt;}
.ws102{word-spacing:-0.576000pt;}
.ws1e1{word-spacing:-0.533333pt;}
.ws1e{word-spacing:-0.528000pt;}
.ws43{word-spacing:-0.480000pt;}
.ws61{word-spacing:-0.426667pt;}
.ws1dc{word-spacing:-0.288000pt;}
.wsdc{word-spacing:-0.266667pt;}
.ws105{word-spacing:-0.192000pt;}
.ws63{word-spacing:-0.053333pt;}
.ws13{word-spacing:0.000000pt;}
.ws90{word-spacing:0.053333pt;}
.ws149{word-spacing:0.096000pt;}
.ws1e2{word-spacing:0.106667pt;}
.ws2c{word-spacing:0.192000pt;}
.ws8f{word-spacing:0.213333pt;}
.ws1d7{word-spacing:0.240000pt;}
.ws174{word-spacing:0.266667pt;}
.ws14a{word-spacing:0.288000pt;}
.ws11{word-spacing:0.320000pt;}
.ws154{word-spacing:0.384000pt;}
.ws12{word-spacing:0.426667pt;}
.ws155{word-spacing:0.432000pt;}
.ws131{word-spacing:0.480000pt;}
.ws1e3{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.576000pt;}
.ws159{word-spacing:0.624000pt;}
.ws8b{word-spacing:0.640000pt;}
.ws29{word-spacing:0.768000pt;}
.ws85{word-spacing:0.800000pt;}
.ws1f{word-spacing:0.816000pt;}
.ws9d{word-spacing:0.853333pt;}
.ws20{word-spacing:0.864000pt;}
.ws14b{word-spacing:0.912000pt;}
.ws79{word-spacing:0.960000pt;}
.ws17{word-spacing:1.008000pt;}
.ws177{word-spacing:1.013333pt;}
.ws18{word-spacing:1.056000pt;}
.ws130{word-spacing:1.066667pt;}
.ws14c{word-spacing:1.104000pt;}
.wsf6{word-spacing:1.120000pt;}
.ws103{word-spacing:1.152000pt;}
.ws1c5{word-spacing:1.200000pt;}
.wse7{word-spacing:1.280000pt;}
.ws11d{word-spacing:1.333333pt;}
.wse2{word-spacing:1.386667pt;}
.ws156{word-spacing:1.392000pt;}
.ws157{word-spacing:1.440000pt;}
.ws15b{word-spacing:1.488000pt;}
.wsfa{word-spacing:1.493333pt;}
.ws19{word-spacing:1.536000pt;}
.ws21{word-spacing:1.584000pt;}
.ws88{word-spacing:1.600000pt;}
.ws158{word-spacing:1.632000pt;}
.wsa5{word-spacing:1.653333pt;}
.ws5c{word-spacing:1.706667pt;}
.ws106{word-spacing:1.776000pt;}
.ws8d{word-spacing:1.813333pt;}
.ws108{word-spacing:1.824000pt;}
.ws8e{word-spacing:1.866667pt;}
.ws5d{word-spacing:1.920000pt;}
.ws1b9{word-spacing:1.968000pt;}
.ws107{word-spacing:2.064000pt;}
.ws170{word-spacing:2.080000pt;}
.ws5a{word-spacing:2.133333pt;}
.ws104{word-spacing:2.160000pt;}
.ws5e{word-spacing:2.240000pt;}
.ws15a{word-spacing:2.256000pt;}
.ws42{word-spacing:2.342400pt;}
.ws109{word-spacing:2.400000pt;}
.ws16d{word-spacing:2.453333pt;}
.wsb9{word-spacing:2.613333pt;}
.ws110{word-spacing:2.666667pt;}
.ws82{word-spacing:2.720000pt;}
.ws137{word-spacing:2.773333pt;}
.ws48{word-spacing:2.826667pt;}
.wscf{word-spacing:2.880000pt;}
.ws96{word-spacing:2.933333pt;}
.wsbb{word-spacing:2.986667pt;}
.ws1c6{word-spacing:3.024000pt;}
.ws120{word-spacing:3.040000pt;}
.wsd3{word-spacing:3.093333pt;}
.ws1c8{word-spacing:3.120000pt;}
.ws95{word-spacing:3.146667pt;}
.ws99{word-spacing:3.253333pt;}
.ws133{word-spacing:3.306667pt;}
.ws71{word-spacing:3.360000pt;}
.wsee{word-spacing:3.413333pt;}
.ws4c{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.573333pt;}
.ws1b7{word-spacing:3.600000pt;}
.ws182{word-spacing:3.626667pt;}
.ws91{word-spacing:3.680000pt;}
.ws12f{word-spacing:3.733333pt;}
.ws86{word-spacing:3.786667pt;}
.ws93{word-spacing:3.893333pt;}
.ws183{word-spacing:4.000000pt;}
.ws196{word-spacing:4.032000pt;}
.ws32{word-spacing:4.053333pt;}
.ws113{word-spacing:4.160000pt;}
.ws1cd{word-spacing:4.176000pt;}
.ws11f{word-spacing:4.213333pt;}
.ws24{word-spacing:4.320000pt;}
.ws67{word-spacing:4.373333pt;}
.wse6{word-spacing:4.426667pt;}
.ws16b{word-spacing:4.480000pt;}
.ws25{word-spacing:4.512000pt;}
.wsed{word-spacing:4.586667pt;}
.ws33{word-spacing:4.640000pt;}
.ws1ad{word-spacing:4.656000pt;}
.ws87{word-spacing:4.693333pt;}
.ws26{word-spacing:4.752000pt;}
.ws4e{word-spacing:4.800000pt;}
.ws1ce{word-spacing:4.848000pt;}
.ws77{word-spacing:4.853333pt;}
.wsf4{word-spacing:4.906667pt;}
.ws64{word-spacing:4.960000pt;}
.wsf5{word-spacing:5.066667pt;}
.ws1d8{word-spacing:5.136000pt;}
.ws65{word-spacing:5.173333pt;}
.ws49{word-spacing:5.226667pt;}
.ws163{word-spacing:5.333333pt;}
.ws7f{word-spacing:5.386667pt;}
.ws1de{word-spacing:5.424000pt;}
.wse3{word-spacing:5.440000pt;}
.wsf0{word-spacing:5.493333pt;}
.ws70{word-spacing:5.600000pt;}
.ws41{word-spacing:5.644800pt;}
.ws136{word-spacing:5.653333pt;}
.ws184{word-spacing:5.760000pt;}
.wsef{word-spacing:5.813333pt;}
.ws27{word-spacing:5.856000pt;}
.ws10f{word-spacing:5.920000pt;}
.wsba{word-spacing:5.973333pt;}
.ws8c{word-spacing:6.026667pt;}
.ws30{word-spacing:6.080000pt;}
.wsf3{word-spacing:6.133333pt;}
.wsd2{word-spacing:6.186667pt;}
.ws121{word-spacing:6.240000pt;}
.ws4b{word-spacing:6.293333pt;}
.ws1ba{word-spacing:6.384000pt;}
.ws5f{word-spacing:6.506667pt;}
.ws17b{word-spacing:6.613333pt;}
.ws78{word-spacing:6.666667pt;}
.ws134{word-spacing:6.720000pt;}
.wsf1{word-spacing:6.933333pt;}
.ws135{word-spacing:6.986667pt;}
.ws115{word-spacing:7.040000pt;}
.ws1ca{word-spacing:7.056000pt;}
.ws8a{word-spacing:7.093333pt;}
.ws11a{word-spacing:7.200000pt;}
.ws60{word-spacing:7.253333pt;}
.wsf7{word-spacing:7.306667pt;}
.ws36{word-spacing:7.360000pt;}
.ws2f{word-spacing:7.466667pt;}
.ws126{word-spacing:7.573333pt;}
.ws37{word-spacing:7.626667pt;}
.ws97{word-spacing:7.946667pt;}
.ws92{word-spacing:8.000000pt;}
.wsb7{word-spacing:8.053333pt;}
.ws4a{word-spacing:8.106667pt;}
.ws19a{word-spacing:8.208000pt;}
.wsb5{word-spacing:8.266667pt;}
.ws1cb{word-spacing:8.304000pt;}
.ws123{word-spacing:8.480000pt;}
.ws3c{word-spacing:8.533333pt;}
.ws1d6{word-spacing:8.544000pt;}
.ws3d{word-spacing:8.586667pt;}
.ws1a2{word-spacing:8.640000pt;}
.ws165{word-spacing:8.693333pt;}
.ws114{word-spacing:8.746667pt;}
.ws1b1{word-spacing:8.832000pt;}
.ws98{word-spacing:8.853333pt;}
.wsac{word-spacing:8.906667pt;}
.ws172{word-spacing:8.960000pt;}
.ws18d{word-spacing:8.976000pt;}
.ws3e{word-spacing:9.013333pt;}
.wsad{word-spacing:9.066667pt;}
.ws3f{word-spacing:9.120000pt;}
.wsce{word-spacing:9.173333pt;}
.ws190{word-spacing:9.216000pt;}
.ws171{word-spacing:9.226667pt;}
.wsaf{word-spacing:9.280000pt;}
.ws15c{word-spacing:9.440000pt;}
.ws1a6{word-spacing:9.456000pt;}
.ws11c{word-spacing:9.493333pt;}
.wsae{word-spacing:9.546667pt;}
.ws1d2{word-spacing:9.552000pt;}
.ws52{word-spacing:9.600000pt;}
.ws1da{word-spacing:9.648000pt;}
.ws10d{word-spacing:9.706667pt;}
.ws1a5{word-spacing:9.744000pt;}
.ws83{word-spacing:9.813333pt;}
.ws1bb{word-spacing:9.840000pt;}
.ws81{word-spacing:9.920000pt;}
.wsaa{word-spacing:9.973333pt;}
.ws75{word-spacing:10.186667pt;}
.ws1b3{word-spacing:10.224000pt;}
.ws72{word-spacing:10.240000pt;}
.ws53{word-spacing:10.293333pt;}
.ws80{word-spacing:10.346667pt;}
.ws56{word-spacing:10.666667pt;}
.ws14{word-spacing:10.704000pt;}
.ws84{word-spacing:10.720000pt;}
.ws55{word-spacing:10.773333pt;}
.wse8{word-spacing:10.880000pt;}
.wsa9{word-spacing:10.933333pt;}
.ws185{word-spacing:11.093333pt;}
.ws15{word-spacing:11.184000pt;}
.ws35{word-spacing:11.200000pt;}
.ws5b{word-spacing:11.360000pt;}
.ws1c0{word-spacing:11.376000pt;}
.wsb3{word-spacing:11.520000pt;}
.ws17e{word-spacing:11.573333pt;}
.ws16e{word-spacing:11.626667pt;}
.wsb1{word-spacing:11.680000pt;}
.ws181{word-spacing:11.733333pt;}
.ws192{word-spacing:11.808000pt;}
.ws17a{word-spacing:11.840000pt;}
.wsd4{word-spacing:11.893333pt;}
.ws161{word-spacing:11.946667pt;}
.ws9c{word-spacing:12.000000pt;}
.ws1ac{word-spacing:12.192000pt;}
.ws16f{word-spacing:12.266667pt;}
.ws1db{word-spacing:12.288000pt;}
.ws112{word-spacing:12.373333pt;}
.ws180{word-spacing:12.426667pt;}
.ws162{word-spacing:12.480000pt;}
.ws40{word-spacing:12.533333pt;}
.wsd5{word-spacing:12.586667pt;}
.wsa4{word-spacing:12.746667pt;}
.ws59{word-spacing:12.800000pt;}
.wscc{word-spacing:13.013333pt;}
.ws1cc{word-spacing:13.056000pt;}
.ws169{word-spacing:13.066667pt;}
.ws7e{word-spacing:13.120000pt;}
.ws129{word-spacing:13.173333pt;}
.ws1c2{word-spacing:13.200000pt;}
.wsb6{word-spacing:13.280000pt;}
.wsca{word-spacing:13.333333pt;}
.wsea{word-spacing:13.386667pt;}
.ws12a{word-spacing:13.493333pt;}
.ws176{word-spacing:13.600000pt;}
.ws197{word-spacing:13.632000pt;}
.ws9f{word-spacing:13.760000pt;}
.ws1bd{word-spacing:13.824000pt;}
.wsb0{word-spacing:13.866667pt;}
.ws1d5{word-spacing:13.872000pt;}
.wsf8{word-spacing:14.026667pt;}
.ws15d{word-spacing:14.293333pt;}
.ws94{word-spacing:14.346667pt;}
.ws57{word-spacing:14.506667pt;}
.ws38{word-spacing:14.560000pt;}
.wsec{word-spacing:14.613333pt;}
.wsfd{word-spacing:14.640000pt;}
.wscd{word-spacing:14.666667pt;}
.ws58{word-spacing:14.826667pt;}
.ws1b4{word-spacing:14.880000pt;}
.ws39{word-spacing:14.933333pt;}
.ws66{word-spacing:14.986667pt;}
.ws3a{word-spacing:15.040000pt;}
.wsa2{word-spacing:15.146667pt;}
.ws2e{word-spacing:15.200000pt;}
.ws127{word-spacing:15.306667pt;}
.wsfe{word-spacing:15.312000pt;}
.ws1a8{word-spacing:15.360000pt;}
.ws3b{word-spacing:15.413333pt;}
.wsdb{word-spacing:15.466667pt;}
.wsda{word-spacing:15.520000pt;}
.ws167{word-spacing:15.573333pt;}
.ws179{word-spacing:15.680000pt;}
.ws175{word-spacing:15.786667pt;}
.ws168{word-spacing:16.053333pt;}
.ws164{word-spacing:16.106667pt;}
.ws1b6{word-spacing:16.272000pt;}
.ws138{word-spacing:16.480000pt;}
.ws1ae{word-spacing:16.560000pt;}
.wsa3{word-spacing:16.586667pt;}
.wsde{word-spacing:16.853333pt;}
.wsdd{word-spacing:16.960000pt;}
.ws74{word-spacing:17.066667pt;}
.ws17c{word-spacing:17.120000pt;}
.ws34{word-spacing:17.173333pt;}
.ws18c{word-spacing:17.280000pt;}
.ws125{word-spacing:17.386667pt;}
.ws1af{word-spacing:17.520000pt;}
.ws124{word-spacing:17.760000pt;}
.ws19d{word-spacing:17.808000pt;}
.ws1c9{word-spacing:17.904000pt;}
.ws73{word-spacing:18.026667pt;}
.wsd0{word-spacing:18.133333pt;}
.ws4f{word-spacing:18.186667pt;}
.wse4{word-spacing:18.346667pt;}
.ws1df{word-spacing:18.384000pt;}
.ws18b{word-spacing:18.400000pt;}
.wsa7{word-spacing:18.453333pt;}
.ws1d1{word-spacing:18.528000pt;}
.ws132{word-spacing:18.613333pt;}
.ws7c{word-spacing:18.666667pt;}
.ws17f{word-spacing:18.720000pt;}
.wsa8{word-spacing:18.880000pt;}
.wse9{word-spacing:18.933333pt;}
.ws166{word-spacing:19.146667pt;}
.ws186{word-spacing:19.253333pt;}
.ws178{word-spacing:19.360000pt;}
.ws16c{word-spacing:19.413333pt;}
.ws189{word-spacing:19.573333pt;}
.ws7d{word-spacing:19.680000pt;}
.ws1d9{word-spacing:20.112000pt;}
.ws1c1{word-spacing:20.160000pt;}
.wsd8{word-spacing:20.266667pt;}
.ws1b8{word-spacing:20.496000pt;}
.ws54{word-spacing:20.533333pt;}
.wsd1{word-spacing:21.120000pt;}
.wseb{word-spacing:21.173333pt;}
.ws15e{word-spacing:21.226667pt;}
.ws9a{word-spacing:21.280000pt;}
.ws199{word-spacing:21.312000pt;}
.ws9b{word-spacing:21.760000pt;}
.ws62{word-spacing:21.866667pt;}
.ws198{word-spacing:22.128000pt;}
.ws1aa{word-spacing:22.176000pt;}
.ws111{word-spacing:22.880000pt;}
.wsfb{word-spacing:22.933333pt;}
.ws1be{word-spacing:22.944000pt;}
.ws4d{word-spacing:22.986667pt;}
.ws1c3{word-spacing:23.376000pt;}
.ws18e{word-spacing:23.472000pt;}
.ws18a{word-spacing:24.053333pt;}
.wse5{word-spacing:24.160000pt;}
.ws195{word-spacing:24.192000pt;}
.ws122{word-spacing:24.426667pt;}
.ws191{word-spacing:24.480000pt;}
.ws68{word-spacing:24.746667pt;}
.ws15f{word-spacing:24.800000pt;}
.ws139{word-spacing:25.013333pt;}
.ws18f{word-spacing:25.344000pt;}
.wse1{word-spacing:25.866667pt;}
.ws160{word-spacing:25.920000pt;}
.wsa1{word-spacing:26.453333pt;}
.ws9e{word-spacing:26.720000pt;}
.wse0{word-spacing:26.826667pt;}
.wsf9{word-spacing:26.880000pt;}
.wsdf{word-spacing:27.893333pt;}
.ws17d{word-spacing:28.000000pt;}
.ws50{word-spacing:29.226667pt;}
.ws1b2{word-spacing:29.520000pt;}
.wsab{word-spacing:29.866667pt;}
.wsfc{word-spacing:32.213333pt;}
.ws1a3{word-spacing:32.640000pt;}
.ws1a4{word-spacing:33.552000pt;}
.ws1dd{word-spacing:34.464000pt;}
.ws89{word-spacing:34.666667pt;}
.ws193{word-spacing:34.752000pt;}
.ws1a9{word-spacing:35.856000pt;}
.ws1a7{word-spacing:36.192000pt;}
.ws19f{word-spacing:37.200000pt;}
.ws10e{word-spacing:39.840000pt;}
.ws188{word-spacing:44.533333pt;}
.ws1d4{word-spacing:45.072000pt;}
.ws1d3{word-spacing:45.744000pt;}
.ws1bc{word-spacing:45.936000pt;}
.ws1a0{word-spacing:57.888000pt;}
.ws19e{word-spacing:59.184000pt;}
.ws1b0{word-spacing:59.232000pt;}
.wsa0{word-spacing:62.026667pt;}
.ws194{word-spacing:66.624000pt;}
.ws1cf{word-spacing:69.936000pt;}
.ws1ab{word-spacing:80.832000pt;}
.wsc6{word-spacing:96.485333pt;}
.wsc9{word-spacing:99.413333pt;}
.wsc8{word-spacing:105.605333pt;}
.ws1c7{word-spacing:117.600000pt;}
.wsc7{word-spacing:123.941333pt;}
.ws1a1{word-spacing:139.632000pt;}
.ws14f{word-spacing:156.155733pt;}
.ws14e{word-spacing:173.243733pt;}
.ws143{word-spacing:260.263467pt;}
.ws148{word-spacing:263.722667pt;}
.ws144{word-spacing:296.337067pt;}
.ws13f{word-spacing:319.740800pt;}
.ws13d{word-spacing:378.944533pt;}
.ws140{word-spacing:418.836800pt;}
.ws13c{word-spacing:447.678933pt;}
.ws14d{word-spacing:515.621333pt;}
.ws141{word-spacing:535.284800pt;}
.ws145{word-spacing:585.300267pt;}
.wsc5{word-spacing:606.330133pt;}
.ws152{word-spacing:610.949333pt;}
.ws151{word-spacing:617.141333pt;}
.ws150{word-spacing:635.477333pt;}
._14{margin-left:-2510.196800pt;}
._5{margin-left:-8.139456pt;}
._4{margin-left:-6.518656pt;}
._9{margin-left:-5.008000pt;}
._10{margin-left:-4.032277pt;}
._2{margin-left:-2.915200pt;}
._0{margin-left:-1.162667pt;}
._1{width:1.066667pt;}
._3{width:2.442667pt;}
._15{width:3.419200pt;}
._b{width:4.628800pt;}
._11{width:5.788267pt;}
._a{width:7.045867pt;}
._12{width:8.677333pt;}
._23{width:9.714667pt;}
._8{width:10.613867pt;}
._7{width:11.843200pt;}
._e{width:13.491733pt;}
._f{width:16.492267pt;}
._24{width:17.849067pt;}
._d{width:20.413333pt;}
._6{width:31.807467pt;}
._1e{width:39.700800pt;}
._1f{width:49.876800pt;}
._16{width:52.550400pt;}
._41{width:57.520000pt;}
._2c{width:59.333333pt;}
._13{width:62.346133pt;}
._38{width:108.080000pt;}
._2a{width:114.496533pt;}
._1a{width:116.309333pt;}
._21{width:119.717333pt;}
._3c{width:123.937067pt;}
._1c{width:133.637333pt;}
._18{width:137.093333pt;}
._33{width:140.336533pt;}
._37{width:160.997867pt;}
._2d{width:181.877867pt;}
._42{width:184.139733pt;}
._2b{width:187.521600pt;}
._32{width:226.999467pt;}
._34{width:270.576533pt;}
._29{width:272.105067pt;}
._36{width:275.419200pt;}
._2f{width:285.605333pt;}
._35{width:293.548267pt;}
._20{width:370.074133pt;}
._3b{width:375.344000pt;}
._30{width:377.753600pt;}
._22{width:380.250133pt;}
._3a{width:398.442133pt;}
._28{width:405.331200pt;}
._27{width:412.516800pt;}
._31{width:452.864533pt;}
._26{width:492.780800pt;}
._2e{width:520.269867pt;}
._25{width:525.558656pt;}
._1d{width:552.004800pt;}
._1b{width:574.266133pt;}
._17{width:602.442133pt;}
._19{width:612.618133pt;}
._39{width:621.641600pt;}
._3e{width:627.845333pt;}
._40{width:631.253333pt;}
._3f{width:645.173333pt;}
._3d{width:648.629333pt;}
._c{width:1566.461333pt;}
.fs8{font-size:31.093333pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:97.133867pt;}
.y6f{bottom:113.385867pt;}
.ycf{bottom:113.595333pt;}
.y19f{bottom:113.732933pt;}
.ya6{bottom:113.832533pt;}
.y32{bottom:114.246667pt;}
.y215{bottom:122.404667pt;}
.y1d6{bottom:126.858800pt;}
.y31{bottom:127.580000pt;}
.y108{bottom:129.385867pt;}
.y6e{bottom:129.461200pt;}
.yf8{bottom:129.623067pt;}
.yce{bottom:129.748000pt;}
.y19e{bottom:129.802267pt;}
.ya5{bottom:129.886000pt;}
.y214{bottom:138.404667pt;}
.y1d5{bottom:140.331733pt;}
.y30{bottom:140.913333pt;}
.y107{bottom:145.385867pt;}
.y6d{bottom:145.536400pt;}
.yf7{bottom:145.860133pt;}
.y19d{bottom:145.871467pt;}
.ycd{bottom:145.900533pt;}
.ya4{bottom:145.939467pt;}
.y1d4{bottom:153.804667pt;}
.y213{bottom:154.404667pt;}
.y106{bottom:161.385867pt;}
.y6c{bottom:161.611733pt;}
.y19c{bottom:161.940533pt;}
.ya3{bottom:161.992933pt;}
.ycc{bottom:162.053200pt;}
.yf6{bottom:162.097333pt;}
.y1d3{bottom:167.277733pt;}
.y212{bottom:170.404667pt;}
.y26{bottom:173.480400pt;}
.y2d{bottom:173.753067pt;}
.y105{bottom:177.385867pt;}
.y6b{bottom:177.687067pt;}
.y19b{bottom:178.009733pt;}
.ya2{bottom:178.046400pt;}
.ycb{bottom:178.205733pt;}
.yf5{bottom:178.334400pt;}
.y1d2{bottom:180.750667pt;}
.y2c{bottom:189.807600pt;}
.y25{bottom:189.999333pt;}
.y211{bottom:190.184267pt;}
.y104{bottom:193.385867pt;}
.y6a{bottom:193.762267pt;}
.y19a{bottom:194.078933pt;}
.ya1{bottom:194.100000pt;}
.y1d1{bottom:194.223600pt;}
.yca{bottom:194.358267pt;}
.yf4{bottom:194.571600pt;}
.y2b{bottom:205.862133pt;}
.y210{bottom:206.184267pt;}
.y24{bottom:206.518267pt;}
.y1d0{bottom:207.696533pt;}
.y69{bottom:209.837600pt;}
.y199{bottom:210.148133pt;}
.ya0{bottom:210.153467pt;}
.yc9{bottom:210.510800pt;}
.yf3{bottom:210.808800pt;}
.y1cf{bottom:221.169467pt;}
.y2a{bottom:221.916800pt;}
.y20f{bottom:222.184267pt;}
.y23{bottom:223.037200pt;}
.y68{bottom:225.912800pt;}
.y9f{bottom:226.206933pt;}
.y198{bottom:226.217333pt;}
.yc8{bottom:226.663467pt;}
.yf2{bottom:227.045867pt;}
.y1ce{bottom:234.642400pt;}
.y29{bottom:237.971333pt;}
.y20e{bottom:238.184267pt;}
.y22{bottom:239.556133pt;}
.y67{bottom:241.988133pt;}
.y9e{bottom:242.260400pt;}
.y197{bottom:242.286533pt;}
.yc7{bottom:242.816000pt;}
.yf1{bottom:243.283067pt;}
.y1cd{bottom:248.115333pt;}
.y28{bottom:254.025733pt;}
.y20d{bottom:254.184267pt;}
.y66{bottom:258.063333pt;}
.y9d{bottom:258.313867pt;}
.y196{bottom:258.355733pt;}
.yf0{bottom:259.520267pt;}
.y1cc{bottom:261.588267pt;}
.yc6{bottom:262.748133pt;}
.y21{bottom:267.413600pt;}
.y27{bottom:270.080267pt;}
.y20c{bottom:270.184267pt;}
.y65{bottom:274.138667pt;}
.y9c{bottom:274.367333pt;}
.y195{bottom:274.424933pt;}
.y1cb{bottom:275.061333pt;}
.yef{bottom:275.757333pt;}
.yc5{bottom:278.900667pt;}
.y1ca{bottom:288.534267pt;}
.y20b{bottom:289.963733pt;}
.y64{bottom:290.214000pt;}
.y9b{bottom:290.420800pt;}
.y194{bottom:290.494133pt;}
.yee{bottom:291.994533pt;}
.yc4{bottom:298.832800pt;}
.y1c9{bottom:302.007200pt;}
.y20a{bottom:305.963733pt;}
.y63{bottom:306.289200pt;}
.y9a{bottom:306.474267pt;}
.y193{bottom:306.563333pt;}
.yed{bottom:308.231600pt;}
.yc3{bottom:314.985333pt;}
.y1c8{bottom:315.480133pt;}
.y20{bottom:320.150667pt;}
.y209{bottom:321.963733pt;}
.y62{bottom:322.364533pt;}
.y99{bottom:322.527733pt;}
.y192{bottom:322.632533pt;}
.yec{bottom:324.468800pt;}
.y1c7{bottom:328.953067pt;}
.y61{bottom:338.439733pt;}
.y98{bottom:338.581200pt;}
.y191{bottom:338.701600pt;}
.yeb{bottom:340.706000pt;}
.y1c6{bottom:342.426000pt;}
.y1f{bottom:342.430933pt;}
.y208{bottom:345.522800pt;}
.yc2{bottom:353.815067pt;}
.y60{bottom:354.515067pt;}
.y97{bottom:354.634667pt;}
.y190{bottom:354.770933pt;}
.y1c5{bottom:355.899067pt;}
.yea{bottom:356.943067pt;}
.y1c4{bottom:369.372000pt;}
.y5f{bottom:370.590400pt;}
.y96{bottom:370.688133pt;}
.y18f{bottom:370.840133pt;}
.ye9{bottom:373.180267pt;}
.y5e{bottom:386.665600pt;}
.y95{bottom:386.741733pt;}
.y18e{bottom:386.909200pt;}
.y1e{bottom:387.388400pt;}
.ye8{bottom:389.417333pt;}
.y207{bottom:390.646133pt;}
.yc1{bottom:391.532000pt;}
.y1c3{bottom:394.183467pt;}
.y1d{bottom:402.109600pt;}
.y5d{bottom:402.740933pt;}
.y94{bottom:402.795200pt;}
.y18d{bottom:402.978533pt;}
.y206{bottom:403.979467pt;}
.ye7{bottom:405.654533pt;}
.yc0{bottom:407.684533pt;}
.y1c{bottom:416.830800pt;}
.y205{bottom:417.312800pt;}
.y5c{bottom:418.816267pt;}
.y93{bottom:418.848667pt;}
.y18c{bottom:419.047600pt;}
.ye6{bottom:421.891733pt;}
.ybf{bottom:423.837067pt;}
.y204{bottom:430.646133pt;}
.y1b{bottom:431.552000pt;}
.y1c2{bottom:431.887467pt;}
.y5b{bottom:434.891467pt;}
.y92{bottom:434.902133pt;}
.y18b{bottom:435.116800pt;}
.ye5{bottom:438.128800pt;}
.ybe{bottom:439.989600pt;}
.y203{bottom:443.979467pt;}
.y1a{bottom:446.273200pt;}
.y1c1{bottom:448.027067pt;}
.y91{bottom:450.955600pt;}
.y5a{bottom:450.966800pt;}
.y18a{bottom:451.186000pt;}
.ye4{bottom:454.366000pt;}
.ybd{bottom:456.142267pt;}
.y202{bottom:457.312800pt;}
.y19{bottom:460.994400pt;}
.y1c0{bottom:464.166667pt;}
.y59{bottom:467.042133pt;}
.y189{bottom:467.255200pt;}
.y12b{bottom:469.169200pt;}
.ye3{bottom:470.603200pt;}
.y201{bottom:470.646133pt;}
.ybc{bottom:472.294800pt;}
.y18{bottom:475.715600pt;}
.y90{bottom:478.347733pt;}
.y1bf{bottom:480.306267pt;}
.y58{bottom:483.117333pt;}
.y188{bottom:483.324400pt;}
.y200{bottom:483.979467pt;}
.y12a{bottom:485.183733pt;}
.ye2{bottom:486.840267pt;}
.ybb{bottom:488.447333pt;}
.y17{bottom:490.436800pt;}
.y1be{bottom:496.445867pt;}
.y1ff{bottom:497.312800pt;}
.y57{bottom:499.192667pt;}
.y187{bottom:499.393600pt;}
.y129{bottom:501.198267pt;}
.ye1{bottom:503.077467pt;}
.yba{bottom:504.600000pt;}
.y16{bottom:505.158000pt;}
.y1fe{bottom:510.646133pt;}
.y1bd{bottom:512.585467pt;}
.y56{bottom:515.267867pt;}
.y186{bottom:515.462800pt;}
.y8f{bottom:515.965467pt;}
.y128{bottom:517.212667pt;}
.ye0{bottom:519.314667pt;}
.y15{bottom:519.879200pt;}
.yb9{bottom:520.752533pt;}
.y1fd{bottom:523.979467pt;}
.y1bc{bottom:528.725067pt;}
.y55{bottom:531.343200pt;}
.y185{bottom:531.532000pt;}
.y8e{bottom:532.018933pt;}
.y127{bottom:533.227200pt;}
.y14{bottom:534.600400pt;}
.y159{bottom:534.803200pt;}
.y166{bottom:535.170133pt;}
.ydf{bottom:535.551733pt;}
.yb8{bottom:536.905067pt;}
.y1fc{bottom:537.312800pt;}
.y1bb{bottom:544.864800pt;}
.y54{bottom:547.418400pt;}
.y184{bottom:547.601200pt;}
.y8d{bottom:548.072400pt;}
.y126{bottom:549.241733pt;}
.y13{bottom:549.321600pt;}
.y1fb{bottom:550.646133pt;}
.y149{bottom:550.855733pt;}
.y165{bottom:551.344400pt;}
.yde{bottom:551.788933pt;}
.y158{bottom:552.198533pt;}
.yb7{bottom:553.057600pt;}
.y147{bottom:558.055733pt;}
.y1ba{bottom:561.004400pt;}
.y53{bottom:563.493733pt;}
.y183{bottom:563.670400pt;}
.y1fa{bottom:563.979467pt;}
.y12{bottom:564.042933pt;}
.y8c{bottom:564.126000pt;}
.y146{bottom:565.255733pt;}
.y125{bottom:565.256267pt;}
.y164{bottom:567.518667pt;}
.ydd{bottom:568.026133pt;}
.yb6{bottom:569.210267pt;}
.y157{bottom:569.593867pt;}
.y1b9{bottom:577.144000pt;}
.y1f9{bottom:577.312800pt;}
.y11{bottom:578.764133pt;}
.y52{bottom:579.569067pt;}
.y148{bottom:579.655733pt;}
.y182{bottom:579.739600pt;}
.y8b{bottom:580.179467pt;}
.y124{bottom:581.270800pt;}
.y163{bottom:583.692933pt;}
.ydc{bottom:584.263200pt;}
.yb5{bottom:585.362800pt;}
.y156{bottom:586.989200pt;}
.y1f8{bottom:590.646133pt;}
.y1b8{bottom:593.283600pt;}
.y10{bottom:593.485333pt;}
.y51{bottom:595.644267pt;}
.y181{bottom:595.808800pt;}
.y145{bottom:595.938667pt;}
.y8a{bottom:596.232933pt;}
.y123{bottom:597.285200pt;}
.y162{bottom:599.867067pt;}
.ydb{bottom:600.500400pt;}
.yb4{bottom:601.515333pt;}
.y1f7{bottom:603.979467pt;}
.y155{bottom:604.384667pt;}
.yf{bottom:608.206533pt;}
.y1b7{bottom:609.423200pt;}
.y144{bottom:610.338667pt;}
.y50{bottom:611.719600pt;}
.y180{bottom:611.877867pt;}
.y89{bottom:612.286400pt;}
.y122{bottom:613.299733pt;}
.y161{bottom:616.041333pt;}
.yda{bottom:616.737600pt;}
.y1f6{bottom:617.312800pt;}
.yb3{bottom:617.667867pt;}
.y154{bottom:621.780000pt;}
.ye{bottom:622.927733pt;}
.y1b6{bottom:625.562800pt;}
.y4f{bottom:627.794933pt;}
.y143{bottom:627.928933pt;}
.y17f{bottom:627.947200pt;}
.y88{bottom:628.339867pt;}
.y121{bottom:629.314267pt;}
.y1f5{bottom:630.646133pt;}
.y160{bottom:632.215600pt;}
.yd9{bottom:632.974667pt;}
.yb2{bottom:633.820533pt;}
.yd{bottom:637.648933pt;}
.y153{bottom:639.175333pt;}
.y1b5{bottom:641.702400pt;}
.y4e{bottom:643.870133pt;}
.y1f4{bottom:643.979467pt;}
.y17e{bottom:644.016267pt;}
.y87{bottom:644.393333pt;}
.y120{bottom:645.328800pt;}
.y142{bottom:646.826533pt;}
.y15f{bottom:648.389867pt;}
.yd8{bottom:649.211867pt;}
.yb1{bottom:649.973067pt;}
.y152{bottom:656.570667pt;}
.y1f3{bottom:657.312800pt;}
.y1b4{bottom:657.842000pt;}
.yc{bottom:659.929200pt;}
.y4d{bottom:659.945467pt;}
.y17d{bottom:660.085467pt;}
.y86{bottom:660.446800pt;}
.y11f{bottom:661.343200pt;}
.y15e{bottom:664.564133pt;}
.yd7{bottom:665.448933pt;}
.y141{bottom:665.724267pt;}
.yb0{bottom:666.125600pt;}
.y1f2{bottom:670.646133pt;}
.y151{bottom:673.966133pt;}
.y1b3{bottom:673.981733pt;}
.y4c{bottom:676.020667pt;}
.y17c{bottom:676.154667pt;}
.y85{bottom:676.500267pt;}
.y11e{bottom:677.357733pt;}
.y15d{bottom:680.738400pt;}
.yd6{bottom:681.686133pt;}
.yaf{bottom:682.278133pt;}
.y1f1{bottom:683.979467pt;}
.y140{bottom:684.621867pt;}
.y1b2{bottom:690.121200pt;}
.y150{bottom:691.361467pt;}
.y4b{bottom:692.096000pt;}
.y17b{bottom:692.224000pt;}
.y84{bottom:692.553733pt;}
.y11d{bottom:693.372267pt;}
.y15c{bottom:696.912667pt;}
.y1f0{bottom:697.312800pt;}
.yd5{bottom:697.923200pt;}
.yae{bottom:698.430800pt;}
.y13f{bottom:703.519467pt;}
.yb{bottom:706.220000pt;}
.y1b1{bottom:706.260933pt;}
.y4a{bottom:708.171333pt;}
.y17a{bottom:708.293067pt;}
.y83{bottom:708.607200pt;}
.y14f{bottom:708.756800pt;}
.y11c{bottom:709.386800pt;}
.y1ef{bottom:710.646133pt;}
.yd4{bottom:714.160400pt;}
.yad{bottom:714.583333pt;}
.y13e{bottom:721.109867pt;}
.y1b0{bottom:722.400533pt;}
.y1ee{bottom:723.979467pt;}
.y49{bottom:724.246533pt;}
.y179{bottom:724.362267pt;}
.y15b{bottom:724.425467pt;}
.y82{bottom:724.660667pt;}
.y11b{bottom:725.401333pt;}
.y14e{bottom:726.152133pt;}
.y13d{bottom:728.309867pt;}
.yd3{bottom:730.397600pt;}
.yac{bottom:730.735867pt;}
.y1ed{bottom:737.312800pt;}
.y1af{bottom:738.540133pt;}
.y48{bottom:740.321867pt;}
.y178{bottom:740.431467pt;}
.y81{bottom:740.714133pt;}
.y11a{bottom:741.415733pt;}
.y14d{bottom:743.547467pt;}
.yd2{bottom:746.634800pt;}
.yab{bottom:746.888533pt;}
.ya{bottom:748.731200pt;}
.y1ec{bottom:750.646133pt;}
.y13c{bottom:751.792667pt;}
.y1ae{bottom:754.679733pt;}
.y47{bottom:756.397200pt;}
.y177{bottom:756.500667pt;}
.y80{bottom:756.767733pt;}
.y119{bottom:757.430400pt;}
.y13b{bottom:758.992667pt;}
.y14c{bottom:760.942933pt;}
.y15a{bottom:762.164000pt;}
.yd1{bottom:762.871867pt;}
.yaa{bottom:763.041067pt;}
.y1eb{bottom:763.979467pt;}
.y1ad{bottom:770.819333pt;}
.y46{bottom:772.472400pt;}
.y176{bottom:772.569867pt;}
.y9{bottom:772.787067pt;}
.y7f{bottom:772.821200pt;}
.y118{bottom:773.444800pt;}
.y1ea{bottom:777.312800pt;}
.y14b{bottom:778.338267pt;}
.yd0{bottom:779.109067pt;}
.ya9{bottom:779.193600pt;}
.y13a{bottom:783.783067pt;}
.y1ac{bottom:786.958933pt;}
.y45{bottom:788.547733pt;}
.y175{bottom:788.639067pt;}
.y8{bottom:788.841600pt;}
.y7e{bottom:788.874667pt;}
.y117{bottom:789.459333pt;}
.y1e9{bottom:790.646133pt;}
.ya8{bottom:795.346133pt;}
.y139{bottom:802.680667pt;}
.y1ab{bottom:803.098667pt;}
.y1e8{bottom:803.979467pt;}
.y44{bottom:804.622933pt;}
.y174{bottom:804.708267pt;}
.y7{bottom:804.896133pt;}
.y7d{bottom:804.928133pt;}
.y116{bottom:805.473733pt;}
.y14a{bottom:811.528400pt;}
.y1e7{bottom:817.312800pt;}
.y1aa{bottom:819.238267pt;}
.y43{bottom:820.698267pt;}
.y173{bottom:820.777467pt;}
.y6{bottom:820.950667pt;}
.y7c{bottom:820.981600pt;}
.y115{bottom:821.488400pt;}
.y138{bottom:821.578267pt;}
.y103{bottom:830.426000pt;}
.y1e6{bottom:830.646133pt;}
.y1a9{bottom:835.377867pt;}
.y42{bottom:836.773467pt;}
.y172{bottom:836.846533pt;}
.y5{bottom:837.005200pt;}
.y7b{bottom:837.035200pt;}
.y114{bottom:837.502800pt;}
.y137{bottom:839.168667pt;}
.y1e5{bottom:843.979467pt;}
.y136{bottom:846.368533pt;}
.y102{bottom:849.323600pt;}
.y1a8{bottom:851.517467pt;}
.y41{bottom:852.848800pt;}
.y171{bottom:852.915867pt;}
.y7a{bottom:853.088667pt;}
.y113{bottom:853.517333pt;}
.y1e4{bottom:857.312800pt;}
.y4{bottom:860.618800pt;}
.y1a7{bottom:867.657067pt;}
.y101{bottom:868.221333pt;}
.y40{bottom:868.924133pt;}
.y170{bottom:868.985067pt;}
.y79{bottom:869.142133pt;}
.y112{bottom:869.531867pt;}
.y1e3{bottom:870.646133pt;}
.y135{bottom:871.158800pt;}
.y3{bottom:879.873333pt;}
.y1a6{bottom:883.796667pt;}
.y1e2{bottom:883.979467pt;}
.y3f{bottom:884.999333pt;}
.y16f{bottom:885.054133pt;}
.y78{bottom:885.195600pt;}
.y111{bottom:885.546400pt;}
.y100{bottom:887.118933pt;}
.y134{bottom:888.749200pt;}
.y131{bottom:895.949200pt;}
.y1e1{bottom:897.312800pt;}
.y1a5{bottom:899.936400pt;}
.y3e{bottom:901.074667pt;}
.y16e{bottom:901.123333pt;}
.y77{bottom:901.249067pt;}
.y110{bottom:901.560933pt;}
.y130{bottom:903.149200pt;}
.yff{bottom:906.016667pt;}
.y132{bottom:910.349067pt;}
.y1e0{bottom:910.646133pt;}
.y2{bottom:915.126667pt;}
.y3d{bottom:917.150000pt;}
.y16d{bottom:917.192533pt;}
.y76{bottom:917.302533pt;}
.y133{bottom:917.549200pt;}
.y10f{bottom:917.575333pt;}
.y1df{bottom:923.979467pt;}
.yfe{bottom:924.914267pt;}
.y1a4{bottom:927.414533pt;}
.y3c{bottom:933.225200pt;}
.y16c{bottom:933.261867pt;}
.y75{bottom:933.356000pt;}
.y10e{bottom:933.589867pt;}
.y12f{bottom:935.139467pt;}
.y1de{bottom:937.312800pt;}
.yfd{bottom:943.811867pt;}
.y1{bottom:947.181200pt;}
.y3b{bottom:949.300533pt;}
.y16b{bottom:949.330933pt;}
.y74{bottom:949.409467pt;}
.y10d{bottom:949.604400pt;}
.y1dd{bottom:950.646133pt;}
.y12e{bottom:952.729733pt;}
.yfc{bottom:962.709467pt;}
.y1dc{bottom:963.979467pt;}
.y1a3{bottom:965.118533pt;}
.y3a{bottom:965.375867pt;}
.y16a{bottom:965.400133pt;}
.y73{bottom:965.462933pt;}
.y10c{bottom:965.618933pt;}
.y12d{bottom:967.129733pt;}
.y1db{bottom:977.312800pt;}
.y1a2{bottom:981.258000pt;}
.y39{bottom:981.451067pt;}
.y169{bottom:981.469333pt;}
.y72{bottom:981.516400pt;}
.y10b{bottom:981.633333pt;}
.yfb{bottom:983.496933pt;}
.y12c{bottom:985.386667pt;}
.y1da{bottom:990.646133pt;}
.y34{bottom:996.682400pt;}
.y1a1{bottom:997.397733pt;}
.y38{bottom:997.526400pt;}
.y168{bottom:997.538533pt;}
.y71{bottom:997.570000pt;}
.y10a{bottom:997.648000pt;}
.y1d9{bottom:1003.979467pt;}
.y1a0{bottom:1013.537333pt;}
.y37{bottom:1013.601600pt;}
.y167{bottom:1013.607733pt;}
.y70{bottom:1013.623467pt;}
.y109{bottom:1013.662400pt;}
.yfa{bottom:1014.646267pt;}
.y1d8{bottom:1017.312800pt;}
.y36{bottom:1029.676933pt;}
.y1d7{bottom:1030.646133pt;}
.yf9{bottom:1030.646267pt;}
.y2f{bottom:1031.414400pt;}
.y2e{bottom:1047.414400pt;}
.y35{bottom:1060.805333pt;}
.ya7{bottom:1060.805467pt;}
.hb{height:27.686400pt;}
.ha{height:30.762667pt;}
.hf{height:33.744000pt;}
.h6{height:34.272000pt;}
.h4{height:34.602667pt;}
.hc{height:34.608000pt;}
.he{height:37.973333pt;}
.hd{height:38.080000pt;}
.h13{height:38.453333pt;}
.h5{height:38.928000pt;}
.h9{height:43.253333pt;}
.h7{height:46.144000pt;}
.h3{height:51.904000pt;}
.h8{height:53.834667pt;}
.h11{height:67.727467pt;}
.h10{height:67.728000pt;}
.h12{height:67.728533pt;}
.h2{height:76.906667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:68.031467pt;}
.x11{left:83.149600pt;}
.x5{left:98.267733pt;}
.x19{left:102.047200pt;}
.x16{left:113.385733pt;}
.x18{left:120.944800pt;}
.xc{left:128.503867pt;}
.x17{left:150.137600pt;}
.x1{left:153.542667pt;}
.x3{left:159.401867pt;}
.x2{left:179.214667pt;}
.xd{left:186.481067pt;}
.x2a{left:201.602133pt;}
.x1b{left:220.081200pt;}
.x31{left:222.992133pt;}
.x24{left:228.289067pt;}
.x25{left:233.130933pt;}
.x22{left:239.178933pt;}
.x1a{left:256.734533pt;}
.x4{left:290.144933pt;}
.x6{left:293.915867pt;}
.x7{left:334.015733pt;}
.x2b{left:381.098667pt;}
.x15{left:386.560933pt;}
.x1c{left:387.902533pt;}
.x2c{left:389.108933pt;}
.x12{left:391.181067pt;}
.x2d{left:397.850933pt;}
.x1d{left:401.498400pt;}
.x13{left:406.299200pt;}
.x26{left:409.706400pt;}
.x27{left:414.548267pt;}
.xe{left:421.417333pt;}
.x23{left:424.844267pt;}
.x35{left:436.535333pt;}
.x8{left:437.795867pt;}
.x14{left:438.888933pt;}
.x9{left:479.191600pt;}
.x33{left:480.978133pt;}
.x32{left:493.123333pt;}
.x34{left:522.752933pt;}
.x1e{left:563.506400pt;}
.x2e{left:567.526800pt;}
.x20{left:579.286800pt;}
.x1f{left:581.356800pt;}
.x28{left:585.454533pt;}
.x2f{left:588.640933pt;}
.x29{left:590.296400pt;}
.xa{left:595.547867pt;}
.x21{left:606.208133pt;}
.x30{left:614.008267pt;}
.xf{left:627.127600pt;}
.xb{left:640.713200pt;}
}




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