
    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_a49970ea848fb8957d8ea572.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dae9711501f24cbf7e7784b2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_71152581fda828bd8f0cc1b2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_3f8855582bb115c55c49d694.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f39a5123828b3af4ba10f83.woff')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_04a31417099d83ab9428a143.woff')format("woff");}.ff6{font-family:ff6;line-height:0.730000;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_f29fcdcee18c1abce5723a7b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_6082599e395a740be6a36cb0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937000;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_15617161bfa2b7a5c6f2966d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6c55f0cb613ffee282f20ffa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_0f450798b0f0c8f30167b134.woff')format("woff");}.ffb{font-family:ffb;line-height:0.691895;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_99c2956f1dea6e297da01c0d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_4797aaaf9bd6683c83a0705e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.904297;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_d8aa43dc2e5ad0ebb63b955f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.695801;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_e26fcc4f3169bcaaa8f6a31c.woff')format("woff");}.fff{font-family:fff;line-height:0.895996;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_f2ab50f3cbc8ea2ce3bddf8a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.691895;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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;}
.ls1b{letter-spacing:-5.856000px;}
.ls1f{letter-spacing:-5.280000px;}
.ls1d{letter-spacing:-4.896000px;}
.ls24{letter-spacing:-4.704000px;}
.ls11{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls2c{letter-spacing:-1.056000px;}
.ls1c{letter-spacing:-1.026000px;}
.ls12{letter-spacing:-1.020000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls2a{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.912000px;}
.lsf{letter-spacing:-0.900000px;}
.ls20{letter-spacing:-0.816000px;}
.lsd{letter-spacing:-0.810000px;}
.ls33{letter-spacing:-0.780000px;}
.ls37{letter-spacing:-0.768000px;}
.ls31{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.624000px;}
.ls2b{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.540000px;}
.ls39{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.432000px;}
.ls32{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.384000px;}
.ls38{letter-spacing:-0.336000px;}
.ls35{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.193272px;}
.ls3a{letter-spacing:-0.192000px;}
.ls2d{letter-spacing:-0.144954px;}
.ls34{letter-spacing:-0.120000px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020400px;}
.ls7{letter-spacing:0.021000px;}
.ls28{letter-spacing:0.075376px;}
.ls26{letter-spacing:0.084928px;}
.ls16{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.169855px;}
.ls10{letter-spacing:0.209880px;}
.ls21{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.300000px;}
.ls27{letter-spacing:0.338226px;}
.ls14{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.467102px;}
.ls15{letter-spacing:0.600000px;}
.ls36{letter-spacing:1.787400px;}
.ls30{letter-spacing:1.966200px;}
.ls0{letter-spacing:42.173928px;}
.ls4{letter-spacing:42.443472px;}
.ls3{letter-spacing:42.444024px;}
.ls5{letter-spacing:42.444072px;}
.ls2{letter-spacing:42.464544px;}
.ls1{letter-spacing:42.465576px;}
.ls6{letter-spacing:42.465672px;}
.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;}
.wseb{word-spacing:-48.318000px;}
.ws15{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.wsec{word-spacing:-17.035021px;}
.ws136{word-spacing:-14.820000px;}
.ws68{word-spacing:-13.620000px;}
.ws2{word-spacing:-13.338000px;}
.ws4{word-spacing:-12.798000px;}
.ws157{word-spacing:-12.258000px;}
.ws5{word-spacing:-11.448000px;}
.ws71{word-spacing:-11.232000px;}
.ws0{word-spacing:-11.214000px;}
.wsea{word-spacing:-10.919868px;}
.ws1{word-spacing:-10.896000px;}
.ws18e{word-spacing:-10.704000px;}
.ws18b{word-spacing:-10.560000px;}
.ws189{word-spacing:-10.512000px;}
.ws158{word-spacing:-10.464000px;}
.wsdb{word-spacing:-10.416000px;}
.ws18d{word-spacing:-10.368000px;}
.wsdf{word-spacing:-10.320000px;}
.ws18c{word-spacing:-10.272000px;}
.wsfa{word-spacing:-10.176000px;}
.ws18a{word-spacing:-10.128000px;}
.wsbc{word-spacing:-9.596819px;}
.ws16{word-spacing:-8.150340px;}
.wsd0{word-spacing:-5.520000px;}
.ws74{word-spacing:-5.136000px;}
.ws19a{word-spacing:-4.176000px;}
.ws106{word-spacing:-3.660000px;}
.ws11e{word-spacing:-3.600000px;}
.ws31{word-spacing:-3.420000px;}
.wsc1{word-spacing:-3.360000px;}
.ws46{word-spacing:-3.240000px;}
.wsf4{word-spacing:-3.180000px;}
.ws12b{word-spacing:-3.120000px;}
.ws154{word-spacing:-3.024000px;}
.wsf7{word-spacing:-2.820000px;}
.wsa7{word-spacing:-2.760000px;}
.ws1ae{word-spacing:-2.736000px;}
.ws2a{word-spacing:-2.700000px;}
.wsc6{word-spacing:-2.640000px;}
.ws11b{word-spacing:-2.580000px;}
.ws139{word-spacing:-2.520000px;}
.ws1a{word-spacing:-2.460000px;}
.ws66{word-spacing:-2.340000px;}
.ws15b{word-spacing:-2.322000px;}
.ws56{word-spacing:-2.280000px;}
.wsbf{word-spacing:-2.220000px;}
.ws115{word-spacing:-2.160000px;}
.ws1c5{word-spacing:-2.112000px;}
.ws59{word-spacing:-2.100000px;}
.ws126{word-spacing:-2.040000px;}
.ws64{word-spacing:-1.980000px;}
.ws89{word-spacing:-1.860000px;}
.wsed{word-spacing:-1.836000px;}
.ws1c0{word-spacing:-1.776000px;}
.wsa0{word-spacing:-1.740000px;}
.ws151{word-spacing:-1.728000px;}
.ws5b{word-spacing:-1.680000px;}
.wsee{word-spacing:-1.674000px;}
.ws1a1{word-spacing:-1.632000px;}
.ws116{word-spacing:-1.620000px;}
.ws1b9{word-spacing:-1.584000px;}
.ws1bb{word-spacing:-1.536000px;}
.ws81{word-spacing:-1.500000px;}
.ws162{word-spacing:-1.488000px;}
.wsc5{word-spacing:-1.440000px;}
.ws8b{word-spacing:-1.380000px;}
.wsbe{word-spacing:-1.320000px;}
.ws11{word-spacing:-1.285200px;}
.ws11d{word-spacing:-1.260000px;}
.wsa8{word-spacing:-1.242000px;}
.ws9a{word-spacing:-1.200000px;}
.ws58{word-spacing:-1.140000px;}
.wsa9{word-spacing:-1.134000px;}
.ws176{word-spacing:-1.104000px;}
.wsc8{word-spacing:-1.080000px;}
.ws92{word-spacing:-1.020000px;}
.ws1c7{word-spacing:-1.008000px;}
.ws93{word-spacing:-0.960000px;}
.ws14{word-spacing:-0.936000px;}
.ws1c4{word-spacing:-0.912000px;}
.ws10e{word-spacing:-0.900000px;}
.ws197{word-spacing:-0.864000px;}
.ws7b{word-spacing:-0.840000px;}
.wsef{word-spacing:-0.816000px;}
.ws65{word-spacing:-0.780000px;}
.ws16a{word-spacing:-0.768000px;}
.ws12a{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.718200px;}
.ws1c1{word-spacing:-0.672000px;}
.ws5a{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.600000px;}
.ws185{word-spacing:-0.576000px;}
.ws12c{word-spacing:-0.540000px;}
.ws170{word-spacing:-0.528000px;}
.wsb{word-spacing:-0.486000px;}
.ws98{word-spacing:-0.480000px;}
.wsc2{word-spacing:-0.420000px;}
.ws19f{word-spacing:-0.384000px;}
.ws8e{word-spacing:-0.360000px;}
.wsf0{word-spacing:-0.336000px;}
.wsa1{word-spacing:-0.300000px;}
.ws198{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.270000px;}
.ws28{word-spacing:-0.240000px;}
.ws163{word-spacing:-0.192000px;}
.ws1e{word-spacing:-0.180000px;}
.wscd{word-spacing:-0.169855px;}
.wsc{word-spacing:-0.162000px;}
.ws164{word-spacing:-0.144000px;}
.wscb{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.108000px;}
.ws1b4{word-spacing:-0.096000px;}
.wsce{word-spacing:-0.084928px;}
.wsf3{word-spacing:-0.075376px;}
.wsc0{word-spacing:-0.060000px;}
.ws1b6{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws13d{word-spacing:0.060000px;}
.wscf{word-spacing:0.084928px;}
.ws1c2{word-spacing:0.096000px;}
.wse{word-spacing:0.108000px;}
.ws4b{word-spacing:0.120000px;}
.wsf1{word-spacing:0.144954px;}
.ws3c{word-spacing:0.180000px;}
.ws160{word-spacing:0.192000px;}
.wsf2{word-spacing:0.193272px;}
.ws5e{word-spacing:0.240000px;}
.wsab{word-spacing:0.270000px;}
.ws16c{word-spacing:0.288000px;}
.wsaa{word-spacing:0.324000px;}
.ws19d{word-spacing:0.336000px;}
.ws84{word-spacing:0.360000px;}
.ws45{word-spacing:0.420000px;}
.ws150{word-spacing:0.432000px;}
.ws12e{word-spacing:0.480000px;}
.ws199{word-spacing:0.528000px;}
.ws13{word-spacing:0.540000px;}
.ws123{word-spacing:0.600000px;}
.wscc{word-spacing:0.624000px;}
.ws3f{word-spacing:0.660000px;}
.ws1ad{word-spacing:0.720000px;}
.ws57{word-spacing:0.780000px;}
.ws186{word-spacing:0.816000px;}
.ws3a{word-spacing:0.840000px;}
.ws17c{word-spacing:0.864000px;}
.ws130{word-spacing:0.900000px;}
.ws1ba{word-spacing:0.912000px;}
.ws3e{word-spacing:0.960000px;}
.ws165{word-spacing:1.008000px;}
.ws8d{word-spacing:1.020000px;}
.ws16f{word-spacing:1.056000px;}
.ws91{word-spacing:1.080000px;}
.ws1a9{word-spacing:1.152000px;}
.ws88{word-spacing:1.200000px;}
.ws19b{word-spacing:1.248000px;}
.ws174{word-spacing:1.296000px;}
.ws99{word-spacing:1.380000px;}
.ws109{word-spacing:1.440000px;}
.ws9{word-spacing:1.458000px;}
.ws2c{word-spacing:1.500000px;}
.ws40{word-spacing:1.560000px;}
.ws155{word-spacing:1.620000px;}
.ws1ac{word-spacing:1.680000px;}
.ws192{word-spacing:1.728000px;}
.wsc7{word-spacing:1.740000px;}
.ws15a{word-spacing:1.782000px;}
.ws49{word-spacing:1.800000px;}
.ws13e{word-spacing:1.860000px;}
.ws8c{word-spacing:1.920000px;}
.ws29{word-spacing:1.980000px;}
.wsf5{word-spacing:2.040000px;}
.ws193{word-spacing:2.112000px;}
.wsf{word-spacing:2.160000px;}
.ws167{word-spacing:2.208000px;}
.ws159{word-spacing:2.268000px;}
.ws1b7{word-spacing:2.304000px;}
.ws184{word-spacing:2.352000px;}
.wsc3{word-spacing:2.400000px;}
.ws196{word-spacing:2.448000px;}
.ws54{word-spacing:2.460000px;}
.ws1c{word-spacing:2.520000px;}
.ws1af{word-spacing:2.544000px;}
.ws141{word-spacing:2.580000px;}
.ws1bf{word-spacing:2.592000px;}
.ws118{word-spacing:2.640000px;}
.ws8a{word-spacing:2.700000px;}
.ws8{word-spacing:2.754000px;}
.ws104{word-spacing:2.760000px;}
.ws1bd{word-spacing:2.784000px;}
.ws95{word-spacing:2.820000px;}
.ws12{word-spacing:2.835000px;}
.ws4a{word-spacing:2.880000px;}
.ws1a0{word-spacing:2.928000px;}
.ws17{word-spacing:2.940000px;}
.ws61{word-spacing:3.000000px;}
.ws10f{word-spacing:3.060000px;}
.ws169{word-spacing:3.072000px;}
.ws2e{word-spacing:3.120000px;}
.ws19e{word-spacing:3.216000px;}
.ws67{word-spacing:3.240000px;}
.wsf6{word-spacing:3.300000px;}
.ws12f{word-spacing:3.360000px;}
.ws1b3{word-spacing:3.408000px;}
.ws4c{word-spacing:3.420000px;}
.ws1a8{word-spacing:3.456000px;}
.ws2f{word-spacing:3.480000px;}
.ws1a5{word-spacing:3.504000px;}
.wsa5{word-spacing:3.540000px;}
.ws16d{word-spacing:3.552000px;}
.ws97{word-spacing:3.600000px;}
.ws153{word-spacing:3.618000px;}
.ws9f{word-spacing:3.660000px;}
.ws17b{word-spacing:3.696000px;}
.ws22{word-spacing:3.720000px;}
.ws17d{word-spacing:3.744000px;}
.ws18{word-spacing:3.840000px;}
.ws80{word-spacing:3.900000px;}
.ws183{word-spacing:3.936000px;}
.ws3b{word-spacing:3.960000px;}
.ws7d{word-spacing:4.020000px;}
.ws179{word-spacing:4.032000px;}
.ws113{word-spacing:4.080000px;}
.ws53{word-spacing:4.140000px;}
.ws188{word-spacing:4.176000px;}
.ws60{word-spacing:4.200000px;}
.ws52{word-spacing:4.260000px;}
.ws1bc{word-spacing:4.272000px;}
.wsa2{word-spacing:4.320000px;}
.ws14b{word-spacing:4.380000px;}
.ws1a2{word-spacing:4.416000px;}
.ws51{word-spacing:4.440000px;}
.ws83{word-spacing:4.500000px;}
.ws124{word-spacing:4.560000px;}
.ws10b{word-spacing:4.590000px;}
.ws1c6{word-spacing:4.608000px;}
.ws129{word-spacing:4.620000px;}
.ws156{word-spacing:4.644000px;}
.ws138{word-spacing:4.680000px;}
.ws1a6{word-spacing:4.704000px;}
.ws27{word-spacing:4.740000px;}
.ws1a4{word-spacing:4.752000px;}
.ws107{word-spacing:4.800000px;}
.ws1b8{word-spacing:4.848000px;}
.ws25{word-spacing:4.860000px;}
.ws3d{word-spacing:4.920000px;}
.ws161{word-spacing:4.944000px;}
.ws10a{word-spacing:4.968000px;}
.ws39{word-spacing:4.980000px;}
.ws177{word-spacing:5.136000px;}
.ws13f{word-spacing:5.160000px;}
.ws128{word-spacing:5.220000px;}
.ws191{word-spacing:5.232000px;}
.ws17a{word-spacing:5.280000px;}
.ws144{word-spacing:5.340000px;}
.ws1b5{word-spacing:5.376000px;}
.ws47{word-spacing:5.400000px;}
.ws1c3{word-spacing:5.424000px;}
.ws86{word-spacing:5.460000px;}
.ws7f{word-spacing:5.520000px;}
.ws105{word-spacing:5.580000px;}
.ws85{word-spacing:5.640000px;}
.ws1be{word-spacing:5.664000px;}
.ws96{word-spacing:5.688000px;}
.ws127{word-spacing:5.700000px;}
.ws62{word-spacing:5.760000px;}
.ws1a7{word-spacing:5.808000px;}
.ws21{word-spacing:5.820000px;}
.ws17f{word-spacing:5.856000px;}
.ws20{word-spacing:5.880000px;}
.ws18f{word-spacing:5.904000px;}
.ws143{word-spacing:5.940000px;}
.ws15c{word-spacing:5.952000px;}
.ws38{word-spacing:6.000000px;}
.ws15f{word-spacing:6.048000px;}
.ws16e{word-spacing:6.096000px;}
.ws175{word-spacing:6.144000px;}
.ws152{word-spacing:6.156000px;}
.ws142{word-spacing:6.180000px;}
.ws17e{word-spacing:6.192000px;}
.ws87{word-spacing:6.240000px;}
.ws173{word-spacing:6.288000px;}
.ws50{word-spacing:6.300000px;}
.ws2b{word-spacing:6.360000px;}
.ws4f{word-spacing:6.420000px;}
.ws190{word-spacing:6.432000px;}
.ws14e{word-spacing:6.480000px;}
.ws1aa{word-spacing:6.528000px;}
.ws108{word-spacing:6.540000px;}
.ws187{word-spacing:6.624000px;}
.ws1c8{word-spacing:6.672000px;}
.ws10c{word-spacing:6.720000px;}
.ws55{word-spacing:6.780000px;}
.ws122{word-spacing:6.840000px;}
.ws48{word-spacing:6.900000px;}
.ws42{word-spacing:6.960000px;}
.ws112{word-spacing:7.020000px;}
.ws7a{word-spacing:7.140000px;}
.ws1d{word-spacing:7.200000px;}
.wsa3{word-spacing:7.260000px;}
.wsca{word-spacing:7.320000px;}
.ws1b2{word-spacing:7.392000px;}
.ws34{word-spacing:7.440000px;}
.ws178{word-spacing:7.488000px;}
.ws5f{word-spacing:7.500000px;}
.ws16b{word-spacing:7.536000px;}
.ws131{word-spacing:7.680000px;}
.ws181{word-spacing:7.728000px;}
.ws7c{word-spacing:7.740000px;}
.ws125{word-spacing:7.800000px;}
.ws2d{word-spacing:7.860000px;}
.ws11c{word-spacing:7.920000px;}
.ws11a{word-spacing:7.980000px;}
.ws166{word-spacing:8.016000px;}
.ws90{word-spacing:8.040000px;}
.ws4d{word-spacing:8.100000px;}
.ws5c{word-spacing:8.220000px;}
.wsc4{word-spacing:8.280000px;}
.ws12d{word-spacing:8.340000px;}
.ws1a3{word-spacing:8.352000px;}
.ws26{word-spacing:8.400000px;}
.ws19{word-spacing:8.520000px;}
.wsc9{word-spacing:8.580000px;}
.ws4e{word-spacing:8.640000px;}
.ws1b1{word-spacing:8.688000px;}
.ws1b{word-spacing:8.760000px;}
.ws140{word-spacing:8.820000px;}
.ws30{word-spacing:8.880000px;}
.ws36{word-spacing:8.940000px;}
.ws182{word-spacing:8.976000px;}
.ws11f{word-spacing:9.060000px;}
.ws14c{word-spacing:9.234000px;}
.ws32{word-spacing:9.360000px;}
.ws121{word-spacing:9.660000px;}
.ws9b{word-spacing:9.720000px;}
.ws133{word-spacing:9.840000px;}
.ws94{word-spacing:9.900000px;}
.ws41{word-spacing:9.960000px;}
.ws10d{word-spacing:10.260000px;}
.ws172{word-spacing:10.608000px;}
.ws43{word-spacing:10.740000px;}
.ws180{word-spacing:11.184000px;}
.ws195{word-spacing:11.232000px;}
.ws145{word-spacing:11.280000px;}
.ws14f{word-spacing:11.286000px;}
.ws146{word-spacing:11.400000px;}
.ws1ab{word-spacing:11.568000px;}
.ws37{word-spacing:11.580000px;}
.wsa6{word-spacing:11.760000px;}
.ws7e{word-spacing:11.940000px;}
.wsa4{word-spacing:12.240000px;}
.ws15d{word-spacing:12.288000px;}
.ws194{word-spacing:12.336000px;}
.ws24{word-spacing:12.420000px;}
.ws5d{word-spacing:12.600000px;}
.ws168{word-spacing:12.720000px;}
.ws63{word-spacing:12.900000px;}
.ws117{word-spacing:13.080000px;}
.ws15e{word-spacing:13.200000px;}
.ws134{word-spacing:13.320000px;}
.ws82{word-spacing:13.380000px;}
.ws9d{word-spacing:13.500000px;}
.ws171{word-spacing:13.536000px;}
.ws135{word-spacing:13.560000px;}
.wsbd{word-spacing:13.620000px;}
.ws1b0{word-spacing:13.728000px;}
.ws13c{word-spacing:13.980000px;}
.ws23{word-spacing:14.160000px;}
.ws19c{word-spacing:14.208000px;}
.ws147{word-spacing:14.460000px;}
.ws148{word-spacing:14.580000px;}
.ws35{word-spacing:15.120000px;}
.ws114{word-spacing:15.300000px;}
.ws111{word-spacing:15.480000px;}
.ws33{word-spacing:16.020000px;}
.ws119{word-spacing:16.260000px;}
.ws44{word-spacing:17.100000px;}
.ws14a{word-spacing:17.520000px;}
.ws9e{word-spacing:17.580000px;}
.ws132{word-spacing:18.180000px;}
.ws120{word-spacing:18.480000px;}
.ws13a{word-spacing:18.660000px;}
.wsda{word-spacing:18.795600px;}
.ws137{word-spacing:19.740000px;}
.ws8f{word-spacing:20.160000px;}
.ws14d{word-spacing:21.060000px;}
.ws110{word-spacing:21.180000px;}
.ws9c{word-spacing:21.660000px;}
.wse6{word-spacing:30.120600px;}
.ws13b{word-spacing:30.180000px;}
.ws149{word-spacing:37.800000px;}
.wsd4{word-spacing:40.343400px;}
.wsd7{word-spacing:41.835600px;}
.wse9{word-spacing:42.664794px;}
.wse8{word-spacing:49.233000px;}
.wsd2{word-spacing:51.863400px;}
.ws6f{word-spacing:54.613200px;}
.wse1{word-spacing:60.753000px;}
.ws78{word-spacing:69.273000px;}
.wsde{word-spacing:70.685400px;}
.wsdd{word-spacing:72.273000px;}
.ws6b{word-spacing:72.349200px;}
.ws69{word-spacing:73.765200px;}
.wsd6{word-spacing:75.791400px;}
.ws75{word-spacing:81.058200px;}
.wsd3{word-spacing:87.311400px;}
.ws6a{word-spacing:87.397200px;}
.wsfd{word-spacing:93.854400px;}
.wse3{word-spacing:96.200400px;}
.wsf8{word-spacing:97.719000px;}
.ws79{word-spacing:98.839200px;}
.wsd1{word-spacing:99.062400px;}
.ws6c{word-spacing:101.964600px;}
.wsdc{word-spacing:107.720400px;}
.ws6d{word-spacing:112.060800px;}
.ws76{word-spacing:121.519800px;}
.wsfc{word-spacing:122.367000px;}
.ws73{word-spacing:125.504400px;}
.ws72{word-spacing:131.312400px;}
.ws77{word-spacing:139.545000px;}
.wsff{word-spacing:144.877800px;}
.ws102{word-spacing:145.126200px;}
.ws6e{word-spacing:150.857400px;}
.wsb0{word-spacing:155.008800px;}
.wsf9{word-spacing:155.893800px;}
.ws70{word-spacing:158.344800px;}
.wse0{word-spacing:168.557400px;}
.wsfe{word-spacing:180.854400px;}
.wsae{word-spacing:185.643600px;}
.wse5{word-spacing:189.912600px;}
.ws101{word-spacing:197.863800px;}
.wse2{word-spacing:215.640600px;}
.wsac{word-spacing:218.598000px;}
.wsaf{word-spacing:220.203000px;}
.ws103{word-spacing:239.158200px;}
.wse4{word-spacing:239.880600px;}
.wsb4{word-spacing:241.431000px;}
.wsb7{word-spacing:252.951000px;}
.wsba{word-spacing:258.424200px;}
.wse7{word-spacing:264.408600px;}
.wsad{word-spacing:269.908800px;}
.wsb5{word-spacing:269.943600px;}
.wsb2{word-spacing:269.944200px;}
.wsb9{word-spacing:270.759000px;}
.wsbb{word-spacing:270.759600px;}
.wsb6{word-spacing:281.463600px;}
.wsb3{word-spacing:281.464200px;}
.wsb1{word-spacing:282.904200px;}
.wsb8{word-spacing:292.984200px;}
.ws100{word-spacing:434.307000px;}
.wsfb{word-spacing:505.459800px;}
.wsd8{word-spacing:623.613000px;}
.wsd5{word-spacing:649.341000px;}
.wsd9{word-spacing:698.109000px;}
._a{margin-left:-2823.442200px;}
._d{margin-left:-45.239400px;}
._1c{margin-left:-8.697000px;}
._4{margin-left:-7.533000px;}
._5{margin-left:-6.416400px;}
._1{margin-left:-4.926600px;}
._9{margin-left:-3.018600px;}
._0{margin-left:-1.701000px;}
._3{width:1.071000px;}
._2{width:2.381400px;}
._15{width:4.512000px;}
._11{width:5.856000px;}
._c{width:11.931600px;}
._8{width:15.839400px;}
._7{width:16.944000px;}
._6{width:22.320000px;}
._48{width:32.433600px;}
._e{width:36.831600px;}
._45{width:39.720000px;}
._76{width:42.684000px;}
._2d{width:44.100000px;}
._67{width:46.164000px;}
._5e{width:47.582400px;}
._38{width:53.727000px;}
._3e{width:62.759400px;}
._3a{width:65.247000px;}
._55{width:68.104200px;}
._32{width:76.767000px;}
._58{width:77.840298px;}
._f{width:80.365800px;}
._2f{width:88.927800px;}
._52{width:91.144200px;}
._59{width:92.216040px;}
._10{width:94.669200px;}
._2e{width:98.839200px;}
._53{width:102.663600px;}
._69{width:104.123400px;}
._65{width:107.319000px;}
._4c{width:114.183600px;}
._64{width:116.799600px;}
._35{width:117.831000px;}
._18{width:120.201600px;}
._17{width:121.929600px;}
._44{width:123.003600px;}
._43{width:124.575000px;}
._57{width:128.482200px;}
._14{width:129.585600px;}
._3f{width:133.890000px;}
._37{width:135.156000px;}
._3b{width:136.289400px;}
._56{width:141.237600px;}
._31{width:146.406600px;}
._41{width:147.969000px;}
._54{width:151.679400px;}
._24{width:153.837600px;}
._40{width:154.989000px;}
._16{width:156.642600px;}
._1b{width:161.961000px;}
._50{width:163.042200px;}
._1f{width:164.120400px;}
._19{width:168.054600px;}
._1a{width:173.481000px;}
._4e{width:174.562200px;}
._4f{width:175.798200px;}
._62{width:178.186800px;}
._13{width:181.023000px;}
._49{width:184.456200px;}
._12{width:186.105000px;}
._4d{width:187.318200px;}
._73{width:188.481000px;}
._66{width:191.750400px;}
._63{width:198.062400px;}
._75{width:200.298600px;}
._2c{width:202.450800px;}
._21{width:208.059000px;}
._1d{width:212.089200px;}
._6a{width:214.573800px;}
._23{width:219.579000px;}
._74{width:221.130000px;}
._6c{width:225.540600px;}
._51{width:233.278800px;}
._1e{width:235.035000px;}
._61{width:237.566400px;}
._20{width:240.652200px;}
._4b{width:244.833600px;}
._60{width:248.730600px;}
._68{width:249.731400px;}
._6f{width:255.630600px;}
._4a{width:257.590200px;}
._22{width:259.228200px;}
._25{width:262.577400px;}
._28{width:274.258800px;}
._26{width:276.196800px;}
._34{width:278.343000px;}
._70{width:282.090000px;}
._39{width:284.928600px;}
._47{width:295.153800px;}
._46{width:300.223200px;}
._2a{width:303.880200px;}
._27{width:308.282400px;}
._29{width:309.351600px;}
._2b{width:320.872200px;}
._5d{width:328.032600px;}
._72{width:331.846800px;}
._71{width:343.366200px;}
._30{width:347.730000px;}
._5c{width:379.469400px;}
._33{width:404.466000px;}
._6d{width:413.325600px;}
._3d{width:432.642000px;}
._5f{width:445.365600px;}
._6b{width:446.562000px;}
._5a{width:461.316600px;}
._42{width:484.749000px;}
._6e{width:517.114800px;}
._5b{width:550.843800px;}
._3c{width:573.180000px;}
._36{width:653.067600px;}
._b{width:2369.136000px;}
.fc6{color:rgb(210,32,39);}
.fc5{color:transparent;}
.fc4{color:rgb(112,109,110);}
.fc3{color:rgb(31,30,32);}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.980000px;}
.fs6{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fsb{font-size:42.463800px;}
.fs7{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fse{font-size:48.318000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:59.269800px;}
.fs9{font-size:60.000000px;}
.fsd{font-size:64.423800px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:75.376200px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y13c{bottom:-14.461650px;}
.y0{bottom:0.000000px;}
.y13b{bottom:0.197829px;}
.y146{bottom:4.096800px;}
.y21{bottom:64.661700px;}
.y20{bottom:77.261700px;}
.y1f{bottom:89.861700px;}
.y138{bottom:104.720100px;}
.y1a1{bottom:107.267700px;}
.y16a{bottom:107.291250px;}
.yd2{bottom:107.961150px;}
.y15e{bottom:111.662250px;}
.y1dc{bottom:112.315500px;}
.y1a0{bottom:125.267700px;}
.y5e{bottom:125.291250px;}
.y9a{bottom:125.291400px;}
.y139{bottom:126.015000px;}
.y15d{bottom:128.039700px;}
.y1db{bottom:130.315500px;}
.y14e{bottom:142.016850px;}
.y19f{bottom:143.267700px;}
.y5d{bottom:143.291250px;}
.y99{bottom:143.291400px;}
.y15c{bottom:144.417150px;}
.yd3{bottom:147.204750px;}
.ye1{bottom:147.809859px;}
.y1da{bottom:148.315500px;}
.y15b{bottom:160.794450px;}
.y19e{bottom:161.267700px;}
.y5c{bottom:161.291250px;}
.y98{bottom:161.291400px;}
.y171{bottom:163.741800px;}
.y1d9{bottom:166.315500px;}
.yd4{bottom:166.939801px;}
.ye2{bottom:167.544910px;}
.y13d{bottom:168.771450px;}
.y15a{bottom:177.171900px;}
.y19d{bottom:179.267700px;}
.y5b{bottom:179.291250px;}
.y97{bottom:179.291400px;}
.y1d8{bottom:184.315500px;}
.yd5{bottom:186.674852px;}
.ye3{bottom:187.279961px;}
.y13e{bottom:192.664701px;}
.y159{bottom:193.549350px;}
.y19c{bottom:197.267700px;}
.y5a{bottom:197.291250px;}
.y96{bottom:197.291400px;}
.y62{bottom:200.527500px;}
.y1d7{bottom:202.315500px;}
.yd6{bottom:206.409903px;}
.ye4{bottom:207.015012px;}
.y13f{bottom:209.044503px;}
.y158{bottom:209.926800px;}
.y19b{bottom:215.267700px;}
.y59{bottom:215.291250px;}
.y95{bottom:215.291400px;}
.yef{bottom:216.690900px;}
.y170{bottom:217.741800px;}
.y1d6{bottom:220.315500px;}
.yb9{bottom:221.167950px;}
.y140{bottom:225.424305px;}
.yd7{bottom:226.144954px;}
.y157{bottom:226.304100px;}
.ye5{bottom:226.750063px;}
.y19a{bottom:233.267700px;}
.y58{bottom:233.291250px;}
.y94{bottom:233.291400px;}
.yb8{bottom:237.545400px;}
.y1d5{bottom:238.315500px;}
.y141{bottom:241.804107px;}
.y156{bottom:242.681550px;}
.yd8{bottom:245.880005px;}
.ye6{bottom:246.485114px;}
.y199{bottom:251.267700px;}
.y57{bottom:251.291250px;}
.yb7{bottom:253.922850px;}
.y1e{bottom:255.292950px;}
.y1d4{bottom:256.315500px;}
.y142{bottom:258.183909px;}
.y155{bottom:259.059000px;}
.yd9{bottom:265.615056px;}
.y93{bottom:266.031600px;}
.ye7{bottom:266.220165px;}
.y198{bottom:269.267700px;}
.y56{bottom:269.291250px;}
.yb6{bottom:270.300300px;}
.y1d3{bottom:274.315500px;}
.y143{bottom:274.563711px;}
.y154{bottom:275.436450px;}
.y1d{bottom:281.796900px;}
.y92{bottom:284.031600px;}
.yda{bottom:285.350107px;}
.ye8{bottom:285.955217px;}
.yb5{bottom:286.677750px;}
.y197{bottom:287.267700px;}
.y55{bottom:287.291250px;}
.y144{bottom:290.943513px;}
.y153{bottom:291.813900px;}
.y1d2{bottom:292.315500px;}
.yb4{bottom:303.055050px;}
.y145{bottom:303.214500px;}
.ydb{bottom:305.085158px;}
.y196{bottom:305.267700px;}
.y54{bottom:305.291250px;}
.ye9{bottom:305.690268px;}
.y152{bottom:308.191350px;}
.y1d1{bottom:310.315500px;}
.y151{bottom:323.191350px;}
.y195{bottom:323.267700px;}
.y53{bottom:323.291250px;}
.y91{bottom:323.291400px;}
.y147{bottom:323.689350px;}
.ydc{bottom:324.820209px;}
.yea{bottom:325.425319px;}
.y61{bottom:326.527500px;}
.y1d0{bottom:328.315500px;}
.yb3{bottom:329.209050px;}
.y150{bottom:339.568650px;}
.y148{bottom:340.069152px;}
.y194{bottom:341.267700px;}
.y52{bottom:341.291250px;}
.y90{bottom:341.291400px;}
.y1c{bottom:342.316500px;}
.y13a{bottom:344.540550px;}
.ydd{bottom:344.555261px;}
.yeb{bottom:345.160370px;}
.y1cf{bottom:346.315500px;}
.yb2{bottom:347.209050px;}
.y149{bottom:356.448954px;}
.y193{bottom:359.267700px;}
.y51{bottom:359.291250px;}
.y8f{bottom:359.291400px;}
.y1b{bottom:360.316500px;}
.yde{bottom:364.290312px;}
.y1ce{bottom:364.315500px;}
.yec{bottom:364.895421px;}
.y14f{bottom:365.722650px;}
.y14a{bottom:372.828756px;}
.y192{bottom:377.267700px;}
.y50{bottom:377.291250px;}
.y8e{bottom:377.291400px;}
.y1cd{bottom:382.315500px;}
.ydf{bottom:384.025363px;}
.yed{bottom:384.630472px;}
.y1a{bottom:386.820450px;}
.y14b{bottom:389.208558px;}
.y191{bottom:395.267700px;}
.y4f{bottom:395.291250px;}
.y8d{bottom:395.291400px;}
.y166{bottom:398.872800px;}
.y1cc{bottom:400.315500px;}
.ye0{bottom:403.760414px;}
.yee{bottom:404.365523px;}
.y19{bottom:404.820450px;}
.y14c{bottom:405.588360px;}
.y190{bottom:413.267700px;}
.y4e{bottom:413.291250px;}
.y8c{bottom:413.291400px;}
.y165{bottom:415.250250px;}
.y1cb{bottom:418.315500px;}
.y18{bottom:422.820450px;}
.y18f{bottom:431.267700px;}
.y4d{bottom:431.291250px;}
.y8b{bottom:431.291400px;}
.y164{bottom:431.627700px;}
.y1ca{bottom:436.315500px;}
.y14d{bottom:439.002150px;}
.y17{bottom:440.820450px;}
.y163{bottom:448.005000px;}
.yb1{bottom:448.761900px;}
.y18e{bottom:449.267700px;}
.y4c{bottom:449.291250px;}
.y8a{bottom:449.291400px;}
.y1c9{bottom:454.315500px;}
.y16{bottom:458.820450px;}
.y162{bottom:464.382450px;}
.yb0{bottom:465.139200px;}
.y18d{bottom:467.267700px;}
.y4b{bottom:467.291250px;}
.y89{bottom:467.291400px;}
.y1c8{bottom:472.315500px;}
.y161{bottom:480.759900px;}
.yaf{bottom:481.516650px;}
.y18c{bottom:485.267700px;}
.y4a{bottom:485.291250px;}
.y88{bottom:485.291400px;}
.y15{bottom:485.324400px;}
.y16f{bottom:487.741800px;}
.y1c7{bottom:490.315500px;}
.y137{bottom:490.554900px;}
.y18b{bottom:503.267700px;}
.y49{bottom:503.291250px;}
.y87{bottom:503.291400px;}
.y14{bottom:503.324400px;}
.y160{bottom:506.913900px;}
.y136{bottom:506.932350px;}
.yae{bottom:507.670650px;}
.y1c6{bottom:508.315500px;}
.y18a{bottom:521.267700px;}
.y48{bottom:521.291250px;}
.y86{bottom:521.291400px;}
.y135{bottom:523.309800px;}
.yad{bottom:525.670650px;}
.y1c5{bottom:526.315500px;}
.y13{bottom:529.828350px;}
.y189{bottom:539.267700px;}
.y47{bottom:539.291250px;}
.y85{bottom:539.291400px;}
.y134{bottom:539.687250px;}
.y1c4{bottom:544.315500px;}
.y16e{bottom:547.771650px;}
.y168{bottom:549.152850px;}
.y133{bottom:556.064550px;}
.y12{bottom:556.332300px;}
.y188{bottom:557.267700px;}
.y46{bottom:557.291250px;}
.y84{bottom:557.291400px;}
.y1c3{bottom:562.315500px;}
.y167{bottom:567.152850px;}
.y132{bottom:572.442000px;}
.y187{bottom:575.267700px;}
.y45{bottom:575.291250px;}
.y83{bottom:575.291400px;}
.y16d{bottom:578.527500px;}
.y1c2{bottom:580.315500px;}
.y131{bottom:588.819450px;}
.y130{bottom:590.196900px;}
.y186{bottom:593.267700px;}
.y44{bottom:593.291250px;}
.y82{bottom:593.291400px;}
.yd1{bottom:594.665400px;}
.y1c1{bottom:598.315500px;}
.y12f{bottom:605.196900px;}
.yd0{bottom:611.042850px;}
.y185{bottom:611.267700px;}
.y43{bottom:611.291250px;}
.y81{bottom:611.291400px;}
.y11{bottom:612.600000px;}
.y1c0{bottom:616.315500px;}
.y10d{bottom:620.332950px;}
.y12e{bottom:621.574350px;}
.y12d{bottom:622.951650px;}
.ycf{bottom:627.420300px;}
.y184{bottom:629.267700px;}
.y42{bottom:629.291250px;}
.y80{bottom:629.291400px;}
.y10{bottom:630.600000px;}
.y1bf{bottom:634.315500px;}
.y10c{bottom:636.710400px;}
.y12c{bottom:637.951650px;}
.yce{bottom:643.797600px;}
.y183{bottom:647.267700px;}
.y41{bottom:647.291250px;}
.y7f{bottom:647.291400px;}
.yf{bottom:648.600000px;}
.yac{bottom:650.527500px;}
.y1be{bottom:652.315500px;}
.y10b{bottom:653.087850px;}
.y12b{bottom:654.329100px;}
.y12a{bottom:655.706550px;}
.ycd{bottom:660.175050px;}
.y182{bottom:665.267700px;}
.y40{bottom:665.291250px;}
.y7e{bottom:665.291400px;}
.y10a{bottom:669.465300px;}
.y1bd{bottom:670.315500px;}
.y129{bottom:670.706550px;}
.ycc{bottom:676.552500px;}
.y181{bottom:683.267700px;}
.y3f{bottom:683.291250px;}
.y7d{bottom:683.291400px;}
.ye{bottom:683.607900px;}
.y109{bottom:685.842600px;}
.y128{bottom:687.084000px;}
.y1bc{bottom:688.315500px;}
.y127{bottom:688.461450px;}
.ycb{bottom:692.929950px;}
.y180{bottom:701.267700px;}
.y3e{bottom:701.291250px;}
.y7c{bottom:701.291400px;}
.y108{bottom:702.220050px;}
.y126{bottom:703.461450px;}
.y16c{bottom:704.527500px;}
.y1bb{bottom:706.315500px;}
.yca{bottom:709.307400px;}
.y107{bottom:718.597500px;}
.y17f{bottom:719.267700px;}
.y3d{bottom:719.291250px;}
.y7b{bottom:719.291400px;}
.y125{bottom:719.838750px;}
.y1ba{bottom:724.315500px;}
.yc9{bottom:725.684850px;}
.yd{bottom:731.371650px;}
.y106{bottom:734.974950px;}
.y124{bottom:736.216350px;}
.y17e{bottom:737.267700px;}
.y3c{bottom:737.291250px;}
.y7a{bottom:737.291400px;}
.yc8{bottom:742.062150px;}
.y1b9{bottom:742.315500px;}
.y105{bottom:751.352400px;}
.y123{bottom:752.593650px;}
.y17d{bottom:755.267700px;}
.y3b{bottom:755.291250px;}
.y79{bottom:755.291400px;}
.yc{bottom:757.875600px;}
.yc7{bottom:758.439600px;}
.y1b8{bottom:760.315500px;}
.y104{bottom:767.729700px;}
.y122{bottom:768.971100px;}
.y17c{bottom:773.267700px;}
.y3a{bottom:773.291250px;}
.y78{bottom:773.291400px;}
.yab{bottom:774.283500px;}
.yc6{bottom:774.817050px;}
.yb{bottom:775.875600px;}
.y1b7{bottom:778.315500px;}
.y103{bottom:784.107150px;}
.y121{bottom:785.348550px;}
.y120{bottom:786.725850px;}
.yc5{bottom:791.194500px;}
.y17b{bottom:791.267700px;}
.y39{bottom:791.291250px;}
.y77{bottom:791.291400px;}
.yaa{bottom:792.283500px;}
.ya{bottom:793.875600px;}
.y1b6{bottom:796.315500px;}
.y102{bottom:800.484600px;}
.y11f{bottom:801.725850px;}
.yc4{bottom:807.571800px;}
.y17a{bottom:809.267700px;}
.y38{bottom:809.291250px;}
.y76{bottom:809.291400px;}
.ya9{bottom:810.283500px;}
.y9{bottom:811.875600px;}
.y1b5{bottom:814.315500px;}
.y101{bottom:816.861900px;}
.y11e{bottom:818.103300px;}
.y179{bottom:827.267700px;}
.y37{bottom:827.291250px;}
.y75{bottom:827.291400px;}
.ya8{bottom:828.283500px;}
.y8{bottom:829.875600px;}
.y15f{bottom:831.515100px;}
.y1b4{bottom:832.315500px;}
.y100{bottom:833.239350px;}
.yc3{bottom:833.725950px;}
.y11d{bottom:834.480750px;}
.y178{bottom:845.267700px;}
.y36{bottom:845.291250px;}
.y74{bottom:845.291400px;}
.ya7{bottom:846.283500px;}
.y7{bottom:847.875600px;}
.yff{bottom:849.616950px;}
.y1b3{bottom:850.315500px;}
.y11c{bottom:850.858200px;}
.y11b{bottom:852.235650px;}
.y177{bottom:863.267700px;}
.y35{bottom:863.291250px;}
.y73{bottom:863.291400px;}
.ya6{bottom:864.283500px;}
.y6{bottom:865.875600px;}
.yfe{bottom:865.994250px;}
.y11a{bottom:867.235650px;}
.y1b2{bottom:868.315500px;}
.y176{bottom:881.267700px;}
.y34{bottom:881.291250px;}
.y72{bottom:881.291400px;}
.ya5{bottom:882.283500px;}
.yfd{bottom:882.371700px;}
.y119{bottom:883.613100px;}
.y16b{bottom:884.527500px;}
.y118{bottom:884.990550px;}
.y1b1{bottom:886.315500px;}
.y5{bottom:892.379550px;}
.yfc{bottom:898.749150px;}
.y33{bottom:899.291250px;}
.y71{bottom:899.291400px;}
.y117{bottom:899.990550px;}
.ya4{bottom:900.283500px;}
.y1b0{bottom:904.315500px;}
.y175{bottom:912.023550px;}
.y4{bottom:913.979700px;}
.yfb{bottom:915.126600px;}
.y116{bottom:916.367850px;}
.y32{bottom:917.291250px;}
.y70{bottom:917.291400px;}
.ya3{bottom:918.283500px;}
.y1af{bottom:922.315500px;}
.yfa{bottom:931.503900px;}
.y115{bottom:932.745300px;}
.y31{bottom:935.291250px;}
.y6f{bottom:935.291400px;}
.ya2{bottom:936.283500px;}
.y1ae{bottom:940.315500px;}
.yf9{bottom:947.881350px;}
.y114{bottom:949.122750px;}
.y113{bottom:950.500050px;}
.y30{bottom:953.291250px;}
.y6e{bottom:953.291400px;}
.y3{bottom:953.578200px;}
.ya1{bottom:954.283500px;}
.y1ad{bottom:958.315500px;}
.yf8{bottom:964.258800px;}
.y112{bottom:965.500050px;}
.y2f{bottom:971.291250px;}
.y6d{bottom:971.291400px;}
.ya0{bottom:972.283500px;}
.y1ac{bottom:976.315500px;}
.yf7{bottom:980.636100px;}
.y111{bottom:981.877500px;}
.y110{bottom:983.254950px;}
.y2e{bottom:989.291250px;}
.y6c{bottom:989.291400px;}
.y9f{bottom:990.283500px;}
.y2{bottom:991.378200px;}
.y1ab{bottom:994.315500px;}
.yf6{bottom:997.013700px;}
.y10f{bottom:998.254950px;}
.y2d{bottom:1007.291250px;}
.y6b{bottom:1007.291400px;}
.y9e{bottom:1008.283500px;}
.y169{bottom:1010.527500px;}
.y1aa{bottom:1012.315500px;}
.yf5{bottom:1013.391150px;}
.yc2{bottom:1013.578650px;}
.y10e{bottom:1024.408950px;}
.y2c{bottom:1025.291250px;}
.y6a{bottom:1025.291400px;}
.y9d{bottom:1026.283500px;}
.y1{bottom:1029.178200px;}
.yf4{bottom:1029.768450px;}
.yc1{bottom:1029.955950px;}
.y1a9{bottom:1030.315500px;}
.y2b{bottom:1043.291250px;}
.y69{bottom:1043.291400px;}
.y9c{bottom:1044.283500px;}
.y174{bottom:1045.741800px;}
.yf3{bottom:1046.145900px;}
.yc0{bottom:1046.333400px;}
.y1a8{bottom:1048.315500px;}
.y2a{bottom:1061.291250px;}
.y68{bottom:1061.291400px;}
.yf2{bottom:1062.523350px;}
.ybf{bottom:1062.710850px;}
.y173{bottom:1063.741800px;}
.y1a7{bottom:1066.315500px;}
.yf1{bottom:1078.900800px;}
.ybe{bottom:1079.088300px;}
.y29{bottom:1079.291250px;}
.y67{bottom:1079.291400px;}
.y1a6{bottom:1084.315500px;}
.yf0{bottom:1095.278100px;}
.ybd{bottom:1095.465600px;}
.y28{bottom:1097.291250px;}
.y66{bottom:1097.291400px;}
.y1a5{bottom:1102.315500px;}
.ybc{bottom:1111.843050px;}
.y27{bottom:1115.291250px;}
.y65{bottom:1115.291400px;}
.y1a4{bottom:1120.315500px;}
.y24{bottom:1126.725000px;}
.ybb{bottom:1128.220500px;}
.y60{bottom:1133.291250px;}
.y64{bottom:1133.291400px;}
.y1a3{bottom:1138.315500px;}
.y26{bottom:1148.449350px;}
.y9b{bottom:1150.819500px;}
.y5f{bottom:1151.291250px;}
.y63{bottom:1151.291400px;}
.y172{bottom:1153.189500px;}
.yba{bottom:1154.374500px;}
.y1a2{bottom:1156.315500px;}
.y23{bottom:1166.037750px;}
.y22{bottom:1183.789800px;}
.y25{bottom:1193.518650px;}
.h16{height:16.428000px;}
.ha{height:27.575100px;}
.h11{height:30.479388px;}
.hb{height:32.827500px;}
.hc{height:33.947754px;}
.h4{height:34.176000px;}
.h10{height:34.272000px;}
.h6{height:34.368000px;}
.h5{height:35.016000px;}
.h15{height:35.082454px;}
.h8{height:38.664000px;}
.h13{height:39.503553px;}
.h7{height:39.555000px;}
.h14{height:42.938714px;}
.he{height:42.960000px;}
.h18{height:43.950000px;}
.hf{height:45.025680px;}
.h9{height:52.740000px;}
.h17{height:54.103034px;}
.h3{height:54.596892px;}
.hd{height:61.530000px;}
.h2{height:92.295000px;}
.h12{height:340.998000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:355.780500px;}
.w2{width:574.447500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:49.077150px;}
.x1{left:93.543300px;}
.x19{left:96.094500px;}
.xc{left:110.551200px;}
.x4b{left:115.437000px;}
.x1e{left:120.158400px;}
.x43{left:125.372100px;}
.x18{left:127.170600px;}
.x23{left:136.046250px;}
.x3{left:145.222950px;}
.x3b{left:159.231000px;}
.x40{left:168.729163px;}
.x45{left:171.525282px;}
.x46{left:172.612437px;}
.x54{left:191.217300px;}
.x20{left:202.494600px;}
.x1b{left:205.532250px;}
.x21{left:209.622600px;}
.x2{left:211.839150px;}
.x1f{left:216.750450px;}
.x22{left:219.630600px;}
.x3e{left:228.764278px;}
.x1a{left:232.046100px;}
.x1d{left:236.287950px;}
.x1c{left:237.859950px;}
.x3f{left:244.552185px;}
.xb{left:248.515650px;}
.x44{left:250.090350px;}
.x4{left:254.111400px;}
.x51{left:256.766100px;}
.x48{left:261.300126px;}
.x34{left:264.842550px;}
.x2d{left:278.435880px;}
.x36{left:295.227750px;}
.x47{left:301.923485px;}
.x50{left:305.503950px;}
.x41{left:307.486380px;}
.x5{left:309.205350px;}
.x42{left:311.967874px;}
.x2b{left:313.850689px;}
.x2e{left:317.099169px;}
.x35{left:324.189600px;}
.x49{left:339.256500px;}
.x3d{left:342.033750px;}
.x2a{left:348.681621px;}
.x4a{left:352.531950px;}
.x53{left:360.769500px;}
.x28{left:369.605658px;}
.xa{left:375.582450px;}
.x30{left:383.162226px;}
.x2f{left:393.427850px;}
.x29{left:401.676443px;}
.x2c{left:413.810474px;}
.x52{left:417.870300px;}
.x31{left:428.226934px;}
.x32{left:432.579474px;}
.x33{left:434.575272px;}
.x6{left:437.370900px;}
.xd{left:455.456700px;}
.x12{left:458.007900px;}
.x4f{left:465.306450px;}
.x37{left:470.632350px;}
.xe{left:472.464450px;}
.xf{left:480.369300px;}
.x11{left:486.119400px;}
.x10{left:489.472350px;}
.x24{left:491.933250px;}
.x7{left:494.055750px;}
.x13{left:506.735250px;}
.x17{left:511.915950px;}
.x14{left:526.549650px;}
.x25{left:528.590125px;}
.x26{left:540.819700px;}
.x3a{left:548.795400px;}
.x38{left:550.649400px;}
.x39{left:564.308550px;}
.x4c{left:565.711800px;}
.x16{left:573.747750px;}
.x9{left:601.212600px;}
.x4d{left:613.577550px;}
.x4e{left:616.643550px;}
.x15{left:619.950150px;}
.x27{left:687.425969px;}
.x8{left:695.534100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.ls1b{letter-spacing:-5.205333pt;}
.ls1f{letter-spacing:-4.693333pt;}
.ls1d{letter-spacing:-4.352000pt;}
.ls24{letter-spacing:-4.181333pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls2c{letter-spacing:-0.938667pt;}
.ls1c{letter-spacing:-0.912000pt;}
.ls12{letter-spacing:-0.906667pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls2a{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.810667pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls20{letter-spacing:-0.725333pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls33{letter-spacing:-0.693333pt;}
.ls37{letter-spacing:-0.682667pt;}
.ls31{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.554667pt;}
.ls2b{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls39{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls32{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.341333pt;}
.ls38{letter-spacing:-0.298667pt;}
.ls35{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.171797pt;}
.ls3a{letter-spacing:-0.170667pt;}
.ls2d{letter-spacing:-0.128848pt;}
.ls34{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.018133pt;}
.ls7{letter-spacing:0.018667pt;}
.ls28{letter-spacing:0.067001pt;}
.ls26{letter-spacing:0.075491pt;}
.ls16{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.150982pt;}
.ls10{letter-spacing:0.186560pt;}
.ls21{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls27{letter-spacing:0.300645pt;}
.ls14{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.415202pt;}
.ls15{letter-spacing:0.533333pt;}
.ls36{letter-spacing:1.588800pt;}
.ls30{letter-spacing:1.747733pt;}
.ls0{letter-spacing:37.487936pt;}
.ls4{letter-spacing:37.727531pt;}
.ls3{letter-spacing:37.728021pt;}
.ls5{letter-spacing:37.728064pt;}
.ls2{letter-spacing:37.746261pt;}
.ls1{letter-spacing:37.747179pt;}
.ls6{letter-spacing:37.747264pt;}
.ws3{word-spacing:-48.000000pt;}
.wseb{word-spacing:-42.949333pt;}
.ws15{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.wsec{word-spacing:-15.142241pt;}
.ws136{word-spacing:-13.173333pt;}
.ws68{word-spacing:-12.106667pt;}
.ws2{word-spacing:-11.856000pt;}
.ws4{word-spacing:-11.376000pt;}
.ws157{word-spacing:-10.896000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws71{word-spacing:-9.984000pt;}
.ws0{word-spacing:-9.968000pt;}
.wsea{word-spacing:-9.706549pt;}
.ws1{word-spacing:-9.685333pt;}
.ws18e{word-spacing:-9.514667pt;}
.ws18b{word-spacing:-9.386667pt;}
.ws189{word-spacing:-9.344000pt;}
.ws158{word-spacing:-9.301333pt;}
.wsdb{word-spacing:-9.258667pt;}
.ws18d{word-spacing:-9.216000pt;}
.wsdf{word-spacing:-9.173333pt;}
.ws18c{word-spacing:-9.130667pt;}
.wsfa{word-spacing:-9.045333pt;}
.ws18a{word-spacing:-9.002667pt;}
.wsbc{word-spacing:-8.530506pt;}
.ws16{word-spacing:-7.244747pt;}
.wsd0{word-spacing:-4.906667pt;}
.ws74{word-spacing:-4.565333pt;}
.ws19a{word-spacing:-3.712000pt;}
.ws106{word-spacing:-3.253333pt;}
.ws11e{word-spacing:-3.200000pt;}
.ws31{word-spacing:-3.040000pt;}
.wsc1{word-spacing:-2.986667pt;}
.ws46{word-spacing:-2.880000pt;}
.wsf4{word-spacing:-2.826667pt;}
.ws12b{word-spacing:-2.773333pt;}
.ws154{word-spacing:-2.688000pt;}
.wsf7{word-spacing:-2.506667pt;}
.wsa7{word-spacing:-2.453333pt;}
.ws1ae{word-spacing:-2.432000pt;}
.ws2a{word-spacing:-2.400000pt;}
.wsc6{word-spacing:-2.346667pt;}
.ws11b{word-spacing:-2.293333pt;}
.ws139{word-spacing:-2.240000pt;}
.ws1a{word-spacing:-2.186667pt;}
.ws66{word-spacing:-2.080000pt;}
.ws15b{word-spacing:-2.064000pt;}
.ws56{word-spacing:-2.026667pt;}
.wsbf{word-spacing:-1.973333pt;}
.ws115{word-spacing:-1.920000pt;}
.ws1c5{word-spacing:-1.877333pt;}
.ws59{word-spacing:-1.866667pt;}
.ws126{word-spacing:-1.813333pt;}
.ws64{word-spacing:-1.760000pt;}
.ws89{word-spacing:-1.653333pt;}
.wsed{word-spacing:-1.632000pt;}
.ws1c0{word-spacing:-1.578667pt;}
.wsa0{word-spacing:-1.546667pt;}
.ws151{word-spacing:-1.536000pt;}
.ws5b{word-spacing:-1.493333pt;}
.wsee{word-spacing:-1.488000pt;}
.ws1a1{word-spacing:-1.450667pt;}
.ws116{word-spacing:-1.440000pt;}
.ws1b9{word-spacing:-1.408000pt;}
.ws1bb{word-spacing:-1.365333pt;}
.ws81{word-spacing:-1.333333pt;}
.ws162{word-spacing:-1.322667pt;}
.wsc5{word-spacing:-1.280000pt;}
.ws8b{word-spacing:-1.226667pt;}
.wsbe{word-spacing:-1.173333pt;}
.ws11{word-spacing:-1.142400pt;}
.ws11d{word-spacing:-1.120000pt;}
.wsa8{word-spacing:-1.104000pt;}
.ws9a{word-spacing:-1.066667pt;}
.ws58{word-spacing:-1.013333pt;}
.wsa9{word-spacing:-1.008000pt;}
.ws176{word-spacing:-0.981333pt;}
.wsc8{word-spacing:-0.960000pt;}
.ws92{word-spacing:-0.906667pt;}
.ws1c7{word-spacing:-0.896000pt;}
.ws93{word-spacing:-0.853333pt;}
.ws14{word-spacing:-0.832000pt;}
.ws1c4{word-spacing:-0.810667pt;}
.ws10e{word-spacing:-0.800000pt;}
.ws197{word-spacing:-0.768000pt;}
.ws7b{word-spacing:-0.746667pt;}
.wsef{word-spacing:-0.725333pt;}
.ws65{word-spacing:-0.693333pt;}
.ws16a{word-spacing:-0.682667pt;}
.ws12a{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.638400pt;}
.ws1c1{word-spacing:-0.597333pt;}
.ws5a{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws185{word-spacing:-0.512000pt;}
.ws12c{word-spacing:-0.480000pt;}
.ws170{word-spacing:-0.469333pt;}
.wsb{word-spacing:-0.432000pt;}
.ws98{word-spacing:-0.426667pt;}
.wsc2{word-spacing:-0.373333pt;}
.ws19f{word-spacing:-0.341333pt;}
.ws8e{word-spacing:-0.320000pt;}
.wsf0{word-spacing:-0.298667pt;}
.wsa1{word-spacing:-0.266667pt;}
.ws198{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.240000pt;}
.ws28{word-spacing:-0.213333pt;}
.ws163{word-spacing:-0.170667pt;}
.ws1e{word-spacing:-0.160000pt;}
.wscd{word-spacing:-0.150982pt;}
.wsc{word-spacing:-0.144000pt;}
.ws164{word-spacing:-0.128000pt;}
.wscb{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.096000pt;}
.ws1b4{word-spacing:-0.085333pt;}
.wsce{word-spacing:-0.075491pt;}
.wsf3{word-spacing:-0.067001pt;}
.wsc0{word-spacing:-0.053333pt;}
.ws1b6{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.053333pt;}
.wscf{word-spacing:0.075491pt;}
.ws1c2{word-spacing:0.085333pt;}
.wse{word-spacing:0.096000pt;}
.ws4b{word-spacing:0.106667pt;}
.wsf1{word-spacing:0.128848pt;}
.ws3c{word-spacing:0.160000pt;}
.ws160{word-spacing:0.170667pt;}
.wsf2{word-spacing:0.171797pt;}
.ws5e{word-spacing:0.213333pt;}
.wsab{word-spacing:0.240000pt;}
.ws16c{word-spacing:0.256000pt;}
.wsaa{word-spacing:0.288000pt;}
.ws19d{word-spacing:0.298667pt;}
.ws84{word-spacing:0.320000pt;}
.ws45{word-spacing:0.373333pt;}
.ws150{word-spacing:0.384000pt;}
.ws12e{word-spacing:0.426667pt;}
.ws199{word-spacing:0.469333pt;}
.ws13{word-spacing:0.480000pt;}
.ws123{word-spacing:0.533333pt;}
.wscc{word-spacing:0.554667pt;}
.ws3f{word-spacing:0.586667pt;}
.ws1ad{word-spacing:0.640000pt;}
.ws57{word-spacing:0.693333pt;}
.ws186{word-spacing:0.725333pt;}
.ws3a{word-spacing:0.746667pt;}
.ws17c{word-spacing:0.768000pt;}
.ws130{word-spacing:0.800000pt;}
.ws1ba{word-spacing:0.810667pt;}
.ws3e{word-spacing:0.853333pt;}
.ws165{word-spacing:0.896000pt;}
.ws8d{word-spacing:0.906667pt;}
.ws16f{word-spacing:0.938667pt;}
.ws91{word-spacing:0.960000pt;}
.ws1a9{word-spacing:1.024000pt;}
.ws88{word-spacing:1.066667pt;}
.ws19b{word-spacing:1.109333pt;}
.ws174{word-spacing:1.152000pt;}
.ws99{word-spacing:1.226667pt;}
.ws109{word-spacing:1.280000pt;}
.ws9{word-spacing:1.296000pt;}
.ws2c{word-spacing:1.333333pt;}
.ws40{word-spacing:1.386667pt;}
.ws155{word-spacing:1.440000pt;}
.ws1ac{word-spacing:1.493333pt;}
.ws192{word-spacing:1.536000pt;}
.wsc7{word-spacing:1.546667pt;}
.ws15a{word-spacing:1.584000pt;}
.ws49{word-spacing:1.600000pt;}
.ws13e{word-spacing:1.653333pt;}
.ws8c{word-spacing:1.706667pt;}
.ws29{word-spacing:1.760000pt;}
.wsf5{word-spacing:1.813333pt;}
.ws193{word-spacing:1.877333pt;}
.wsf{word-spacing:1.920000pt;}
.ws167{word-spacing:1.962667pt;}
.ws159{word-spacing:2.016000pt;}
.ws1b7{word-spacing:2.048000pt;}
.ws184{word-spacing:2.090667pt;}
.wsc3{word-spacing:2.133333pt;}
.ws196{word-spacing:2.176000pt;}
.ws54{word-spacing:2.186667pt;}
.ws1c{word-spacing:2.240000pt;}
.ws1af{word-spacing:2.261333pt;}
.ws141{word-spacing:2.293333pt;}
.ws1bf{word-spacing:2.304000pt;}
.ws118{word-spacing:2.346667pt;}
.ws8a{word-spacing:2.400000pt;}
.ws8{word-spacing:2.448000pt;}
.ws104{word-spacing:2.453333pt;}
.ws1bd{word-spacing:2.474667pt;}
.ws95{word-spacing:2.506667pt;}
.ws12{word-spacing:2.520000pt;}
.ws4a{word-spacing:2.560000pt;}
.ws1a0{word-spacing:2.602667pt;}
.ws17{word-spacing:2.613333pt;}
.ws61{word-spacing:2.666667pt;}
.ws10f{word-spacing:2.720000pt;}
.ws169{word-spacing:2.730667pt;}
.ws2e{word-spacing:2.773333pt;}
.ws19e{word-spacing:2.858667pt;}
.ws67{word-spacing:2.880000pt;}
.wsf6{word-spacing:2.933333pt;}
.ws12f{word-spacing:2.986667pt;}
.ws1b3{word-spacing:3.029333pt;}
.ws4c{word-spacing:3.040000pt;}
.ws1a8{word-spacing:3.072000pt;}
.ws2f{word-spacing:3.093333pt;}
.ws1a5{word-spacing:3.114667pt;}
.wsa5{word-spacing:3.146667pt;}
.ws16d{word-spacing:3.157333pt;}
.ws97{word-spacing:3.200000pt;}
.ws153{word-spacing:3.216000pt;}
.ws9f{word-spacing:3.253333pt;}
.ws17b{word-spacing:3.285333pt;}
.ws22{word-spacing:3.306667pt;}
.ws17d{word-spacing:3.328000pt;}
.ws18{word-spacing:3.413333pt;}
.ws80{word-spacing:3.466667pt;}
.ws183{word-spacing:3.498667pt;}
.ws3b{word-spacing:3.520000pt;}
.ws7d{word-spacing:3.573333pt;}
.ws179{word-spacing:3.584000pt;}
.ws113{word-spacing:3.626667pt;}
.ws53{word-spacing:3.680000pt;}
.ws188{word-spacing:3.712000pt;}
.ws60{word-spacing:3.733333pt;}
.ws52{word-spacing:3.786667pt;}
.ws1bc{word-spacing:3.797333pt;}
.wsa2{word-spacing:3.840000pt;}
.ws14b{word-spacing:3.893333pt;}
.ws1a2{word-spacing:3.925333pt;}
.ws51{word-spacing:3.946667pt;}
.ws83{word-spacing:4.000000pt;}
.ws124{word-spacing:4.053333pt;}
.ws10b{word-spacing:4.080000pt;}
.ws1c6{word-spacing:4.096000pt;}
.ws129{word-spacing:4.106667pt;}
.ws156{word-spacing:4.128000pt;}
.ws138{word-spacing:4.160000pt;}
.ws1a6{word-spacing:4.181333pt;}
.ws27{word-spacing:4.213333pt;}
.ws1a4{word-spacing:4.224000pt;}
.ws107{word-spacing:4.266667pt;}
.ws1b8{word-spacing:4.309333pt;}
.ws25{word-spacing:4.320000pt;}
.ws3d{word-spacing:4.373333pt;}
.ws161{word-spacing:4.394667pt;}
.ws10a{word-spacing:4.416000pt;}
.ws39{word-spacing:4.426667pt;}
.ws177{word-spacing:4.565333pt;}
.ws13f{word-spacing:4.586667pt;}
.ws128{word-spacing:4.640000pt;}
.ws191{word-spacing:4.650667pt;}
.ws17a{word-spacing:4.693333pt;}
.ws144{word-spacing:4.746667pt;}
.ws1b5{word-spacing:4.778667pt;}
.ws47{word-spacing:4.800000pt;}
.ws1c3{word-spacing:4.821333pt;}
.ws86{word-spacing:4.853333pt;}
.ws7f{word-spacing:4.906667pt;}
.ws105{word-spacing:4.960000pt;}
.ws85{word-spacing:5.013333pt;}
.ws1be{word-spacing:5.034667pt;}
.ws96{word-spacing:5.056000pt;}
.ws127{word-spacing:5.066667pt;}
.ws62{word-spacing:5.120000pt;}
.ws1a7{word-spacing:5.162667pt;}
.ws21{word-spacing:5.173333pt;}
.ws17f{word-spacing:5.205333pt;}
.ws20{word-spacing:5.226667pt;}
.ws18f{word-spacing:5.248000pt;}
.ws143{word-spacing:5.280000pt;}
.ws15c{word-spacing:5.290667pt;}
.ws38{word-spacing:5.333333pt;}
.ws15f{word-spacing:5.376000pt;}
.ws16e{word-spacing:5.418667pt;}
.ws175{word-spacing:5.461333pt;}
.ws152{word-spacing:5.472000pt;}
.ws142{word-spacing:5.493333pt;}
.ws17e{word-spacing:5.504000pt;}
.ws87{word-spacing:5.546667pt;}
.ws173{word-spacing:5.589333pt;}
.ws50{word-spacing:5.600000pt;}
.ws2b{word-spacing:5.653333pt;}
.ws4f{word-spacing:5.706667pt;}
.ws190{word-spacing:5.717333pt;}
.ws14e{word-spacing:5.760000pt;}
.ws1aa{word-spacing:5.802667pt;}
.ws108{word-spacing:5.813333pt;}
.ws187{word-spacing:5.888000pt;}
.ws1c8{word-spacing:5.930667pt;}
.ws10c{word-spacing:5.973333pt;}
.ws55{word-spacing:6.026667pt;}
.ws122{word-spacing:6.080000pt;}
.ws48{word-spacing:6.133333pt;}
.ws42{word-spacing:6.186667pt;}
.ws112{word-spacing:6.240000pt;}
.ws7a{word-spacing:6.346667pt;}
.ws1d{word-spacing:6.400000pt;}
.wsa3{word-spacing:6.453333pt;}
.wsca{word-spacing:6.506667pt;}
.ws1b2{word-spacing:6.570667pt;}
.ws34{word-spacing:6.613333pt;}
.ws178{word-spacing:6.656000pt;}
.ws5f{word-spacing:6.666667pt;}
.ws16b{word-spacing:6.698667pt;}
.ws131{word-spacing:6.826667pt;}
.ws181{word-spacing:6.869333pt;}
.ws7c{word-spacing:6.880000pt;}
.ws125{word-spacing:6.933333pt;}
.ws2d{word-spacing:6.986667pt;}
.ws11c{word-spacing:7.040000pt;}
.ws11a{word-spacing:7.093333pt;}
.ws166{word-spacing:7.125333pt;}
.ws90{word-spacing:7.146667pt;}
.ws4d{word-spacing:7.200000pt;}
.ws5c{word-spacing:7.306667pt;}
.wsc4{word-spacing:7.360000pt;}
.ws12d{word-spacing:7.413333pt;}
.ws1a3{word-spacing:7.424000pt;}
.ws26{word-spacing:7.466667pt;}
.ws19{word-spacing:7.573333pt;}
.wsc9{word-spacing:7.626667pt;}
.ws4e{word-spacing:7.680000pt;}
.ws1b1{word-spacing:7.722667pt;}
.ws1b{word-spacing:7.786667pt;}
.ws140{word-spacing:7.840000pt;}
.ws30{word-spacing:7.893333pt;}
.ws36{word-spacing:7.946667pt;}
.ws182{word-spacing:7.978667pt;}
.ws11f{word-spacing:8.053333pt;}
.ws14c{word-spacing:8.208000pt;}
.ws32{word-spacing:8.320000pt;}
.ws121{word-spacing:8.586667pt;}
.ws9b{word-spacing:8.640000pt;}
.ws133{word-spacing:8.746667pt;}
.ws94{word-spacing:8.800000pt;}
.ws41{word-spacing:8.853333pt;}
.ws10d{word-spacing:9.120000pt;}
.ws172{word-spacing:9.429333pt;}
.ws43{word-spacing:9.546667pt;}
.ws180{word-spacing:9.941333pt;}
.ws195{word-spacing:9.984000pt;}
.ws145{word-spacing:10.026667pt;}
.ws14f{word-spacing:10.032000pt;}
.ws146{word-spacing:10.133333pt;}
.ws1ab{word-spacing:10.282667pt;}
.ws37{word-spacing:10.293333pt;}
.wsa6{word-spacing:10.453333pt;}
.ws7e{word-spacing:10.613333pt;}
.wsa4{word-spacing:10.880000pt;}
.ws15d{word-spacing:10.922667pt;}
.ws194{word-spacing:10.965333pt;}
.ws24{word-spacing:11.040000pt;}
.ws5d{word-spacing:11.200000pt;}
.ws168{word-spacing:11.306667pt;}
.ws63{word-spacing:11.466667pt;}
.ws117{word-spacing:11.626667pt;}
.ws15e{word-spacing:11.733333pt;}
.ws134{word-spacing:11.840000pt;}
.ws82{word-spacing:11.893333pt;}
.ws9d{word-spacing:12.000000pt;}
.ws171{word-spacing:12.032000pt;}
.ws135{word-spacing:12.053333pt;}
.wsbd{word-spacing:12.106667pt;}
.ws1b0{word-spacing:12.202667pt;}
.ws13c{word-spacing:12.426667pt;}
.ws23{word-spacing:12.586667pt;}
.ws19c{word-spacing:12.629333pt;}
.ws147{word-spacing:12.853333pt;}
.ws148{word-spacing:12.960000pt;}
.ws35{word-spacing:13.440000pt;}
.ws114{word-spacing:13.600000pt;}
.ws111{word-spacing:13.760000pt;}
.ws33{word-spacing:14.240000pt;}
.ws119{word-spacing:14.453333pt;}
.ws44{word-spacing:15.200000pt;}
.ws14a{word-spacing:15.573333pt;}
.ws9e{word-spacing:15.626667pt;}
.ws132{word-spacing:16.160000pt;}
.ws120{word-spacing:16.426667pt;}
.ws13a{word-spacing:16.586667pt;}
.wsda{word-spacing:16.707200pt;}
.ws137{word-spacing:17.546667pt;}
.ws8f{word-spacing:17.920000pt;}
.ws14d{word-spacing:18.720000pt;}
.ws110{word-spacing:18.826667pt;}
.ws9c{word-spacing:19.253333pt;}
.wse6{word-spacing:26.773867pt;}
.ws13b{word-spacing:26.826667pt;}
.ws149{word-spacing:33.600000pt;}
.wsd4{word-spacing:35.860800pt;}
.wsd7{word-spacing:37.187200pt;}
.wse9{word-spacing:37.924261pt;}
.wse8{word-spacing:43.762667pt;}
.wsd2{word-spacing:46.100800pt;}
.ws6f{word-spacing:48.545067pt;}
.wse1{word-spacing:54.002667pt;}
.ws78{word-spacing:61.576000pt;}
.wsde{word-spacing:62.831467pt;}
.wsdd{word-spacing:64.242667pt;}
.ws6b{word-spacing:64.310400pt;}
.ws69{word-spacing:65.569067pt;}
.wsd6{word-spacing:67.370133pt;}
.ws75{word-spacing:72.051733pt;}
.wsd3{word-spacing:77.610133pt;}
.ws6a{word-spacing:77.686400pt;}
.wsfd{word-spacing:83.426133pt;}
.wse3{word-spacing:85.511467pt;}
.wsf8{word-spacing:86.861333pt;}
.ws79{word-spacing:87.857067pt;}
.wsd1{word-spacing:88.055467pt;}
.ws6c{word-spacing:90.635200pt;}
.wsdc{word-spacing:95.751467pt;}
.ws6d{word-spacing:99.609600pt;}
.ws76{word-spacing:108.017600pt;}
.wsfc{word-spacing:108.770667pt;}
.ws73{word-spacing:111.559467pt;}
.ws72{word-spacing:116.722133pt;}
.ws77{word-spacing:124.040000pt;}
.wsff{word-spacing:128.780267pt;}
.ws102{word-spacing:129.001067pt;}
.ws6e{word-spacing:134.095467pt;}
.wsb0{word-spacing:137.785600pt;}
.wsf9{word-spacing:138.572267pt;}
.ws70{word-spacing:140.750933pt;}
.wse0{word-spacing:149.828800pt;}
.wsfe{word-spacing:160.759467pt;}
.wsae{word-spacing:165.016533pt;}
.wse5{word-spacing:168.811200pt;}
.ws101{word-spacing:175.878933pt;}
.wse2{word-spacing:191.680533pt;}
.wsac{word-spacing:194.309333pt;}
.wsaf{word-spacing:195.736000pt;}
.ws103{word-spacing:212.585067pt;}
.wse4{word-spacing:213.227200pt;}
.wsb4{word-spacing:214.605333pt;}
.wsb7{word-spacing:224.845333pt;}
.wsba{word-spacing:229.710400pt;}
.wse7{word-spacing:235.029867pt;}
.wsad{word-spacing:239.918933pt;}
.wsb5{word-spacing:239.949867pt;}
.wsb2{word-spacing:239.950400pt;}
.wsb9{word-spacing:240.674667pt;}
.wsbb{word-spacing:240.675200pt;}
.wsb6{word-spacing:250.189867pt;}
.wsb3{word-spacing:250.190400pt;}
.wsb1{word-spacing:251.470400pt;}
.wsb8{word-spacing:260.430400pt;}
.ws100{word-spacing:386.050667pt;}
.wsfb{word-spacing:449.297600pt;}
.wsd8{word-spacing:554.322667pt;}
.wsd5{word-spacing:577.192000pt;}
.wsd9{word-spacing:620.541333pt;}
._a{margin-left:-2509.726400pt;}
._d{margin-left:-40.212800pt;}
._1c{margin-left:-7.730667pt;}
._4{margin-left:-6.696000pt;}
._5{margin-left:-5.703467pt;}
._1{margin-left:-4.379200pt;}
._9{margin-left:-2.683200pt;}
._0{margin-left:-1.512000pt;}
._3{width:0.952000pt;}
._2{width:2.116800pt;}
._15{width:4.010667pt;}
._11{width:5.205333pt;}
._c{width:10.605867pt;}
._8{width:14.079467pt;}
._7{width:15.061333pt;}
._6{width:19.840000pt;}
._48{width:28.829867pt;}
._e{width:32.739200pt;}
._45{width:35.306667pt;}
._76{width:37.941333pt;}
._2d{width:39.200000pt;}
._67{width:41.034667pt;}
._5e{width:42.295467pt;}
._38{width:47.757333pt;}
._3e{width:55.786133pt;}
._3a{width:57.997333pt;}
._55{width:60.537067pt;}
._32{width:68.237333pt;}
._58{width:69.191376pt;}
._f{width:71.436267pt;}
._2f{width:79.046933pt;}
._52{width:81.017067pt;}
._59{width:81.969813pt;}
._10{width:84.150400pt;}
._2e{width:87.857067pt;}
._53{width:91.256533pt;}
._69{width:92.554133pt;}
._65{width:95.394667pt;}
._4c{width:101.496533pt;}
._64{width:103.821867pt;}
._35{width:104.738667pt;}
._18{width:106.845867pt;}
._17{width:108.381867pt;}
._44{width:109.336533pt;}
._43{width:110.733333pt;}
._57{width:114.206400pt;}
._14{width:115.187200pt;}
._3f{width:119.013333pt;}
._37{width:120.138667pt;}
._3b{width:121.146133pt;}
._56{width:125.544533pt;}
._31{width:130.139200pt;}
._41{width:131.528000pt;}
._54{width:134.826133pt;}
._24{width:136.744533pt;}
._40{width:137.768000pt;}
._16{width:139.237867pt;}
._1b{width:143.965333pt;}
._50{width:144.926400pt;}
._1f{width:145.884800pt;}
._19{width:149.381867pt;}
._1a{width:154.205333pt;}
._4e{width:155.166400pt;}
._4f{width:156.265067pt;}
._62{width:158.388267pt;}
._13{width:160.909333pt;}
._49{width:163.961067pt;}
._12{width:165.426667pt;}
._4d{width:166.505067pt;}
._73{width:167.538667pt;}
._66{width:170.444800pt;}
._63{width:176.055467pt;}
._75{width:178.043200pt;}
._2c{width:179.956267pt;}
._21{width:184.941333pt;}
._1d{width:188.523733pt;}
._6a{width:190.732267pt;}
._23{width:195.181333pt;}
._74{width:196.560000pt;}
._6c{width:200.480533pt;}
._51{width:207.358933pt;}
._1e{width:208.920000pt;}
._61{width:211.170133pt;}
._20{width:213.913067pt;}
._4b{width:217.629867pt;}
._60{width:221.093867pt;}
._68{width:221.983467pt;}
._6f{width:227.227200pt;}
._4a{width:228.969067pt;}
._22{width:230.425067pt;}
._25{width:233.402133pt;}
._28{width:243.785600pt;}
._26{width:245.508267pt;}
._34{width:247.416000pt;}
._70{width:250.746667pt;}
._39{width:253.269867pt;}
._47{width:262.358933pt;}
._46{width:266.865067pt;}
._2a{width:270.115733pt;}
._27{width:274.028800pt;}
._29{width:274.979200pt;}
._2b{width:285.219733pt;}
._5d{width:291.584533pt;}
._72{width:294.974933pt;}
._71{width:305.214400pt;}
._30{width:309.093333pt;}
._5c{width:337.306133pt;}
._33{width:359.525333pt;}
._6d{width:367.400533pt;}
._3d{width:384.570667pt;}
._5f{width:395.880533pt;}
._6b{width:396.944000pt;}
._5a{width:410.059200pt;}
._42{width:430.888000pt;}
._6e{width:459.657600pt;}
._5b{width:489.638933pt;}
._3c{width:509.493333pt;}
._36{width:580.504533pt;}
._b{width:2105.898667pt;}
.fsa{font-size:31.093333pt;}
.fs6{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fsb{font-size:37.745600pt;}
.fs7{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fse{font-size:42.949333pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:52.684267pt;}
.fs9{font-size:53.333333pt;}
.fsd{font-size:57.265600pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:67.001067pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y13c{bottom:-12.854800pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:0.175848pt;}
.y146{bottom:3.641600pt;}
.y21{bottom:57.477067pt;}
.y20{bottom:68.677067pt;}
.y1f{bottom:79.877067pt;}
.y138{bottom:93.084533pt;}
.y1a1{bottom:95.349067pt;}
.y16a{bottom:95.370000pt;}
.yd2{bottom:95.965467pt;}
.y15e{bottom:99.255333pt;}
.y1dc{bottom:99.836000pt;}
.y1a0{bottom:111.349067pt;}
.y5e{bottom:111.370000pt;}
.y9a{bottom:111.370133pt;}
.y139{bottom:112.013333pt;}
.y15d{bottom:113.813067pt;}
.y1db{bottom:115.836000pt;}
.y14e{bottom:126.237200pt;}
.y19f{bottom:127.349067pt;}
.y5d{bottom:127.370000pt;}
.y99{bottom:127.370133pt;}
.y15c{bottom:128.370800pt;}
.yd3{bottom:130.848667pt;}
.ye1{bottom:131.386541pt;}
.y1da{bottom:131.836000pt;}
.y15b{bottom:142.928400pt;}
.y19e{bottom:143.349067pt;}
.y5c{bottom:143.370000pt;}
.y98{bottom:143.370133pt;}
.y171{bottom:145.548267pt;}
.y1d9{bottom:147.836000pt;}
.yd4{bottom:148.390934pt;}
.ye2{bottom:148.928809pt;}
.y13d{bottom:150.019067pt;}
.y15a{bottom:157.486133pt;}
.y19d{bottom:159.349067pt;}
.y5b{bottom:159.370000pt;}
.y97{bottom:159.370133pt;}
.y1d8{bottom:163.836000pt;}
.yd5{bottom:165.933202pt;}
.ye3{bottom:166.471077pt;}
.y13e{bottom:171.257512pt;}
.y159{bottom:172.043867pt;}
.y19c{bottom:175.349067pt;}
.y5a{bottom:175.370000pt;}
.y96{bottom:175.370133pt;}
.y62{bottom:178.246667pt;}
.y1d7{bottom:179.836000pt;}
.yd6{bottom:183.475469pt;}
.ye4{bottom:184.013344pt;}
.y13f{bottom:185.817336pt;}
.y158{bottom:186.601600pt;}
.y19b{bottom:191.349067pt;}
.y59{bottom:191.370000pt;}
.y95{bottom:191.370133pt;}
.yef{bottom:192.614133pt;}
.y170{bottom:193.548267pt;}
.y1d6{bottom:195.836000pt;}
.yb9{bottom:196.593733pt;}
.y140{bottom:200.377160pt;}
.yd7{bottom:201.017737pt;}
.y157{bottom:201.159200pt;}
.ye5{bottom:201.555612pt;}
.y19a{bottom:207.349067pt;}
.y58{bottom:207.370000pt;}
.y94{bottom:207.370133pt;}
.yb8{bottom:211.151467pt;}
.y1d5{bottom:211.836000pt;}
.y141{bottom:214.936984pt;}
.y156{bottom:215.716933pt;}
.yd8{bottom:218.560005pt;}
.ye6{bottom:219.097879pt;}
.y199{bottom:223.349067pt;}
.y57{bottom:223.370000pt;}
.yb7{bottom:225.709200pt;}
.y1e{bottom:226.927067pt;}
.y1d4{bottom:227.836000pt;}
.y142{bottom:229.496808pt;}
.y155{bottom:230.274667pt;}
.yd9{bottom:236.102272pt;}
.y93{bottom:236.472533pt;}
.ye7{bottom:236.640147pt;}
.y198{bottom:239.349067pt;}
.y56{bottom:239.370000pt;}
.yb6{bottom:240.266933pt;}
.y1d3{bottom:243.836000pt;}
.y143{bottom:244.056632pt;}
.y154{bottom:244.832400pt;}
.y1d{bottom:250.486133pt;}
.y92{bottom:252.472533pt;}
.yda{bottom:253.644540pt;}
.ye8{bottom:254.182415pt;}
.yb5{bottom:254.824667pt;}
.y197{bottom:255.349067pt;}
.y55{bottom:255.370000pt;}
.y144{bottom:258.616456pt;}
.y153{bottom:259.390133pt;}
.y1d2{bottom:259.836000pt;}
.yb4{bottom:269.382267pt;}
.y145{bottom:269.524000pt;}
.ydb{bottom:271.186807pt;}
.y196{bottom:271.349067pt;}
.y54{bottom:271.370000pt;}
.ye9{bottom:271.724682pt;}
.y152{bottom:273.947867pt;}
.y1d1{bottom:275.836000pt;}
.y151{bottom:287.281200pt;}
.y195{bottom:287.349067pt;}
.y53{bottom:287.370000pt;}
.y91{bottom:287.370133pt;}
.y147{bottom:287.723867pt;}
.ydc{bottom:288.729075pt;}
.yea{bottom:289.266950pt;}
.y61{bottom:290.246667pt;}
.y1d0{bottom:291.836000pt;}
.yb3{bottom:292.630267pt;}
.y150{bottom:301.838800pt;}
.y148{bottom:302.283691pt;}
.y194{bottom:303.349067pt;}
.y52{bottom:303.370000pt;}
.y90{bottom:303.370133pt;}
.y1c{bottom:304.281333pt;}
.y13a{bottom:306.258267pt;}
.ydd{bottom:306.271343pt;}
.yeb{bottom:306.809217pt;}
.y1cf{bottom:307.836000pt;}
.yb2{bottom:308.630267pt;}
.y149{bottom:316.843515pt;}
.y193{bottom:319.349067pt;}
.y51{bottom:319.370000pt;}
.y8f{bottom:319.370133pt;}
.y1b{bottom:320.281333pt;}
.yde{bottom:323.813610pt;}
.y1ce{bottom:323.836000pt;}
.yec{bottom:324.351485pt;}
.y14f{bottom:325.086800pt;}
.y14a{bottom:331.403339pt;}
.y192{bottom:335.349067pt;}
.y50{bottom:335.370000pt;}
.y8e{bottom:335.370133pt;}
.y1cd{bottom:339.836000pt;}
.ydf{bottom:341.355878pt;}
.yed{bottom:341.893753pt;}
.y1a{bottom:343.840400pt;}
.y14b{bottom:345.963163pt;}
.y191{bottom:351.349067pt;}
.y4f{bottom:351.370000pt;}
.y8d{bottom:351.370133pt;}
.y166{bottom:354.553600pt;}
.y1cc{bottom:355.836000pt;}
.ye0{bottom:358.898145pt;}
.yee{bottom:359.436020pt;}
.y19{bottom:359.840400pt;}
.y14c{bottom:360.522987pt;}
.y190{bottom:367.349067pt;}
.y4e{bottom:367.370000pt;}
.y8c{bottom:367.370133pt;}
.y165{bottom:369.111333pt;}
.y1cb{bottom:371.836000pt;}
.y18{bottom:375.840400pt;}
.y18f{bottom:383.349067pt;}
.y4d{bottom:383.370000pt;}
.y8b{bottom:383.370133pt;}
.y164{bottom:383.669067pt;}
.y1ca{bottom:387.836000pt;}
.y14d{bottom:390.224133pt;}
.y17{bottom:391.840400pt;}
.y163{bottom:398.226667pt;}
.yb1{bottom:398.899467pt;}
.y18e{bottom:399.349067pt;}
.y4c{bottom:399.370000pt;}
.y8a{bottom:399.370133pt;}
.y1c9{bottom:403.836000pt;}
.y16{bottom:407.840400pt;}
.y162{bottom:412.784400pt;}
.yb0{bottom:413.457067pt;}
.y18d{bottom:415.349067pt;}
.y4b{bottom:415.370000pt;}
.y89{bottom:415.370133pt;}
.y1c8{bottom:419.836000pt;}
.y161{bottom:427.342133pt;}
.yaf{bottom:428.014800pt;}
.y18c{bottom:431.349067pt;}
.y4a{bottom:431.370000pt;}
.y88{bottom:431.370133pt;}
.y15{bottom:431.399467pt;}
.y16f{bottom:433.548267pt;}
.y1c7{bottom:435.836000pt;}
.y137{bottom:436.048800pt;}
.y18b{bottom:447.349067pt;}
.y49{bottom:447.370000pt;}
.y87{bottom:447.370133pt;}
.y14{bottom:447.399467pt;}
.y160{bottom:450.590133pt;}
.y136{bottom:450.606533pt;}
.yae{bottom:451.262800pt;}
.y1c6{bottom:451.836000pt;}
.y18a{bottom:463.349067pt;}
.y48{bottom:463.370000pt;}
.y86{bottom:463.370133pt;}
.y135{bottom:465.164267pt;}
.yad{bottom:467.262800pt;}
.y1c5{bottom:467.836000pt;}
.y13{bottom:470.958533pt;}
.y189{bottom:479.349067pt;}
.y47{bottom:479.370000pt;}
.y85{bottom:479.370133pt;}
.y134{bottom:479.722000pt;}
.y1c4{bottom:483.836000pt;}
.y16e{bottom:486.908133pt;}
.y168{bottom:488.135867pt;}
.y133{bottom:494.279600pt;}
.y12{bottom:494.517600pt;}
.y188{bottom:495.349067pt;}
.y46{bottom:495.370000pt;}
.y84{bottom:495.370133pt;}
.y1c3{bottom:499.836000pt;}
.y167{bottom:504.135867pt;}
.y132{bottom:508.837333pt;}
.y187{bottom:511.349067pt;}
.y45{bottom:511.370000pt;}
.y83{bottom:511.370133pt;}
.y16d{bottom:514.246667pt;}
.y1c2{bottom:515.836000pt;}
.y131{bottom:523.395067pt;}
.y130{bottom:524.619467pt;}
.y186{bottom:527.349067pt;}
.y44{bottom:527.370000pt;}
.y82{bottom:527.370133pt;}
.yd1{bottom:528.591467pt;}
.y1c1{bottom:531.836000pt;}
.y12f{bottom:537.952800pt;}
.yd0{bottom:543.149200pt;}
.y185{bottom:543.349067pt;}
.y43{bottom:543.370000pt;}
.y81{bottom:543.370133pt;}
.y11{bottom:544.533333pt;}
.y1c0{bottom:547.836000pt;}
.y10d{bottom:551.407067pt;}
.y12e{bottom:552.510533pt;}
.y12d{bottom:553.734800pt;}
.ycf{bottom:557.706933pt;}
.y184{bottom:559.349067pt;}
.y42{bottom:559.370000pt;}
.y80{bottom:559.370133pt;}
.y10{bottom:560.533333pt;}
.y1bf{bottom:563.836000pt;}
.y10c{bottom:565.964800pt;}
.y12c{bottom:567.068133pt;}
.yce{bottom:572.264533pt;}
.y183{bottom:575.349067pt;}
.y41{bottom:575.370000pt;}
.y7f{bottom:575.370133pt;}
.yf{bottom:576.533333pt;}
.yac{bottom:578.246667pt;}
.y1be{bottom:579.836000pt;}
.y10b{bottom:580.522533pt;}
.y12b{bottom:581.625867pt;}
.y12a{bottom:582.850267pt;}
.ycd{bottom:586.822267pt;}
.y182{bottom:591.349067pt;}
.y40{bottom:591.370000pt;}
.y7e{bottom:591.370133pt;}
.y10a{bottom:595.080267pt;}
.y1bd{bottom:595.836000pt;}
.y129{bottom:596.183600pt;}
.ycc{bottom:601.380000pt;}
.y181{bottom:607.349067pt;}
.y3f{bottom:607.370000pt;}
.y7d{bottom:607.370133pt;}
.ye{bottom:607.651467pt;}
.y109{bottom:609.637867pt;}
.y128{bottom:610.741333pt;}
.y1bc{bottom:611.836000pt;}
.y127{bottom:611.965733pt;}
.ycb{bottom:615.937733pt;}
.y180{bottom:623.349067pt;}
.y3e{bottom:623.370000pt;}
.y7c{bottom:623.370133pt;}
.y108{bottom:624.195600pt;}
.y126{bottom:625.299067pt;}
.y16c{bottom:626.246667pt;}
.y1bb{bottom:627.836000pt;}
.yca{bottom:630.495467pt;}
.y107{bottom:638.753333pt;}
.y17f{bottom:639.349067pt;}
.y3d{bottom:639.370000pt;}
.y7b{bottom:639.370133pt;}
.y125{bottom:639.856667pt;}
.y1ba{bottom:643.836000pt;}
.yc9{bottom:645.053200pt;}
.yd{bottom:650.108133pt;}
.y106{bottom:653.311067pt;}
.y124{bottom:654.414533pt;}
.y17e{bottom:655.349067pt;}
.y3c{bottom:655.370000pt;}
.y7a{bottom:655.370133pt;}
.yc8{bottom:659.610800pt;}
.y1b9{bottom:659.836000pt;}
.y105{bottom:667.868800pt;}
.y123{bottom:668.972133pt;}
.y17d{bottom:671.349067pt;}
.y3b{bottom:671.370000pt;}
.y79{bottom:671.370133pt;}
.yc{bottom:673.667200pt;}
.yc7{bottom:674.168533pt;}
.y1b8{bottom:675.836000pt;}
.y104{bottom:682.426400pt;}
.y122{bottom:683.529867pt;}
.y17c{bottom:687.349067pt;}
.y3a{bottom:687.370000pt;}
.y78{bottom:687.370133pt;}
.yab{bottom:688.252000pt;}
.yc6{bottom:688.726267pt;}
.yb{bottom:689.667200pt;}
.y1b7{bottom:691.836000pt;}
.y103{bottom:696.984133pt;}
.y121{bottom:698.087600pt;}
.y120{bottom:699.311867pt;}
.yc5{bottom:703.284000pt;}
.y17b{bottom:703.349067pt;}
.y39{bottom:703.370000pt;}
.y77{bottom:703.370133pt;}
.yaa{bottom:704.252000pt;}
.ya{bottom:705.667200pt;}
.y1b6{bottom:707.836000pt;}
.y102{bottom:711.541867pt;}
.y11f{bottom:712.645200pt;}
.yc4{bottom:717.841600pt;}
.y17a{bottom:719.349067pt;}
.y38{bottom:719.370000pt;}
.y76{bottom:719.370133pt;}
.ya9{bottom:720.252000pt;}
.y9{bottom:721.667200pt;}
.y1b5{bottom:723.836000pt;}
.y101{bottom:726.099467pt;}
.y11e{bottom:727.202933pt;}
.y179{bottom:735.349067pt;}
.y37{bottom:735.370000pt;}
.y75{bottom:735.370133pt;}
.ya8{bottom:736.252000pt;}
.y8{bottom:737.667200pt;}
.y15f{bottom:739.124533pt;}
.y1b4{bottom:739.836000pt;}
.y100{bottom:740.657200pt;}
.yc3{bottom:741.089733pt;}
.y11d{bottom:741.760667pt;}
.y178{bottom:751.349067pt;}
.y36{bottom:751.370000pt;}
.y74{bottom:751.370133pt;}
.ya7{bottom:752.252000pt;}
.y7{bottom:753.667200pt;}
.yff{bottom:755.215067pt;}
.y1b3{bottom:755.836000pt;}
.y11c{bottom:756.318400pt;}
.y11b{bottom:757.542800pt;}
.y177{bottom:767.349067pt;}
.y35{bottom:767.370000pt;}
.y73{bottom:767.370133pt;}
.ya6{bottom:768.252000pt;}
.y6{bottom:769.667200pt;}
.yfe{bottom:769.772667pt;}
.y11a{bottom:770.876133pt;}
.y1b2{bottom:771.836000pt;}
.y176{bottom:783.349067pt;}
.y34{bottom:783.370000pt;}
.y72{bottom:783.370133pt;}
.ya5{bottom:784.252000pt;}
.yfd{bottom:784.330400pt;}
.y119{bottom:785.433867pt;}
.y16b{bottom:786.246667pt;}
.y118{bottom:786.658267pt;}
.y1b1{bottom:787.836000pt;}
.y5{bottom:793.226267pt;}
.yfc{bottom:798.888133pt;}
.y33{bottom:799.370000pt;}
.y71{bottom:799.370133pt;}
.y117{bottom:799.991600pt;}
.ya4{bottom:800.252000pt;}
.y1b0{bottom:803.836000pt;}
.y175{bottom:810.687600pt;}
.y4{bottom:812.426400pt;}
.yfb{bottom:813.445867pt;}
.y116{bottom:814.549200pt;}
.y32{bottom:815.370000pt;}
.y70{bottom:815.370133pt;}
.ya3{bottom:816.252000pt;}
.y1af{bottom:819.836000pt;}
.yfa{bottom:828.003467pt;}
.y115{bottom:829.106933pt;}
.y31{bottom:831.370000pt;}
.y6f{bottom:831.370133pt;}
.ya2{bottom:832.252000pt;}
.y1ae{bottom:835.836000pt;}
.yf9{bottom:842.561200pt;}
.y114{bottom:843.664667pt;}
.y113{bottom:844.888933pt;}
.y30{bottom:847.370000pt;}
.y6e{bottom:847.370133pt;}
.y3{bottom:847.625067pt;}
.ya1{bottom:848.252000pt;}
.y1ad{bottom:851.836000pt;}
.yf8{bottom:857.118933pt;}
.y112{bottom:858.222267pt;}
.y2f{bottom:863.370000pt;}
.y6d{bottom:863.370133pt;}
.ya0{bottom:864.252000pt;}
.y1ac{bottom:867.836000pt;}
.yf7{bottom:871.676533pt;}
.y111{bottom:872.780000pt;}
.y110{bottom:874.004400pt;}
.y2e{bottom:879.370000pt;}
.y6c{bottom:879.370133pt;}
.y9f{bottom:880.252000pt;}
.y2{bottom:881.225067pt;}
.y1ab{bottom:883.836000pt;}
.yf6{bottom:886.234400pt;}
.y10f{bottom:887.337733pt;}
.y2d{bottom:895.370000pt;}
.y6b{bottom:895.370133pt;}
.y9e{bottom:896.252000pt;}
.y169{bottom:898.246667pt;}
.y1aa{bottom:899.836000pt;}
.yf5{bottom:900.792133pt;}
.yc2{bottom:900.958800pt;}
.y10e{bottom:910.585733pt;}
.y2c{bottom:911.370000pt;}
.y6a{bottom:911.370133pt;}
.y9d{bottom:912.252000pt;}
.y1{bottom:914.825067pt;}
.yf4{bottom:915.349733pt;}
.yc1{bottom:915.516400pt;}
.y1a9{bottom:915.836000pt;}
.y2b{bottom:927.370000pt;}
.y69{bottom:927.370133pt;}
.y9c{bottom:928.252000pt;}
.y174{bottom:929.548267pt;}
.yf3{bottom:929.907467pt;}
.yc0{bottom:930.074133pt;}
.y1a8{bottom:931.836000pt;}
.y2a{bottom:943.370000pt;}
.y68{bottom:943.370133pt;}
.yf2{bottom:944.465200pt;}
.ybf{bottom:944.631867pt;}
.y173{bottom:945.548267pt;}
.y1a7{bottom:947.836000pt;}
.yf1{bottom:959.022933pt;}
.ybe{bottom:959.189600pt;}
.y29{bottom:959.370000pt;}
.y67{bottom:959.370133pt;}
.y1a6{bottom:963.836000pt;}
.yf0{bottom:973.580533pt;}
.ybd{bottom:973.747200pt;}
.y28{bottom:975.370000pt;}
.y66{bottom:975.370133pt;}
.y1a5{bottom:979.836000pt;}
.ybc{bottom:988.304933pt;}
.y27{bottom:991.370000pt;}
.y65{bottom:991.370133pt;}
.y1a4{bottom:995.836000pt;}
.y24{bottom:1001.533333pt;}
.ybb{bottom:1002.862667pt;}
.y60{bottom:1007.370000pt;}
.y64{bottom:1007.370133pt;}
.y1a3{bottom:1011.836000pt;}
.y26{bottom:1020.843867pt;}
.y9b{bottom:1022.950667pt;}
.y5f{bottom:1023.370000pt;}
.y63{bottom:1023.370133pt;}
.y172{bottom:1025.057333pt;}
.yba{bottom:1026.110667pt;}
.y1a2{bottom:1027.836000pt;}
.y23{bottom:1036.478000pt;}
.y22{bottom:1052.257600pt;}
.y25{bottom:1060.905467pt;}
.h16{height:14.602667pt;}
.ha{height:24.511200pt;}
.h11{height:27.092789pt;}
.hb{height:29.180000pt;}
.hc{height:30.175781pt;}
.h4{height:30.378667pt;}
.h10{height:30.464000pt;}
.h6{height:30.549333pt;}
.h5{height:31.125333pt;}
.h15{height:31.184404pt;}
.h8{height:34.368000pt;}
.h13{height:35.114270pt;}
.h7{height:35.160000pt;}
.h14{height:38.167746pt;}
.he{height:38.186667pt;}
.h18{height:39.066667pt;}
.hf{height:40.022827pt;}
.h9{height:46.880000pt;}
.h17{height:48.091586pt;}
.h3{height:48.530571pt;}
.hd{height:54.693333pt;}
.h2{height:82.040000pt;}
.h12{height:303.109333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:316.249333pt;}
.w2{width:510.620000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:43.624133pt;}
.x1{left:83.149600pt;}
.x19{left:85.417333pt;}
.xc{left:98.267733pt;}
.x4b{left:102.610667pt;}
.x1e{left:106.807467pt;}
.x43{left:111.441867pt;}
.x18{left:113.040533pt;}
.x23{left:120.930000pt;}
.x3{left:129.087067pt;}
.x3b{left:141.538667pt;}
.x40{left:149.981479pt;}
.x45{left:152.466917pt;}
.x46{left:153.433277pt;}
.x54{left:169.970933pt;}
.x20{left:179.995200pt;}
.x1b{left:182.695333pt;}
.x21{left:186.331200pt;}
.x2{left:188.301467pt;}
.x1f{left:192.667067pt;}
.x22{left:195.227200pt;}
.x3e{left:203.346025pt;}
.x1a{left:206.263200pt;}
.x1d{left:210.033733pt;}
.x1c{left:211.431067pt;}
.x3f{left:217.379720pt;}
.xb{left:220.902800pt;}
.x44{left:222.302533pt;}
.x4{left:225.876800pt;}
.x51{left:228.236533pt;}
.x48{left:232.266779pt;}
.x34{left:235.415600pt;}
.x2d{left:247.498560pt;}
.x36{left:262.424667pt;}
.x47{left:268.376431pt;}
.x50{left:271.559067pt;}
.x41{left:273.321227pt;}
.x5{left:274.849200pt;}
.x42{left:277.304777pt;}
.x2b{left:278.978390pt;}
.x2e{left:281.865928pt;}
.x35{left:288.168533pt;}
.x49{left:301.561333pt;}
.x3d{left:304.030000pt;}
.x2a{left:309.939218pt;}
.x4a{left:313.361733pt;}
.x53{left:320.684000pt;}
.x28{left:328.538363pt;}
.xa{left:333.851067pt;}
.x30{left:340.588646pt;}
.x2f{left:349.713644pt;}
.x29{left:357.045727pt;}
.x2c{left:367.831532pt;}
.x52{left:371.440267pt;}
.x31{left:380.646164pt;}
.x32{left:384.515088pt;}
.x33{left:386.289131pt;}
.x6{left:388.774133pt;}
.xd{left:404.850400pt;}
.x12{left:407.118133pt;}
.x4f{left:413.605733pt;}
.x37{left:418.339867pt;}
.xe{left:419.968400pt;}
.xf{left:426.994933pt;}
.x11{left:432.106133pt;}
.x10{left:435.086533pt;}
.x24{left:437.274000pt;}
.x7{left:439.160667pt;}
.x13{left:450.431333pt;}
.x17{left:455.036400pt;}
.x14{left:468.044133pt;}
.x25{left:469.857889pt;}
.x26{left:480.728622pt;}
.x3a{left:487.818133pt;}
.x38{left:489.466133pt;}
.x39{left:501.607600pt;}
.x4c{left:502.854933pt;}
.x16{left:509.998000pt;}
.x9{left:534.411200pt;}
.x4d{left:545.402267pt;}
.x4e{left:548.127600pt;}
.x15{left:551.066800pt;}
.x27{left:611.045306pt;}
.x8{left:618.252533pt;}
}




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