
    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_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.846000;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_052edfd3459129b595423438.woff')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_39c256d6653dffbb11b8dbc3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.634000;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_c8918762b383ce60b49f5a56.woff')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_296668e63260c09b82e3d216.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948000;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_1f9a66a36e337153d53a32ac.woff')format("woff");}.ff6{font-family:ff6;line-height:0.840000;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_6d4a37a391afdb4a88cf4e34.woff')format("woff");}.ff7{font-family:ff7;line-height:0.707000;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_9606fa2591f69eeabd8ccb9a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.834000;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_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.846000;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_052edfd3459129b595423438.woff')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_39c256d6653dffbb11b8dbc3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.634000;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_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.846000;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_c8024920891680e666e2b98e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.846000;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_8b45015cd811e8b864c1ecde.woff')format("woff");}.fff{font-family:fff;line-height:0.948000;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_2274adc8001fc77a148f8e41.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.846000;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:ff12;src:url('chunks/assets/font_052edfd3459129b595423438.woff')format("woff");}.ff12{font-family:ff12;line-height:0.734000;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:ff13;src:url('chunks/assets/font_39c256d6653dffbb11b8dbc3.woff')format("woff");}.ff13{font-family:ff13;line-height:0.634000;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:ff14;src:url('chunks/assets/font_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ff14{font-family:ff14;line-height:0.846000;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:ff15;src:url('chunks/assets/font_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ff15{font-family:ff15;line-height:0.846000;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:ff16;src:url('chunks/assets/font_052edfd3459129b595423438.woff')format("woff");}.ff16{font-family:ff16;line-height:0.734000;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:ff17;src:url('chunks/assets/font_39c256d6653dffbb11b8dbc3.woff')format("woff");}.ff17{font-family:ff17;line-height:0.634000;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:ff18;src:url('chunks/assets/font_461d8e5c10b0d786eb4557aa.woff')format("woff");}.ff18{font-family:ff18;line-height:0.846000;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:ff19;src:url('chunks/assets/font_8b45015cd811e8b864c1ecde.woff')format("woff");}.ff19{font-family:ff19;line-height:0.948000;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:ff1a;src:url('chunks/assets/font_ef2285c72b789f6488c5b396.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.005371;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:ff1b;src:url('chunks/assets/font_f79834c0c18f6a6ad7126474.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_39c256d6653dffbb11b8dbc3.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.634000;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.836000px;}
.lsb{letter-spacing:-1.674000px;}
.ls18{letter-spacing:-1.620000px;}
.lsc{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.486000px;}
.ls17{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.864000px;}
.ls11{letter-spacing:1.552200px;}
.ls0{letter-spacing:1.814400px;}
.ls3{letter-spacing:1.815000px;}
.ls4{letter-spacing:4.045800px;}
.lsa{letter-spacing:10.705800px;}
.lse{letter-spacing:15.895800px;}
.ls5{letter-spacing:19.497000px;}
.ls12{letter-spacing:20.807400px;}
.lsf{letter-spacing:23.362200px;}
.ls13{letter-spacing:23.822400px;}
.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;}
}
.ws89{word-spacing:-60.000000px;}
.ws3{word-spacing:-20.352000px;}
.ws102{word-spacing:-16.680000px;}
.ws1{word-spacing:-15.912000px;}
.ws2{word-spacing:-15.264000px;}
.ws4{word-spacing:-13.260000px;}
.wsc{word-spacing:-12.720000px;}
.ws169{word-spacing:-11.934000px;}
.ws52{word-spacing:-11.826000px;}
.wse6{word-spacing:-11.664000px;}
.ws53{word-spacing:-11.448000px;}
.wse5{word-spacing:-10.908000px;}
.ws181{word-spacing:-10.314000px;}
.wse4{word-spacing:-9.774000px;}
.ws3d{word-spacing:-7.260000px;}
.ws85{word-spacing:-5.940000px;}
.wsa3{word-spacing:-4.740000px;}
.ws67{word-spacing:-4.620000px;}
.wsb1{word-spacing:-4.500000px;}
.ws73{word-spacing:-4.140000px;}
.wsf5{word-spacing:-3.720000px;}
.wsa5{word-spacing:-3.660000px;}
.ws81{word-spacing:-3.600000px;}
.wsb3{word-spacing:-3.540000px;}
.wsb4{word-spacing:-3.360000px;}
.wsb2{word-spacing:-3.240000px;}
.wsc3{word-spacing:-3.180000px;}
.ws41{word-spacing:-3.120000px;}
.ws40{word-spacing:-3.000000px;}
.ws9b{word-spacing:-2.940000px;}
.ws12b{word-spacing:-2.718000px;}
.ws9a{word-spacing:-2.700000px;}
.ws80{word-spacing:-2.400000px;}
.ws63{word-spacing:-2.220000px;}
.ws8d{word-spacing:-2.160000px;}
.ws14a{word-spacing:-2.100000px;}
.ws68{word-spacing:-2.040000px;}
.wsb6{word-spacing:-2.004000px;}
.ws6f{word-spacing:-1.980000px;}
.ws31{word-spacing:-1.860000px;}
.ws94{word-spacing:-1.740000px;}
.ws7d{word-spacing:-1.680000px;}
.wsa8{word-spacing:-1.620000px;}
.wsaf{word-spacing:-1.560000px;}
.wsee{word-spacing:-1.500000px;}
.wsfe{word-spacing:-1.380000px;}
.wsa1{word-spacing:-1.320000px;}
.ws82{word-spacing:-1.260000px;}
.ws170{word-spacing:-1.200000px;}
.ws96{word-spacing:-1.140000px;}
.wsf{word-spacing:-1.080000px;}
.ws100{word-spacing:-1.026000px;}
.ws7e{word-spacing:-1.020000px;}
.wsff{word-spacing:-0.972000px;}
.wsa4{word-spacing:-0.960000px;}
.ws17f{word-spacing:-0.918000px;}
.wsa0{word-spacing:-0.900000px;}
.ws159{word-spacing:-0.840000px;}
.wsa2{word-spacing:-0.780000px;}
.ws9e{word-spacing:-0.720000px;}
.ws180{word-spacing:-0.648000px;}
.ws141{word-spacing:-0.600000px;}
.wsd6{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.480000px;}
.ws9d{word-spacing:-0.420000px;}
.ws153{word-spacing:-0.378000px;}
.wsbc{word-spacing:-0.300000px;}
.wsae{word-spacing:-0.240000px;}
.ws182{word-spacing:-0.216000px;}
.wsb0{word-spacing:-0.180000px;}
.wse1{word-spacing:-0.120000px;}
.ws0{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.wsa9{word-spacing:0.060000px;}
.ws3b{word-spacing:0.120000px;}
.ws4c{word-spacing:0.180000px;}
.ws12e{word-spacing:0.300000px;}
.ws12c{word-spacing:0.420000px;}
.ws10c{word-spacing:0.480000px;}
.wsf6{word-spacing:0.540000px;}
.wsfd{word-spacing:0.600000px;}
.ws128{word-spacing:0.720000px;}
.ws130{word-spacing:0.780000px;}
.wsf9{word-spacing:0.900000px;}
.ws34{word-spacing:1.020000px;}
.ws168{word-spacing:1.026000px;}
.ws10d{word-spacing:1.080000px;}
.ws20{word-spacing:1.260000px;}
.wsbd{word-spacing:1.320000px;}
.wsc6{word-spacing:1.380000px;}
.ws163{word-spacing:1.512000px;}
.ws164{word-spacing:1.566000px;}
.wsd4{word-spacing:1.620000px;}
.ws9{word-spacing:1.656000px;}
.ws49{word-spacing:1.680000px;}
.ws17e{word-spacing:1.782000px;}
.wscf{word-spacing:1.800000px;}
.ws5{word-spacing:1.836000px;}
.wsa7{word-spacing:1.920000px;}
.ws17c{word-spacing:2.100000px;}
.ws76{word-spacing:2.160000px;}
.ws7{word-spacing:2.268000px;}
.ws136{word-spacing:2.280000px;}
.wsad{word-spacing:2.460000px;}
.wsf4{word-spacing:2.520000px;}
.wsd8{word-spacing:2.580000px;}
.ws165{word-spacing:2.592000px;}
.ws59{word-spacing:2.640000px;}
.ws8c{word-spacing:2.700000px;}
.wsb5{word-spacing:2.796000px;}
.ws154{word-spacing:3.000000px;}
.ws4a{word-spacing:3.120000px;}
.ws104{word-spacing:3.240000px;}
.ws4e{word-spacing:3.360000px;}
.wsd3{word-spacing:3.480000px;}
.ws5a{word-spacing:3.540000px;}
.wsf2{word-spacing:3.600000px;}
.ws101{word-spacing:3.618000px;}
.ws13d{word-spacing:3.660000px;}
.ws12a{word-spacing:3.720000px;}
.ws19{word-spacing:3.780000px;}
.ws125{word-spacing:3.840000px;}
.ws10e{word-spacing:4.080000px;}
.ws3e{word-spacing:4.200000px;}
.wsa{word-spacing:4.248000px;}
.ws17{word-spacing:4.320000px;}
.ws62{word-spacing:4.380000px;}
.wsb{word-spacing:4.440000px;}
.ws158{word-spacing:4.680000px;}
.ws1e{word-spacing:4.800000px;}
.ws8b{word-spacing:4.920000px;}
.ws74{word-spacing:5.040000px;}
.wsf0{word-spacing:5.100000px;}
.ws137{word-spacing:5.160000px;}
.ws27{word-spacing:5.220000px;}
.ws103{word-spacing:5.280000px;}
.wsac{word-spacing:5.340000px;}
.ws4f{word-spacing:5.460000px;}
.ws123{word-spacing:5.520000px;}
.ws2c{word-spacing:5.640000px;}
.ws18{word-spacing:5.700000px;}
.ws2a{word-spacing:5.760000px;}
.ws11{word-spacing:5.820000px;}
.ws6d{word-spacing:5.880000px;}
.ws7c{word-spacing:6.000000px;}
.wscd{word-spacing:6.060000px;}
.wsd5{word-spacing:6.120000px;}
.ws11b{word-spacing:6.180000px;}
.ws15{word-spacing:6.240000px;}
.ws45{word-spacing:6.300000px;}
.ws24{word-spacing:6.360000px;}
.ws109{word-spacing:6.420000px;}
.ws10a{word-spacing:6.480000px;}
.ws155{word-spacing:6.540000px;}
.ws57{word-spacing:6.720000px;}
.ws17d{word-spacing:6.780000px;}
.ws99{word-spacing:6.960000px;}
.wsfa{word-spacing:7.020000px;}
.ws86{word-spacing:7.074000px;}
.wse{word-spacing:7.080000px;}
.wsc4{word-spacing:7.200000px;}
.wsab{word-spacing:7.260000px;}
.ws9c{word-spacing:7.320000px;}
.wsce{word-spacing:7.380000px;}
.ws87{word-spacing:7.398000px;}
.ws4b{word-spacing:7.560000px;}
.ws12{word-spacing:7.620000px;}
.ws8{word-spacing:7.632000px;}
.ws26{word-spacing:7.680000px;}
.ws5b{word-spacing:7.740000px;}
.ws6e{word-spacing:7.800000px;}
.ws42{word-spacing:7.920000px;}
.wsbb{word-spacing:7.980000px;}
.ws16a{word-spacing:8.040000px;}
.ws111{word-spacing:8.100000px;}
.ws138{word-spacing:8.160000px;}
.ws79{word-spacing:8.400000px;}
.ws3a{word-spacing:8.460000px;}
.wscc{word-spacing:8.520000px;}
.ws13c{word-spacing:8.580000px;}
.ws56{word-spacing:8.640000px;}
.ws28{word-spacing:8.880000px;}
.ws2f{word-spacing:8.940000px;}
.ws14d{word-spacing:9.000000px;}
.ws32{word-spacing:9.060000px;}
.ws77{word-spacing:9.180000px;}
.wsf1{word-spacing:9.240000px;}
.ws17b{word-spacing:9.300000px;}
.ws11d{word-spacing:9.360000px;}
.ws16b{word-spacing:9.600000px;}
.ws64{word-spacing:9.660000px;}
.ws110{word-spacing:9.720000px;}
.wsed{word-spacing:9.780000px;}
.ws23{word-spacing:9.840000px;}
.ws16c{word-spacing:9.900000px;}
.wsde{word-spacing:9.960000px;}
.ws7f{word-spacing:10.020000px;}
.ws1f{word-spacing:10.140000px;}
.ws9f{word-spacing:10.200000px;}
.wsda{word-spacing:10.260000px;}
.ws48{word-spacing:10.500000px;}
.ws88{word-spacing:10.530000px;}
.ws36{word-spacing:10.560000px;}
.wsbf{word-spacing:10.620000px;}
.wsdb{word-spacing:10.692000px;}
.wsd2{word-spacing:10.800000px;}
.ws2b{word-spacing:10.860000px;}
.ws13b{word-spacing:10.920000px;}
.ws108{word-spacing:10.980000px;}
.ws7b{word-spacing:11.100000px;}
.wsb9{word-spacing:11.160000px;}
.wsc9{word-spacing:11.280000px;}
.ws14{word-spacing:11.460000px;}
.ws12d{word-spacing:11.520000px;}
.ws132{word-spacing:11.580000px;}
.wsf8{word-spacing:11.640000px;}
.ws90{word-spacing:11.700000px;}
.ws60{word-spacing:11.880000px;}
.ws116{word-spacing:11.940000px;}
.ws78{word-spacing:12.120000px;}
.ws30{word-spacing:12.300000px;}
.ws91{word-spacing:12.480000px;}
.ws139{word-spacing:12.540000px;}
.wsc1{word-spacing:12.600000px;}
.ws16f{word-spacing:12.660000px;}
.ws35{word-spacing:12.780000px;}
.ws107{word-spacing:12.840000px;}
.ws1b{word-spacing:12.900000px;}
.ws129{word-spacing:12.960000px;}
.ws174{word-spacing:13.020000px;}
.ws113{word-spacing:13.080000px;}
.ws2d{word-spacing:13.140000px;}
.ws29{word-spacing:13.200000px;}
.ws51{word-spacing:13.320000px;}
.wsd9{word-spacing:13.380000px;}
.ws150{word-spacing:13.440000px;}
.ws55{word-spacing:13.500000px;}
.ws5f{word-spacing:13.560000px;}
.wsd1{word-spacing:13.800000px;}
.ws134{word-spacing:13.860000px;}
.ws70{word-spacing:13.980000px;}
.ws13a{word-spacing:14.100000px;}
.ws5e{word-spacing:14.160000px;}
.ws179{word-spacing:14.520000px;}
.ws142{word-spacing:14.640000px;}
.wsaa{word-spacing:14.700000px;}
.wsfb{word-spacing:14.760000px;}
.ws25{word-spacing:14.820000px;}
.ws144{word-spacing:14.880000px;}
.wse3{word-spacing:14.940000px;}
.ws5c{word-spacing:15.060000px;}
.wsba{word-spacing:15.180000px;}
.ws117{word-spacing:15.228000px;}
.ws43{word-spacing:15.240000px;}
.wsf3{word-spacing:15.360000px;}
.ws46{word-spacing:15.420000px;}
.ws37{word-spacing:15.480000px;}
.ws151{word-spacing:15.540000px;}
.ws133{word-spacing:15.600000px;}
.ws75{word-spacing:15.660000px;}
.wse9{word-spacing:15.720000px;}
.ws118{word-spacing:15.876000px;}
.ws44{word-spacing:15.900000px;}
.ws10{word-spacing:16.020000px;}
.wsc2{word-spacing:16.080000px;}
.ws92{word-spacing:16.380000px;}
.ws126{word-spacing:16.740000px;}
.ws17a{word-spacing:16.920000px;}
.ws13{word-spacing:16.980000px;}
.ws14f{word-spacing:17.040000px;}
.ws66{word-spacing:17.160000px;}
.wsdf{word-spacing:17.280000px;}
.ws38{word-spacing:17.340000px;}
.ws39{word-spacing:17.400000px;}
.ws10b{word-spacing:17.460000px;}
.ws161{word-spacing:17.520000px;}
.ws112{word-spacing:17.580000px;}
.ws124{word-spacing:17.700000px;}
.wsd0{word-spacing:17.760000px;}
.wsdd{word-spacing:17.820000px;}
.ws160{word-spacing:17.940000px;}
.ws162{word-spacing:18.060000px;}
.ws135{word-spacing:18.180000px;}
.wsc0{word-spacing:18.300000px;}
.ws72{word-spacing:18.420000px;}
.wsc5{word-spacing:18.600000px;}
.ws1c{word-spacing:18.660000px;}
.ws83{word-spacing:18.780000px;}
.ws120{word-spacing:18.840000px;}
.ws177{word-spacing:18.960000px;}
.ws1d{word-spacing:19.020000px;}
.ws6b{word-spacing:19.260000px;}
.ws114{word-spacing:19.320000px;}
.ws95{word-spacing:19.500000px;}
.ws143{word-spacing:19.560000px;}
.wsa6{word-spacing:19.920000px;}
.ws166{word-spacing:19.980000px;}
.ws22{word-spacing:20.100000px;}
.wsc7{word-spacing:20.280000px;}
.ws3f{word-spacing:20.340000px;}
.ws115{word-spacing:20.520000px;}
.ws167{word-spacing:20.790000px;}
.ws2e{word-spacing:21.000000px;}
.wscb{word-spacing:21.120000px;}
.ws13e{word-spacing:21.180000px;}
.ws145{word-spacing:21.240000px;}
.ws1a{word-spacing:21.420000px;}
.ws156{word-spacing:21.600000px;}
.ws69{word-spacing:21.780000px;}
.ws6c{word-spacing:21.840000px;}
.ws152{word-spacing:21.960000px;}
.ws15e{word-spacing:22.020000px;}
.ws10f{word-spacing:22.200000px;}
.ws21{word-spacing:22.260000px;}
.ws50{word-spacing:22.380000px;}
.ws121{word-spacing:22.440000px;}
.ws11c{word-spacing:22.500000px;}
.ws58{word-spacing:22.740000px;}
.wsbe{word-spacing:22.800000px;}
.ws172{word-spacing:22.860000px;}
.ws4d{word-spacing:22.920000px;}
.ws175{word-spacing:22.980000px;}
.wsb7{word-spacing:23.160000px;}
.ws122{word-spacing:23.340000px;}
.ws13f{word-spacing:23.400000px;}
.ws171{word-spacing:23.820000px;}
.ws65{word-spacing:24.180000px;}
.ws11a{word-spacing:24.240000px;}
.wse7{word-spacing:24.540000px;}
.ws119{word-spacing:24.840000px;}
.ws98{word-spacing:24.960000px;}
.ws127{word-spacing:25.440000px;}
.ws16d{word-spacing:25.500000px;}
.ws3c{word-spacing:25.560000px;}
.ws14e{word-spacing:25.920000px;}
.wsc8{word-spacing:26.400000px;}
.ws173{word-spacing:26.880000px;}
.ws14c{word-spacing:27.060000px;}
.wsca{word-spacing:28.080000px;}
.ws5d{word-spacing:28.140000px;}
.ws71{word-spacing:28.260000px;}
.ws12f{word-spacing:28.500000px;}
.ws16e{word-spacing:28.620000px;}
.wsdc{word-spacing:28.680000px;}
.ws84{word-spacing:29.040000px;}
.wse2{word-spacing:29.340000px;}
.wsfc{word-spacing:29.400000px;}
.wsd7{word-spacing:29.760000px;}
.wsea{word-spacing:29.820000px;}
.ws147{word-spacing:29.880000px;}
.ws105{word-spacing:30.120000px;}
.ws149{word-spacing:30.240000px;}
.ws15a{word-spacing:30.900000px;}
.ws47{word-spacing:31.140000px;}
.ws8f{word-spacing:31.200000px;}
.ws6a{word-spacing:31.620000px;}
.wse8{word-spacing:31.860000px;}
.ws54{word-spacing:32.220000px;}
.ws106{word-spacing:34.380000px;}
.ws178{word-spacing:34.740000px;}
.ws93{word-spacing:35.580000px;}
.ws140{word-spacing:35.940000px;}
.ws157{word-spacing:36.060000px;}
.ws176{word-spacing:38.040000px;}
.wsec{word-spacing:38.880000px;}
.ws33{word-spacing:39.120000px;}
.ws131{word-spacing:39.600000px;}
.ws15d{word-spacing:40.200000px;}
.ws146{word-spacing:40.800000px;}
.ws148{word-spacing:40.860000px;}
.ws61{word-spacing:40.980000px;}
.ws15b{word-spacing:41.520000px;}
.wse0{word-spacing:41.700000px;}
.wsef{word-spacing:41.940000px;}
.ws15f{word-spacing:42.420000px;}
.ws15c{word-spacing:42.600000px;}
.ws7a{word-spacing:44.160000px;}
.ws14b{word-spacing:44.640000px;}
.wsb8{word-spacing:45.240000px;}
.ws8e{word-spacing:45.600000px;}
.ws97{word-spacing:45.840000px;}
.ws11f{word-spacing:49.680000px;}
.ws8a{word-spacing:50.040000px;}
.wsd{word-spacing:58.260000px;}
.ws11e{word-spacing:62.520000px;}
.wsf7{word-spacing:68.340000px;}
.wseb{word-spacing:69.840000px;}
._7{margin-left:-2499.209400px;}
._d{margin-left:-44.280000px;}
._15{margin-left:-31.177800px;}
._12{margin-left:-20.707200px;}
._e{margin-left:-18.360000px;}
._c{margin-left:-17.040000px;}
._13{margin-left:-15.072000px;}
._6{margin-left:-9.360000px;}
._a{margin-left:-8.332800px;}
._1{margin-left:-6.360000px;}
._5{margin-left:-4.422600px;}
._3{margin-left:-2.520000px;}
._2{margin-left:-1.337400px;}
._4{width:1.072800px;}
._8{width:2.077800px;}
._f{width:3.180000px;}
._b{width:5.040000px;}
._11{width:9.349200px;}
._10{width:18.202800px;}
._16{width:34.726200px;}
._17{width:1283.527200px;}
._14{width:1293.031200px;}
._9{width:1295.461200px;}
._0{width:1301.293200px;}
.fc3{color:rgb(48,88,159);}
.fc2{color:rgb(239,38,157);}
.fc1{color:rgb(68,65,65);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.201450px;}
.y6c{bottom:85.021800px;}
.y8d{bottom:85.039350px;}
.y297{bottom:85.540800px;}
.y146{bottom:85.854450px;}
.y48{bottom:86.297400px;}
.yda{bottom:88.653600px;}
.y263{bottom:88.829550px;}
.y23c{bottom:89.037450px;}
.y1b4{bottom:90.596550px;}
.y213{bottom:93.395850px;}
.y108{bottom:93.998250px;}
.y18b{bottom:94.824900px;}
.y1fa{bottom:96.903600px;}
.y21c{bottom:97.784100px;}
.yac{bottom:98.497050px;}
.y1e2{bottom:99.630750px;}
.y296{bottom:100.240800px;}
.y6b{bottom:103.021800px;}
.y145{bottom:103.104450px;}
.y16d{bottom:103.356150px;}
.y135{bottom:103.360350px;}
.y262{bottom:103.529550px;}
.y8c{bottom:103.591650px;}
.y15a{bottom:103.781400px;}
.y47{bottom:104.297400px;}
.yd9{bottom:106.705200px;}
.y23b{bottom:107.037450px;}
.y1b3{bottom:108.596550px;}
.y21b{bottom:111.284100px;}
.y212{bottom:111.395850px;}
.y107{bottom:111.998250px;}
.y18a{bottom:112.824900px;}
.y1f9{bottom:114.903600px;}
.y295{bottom:114.940800px;}
.yab{bottom:116.497050px;}
.y1e1{bottom:117.630750px;}
.y261{bottom:118.229550px;}
.y144{bottom:120.354450px;}
.y6a{bottom:121.021800px;}
.y16c{bottom:121.673100px;}
.y134{bottom:121.681500px;}
.y8b{bottom:122.144100px;}
.y46{bottom:122.297400px;}
.y159{bottom:122.523450px;}
.y21a{bottom:124.784100px;}
.y23a{bottom:125.037450px;}
.y1b2{bottom:126.596550px;}
.y211{bottom:129.395700px;}
.y294{bottom:129.640800px;}
.y106{bottom:129.998250px;}
.y189{bottom:130.824900px;}
.yd8{bottom:132.410550px;}
.y1f8{bottom:132.903600px;}
.y260{bottom:132.929700px;}
.yaa{bottom:134.497050px;}
.y1e0{bottom:135.630750px;}
.y143{bottom:137.604450px;}
.y69{bottom:139.021800px;}
.y16b{bottom:139.989900px;}
.y133{bottom:140.002650px;}
.y45{bottom:140.297400px;}
.y8a{bottom:140.696400px;}
.y158{bottom:141.265500px;}
.y239{bottom:143.037450px;}
.y293{bottom:144.340800px;}
.y1b1{bottom:144.596550px;}
.y210{bottom:147.395700px;}
.y25f{bottom:147.629550px;}
.y105{bottom:147.998250px;}
.y188{bottom:148.824900px;}
.yd7{bottom:150.462450px;}
.y1f7{bottom:150.903600px;}
.ya9{bottom:152.497050px;}
.y1df{bottom:153.630750px;}
.y142{bottom:154.854450px;}
.y68{bottom:157.021800px;}
.y44{bottom:158.297400px;}
.y16a{bottom:158.306700px;}
.y132{bottom:158.323650px;}
.y89{bottom:159.248700px;}
.y157{bottom:160.007550px;}
.y238{bottom:161.037450px;}
.y25e{bottom:162.329550px;}
.y1b0{bottom:162.596550px;}
.y20f{bottom:165.395700px;}
.y187{bottom:166.824900px;}
.y292{bottom:167.544750px;}
.yd6{bottom:168.514200px;}
.y1f6{bottom:168.903600px;}
.y104{bottom:170.250150px;}
.ya8{bottom:170.497050px;}
.y1de{bottom:171.630750px;}
.y67{bottom:175.021800px;}
.y43{bottom:176.297400px;}
.y169{bottom:176.623500px;}
.y131{bottom:176.644800px;}
.y25d{bottom:177.029550px;}
.y88{bottom:177.801150px;}
.y156{bottom:178.749600px;}
.y1af{bottom:180.596550px;}
.y141{bottom:180.608400px;}
.y291{bottom:182.244750px;}
.y237{bottom:183.289350px;}
.y20e{bottom:183.395700px;}
.y186{bottom:184.824900px;}
.y1f5{bottom:186.903600px;}
.y103{bottom:188.250150px;}
.y1dd{bottom:189.630750px;}
.yd5{bottom:190.817850px;}
.y25c{bottom:191.729550px;}
.y66{bottom:193.021800px;}
.y42{bottom:194.297250px;}
.y168{bottom:194.940450px;}
.y130{bottom:194.965800px;}
.y87{bottom:196.353450px;}
.y19{bottom:196.927650px;}
.y290{bottom:196.944750px;}
.ya7{bottom:197.001000px;}
.y155{bottom:197.491500px;}
.y140{bottom:197.858400px;}
.y1ae{bottom:198.596550px;}
.y236{bottom:201.289500px;}
.y20d{bottom:201.395700px;}
.y185{bottom:202.824900px;}
.y1f4{bottom:204.903600px;}
.y102{bottom:206.250150px;}
.yd4{bottom:208.869750px;}
.y65{bottom:211.021800px;}
.y28f{bottom:211.644750px;}
.y41{bottom:212.297250px;}
.y167{bottom:213.257250px;}
.y86{bottom:214.905750px;}
.y18{bottom:214.927650px;}
.y25b{bottom:214.933500px;}
.y13f{bottom:215.108400px;}
.y1dc{bottom:216.134700px;}
.y154{bottom:216.233550px;}
.y1ad{bottom:216.596550px;}
.ya6{bottom:219.252900px;}
.y235{bottom:219.289500px;}
.y20c{bottom:219.395700px;}
.y184{bottom:220.824900px;}
.y12f{bottom:221.790900px;}
.y1f3{bottom:222.903600px;}
.y101{bottom:224.250150px;}
.y28e{bottom:226.344750px;}
.yd3{bottom:226.921500px;}
.y64{bottom:229.021800px;}
.y25a{bottom:229.633500px;}
.y40{bottom:230.297250px;}
.y166{bottom:231.574050px;}
.y13e{bottom:232.358400px;}
.y85{bottom:233.458200px;}
.y1db{bottom:234.134700px;}
.y1ac{bottom:234.596550px;}
.y153{bottom:234.975600px;}
.y2c1{bottom:237.156600px;}
.ya5{bottom:237.252900px;}
.y20b{bottom:237.395700px;}
.y183{bottom:238.824900px;}
.y12e{bottom:240.111900px;}
.y1f2{bottom:240.903600px;}
.y17{bottom:241.431600px;}
.y234{bottom:245.793300px;}
.y63{bottom:247.021800px;}
.y3f{bottom:248.297250px;}
.y28d{bottom:249.548700px;}
.y13d{bottom:249.608400px;}
.y165{bottom:249.890850px;}
.y100{bottom:250.754100px;}
.y2c0{bottom:251.856600px;}
.y84{bottom:252.010500px;}
.y1da{bottom:252.134700px;}
.y1ab{bottom:252.596550px;}
.yd2{bottom:252.626700px;}
.y259{bottom:252.837450px;}
.y152{bottom:253.717650px;}
.y20a{bottom:255.395700px;}
.y12d{bottom:258.433050px;}
.y1f1{bottom:258.903600px;}
.y182{bottom:263.628000px;}
.ya4{bottom:263.756850px;}
.y233{bottom:263.793300px;}
.y28c{bottom:264.248700px;}
.y62{bottom:265.021800px;}
.y2bf{bottom:266.556600px;}
.y13c{bottom:266.858400px;}
.y258{bottom:267.537450px;}
.y164{bottom:268.207650px;}
.yff{bottom:268.754100px;}
.y1d9{bottom:270.134700px;}
.y83{bottom:270.562800px;}
.y1aa{bottom:270.596550px;}
.y151{bottom:272.459700px;}
.y209{bottom:273.395700px;}
.y3e{bottom:274.801200px;}
.yd1{bottom:274.930500px;}
.y12c{bottom:276.754050px;}
.y1f0{bottom:276.903600px;}
.y2be{bottom:281.256600px;}
.y181{bottom:281.628000px;}
.y232{bottom:281.793300px;}
.y257{bottom:282.237450px;}
.y61{bottom:283.021800px;}
.ya3{bottom:286.008750px;}
.y163{bottom:286.524600px;}
.yfe{bottom:286.754100px;}
.y28b{bottom:287.452650px;}
.y1a9{bottom:288.596550px;}
.y82{bottom:289.115250px;}
.y150{bottom:291.201750px;}
.y208{bottom:291.395700px;}
.y13b{bottom:292.612350px;}
.y1ef{bottom:294.903600px;}
.y12b{bottom:295.075200px;}
.y2bd{bottom:295.956600px;}
.y1d8{bottom:296.638650px;}
.y256{bottom:296.937450px;}
.y231{bottom:299.793300px;}
.yd0{bottom:300.635850px;}
.y60{bottom:301.021800px;}
.y28a{bottom:302.152650px;}
.ya2{bottom:304.008750px;}
.yfd{bottom:304.754100px;}
.y162{bottom:304.841400px;}
.y1a8{bottom:306.596550px;}
.y81{bottom:307.667550px;}
.y207{bottom:309.395700px;}
.y13a{bottom:309.862350px;}
.y14f{bottom:309.943800px;}
.y18e{bottom:310.878600px;}
.y255{bottom:311.637450px;}
.y1ee{bottom:312.903600px;}
.y12a{bottom:313.396200px;}
.y1d7{bottom:314.638650px;}
.y3d{bottom:315.809100px;}
.y289{bottom:316.852650px;}
.y230{bottom:317.793300px;}
.y5f{bottom:319.021800px;}
.y2bc{bottom:319.160550px;}
.yfc{bottom:322.754100px;}
.ycf{bottom:322.939650px;}
.y18d{bottom:324.378600px;}
.y1a7{bottom:324.596550px;}
.y80{bottom:326.219850px;}
.y254{bottom:326.337450px;}
.y139{bottom:327.112350px;}
.y206{bottom:327.395850px;}
.y14e{bottom:328.685850px;}
.ya1{bottom:330.512700px;}
.y1ed{bottom:330.903600px;}
.y161{bottom:331.662150px;}
.y129{bottom:331.717350px;}
.y1d6{bottom:332.638650px;}
.y3c{bottom:333.809100px;}
.y2bb{bottom:333.860400px;}
.y22f{bottom:335.793300px;}
.y5e{bottom:337.021800px;}
.y18c{bottom:337.878600px;}
.y288{bottom:340.056600px;}
.y138{bottom:344.362350px;}
.y7f{bottom:344.772300px;}
.yfb{bottom:345.006000px;}
.y205{bottom:345.395850px;}
.y14d{bottom:347.427750px;}
.ya0{bottom:348.512700px;}
.y2ba{bottom:348.560550px;}
.yce{bottom:348.645000px;}
.y1ec{bottom:348.903600px;}
.y253{bottom:349.541400px;}
.y160{bottom:349.978950px;}
.y128{bottom:350.038350px;}
.y1d5{bottom:350.638650px;}
.y1a6{bottom:351.100500px;}
.y3b{bottom:351.809100px;}
.y287{bottom:354.756600px;}
.y5d{bottom:355.021800px;}
.y16{bottom:360.275250px;}
.y22e{bottom:362.297250px;}
.yfa{bottom:363.006000px;}
.y2b9{bottom:363.260400px;}
.y7e{bottom:363.324600px;}
.y204{bottom:363.395850px;}
.y14c{bottom:366.169800px;}
.ycd{bottom:366.696750px;}
.y1eb{bottom:366.903600px;}
.y15f{bottom:368.295750px;}
.y127{bottom:368.359500px;}
.y1d4{bottom:368.638650px;}
.y1a5{bottom:369.100500px;}
.y3a{bottom:369.809100px;}
.y9f{bottom:370.764750px;}
.y5c{bottom:373.021800px;}
.y137{bottom:374.392350px;}
.y286{bottom:377.960550px;}
.y15{bottom:378.275250px;}
.y22d{bottom:380.297250px;}
.yf9{bottom:381.006000px;}
.y203{bottom:381.395850px;}
.y7d{bottom:381.876900px;}
.ycc{bottom:384.748500px;}
.y1ea{bottom:384.903600px;}
.y14b{bottom:384.911850px;}
.y252{bottom:386.297250px;}
.y2b8{bottom:386.464350px;}
.y15e{bottom:386.612700px;}
.y1d3{bottom:386.638650px;}
.y126{bottom:386.680500px;}
.y1a4{bottom:387.100500px;}
.y39{bottom:387.809100px;}
.y136{bottom:387.892350px;}
.y9e{bottom:388.764750px;}
.y5b{bottom:391.021800px;}
.y285{bottom:392.660550px;}
.y22c{bottom:398.297250px;}
.yf8{bottom:399.006000px;}
.y202{bottom:399.395850px;}
.y7c{bottom:400.429350px;}
.y2b7{bottom:401.164350px;}
.y1e9{bottom:402.903600px;}
.y14a{bottom:403.653900px;}
.y251{bottom:404.297250px;}
.y1d2{bottom:404.638650px;}
.y15d{bottom:404.929500px;}
.y1a3{bottom:405.100500px;}
.y38{bottom:405.809100px;}
.y9d{bottom:406.764750px;}
.ycb{bottom:407.052300px;}
.y284{bottom:407.360400px;}
.y125{bottom:413.505600px;}
.y2b6{bottom:415.864500px;}
.y22b{bottom:416.297250px;}
.yf7{bottom:417.006000px;}
.y201{bottom:417.395850px;}
.y5a{bottom:417.525600px;}
.y7b{bottom:418.981650px;}
.y1e8{bottom:420.903600px;}
.y14{bottom:421.787100px;}
.y283{bottom:422.060550px;}
.y250{bottom:422.297250px;}
.y149{bottom:422.395950px;}
.y1d1{bottom:422.638650px;}
.y1a2{bottom:423.100500px;}
.y15c{bottom:423.246300px;}
.y218{bottom:424.399650px;}
.y9c{bottom:424.764750px;}
.yca{bottom:425.104050px;}
.y2b5{bottom:430.564350px;}
.y124{bottom:431.826750px;}
.y37{bottom:432.313050px;}
.y282{bottom:436.760400px;}
.y7a{bottom:437.533950px;}
.y1e7{bottom:438.903600px;}
.y13{bottom:439.787100px;}
.y24f{bottom:440.297250px;}
.y1d0{bottom:440.638650px;}
.y148{bottom:441.138000px;}
.y15b{bottom:441.563250px;}
.y217{bottom:442.399650px;}
.yf6{bottom:442.659600px;}
.y22a{bottom:442.801200px;}
.yc9{bottom:443.155800px;}
.y200{bottom:443.899650px;}
.y59{bottom:444.029550px;}
.y1a1{bottom:449.604450px;}
.y123{bottom:450.147750px;}
.y36{bottom:450.313050px;}
.y9b{bottom:451.268550px;}
.y281{bottom:451.460550px;}
.y2b4{bottom:453.768300px;}
.y79{bottom:456.086400px;}
.y12{bottom:457.787100px;}
.y24e{bottom:458.297250px;}
.y1cf{bottom:458.638650px;}
.y147{bottom:459.880050px;}
.y216{bottom:460.399650px;}
.yf5{bottom:460.659600px;}
.y229{bottom:460.801200px;}
.y1ff{bottom:461.899650px;}
.y58{bottom:462.029550px;}
.y1e6{bottom:465.407550px;}
.y280{bottom:466.160550px;}
.y1a0{bottom:467.604450px;}
.y35{bottom:468.313050px;}
.y2b3{bottom:468.468300px;}
.y122{bottom:468.468900px;}
.yc8{bottom:468.861150px;}
.y9a{bottom:469.268550px;}
.y78{bottom:474.638700px;}
.y11{bottom:475.787100px;}
.y24d{bottom:476.297250px;}
.y1ce{bottom:476.638650px;}
.y215{bottom:478.399650px;}
.yf4{bottom:478.659600px;}
.y228{bottom:478.801200px;}
.y1fe{bottom:479.899650px;}
.y57{bottom:480.029550px;}
.y2b2{bottom:483.168300px;}
.y1e5{bottom:483.407550px;}
.y19f{bottom:485.604450px;}
.y34{bottom:486.313050px;}
.y121{bottom:486.789900px;}
.yc7{bottom:486.912900px;}
.y99{bottom:487.268550px;}
.y27f{bottom:489.364500px;}
.y77{bottom:493.191150px;}
.y170{bottom:493.382550px;}
.y24c{bottom:494.297250px;}
.y1cd{bottom:494.638650px;}
.y214{bottom:496.399650px;}
.yf3{bottom:496.659600px;}
.y227{bottom:496.801200px;}
.y1fd{bottom:497.899650px;}
.y56{bottom:498.029550px;}
.y1e4{bottom:501.407550px;}
.y19e{bottom:503.604450px;}
.y27e{bottom:504.064350px;}
.y33{bottom:504.313050px;}
.yc6{bottom:504.964650px;}
.y120{bottom:505.111050px;}
.y98{bottom:505.268550px;}
.y2b1{bottom:506.372250px;}
.y10{bottom:506.542950px;}
.y16f{bottom:506.882550px;}
.y76{bottom:511.743450px;}
.y24b{bottom:512.297250px;}
.y1cc{bottom:512.638650px;}
.yf2{bottom:514.659600px;}
.y226{bottom:514.801200px;}
.y27d{bottom:518.764500px;}
.y1e3{bottom:519.407550px;}
.y16e{bottom:520.382550px;}
.y2b0{bottom:521.072250px;}
.y32{bottom:522.313050px;}
.yc5{bottom:523.016400px;}
.y97{bottom:523.268550px;}
.y11f{bottom:523.432050px;}
.y55{bottom:524.533500px;}
.y19d{bottom:528.407550px;}
.y75{bottom:530.295750px;}
.y1cb{bottom:530.638650px;}
.yf1{bottom:532.659600px;}
.y219{bottom:533.280150px;}
.y27c{bottom:533.464350px;}
.y2af{bottom:535.772250px;}
.yf{bottom:537.298950px;}
.y24a{bottom:538.801200px;}
.y31{bottom:540.313050px;}
.y96{bottom:541.268550px;}
.y225{bottom:541.305150px;}
.y11e{bottom:541.753200px;}
.yc4{bottom:545.320200px;}
.y19c{bottom:546.407550px;}
.y1fc{bottom:546.780150px;}
.y27b{bottom:548.164350px;}
.y1ca{bottom:548.638650px;}
.y74{bottom:548.848050px;}
.y2ae{bottom:550.472250px;}
.yf0{bottom:550.659600px;}
.y54{bottom:551.037450px;}
.ye{bottom:555.298950px;}
.y30{bottom:558.313050px;}
.y95{bottom:559.268550px;}
.y224{bottom:559.305150px;}
.y11d{bottom:560.074200px;}
.y1fb{bottom:560.280150px;}
.y27a{bottom:562.864500px;}
.yc3{bottom:563.371950px;}
.y19b{bottom:564.407550px;}
.y1c9{bottom:566.638650px;}
.y73{bottom:567.400500px;}
.yef{bottom:568.659600px;}
.y2ad{bottom:573.676200px;}
.y249{bottom:575.557200px;}
.y2f{bottom:576.313050px;}
.y94{bottom:577.268550px;}
.y53{bottom:577.541400px;}
.y11c{bottom:578.395350px;}
.yc2{bottom:581.423700px;}
.yd{bottom:581.802900px;}
.y19a{bottom:582.407550px;}
.y1c8{bottom:584.638650px;}
.y223{bottom:585.809100px;}
.y72{bottom:585.952800px;}
.y279{bottom:586.068300px;}
.y2ac{bottom:588.376200px;}
.yee{bottom:590.911500px;}
.y248{bottom:593.557200px;}
.y2e{bottom:594.313050px;}
.y93{bottom:595.268550px;}
.y11b{bottom:596.716350px;}
.yc1{bottom:599.475450px;}
.y199{bottom:600.407550px;}
.y278{bottom:600.768300px;}
.y1c7{bottom:602.638650px;}
.y2ab{bottom:603.076200px;}
.y222{bottom:603.809100px;}
.y52{bottom:604.045350px;}
.yed{bottom:608.911500px;}
.y247{bottom:611.557200px;}
.y2d{bottom:612.313050px;}
.yc{bottom:612.558750px;}
.y71{bottom:613.009200px;}
.y92{bottom:613.268550px;}
.y11a{bottom:615.037500px;}
.y277{bottom:615.468450px;}
.y2aa{bottom:617.776200px;}
.y1c6{bottom:620.638650px;}
.y221{bottom:621.809100px;}
.yc0{bottom:625.180800px;}
.y198{bottom:625.210650px;}
.yec{bottom:626.911500px;}
.y246{bottom:629.557200px;}
.y276{bottom:630.168300px;}
.y2c{bottom:630.313050px;}
.yb{bottom:630.558750px;}
.y91{bottom:631.268550px;}
.y70{bottom:631.561500px;}
.y119{bottom:633.358650px;}
.y51{bottom:634.801200px;}
.y220{bottom:639.809100px;}
.y2a9{bottom:640.980150px;}
.y197{bottom:643.210650px;}
.ybf{bottom:643.232550px;}
.y275{bottom:644.868300px;}
.yeb{bottom:644.911500px;}
.y1c5{bottom:647.142450px;}
.y245{bottom:647.557200px;}
.y2b{bottom:648.313050px;}
.y90{bottom:649.268550px;}
.y6f{bottom:650.113800px;}
.y118{bottom:651.679650px;}
.y180{bottom:652.464450px;}
.y2a8{bottom:655.680150px;}
.ya{bottom:657.062700px;}
.y21f{bottom:657.809100px;}
.y274{bottom:659.568300px;}
.ybe{bottom:661.284450px;}
.yea{bottom:662.911500px;}
.y1c4{bottom:665.142450px;}
.y244{bottom:665.557200px;}
.y2a{bottom:666.313050px;}
.y8f{bottom:667.268550px;}
.y196{bottom:668.013900px;}
.y6e{bottom:668.666250px;}
.y117{bottom:670.000800px;}
.y2a7{bottom:670.380150px;}
.y17f{bottom:670.736550px;}
.y50{bottom:675.809100px;}
.ybd{bottom:679.336200px;}
.ye9{bottom:680.911500px;}
.y273{bottom:682.772250px;}
.y1c3{bottom:683.142450px;}
.y243{bottom:683.557200px;}
.y29{bottom:684.313050px;}
.y2a6{bottom:685.080150px;}
.y8e{bottom:685.268550px;}
.y195{bottom:686.013900px;}
.y6d{bottom:687.218550px;}
.y9{bottom:687.818550px;}
.y116{bottom:688.321800px;}
.y17e{bottom:689.008650px;}
.y4f{bottom:693.809100px;}
.ybc{bottom:697.387950px;}
.y272{bottom:697.472250px;}
.ye8{bottom:698.911500px;}
.y1c2{bottom:701.142450px;}
.y242{bottom:701.557200px;}
.y28{bottom:702.313050px;}
.y194{bottom:704.013900px;}
.y115{bottom:706.642950px;}
.y17d{bottom:707.280600px;}
.y2a5{bottom:708.284100px;}
.y4e{bottom:711.809100px;}
.y8{bottom:714.322500px;}
.ye7{bottom:716.911500px;}
.y1c1{bottom:719.142450px;}
.y241{bottom:719.557200px;}
.ybb{bottom:719.691750px;}
.y27{bottom:720.313050px;}
.y271{bottom:720.676200px;}
.y193{bottom:722.013900px;}
.y2a4{bottom:722.984100px;}
.y114{bottom:724.963950px;}
.y17c{bottom:725.552700px;}
.yaf{bottom:726.036000px;}
.y21e{bottom:728.817000px;}
.y4d{bottom:729.809100px;}
.y270{bottom:735.376200px;}
.y1c0{bottom:737.142450px;}
.y240{bottom:737.557200px;}
.y2a3{bottom:737.684100px;}
.yba{bottom:737.743500px;}
.y26{bottom:738.313050px;}
.yae{bottom:739.536000px;}
.y192{bottom:740.013900px;}
.ye6{bottom:742.565100px;}
.y113{bottom:743.285100px;}
.y17b{bottom:743.824650px;}
.y7{bottom:745.078500px;}
.y21d{bottom:746.817000px;}
.y2a2{bottom:752.384100px;}
.yad{bottom:753.036000px;}
.y1bf{bottom:755.142450px;}
.y23f{bottom:755.557200px;}
.yb9{bottom:755.795250px;}
.y4c{bottom:756.313050px;}
.y191{bottom:758.013900px;}
.y26f{bottom:758.580150px;}
.ye5{bottom:760.565100px;}
.y112{bottom:761.606100px;}
.y17a{bottom:762.096750px;}
.y6{bottom:763.078500px;}
.y25{bottom:764.817000px;}
.y1be{bottom:773.142450px;}
.y26e{bottom:773.280150px;}
.y23e{bottom:773.557200px;}
.yb8{bottom:773.847000px;}
.y4b{bottom:774.313050px;}
.y2a1{bottom:775.588050px;}
.y190{bottom:776.013750px;}
.ye4{bottom:778.565100px;}
.y111{bottom:779.927250px;}
.y179{bottom:780.368700px;}
.y5{bottom:781.078350px;}
.y24{bottom:782.817000px;}
.y26d{bottom:787.980150px;}
.y2a0{bottom:790.288050px;}
.y1bd{bottom:791.142450px;}
.yb7{bottom:791.898900px;}
.y4a{bottom:792.313050px;}
.y18f{bottom:794.013750px;}
.ye3{bottom:796.565100px;}
.y110{bottom:798.248250px;}
.y178{bottom:798.640800px;}
.y23d{bottom:800.061000px;}
.y23{bottom:800.817000px;}
.y26c{bottom:802.680150px;}
.y29f{bottom:804.988050px;}
.y4{bottom:807.582300px;}
.y1bc{bottom:809.142450px;}
.yb6{bottom:809.950500px;}
.y49{bottom:810.313050px;}
.ye2{bottom:814.565100px;}
.y10f{bottom:816.569400px;}
.y177{bottom:816.912750px;}
.y22{bottom:818.817000px;}
.y29e{bottom:819.688050px;}
.y26b{bottom:825.884100px;}
.y1bb{bottom:827.142450px;}
.yb5{bottom:828.002400px;}
.ye1{bottom:832.565100px;}
.y29d{bottom:834.388050px;}
.y10e{bottom:834.890550px;}
.y176{bottom:835.184850px;}
.y21{bottom:836.817000px;}
.y26a{bottom:840.584100px;}
.y1ba{bottom:845.142450px;}
.yb4{bottom:846.054150px;}
.y29c{bottom:849.088050px;}
.ye0{bottom:850.565100px;}
.y10d{bottom:853.211550px;}
.y175{bottom:853.456950px;}
.y20{bottom:854.817000px;}
.y269{bottom:855.284100px;}
.y29b{bottom:863.788050px;}
.y10c{bottom:871.532700px;}
.y1b9{bottom:871.646550px;}
.y174{bottom:871.728900px;}
.yb3{bottom:872.609850px;}
.y1f{bottom:872.817000px;}
.ydf{bottom:872.817150px;}
.y268{bottom:878.488050px;}
.y29a{bottom:886.992000px;}
.y1b8{bottom:889.646550px;}
.y10b{bottom:889.853700px;}
.y173{bottom:890.000850px;}
.yb2{bottom:890.661600px;}
.y1e{bottom:890.817000px;}
.yde{bottom:890.817150px;}
.y267{bottom:893.188050px;}
.y299{bottom:901.692000px;}
.y3{bottom:905.067150px;}
.y1b7{bottom:907.646550px;}
.y266{bottom:907.888050px;}
.y10a{bottom:908.174850px;}
.y172{bottom:908.272950px;}
.yb1{bottom:908.713500px;}
.y1d{bottom:908.817000px;}
.ydd{bottom:908.817150px;}
.y298{bottom:916.392000px;}
.y1b6{bottom:925.646550px;}
.y109{bottom:926.495850px;}
.y171{bottom:926.545050px;}
.yb0{bottom:926.765100px;}
.y1c{bottom:926.817000px;}
.ydc{bottom:926.817150px;}
.y265{bottom:931.092000px;}
.y2{bottom:935.067150px;}
.y1b5{bottom:943.646550px;}
.y1b{bottom:944.817000px;}
.ydb{bottom:944.817150px;}
.y264{bottom:945.792000px;}
.y1a{bottom:978.874200px;}
.h2{height:35.964000px;}
.hc{height:39.540000px;}
.ha{height:39.960000px;}
.he{height:39.990234px;}
.hd{height:41.472000px;}
.h9{height:46.080000px;}
.hb{height:47.448000px;}
.hf{height:47.460938px;}
.h6{height:47.520000px;}
.h7{height:47.952000px;}
.h5{height:55.440000px;}
.h8{height:63.264000px;}
.h4{height:79.920000px;}
.h3{height:92.160000px;}
.h1{height:1039.500000px;}
.h0{height:1039.606500px;}
.w0{width:773.859000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x3{left:63.779550px;}
.xd{left:77.385750px;}
.xe{left:79.511850px;}
.x1{left:85.039350px;}
.x13{left:106.299150px;}
.x12{left:141.396450px;}
.x2{left:393.307050px;}
.xf{left:406.913400px;}
.x10{left:411.165300px;}
.xb{left:414.567000px;}
.xc{left:428.173350px;}
.x14{left:435.826800px;}
.x7{left:457.177050px;}
.x6{left:462.606450px;}
.xa{left:464.367900px;}
.x4{left:472.141350px;}
.x5{left:480.043800px;}
.x11{left:489.011400px;}
.x9{left:500.646300px;}
.x8{left:511.813200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.632000pt;}
.lsb{letter-spacing:-1.488000pt;}
.ls18{letter-spacing:-1.440000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.432000pt;}
.ls17{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls11{letter-spacing:1.379733pt;}
.ls0{letter-spacing:1.612800pt;}
.ls3{letter-spacing:1.613333pt;}
.ls4{letter-spacing:3.596267pt;}
.lsa{letter-spacing:9.516267pt;}
.lse{letter-spacing:14.129600pt;}
.ls5{letter-spacing:17.330667pt;}
.ls12{letter-spacing:18.495467pt;}
.lsf{letter-spacing:20.766400pt;}
.ls13{letter-spacing:21.175467pt;}
.ws89{word-spacing:-53.333333pt;}
.ws3{word-spacing:-18.090667pt;}
.ws102{word-spacing:-14.826667pt;}
.ws1{word-spacing:-14.144000pt;}
.ws2{word-spacing:-13.568000pt;}
.ws4{word-spacing:-11.786667pt;}
.wsc{word-spacing:-11.306667pt;}
.ws169{word-spacing:-10.608000pt;}
.ws52{word-spacing:-10.512000pt;}
.wse6{word-spacing:-10.368000pt;}
.ws53{word-spacing:-10.176000pt;}
.wse5{word-spacing:-9.696000pt;}
.ws181{word-spacing:-9.168000pt;}
.wse4{word-spacing:-8.688000pt;}
.ws3d{word-spacing:-6.453333pt;}
.ws85{word-spacing:-5.280000pt;}
.wsa3{word-spacing:-4.213333pt;}
.ws67{word-spacing:-4.106667pt;}
.wsb1{word-spacing:-4.000000pt;}
.ws73{word-spacing:-3.680000pt;}
.wsf5{word-spacing:-3.306667pt;}
.wsa5{word-spacing:-3.253333pt;}
.ws81{word-spacing:-3.200000pt;}
.wsb3{word-spacing:-3.146667pt;}
.wsb4{word-spacing:-2.986667pt;}
.wsb2{word-spacing:-2.880000pt;}
.wsc3{word-spacing:-2.826667pt;}
.ws41{word-spacing:-2.773333pt;}
.ws40{word-spacing:-2.666667pt;}
.ws9b{word-spacing:-2.613333pt;}
.ws12b{word-spacing:-2.416000pt;}
.ws9a{word-spacing:-2.400000pt;}
.ws80{word-spacing:-2.133333pt;}
.ws63{word-spacing:-1.973333pt;}
.ws8d{word-spacing:-1.920000pt;}
.ws14a{word-spacing:-1.866667pt;}
.ws68{word-spacing:-1.813333pt;}
.wsb6{word-spacing:-1.781333pt;}
.ws6f{word-spacing:-1.760000pt;}
.ws31{word-spacing:-1.653333pt;}
.ws94{word-spacing:-1.546667pt;}
.ws7d{word-spacing:-1.493333pt;}
.wsa8{word-spacing:-1.440000pt;}
.wsaf{word-spacing:-1.386667pt;}
.wsee{word-spacing:-1.333333pt;}
.wsfe{word-spacing:-1.226667pt;}
.wsa1{word-spacing:-1.173333pt;}
.ws82{word-spacing:-1.120000pt;}
.ws170{word-spacing:-1.066667pt;}
.ws96{word-spacing:-1.013333pt;}
.wsf{word-spacing:-0.960000pt;}
.ws100{word-spacing:-0.912000pt;}
.ws7e{word-spacing:-0.906667pt;}
.wsff{word-spacing:-0.864000pt;}
.wsa4{word-spacing:-0.853333pt;}
.ws17f{word-spacing:-0.816000pt;}
.wsa0{word-spacing:-0.800000pt;}
.ws159{word-spacing:-0.746667pt;}
.wsa2{word-spacing:-0.693333pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws180{word-spacing:-0.576000pt;}
.ws141{word-spacing:-0.533333pt;}
.wsd6{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.426667pt;}
.ws9d{word-spacing:-0.373333pt;}
.ws153{word-spacing:-0.336000pt;}
.wsbc{word-spacing:-0.266667pt;}
.wsae{word-spacing:-0.213333pt;}
.ws182{word-spacing:-0.192000pt;}
.wsb0{word-spacing:-0.160000pt;}
.wse1{word-spacing:-0.106667pt;}
.ws0{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.053333pt;}
.ws3b{word-spacing:0.106667pt;}
.ws4c{word-spacing:0.160000pt;}
.ws12e{word-spacing:0.266667pt;}
.ws12c{word-spacing:0.373333pt;}
.ws10c{word-spacing:0.426667pt;}
.wsf6{word-spacing:0.480000pt;}
.wsfd{word-spacing:0.533333pt;}
.ws128{word-spacing:0.640000pt;}
.ws130{word-spacing:0.693333pt;}
.wsf9{word-spacing:0.800000pt;}
.ws34{word-spacing:0.906667pt;}
.ws168{word-spacing:0.912000pt;}
.ws10d{word-spacing:0.960000pt;}
.ws20{word-spacing:1.120000pt;}
.wsbd{word-spacing:1.173333pt;}
.wsc6{word-spacing:1.226667pt;}
.ws163{word-spacing:1.344000pt;}
.ws164{word-spacing:1.392000pt;}
.wsd4{word-spacing:1.440000pt;}
.ws9{word-spacing:1.472000pt;}
.ws49{word-spacing:1.493333pt;}
.ws17e{word-spacing:1.584000pt;}
.wscf{word-spacing:1.600000pt;}
.ws5{word-spacing:1.632000pt;}
.wsa7{word-spacing:1.706667pt;}
.ws17c{word-spacing:1.866667pt;}
.ws76{word-spacing:1.920000pt;}
.ws7{word-spacing:2.016000pt;}
.ws136{word-spacing:2.026667pt;}
.wsad{word-spacing:2.186667pt;}
.wsf4{word-spacing:2.240000pt;}
.wsd8{word-spacing:2.293333pt;}
.ws165{word-spacing:2.304000pt;}
.ws59{word-spacing:2.346667pt;}
.ws8c{word-spacing:2.400000pt;}
.wsb5{word-spacing:2.485333pt;}
.ws154{word-spacing:2.666667pt;}
.ws4a{word-spacing:2.773333pt;}
.ws104{word-spacing:2.880000pt;}
.ws4e{word-spacing:2.986667pt;}
.wsd3{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.146667pt;}
.wsf2{word-spacing:3.200000pt;}
.ws101{word-spacing:3.216000pt;}
.ws13d{word-spacing:3.253333pt;}
.ws12a{word-spacing:3.306667pt;}
.ws19{word-spacing:3.360000pt;}
.ws125{word-spacing:3.413333pt;}
.ws10e{word-spacing:3.626667pt;}
.ws3e{word-spacing:3.733333pt;}
.wsa{word-spacing:3.776000pt;}
.ws17{word-spacing:3.840000pt;}
.ws62{word-spacing:3.893333pt;}
.wsb{word-spacing:3.946667pt;}
.ws158{word-spacing:4.160000pt;}
.ws1e{word-spacing:4.266667pt;}
.ws8b{word-spacing:4.373333pt;}
.ws74{word-spacing:4.480000pt;}
.wsf0{word-spacing:4.533333pt;}
.ws137{word-spacing:4.586667pt;}
.ws27{word-spacing:4.640000pt;}
.ws103{word-spacing:4.693333pt;}
.wsac{word-spacing:4.746667pt;}
.ws4f{word-spacing:4.853333pt;}
.ws123{word-spacing:4.906667pt;}
.ws2c{word-spacing:5.013333pt;}
.ws18{word-spacing:5.066667pt;}
.ws2a{word-spacing:5.120000pt;}
.ws11{word-spacing:5.173333pt;}
.ws6d{word-spacing:5.226667pt;}
.ws7c{word-spacing:5.333333pt;}
.wscd{word-spacing:5.386667pt;}
.wsd5{word-spacing:5.440000pt;}
.ws11b{word-spacing:5.493333pt;}
.ws15{word-spacing:5.546667pt;}
.ws45{word-spacing:5.600000pt;}
.ws24{word-spacing:5.653333pt;}
.ws109{word-spacing:5.706667pt;}
.ws10a{word-spacing:5.760000pt;}
.ws155{word-spacing:5.813333pt;}
.ws57{word-spacing:5.973333pt;}
.ws17d{word-spacing:6.026667pt;}
.ws99{word-spacing:6.186667pt;}
.wsfa{word-spacing:6.240000pt;}
.ws86{word-spacing:6.288000pt;}
.wse{word-spacing:6.293333pt;}
.wsc4{word-spacing:6.400000pt;}
.wsab{word-spacing:6.453333pt;}
.ws9c{word-spacing:6.506667pt;}
.wsce{word-spacing:6.560000pt;}
.ws87{word-spacing:6.576000pt;}
.ws4b{word-spacing:6.720000pt;}
.ws12{word-spacing:6.773333pt;}
.ws8{word-spacing:6.784000pt;}
.ws26{word-spacing:6.826667pt;}
.ws5b{word-spacing:6.880000pt;}
.ws6e{word-spacing:6.933333pt;}
.ws42{word-spacing:7.040000pt;}
.wsbb{word-spacing:7.093333pt;}
.ws16a{word-spacing:7.146667pt;}
.ws111{word-spacing:7.200000pt;}
.ws138{word-spacing:7.253333pt;}
.ws79{word-spacing:7.466667pt;}
.ws3a{word-spacing:7.520000pt;}
.wscc{word-spacing:7.573333pt;}
.ws13c{word-spacing:7.626667pt;}
.ws56{word-spacing:7.680000pt;}
.ws28{word-spacing:7.893333pt;}
.ws2f{word-spacing:7.946667pt;}
.ws14d{word-spacing:8.000000pt;}
.ws32{word-spacing:8.053333pt;}
.ws77{word-spacing:8.160000pt;}
.wsf1{word-spacing:8.213333pt;}
.ws17b{word-spacing:8.266667pt;}
.ws11d{word-spacing:8.320000pt;}
.ws16b{word-spacing:8.533333pt;}
.ws64{word-spacing:8.586667pt;}
.ws110{word-spacing:8.640000pt;}
.wsed{word-spacing:8.693333pt;}
.ws23{word-spacing:8.746667pt;}
.ws16c{word-spacing:8.800000pt;}
.wsde{word-spacing:8.853333pt;}
.ws7f{word-spacing:8.906667pt;}
.ws1f{word-spacing:9.013333pt;}
.ws9f{word-spacing:9.066667pt;}
.wsda{word-spacing:9.120000pt;}
.ws48{word-spacing:9.333333pt;}
.ws88{word-spacing:9.360000pt;}
.ws36{word-spacing:9.386667pt;}
.wsbf{word-spacing:9.440000pt;}
.wsdb{word-spacing:9.504000pt;}
.wsd2{word-spacing:9.600000pt;}
.ws2b{word-spacing:9.653333pt;}
.ws13b{word-spacing:9.706667pt;}
.ws108{word-spacing:9.760000pt;}
.ws7b{word-spacing:9.866667pt;}
.wsb9{word-spacing:9.920000pt;}
.wsc9{word-spacing:10.026667pt;}
.ws14{word-spacing:10.186667pt;}
.ws12d{word-spacing:10.240000pt;}
.ws132{word-spacing:10.293333pt;}
.wsf8{word-spacing:10.346667pt;}
.ws90{word-spacing:10.400000pt;}
.ws60{word-spacing:10.560000pt;}
.ws116{word-spacing:10.613333pt;}
.ws78{word-spacing:10.773333pt;}
.ws30{word-spacing:10.933333pt;}
.ws91{word-spacing:11.093333pt;}
.ws139{word-spacing:11.146667pt;}
.wsc1{word-spacing:11.200000pt;}
.ws16f{word-spacing:11.253333pt;}
.ws35{word-spacing:11.360000pt;}
.ws107{word-spacing:11.413333pt;}
.ws1b{word-spacing:11.466667pt;}
.ws129{word-spacing:11.520000pt;}
.ws174{word-spacing:11.573333pt;}
.ws113{word-spacing:11.626667pt;}
.ws2d{word-spacing:11.680000pt;}
.ws29{word-spacing:11.733333pt;}
.ws51{word-spacing:11.840000pt;}
.wsd9{word-spacing:11.893333pt;}
.ws150{word-spacing:11.946667pt;}
.ws55{word-spacing:12.000000pt;}
.ws5f{word-spacing:12.053333pt;}
.wsd1{word-spacing:12.266667pt;}
.ws134{word-spacing:12.320000pt;}
.ws70{word-spacing:12.426667pt;}
.ws13a{word-spacing:12.533333pt;}
.ws5e{word-spacing:12.586667pt;}
.ws179{word-spacing:12.906667pt;}
.ws142{word-spacing:13.013333pt;}
.wsaa{word-spacing:13.066667pt;}
.wsfb{word-spacing:13.120000pt;}
.ws25{word-spacing:13.173333pt;}
.ws144{word-spacing:13.226667pt;}
.wse3{word-spacing:13.280000pt;}
.ws5c{word-spacing:13.386667pt;}
.wsba{word-spacing:13.493333pt;}
.ws117{word-spacing:13.536000pt;}
.ws43{word-spacing:13.546667pt;}
.wsf3{word-spacing:13.653333pt;}
.ws46{word-spacing:13.706667pt;}
.ws37{word-spacing:13.760000pt;}
.ws151{word-spacing:13.813333pt;}
.ws133{word-spacing:13.866667pt;}
.ws75{word-spacing:13.920000pt;}
.wse9{word-spacing:13.973333pt;}
.ws118{word-spacing:14.112000pt;}
.ws44{word-spacing:14.133333pt;}
.ws10{word-spacing:14.240000pt;}
.wsc2{word-spacing:14.293333pt;}
.ws92{word-spacing:14.560000pt;}
.ws126{word-spacing:14.880000pt;}
.ws17a{word-spacing:15.040000pt;}
.ws13{word-spacing:15.093333pt;}
.ws14f{word-spacing:15.146667pt;}
.ws66{word-spacing:15.253333pt;}
.wsdf{word-spacing:15.360000pt;}
.ws38{word-spacing:15.413333pt;}
.ws39{word-spacing:15.466667pt;}
.ws10b{word-spacing:15.520000pt;}
.ws161{word-spacing:15.573333pt;}
.ws112{word-spacing:15.626667pt;}
.ws124{word-spacing:15.733333pt;}
.wsd0{word-spacing:15.786667pt;}
.wsdd{word-spacing:15.840000pt;}
.ws160{word-spacing:15.946667pt;}
.ws162{word-spacing:16.053333pt;}
.ws135{word-spacing:16.160000pt;}
.wsc0{word-spacing:16.266667pt;}
.ws72{word-spacing:16.373333pt;}
.wsc5{word-spacing:16.533333pt;}
.ws1c{word-spacing:16.586667pt;}
.ws83{word-spacing:16.693333pt;}
.ws120{word-spacing:16.746667pt;}
.ws177{word-spacing:16.853333pt;}
.ws1d{word-spacing:16.906667pt;}
.ws6b{word-spacing:17.120000pt;}
.ws114{word-spacing:17.173333pt;}
.ws95{word-spacing:17.333333pt;}
.ws143{word-spacing:17.386667pt;}
.wsa6{word-spacing:17.706667pt;}
.ws166{word-spacing:17.760000pt;}
.ws22{word-spacing:17.866667pt;}
.wsc7{word-spacing:18.026667pt;}
.ws3f{word-spacing:18.080000pt;}
.ws115{word-spacing:18.240000pt;}
.ws167{word-spacing:18.480000pt;}
.ws2e{word-spacing:18.666667pt;}
.wscb{word-spacing:18.773333pt;}
.ws13e{word-spacing:18.826667pt;}
.ws145{word-spacing:18.880000pt;}
.ws1a{word-spacing:19.040000pt;}
.ws156{word-spacing:19.200000pt;}
.ws69{word-spacing:19.360000pt;}
.ws6c{word-spacing:19.413333pt;}
.ws152{word-spacing:19.520000pt;}
.ws15e{word-spacing:19.573333pt;}
.ws10f{word-spacing:19.733333pt;}
.ws21{word-spacing:19.786667pt;}
.ws50{word-spacing:19.893333pt;}
.ws121{word-spacing:19.946667pt;}
.ws11c{word-spacing:20.000000pt;}
.ws58{word-spacing:20.213333pt;}
.wsbe{word-spacing:20.266667pt;}
.ws172{word-spacing:20.320000pt;}
.ws4d{word-spacing:20.373333pt;}
.ws175{word-spacing:20.426667pt;}
.wsb7{word-spacing:20.586667pt;}
.ws122{word-spacing:20.746667pt;}
.ws13f{word-spacing:20.800000pt;}
.ws171{word-spacing:21.173333pt;}
.ws65{word-spacing:21.493333pt;}
.ws11a{word-spacing:21.546667pt;}
.wse7{word-spacing:21.813333pt;}
.ws119{word-spacing:22.080000pt;}
.ws98{word-spacing:22.186667pt;}
.ws127{word-spacing:22.613333pt;}
.ws16d{word-spacing:22.666667pt;}
.ws3c{word-spacing:22.720000pt;}
.ws14e{word-spacing:23.040000pt;}
.wsc8{word-spacing:23.466667pt;}
.ws173{word-spacing:23.893333pt;}
.ws14c{word-spacing:24.053333pt;}
.wsca{word-spacing:24.960000pt;}
.ws5d{word-spacing:25.013333pt;}
.ws71{word-spacing:25.120000pt;}
.ws12f{word-spacing:25.333333pt;}
.ws16e{word-spacing:25.440000pt;}
.wsdc{word-spacing:25.493333pt;}
.ws84{word-spacing:25.813333pt;}
.wse2{word-spacing:26.080000pt;}
.wsfc{word-spacing:26.133333pt;}
.wsd7{word-spacing:26.453333pt;}
.wsea{word-spacing:26.506667pt;}
.ws147{word-spacing:26.560000pt;}
.ws105{word-spacing:26.773333pt;}
.ws149{word-spacing:26.880000pt;}
.ws15a{word-spacing:27.466667pt;}
.ws47{word-spacing:27.680000pt;}
.ws8f{word-spacing:27.733333pt;}
.ws6a{word-spacing:28.106667pt;}
.wse8{word-spacing:28.320000pt;}
.ws54{word-spacing:28.640000pt;}
.ws106{word-spacing:30.560000pt;}
.ws178{word-spacing:30.880000pt;}
.ws93{word-spacing:31.626667pt;}
.ws140{word-spacing:31.946667pt;}
.ws157{word-spacing:32.053333pt;}
.ws176{word-spacing:33.813333pt;}
.wsec{word-spacing:34.560000pt;}
.ws33{word-spacing:34.773333pt;}
.ws131{word-spacing:35.200000pt;}
.ws15d{word-spacing:35.733333pt;}
.ws146{word-spacing:36.266667pt;}
.ws148{word-spacing:36.320000pt;}
.ws61{word-spacing:36.426667pt;}
.ws15b{word-spacing:36.906667pt;}
.wse0{word-spacing:37.066667pt;}
.wsef{word-spacing:37.280000pt;}
.ws15f{word-spacing:37.706667pt;}
.ws15c{word-spacing:37.866667pt;}
.ws7a{word-spacing:39.253333pt;}
.ws14b{word-spacing:39.680000pt;}
.wsb8{word-spacing:40.213333pt;}
.ws8e{word-spacing:40.533333pt;}
.ws97{word-spacing:40.746667pt;}
.ws11f{word-spacing:44.160000pt;}
.ws8a{word-spacing:44.480000pt;}
.wsd{word-spacing:51.786667pt;}
.ws11e{word-spacing:55.573333pt;}
.wsf7{word-spacing:60.746667pt;}
.wseb{word-spacing:62.080000pt;}
._7{margin-left:-2221.519467pt;}
._d{margin-left:-39.360000pt;}
._15{margin-left:-27.713600pt;}
._12{margin-left:-18.406400pt;}
._e{margin-left:-16.320000pt;}
._c{margin-left:-15.146667pt;}
._13{margin-left:-13.397333pt;}
._6{margin-left:-8.320000pt;}
._a{margin-left:-7.406933pt;}
._1{margin-left:-5.653333pt;}
._5{margin-left:-3.931200pt;}
._3{margin-left:-2.240000pt;}
._2{margin-left:-1.188800pt;}
._4{width:0.953600pt;}
._8{width:1.846933pt;}
._f{width:2.826667pt;}
._b{width:4.480000pt;}
._11{width:8.310400pt;}
._10{width:16.180267pt;}
._16{width:30.867733pt;}
._17{width:1140.913067pt;}
._14{width:1149.361067pt;}
._9{width:1151.521067pt;}
._0{width:1156.705067pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.179067pt;}
.y6c{bottom:75.574933pt;}
.y8d{bottom:75.590533pt;}
.y297{bottom:76.036267pt;}
.y146{bottom:76.315067pt;}
.y48{bottom:76.708800pt;}
.yda{bottom:78.803200pt;}
.y263{bottom:78.959600pt;}
.y23c{bottom:79.144400pt;}
.y1b4{bottom:80.530267pt;}
.y213{bottom:83.018533pt;}
.y108{bottom:83.554000pt;}
.y18b{bottom:84.288800pt;}
.y1fa{bottom:86.136533pt;}
.y21c{bottom:86.919200pt;}
.yac{bottom:87.552933pt;}
.y1e2{bottom:88.560667pt;}
.y296{bottom:89.102933pt;}
.y6b{bottom:91.574933pt;}
.y145{bottom:91.648400pt;}
.y16d{bottom:91.872133pt;}
.y135{bottom:91.875867pt;}
.y262{bottom:92.026267pt;}
.y8c{bottom:92.081467pt;}
.y15a{bottom:92.250133pt;}
.y47{bottom:92.708800pt;}
.yd9{bottom:94.849067pt;}
.y23b{bottom:95.144400pt;}
.y1b3{bottom:96.530267pt;}
.y21b{bottom:98.919200pt;}
.y212{bottom:99.018533pt;}
.y107{bottom:99.554000pt;}
.y18a{bottom:100.288800pt;}
.y1f9{bottom:102.136533pt;}
.y295{bottom:102.169600pt;}
.yab{bottom:103.552933pt;}
.y1e1{bottom:104.560667pt;}
.y261{bottom:105.092933pt;}
.y144{bottom:106.981733pt;}
.y6a{bottom:107.574933pt;}
.y16c{bottom:108.153867pt;}
.y134{bottom:108.161333pt;}
.y8b{bottom:108.572533pt;}
.y46{bottom:108.708800pt;}
.y159{bottom:108.909733pt;}
.y21a{bottom:110.919200pt;}
.y23a{bottom:111.144400pt;}
.y1b2{bottom:112.530267pt;}
.y211{bottom:115.018400pt;}
.y294{bottom:115.236267pt;}
.y106{bottom:115.554000pt;}
.y189{bottom:116.288800pt;}
.yd8{bottom:117.698267pt;}
.y1f8{bottom:118.136533pt;}
.y260{bottom:118.159733pt;}
.yaa{bottom:119.552933pt;}
.y1e0{bottom:120.560667pt;}
.y143{bottom:122.315067pt;}
.y69{bottom:123.574933pt;}
.y16b{bottom:124.435467pt;}
.y133{bottom:124.446800pt;}
.y45{bottom:124.708800pt;}
.y8a{bottom:125.063467pt;}
.y158{bottom:125.569333pt;}
.y239{bottom:127.144400pt;}
.y293{bottom:128.302933pt;}
.y1b1{bottom:128.530267pt;}
.y210{bottom:131.018400pt;}
.y25f{bottom:131.226267pt;}
.y105{bottom:131.554000pt;}
.y188{bottom:132.288800pt;}
.yd7{bottom:133.744400pt;}
.y1f7{bottom:134.136533pt;}
.ya9{bottom:135.552933pt;}
.y1df{bottom:136.560667pt;}
.y142{bottom:137.648400pt;}
.y68{bottom:139.574933pt;}
.y44{bottom:140.708800pt;}
.y16a{bottom:140.717067pt;}
.y132{bottom:140.732133pt;}
.y89{bottom:141.554400pt;}
.y157{bottom:142.228933pt;}
.y238{bottom:143.144400pt;}
.y25e{bottom:144.292933pt;}
.y1b0{bottom:144.530267pt;}
.y20f{bottom:147.018400pt;}
.y187{bottom:148.288800pt;}
.y292{bottom:148.928667pt;}
.yd6{bottom:149.790400pt;}
.y1f6{bottom:150.136533pt;}
.y104{bottom:151.333467pt;}
.ya8{bottom:151.552933pt;}
.y1de{bottom:152.560667pt;}
.y67{bottom:155.574933pt;}
.y43{bottom:156.708800pt;}
.y169{bottom:156.998667pt;}
.y131{bottom:157.017600pt;}
.y25d{bottom:157.359600pt;}
.y88{bottom:158.045467pt;}
.y156{bottom:158.888533pt;}
.y1af{bottom:160.530267pt;}
.y141{bottom:160.540800pt;}
.y291{bottom:161.995333pt;}
.y237{bottom:162.923867pt;}
.y20e{bottom:163.018400pt;}
.y186{bottom:164.288800pt;}
.y1f5{bottom:166.136533pt;}
.y103{bottom:167.333467pt;}
.y1dd{bottom:168.560667pt;}
.yd5{bottom:169.615867pt;}
.y25c{bottom:170.426267pt;}
.y66{bottom:171.574933pt;}
.y42{bottom:172.708667pt;}
.y168{bottom:173.280400pt;}
.y130{bottom:173.302933pt;}
.y87{bottom:174.536400pt;}
.y19{bottom:175.046800pt;}
.y290{bottom:175.062000pt;}
.ya7{bottom:175.112000pt;}
.y155{bottom:175.548000pt;}
.y140{bottom:175.874133pt;}
.y1ae{bottom:176.530267pt;}
.y236{bottom:178.924000pt;}
.y20d{bottom:179.018400pt;}
.y185{bottom:180.288800pt;}
.y1f4{bottom:182.136533pt;}
.y102{bottom:183.333467pt;}
.yd4{bottom:185.662000pt;}
.y65{bottom:187.574933pt;}
.y28f{bottom:188.128667pt;}
.y41{bottom:188.708667pt;}
.y167{bottom:189.562000pt;}
.y86{bottom:191.027333pt;}
.y18{bottom:191.046800pt;}
.y25b{bottom:191.052000pt;}
.y13f{bottom:191.207467pt;}
.y1dc{bottom:192.119733pt;}
.y154{bottom:192.207600pt;}
.y1ad{bottom:192.530267pt;}
.ya6{bottom:194.891467pt;}
.y235{bottom:194.924000pt;}
.y20c{bottom:195.018400pt;}
.y184{bottom:196.288800pt;}
.y12f{bottom:197.147467pt;}
.y1f3{bottom:198.136533pt;}
.y101{bottom:199.333467pt;}
.y28e{bottom:201.195333pt;}
.yd3{bottom:201.708000pt;}
.y64{bottom:203.574933pt;}
.y25a{bottom:204.118667pt;}
.y40{bottom:204.708667pt;}
.y166{bottom:205.843600pt;}
.y13e{bottom:206.540800pt;}
.y85{bottom:207.518400pt;}
.y1db{bottom:208.119733pt;}
.y1ac{bottom:208.530267pt;}
.y153{bottom:208.867200pt;}
.y2c1{bottom:210.805867pt;}
.ya5{bottom:210.891467pt;}
.y20b{bottom:211.018400pt;}
.y183{bottom:212.288800pt;}
.y12e{bottom:213.432800pt;}
.y1f2{bottom:214.136533pt;}
.y17{bottom:214.605867pt;}
.y234{bottom:218.482933pt;}
.y63{bottom:219.574933pt;}
.y3f{bottom:220.708667pt;}
.y28d{bottom:221.821067pt;}
.y13d{bottom:221.874133pt;}
.y165{bottom:222.125200pt;}
.y100{bottom:222.892533pt;}
.y2c0{bottom:223.872533pt;}
.y84{bottom:224.009333pt;}
.y1da{bottom:224.119733pt;}
.y1ab{bottom:224.530267pt;}
.yd2{bottom:224.557067pt;}
.y259{bottom:224.744400pt;}
.y152{bottom:225.526800pt;}
.y20a{bottom:227.018400pt;}
.y12d{bottom:229.718267pt;}
.y1f1{bottom:230.136533pt;}
.y182{bottom:234.336000pt;}
.ya4{bottom:234.450533pt;}
.y233{bottom:234.482933pt;}
.y28c{bottom:234.887733pt;}
.y62{bottom:235.574933pt;}
.y2bf{bottom:236.939200pt;}
.y13c{bottom:237.207467pt;}
.y258{bottom:237.811067pt;}
.y164{bottom:238.406800pt;}
.yff{bottom:238.892533pt;}
.y1d9{bottom:240.119733pt;}
.y83{bottom:240.500267pt;}
.y1aa{bottom:240.530267pt;}
.y151{bottom:242.186400pt;}
.y209{bottom:243.018400pt;}
.y3e{bottom:244.267733pt;}
.yd1{bottom:244.382667pt;}
.y12c{bottom:246.003600pt;}
.y1f0{bottom:246.136533pt;}
.y2be{bottom:250.005867pt;}
.y181{bottom:250.336000pt;}
.y232{bottom:250.482933pt;}
.y257{bottom:250.877733pt;}
.y61{bottom:251.574933pt;}
.ya3{bottom:254.230000pt;}
.y163{bottom:254.688533pt;}
.yfe{bottom:254.892533pt;}
.y28b{bottom:255.513467pt;}
.y1a9{bottom:256.530267pt;}
.y82{bottom:256.991333pt;}
.y150{bottom:258.846000pt;}
.y208{bottom:259.018400pt;}
.y13b{bottom:260.099867pt;}
.y1ef{bottom:262.136533pt;}
.y12b{bottom:262.289067pt;}
.y2bd{bottom:263.072533pt;}
.y1d8{bottom:263.678800pt;}
.y256{bottom:263.944400pt;}
.y231{bottom:266.482933pt;}
.yd0{bottom:267.231867pt;}
.y60{bottom:267.574933pt;}
.y28a{bottom:268.580133pt;}
.ya2{bottom:270.230000pt;}
.yfd{bottom:270.892533pt;}
.y162{bottom:270.970133pt;}
.y1a8{bottom:272.530267pt;}
.y81{bottom:273.482267pt;}
.y207{bottom:275.018400pt;}
.y13a{bottom:275.433200pt;}
.y14f{bottom:275.505600pt;}
.y18e{bottom:276.336533pt;}
.y255{bottom:277.011067pt;}
.y1ee{bottom:278.136533pt;}
.y12a{bottom:278.574400pt;}
.y1d7{bottom:279.678800pt;}
.y3d{bottom:280.719200pt;}
.y289{bottom:281.646800pt;}
.y230{bottom:282.482933pt;}
.y5f{bottom:283.574933pt;}
.y2bc{bottom:283.698267pt;}
.yfc{bottom:286.892533pt;}
.ycf{bottom:287.057467pt;}
.y18d{bottom:288.336533pt;}
.y1a7{bottom:288.530267pt;}
.y80{bottom:289.973200pt;}
.y254{bottom:290.077733pt;}
.y139{bottom:290.766533pt;}
.y206{bottom:291.018533pt;}
.y14e{bottom:292.165200pt;}
.ya1{bottom:293.789067pt;}
.y1ed{bottom:294.136533pt;}
.y161{bottom:294.810800pt;}
.y129{bottom:294.859867pt;}
.y1d6{bottom:295.678800pt;}
.y3c{bottom:296.719200pt;}
.y2bb{bottom:296.764800pt;}
.y22f{bottom:298.482933pt;}
.y5e{bottom:299.574933pt;}
.y18c{bottom:300.336533pt;}
.y288{bottom:302.272533pt;}
.y138{bottom:306.099867pt;}
.y7f{bottom:306.464267pt;}
.yfb{bottom:306.672000pt;}
.y205{bottom:307.018533pt;}
.y14d{bottom:308.824667pt;}
.ya0{bottom:309.789067pt;}
.y2ba{bottom:309.831600pt;}
.yce{bottom:309.906667pt;}
.y1ec{bottom:310.136533pt;}
.y253{bottom:310.703467pt;}
.y160{bottom:311.092400pt;}
.y128{bottom:311.145200pt;}
.y1d5{bottom:311.678800pt;}
.y1a6{bottom:312.089333pt;}
.y3b{bottom:312.719200pt;}
.y287{bottom:315.339200pt;}
.y5d{bottom:315.574933pt;}
.y16{bottom:320.244667pt;}
.y22e{bottom:322.042000pt;}
.yfa{bottom:322.672000pt;}
.y2b9{bottom:322.898133pt;}
.y7e{bottom:322.955200pt;}
.y204{bottom:323.018533pt;}
.y14c{bottom:325.484267pt;}
.ycd{bottom:325.952667pt;}
.y1eb{bottom:326.136533pt;}
.y15f{bottom:327.374000pt;}
.y127{bottom:327.430667pt;}
.y1d4{bottom:327.678800pt;}
.y1a5{bottom:328.089333pt;}
.y3a{bottom:328.719200pt;}
.y9f{bottom:329.568667pt;}
.y5c{bottom:331.574933pt;}
.y137{bottom:332.793200pt;}
.y286{bottom:335.964933pt;}
.y15{bottom:336.244667pt;}
.y22d{bottom:338.042000pt;}
.yf9{bottom:338.672000pt;}
.y203{bottom:339.018533pt;}
.y7d{bottom:339.446133pt;}
.ycc{bottom:341.998667pt;}
.y1ea{bottom:342.136533pt;}
.y14b{bottom:342.143867pt;}
.y252{bottom:343.375333pt;}
.y2b8{bottom:343.523867pt;}
.y15e{bottom:343.655733pt;}
.y1d3{bottom:343.678800pt;}
.y126{bottom:343.716000pt;}
.y1a4{bottom:344.089333pt;}
.y39{bottom:344.719200pt;}
.y136{bottom:344.793200pt;}
.y9e{bottom:345.568667pt;}
.y5b{bottom:347.574933pt;}
.y285{bottom:349.031600pt;}
.y22c{bottom:354.042000pt;}
.yf8{bottom:354.672000pt;}
.y202{bottom:355.018533pt;}
.y7c{bottom:355.937200pt;}
.y2b7{bottom:356.590533pt;}
.y1e9{bottom:358.136533pt;}
.y14a{bottom:358.803467pt;}
.y251{bottom:359.375333pt;}
.y1d2{bottom:359.678800pt;}
.y15d{bottom:359.937333pt;}
.y1a3{bottom:360.089333pt;}
.y38{bottom:360.719200pt;}
.y9d{bottom:361.568667pt;}
.ycb{bottom:361.824267pt;}
.y284{bottom:362.098133pt;}
.y125{bottom:367.560533pt;}
.y2b6{bottom:369.657333pt;}
.y22b{bottom:370.042000pt;}
.yf7{bottom:370.672000pt;}
.y201{bottom:371.018533pt;}
.y5a{bottom:371.133867pt;}
.y7b{bottom:372.428133pt;}
.y1e8{bottom:374.136533pt;}
.y14{bottom:374.921867pt;}
.y283{bottom:375.164933pt;}
.y250{bottom:375.375333pt;}
.y149{bottom:375.463067pt;}
.y1d1{bottom:375.678800pt;}
.y1a2{bottom:376.089333pt;}
.y15c{bottom:376.218933pt;}
.y218{bottom:377.244133pt;}
.y9c{bottom:377.568667pt;}
.yca{bottom:377.870267pt;}
.y2b5{bottom:382.723867pt;}
.y124{bottom:383.846000pt;}
.y37{bottom:384.278267pt;}
.y282{bottom:388.231467pt;}
.y7a{bottom:388.919067pt;}
.y1e7{bottom:390.136533pt;}
.y13{bottom:390.921867pt;}
.y24f{bottom:391.375333pt;}
.y1d0{bottom:391.678800pt;}
.y148{bottom:392.122667pt;}
.y15b{bottom:392.500667pt;}
.y217{bottom:393.244133pt;}
.yf6{bottom:393.475200pt;}
.y22a{bottom:393.601067pt;}
.yc9{bottom:393.916267pt;}
.y200{bottom:394.577467pt;}
.y59{bottom:394.692933pt;}
.y1a1{bottom:399.648400pt;}
.y123{bottom:400.131333pt;}
.y36{bottom:400.278267pt;}
.y9b{bottom:401.127600pt;}
.y281{bottom:401.298267pt;}
.y2b4{bottom:403.349600pt;}
.y79{bottom:405.410133pt;}
.y12{bottom:406.921867pt;}
.y24e{bottom:407.375333pt;}
.y1cf{bottom:407.678800pt;}
.y147{bottom:408.782267pt;}
.y216{bottom:409.244133pt;}
.yf5{bottom:409.475200pt;}
.y229{bottom:409.601067pt;}
.y1ff{bottom:410.577467pt;}
.y58{bottom:410.692933pt;}
.y1e6{bottom:413.695600pt;}
.y280{bottom:414.364933pt;}
.y1a0{bottom:415.648400pt;}
.y35{bottom:416.278267pt;}
.y2b3{bottom:416.416267pt;}
.y122{bottom:416.416800pt;}
.yc8{bottom:416.765467pt;}
.y9a{bottom:417.127600pt;}
.y78{bottom:421.901067pt;}
.y11{bottom:422.921867pt;}
.y24d{bottom:423.375333pt;}
.y1ce{bottom:423.678800pt;}
.y215{bottom:425.244133pt;}
.yf4{bottom:425.475200pt;}
.y228{bottom:425.601067pt;}
.y1fe{bottom:426.577467pt;}
.y57{bottom:426.692933pt;}
.y2b2{bottom:429.482933pt;}
.y1e5{bottom:429.695600pt;}
.y19f{bottom:431.648400pt;}
.y34{bottom:432.278267pt;}
.y121{bottom:432.702133pt;}
.yc7{bottom:432.811467pt;}
.y99{bottom:433.127600pt;}
.y27f{bottom:434.990667pt;}
.y77{bottom:438.392133pt;}
.y170{bottom:438.562267pt;}
.y24c{bottom:439.375333pt;}
.y1cd{bottom:439.678800pt;}
.y214{bottom:441.244133pt;}
.yf3{bottom:441.475200pt;}
.y227{bottom:441.601067pt;}
.y1fd{bottom:442.577467pt;}
.y56{bottom:442.692933pt;}
.y1e4{bottom:445.695600pt;}
.y19e{bottom:447.648400pt;}
.y27e{bottom:448.057200pt;}
.y33{bottom:448.278267pt;}
.yc6{bottom:448.857467pt;}
.y120{bottom:448.987600pt;}
.y98{bottom:449.127600pt;}
.y2b1{bottom:450.108667pt;}
.y10{bottom:450.260400pt;}
.y16f{bottom:450.562267pt;}
.y76{bottom:454.883067pt;}
.y24b{bottom:455.375333pt;}
.y1cc{bottom:455.678800pt;}
.yf2{bottom:457.475200pt;}
.y226{bottom:457.601067pt;}
.y27d{bottom:461.124000pt;}
.y1e3{bottom:461.695600pt;}
.y16e{bottom:462.562267pt;}
.y2b0{bottom:463.175333pt;}
.y32{bottom:464.278267pt;}
.yc5{bottom:464.903467pt;}
.y97{bottom:465.127600pt;}
.y11f{bottom:465.272933pt;}
.y55{bottom:466.252000pt;}
.y19d{bottom:469.695600pt;}
.y75{bottom:471.374000pt;}
.y1cb{bottom:471.678800pt;}
.yf1{bottom:473.475200pt;}
.y219{bottom:474.026800pt;}
.y27c{bottom:474.190533pt;}
.y2af{bottom:476.242000pt;}
.yf{bottom:477.599067pt;}
.y24a{bottom:478.934400pt;}
.y31{bottom:480.278267pt;}
.y96{bottom:481.127600pt;}
.y225{bottom:481.160133pt;}
.y11e{bottom:481.558400pt;}
.yc4{bottom:484.729067pt;}
.y19c{bottom:485.695600pt;}
.y1fc{bottom:486.026800pt;}
.y27b{bottom:487.257200pt;}
.y1ca{bottom:487.678800pt;}
.y74{bottom:487.864933pt;}
.y2ae{bottom:489.308667pt;}
.yf0{bottom:489.475200pt;}
.y54{bottom:489.811067pt;}
.ye{bottom:493.599067pt;}
.y30{bottom:496.278267pt;}
.y95{bottom:497.127600pt;}
.y224{bottom:497.160133pt;}
.y11d{bottom:497.843733pt;}
.y1fb{bottom:498.026800pt;}
.y27a{bottom:500.324000pt;}
.yc3{bottom:500.775067pt;}
.y19b{bottom:501.695600pt;}
.y1c9{bottom:503.678800pt;}
.y73{bottom:504.356000pt;}
.yef{bottom:505.475200pt;}
.y2ad{bottom:509.934400pt;}
.y249{bottom:511.606400pt;}
.y2f{bottom:512.278267pt;}
.y94{bottom:513.127600pt;}
.y53{bottom:513.370133pt;}
.y11c{bottom:514.129200pt;}
.yc2{bottom:516.821067pt;}
.yd{bottom:517.158133pt;}
.y19a{bottom:517.695600pt;}
.y1c8{bottom:519.678800pt;}
.y223{bottom:520.719200pt;}
.y72{bottom:520.846933pt;}
.y279{bottom:520.949600pt;}
.y2ac{bottom:523.001067pt;}
.yee{bottom:525.254667pt;}
.y248{bottom:527.606400pt;}
.y2e{bottom:528.278267pt;}
.y93{bottom:529.127600pt;}
.y11b{bottom:530.414533pt;}
.yc1{bottom:532.867067pt;}
.y199{bottom:533.695600pt;}
.y278{bottom:534.016267pt;}
.y1c7{bottom:535.678800pt;}
.y2ab{bottom:536.067733pt;}
.y222{bottom:536.719200pt;}
.y52{bottom:536.929200pt;}
.yed{bottom:541.254667pt;}
.y247{bottom:543.606400pt;}
.y2d{bottom:544.278267pt;}
.yc{bottom:544.496667pt;}
.y71{bottom:544.897067pt;}
.y92{bottom:545.127600pt;}
.y11a{bottom:546.700000pt;}
.y277{bottom:547.083067pt;}
.y2aa{bottom:549.134400pt;}
.y1c6{bottom:551.678800pt;}
.y221{bottom:552.719200pt;}
.yc0{bottom:555.716267pt;}
.y198{bottom:555.742800pt;}
.yec{bottom:557.254667pt;}
.y246{bottom:559.606400pt;}
.y276{bottom:560.149600pt;}
.y2c{bottom:560.278267pt;}
.yb{bottom:560.496667pt;}
.y91{bottom:561.127600pt;}
.y70{bottom:561.388000pt;}
.y119{bottom:562.985467pt;}
.y51{bottom:564.267733pt;}
.y220{bottom:568.719200pt;}
.y2a9{bottom:569.760133pt;}
.y197{bottom:571.742800pt;}
.ybf{bottom:571.762267pt;}
.y275{bottom:573.216267pt;}
.yeb{bottom:573.254667pt;}
.y1c5{bottom:575.237733pt;}
.y245{bottom:575.606400pt;}
.y2b{bottom:576.278267pt;}
.y90{bottom:577.127600pt;}
.y6f{bottom:577.878933pt;}
.y118{bottom:579.270800pt;}
.y180{bottom:579.968400pt;}
.y2a8{bottom:582.826800pt;}
.ya{bottom:584.055733pt;}
.y21f{bottom:584.719200pt;}
.y274{bottom:586.282933pt;}
.ybe{bottom:587.808400pt;}
.yea{bottom:589.254667pt;}
.y1c4{bottom:591.237733pt;}
.y244{bottom:591.606400pt;}
.y2a{bottom:592.278267pt;}
.y8f{bottom:593.127600pt;}
.y196{bottom:593.790133pt;}
.y6e{bottom:594.370000pt;}
.y117{bottom:595.556267pt;}
.y2a7{bottom:595.893467pt;}
.y17f{bottom:596.210267pt;}
.y50{bottom:600.719200pt;}
.ybd{bottom:603.854400pt;}
.ye9{bottom:605.254667pt;}
.y273{bottom:606.908667pt;}
.y1c3{bottom:607.237733pt;}
.y243{bottom:607.606400pt;}
.y29{bottom:608.278267pt;}
.y2a6{bottom:608.960133pt;}
.y8e{bottom:609.127600pt;}
.y195{bottom:609.790133pt;}
.y6d{bottom:610.860933pt;}
.y9{bottom:611.394267pt;}
.y116{bottom:611.841600pt;}
.y17e{bottom:612.452133pt;}
.y4f{bottom:616.719200pt;}
.ybc{bottom:619.900400pt;}
.y272{bottom:619.975333pt;}
.ye8{bottom:621.254667pt;}
.y1c2{bottom:623.237733pt;}
.y242{bottom:623.606400pt;}
.y28{bottom:624.278267pt;}
.y194{bottom:625.790133pt;}
.y115{bottom:628.127067pt;}
.y17d{bottom:628.693867pt;}
.y2a5{bottom:629.585867pt;}
.y4e{bottom:632.719200pt;}
.y8{bottom:634.953333pt;}
.ye7{bottom:637.254667pt;}
.y1c1{bottom:639.237733pt;}
.y241{bottom:639.606400pt;}
.ybb{bottom:639.726000pt;}
.y27{bottom:640.278267pt;}
.y271{bottom:640.601067pt;}
.y193{bottom:641.790133pt;}
.y2a4{bottom:642.652533pt;}
.y114{bottom:644.412400pt;}
.y17c{bottom:644.935733pt;}
.yaf{bottom:645.365333pt;}
.y21e{bottom:647.837333pt;}
.y4d{bottom:648.719200pt;}
.y270{bottom:653.667733pt;}
.y1c0{bottom:655.237733pt;}
.y240{bottom:655.606400pt;}
.y2a3{bottom:655.719200pt;}
.yba{bottom:655.772000pt;}
.y26{bottom:656.278267pt;}
.yae{bottom:657.365333pt;}
.y192{bottom:657.790133pt;}
.ye6{bottom:660.057867pt;}
.y113{bottom:660.697867pt;}
.y17b{bottom:661.177467pt;}
.y7{bottom:662.292000pt;}
.y21d{bottom:663.837333pt;}
.y2a2{bottom:668.785867pt;}
.yad{bottom:669.365333pt;}
.y1bf{bottom:671.237733pt;}
.y23f{bottom:671.606400pt;}
.yb9{bottom:671.818000pt;}
.y4c{bottom:672.278267pt;}
.y191{bottom:673.790133pt;}
.y26f{bottom:674.293467pt;}
.ye5{bottom:676.057867pt;}
.y112{bottom:676.983200pt;}
.y17a{bottom:677.419333pt;}
.y6{bottom:678.292000pt;}
.y25{bottom:679.837333pt;}
.y1be{bottom:687.237733pt;}
.y26e{bottom:687.360133pt;}
.y23e{bottom:687.606400pt;}
.yb8{bottom:687.864000pt;}
.y4b{bottom:688.278267pt;}
.y2a1{bottom:689.411600pt;}
.y190{bottom:689.790000pt;}
.ye4{bottom:692.057867pt;}
.y111{bottom:693.268667pt;}
.y179{bottom:693.661067pt;}
.y5{bottom:694.291867pt;}
.y24{bottom:695.837333pt;}
.y26d{bottom:700.426800pt;}
.y2a0{bottom:702.478267pt;}
.y1bd{bottom:703.237733pt;}
.yb7{bottom:703.910133pt;}
.y4a{bottom:704.278267pt;}
.y18f{bottom:705.790000pt;}
.ye3{bottom:708.057867pt;}
.y110{bottom:709.554000pt;}
.y178{bottom:709.902933pt;}
.y23d{bottom:711.165333pt;}
.y23{bottom:711.837333pt;}
.y26c{bottom:713.493467pt;}
.y29f{bottom:715.544933pt;}
.y4{bottom:717.850933pt;}
.y1bc{bottom:719.237733pt;}
.yb6{bottom:719.956000pt;}
.y49{bottom:720.278267pt;}
.ye2{bottom:724.057867pt;}
.y10f{bottom:725.839467pt;}
.y177{bottom:726.144667pt;}
.y22{bottom:727.837333pt;}
.y29e{bottom:728.611600pt;}
.y26b{bottom:734.119200pt;}
.y1bb{bottom:735.237733pt;}
.yb5{bottom:736.002133pt;}
.ye1{bottom:740.057867pt;}
.y29d{bottom:741.678267pt;}
.y10e{bottom:742.124933pt;}
.y176{bottom:742.386533pt;}
.y21{bottom:743.837333pt;}
.y26a{bottom:747.185867pt;}
.y1ba{bottom:751.237733pt;}
.yb4{bottom:752.048133pt;}
.y29c{bottom:754.744933pt;}
.ye0{bottom:756.057867pt;}
.y10d{bottom:758.410267pt;}
.y175{bottom:758.628400pt;}
.y20{bottom:759.837333pt;}
.y269{bottom:760.252533pt;}
.y29b{bottom:767.811600pt;}
.y10c{bottom:774.695733pt;}
.y1b9{bottom:774.796933pt;}
.y174{bottom:774.870133pt;}
.yb3{bottom:775.653200pt;}
.y1f{bottom:775.837333pt;}
.ydf{bottom:775.837467pt;}
.y268{bottom:780.878267pt;}
.y29a{bottom:788.437333pt;}
.y1b8{bottom:790.796933pt;}
.y10b{bottom:790.981067pt;}
.y173{bottom:791.111867pt;}
.yb2{bottom:791.699200pt;}
.y1e{bottom:791.837333pt;}
.yde{bottom:791.837467pt;}
.y267{bottom:793.944933pt;}
.y299{bottom:801.504000pt;}
.y3{bottom:804.504133pt;}
.y1b7{bottom:806.796933pt;}
.y266{bottom:807.011600pt;}
.y10a{bottom:807.266533pt;}
.y172{bottom:807.353733pt;}
.yb1{bottom:807.745333pt;}
.y1d{bottom:807.837333pt;}
.ydd{bottom:807.837467pt;}
.y298{bottom:814.570667pt;}
.y1b6{bottom:822.796933pt;}
.y109{bottom:823.551867pt;}
.y171{bottom:823.595600pt;}
.yb0{bottom:823.791200pt;}
.y1c{bottom:823.837333pt;}
.ydc{bottom:823.837467pt;}
.y265{bottom:827.637333pt;}
.y2{bottom:831.170800pt;}
.y1b5{bottom:838.796933pt;}
.y1b{bottom:839.837333pt;}
.ydb{bottom:839.837467pt;}
.y264{bottom:840.704000pt;}
.y1a{bottom:870.110400pt;}
.h2{height:31.968000pt;}
.hc{height:35.146667pt;}
.ha{height:35.520000pt;}
.he{height:35.546875pt;}
.hd{height:36.864000pt;}
.h9{height:40.960000pt;}
.hb{height:42.176000pt;}
.hf{height:42.187500pt;}
.h6{height:42.240000pt;}
.h7{height:42.624000pt;}
.h5{height:49.280000pt;}
.h8{height:56.234667pt;}
.h4{height:71.040000pt;}
.h3{height:81.920000pt;}
.h1{height:924.000000pt;}
.h0{height:924.094667pt;}
.w0{width:687.874667pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x3{left:56.692933pt;}
.xd{left:68.787333pt;}
.xe{left:70.677200pt;}
.x1{left:75.590533pt;}
.x13{left:94.488133pt;}
.x12{left:125.685733pt;}
.x2{left:349.606267pt;}
.xf{left:361.700800pt;}
.x10{left:365.480267pt;}
.xb{left:368.504000pt;}
.xc{left:380.598533pt;}
.x14{left:387.401600pt;}
.x7{left:406.379600pt;}
.x6{left:411.205733pt;}
.xa{left:412.771467pt;}
.x4{left:419.681200pt;}
.x5{left:426.705600pt;}
.x11{left:434.676800pt;}
.x9{left:445.018933pt;}
.x8{left:454.945067pt;}
}




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