
    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_5af34af6c810bb75725f8530.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977500;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_079b54da42a008c9b1f1e4ae.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_2f6e7000639671d96c7bedf2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939000;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_20ee9b64b43bc345ec1a60d0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_bfd89b948393f7fd3fab6adb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f2ac09e4d9f07396a22ddc5d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_8f226bbe39307e6db663dc38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.977500;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_0ba34a151c0b9127b4bc8165.woff')format("woff");}.ff8{font-family:ff8;line-height:0.931500;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_9976266474b9d141055f5818.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8f226bbe39307e6db663dc38.woff')format("woff");}.ffa{font-family:ffa;line-height:0.977500;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_0ba34a151c0b9127b4bc8165.woff')format("woff");}.ffb{font-family:ffb;line-height:0.931500;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_cfde5cb0bf7363aefc44cc14.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_5a3cc56ebe019308ac21837b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_da24efd21d692ec3729e74e9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.690918;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_ac5fe5578c3438be31e47e96.woff')format("woff");}.fff{font-family:fff;line-height:1.179199;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_14c8f24be2dd34b2b14000ba.woff')format("woff");}.ff10{font-family:ff10;line-height:0.960938;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:ff11;src:url('chunks/assets/font_f49722a66b0a8ffd613e0de0.woff')format("woff");}.ff11{font-family:ff11;line-height:0.971191;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;}
.m4{transform:matrix(-0.000715,-0.256616,0.249999,-0.000734,0,0);-ms-transform:matrix(-0.000715,-0.256616,0.249999,-0.000734,0,0);-webkit-transform:matrix(-0.000715,-0.256616,0.249999,-0.000734,0,0);}
.m5{transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243554,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243556,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243558,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-12.000000px;}
.v5{vertical-align:-10.800000px;}
.v6{vertical-align:-9.624000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.441000px;}
.v2{vertical-align:6.000000px;}
.v1{vertical-align:23.976000px;}
.v7{vertical-align:28.800000px;}
.lsc{letter-spacing:-4.740000px;}
.ls11{letter-spacing:-3.552000px;}
.ls4{letter-spacing:-1.428000px;}
.ls1e{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.810000px;}
.ls18{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.306000px;}
.lsb{letter-spacing:-0.300000px;}
.ls7{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.251688px;}
.lsf{letter-spacing:-0.220227px;}
.ls3{letter-spacing:-0.204000px;}
.ls8{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls25{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.102000px;}
.ls1c{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.540000px;}
.ls23{letter-spacing:1.197000px;}
.ls16{letter-spacing:1.890000px;}
.ls1b{letter-spacing:2.280000px;}
.ls15{letter-spacing:2.538000px;}
.ls14{letter-spacing:2.656800px;}
.ls24{letter-spacing:3.249000px;}
.ls10{letter-spacing:4.914000px;}
.ls12{letter-spacing:14.640000px;}
.ls0{letter-spacing:55.680000px;}
.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;}
}
.ws119{word-spacing:-21.577552px;}
.ws6{word-spacing:-20.748000px;}
.ws5{word-spacing:-20.496000px;}
.ws1{word-spacing:-18.000000px;}
.ws185{word-spacing:-16.992000px;}
.ws140{word-spacing:-15.561000px;}
.ws15a{word-spacing:-15.480000px;}
.ws1d{word-spacing:-15.000000px;}
.ws18f{word-spacing:-14.958000px;}
.ws19a{word-spacing:-14.688000px;}
.ws129{word-spacing:-14.418000px;}
.ws71{word-spacing:-14.364000px;}
.ws23d{word-spacing:-14.250000px;}
.ws23e{word-spacing:-14.136000px;}
.ws1df{word-spacing:-13.824000px;}
.ws176{word-spacing:-13.608000px;}
.ws19e{word-spacing:-13.446000px;}
.ws4{word-spacing:-12.096000px;}
.ws1a7{word-spacing:-12.048000px;}
.ws2{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.952000px;}
.ws115{word-spacing:-11.074272px;}
.ws117{word-spacing:-10.822584px;}
.ws0{word-spacing:-10.494000px;}
.wse9{word-spacing:-10.260000px;}
.ws116{word-spacing:-10.221628px;}
.wsca{word-spacing:-8.745000px;}
.ws1d5{word-spacing:-8.736000px;}
.ws107{word-spacing:-7.870500px;}
.ws10a{word-spacing:-6.996000px;}
.ws1f8{word-spacing:-4.512000px;}
.ws55{word-spacing:-4.440000px;}
.ws1ef{word-spacing:-4.176000px;}
.ws196{word-spacing:-4.020000px;}
.wsc{word-spacing:-3.960000px;}
.ws8c{word-spacing:-3.780000px;}
.ws1d6{word-spacing:-3.744000px;}
.ws1a1{word-spacing:-3.540000px;}
.ws10d{word-spacing:-3.300000px;}
.wsf5{word-spacing:-3.240000px;}
.ws186{word-spacing:-3.180000px;}
.wsfe{word-spacing:-3.000000px;}
.ws21f{word-spacing:-2.976000px;}
.ws21{word-spacing:-2.940000px;}
.ws15c{word-spacing:-2.880000px;}
.ws243{word-spacing:-2.850000px;}
.ws1ee{word-spacing:-2.832000px;}
.ws61{word-spacing:-2.820000px;}
.ws9c{word-spacing:-2.760000px;}
.ws83{word-spacing:-2.700000px;}
.ws95{word-spacing:-2.640000px;}
.ws62{word-spacing:-2.580000px;}
.ws13c{word-spacing:-2.538000px;}
.wsf7{word-spacing:-2.520000px;}
.wsd4{word-spacing:-2.460000px;}
.ws22c{word-spacing:-2.448000px;}
.ws153{word-spacing:-2.430000px;}
.ws18d{word-spacing:-2.400000px;}
.ws170{word-spacing:-2.340000px;}
.ws11{word-spacing:-2.322000px;}
.ws227{word-spacing:-2.304000px;}
.ws75{word-spacing:-2.280000px;}
.ws198{word-spacing:-2.268000px;}
.ws20d{word-spacing:-2.256000px;}
.wsd8{word-spacing:-2.220000px;}
.ws238{word-spacing:-2.208000px;}
.ws77{word-spacing:-2.160000px;}
.ws231{word-spacing:-2.112000px;}
.wse5{word-spacing:-2.100000px;}
.ws21a{word-spacing:-2.064000px;}
.ws89{word-spacing:-2.040000px;}
.ws215{word-spacing:-2.016000px;}
.ws85{word-spacing:-1.980000px;}
.ws1f7{word-spacing:-1.968000px;}
.ws159{word-spacing:-1.920000px;}
.ws1ab{word-spacing:-1.872000px;}
.ws9e{word-spacing:-1.860000px;}
.wsff{word-spacing:-1.800000px;}
.ws130{word-spacing:-1.782000px;}
.ws212{word-spacing:-1.776000px;}
.wsac{word-spacing:-1.740000px;}
.ws13b{word-spacing:-1.728000px;}
.ws1a0{word-spacing:-1.680000px;}
.ws1e0{word-spacing:-1.632000px;}
.ws18{word-spacing:-1.620000px;}
.ws1a9{word-spacing:-1.584000px;}
.wsb5{word-spacing:-1.560000px;}
.wsa5{word-spacing:-1.500000px;}
.ws236{word-spacing:-1.488000px;}
.ws82{word-spacing:-1.440000px;}
.ws37{word-spacing:-1.380000px;}
.ws224{word-spacing:-1.344000px;}
.ws7d{word-spacing:-1.320000px;}
.ws1f6{word-spacing:-1.296000px;}
.ws17e{word-spacing:-1.260000px;}
.ws234{word-spacing:-1.248000px;}
.ws13d{word-spacing:-1.242000px;}
.ws68{word-spacing:-1.200000px;}
.ws20f{word-spacing:-1.152000px;}
.ws6b{word-spacing:-1.140000px;}
.ws13e{word-spacing:-1.134000px;}
.ws1c7{word-spacing:-1.104000px;}
.ws5c{word-spacing:-1.080000px;}
.ws1ff{word-spacing:-1.056000px;}
.ws60{word-spacing:-1.020000px;}
.ws213{word-spacing:-1.008000px;}
.ws10e{word-spacing:-0.960000px;}
.ws1d4{word-spacing:-0.912000px;}
.wsd5{word-spacing:-0.900000px;}
.wsd{word-spacing:-0.864000px;}
.wsb7{word-spacing:-0.840000px;}
.ws64{word-spacing:-0.780000px;}
.ws22d{word-spacing:-0.768000px;}
.ws175{word-spacing:-0.756000px;}
.ws16c{word-spacing:-0.720000px;}
.ws1cd{word-spacing:-0.672000px;}
.ws34{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.648000px;}
.ws21b{word-spacing:-0.624000px;}
.ws32{word-spacing:-0.600000px;}
.ws174{word-spacing:-0.594000px;}
.ws219{word-spacing:-0.576000px;}
.ws23f{word-spacing:-0.570000px;}
.ws30{word-spacing:-0.540000px;}
.wsf3{word-spacing:-0.480000px;}
.ws120{word-spacing:-0.432000px;}
.ws90{word-spacing:-0.420000px;}
.ws1d9{word-spacing:-0.384000px;}
.ws146{word-spacing:-0.360000px;}
.ws1d8{word-spacing:-0.336000px;}
.wsc3{word-spacing:-0.324000px;}
.ws144{word-spacing:-0.315000px;}
.wsd3{word-spacing:-0.300000px;}
.ws1b7{word-spacing:-0.288000px;}
.ws126{word-spacing:-0.270000px;}
.ws7c{word-spacing:-0.240000px;}
.ws23c{word-spacing:-0.192000px;}
.wse6{word-spacing:-0.180000px;}
.ws242{word-spacing:-0.171000px;}
.ws114{word-spacing:-0.162000px;}
.ws210{word-spacing:-0.144000px;}
.ws7b{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.108000px;}
.ws1b6{word-spacing:-0.096000px;}
.ws11b{word-spacing:-0.062922px;}
.ws156{word-spacing:-0.060000px;}
.ws17{word-spacing:-0.054000px;}
.ws1a4{word-spacing:-0.048000px;}
.ws11a{word-spacing:-0.031461px;}
.ws7{word-spacing:0.000000px;}
.ws11d{word-spacing:0.031461px;}
.ws233{word-spacing:0.048000px;}
.ws127{word-spacing:0.054000px;}
.ws2c{word-spacing:0.060000px;}
.ws194{word-spacing:0.072000px;}
.ws20c{word-spacing:0.096000px;}
.wsb{word-spacing:0.102000px;}
.ws12{word-spacing:0.108000px;}
.ws241{word-spacing:0.114000px;}
.ws16f{word-spacing:0.120000px;}
.ws13{word-spacing:0.162000px;}
.ws8b{word-spacing:0.180000px;}
.wse{word-spacing:0.192000px;}
.ws8{word-spacing:0.204000px;}
.ws183{word-spacing:0.216000px;}
.ws11e{word-spacing:0.220227px;}
.wsa4{word-spacing:0.240000px;}
.ws11c{word-spacing:0.251688px;}
.ws1f3{word-spacing:0.288000px;}
.wsb6{word-spacing:0.300000px;}
.wsa{word-spacing:0.306000px;}
.ws11f{word-spacing:0.324000px;}
.ws1c3{word-spacing:0.336000px;}
.ws43{word-spacing:0.360000px;}
.ws201{word-spacing:0.384000px;}
.ws22{word-spacing:0.420000px;}
.ws200{word-spacing:0.432000px;}
.ws3c{word-spacing:0.480000px;}
.ws134{word-spacing:0.486000px;}
.ws1b3{word-spacing:0.528000px;}
.ws1b{word-spacing:0.540000px;}
.ws1b5{word-spacing:0.576000px;}
.ws169{word-spacing:0.660000px;}
.ws20e{word-spacing:0.672000px;}
.ws45{word-spacing:0.720000px;}
.ws133{word-spacing:0.756000px;}
.ws80{word-spacing:0.780000px;}
.ws1de{word-spacing:0.816000px;}
.ws76{word-spacing:0.840000px;}
.ws88{word-spacing:0.900000px;}
.ws1af{word-spacing:0.912000px;}
.ws157{word-spacing:0.960000px;}
.ws226{word-spacing:1.008000px;}
.ws154{word-spacing:1.020000px;}
.wsc2{word-spacing:1.026000px;}
.ws24{word-spacing:1.080000px;}
.ws237{word-spacing:1.104000px;}
.ws59{word-spacing:1.140000px;}
.wsfc{word-spacing:1.200000px;}
.ws112{word-spacing:1.242000px;}
.ws23b{word-spacing:1.248000px;}
.ws38{word-spacing:1.260000px;}
.ws244{word-spacing:1.311000px;}
.ws87{word-spacing:1.320000px;}
.ws1f4{word-spacing:1.344000px;}
.ws19d{word-spacing:1.350000px;}
.ws1f{word-spacing:1.380000px;}
.ws225{word-spacing:1.392000px;}
.wsc6{word-spacing:1.404000px;}
.ws9{word-spacing:1.428000px;}
.ws2f{word-spacing:1.440000px;}
.ws184{word-spacing:1.458000px;}
.ws1ad{word-spacing:1.488000px;}
.ws1c0{word-spacing:1.536000px;}
.ws33{word-spacing:1.560000px;}
.ws199{word-spacing:1.566000px;}
.wse4{word-spacing:1.620000px;}
.ws111{word-spacing:1.674000px;}
.wsf{word-spacing:1.680000px;}
.ws57{word-spacing:1.740000px;}
.ws8e{word-spacing:1.800000px;}
.ws1d2{word-spacing:1.824000px;}
.ws13f{word-spacing:1.836000px;}
.wsbe{word-spacing:1.860000px;}
.ws1f2{word-spacing:1.872000px;}
.ws164{word-spacing:1.890000px;}
.ws5d{word-spacing:1.920000px;}
.wsa8{word-spacing:1.980000px;}
.ws1e4{word-spacing:2.016000px;}
.ws17b{word-spacing:2.040000px;}
.ws173{word-spacing:2.052000px;}
.ws1a8{word-spacing:2.064000px;}
.ws122{word-spacing:2.100000px;}
.ws218{word-spacing:2.112000px;}
.wsbf{word-spacing:2.160000px;}
.ws73{word-spacing:2.220000px;}
.ws12f{word-spacing:2.268000px;}
.wsf4{word-spacing:2.280000px;}
.wsc7{word-spacing:2.322000px;}
.wse0{word-spacing:2.340000px;}
.ws1ed{word-spacing:2.352000px;}
.ws113{word-spacing:2.376000px;}
.ws9d{word-spacing:2.400000px;}
.ws1d7{word-spacing:2.448000px;}
.wsec{word-spacing:2.460000px;}
.ws223{word-spacing:2.496000px;}
.ws240{word-spacing:2.508000px;}
.ws31{word-spacing:2.520000px;}
.ws163{word-spacing:2.538000px;}
.ws81{word-spacing:2.580000px;}
.wscc{word-spacing:2.640000px;}
.ws1e5{word-spacing:2.688000px;}
.ws41{word-spacing:2.700000px;}
.ws124{word-spacing:2.760000px;}
.ws1ce{word-spacing:2.784000px;}
.ws162{word-spacing:2.808000px;}
.ws3b{word-spacing:2.820000px;}
.ws214{word-spacing:2.832000px;}
.wsc5{word-spacing:2.862000px;}
.ws1c{word-spacing:2.872800px;}
.ws9f{word-spacing:2.880000px;}
.ws1ea{word-spacing:2.928000px;}
.ws8d{word-spacing:2.940000px;}
.ws1a{word-spacing:2.970000px;}
.ws1aa{word-spacing:2.976000px;}
.ws3e{word-spacing:3.000000px;}
.ws246{word-spacing:3.021000px;}
.ws1fc{word-spacing:3.024000px;}
.wsb2{word-spacing:3.060000px;}
.ws1e3{word-spacing:3.072000px;}
.wsc9{word-spacing:3.078000px;}
.ws7f{word-spacing:3.120000px;}
.wsf1{word-spacing:3.180000px;}
.ws245{word-spacing:3.192000px;}
.ws1b2{word-spacing:3.216000px;}
.ws58{word-spacing:3.240000px;}
.ws1c8{word-spacing:3.264000px;}
.ws19{word-spacing:3.294000px;}
.ws53{word-spacing:3.300000px;}
.ws1e8{word-spacing:3.312000px;}
.wsf9{word-spacing:3.360000px;}
.wsb9{word-spacing:3.420000px;}
.ws1a2{word-spacing:3.456000px;}
.wsc1{word-spacing:3.480000px;}
.ws230{word-spacing:3.504000px;}
.ws128{word-spacing:3.510000px;}
.wsf2{word-spacing:3.540000px;}
.ws10{word-spacing:3.564000px;}
.ws4e{word-spacing:3.600000px;}
.ws16d{word-spacing:3.618000px;}
.ws1c9{word-spacing:3.648000px;}
.wsda{word-spacing:3.660000px;}
.ws1c1{word-spacing:3.696000px;}
.ws17a{word-spacing:3.720000px;}
.wsc8{word-spacing:3.726000px;}
.ws1e1{word-spacing:3.744000px;}
.ws6e{word-spacing:3.780000px;}
.ws1a3{word-spacing:3.792000px;}
.wscd{word-spacing:3.840000px;}
.ws1fe{word-spacing:3.888000px;}
.ws25{word-spacing:3.900000px;}
.ws1fb{word-spacing:3.936000px;}
.ws69{word-spacing:3.960000px;}
.wsd7{word-spacing:4.020000px;}
.ws1ac{word-spacing:4.032000px;}
.ws67{word-spacing:4.080000px;}
.ws1e6{word-spacing:4.128000px;}
.ws101{word-spacing:4.140000px;}
.ws1c6{word-spacing:4.176000px;}
.ws5b{word-spacing:4.200000px;}
.ws1bf{word-spacing:4.224000px;}
.wsa9{word-spacing:4.260000px;}
.ws1cb{word-spacing:4.272000px;}
.ws56{word-spacing:4.320000px;}
.wsdd{word-spacing:4.380000px;}
.ws1ae{word-spacing:4.416000px;}
.ws92{word-spacing:4.440000px;}
.ws1cc{word-spacing:4.464000px;}
.ws54{word-spacing:4.500000px;}
.ws78{word-spacing:4.560000px;}
.ws1eb{word-spacing:4.608000px;}
.ws99{word-spacing:4.620000px;}
.ws207{word-spacing:4.656000px;}
.ws5e{word-spacing:4.680000px;}
.ws23{word-spacing:4.740000px;}
.ws205{word-spacing:4.752000px;}
.wseb{word-spacing:4.800000px;}
.ws16e{word-spacing:4.806000px;}
.ws235{word-spacing:4.848000px;}
.ws36{word-spacing:4.860000px;}
.ws222{word-spacing:4.896000px;}
.ws132{word-spacing:4.914000px;}
.ws3a{word-spacing:4.920000px;}
.ws1b8{word-spacing:4.944000px;}
.ws40{word-spacing:4.980000px;}
.ws204{word-spacing:4.992000px;}
.ws5a{word-spacing:5.040000px;}
.ws1f5{word-spacing:5.088000px;}
.ws135{word-spacing:5.100000px;}
.ws182{word-spacing:5.130000px;}
.wsa1{word-spacing:5.160000px;}
.ws1f0{word-spacing:5.184000px;}
.ws4d{word-spacing:5.220000px;}
.ws197{word-spacing:5.238000px;}
.ws94{word-spacing:5.280000px;}
.ws1b9{word-spacing:5.328000px;}
.wsea{word-spacing:5.340000px;}
.ws1d0{word-spacing:5.376000px;}
.ws48{word-spacing:5.400000px;}
.ws86{word-spacing:5.460000px;}
.ws1e2{word-spacing:5.472000px;}
.wsb1{word-spacing:5.520000px;}
.wsaa{word-spacing:5.580000px;}
.ws22b{word-spacing:5.616000px;}
.ws2d{word-spacing:5.640000px;}
.ws1e7{word-spacing:5.664000px;}
.ws161{word-spacing:5.700000px;}
.wsd9{word-spacing:5.760000px;}
.wse8{word-spacing:5.820000px;}
.ws1b1{word-spacing:5.856000px;}
.wsb3{word-spacing:5.880000px;}
.ws1f1{word-spacing:5.904000px;}
.ws93{word-spacing:5.940000px;}
.ws7e{word-spacing:6.000000px;}
.ws18a{word-spacing:6.060000px;}
.ws20a{word-spacing:6.096000px;}
.ws14{word-spacing:6.102000px;}
.wsb8{word-spacing:6.120000px;}
.ws21e{word-spacing:6.144000px;}
.ws84{word-spacing:6.180000px;}
.ws1bc{word-spacing:6.192000px;}
.ws125{word-spacing:6.240000px;}
.ws131{word-spacing:6.264000px;}
.wsa0{word-spacing:6.300000px;}
.ws216{word-spacing:6.336000px;}
.wsbb{word-spacing:6.360000px;}
.ws23a{word-spacing:6.384000px;}
.wscb{word-spacing:6.420000px;}
.ws27{word-spacing:6.480000px;}
.ws1b0{word-spacing:6.528000px;}
.wsaf{word-spacing:6.540000px;}
.ws202{word-spacing:6.576000px;}
.ws47{word-spacing:6.600000px;}
.ws6a{word-spacing:6.660000px;}
.ws1fd{word-spacing:6.672000px;}
.wsa3{word-spacing:6.720000px;}
.ws171{word-spacing:6.780000px;}
.ws96{word-spacing:6.840000px;}
.wsf8{word-spacing:6.900000px;}
.ws74{word-spacing:6.960000px;}
.ws220{word-spacing:7.008000px;}
.ws8a{word-spacing:7.020000px;}
.wsde{word-spacing:7.080000px;}
.ws72{word-spacing:7.140000px;}
.ws100{word-spacing:7.200000px;}
.ws4b{word-spacing:7.260000px;}
.ws65{word-spacing:7.320000px;}
.ws1fa{word-spacing:7.344000px;}
.wsed{word-spacing:7.380000px;}
.wsba{word-spacing:7.440000px;}
.ws50{word-spacing:7.500000px;}
.ws15e{word-spacing:7.560000px;}
.ws1a5{word-spacing:7.584000px;}
.wsc4{word-spacing:7.614000px;}
.ws15d{word-spacing:7.620000px;}
.ws2b{word-spacing:7.680000px;}
.ws209{word-spacing:7.728000px;}
.ws145{word-spacing:7.740000px;}
.ws1e{word-spacing:7.800000px;}
.ws49{word-spacing:7.860000px;}
.ws70{word-spacing:7.920000px;}
.ws16a{word-spacing:7.980000px;}
.ws7a{word-spacing:8.040000px;}
.ws1d1{word-spacing:8.064000px;}
.ws46{word-spacing:8.100000px;}
.wsd6{word-spacing:8.160000px;}
.ws2a{word-spacing:8.220000px;}
.ws229{word-spacing:8.256000px;}
.ws39{word-spacing:8.280000px;}
.ws1be{word-spacing:8.304000px;}
.ws15f{word-spacing:8.340000px;}
.ws1d3{word-spacing:8.352000px;}
.ws8f{word-spacing:8.400000px;}
.ws4c{word-spacing:8.580000px;}
.ws1da{word-spacing:8.592000px;}
.ws136{word-spacing:8.640000px;}
.ws22e{word-spacing:8.688000px;}
.wsa7{word-spacing:8.700000px;}
.wsfa{word-spacing:8.760000px;}
.ws22f{word-spacing:8.784000px;}
.ws79{word-spacing:8.820000px;}
.ws1ec{word-spacing:8.832000px;}
.wsb4{word-spacing:8.880000px;}
.ws22a{word-spacing:8.928000px;}
.wse1{word-spacing:8.940000px;}
.wsd2{word-spacing:9.000000px;}
.ws13a{word-spacing:9.060000px;}
.ws20{word-spacing:9.120000px;}
.ws1ba{word-spacing:9.168000px;}
.ws121{word-spacing:9.180000px;}
.ws206{word-spacing:9.216000px;}
.wsd0{word-spacing:9.240000px;}
.ws1c2{word-spacing:9.264000px;}
.wsbd{word-spacing:9.360000px;}
.wsce{word-spacing:9.420000px;}
.ws232{word-spacing:9.456000px;}
.ws137{word-spacing:9.540000px;}
.ws19f{word-spacing:9.660000px;}
.ws63{word-spacing:9.720000px;}
.ws20b{word-spacing:9.744000px;}
.ws189{word-spacing:9.780000px;}
.ws98{word-spacing:9.840000px;}
.ws1bb{word-spacing:9.888000px;}
.ws18e{word-spacing:9.900000px;}
.wsbc{word-spacing:9.960000px;}
.ws110{word-spacing:10.020000px;}
.ws1bd{word-spacing:10.080000px;}
.ws4f{word-spacing:10.140000px;}
.ws1e9{word-spacing:10.176000px;}
.ws139{word-spacing:10.200000px;}
.ws1cf{word-spacing:10.224000px;}
.wse3{word-spacing:10.260000px;}
.ws181{word-spacing:10.320000px;}
.wsfd{word-spacing:10.380000px;}
.wsd1{word-spacing:10.440000px;}
.wsab{word-spacing:10.500000px;}
.wsad{word-spacing:10.560000px;}
.ws35{word-spacing:10.620000px;}
.ws1f9{word-spacing:10.656000px;}
.wscf{word-spacing:10.680000px;}
.ws193{word-spacing:10.800000px;}
.ws6c{word-spacing:10.920000px;}
.ws9b{word-spacing:10.980000px;}
.ws1c4{word-spacing:10.992000px;}
.ws6f{word-spacing:11.040000px;}
.ws1c5{word-spacing:11.088000px;}
.wse7{word-spacing:11.220000px;}
.ws5f{word-spacing:11.280000px;}
.ws3d{word-spacing:11.340000px;}
.ws17d{word-spacing:11.400000px;}
.ws203{word-spacing:11.424000px;}
.ws18b{word-spacing:11.460000px;}
.ws1a6{word-spacing:11.520000px;}
.wsf6{word-spacing:11.580000px;}
.wsdb{word-spacing:11.640000px;}
.ws178{word-spacing:11.760000px;}
.ws42{word-spacing:11.820000px;}
.ws138{word-spacing:11.880000px;}
.wse2{word-spacing:11.940000px;}
.ws1dc{word-spacing:12.000000px;}
.ws21c{word-spacing:12.048000px;}
.ws66{word-spacing:12.060000px;}
.ws239{word-spacing:12.288000px;}
.wsf0{word-spacing:12.420000px;}
.ws2e{word-spacing:12.540000px;}
.ws1b4{word-spacing:12.576000px;}
.wsdf{word-spacing:12.600000px;}
.ws3f{word-spacing:12.660000px;}
.ws192{word-spacing:12.780000px;}
.ws6d{word-spacing:12.960000px;}
.ws4a{word-spacing:13.020000px;}
.ws19b{word-spacing:13.140000px;}
.ws9a{word-spacing:13.500000px;}
.ws51{word-spacing:13.560000px;}
.ws195{word-spacing:13.620000px;}
.wsa2{word-spacing:13.680000px;}
.ws180{word-spacing:13.740000px;}
.wsee{word-spacing:13.800000px;}
.ws221{word-spacing:14.208000px;}
.ws18c{word-spacing:14.340000px;}
.ws160{word-spacing:14.400000px;}
.ws211{word-spacing:14.448000px;}
.ws190{word-spacing:14.640000px;}
.ws187{word-spacing:14.880000px;}
.ws44{word-spacing:15.120000px;}
.ws19c{word-spacing:15.240000px;}
.ws191{word-spacing:15.420000px;}
.ws228{word-spacing:15.504000px;}
.ws17f{word-spacing:15.600000px;}
.ws155{word-spacing:15.720000px;}
.wsc0{word-spacing:16.020000px;}
.ws97{word-spacing:16.200000px;}
.ws10f{word-spacing:16.560000px;}
.ws123{word-spacing:16.620000px;}
.ws1dd{word-spacing:16.656000px;}
.wsfb{word-spacing:16.740000px;}
.ws21d{word-spacing:16.848000px;}
.ws188{word-spacing:17.220000px;}
.ws1db{word-spacing:17.808000px;}
.ws16b{word-spacing:18.000000px;}
.ws217{word-spacing:18.432000px;}
.ws179{word-spacing:18.660000px;}
.ws177{word-spacing:19.620000px;}
.wsb0{word-spacing:19.740000px;}
.ws208{word-spacing:20.208000px;}
.ws91{word-spacing:20.640000px;}
.wsef{word-spacing:21.000000px;}
.ws158{word-spacing:21.420000px;}
.ws26{word-spacing:21.780000px;}
.ws172{word-spacing:22.200000px;}
.wsdc{word-spacing:22.260000px;}
.ws15b{word-spacing:22.320000px;}
.wsa6{word-spacing:27.180000px;}
.ws52{word-spacing:27.360000px;}
.ws17c{word-spacing:30.660000px;}
.ws28{word-spacing:32.340000px;}
.ws1ca{word-spacing:36.432000px;}
.wsae{word-spacing:36.540000px;}
.ws29{word-spacing:39.840000px;}
.ws151{word-spacing:60.096000px;}
.ws14e{word-spacing:80.736000px;}
.ws150{word-spacing:81.024000px;}
.ws14f{word-spacing:84.096000px;}
.ws152{word-spacing:85.876800px;}
.ws167{word-spacing:117.600000px;}
.ws166{word-spacing:135.216000px;}
.ws168{word-spacing:141.600000px;}
.ws148{word-spacing:149.424000px;}
.ws10b{word-spacing:158.736000px;}
.ws149{word-spacing:168.096000px;}
.ws108{word-spacing:208.896000px;}
.ws14a{word-spacing:216.816000px;}
.ws118{word-spacing:224.786602px;}
.ws106{word-spacing:258.489600px;}
.ws105{word-spacing:263.856000px;}
.ws10c{word-spacing:282.372168px;}
.ws109{word-spacing:282.372768px;}
.ws143{word-spacing:305.712000px;}
.ws14c{word-spacing:366.240000px;}
.ws14d{word-spacing:368.020800px;}
.ws14b{word-spacing:390.240000px;}
.ws12c{word-spacing:396.912000px;}
.ws104{word-spacing:400.176000px;}
.ws12b{word-spacing:420.912000px;}
.ws12d{word-spacing:480.912000px;}
.ws12a{word-spacing:488.433600px;}
.ws165{word-spacing:519.580800px;}
.ws12e{word-spacing:568.358400px;}
.ws142{word-spacing:577.632000px;}
.ws102{word-spacing:603.168000px;}
.ws103{word-spacing:619.152000px;}
.ws147{word-spacing:874.512000px;}
.ws141{word-spacing:936.864000px;}
._52{margin-left:-97.130155px;}
._54{margin-left:-77.666928px;}
._4e{margin-left:-75.031034px;}
._49{margin-left:-70.740043px;}
._4d{margin-left:-69.008062px;}
._4a{margin-left:-63.874459px;}
._4f{margin-left:-61.728963px;}
._4b{margin-left:-60.380366px;}
._56{margin-left:-57.974482px;}
._51{margin-left:-56.917444px;}
._4c{margin-left:-55.369362px;}
._48{margin-left:-53.514782px;}
._53{margin-left:-52.380214px;}
._50{margin-left:-49.085606px;}
._45{margin-left:-44.674620px;}
._3b{margin-left:-43.384719px;}
._46{margin-left:-41.622903px;}
._3f{margin-left:-40.427385px;}
._41{margin-left:-39.294789px;}
._43{margin-left:-38.004888px;}
._40{margin-left:-35.928462px;}
._3a{margin-left:-32.939667px;}
._3d{margin-left:-30.359865px;}
._42{margin-left:-28.472205px;}
._3e{margin-left:-27.308148px;}
._44{margin-left:-25.860942px;}
._3c{margin-left:-22.180005px;}
._47{margin-left:-17.523777px;}
._b2{margin-left:-16.162800px;}
._57{margin-left:-13.500000px;}
._b0{margin-left:-11.504400px;}
._4{margin-left:-8.323200px;}
._a{margin-left:-6.177600px;}
._5{margin-left:-4.967400px;}
._b{margin-left:-3.903600px;}
._3{margin-left:-2.886600px;}
._1{margin-left:-1.397400px;}
._2{width:1.071000px;}
._0{width:2.325600px;}
._c{width:3.388200px;}
._6{width:4.445400px;}
._10{width:5.946600px;}
._17{width:6.960000px;}
._f{width:8.046000px;}
._d{width:9.174000px;}
._14{width:11.010000px;}
._13{width:12.234000px;}
._11{width:13.620000px;}
._b1{width:14.800800px;}
._16{width:16.080000px;}
._1b{width:17.124000px;}
._19{width:19.128000px;}
._18{width:20.178000px;}
._1c{width:21.408000px;}
._94{width:22.740000px;}
._e{width:26.820000px;}
._7{width:32.016000px;}
._a4{width:40.416000px;}
._9{width:55.013400px;}
._8{width:56.092800px;}
._88{width:58.896000px;}
._6a{width:61.728000px;}
._8a{width:72.096000px;}
._69{width:75.024000px;}
._6e{width:80.400000px;}
._6f{width:91.056000px;}
._8b{width:93.024000px;}
._8d{width:96.096000px;}
._28{width:119.664000px;}
._ae{width:123.921000px;}
._a7{width:129.999000px;}
._91{width:142.944000px;}
._8c{width:144.048000px;}
._a9{width:147.345000px;}
._ab{width:153.600000px;}
._ad{width:155.472000px;}
._2f{width:158.352000px;}
._86{width:161.952000px;}
._8e{width:163.776000px;}
._74{width:166.560000px;}
._6c{width:174.927600px;}
._a3{width:177.201000px;}
._63{width:178.911600px;}
._2b{width:180.912000px;}
._35{width:182.208000px;}
._6d{width:184.272000px;}
._6b{width:188.223600px;}
._64{width:191.040000px;}
._65{width:193.680000px;}
._a6{width:199.392000px;}
._2c{width:204.912000px;}
._66{width:212.352000px;}
._62{width:221.712000px;}
._76{width:228.288000px;}
._33{width:240.912000px;}
._a2{width:243.456000px;}
._34{width:244.896000px;}
._2e{width:253.488000px;}
._29{width:254.832000px;}
._30{width:256.176000px;}
._a5{width:258.696600px;}
._27{width:263.702400px;}
._9b{width:266.016000px;}
._36{width:268.896000px;}
._96{width:276.975600px;}
._67{width:281.664000px;}
._92{width:286.320000px;}
._ac{width:287.424000px;}
._38{width:292.896000px;}
._8f{width:295.728000px;}
._77{width:299.856000px;}
._a8{width:303.408000px;}
._39{width:304.896000px;}
._7f{width:310.512000px;}
._2d{width:313.200000px;}
._26{width:314.784000px;}
._7a{width:318.528000px;}
._68{width:324.288000px;}
._aa{width:327.408000px;}
._37{width:328.896000px;}
._60{width:343.008000px;}
._61{width:353.664000px;}
._59{width:358.752000px;}
._58{width:360.480000px;}
._1d{width:369.840000px;}
._73{width:378.240000px;}
._79{width:379.637400px;}
._97{width:382.410600px;}
._1e{width:385.872000px;}
._9a{width:397.968000px;}
._75{width:402.240000px;}
._99{width:405.936000px;}
._22{width:409.872000px;}
._84{width:413.055600px;}
._85{width:417.039600px;}
._82{width:422.400000px;}
._89{width:423.744000px;}
._2a{width:425.472000px;}
._80{width:429.168000px;}
._93{width:430.287600px;}
._78{width:431.808000px;}
._23{width:433.872000px;}
._98{width:437.952000px;}
._90{width:445.056000px;}
._7b{width:450.480000px;}
._9c{width:453.840000px;}
._24{width:457.872000px;}
._7d{width:459.840000px;}
._71{width:472.896000px;}
._21{width:483.269400px;}
._55{width:488.269004px;}
._5e{width:491.952000px;}
._1f{width:493.872000px;}
._7c{width:519.792000px;}
._25{width:529.872000px;}
._a1{width:550.736400px;}
._9f{width:552.150600px;}
._72{width:555.840000px;}
._81{width:562.416000px;}
._5f{width:567.072000px;}
._5a{width:569.712000px;}
._5d{width:575.088000px;}
._5c{width:580.416000px;}
._7e{width:591.792000px;}
._5b{width:596.400000px;}
._32{width:615.168000px;}
._87{width:623.265600px;}
._20{width:657.840000px;}
._9e{width:663.168000px;}
._9d{width:669.066600px;}
._a0{width:681.840000px;}
._95{width:691.680000px;}
._31{width:732.192000px;}
._70{width:744.743400px;}
._83{width:827.760000px;}
._af{width:1917.086400px;}
._15{width:1919.029200px;}
._12{width:1920.784200px;}
._b3{width:1925.941200px;}
._1a{width:1927.102200px;}
.fc3{color:transparent;}
.fc2{color:rgb(16,15,13);}
.fc1{color:rgb(32,59,28);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.984000px;}
.fs10{font-size:28.314600px;}
.fse{font-size:29.887800px;}
.fsd{font-size:31.447800px;}
.fsc{font-size:31.461000px;}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs7{font-size:37.800000px;}
.fs3{font-size:41.976000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs13{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsf{font-size:61.299864px;}
.fs11{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.fs12{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:1.579246px;}
.ycb{bottom:10.097312px;}
.y104{bottom:18.027909px;}
.yc4{bottom:18.625126px;}
.ye5{bottom:27.157039px;}
.yed{bottom:35.691503px;}
.y97{bottom:44.218522px;}
.ye9{bottom:52.735500px;}
.yd5{bottom:61.252898px;}
.y103{bottom:64.181196px;}
.y94{bottom:69.788449px;}
.y108{bottom:71.021400px;}
.y12c{bottom:71.066400px;}
.y66{bottom:71.291400px;}
.y1fc{bottom:71.304900px;}
.y114{bottom:71.322900px;}
.y2a{bottom:71.493000px;}
.y1ad{bottom:73.586250px;}
.y8f{bottom:76.388250px;}
.ye0{bottom:78.312626px;}
.y29{bottom:84.089850px;}
.y102{bottom:86.093783px;}
.yce{bottom:86.830691px;}
.y107{bottom:89.016900px;}
.y12b{bottom:89.066400px;}
.y65{bottom:89.291400px;}
.y1fb{bottom:89.300400px;}
.y113{bottom:89.318400px;}
.y1ac{bottom:91.730250px;}
.y8e{bottom:94.532250px;}
.yd0{bottom:95.356622px;}
.yc2{bottom:103.884437px;}
.y106{bottom:107.012400px;}
.y12a{bottom:107.066400px;}
.y64{bottom:107.291400px;}
.y1fa{bottom:107.295900px;}
.y112{bottom:107.313900px;}
.y1ab{bottom:109.886250px;}
.y101{bottom:109.980547px;}
.ya9{bottom:112.412965px;}
.y8d{bottom:112.688250px;}
.y128{bottom:120.791400px;}
.yf0{bottom:120.942948px;}
.y105{bottom:125.007900px;}
.y129{bottom:125.066400px;}
.y63{bottom:125.291400px;}
.y111{bottom:125.309400px;}
.y100{bottom:127.543650px;}
.y1aa{bottom:128.030250px;}
.ybe{bottom:129.462230px;}
.y8c{bottom:130.832250px;}
.yc7{bottom:137.980295px;}
.y1b8{bottom:143.066400px;}
.y27{bottom:143.291250px;}
.y62{bottom:143.291400px;}
.y110{bottom:143.304900px;}
.y90{bottom:144.997500px;}
.y1a9{bottom:146.174250px;}
.yf9{bottom:146.505010px;}
.y8b{bottom:148.976250px;}
.yf2{bottom:155.038807px;}
.y132{bottom:155.891400px;}
.yb9{bottom:156.386886px;}
.y1b7{bottom:161.066400px;}
.y61{bottom:161.291400px;}
.y10f{bottom:161.300400px;}
.yb2{bottom:163.556377px;}
.y1a8{bottom:164.318250px;}
.y8a{bottom:167.132250px;}
.ya5{bottom:172.107487px;}
.y131{bottom:174.791400px;}
.y1b6{bottom:179.066400px;}
.y26{bottom:179.291250px;}
.y60{bottom:179.291400px;}
.y10e{bottom:179.295900px;}
.yb4{bottom:180.608239px;}
.y1a7{bottom:182.474250px;}
.y89{bottom:185.282250px;}
.ye6{bottom:189.141863px;}
.y1eb{bottom:197.066400px;}
.y5f{bottom:197.291400px;}
.yd3{bottom:197.667794px;}
.y1a6{bottom:200.618250px;}
.y88{bottom:203.426250px;}
.ydb{bottom:206.193725px;}
.ybd{bottom:214.721540px;}
.y1ea{bottom:215.066400px;}
.y5e{bottom:215.291400px;}
.y1a5{bottom:218.774250px;}
.y9c{bottom:223.263073px;}
.ydd{bottom:231.771518px;}
.y130{bottom:233.066400px;}
.y5d{bottom:233.291400px;}
.y87{bottom:233.295900px;}
.y21a{bottom:233.300400px;}
.y25{bottom:233.345250px;}
.y1a4{bottom:236.918250px;}
.yc9{bottom:240.297449px;}
.y1fe{bottom:248.285400px;}
.ycc{bottom:248.815515px;}
.y12f{bottom:251.066400px;}
.y5c{bottom:251.291400px;}
.y219{bottom:251.298150px;}
.y24{bottom:251.340750px;}
.y1a3{bottom:255.062250px;}
.ycf{bottom:257.341446px;}
.yad{bottom:265.875414px;}
.y5b{bottom:269.291400px;}
.y218{bottom:269.295900px;}
.y23{bottom:269.336250px;}
.ye4{bottom:274.401173px;}
.yde{bottom:282.927104px;}
.y5a{bottom:287.291400px;}
.y217{bottom:287.293650px;}
.y1f1{bottom:287.318400px;}
.y22{bottom:287.331750px;}
.y1a2{bottom:291.362250px;}
.yf1{bottom:291.453703px;}
.y9a{bottom:299.996452px;}
.y179{bottom:304.286400px;}
.y59{bottom:305.291400px;}
.y1f0{bottom:305.313900px;}
.y21{bottom:305.327250px;}
.y9f{bottom:308.522383px;}
.y1a1{bottom:309.506250px;}
.y1e9{bottom:310.094250px;}
.y86{bottom:310.838250px;}
.y178{bottom:311.486400px;}
.yac{bottom:317.031000px;}
.y17a{bottom:318.686400px;}
.y58{bottom:323.291400px;}
.y216{bottom:323.302650px;}
.y1ef{bottom:323.309400px;}
.y20{bottom:323.322750px;}
.ya3{bottom:325.574245px;}
.y1a0{bottom:327.650250px;}
.y1e8{bottom:328.238250px;}
.y85{bottom:328.982250px;}
.yd9{bottom:334.074825px;}
.y176{bottom:336.842400px;}
.y57{bottom:341.291400px;}
.y205{bottom:341.300400px;}
.y1ee{bottom:341.304900px;}
.y1f{bottom:341.318250px;}
.y92{bottom:342.610376px;}
.y175{bottom:344.042400px;}
.y19f{bottom:345.806250px;}
.y1e7{bottom:346.394250px;}
.y84{bottom:347.126250px;}
.yd2{bottom:351.126687px;}
.y177{bottom:351.242400px;}
.y56{bottom:359.291400px;}
.y204{bottom:359.295900px;}
.y215{bottom:359.298150px;}
.y1ed{bottom:359.300400px;}
.y1e{bottom:359.313750px;}
.yf7{bottom:359.645420px;}
.y19e{bottom:363.950250px;}
.y1e6{bottom:364.538250px;}
.y83{bottom:365.282250px;}
.yaf{bottom:368.178721px;}
.y173{bottom:369.386400px;}
.y172{bottom:376.586400px;}
.yf3{bottom:376.705147px;}
.y55{bottom:377.291400px;}
.y1ec{bottom:377.295900px;}
.y1d{bottom:377.309250px;}
.y12e{bottom:377.313900px;}
.y19d{bottom:382.094250px;}
.y1e5{bottom:382.682250px;}
.y82{bottom:383.426250px;}
.y174{bottom:383.786400px;}
.yd8{bottom:385.230411px;}
.y95{bottom:393.765962px;}
.y54{bottom:395.291400px;}
.y214{bottom:395.293650px;}
.y1c{bottom:395.304750px;}
.y12d{bottom:395.309400px;}
.y19c{bottom:400.238250px;}
.y1e4{bottom:400.838250px;}
.y171{bottom:401.930400px;}
.ybc{bottom:402.284156px;}
.ydc{bottom:410.808204px;}
.y53{bottom:413.291400px;}
.y1b{bottom:413.300250px;}
.y81{bottom:413.304900px;}
.y170{bottom:416.330400px;}
.y19b{bottom:418.394250px;}
.y1e3{bottom:418.982250px;}
.yc3{bottom:419.336018px;}
.yd7{bottom:427.860066px;}
.y52{bottom:431.291400px;}
.y1a{bottom:431.295750px;}
.y80{bottom:431.300400px;}
.y16e{bottom:434.486400px;}
.y98{bottom:436.403483px;}
.y19a{bottom:436.538250px;}
.y1e2{bottom:437.126250px;}
.y16d{bottom:441.686400px;}
.y99{bottom:444.929414px;}
.y16f{bottom:448.886400px;}
.y19{bottom:449.291250px;}
.y51{bottom:449.291400px;}
.y7f{bottom:449.295900px;}
.yef{bottom:453.446392px;}
.y199{bottom:454.682250px;}
.y1e1{bottom:455.282250px;}
.yeb{bottom:461.972323px;}
.y1ff{bottom:464.285400px;}
.y16b{bottom:467.030400px;}
.y50{bottom:467.291400px;}
.yc1{bottom:470.491604px;}
.y198{bottom:472.838250px;}
.y1e0{bottom:473.426250px;}
.y16a{bottom:474.230400px;}
.yf4{bottom:479.016319px;}
.y16c{bottom:481.430400px;}
.y18{bottom:485.291250px;}
.y4f{bottom:485.291400px;}
.yff{bottom:487.848400px;}
.y197{bottom:490.982250px;}
.yec{bottom:496.076047px;}
.y1f9{bottom:498.791400px;}
.y168{bottom:499.574400px;}
.y4e{bottom:503.291400px;}
.y1df{bottom:503.295900px;}
.y203{bottom:503.313900px;}
.y91{bottom:504.595200px;}
.y167{bottom:506.774400px;}
.y196{bottom:509.126250px;}
.yb3{bottom:513.111682px;}
.y169{bottom:513.974400px;}
.y4d{bottom:521.291400px;}
.y202{bottom:521.309400px;}
.ya6{bottom:521.662793px;}
.y7e{bottom:526.394250px;}
.y195{bottom:527.282250px;}
.ya2{bottom:530.188724px;}
.y165{bottom:532.118400px;}
.y1fd{bottom:533.279400px;}
.y9b{bottom:538.714655px;}
.y4c{bottom:539.291400px;}
.y201{bottom:539.304900px;}
.y164{bottom:539.318400px;}
.y7d{bottom:544.538250px;}
.y194{bottom:545.426250px;}
.y166{bottom:546.518400px;}
.yc8{bottom:547.217118px;}
.y75{bottom:554.285400px;}
.yc6{bottom:555.743049px;}
.y4b{bottom:557.291400px;}
.y200{bottom:557.300400px;}
.y1de{bottom:562.094250px;}
.y17{bottom:562.355400px;}
.y7c{bottom:562.682250px;}
.yc5{bottom:564.268980px;}
.y162{bottom:564.662400px;}
.y161{bottom:571.862400px;}
.ye1{bottom:572.800893px;}
.y4a{bottom:575.291400px;}
.y193{bottom:575.295900px;}
.y213{bottom:575.309400px;}
.yb8{bottom:575.827503px;}
.y163{bottom:579.062400px;}
.y1dd{bottom:580.238250px;}
.y16{bottom:580.355400px;}
.y7b{bottom:580.838250px;}
.ybf{bottom:581.320842px;}
.yab{bottom:589.852050px;}
.y49{bottom:593.291400px;}
.y212{bottom:593.307150px;}
.y15f{bottom:597.206400px;}
.y15{bottom:598.355400px;}
.ye3{bottom:598.378686px;}
.y1dc{bottom:598.394250px;}
.y7a{bottom:598.982250px;}
.y15e{bottom:604.406400px;}
.y9e{bottom:606.922103px;}
.y74{bottom:611.194650px;}
.y48{bottom:611.291400px;}
.y211{bottom:611.304900px;}
.y160{bottom:611.606400px;}
.ya7{bottom:615.428700px;}
.y1db{bottom:616.538250px;}
.y79{bottom:617.126250px;}
.yb0{bottom:623.948785px;}
.y73{bottom:629.190150px;}
.y47{bottom:629.291400px;}
.y210{bottom:629.302650px;}
.y15c{bottom:629.750400px;}
.y192{bottom:631.730400px;}
.yf5{bottom:632.475212px;}
.y1da{bottom:634.682250px;}
.y78{bottom:635.282250px;}
.y15b{bottom:636.950400px;}
.y14{bottom:637.615350px;}
.ycd{bottom:641.000476px;}
.y15d{bottom:644.150400px;}
.y72{bottom:647.185650px;}
.y46{bottom:647.291400px;}
.y20f{bottom:647.300400px;}
.yea{bottom:649.534939px;}
.y191{bottom:649.874400px;}
.y1d9{bottom:652.838250px;}
.y77{bottom:653.426250px;}
.ye2{bottom:658.060203px;}
.y159{bottom:662.306400px;}
.y71{bottom:665.181150px;}
.y45{bottom:665.291400px;}
.y20e{bottom:665.298150px;}
.ya8{bottom:666.582750px;}
.y190{bottom:668.030400px;}
.y158{bottom:669.506400px;}
.y1d8{bottom:670.982250px;}
.yca{bottom:675.104200px;}
.y15a{bottom:676.706400px;}
.y13{bottom:681.153450px;}
.y70{bottom:683.176650px;}
.y44{bottom:683.291400px;}
.y76{bottom:683.295900px;}
.y10d{bottom:683.309250px;}
.yfe{bottom:683.344500px;}
.y18f{bottom:686.174400px;}
.y1d7{bottom:689.126250px;}
.yc0{bottom:692.157945px;}
.y156{bottom:694.850400px;}
.ya1{bottom:700.699478px;}
.y6f{bottom:701.172150px;}
.y43{bottom:701.291400px;}
.y20d{bottom:701.293650px;}
.y10c{bottom:701.304750px;}
.y155{bottom:702.050400px;}
.y18e{bottom:704.318400px;}
.y1d6{bottom:707.282250px;}
.y12{bottom:708.153450px;}
.yd6{bottom:709.207924px;}
.y157{bottom:709.250400px;}
.yda{bottom:717.733855px;}
.y6e{bottom:719.167650px;}
.y42{bottom:719.291400px;}
.y10b{bottom:719.300250px;}
.y18d{bottom:722.474400px;}
.y1d5{bottom:725.426250px;}
.yf8{bottom:726.252588px;}
.y153{bottom:727.394400px;}
.y152{bottom:734.594400px;}
.yba{bottom:734.787600px;}
.y11{bottom:736.401450px;}
.y6d{bottom:737.163150px;}
.y41{bottom:737.291400px;}
.y10a{bottom:737.295750px;}
.y18c{bottom:740.618400px;}
.y154{bottom:741.794400px;}
.ybb{bottom:743.313531px;}
.yd4{bottom:751.837579px;}
.y6c{bottom:755.158650px;}
.y109{bottom:755.291250px;}
.y40{bottom:755.291400px;}
.y1d4{bottom:755.295900px;}
.y10{bottom:755.649450px;}
.y18b{bottom:758.762400px;}
.y150{bottom:759.938400px;}
.yae{bottom:760.363681px;}
.y14f{bottom:767.138400px;}
.y96{bottom:768.899061px;}
.yfa{bottom:772.563150px;}
.y6b{bottom:773.154150px;}
.y3f{bottom:773.291400px;}
.y151{bottom:774.338400px;}
.yf{bottom:774.897450px;}
.y18a{bottom:776.918400px;}
.yf6{bottom:777.408174px;}
.y9d{bottom:785.958788px;}
.ye{bottom:789.897450px;}
.y6a{bottom:791.149650px;}
.y3e{bottom:791.291400px;}
.y14d{bottom:792.482400px;}
.yaa{bottom:794.471715px;}
.y189{bottom:795.062400px;}
.y127{bottom:795.650400px;}
.y14c{bottom:799.682400px;}
.y93{bottom:802.994920px;}
.y14e{bottom:806.882400px;}
.yd{bottom:809.145450px;}
.y3d{bottom:809.291400px;}
.yfd{bottom:811.614900px;}
.y188{bottom:813.206400px;}
.y126{bottom:813.794400px;}
.yb7{bottom:815.768323px;}
.yfc{bottom:820.482831px;}
.y1d2{bottom:825.026250px;}
.y14a{bottom:825.026400px;}
.y3c{bottom:827.291400px;}
.yfb{bottom:828.335850px;}
.yc{bottom:828.393450px;}
.y187{bottom:831.350400px;}
.y125{bottom:831.950400px;}
.y1d1{bottom:832.226250px;}
.y149{bottom:832.226400px;}
.ya0{bottom:837.114374px;}
.y1d3{bottom:839.426250px;}
.y14b{bottom:839.426400px;}
.yb{bottom:843.393450px;}
.y3b{bottom:845.291400px;}
.ya4{bottom:845.640305px;}
.y186{bottom:849.506400px;}
.y124{bottom:850.094400px;}
.yd1{bottom:854.140885px;}
.yb6{bottom:856.186650px;}
.y1cf{bottom:857.570250px;}
.y147{bottom:857.570400px;}
.ya{bottom:862.641450px;}
.yee{bottom:862.683214px;}
.y3a{bottom:863.291400px;}
.y1ce{bottom:864.770250px;}
.y146{bottom:864.770400px;}
.y185{bottom:867.650400px;}
.y123{bottom:868.238400px;}
.yb1{bottom:871.192919px;}
.y1d0{bottom:871.970250px;}
.y148{bottom:871.970400px;}
.y9{bottom:877.641450px;}
.yb5{bottom:879.718850px;}
.y39{bottom:881.291400px;}
.y20c{bottom:881.300400px;}
.y184{bottom:885.794400px;}
.y122{bottom:886.394400px;}
.y1cc{bottom:890.126250px;}
.y144{bottom:890.126400px;}
.y8{bottom:896.889450px;}
.y1cb{bottom:897.326250px;}
.y143{bottom:897.326400px;}
.y38{bottom:899.291400px;}
.y20b{bottom:899.298150px;}
.y183{bottom:903.950400px;}
.y1cd{bottom:904.526250px;}
.y145{bottom:904.526400px;}
.y121{bottom:904.538400px;}
.y37{bottom:917.291400px;}
.y20a{bottom:917.295900px;}
.y182{bottom:922.094400px;}
.y1c9{bottom:922.670250px;}
.y141{bottom:922.670400px;}
.y120{bottom:922.682400px;}
.y1c8{bottom:929.870250px;}
.y140{bottom:929.870400px;}
.y7{bottom:929.888100px;}
.y36{bottom:935.291400px;}
.y209{bottom:935.293650px;}
.y1ca{bottom:937.070250px;}
.y142{bottom:937.070400px;}
.y181{bottom:940.238400px;}
.y11f{bottom:940.826400px;}
.y6{bottom:951.487950px;}
.y35{bottom:953.291400px;}
.ye8{bottom:954.153300px;}
.y1c6{bottom:955.226250px;}
.y13e{bottom:955.226400px;}
.y180{bottom:958.394400px;}
.y11e{bottom:958.982400px;}
.y1c5{bottom:962.426250px;}
.y13d{bottom:962.426400px;}
.y1c7{bottom:969.626250px;}
.y13f{bottom:969.626400px;}
.y34{bottom:971.291400px;}
.y5{bottom:973.087950px;}
.y17f{bottom:976.538400px;}
.y11d{bottom:977.126400px;}
.y1f8{bottom:984.791400px;}
.y1c3{bottom:987.782250px;}
.y13b{bottom:987.782400px;}
.y33{bottom:989.291400px;}
.y208{bottom:989.298150px;}
.y17e{bottom:994.682400px;}
.y1c2{bottom:994.982250px;}
.y13a{bottom:994.982400px;}
.y11c{bottom:995.282400px;}
.ye7{bottom:999.962620px;}
.y1c4{bottom:1002.182250px;}
.y13c{bottom:1002.182400px;}
.y32{bottom:1007.291400px;}
.y207{bottom:1007.295900px;}
.y1b5{bottom:1011.024300px;}
.y4{bottom:1012.686600px;}
.y17d{bottom:1012.826400px;}
.y11b{bottom:1013.426400px;}
.y1c0{bottom:1020.338250px;}
.y138{bottom:1020.338400px;}
.y31{bottom:1025.291400px;}
.y206{bottom:1025.293650px;}
.y1bf{bottom:1027.538250px;}
.y137{bottom:1027.538400px;}
.y1b4{bottom:1029.168300px;}
.y17c{bottom:1030.982400px;}
.y1c1{bottom:1034.738250px;}
.y139{bottom:1034.738400px;}
.y1f7{bottom:1043.066400px;}
.y3{bottom:1043.286600px;}
.y30{bottom:1043.291400px;}
.y11a{bottom:1043.349900px;}
.y1b3{bottom:1047.312300px;}
.y17b{bottom:1049.126400px;}
.y1bd{bottom:1052.882250px;}
.y136{bottom:1052.882400px;}
.y1bc{bottom:1060.082250px;}
.y1f6{bottom:1061.066400px;}
.y2f{bottom:1061.291400px;}
.y119{bottom:1061.345400px;}
.y1b2{bottom:1065.456300px;}
.y1be{bottom:1067.282250px;}
.y135{bottom:1067.282400px;}
.y2{bottom:1073.886600px;}
.y2e{bottom:1079.291400px;}
.y118{bottom:1079.340900px;}
.y1b1{bottom:1083.612300px;}
.y1bb{bottom:1085.426250px;}
.y134{bottom:1085.426400px;}
.y1f5{bottom:1097.066400px;}
.y68{bottom:1097.291400px;}
.y117{bottom:1097.336400px;}
.y1b0{bottom:1101.756300px;}
.y1f4{bottom:1115.066400px;}
.y67{bottom:1115.291400px;}
.y1ba{bottom:1115.295750px;}
.y133{bottom:1115.295900px;}
.y116{bottom:1115.331900px;}
.y1af{bottom:1119.912300px;}
.y1f3{bottom:1133.066400px;}
.y1b9{bottom:1133.291250px;}
.y2d{bottom:1133.291400px;}
.y115{bottom:1133.327400px;}
.y1ae{bottom:1138.056300px;}
.y1f2{bottom:1151.291400px;}
.y69{bottom:1193.518650px;}
.y1{bottom:1194.378000px;}
.y2c{bottom:1194.378900px;}
.y28{bottom:1194.794700px;}
.y2b{bottom:1194.795600px;}
.h1a{height:24.056604px;}
.h1b{height:27.540373px;}
.h16{height:29.070555px;}
.h15{height:30.587899px;}
.h14{height:30.600738px;}
.h19{height:30.624666px;}
.h12{height:32.531250px;}
.hd{height:33.167285px;}
.h7{height:33.328125px;}
.hc{height:34.650000px;}
.h20{height:37.968750px;}
.h2{height:41.580000px;}
.h6{height:42.117188px;}
.hb{height:42.714844px;}
.h10{height:45.021000px;}
.h1c{height:46.147500px;}
.h17{height:46.872845px;}
.ha{height:47.381836px;}
.hf{height:47.460938px;}
.h8{height:48.117188px;}
.h21{height:50.014160px;}
.h23{height:52.601484px;}
.h22{height:52.619484px;}
.he{height:52.646484px;}
.h11{height:52.740000px;}
.h1d{height:53.546484px;}
.h18{height:59.623696px;}
.h9{height:61.530000px;}
.h4{height:63.175781px;}
.h5{height:63.176381px;}
.h1e{height:70.917187px;}
.h1f{height:71.072754px;}
.h3{height:74.715000px;}
.h13{height:1006.293000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:705.826500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.209118px;}
.x33{left:17.699550px;}
.x34{left:30.457529px;}
.x2{left:76.535400px;}
.xc{left:80.974950px;}
.x9{left:93.545400px;}
.x3{left:106.295400px;}
.x5{left:110.551200px;}
.x35{left:114.990600px;}
.x6{left:127.561050px;}
.x2e{left:154.299150px;}
.x4c{left:164.011200px;}
.xd{left:169.203300px;}
.x55{left:170.285400px;}
.x1f{left:200.086916px;}
.x30{left:209.320200px;}
.x32{left:218.593200px;}
.x2f{left:222.095202px;}
.x1b{left:223.413496px;}
.x31{left:224.433000px;}
.x10{left:225.843955px;}
.x56{left:228.125400px;}
.x13{left:229.138809px;}
.x17{left:231.376244px;}
.x28{left:233.186011px;}
.x1d{left:236.246018px;}
.x26{left:237.476983px;}
.x2b{left:244.779298px;}
.x29{left:246.924784px;}
.xe{left:249.628200px;}
.x12{left:251.229652px;}
.x16{left:252.256420px;}
.x15{left:253.796573px;}
.xf{left:255.191139px;}
.x27{left:256.679083px;}
.x1c{left:257.846464px;}
.x25{left:259.176676px;}
.x14{left:261.075900px;}
.x1a{left:262.438353px;}
.x2a{left:264.019710px;}
.x20{left:265.723463px;}
.x11{left:267.627295px;}
.x2c{left:268.916015px;}
.x21{left:270.397557px;}
.x19{left:276.025340px;}
.x3b{left:285.069450px;}
.x42{left:289.321500px;}
.x1e{left:290.955911px;}
.x54{left:305.285400px;}
.x41{left:310.582950px;}
.x43{left:323.337150px;}
.x39{left:345.616200px;}
.x3c{left:374.361450px;}
.x4b{left:391.081200px;}
.x18{left:410.371076px;}
.x49{left:433.906950px;}
.x4{left:434.929200px;}
.x3a{left:436.486200px;}
.xa{left:440.075400px;}
.x46{left:443.945400px;}
.x36{left:448.910400px;}
.xb{left:457.085400px;}
.x3d{left:463.653450px;}
.x37{left:470.630400px;}
.x7{left:474.091050px;}
.x47{left:488.765400px;}
.x8{left:491.101050px;}
.x45{left:502.790400px;}
.x51{left:504.436200px;}
.x22{left:532.034100px;}
.x24{left:540.063469px;}
.x23{left:551.302922px;}
.x3e{left:552.945450px;}
.x52{left:566.371200px;}
.x50{left:579.856200px;}
.x44{left:593.525400px;}
.x38{left:600.245400px;}
.x4a{left:610.366950px;}
.x3f{left:642.237450px;}
.x4f{left:666.646200px;}
.x4e{left:668.041200px;}
.x40{left:731.529450px;}
.x48{left:739.040400px;}
.x53{left:748.066200px;}
.x4d{left:757.876200px;}
.x1{left:759.628500px;}
@media print{
.v4{vertical-align:-10.666667pt;}
.v5{vertical-align:-9.600000pt;}
.v6{vertical-align:-8.554667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.058667pt;}
.v2{vertical-align:5.333333pt;}
.v1{vertical-align:21.312000pt;}
.v7{vertical-align:25.600000pt;}
.lsc{letter-spacing:-4.213333pt;}
.ls11{letter-spacing:-3.157333pt;}
.ls4{letter-spacing:-1.269333pt;}
.ls1e{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.272000pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls7{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.223723pt;}
.lsf{letter-spacing:-0.195757pt;}
.ls3{letter-spacing:-0.181333pt;}
.ls8{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls25{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.090667pt;}
.ls1c{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls23{letter-spacing:1.064000pt;}
.ls16{letter-spacing:1.680000pt;}
.ls1b{letter-spacing:2.026667pt;}
.ls15{letter-spacing:2.256000pt;}
.ls14{letter-spacing:2.361600pt;}
.ls24{letter-spacing:2.888000pt;}
.ls10{letter-spacing:4.368000pt;}
.ls12{letter-spacing:13.013333pt;}
.ls0{letter-spacing:49.493333pt;}
.ws119{word-spacing:-19.180046pt;}
.ws6{word-spacing:-18.442667pt;}
.ws5{word-spacing:-18.218667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws185{word-spacing:-15.104000pt;}
.ws140{word-spacing:-13.832000pt;}
.ws15a{word-spacing:-13.760000pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws18f{word-spacing:-13.296000pt;}
.ws19a{word-spacing:-13.056000pt;}
.ws129{word-spacing:-12.816000pt;}
.ws71{word-spacing:-12.768000pt;}
.ws23d{word-spacing:-12.666667pt;}
.ws23e{word-spacing:-12.565333pt;}
.ws1df{word-spacing:-12.288000pt;}
.ws176{word-spacing:-12.096000pt;}
.ws19e{word-spacing:-11.952000pt;}
.ws4{word-spacing:-10.752000pt;}
.ws1a7{word-spacing:-10.709333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.624000pt;}
.ws115{word-spacing:-9.843797pt;}
.ws117{word-spacing:-9.620075pt;}
.ws0{word-spacing:-9.328000pt;}
.wse9{word-spacing:-9.120000pt;}
.ws116{word-spacing:-9.085891pt;}
.wsca{word-spacing:-7.773333pt;}
.ws1d5{word-spacing:-7.765333pt;}
.ws107{word-spacing:-6.996000pt;}
.ws10a{word-spacing:-6.218667pt;}
.ws1f8{word-spacing:-4.010667pt;}
.ws55{word-spacing:-3.946667pt;}
.ws1ef{word-spacing:-3.712000pt;}
.ws196{word-spacing:-3.573333pt;}
.wsc{word-spacing:-3.520000pt;}
.ws8c{word-spacing:-3.360000pt;}
.ws1d6{word-spacing:-3.328000pt;}
.ws1a1{word-spacing:-3.146667pt;}
.ws10d{word-spacing:-2.933333pt;}
.wsf5{word-spacing:-2.880000pt;}
.ws186{word-spacing:-2.826667pt;}
.wsfe{word-spacing:-2.666667pt;}
.ws21f{word-spacing:-2.645333pt;}
.ws21{word-spacing:-2.613333pt;}
.ws15c{word-spacing:-2.560000pt;}
.ws243{word-spacing:-2.533333pt;}
.ws1ee{word-spacing:-2.517333pt;}
.ws61{word-spacing:-2.506667pt;}
.ws9c{word-spacing:-2.453333pt;}
.ws83{word-spacing:-2.400000pt;}
.ws95{word-spacing:-2.346667pt;}
.ws62{word-spacing:-2.293333pt;}
.ws13c{word-spacing:-2.256000pt;}
.wsf7{word-spacing:-2.240000pt;}
.wsd4{word-spacing:-2.186667pt;}
.ws22c{word-spacing:-2.176000pt;}
.ws153{word-spacing:-2.160000pt;}
.ws18d{word-spacing:-2.133333pt;}
.ws170{word-spacing:-2.080000pt;}
.ws11{word-spacing:-2.064000pt;}
.ws227{word-spacing:-2.048000pt;}
.ws75{word-spacing:-2.026667pt;}
.ws198{word-spacing:-2.016000pt;}
.ws20d{word-spacing:-2.005333pt;}
.wsd8{word-spacing:-1.973333pt;}
.ws238{word-spacing:-1.962667pt;}
.ws77{word-spacing:-1.920000pt;}
.ws231{word-spacing:-1.877333pt;}
.wse5{word-spacing:-1.866667pt;}
.ws21a{word-spacing:-1.834667pt;}
.ws89{word-spacing:-1.813333pt;}
.ws215{word-spacing:-1.792000pt;}
.ws85{word-spacing:-1.760000pt;}
.ws1f7{word-spacing:-1.749333pt;}
.ws159{word-spacing:-1.706667pt;}
.ws1ab{word-spacing:-1.664000pt;}
.ws9e{word-spacing:-1.653333pt;}
.wsff{word-spacing:-1.600000pt;}
.ws130{word-spacing:-1.584000pt;}
.ws212{word-spacing:-1.578667pt;}
.wsac{word-spacing:-1.546667pt;}
.ws13b{word-spacing:-1.536000pt;}
.ws1a0{word-spacing:-1.493333pt;}
.ws1e0{word-spacing:-1.450667pt;}
.ws18{word-spacing:-1.440000pt;}
.ws1a9{word-spacing:-1.408000pt;}
.wsb5{word-spacing:-1.386667pt;}
.wsa5{word-spacing:-1.333333pt;}
.ws236{word-spacing:-1.322667pt;}
.ws82{word-spacing:-1.280000pt;}
.ws37{word-spacing:-1.226667pt;}
.ws224{word-spacing:-1.194667pt;}
.ws7d{word-spacing:-1.173333pt;}
.ws1f6{word-spacing:-1.152000pt;}
.ws17e{word-spacing:-1.120000pt;}
.ws234{word-spacing:-1.109333pt;}
.ws13d{word-spacing:-1.104000pt;}
.ws68{word-spacing:-1.066667pt;}
.ws20f{word-spacing:-1.024000pt;}
.ws6b{word-spacing:-1.013333pt;}
.ws13e{word-spacing:-1.008000pt;}
.ws1c7{word-spacing:-0.981333pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws1ff{word-spacing:-0.938667pt;}
.ws60{word-spacing:-0.906667pt;}
.ws213{word-spacing:-0.896000pt;}
.ws10e{word-spacing:-0.853333pt;}
.ws1d4{word-spacing:-0.810667pt;}
.wsd5{word-spacing:-0.800000pt;}
.wsd{word-spacing:-0.768000pt;}
.wsb7{word-spacing:-0.746667pt;}
.ws64{word-spacing:-0.693333pt;}
.ws22d{word-spacing:-0.682667pt;}
.ws175{word-spacing:-0.672000pt;}
.ws16c{word-spacing:-0.640000pt;}
.ws1cd{word-spacing:-0.597333pt;}
.ws34{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.576000pt;}
.ws21b{word-spacing:-0.554667pt;}
.ws32{word-spacing:-0.533333pt;}
.ws174{word-spacing:-0.528000pt;}
.ws219{word-spacing:-0.512000pt;}
.ws23f{word-spacing:-0.506667pt;}
.ws30{word-spacing:-0.480000pt;}
.wsf3{word-spacing:-0.426667pt;}
.ws120{word-spacing:-0.384000pt;}
.ws90{word-spacing:-0.373333pt;}
.ws1d9{word-spacing:-0.341333pt;}
.ws146{word-spacing:-0.320000pt;}
.ws1d8{word-spacing:-0.298667pt;}
.wsc3{word-spacing:-0.288000pt;}
.ws144{word-spacing:-0.280000pt;}
.wsd3{word-spacing:-0.266667pt;}
.ws1b7{word-spacing:-0.256000pt;}
.ws126{word-spacing:-0.240000pt;}
.ws7c{word-spacing:-0.213333pt;}
.ws23c{word-spacing:-0.170667pt;}
.wse6{word-spacing:-0.160000pt;}
.ws242{word-spacing:-0.152000pt;}
.ws114{word-spacing:-0.144000pt;}
.ws210{word-spacing:-0.128000pt;}
.ws7b{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.096000pt;}
.ws1b6{word-spacing:-0.085333pt;}
.ws11b{word-spacing:-0.055931pt;}
.ws156{word-spacing:-0.053333pt;}
.ws17{word-spacing:-0.048000pt;}
.ws1a4{word-spacing:-0.042667pt;}
.ws11a{word-spacing:-0.027965pt;}
.ws7{word-spacing:0.000000pt;}
.ws11d{word-spacing:0.027965pt;}
.ws233{word-spacing:0.042667pt;}
.ws127{word-spacing:0.048000pt;}
.ws2c{word-spacing:0.053333pt;}
.ws194{word-spacing:0.064000pt;}
.ws20c{word-spacing:0.085333pt;}
.wsb{word-spacing:0.090667pt;}
.ws12{word-spacing:0.096000pt;}
.ws241{word-spacing:0.101333pt;}
.ws16f{word-spacing:0.106667pt;}
.ws13{word-spacing:0.144000pt;}
.ws8b{word-spacing:0.160000pt;}
.wse{word-spacing:0.170667pt;}
.ws8{word-spacing:0.181333pt;}
.ws183{word-spacing:0.192000pt;}
.ws11e{word-spacing:0.195757pt;}
.wsa4{word-spacing:0.213333pt;}
.ws11c{word-spacing:0.223723pt;}
.ws1f3{word-spacing:0.256000pt;}
.wsb6{word-spacing:0.266667pt;}
.wsa{word-spacing:0.272000pt;}
.ws11f{word-spacing:0.288000pt;}
.ws1c3{word-spacing:0.298667pt;}
.ws43{word-spacing:0.320000pt;}
.ws201{word-spacing:0.341333pt;}
.ws22{word-spacing:0.373333pt;}
.ws200{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.426667pt;}
.ws134{word-spacing:0.432000pt;}
.ws1b3{word-spacing:0.469333pt;}
.ws1b{word-spacing:0.480000pt;}
.ws1b5{word-spacing:0.512000pt;}
.ws169{word-spacing:0.586667pt;}
.ws20e{word-spacing:0.597333pt;}
.ws45{word-spacing:0.640000pt;}
.ws133{word-spacing:0.672000pt;}
.ws80{word-spacing:0.693333pt;}
.ws1de{word-spacing:0.725333pt;}
.ws76{word-spacing:0.746667pt;}
.ws88{word-spacing:0.800000pt;}
.ws1af{word-spacing:0.810667pt;}
.ws157{word-spacing:0.853333pt;}
.ws226{word-spacing:0.896000pt;}
.ws154{word-spacing:0.906667pt;}
.wsc2{word-spacing:0.912000pt;}
.ws24{word-spacing:0.960000pt;}
.ws237{word-spacing:0.981333pt;}
.ws59{word-spacing:1.013333pt;}
.wsfc{word-spacing:1.066667pt;}
.ws112{word-spacing:1.104000pt;}
.ws23b{word-spacing:1.109333pt;}
.ws38{word-spacing:1.120000pt;}
.ws244{word-spacing:1.165333pt;}
.ws87{word-spacing:1.173333pt;}
.ws1f4{word-spacing:1.194667pt;}
.ws19d{word-spacing:1.200000pt;}
.ws1f{word-spacing:1.226667pt;}
.ws225{word-spacing:1.237333pt;}
.wsc6{word-spacing:1.248000pt;}
.ws9{word-spacing:1.269333pt;}
.ws2f{word-spacing:1.280000pt;}
.ws184{word-spacing:1.296000pt;}
.ws1ad{word-spacing:1.322667pt;}
.ws1c0{word-spacing:1.365333pt;}
.ws33{word-spacing:1.386667pt;}
.ws199{word-spacing:1.392000pt;}
.wse4{word-spacing:1.440000pt;}
.ws111{word-spacing:1.488000pt;}
.wsf{word-spacing:1.493333pt;}
.ws57{word-spacing:1.546667pt;}
.ws8e{word-spacing:1.600000pt;}
.ws1d2{word-spacing:1.621333pt;}
.ws13f{word-spacing:1.632000pt;}
.wsbe{word-spacing:1.653333pt;}
.ws1f2{word-spacing:1.664000pt;}
.ws164{word-spacing:1.680000pt;}
.ws5d{word-spacing:1.706667pt;}
.wsa8{word-spacing:1.760000pt;}
.ws1e4{word-spacing:1.792000pt;}
.ws17b{word-spacing:1.813333pt;}
.ws173{word-spacing:1.824000pt;}
.ws1a8{word-spacing:1.834667pt;}
.ws122{word-spacing:1.866667pt;}
.ws218{word-spacing:1.877333pt;}
.wsbf{word-spacing:1.920000pt;}
.ws73{word-spacing:1.973333pt;}
.ws12f{word-spacing:2.016000pt;}
.wsf4{word-spacing:2.026667pt;}
.wsc7{word-spacing:2.064000pt;}
.wse0{word-spacing:2.080000pt;}
.ws1ed{word-spacing:2.090667pt;}
.ws113{word-spacing:2.112000pt;}
.ws9d{word-spacing:2.133333pt;}
.ws1d7{word-spacing:2.176000pt;}
.wsec{word-spacing:2.186667pt;}
.ws223{word-spacing:2.218667pt;}
.ws240{word-spacing:2.229333pt;}
.ws31{word-spacing:2.240000pt;}
.ws163{word-spacing:2.256000pt;}
.ws81{word-spacing:2.293333pt;}
.wscc{word-spacing:2.346667pt;}
.ws1e5{word-spacing:2.389333pt;}
.ws41{word-spacing:2.400000pt;}
.ws124{word-spacing:2.453333pt;}
.ws1ce{word-spacing:2.474667pt;}
.ws162{word-spacing:2.496000pt;}
.ws3b{word-spacing:2.506667pt;}
.ws214{word-spacing:2.517333pt;}
.wsc5{word-spacing:2.544000pt;}
.ws1c{word-spacing:2.553600pt;}
.ws9f{word-spacing:2.560000pt;}
.ws1ea{word-spacing:2.602667pt;}
.ws8d{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.640000pt;}
.ws1aa{word-spacing:2.645333pt;}
.ws3e{word-spacing:2.666667pt;}
.ws246{word-spacing:2.685333pt;}
.ws1fc{word-spacing:2.688000pt;}
.wsb2{word-spacing:2.720000pt;}
.ws1e3{word-spacing:2.730667pt;}
.wsc9{word-spacing:2.736000pt;}
.ws7f{word-spacing:2.773333pt;}
.wsf1{word-spacing:2.826667pt;}
.ws245{word-spacing:2.837333pt;}
.ws1b2{word-spacing:2.858667pt;}
.ws58{word-spacing:2.880000pt;}
.ws1c8{word-spacing:2.901333pt;}
.ws19{word-spacing:2.928000pt;}
.ws53{word-spacing:2.933333pt;}
.ws1e8{word-spacing:2.944000pt;}
.wsf9{word-spacing:2.986667pt;}
.wsb9{word-spacing:3.040000pt;}
.ws1a2{word-spacing:3.072000pt;}
.wsc1{word-spacing:3.093333pt;}
.ws230{word-spacing:3.114667pt;}
.ws128{word-spacing:3.120000pt;}
.wsf2{word-spacing:3.146667pt;}
.ws10{word-spacing:3.168000pt;}
.ws4e{word-spacing:3.200000pt;}
.ws16d{word-spacing:3.216000pt;}
.ws1c9{word-spacing:3.242667pt;}
.wsda{word-spacing:3.253333pt;}
.ws1c1{word-spacing:3.285333pt;}
.ws17a{word-spacing:3.306667pt;}
.wsc8{word-spacing:3.312000pt;}
.ws1e1{word-spacing:3.328000pt;}
.ws6e{word-spacing:3.360000pt;}
.ws1a3{word-spacing:3.370667pt;}
.wscd{word-spacing:3.413333pt;}
.ws1fe{word-spacing:3.456000pt;}
.ws25{word-spacing:3.466667pt;}
.ws1fb{word-spacing:3.498667pt;}
.ws69{word-spacing:3.520000pt;}
.wsd7{word-spacing:3.573333pt;}
.ws1ac{word-spacing:3.584000pt;}
.ws67{word-spacing:3.626667pt;}
.ws1e6{word-spacing:3.669333pt;}
.ws101{word-spacing:3.680000pt;}
.ws1c6{word-spacing:3.712000pt;}
.ws5b{word-spacing:3.733333pt;}
.ws1bf{word-spacing:3.754667pt;}
.wsa9{word-spacing:3.786667pt;}
.ws1cb{word-spacing:3.797333pt;}
.ws56{word-spacing:3.840000pt;}
.wsdd{word-spacing:3.893333pt;}
.ws1ae{word-spacing:3.925333pt;}
.ws92{word-spacing:3.946667pt;}
.ws1cc{word-spacing:3.968000pt;}
.ws54{word-spacing:4.000000pt;}
.ws78{word-spacing:4.053333pt;}
.ws1eb{word-spacing:4.096000pt;}
.ws99{word-spacing:4.106667pt;}
.ws207{word-spacing:4.138667pt;}
.ws5e{word-spacing:4.160000pt;}
.ws23{word-spacing:4.213333pt;}
.ws205{word-spacing:4.224000pt;}
.wseb{word-spacing:4.266667pt;}
.ws16e{word-spacing:4.272000pt;}
.ws235{word-spacing:4.309333pt;}
.ws36{word-spacing:4.320000pt;}
.ws222{word-spacing:4.352000pt;}
.ws132{word-spacing:4.368000pt;}
.ws3a{word-spacing:4.373333pt;}
.ws1b8{word-spacing:4.394667pt;}
.ws40{word-spacing:4.426667pt;}
.ws204{word-spacing:4.437333pt;}
.ws5a{word-spacing:4.480000pt;}
.ws1f5{word-spacing:4.522667pt;}
.ws135{word-spacing:4.533333pt;}
.ws182{word-spacing:4.560000pt;}
.wsa1{word-spacing:4.586667pt;}
.ws1f0{word-spacing:4.608000pt;}
.ws4d{word-spacing:4.640000pt;}
.ws197{word-spacing:4.656000pt;}
.ws94{word-spacing:4.693333pt;}
.ws1b9{word-spacing:4.736000pt;}
.wsea{word-spacing:4.746667pt;}
.ws1d0{word-spacing:4.778667pt;}
.ws48{word-spacing:4.800000pt;}
.ws86{word-spacing:4.853333pt;}
.ws1e2{word-spacing:4.864000pt;}
.wsb1{word-spacing:4.906667pt;}
.wsaa{word-spacing:4.960000pt;}
.ws22b{word-spacing:4.992000pt;}
.ws2d{word-spacing:5.013333pt;}
.ws1e7{word-spacing:5.034667pt;}
.ws161{word-spacing:5.066667pt;}
.wsd9{word-spacing:5.120000pt;}
.wse8{word-spacing:5.173333pt;}
.ws1b1{word-spacing:5.205333pt;}
.wsb3{word-spacing:5.226667pt;}
.ws1f1{word-spacing:5.248000pt;}
.ws93{word-spacing:5.280000pt;}
.ws7e{word-spacing:5.333333pt;}
.ws18a{word-spacing:5.386667pt;}
.ws20a{word-spacing:5.418667pt;}
.ws14{word-spacing:5.424000pt;}
.wsb8{word-spacing:5.440000pt;}
.ws21e{word-spacing:5.461333pt;}
.ws84{word-spacing:5.493333pt;}
.ws1bc{word-spacing:5.504000pt;}
.ws125{word-spacing:5.546667pt;}
.ws131{word-spacing:5.568000pt;}
.wsa0{word-spacing:5.600000pt;}
.ws216{word-spacing:5.632000pt;}
.wsbb{word-spacing:5.653333pt;}
.ws23a{word-spacing:5.674667pt;}
.wscb{word-spacing:5.706667pt;}
.ws27{word-spacing:5.760000pt;}
.ws1b0{word-spacing:5.802667pt;}
.wsaf{word-spacing:5.813333pt;}
.ws202{word-spacing:5.845333pt;}
.ws47{word-spacing:5.866667pt;}
.ws6a{word-spacing:5.920000pt;}
.ws1fd{word-spacing:5.930667pt;}
.wsa3{word-spacing:5.973333pt;}
.ws171{word-spacing:6.026667pt;}
.ws96{word-spacing:6.080000pt;}
.wsf8{word-spacing:6.133333pt;}
.ws74{word-spacing:6.186667pt;}
.ws220{word-spacing:6.229333pt;}
.ws8a{word-spacing:6.240000pt;}
.wsde{word-spacing:6.293333pt;}
.ws72{word-spacing:6.346667pt;}
.ws100{word-spacing:6.400000pt;}
.ws4b{word-spacing:6.453333pt;}
.ws65{word-spacing:6.506667pt;}
.ws1fa{word-spacing:6.528000pt;}
.wsed{word-spacing:6.560000pt;}
.wsba{word-spacing:6.613333pt;}
.ws50{word-spacing:6.666667pt;}
.ws15e{word-spacing:6.720000pt;}
.ws1a5{word-spacing:6.741333pt;}
.wsc4{word-spacing:6.768000pt;}
.ws15d{word-spacing:6.773333pt;}
.ws2b{word-spacing:6.826667pt;}
.ws209{word-spacing:6.869333pt;}
.ws145{word-spacing:6.880000pt;}
.ws1e{word-spacing:6.933333pt;}
.ws49{word-spacing:6.986667pt;}
.ws70{word-spacing:7.040000pt;}
.ws16a{word-spacing:7.093333pt;}
.ws7a{word-spacing:7.146667pt;}
.ws1d1{word-spacing:7.168000pt;}
.ws46{word-spacing:7.200000pt;}
.wsd6{word-spacing:7.253333pt;}
.ws2a{word-spacing:7.306667pt;}
.ws229{word-spacing:7.338667pt;}
.ws39{word-spacing:7.360000pt;}
.ws1be{word-spacing:7.381333pt;}
.ws15f{word-spacing:7.413333pt;}
.ws1d3{word-spacing:7.424000pt;}
.ws8f{word-spacing:7.466667pt;}
.ws4c{word-spacing:7.626667pt;}
.ws1da{word-spacing:7.637333pt;}
.ws136{word-spacing:7.680000pt;}
.ws22e{word-spacing:7.722667pt;}
.wsa7{word-spacing:7.733333pt;}
.wsfa{word-spacing:7.786667pt;}
.ws22f{word-spacing:7.808000pt;}
.ws79{word-spacing:7.840000pt;}
.ws1ec{word-spacing:7.850667pt;}
.wsb4{word-spacing:7.893333pt;}
.ws22a{word-spacing:7.936000pt;}
.wse1{word-spacing:7.946667pt;}
.wsd2{word-spacing:8.000000pt;}
.ws13a{word-spacing:8.053333pt;}
.ws20{word-spacing:8.106667pt;}
.ws1ba{word-spacing:8.149333pt;}
.ws121{word-spacing:8.160000pt;}
.ws206{word-spacing:8.192000pt;}
.wsd0{word-spacing:8.213333pt;}
.ws1c2{word-spacing:8.234667pt;}
.wsbd{word-spacing:8.320000pt;}
.wsce{word-spacing:8.373333pt;}
.ws232{word-spacing:8.405333pt;}
.ws137{word-spacing:8.480000pt;}
.ws19f{word-spacing:8.586667pt;}
.ws63{word-spacing:8.640000pt;}
.ws20b{word-spacing:8.661333pt;}
.ws189{word-spacing:8.693333pt;}
.ws98{word-spacing:8.746667pt;}
.ws1bb{word-spacing:8.789333pt;}
.ws18e{word-spacing:8.800000pt;}
.wsbc{word-spacing:8.853333pt;}
.ws110{word-spacing:8.906667pt;}
.ws1bd{word-spacing:8.960000pt;}
.ws4f{word-spacing:9.013333pt;}
.ws1e9{word-spacing:9.045333pt;}
.ws139{word-spacing:9.066667pt;}
.ws1cf{word-spacing:9.088000pt;}
.wse3{word-spacing:9.120000pt;}
.ws181{word-spacing:9.173333pt;}
.wsfd{word-spacing:9.226667pt;}
.wsd1{word-spacing:9.280000pt;}
.wsab{word-spacing:9.333333pt;}
.wsad{word-spacing:9.386667pt;}
.ws35{word-spacing:9.440000pt;}
.ws1f9{word-spacing:9.472000pt;}
.wscf{word-spacing:9.493333pt;}
.ws193{word-spacing:9.600000pt;}
.ws6c{word-spacing:9.706667pt;}
.ws9b{word-spacing:9.760000pt;}
.ws1c4{word-spacing:9.770667pt;}
.ws6f{word-spacing:9.813333pt;}
.ws1c5{word-spacing:9.856000pt;}
.wse7{word-spacing:9.973333pt;}
.ws5f{word-spacing:10.026667pt;}
.ws3d{word-spacing:10.080000pt;}
.ws17d{word-spacing:10.133333pt;}
.ws203{word-spacing:10.154667pt;}
.ws18b{word-spacing:10.186667pt;}
.ws1a6{word-spacing:10.240000pt;}
.wsf6{word-spacing:10.293333pt;}
.wsdb{word-spacing:10.346667pt;}
.ws178{word-spacing:10.453333pt;}
.ws42{word-spacing:10.506667pt;}
.ws138{word-spacing:10.560000pt;}
.wse2{word-spacing:10.613333pt;}
.ws1dc{word-spacing:10.666667pt;}
.ws21c{word-spacing:10.709333pt;}
.ws66{word-spacing:10.720000pt;}
.ws239{word-spacing:10.922667pt;}
.wsf0{word-spacing:11.040000pt;}
.ws2e{word-spacing:11.146667pt;}
.ws1b4{word-spacing:11.178667pt;}
.wsdf{word-spacing:11.200000pt;}
.ws3f{word-spacing:11.253333pt;}
.ws192{word-spacing:11.360000pt;}
.ws6d{word-spacing:11.520000pt;}
.ws4a{word-spacing:11.573333pt;}
.ws19b{word-spacing:11.680000pt;}
.ws9a{word-spacing:12.000000pt;}
.ws51{word-spacing:12.053333pt;}
.ws195{word-spacing:12.106667pt;}
.wsa2{word-spacing:12.160000pt;}
.ws180{word-spacing:12.213333pt;}
.wsee{word-spacing:12.266667pt;}
.ws221{word-spacing:12.629333pt;}
.ws18c{word-spacing:12.746667pt;}
.ws160{word-spacing:12.800000pt;}
.ws211{word-spacing:12.842667pt;}
.ws190{word-spacing:13.013333pt;}
.ws187{word-spacing:13.226667pt;}
.ws44{word-spacing:13.440000pt;}
.ws19c{word-spacing:13.546667pt;}
.ws191{word-spacing:13.706667pt;}
.ws228{word-spacing:13.781333pt;}
.ws17f{word-spacing:13.866667pt;}
.ws155{word-spacing:13.973333pt;}
.wsc0{word-spacing:14.240000pt;}
.ws97{word-spacing:14.400000pt;}
.ws10f{word-spacing:14.720000pt;}
.ws123{word-spacing:14.773333pt;}
.ws1dd{word-spacing:14.805333pt;}
.wsfb{word-spacing:14.880000pt;}
.ws21d{word-spacing:14.976000pt;}
.ws188{word-spacing:15.306667pt;}
.ws1db{word-spacing:15.829333pt;}
.ws16b{word-spacing:16.000000pt;}
.ws217{word-spacing:16.384000pt;}
.ws179{word-spacing:16.586667pt;}
.ws177{word-spacing:17.440000pt;}
.wsb0{word-spacing:17.546667pt;}
.ws208{word-spacing:17.962667pt;}
.ws91{word-spacing:18.346667pt;}
.wsef{word-spacing:18.666667pt;}
.ws158{word-spacing:19.040000pt;}
.ws26{word-spacing:19.360000pt;}
.ws172{word-spacing:19.733333pt;}
.wsdc{word-spacing:19.786667pt;}
.ws15b{word-spacing:19.840000pt;}
.wsa6{word-spacing:24.160000pt;}
.ws52{word-spacing:24.320000pt;}
.ws17c{word-spacing:27.253333pt;}
.ws28{word-spacing:28.746667pt;}
.ws1ca{word-spacing:32.384000pt;}
.wsae{word-spacing:32.480000pt;}
.ws29{word-spacing:35.413333pt;}
.ws151{word-spacing:53.418667pt;}
.ws14e{word-spacing:71.765333pt;}
.ws150{word-spacing:72.021333pt;}
.ws14f{word-spacing:74.752000pt;}
.ws152{word-spacing:76.334933pt;}
.ws167{word-spacing:104.533333pt;}
.ws166{word-spacing:120.192000pt;}
.ws168{word-spacing:125.866667pt;}
.ws148{word-spacing:132.821333pt;}
.ws10b{word-spacing:141.098667pt;}
.ws149{word-spacing:149.418667pt;}
.ws108{word-spacing:185.685333pt;}
.ws14a{word-spacing:192.725333pt;}
.ws118{word-spacing:199.810313pt;}
.ws106{word-spacing:229.768533pt;}
.ws105{word-spacing:234.538667pt;}
.ws10c{word-spacing:250.997483pt;}
.ws109{word-spacing:250.998016pt;}
.ws143{word-spacing:271.744000pt;}
.ws14c{word-spacing:325.546667pt;}
.ws14d{word-spacing:327.129600pt;}
.ws14b{word-spacing:346.880000pt;}
.ws12c{word-spacing:352.810667pt;}
.ws104{word-spacing:355.712000pt;}
.ws12b{word-spacing:374.144000pt;}
.ws12d{word-spacing:427.477333pt;}
.ws12a{word-spacing:434.163200pt;}
.ws165{word-spacing:461.849600pt;}
.ws12e{word-spacing:505.207467pt;}
.ws142{word-spacing:513.450667pt;}
.ws102{word-spacing:536.149333pt;}
.ws103{word-spacing:550.357333pt;}
.ws147{word-spacing:777.344000pt;}
.ws141{word-spacing:832.768000pt;}
._52{margin-left:-86.337915pt;}
._54{margin-left:-69.037269pt;}
._4e{margin-left:-66.694252pt;}
._49{margin-left:-62.880039pt;}
._4d{margin-left:-61.340500pt;}
._4a{margin-left:-56.777297pt;}
._4f{margin-left:-54.870190pt;}
._4b{margin-left:-53.671437pt;}
._56{margin-left:-51.532873pt;}
._51{margin-left:-50.593283pt;}
._4c{margin-left:-49.217211pt;}
._48{margin-left:-47.568695pt;}
._53{margin-left:-46.560190pt;}
._50{margin-left:-43.631650pt;}
._45{margin-left:-39.710773pt;}
._3b{margin-left:-38.564195pt;}
._46{margin-left:-36.998136pt;}
._3f{margin-left:-35.935453pt;}
._41{margin-left:-34.928701pt;}
._43{margin-left:-33.782123pt;}
._40{margin-left:-31.936411pt;}
._3a{margin-left:-29.279704pt;}
._3d{margin-left:-26.986547pt;}
._42{margin-left:-25.308627pt;}
._3e{margin-left:-24.273909pt;}
._44{margin-left:-22.987504pt;}
._3c{margin-left:-19.715560pt;}
._47{margin-left:-15.576691pt;}
._b2{margin-left:-14.366933pt;}
._57{margin-left:-12.000000pt;}
._b0{margin-left:-10.226133pt;}
._4{margin-left:-7.398400pt;}
._a{margin-left:-5.491200pt;}
._5{margin-left:-4.415467pt;}
._b{margin-left:-3.469867pt;}
._3{margin-left:-2.565867pt;}
._1{margin-left:-1.242133pt;}
._2{width:0.952000pt;}
._0{width:2.067200pt;}
._c{width:3.011733pt;}
._6{width:3.951467pt;}
._10{width:5.285867pt;}
._17{width:6.186667pt;}
._f{width:7.152000pt;}
._d{width:8.154667pt;}
._14{width:9.786667pt;}
._13{width:10.874667pt;}
._11{width:12.106667pt;}
._b1{width:13.156267pt;}
._16{width:14.293333pt;}
._1b{width:15.221333pt;}
._19{width:17.002667pt;}
._18{width:17.936000pt;}
._1c{width:19.029333pt;}
._94{width:20.213333pt;}
._e{width:23.840000pt;}
._7{width:28.458667pt;}
._a4{width:35.925333pt;}
._9{width:48.900800pt;}
._8{width:49.860267pt;}
._88{width:52.352000pt;}
._6a{width:54.869333pt;}
._8a{width:64.085333pt;}
._69{width:66.688000pt;}
._6e{width:71.466667pt;}
._6f{width:80.938667pt;}
._8b{width:82.688000pt;}
._8d{width:85.418667pt;}
._28{width:106.368000pt;}
._ae{width:110.152000pt;}
._a7{width:115.554667pt;}
._91{width:127.061333pt;}
._8c{width:128.042667pt;}
._a9{width:130.973333pt;}
._ab{width:136.533333pt;}
._ad{width:138.197333pt;}
._2f{width:140.757333pt;}
._86{width:143.957333pt;}
._8e{width:145.578667pt;}
._74{width:148.053333pt;}
._6c{width:155.491200pt;}
._a3{width:157.512000pt;}
._63{width:159.032533pt;}
._2b{width:160.810667pt;}
._35{width:161.962667pt;}
._6d{width:163.797333pt;}
._6b{width:167.309867pt;}
._64{width:169.813333pt;}
._65{width:172.160000pt;}
._a6{width:177.237333pt;}
._2c{width:182.144000pt;}
._66{width:188.757333pt;}
._62{width:197.077333pt;}
._76{width:202.922667pt;}
._33{width:214.144000pt;}
._a2{width:216.405333pt;}
._34{width:217.685333pt;}
._2e{width:225.322667pt;}
._29{width:226.517333pt;}
._30{width:227.712000pt;}
._a5{width:229.952533pt;}
._27{width:234.402133pt;}
._9b{width:236.458667pt;}
._36{width:239.018667pt;}
._96{width:246.200533pt;}
._67{width:250.368000pt;}
._92{width:254.506667pt;}
._ac{width:255.488000pt;}
._38{width:260.352000pt;}
._8f{width:262.869333pt;}
._77{width:266.538667pt;}
._a8{width:269.696000pt;}
._39{width:271.018667pt;}
._7f{width:276.010667pt;}
._2d{width:278.400000pt;}
._26{width:279.808000pt;}
._7a{width:283.136000pt;}
._68{width:288.256000pt;}
._aa{width:291.029333pt;}
._37{width:292.352000pt;}
._60{width:304.896000pt;}
._61{width:314.368000pt;}
._59{width:318.890667pt;}
._58{width:320.426667pt;}
._1d{width:328.746667pt;}
._73{width:336.213333pt;}
._79{width:337.455467pt;}
._97{width:339.920533pt;}
._1e{width:342.997333pt;}
._9a{width:353.749333pt;}
._75{width:357.546667pt;}
._99{width:360.832000pt;}
._22{width:364.330667pt;}
._84{width:367.160533pt;}
._85{width:370.701867pt;}
._82{width:375.466667pt;}
._89{width:376.661333pt;}
._2a{width:378.197333pt;}
._80{width:381.482667pt;}
._93{width:382.477867pt;}
._78{width:383.829333pt;}
._23{width:385.664000pt;}
._98{width:389.290667pt;}
._90{width:395.605333pt;}
._7b{width:400.426667pt;}
._9c{width:403.413333pt;}
._24{width:406.997333pt;}
._7d{width:408.746667pt;}
._71{width:420.352000pt;}
._21{width:429.572800pt;}
._55{width:434.016892pt;}
._5e{width:437.290667pt;}
._1f{width:438.997333pt;}
._7c{width:462.037333pt;}
._25{width:470.997333pt;}
._a1{width:489.543467pt;}
._9f{width:490.800533pt;}
._72{width:494.080000pt;}
._81{width:499.925333pt;}
._5f{width:504.064000pt;}
._5a{width:506.410667pt;}
._5d{width:511.189333pt;}
._5c{width:515.925333pt;}
._7e{width:526.037333pt;}
._5b{width:530.133333pt;}
._32{width:546.816000pt;}
._87{width:554.013867pt;}
._20{width:584.746667pt;}
._9e{width:589.482667pt;}
._9d{width:594.725867pt;}
._a0{width:606.080000pt;}
._95{width:614.826667pt;}
._31{width:650.837333pt;}
._70{width:661.994133pt;}
._83{width:735.786667pt;}
._af{width:1704.076800pt;}
._15{width:1705.803733pt;}
._12{width:1707.363733pt;}
._b3{width:1711.947733pt;}
._1a{width:1712.979733pt;}
.fsb{font-size:24.874667pt;}
.fs10{font-size:25.168533pt;}
.fse{font-size:26.566933pt;}
.fsd{font-size:27.953600pt;}
.fsc{font-size:27.965333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs7{font-size:33.600000pt;}
.fs3{font-size:37.312000pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs13{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsf{font-size:54.488768pt;}
.fs11{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.fs12{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:1.403775pt;}
.ycb{bottom:8.975389pt;}
.y104{bottom:16.024808pt;}
.yc4{bottom:16.555668pt;}
.ye5{bottom:24.139591pt;}
.yed{bottom:31.725781pt;}
.y97{bottom:39.305353pt;}
.ye9{bottom:46.876000pt;}
.yd5{bottom:54.447021pt;}
.y103{bottom:57.049952pt;}
.y94{bottom:62.034177pt;}
.y108{bottom:63.130133pt;}
.y12c{bottom:63.170133pt;}
.y66{bottom:63.370133pt;}
.y1fc{bottom:63.382133pt;}
.y114{bottom:63.398133pt;}
.y2a{bottom:63.549333pt;}
.y1ad{bottom:65.410000pt;}
.y8f{bottom:67.900667pt;}
.ye0{bottom:69.611223pt;}
.y29{bottom:74.746533pt;}
.y102{bottom:76.527807pt;}
.yce{bottom:77.182837pt;}
.y107{bottom:79.126133pt;}
.y12b{bottom:79.170133pt;}
.y65{bottom:79.370133pt;}
.y1fb{bottom:79.378133pt;}
.y113{bottom:79.394133pt;}
.y1ac{bottom:81.538000pt;}
.y8e{bottom:84.028667pt;}
.yd0{bottom:84.761442pt;}
.yc2{bottom:92.341721pt;}
.y106{bottom:95.122133pt;}
.y12a{bottom:95.170133pt;}
.y64{bottom:95.370133pt;}
.y1fa{bottom:95.374133pt;}
.y112{bottom:95.390133pt;}
.y1ab{bottom:97.676667pt;}
.y101{bottom:97.760486pt;}
.ya9{bottom:99.922636pt;}
.y8d{bottom:100.167333pt;}
.y128{bottom:107.370133pt;}
.yf0{bottom:107.504843pt;}
.y105{bottom:111.118133pt;}
.y129{bottom:111.170133pt;}
.y63{bottom:111.370133pt;}
.y111{bottom:111.386133pt;}
.y100{bottom:113.372133pt;}
.y1aa{bottom:113.804667pt;}
.ybe{bottom:115.077537pt;}
.y8c{bottom:116.295333pt;}
.yc7{bottom:122.649151pt;}
.y1b8{bottom:127.170133pt;}
.y27{bottom:127.370000pt;}
.y62{bottom:127.370133pt;}
.y110{bottom:127.382133pt;}
.y90{bottom:128.886667pt;}
.y1a9{bottom:129.932667pt;}
.yf9{bottom:130.226676pt;}
.y8b{bottom:132.423333pt;}
.yf2{bottom:137.812273pt;}
.y132{bottom:138.570133pt;}
.yb9{bottom:139.010565pt;}
.y1b7{bottom:143.170133pt;}
.y61{bottom:143.370133pt;}
.y10f{bottom:143.378133pt;}
.yb2{bottom:145.383446pt;}
.y1a8{bottom:146.060667pt;}
.y8a{bottom:148.562000pt;}
.ya5{bottom:152.984433pt;}
.y131{bottom:155.370133pt;}
.y1b6{bottom:159.170133pt;}
.y26{bottom:159.370000pt;}
.y60{bottom:159.370133pt;}
.y10e{bottom:159.374133pt;}
.yb4{bottom:160.540657pt;}
.y1a7{bottom:162.199333pt;}
.y89{bottom:164.695333pt;}
.ye6{bottom:168.126101pt;}
.y1eb{bottom:175.170133pt;}
.y5f{bottom:175.370133pt;}
.yd3{bottom:175.704706pt;}
.y1a6{bottom:178.327333pt;}
.y88{bottom:180.823333pt;}
.ydb{bottom:183.283311pt;}
.ybd{bottom:190.863591pt;}
.y1ea{bottom:191.170133pt;}
.y5e{bottom:191.370133pt;}
.y1a5{bottom:194.466000pt;}
.y9c{bottom:198.456065pt;}
.ydd{bottom:206.019127pt;}
.y130{bottom:207.170133pt;}
.y5d{bottom:207.370133pt;}
.y87{bottom:207.374133pt;}
.y21a{bottom:207.378133pt;}
.y25{bottom:207.418000pt;}
.y1a4{bottom:210.594000pt;}
.yc9{bottom:213.597733pt;}
.y1fe{bottom:220.698133pt;}
.ycc{bottom:221.169347pt;}
.y12f{bottom:223.170133pt;}
.y5c{bottom:223.370133pt;}
.y219{bottom:223.376133pt;}
.y24{bottom:223.414000pt;}
.y1a3{bottom:226.722000pt;}
.ycf{bottom:228.747952pt;}
.yad{bottom:236.333701pt;}
.y5b{bottom:239.370133pt;}
.y218{bottom:239.374133pt;}
.y23{bottom:239.410000pt;}
.ye4{bottom:243.912154pt;}
.yde{bottom:251.490759pt;}
.y5a{bottom:255.370133pt;}
.y217{bottom:255.372133pt;}
.y1f1{bottom:255.394133pt;}
.y22{bottom:255.406000pt;}
.y1a2{bottom:258.988667pt;}
.yf1{bottom:259.069958pt;}
.y9a{bottom:266.663513pt;}
.y179{bottom:270.476800pt;}
.y59{bottom:271.370133pt;}
.y1f0{bottom:271.390133pt;}
.y21{bottom:271.402000pt;}
.y9f{bottom:274.242118pt;}
.y1a1{bottom:275.116667pt;}
.y1e9{bottom:275.639333pt;}
.y86{bottom:276.300667pt;}
.y178{bottom:276.876800pt;}
.yac{bottom:281.805333pt;}
.y17a{bottom:283.276800pt;}
.y58{bottom:287.370133pt;}
.y216{bottom:287.380133pt;}
.y1ef{bottom:287.386133pt;}
.y20{bottom:287.398000pt;}
.ya3{bottom:289.399329pt;}
.y1a0{bottom:291.244667pt;}
.y1e8{bottom:291.767333pt;}
.y85{bottom:292.428667pt;}
.yd9{bottom:296.955400pt;}
.y176{bottom:299.415467pt;}
.y57{bottom:303.370133pt;}
.y205{bottom:303.378133pt;}
.y1ee{bottom:303.382133pt;}
.y1f{bottom:303.394000pt;}
.y92{bottom:304.542557pt;}
.y175{bottom:305.815467pt;}
.y19f{bottom:307.383333pt;}
.y1e7{bottom:307.906000pt;}
.y84{bottom:308.556667pt;}
.yd2{bottom:312.112611pt;}
.y177{bottom:312.215467pt;}
.y56{bottom:319.370133pt;}
.y204{bottom:319.374133pt;}
.y215{bottom:319.376133pt;}
.y1ed{bottom:319.378133pt;}
.y1e{bottom:319.390000pt;}
.yf7{bottom:319.684818pt;}
.y19e{bottom:323.511333pt;}
.y1e6{bottom:324.034000pt;}
.y83{bottom:324.695333pt;}
.yaf{bottom:327.269974pt;}
.y173{bottom:328.343467pt;}
.y172{bottom:334.743467pt;}
.yf3{bottom:334.849020pt;}
.y55{bottom:335.370133pt;}
.y1ec{bottom:335.374133pt;}
.y1d{bottom:335.386000pt;}
.y12e{bottom:335.390133pt;}
.y19d{bottom:339.639333pt;}
.y1e5{bottom:340.162000pt;}
.y82{bottom:340.823333pt;}
.y174{bottom:341.143467pt;}
.yd8{bottom:342.427032pt;}
.y95{bottom:350.014189pt;}
.y54{bottom:351.370133pt;}
.y214{bottom:351.372133pt;}
.y1c{bottom:351.382000pt;}
.y12d{bottom:351.386133pt;}
.y19c{bottom:355.767333pt;}
.y1e4{bottom:356.300667pt;}
.y171{bottom:357.271467pt;}
.ybc{bottom:357.585917pt;}
.ydc{bottom:365.162848pt;}
.y53{bottom:367.370133pt;}
.y1b{bottom:367.378000pt;}
.y81{bottom:367.382133pt;}
.y170{bottom:370.071467pt;}
.y19b{bottom:371.906000pt;}
.y1e3{bottom:372.428667pt;}
.yc3{bottom:372.743127pt;}
.yd7{bottom:380.320059pt;}
.y52{bottom:383.370133pt;}
.y1a{bottom:383.374000pt;}
.y80{bottom:383.378133pt;}
.y16e{bottom:386.210133pt;}
.y98{bottom:387.914207pt;}
.y19a{bottom:388.034000pt;}
.y1e2{bottom:388.556667pt;}
.y16d{bottom:392.610133pt;}
.y99{bottom:395.492812pt;}
.y16f{bottom:399.010133pt;}
.y19{bottom:399.370000pt;}
.y51{bottom:399.370133pt;}
.y7f{bottom:399.374133pt;}
.yef{bottom:403.063459pt;}
.y199{bottom:404.162000pt;}
.y1e1{bottom:404.695333pt;}
.yeb{bottom:410.642065pt;}
.y1ff{bottom:412.698133pt;}
.y16b{bottom:415.138133pt;}
.y50{bottom:415.370133pt;}
.yc1{bottom:418.214759pt;}
.y198{bottom:420.300667pt;}
.y1e0{bottom:420.823333pt;}
.y16a{bottom:421.538133pt;}
.yf4{bottom:425.792284pt;}
.y16c{bottom:427.938133pt;}
.y18{bottom:431.370000pt;}
.y4f{bottom:431.370133pt;}
.yff{bottom:433.643022pt;}
.y197{bottom:436.428667pt;}
.yec{bottom:440.956486pt;}
.y1f9{bottom:443.370133pt;}
.y168{bottom:444.066133pt;}
.y4e{bottom:447.370133pt;}
.y1df{bottom:447.374133pt;}
.y203{bottom:447.390133pt;}
.y91{bottom:448.529067pt;}
.y167{bottom:450.466133pt;}
.y196{bottom:452.556667pt;}
.yb3{bottom:456.099273pt;}
.y169{bottom:456.866133pt;}
.y4d{bottom:463.370133pt;}
.y202{bottom:463.386133pt;}
.ya6{bottom:463.700260pt;}
.y7e{bottom:467.906000pt;}
.y195{bottom:468.695333pt;}
.ya2{bottom:471.278865pt;}
.y165{bottom:472.994133pt;}
.y1fd{bottom:474.026133pt;}
.y9b{bottom:478.857471pt;}
.y4c{bottom:479.370133pt;}
.y201{bottom:479.382133pt;}
.y164{bottom:479.394133pt;}
.y7d{bottom:484.034000pt;}
.y194{bottom:484.823333pt;}
.y166{bottom:485.794133pt;}
.yc8{bottom:486.415216pt;}
.y75{bottom:492.698133pt;}
.yc6{bottom:493.993821pt;}
.y4b{bottom:495.370133pt;}
.y200{bottom:495.378133pt;}
.y1de{bottom:499.639333pt;}
.y17{bottom:499.871467pt;}
.y7c{bottom:500.162000pt;}
.yc5{bottom:501.572427pt;}
.y162{bottom:501.922133pt;}
.y161{bottom:508.322133pt;}
.ye1{bottom:509.156349pt;}
.y4a{bottom:511.370133pt;}
.y193{bottom:511.374133pt;}
.y213{bottom:511.386133pt;}
.yb8{bottom:511.846669pt;}
.y163{bottom:514.722133pt;}
.y1dd{bottom:515.767333pt;}
.y16{bottom:515.871467pt;}
.y7b{bottom:516.300667pt;}
.ybf{bottom:516.729637pt;}
.yab{bottom:524.312933pt;}
.y49{bottom:527.370133pt;}
.y212{bottom:527.384133pt;}
.y15f{bottom:530.850133pt;}
.y15{bottom:531.871467pt;}
.ye3{bottom:531.892165pt;}
.y1dc{bottom:531.906000pt;}
.y7a{bottom:532.428667pt;}
.y15e{bottom:537.250133pt;}
.y9e{bottom:539.486313pt;}
.y74{bottom:543.284133pt;}
.y48{bottom:543.370133pt;}
.y211{bottom:543.382133pt;}
.y160{bottom:543.650133pt;}
.ya7{bottom:547.047733pt;}
.y1db{bottom:548.034000pt;}
.y79{bottom:548.556667pt;}
.yb0{bottom:554.621143pt;}
.y73{bottom:559.280133pt;}
.y47{bottom:559.370133pt;}
.y210{bottom:559.380133pt;}
.y15c{bottom:559.778133pt;}
.y192{bottom:561.538133pt;}
.yf5{bottom:562.200189pt;}
.y1da{bottom:564.162000pt;}
.y78{bottom:564.695333pt;}
.y15b{bottom:566.178133pt;}
.y14{bottom:566.769200pt;}
.ycd{bottom:569.778201pt;}
.y15d{bottom:572.578133pt;}
.y72{bottom:575.276133pt;}
.y46{bottom:575.370133pt;}
.y20f{bottom:575.378133pt;}
.yea{bottom:577.364391pt;}
.y191{bottom:577.666133pt;}
.y1d9{bottom:580.300667pt;}
.y77{bottom:580.823333pt;}
.ye2{bottom:584.942403pt;}
.y159{bottom:588.716800pt;}
.y71{bottom:591.272133pt;}
.y45{bottom:591.370133pt;}
.y20e{bottom:591.376133pt;}
.ya8{bottom:592.518000pt;}
.y190{bottom:593.804800pt;}
.y158{bottom:595.116800pt;}
.y1d8{bottom:596.428667pt;}
.yca{bottom:600.092622pt;}
.y15a{bottom:601.516800pt;}
.y13{bottom:605.469733pt;}
.y70{bottom:607.268133pt;}
.y44{bottom:607.370133pt;}
.y76{bottom:607.374133pt;}
.y10d{bottom:607.386000pt;}
.yfe{bottom:607.417333pt;}
.y18f{bottom:609.932800pt;}
.y1d7{bottom:612.556667pt;}
.yc0{bottom:615.251507pt;}
.y156{bottom:617.644800pt;}
.ya1{bottom:622.843981pt;}
.y6f{bottom:623.264133pt;}
.y43{bottom:623.370133pt;}
.y20d{bottom:623.372133pt;}
.y10c{bottom:623.382000pt;}
.y155{bottom:624.044800pt;}
.y18e{bottom:626.060800pt;}
.y1d6{bottom:628.695333pt;}
.y12{bottom:629.469733pt;}
.yd6{bottom:630.407043pt;}
.y157{bottom:630.444800pt;}
.yda{bottom:637.985649pt;}
.y6e{bottom:639.260133pt;}
.y42{bottom:639.370133pt;}
.y10b{bottom:639.378000pt;}
.y18d{bottom:642.199467pt;}
.y1d5{bottom:644.823333pt;}
.yf8{bottom:645.557856pt;}
.y153{bottom:646.572800pt;}
.y152{bottom:652.972800pt;}
.yba{bottom:653.144533pt;}
.y11{bottom:654.579067pt;}
.y6d{bottom:655.256133pt;}
.y41{bottom:655.370133pt;}
.y10a{bottom:655.374000pt;}
.y18c{bottom:658.327467pt;}
.y154{bottom:659.372800pt;}
.ybb{bottom:660.723139pt;}
.yd4{bottom:668.300070pt;}
.y6c{bottom:671.252133pt;}
.y109{bottom:671.370000pt;}
.y40{bottom:671.370133pt;}
.y1d4{bottom:671.374133pt;}
.y10{bottom:671.688400pt;}
.y18b{bottom:674.455467pt;}
.y150{bottom:675.500800pt;}
.yae{bottom:675.878828pt;}
.y14f{bottom:681.900800pt;}
.y96{bottom:683.465832pt;}
.yfa{bottom:686.722800pt;}
.y6b{bottom:687.248133pt;}
.y3f{bottom:687.370133pt;}
.y151{bottom:688.300800pt;}
.yf{bottom:688.797733pt;}
.y18a{bottom:690.594133pt;}
.yf6{bottom:691.029488pt;}
.y9d{bottom:698.630034pt;}
.ye{bottom:702.131067pt;}
.y6a{bottom:703.244133pt;}
.y3e{bottom:703.370133pt;}
.y14d{bottom:704.428800pt;}
.yaa{bottom:706.197080pt;}
.y189{bottom:706.722133pt;}
.y127{bottom:707.244800pt;}
.y14c{bottom:710.828800pt;}
.y93{bottom:713.773262pt;}
.y14e{bottom:717.228800pt;}
.yd{bottom:719.240400pt;}
.y3d{bottom:719.370133pt;}
.yfd{bottom:721.435467pt;}
.y188{bottom:722.850133pt;}
.y126{bottom:723.372800pt;}
.yb7{bottom:725.127399pt;}
.yfc{bottom:729.318072pt;}
.y1d2{bottom:733.356667pt;}
.y14a{bottom:733.356800pt;}
.y3c{bottom:735.370133pt;}
.yfb{bottom:736.298533pt;}
.yc{bottom:736.349733pt;}
.y187{bottom:738.978133pt;}
.y125{bottom:739.511467pt;}
.y1d1{bottom:739.756667pt;}
.y149{bottom:739.756800pt;}
.ya0{bottom:744.101666pt;}
.y1d3{bottom:746.156667pt;}
.y14b{bottom:746.156800pt;}
.yb{bottom:749.683067pt;}
.y3b{bottom:751.370133pt;}
.ya4{bottom:751.680271pt;}
.y186{bottom:755.116800pt;}
.y124{bottom:755.639467pt;}
.yd1{bottom:759.236343pt;}
.yb6{bottom:761.054800pt;}
.y1cf{bottom:762.284667pt;}
.y147{bottom:762.284800pt;}
.ya{bottom:766.792400pt;}
.yee{bottom:766.829524pt;}
.y3a{bottom:767.370133pt;}
.y1ce{bottom:768.684667pt;}
.y146{bottom:768.684800pt;}
.y185{bottom:771.244800pt;}
.y123{bottom:771.767467pt;}
.yb1{bottom:774.393706pt;}
.y1d0{bottom:775.084667pt;}
.y148{bottom:775.084800pt;}
.y9{bottom:780.125733pt;}
.yb5{bottom:781.972311pt;}
.y39{bottom:783.370133pt;}
.y20c{bottom:783.378133pt;}
.y184{bottom:787.372800pt;}
.y122{bottom:787.906133pt;}
.y1cc{bottom:791.223333pt;}
.y144{bottom:791.223467pt;}
.y8{bottom:797.235067pt;}
.y1cb{bottom:797.623333pt;}
.y143{bottom:797.623467pt;}
.y38{bottom:799.370133pt;}
.y20b{bottom:799.376133pt;}
.y183{bottom:803.511467pt;}
.y1cd{bottom:804.023333pt;}
.y145{bottom:804.023467pt;}
.y121{bottom:804.034133pt;}
.y37{bottom:815.370133pt;}
.y20a{bottom:815.374133pt;}
.y182{bottom:819.639467pt;}
.y1c9{bottom:820.151333pt;}
.y141{bottom:820.151467pt;}
.y120{bottom:820.162133pt;}
.y1c8{bottom:826.551333pt;}
.y140{bottom:826.551467pt;}
.y7{bottom:826.567200pt;}
.y36{bottom:831.370133pt;}
.y209{bottom:831.372133pt;}
.y1ca{bottom:832.951333pt;}
.y142{bottom:832.951467pt;}
.y181{bottom:835.767467pt;}
.y11f{bottom:836.290133pt;}
.y6{bottom:845.767067pt;}
.y35{bottom:847.370133pt;}
.ye8{bottom:848.136267pt;}
.y1c6{bottom:849.090000pt;}
.y13e{bottom:849.090133pt;}
.y180{bottom:851.906133pt;}
.y11e{bottom:852.428800pt;}
.y1c5{bottom:855.490000pt;}
.y13d{bottom:855.490133pt;}
.y1c7{bottom:861.890000pt;}
.y13f{bottom:861.890133pt;}
.y34{bottom:863.370133pt;}
.y5{bottom:864.967067pt;}
.y17f{bottom:868.034133pt;}
.y11d{bottom:868.556800pt;}
.y1f8{bottom:875.370133pt;}
.y1c3{bottom:878.028667pt;}
.y13b{bottom:878.028800pt;}
.y33{bottom:879.370133pt;}
.y208{bottom:879.376133pt;}
.y17e{bottom:884.162133pt;}
.y1c2{bottom:884.428667pt;}
.y13a{bottom:884.428800pt;}
.y11c{bottom:884.695467pt;}
.ye7{bottom:888.855663pt;}
.y1c4{bottom:890.828667pt;}
.y13c{bottom:890.828800pt;}
.y32{bottom:895.370133pt;}
.y207{bottom:895.374133pt;}
.y1b5{bottom:898.688267pt;}
.y4{bottom:900.165867pt;}
.y17d{bottom:900.290133pt;}
.y11b{bottom:900.823467pt;}
.y1c0{bottom:906.967333pt;}
.y138{bottom:906.967467pt;}
.y31{bottom:911.370133pt;}
.y206{bottom:911.372133pt;}
.y1bf{bottom:913.367333pt;}
.y137{bottom:913.367467pt;}
.y1b4{bottom:914.816267pt;}
.y17c{bottom:916.428800pt;}
.y1c1{bottom:919.767333pt;}
.y139{bottom:919.767467pt;}
.y1f7{bottom:927.170133pt;}
.y3{bottom:927.365867pt;}
.y30{bottom:927.370133pt;}
.y11a{bottom:927.422133pt;}
.y1b3{bottom:930.944267pt;}
.y17b{bottom:932.556800pt;}
.y1bd{bottom:935.895333pt;}
.y136{bottom:935.895467pt;}
.y1bc{bottom:942.295333pt;}
.y1f6{bottom:943.170133pt;}
.y2f{bottom:943.370133pt;}
.y119{bottom:943.418133pt;}
.y1b2{bottom:947.072267pt;}
.y1be{bottom:948.695333pt;}
.y135{bottom:948.695467pt;}
.y2{bottom:954.565867pt;}
.y2e{bottom:959.370133pt;}
.y118{bottom:959.414133pt;}
.y1b1{bottom:963.210933pt;}
.y1bb{bottom:964.823333pt;}
.y134{bottom:964.823467pt;}
.y1f5{bottom:975.170133pt;}
.y68{bottom:975.370133pt;}
.y117{bottom:975.410133pt;}
.y1b0{bottom:979.338933pt;}
.y1f4{bottom:991.170133pt;}
.y67{bottom:991.370133pt;}
.y1ba{bottom:991.374000pt;}
.y133{bottom:991.374133pt;}
.y116{bottom:991.406133pt;}
.y1af{bottom:995.477600pt;}
.y1f3{bottom:1007.170133pt;}
.y1b9{bottom:1007.370000pt;}
.y2d{bottom:1007.370133pt;}
.y115{bottom:1007.402133pt;}
.y1ae{bottom:1011.605600pt;}
.y1f2{bottom:1023.370133pt;}
.y69{bottom:1060.905467pt;}
.y1{bottom:1061.669333pt;}
.y2c{bottom:1061.670133pt;}
.y28{bottom:1062.039733pt;}
.y2b{bottom:1062.040533pt;}
.h1a{height:21.383648pt;}
.h1b{height:24.480331pt;}
.h16{height:25.840494pt;}
.h15{height:27.189244pt;}
.h14{height:27.200656pt;}
.h19{height:27.221926pt;}
.h12{height:28.916667pt;}
.hd{height:29.482031pt;}
.h7{height:29.625000pt;}
.hc{height:30.800000pt;}
.h20{height:33.750000pt;}
.h2{height:36.960000pt;}
.h6{height:37.437500pt;}
.hb{height:37.968750pt;}
.h10{height:40.018667pt;}
.h1c{height:41.020000pt;}
.h17{height:41.664751pt;}
.ha{height:42.117188pt;}
.hf{height:42.187500pt;}
.h8{height:42.770833pt;}
.h21{height:44.457031pt;}
.h23{height:46.756875pt;}
.h22{height:46.772875pt;}
.he{height:46.796875pt;}
.h11{height:46.880000pt;}
.h1d{height:47.596875pt;}
.h18{height:52.998841pt;}
.h9{height:54.693333pt;}
.h4{height:56.156250pt;}
.h5{height:56.156783pt;}
.h1e{height:63.037500pt;}
.h1f{height:63.175781pt;}
.h3{height:66.413333pt;}
.h13{height:894.482667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:627.401333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:1.963661pt;}
.x33{left:15.732933pt;}
.x34{left:27.073359pt;}
.x2{left:68.031467pt;}
.xc{left:71.977733pt;}
.x9{left:83.151467pt;}
.x3{left:94.484800pt;}
.x5{left:98.267733pt;}
.x35{left:102.213867pt;}
.x6{left:113.387600pt;}
.x2e{left:137.154800pt;}
.x4c{left:145.787733pt;}
.xd{left:150.402933pt;}
.x55{left:151.364800pt;}
.x1f{left:177.855037pt;}
.x30{left:186.062400pt;}
.x32{left:194.305067pt;}
.x2f{left:197.417957pt;}
.x1b{left:198.589774pt;}
.x31{left:199.496000pt;}
.x10{left:200.750182pt;}
.x56{left:202.778133pt;}
.x13{left:203.678941pt;}
.x17{left:205.667773pt;}
.x28{left:207.276454pt;}
.x1d{left:209.996460pt;}
.x26{left:211.090651pt;}
.x2b{left:217.581598pt;}
.x29{left:219.488697pt;}
.xe{left:221.891733pt;}
.x12{left:223.315246pt;}
.x16{left:224.227929pt;}
.x15{left:225.596954pt;}
.xf{left:226.836568pt;}
.x27{left:228.159185pt;}
.x1c{left:229.196857pt;}
.x25{left:230.379267pt;}
.x14{left:232.067467pt;}
.x1a{left:233.278536pt;}
.x2a{left:234.684186pt;}
.x20{left:236.198634pt;}
.x11{left:237.890929pt;}
.x2c{left:239.036458pt;}
.x21{left:240.353384pt;}
.x19{left:245.355858pt;}
.x3b{left:253.395067pt;}
.x42{left:257.174667pt;}
.x1e{left:258.627476pt;}
.x54{left:271.364800pt;}
.x41{left:276.073733pt;}
.x43{left:287.410800pt;}
.x39{left:307.214400pt;}
.x3c{left:332.765733pt;}
.x4b{left:347.627733pt;}
.x18{left:364.774290pt;}
.x49{left:385.695067pt;}
.x4{left:386.603733pt;}
.x3a{left:387.987733pt;}
.xa{left:391.178133pt;}
.x46{left:394.618133pt;}
.x36{left:399.031467pt;}
.xb{left:406.298133pt;}
.x3d{left:412.136400pt;}
.x37{left:418.338133pt;}
.x7{left:421.414267pt;}
.x47{left:434.458133pt;}
.x8{left:436.534267pt;}
.x45{left:446.924800pt;}
.x51{left:448.387733pt;}
.x22{left:472.919200pt;}
.x24{left:480.056417pt;}
.x23{left:490.047042pt;}
.x3e{left:491.507067pt;}
.x52{left:503.441067pt;}
.x50{left:515.427733pt;}
.x44{left:527.578133pt;}
.x38{left:533.551467pt;}
.x4a{left:542.548400pt;}
.x3f{left:570.877733pt;}
.x4f{left:592.574400pt;}
.x4e{left:593.814400pt;}
.x40{left:650.248400pt;}
.x48{left:656.924800pt;}
.x53{left:664.947733pt;}
.x4d{left:673.667733pt;}
.x1{left:675.225333pt;}
}




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