
    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_f58bcfbdc93eb89ecd25f164.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_dfd63bb7503bcb93ef737cf2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_51a124ce1e91acaba5759817.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_4bff02a34c6c98e91ca29070.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e02feb25ffdf43f4b56b8993.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eb8b32047bde43f3d9a30c34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_851ad7193415fd00e44d538c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.230000;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_c2b95b08fc388dd6308be0d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.385000;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_b0bb0393a821533ea697d4eb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eb8b32047bde43f3d9a30c34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_02a03ca5b9e3c8ccea2d970c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.385000;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_e0688fd0a974462fd4c95787.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_d7a64b59f23a2b15ac82fa0c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9e41d28d114ec045517ec3ad.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.686000;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_aaff3c42e8318e8a44db3724.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9e41d28d114ec045517ec3ad.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.846000px;}
.v1{vertical-align:-15.120000px;}
.v7{vertical-align:-13.440000px;}
.vb{vertical-align:-11.580000px;}
.v5{vertical-align:-9.564600px;}
.v6{vertical-align:-5.976600px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.742600px;}
.va{vertical-align:13.440000px;}
.v3{vertical-align:15.984000px;}
.v2{vertical-align:17.982000px;}
.v8{vertical-align:19.734000px;}
.ls10{letter-spacing:-1.129766px;}
.ls11{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.432000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.lse{letter-spacing:0.001200px;}
.ls14{letter-spacing:0.003600px;}
.ls6{letter-spacing:0.003749px;}
.ls12{letter-spacing:0.010200px;}
.ls1c{letter-spacing:0.010800px;}
.lsd{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.030600px;}
.ls1a{letter-spacing:0.031800px;}
.ls13{letter-spacing:0.035400px;}
.ls19{letter-spacing:0.124800px;}
.ls1e{letter-spacing:0.245700px;}
.lsf{letter-spacing:0.280800px;}
.ls23{letter-spacing:0.351000px;}
.ls1d{letter-spacing:0.378000px;}
.ls1b{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.486000px;}
.ls22{letter-spacing:0.534600px;}
.ls1f{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.648000px;}
.ls0{letter-spacing:1.368000px;}
.lsa{letter-spacing:2.689920px;}
.lsc{letter-spacing:2.743718px;}
.ls16{letter-spacing:2.990100px;}
.ls17{letter-spacing:2.990700px;}
.ls4{letter-spacing:2.992800px;}
.ls3{letter-spacing:11.943245px;}
.lsb{letter-spacing:14.633165px;}
.ls5{letter-spacing:14.945708px;}
.ls9{letter-spacing:14.946000px;}
.ls7{letter-spacing:107.596800px;}
.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;}
}
.ws3d{word-spacing:-107.596800px;}
.ws2{word-spacing:-19.368000px;}
.wsbc{word-spacing:-16.500000px;}
.ws59{word-spacing:-13.932000px;}
.ws1{word-spacing:-13.500000px;}
.ws95{word-spacing:-13.068000px;}
.ws35{word-spacing:-12.000000px;}
.ws32{word-spacing:-11.997043px;}
.ws65{word-spacing:-11.943245px;}
.ws3e{word-spacing:-11.232000px;}
.ws3{word-spacing:-10.500000px;}
.wsb7{word-spacing:-9.126000px;}
.ws5a{word-spacing:-9.055800px;}
.wsb4{word-spacing:-9.020700px;}
.ws0{word-spacing:-8.775000px;}
.ws4{word-spacing:-7.800000px;}
.wsd4{word-spacing:-6.825000px;}
.ws94{word-spacing:-5.864400px;}
.ws96{word-spacing:-5.491800px;}
.wsb{word-spacing:-5.238000px;}
.ws100{word-spacing:-4.242000px;}
.wse{word-spacing:-4.116000px;}
.ws36{word-spacing:-3.948000px;}
.ws20{word-spacing:-3.780000px;}
.wsbd{word-spacing:-3.456000px;}
.wscc{word-spacing:-3.066000px;}
.wsfa{word-spacing:-2.898000px;}
.ws2a{word-spacing:-2.646000px;}
.ws1d{word-spacing:-2.592000px;}
.ws99{word-spacing:-2.484000px;}
.ws55{word-spacing:-2.430000px;}
.wse6{word-spacing:-2.394000px;}
.ws8c{word-spacing:-2.376000px;}
.wsd6{word-spacing:-2.352000px;}
.wsa{word-spacing:-2.321995px;}
.ws79{word-spacing:-2.268000px;}
.wsa2{word-spacing:-2.214000px;}
.ws9a{word-spacing:-2.160000px;}
.ws2b{word-spacing:-2.106000px;}
.wsf1{word-spacing:-2.058000px;}
.ws1e{word-spacing:-2.052000px;}
.ws1a{word-spacing:-1.944000px;}
.ws7a{word-spacing:-1.890000px;}
.ws5e{word-spacing:-1.836000px;}
.wsf5{word-spacing:-1.805996px;}
.ws9{word-spacing:-1.782000px;}
.wsc8{word-spacing:-1.764000px;}
.wsa9{word-spacing:-1.728000px;}
.ws87{word-spacing:-1.674000px;}
.wsf3{word-spacing:-1.638000px;}
.ws4e{word-spacing:-1.620000px;}
.ws75{word-spacing:-1.566000px;}
.wsf8{word-spacing:-1.554000px;}
.wsf{word-spacing:-1.512000px;}
.wsd3{word-spacing:-1.470000px;}
.ws3f{word-spacing:-1.458000px;}
.ws68{word-spacing:-1.404000px;}
.ws91{word-spacing:-1.350000px;}
.ws7b{word-spacing:-1.296000px;}
.ws50{word-spacing:-1.242000px;}
.ws26{word-spacing:-1.188000px;}
.wsc9{word-spacing:-1.176000px;}
.ws1c{word-spacing:-1.134000px;}
.ws90{word-spacing:-1.080000px;}
.ws93{word-spacing:-1.026000px;}
.ws86{word-spacing:-0.972000px;}
.ws101{word-spacing:-0.924000px;}
.ws58{word-spacing:-0.918000px;}
.ws40{word-spacing:-0.864000px;}
.ws5f{word-spacing:-0.756000px;}
.ws92{word-spacing:-0.702000px;}
.ws1f{word-spacing:-0.648000px;}
.ws8a{word-spacing:-0.594000px;}
.ws7c{word-spacing:-0.540000px;}
.wsa4{word-spacing:-0.486000px;}
.wsca{word-spacing:-0.462000px;}
.ws2c{word-spacing:-0.432000px;}
.ws37{word-spacing:-0.378000px;}
.ws4b{word-spacing:-0.324000px;}
.ws3b{word-spacing:-0.270000px;}
.ws7e{word-spacing:-0.216000px;}
.wscf{word-spacing:-0.210000px;}
.wsf4{word-spacing:-0.168000px;}
.ws6d{word-spacing:-0.162000px;}
.wsfc{word-spacing:-0.126000px;}
.wsa3{word-spacing:-0.108000px;}
.wsfe{word-spacing:-0.084000px;}
.ws19{word-spacing:-0.054000px;}
.ws33{word-spacing:-0.053798px;}
.wsdb{word-spacing:-0.042000px;}
.ws5d{word-spacing:-0.034969px;}
.wsd{word-spacing:0.000000px;}
.ws12{word-spacing:0.054000px;}
.ws10{word-spacing:0.108000px;}
.wsba{word-spacing:0.162000px;}
.ws67{word-spacing:0.216000px;}
.wsc5{word-spacing:0.252000px;}
.ws45{word-spacing:0.270000px;}
.wse4{word-spacing:0.294000px;}
.ws6e{word-spacing:0.324000px;}
.ws8f{word-spacing:0.378000px;}
.wsfd{word-spacing:0.420000px;}
.ws8e{word-spacing:0.432000px;}
.ws78{word-spacing:0.486000px;}
.wse1{word-spacing:0.504000px;}
.ws2e{word-spacing:0.540000px;}
.ws62{word-spacing:0.594000px;}
.ws38{word-spacing:0.648000px;}
.ws6c{word-spacing:0.702000px;}
.wsc{word-spacing:0.756000px;}
.ws9f{word-spacing:0.810000px;}
.wsc7{word-spacing:0.840000px;}
.ws1b{word-spacing:0.864000px;}
.ws6a{word-spacing:0.918000px;}
.wsd2{word-spacing:0.924000px;}
.wsd7{word-spacing:0.966000px;}
.ws21{word-spacing:0.972000px;}
.ws61{word-spacing:1.026000px;}
.wsbe{word-spacing:1.050000px;}
.ws5c{word-spacing:1.075968px;}
.ws44{word-spacing:1.080000px;}
.ws31{word-spacing:1.134000px;}
.wscb{word-spacing:1.176000px;}
.ws27{word-spacing:1.188000px;}
.ws42{word-spacing:1.242000px;}
.ws6b{word-spacing:1.296000px;}
.wsc3{word-spacing:1.302000px;}
.wsbf{word-spacing:1.344000px;}
.ws53{word-spacing:1.350000px;}
.wsdf{word-spacing:1.386000px;}
.ws3c{word-spacing:1.404000px;}
.ws82{word-spacing:1.458000px;}
.wsde{word-spacing:1.470000px;}
.ws70{word-spacing:1.512000px;}
.wsed{word-spacing:1.554000px;}
.ws51{word-spacing:1.566000px;}
.wsfb{word-spacing:1.596000px;}
.ws80{word-spacing:1.620000px;}
.ws29{word-spacing:1.674000px;}
.wseb{word-spacing:1.722000px;}
.ws46{word-spacing:1.728000px;}
.ws48{word-spacing:1.782000px;}
.wsd5{word-spacing:1.805996px;}
.ws64{word-spacing:1.836000px;}
.ws3a{word-spacing:1.890000px;}
.ws7d{word-spacing:1.944000px;}
.wsd1{word-spacing:1.974000px;}
.ws28{word-spacing:1.998000px;}
.wsc2{word-spacing:2.016000px;}
.ws6f{word-spacing:2.052000px;}
.ws74{word-spacing:2.106000px;}
.wscd{word-spacing:2.141996px;}
.ws13{word-spacing:2.160000px;}
.ws8{word-spacing:2.214000px;}
.wsf9{word-spacing:2.226000px;}
.ws30{word-spacing:2.268000px;}
.wse3{word-spacing:2.310000px;}
.ws60{word-spacing:2.321995px;}
.ws9d{word-spacing:2.376000px;}
.wsf2{word-spacing:2.394000px;}
.ws83{word-spacing:2.430000px;}
.ws89{word-spacing:2.484000px;}
.ws52{word-spacing:2.538000px;}
.wse0{word-spacing:2.562000px;}
.ws85{word-spacing:2.592000px;}
.wsc4{word-spacing:2.604000px;}
.ws4a{word-spacing:2.646000px;}
.wsc6{word-spacing:2.688000px;}
.wsb5{word-spacing:2.700000px;}
.wsff{word-spacing:2.730000px;}
.ws49{word-spacing:2.753995px;}
.ws2d{word-spacing:2.808000px;}
.wsf7{word-spacing:2.814000px;}
.wsce{word-spacing:2.856000px;}
.wsaf{word-spacing:2.862000px;}
.ws4d{word-spacing:2.916000px;}
.ws84{word-spacing:2.970000px;}
.ws47{word-spacing:3.024000px;}
.ws7f{word-spacing:3.078000px;}
.ws8b{word-spacing:3.132000px;}
.wse2{word-spacing:3.150000px;}
.ws72{word-spacing:3.186000px;}
.ws102{word-spacing:3.234000px;}
.ws11{word-spacing:3.240000px;}
.ws54{word-spacing:3.294000px;}
.wse9{word-spacing:3.318000px;}
.wsa0{word-spacing:3.348000px;}
.ws8d{word-spacing:3.402000px;}
.wsf0{word-spacing:3.444000px;}
.ws43{word-spacing:3.456000px;}
.wse7{word-spacing:3.486000px;}
.ws63{word-spacing:3.510000px;}
.ws25{word-spacing:3.564000px;}
.wsa7{word-spacing:3.618000px;}
.ws9b{word-spacing:3.726000px;}
.ws56{word-spacing:3.780000px;}
.ws6{word-spacing:3.942000px;}
.wse8{word-spacing:3.990000px;}
.ws88{word-spacing:3.996000px;}
.wsc0{word-spacing:4.074000px;}
.ws4c{word-spacing:4.104000px;}
.ws7{word-spacing:4.158000px;}
.wsdc{word-spacing:4.200000px;}
.wse5{word-spacing:4.242000px;}
.ws22{word-spacing:4.266000px;}
.ws2f{word-spacing:4.320000px;}
.wsd0{word-spacing:4.368000px;}
.ws71{word-spacing:4.374000px;}
.ws73{word-spacing:4.428000px;}
.ws77{word-spacing:4.482000px;}
.ws69{word-spacing:4.536000px;}
.ws17{word-spacing:4.590000px;}
.wsb1{word-spacing:4.643995px;}
.ws23{word-spacing:4.697995px;}
.wsb0{word-spacing:4.752000px;}
.ws76{word-spacing:4.806000px;}
.wsaa{word-spacing:4.860000px;}
.ws9c{word-spacing:4.914000px;}
.wsb3{word-spacing:4.968000px;}
.ws39{word-spacing:5.022000px;}
.ws81{word-spacing:5.076000px;}
.wsa5{word-spacing:5.238000px;}
.wsdd{word-spacing:5.250000px;}
.wsbb{word-spacing:5.346000px;}
.ws97{word-spacing:5.400000px;}
.ws41{word-spacing:5.454000px;}
.ws4f{word-spacing:5.508000px;}
.ws15{word-spacing:5.562000px;}
.wsea{word-spacing:5.628000px;}
.wsec{word-spacing:5.670000px;}
.wsac{word-spacing:5.832000px;}
.wsf6{word-spacing:5.838000px;}
.ws9e{word-spacing:5.886000px;}
.ws57{word-spacing:5.940000px;}
.wsae{word-spacing:6.102000px;}
.wsb6{word-spacing:6.210000px;}
.wsa6{word-spacing:6.264000px;}
.ws18{word-spacing:6.426000px;}
.wsa1{word-spacing:6.534000px;}
.wsa8{word-spacing:6.804000px;}
.ws24{word-spacing:7.128000px;}
.wsab{word-spacing:7.236000px;}
.ws98{word-spacing:7.614000px;}
.wsb9{word-spacing:7.830000px;}
.wsb8{word-spacing:8.046000px;}
.ws16{word-spacing:8.100000px;}
.ws14{word-spacing:8.154000px;}
.wsd9{word-spacing:8.778000px;}
.wsad{word-spacing:9.396000px;}
.wsd8{word-spacing:9.492000px;}
.wsee{word-spacing:9.912000px;}
.ws34{word-spacing:11.889446px;}
.wsc1{word-spacing:13.356000px;}
.wsda{word-spacing:13.860000px;}
.ws5b{word-spacing:14.902157px;}
.ws5{word-spacing:16.500000px;}
.wsb2{word-spacing:17.442000px;}
.wsef{word-spacing:29.778000px;}
.ws66{word-spacing:2344.518000px;}
._17{margin-left:-30.942000px;}
._16{margin-left:-17.874000px;}
._15{margin-left:-15.012000px;}
._14{margin-left:-13.824000px;}
._10{margin-left:-11.750602px;}
._d{margin-left:-10.500000px;}
._8{margin-left:-8.370000px;}
._7{margin-left:-5.802000px;}
._5{margin-left:-4.698000px;}
._b{margin-left:-3.629400px;}
._1{margin-left:-2.592000px;}
._2{margin-left:-1.188000px;}
._0{width:1.575000px;}
._6{width:2.583000px;}
._4{width:3.672000px;}
._3{width:5.013000px;}
._12{width:6.013800px;}
._e{width:7.511400px;}
._f{width:8.677800px;}
._11{width:12.614400px;}
._13{width:17.982000px;}
._c{width:27.552000px;}
._18{width:30.093000px;}
._a{width:50.478600px;}
._9{width:51.616200px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fse{font-size:27.300000px;}
.fsa{font-size:29.880000px;}
.fsd{font-size:29.887800px;}
.fs6{font-size:31.200000px;}
.fsc{font-size:34.969200px;}
.fs2{font-size:35.100000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1c9{bottom:0.010500px;}
.y1ac{bottom:0.084107px;}
.y1a3{bottom:0.085607px;}
.y1ab{bottom:2.878800px;}
.y1a2{bottom:2.880300px;}
.y1c6{bottom:3.690300px;}
.y1c8{bottom:3.696133px;}
.ye6{bottom:4.843650px;}
.y93{bottom:4.851150px;}
.ye8{bottom:6.343660px;}
.y95{bottom:6.351148px;}
.yea{bottom:10.885800px;}
.y97{bottom:11.062648px;}
.ye9{bottom:15.595650px;}
.y96{bottom:15.604800px;}
.y53{bottom:30.698550px;}
.y24{bottom:30.751200px;}
.y1e7{bottom:73.522650px;}
.y171{bottom:76.527150px;}
.y13e{bottom:76.536150px;}
.y10b{bottom:76.544550px;}
.y9d{bottom:76.545150px;}
.ycb{bottom:76.549650px;}
.y104{bottom:76.567650px;}
.y88{bottom:76.951650px;}
.y20d{bottom:76.965150px;}
.y164{bottom:81.018150px;}
.y304{bottom:81.979650px;}
.y2c{bottom:87.302700px;}
.y8{bottom:87.328200px;}
.y1e6{bottom:88.522650px;}
.y170{bottom:94.527150px;}
.y13d{bottom:94.531650px;}
.y10a{bottom:94.540050px;}
.y9c{bottom:94.540650px;}
.yca{bottom:94.545150px;}
.y103{bottom:94.563150px;}
.y87{bottom:94.947150px;}
.y20c{bottom:94.960650px;}
.y303{bottom:95.482650px;}
.y2bc{bottom:97.444800px;}
.y24c{bottom:97.782750px;}
.y2b{bottom:100.805700px;}
.y28f{bottom:102.223200px;}
.y7{bottom:105.332700px;}
.y302{bottom:108.985650px;}
.y2bb{bottom:110.947800px;}
.y13c{bottom:112.527150px;}
.y109{bottom:112.535550px;}
.y9b{bottom:112.536150px;}
.yc9{bottom:112.540650px;}
.y16f{bottom:112.549050px;}
.y102{bottom:112.558650px;}
.y24b{bottom:112.782750px;}
.y86{bottom:112.942650px;}
.y20b{bottom:112.956150px;}
.y2a{bottom:114.308700px;}
.y28e{bottom:115.726200px;}
.y1a0{bottom:121.947150px;}
.y301{bottom:122.488650px;}
.y6{bottom:123.328200px;}
.y2ba{bottom:124.450800px;}
.y24a{bottom:127.782750px;}
.y29{bottom:127.811700px;}
.y28d{bottom:129.229200px;}
.y13b{bottom:130.527150px;}
.y108{bottom:130.531050px;}
.y9a{bottom:130.531650px;}
.yc8{bottom:130.536150px;}
.y16e{bottom:130.544550px;}
.y101{bottom:130.554150px;}
.y162{bottom:130.567650px;}
.y85{bottom:130.938150px;}
.y20a{bottom:130.951650px;}
.y163{bottom:135.018150px;}
.y300{bottom:135.991650px;}
.y2b9{bottom:137.953800px;}
.y19f{bottom:139.942650px;}
.y28{bottom:141.314700px;}
.y5{bottom:141.337200px;}
.y28c{bottom:142.732200px;}
.y107{bottom:148.526550px;}
.y99{bottom:148.527150px;}
.yc7{bottom:148.531650px;}
.y16d{bottom:148.540050px;}
.y100{bottom:148.549650px;}
.y161{bottom:148.563150px;}
.y84{bottom:148.933650px;}
.y209{bottom:148.947150px;}
.y2ff{bottom:149.494650px;}
.y262{bottom:150.931950px;}
.y2b8{bottom:151.456800px;}
.y27{bottom:154.817700px;}
.y28b{bottom:156.235200px;}
.y19e{bottom:157.938150px;}
.y4{bottom:159.332700px;}
.y94{bottom:160.162502px;}
.y92{bottom:161.662500px;}
.y2fe{bottom:162.997650px;}
.y2b7{bottom:164.959800px;}
.y261{bottom:165.931950px;}
.y106{bottom:166.522050px;}
.y98{bottom:166.522650px;}
.yc6{bottom:166.527150px;}
.y91{bottom:166.530150px;}
.y16c{bottom:166.535550px;}
.yff{bottom:166.545150px;}
.y160{bottom:166.558650px;}
.y83{bottom:166.929150px;}
.y208{bottom:166.942650px;}
.y26{bottom:168.320700px;}
.y28a{bottom:169.738200px;}
.y19d{bottom:175.933650px;}
.y2fd{bottom:176.500650px;}
.y3{bottom:177.328200px;}
.y2b6{bottom:178.462800px;}
.y25{bottom:181.823700px;}
.y289{bottom:183.241200px;}
.y105{bottom:184.517550px;}
.y16b{bottom:184.531050px;}
.yfe{bottom:184.540650px;}
.y13a{bottom:184.545150px;}
.y15f{bottom:184.554150px;}
.yc5{bottom:184.652550px;}
.y82{bottom:184.924650px;}
.y207{bottom:184.938150px;}
.y90{bottom:186.118650px;}
.y2fc{bottom:190.003650px;}
.y2b5{bottom:191.965800px;}
.y19c{bottom:193.929150px;}
.y2{bottom:195.323700px;}
.y288{bottom:196.744200px;}
.y16a{bottom:202.526550px;}
.yfd{bottom:202.536150px;}
.y139{bottom:202.540650px;}
.y15e{bottom:202.549650px;}
.yc4{bottom:202.648050px;}
.y81{bottom:202.920150px;}
.y206{bottom:202.933650px;}
.y2fb{bottom:203.506650px;}
.y8f{bottom:204.114150px;}
.y2b4{bottom:205.468800px;}
.y287{bottom:210.247200px;}
.y19b{bottom:211.924650px;}
.y2fa{bottom:217.009650px;}
.y2b3{bottom:218.971800px;}
.y169{bottom:220.522050px;}
.yfc{bottom:220.531650px;}
.y138{bottom:220.536150px;}
.yc3{bottom:220.643550px;}
.y80{bottom:220.915650px;}
.y205{bottom:220.929150px;}
.y8e{bottom:222.115050px;}
.y1{bottom:222.323700px;}
.y286{bottom:223.750200px;}
.y15d{bottom:229.549650px;}
.y2f9{bottom:230.512650px;}
.y2b2{bottom:232.474800px;}
.y111{bottom:235.408500px;}
.y285{bottom:237.253200px;}
.y168{bottom:238.517550px;}
.y137{bottom:238.531650px;}
.yc2{bottom:238.639050px;}
.y7f{bottom:238.911150px;}
.y19a{bottom:238.924650px;}
.y2f8{bottom:244.015650px;}
.y2b1{bottom:245.977800px;}
.yfb{bottom:247.531650px;}
.y15c{bottom:247.545150px;}
.y8d{bottom:249.115050px;}
.y110{bottom:250.408500px;}
.y284{bottom:250.756200px;}
.y136{bottom:256.527150px;}
.yc1{bottom:256.634550px;}
.y7e{bottom:256.906650px;}
.y199{bottom:256.920150px;}
.y2f7{bottom:257.518650px;}
.y2b0{bottom:259.480800px;}
.y283{bottom:264.259200px;}
.y10f{bottom:265.408500px;}
.yfa{bottom:265.527150px;}
.y15b{bottom:265.540650px;}
.y23{bottom:269.998200px;}
.y2f6{bottom:271.021650px;}
.y2af{bottom:272.983800px;}
.yc0{bottom:274.630050px;}
.y135{bottom:274.670550px;}
.y7d{bottom:274.902150px;}
.y198{bottom:274.915650px;}
.y282{bottom:277.762200px;}
.y10e{bottom:280.408500px;}
.y23a{bottom:282.406650px;}
.yf9{bottom:283.522650px;}
.y15a{bottom:283.536150px;}
.y2f5{bottom:284.524650px;}
.y176{bottom:284.756100px;}
.y2ae{bottom:286.486800px;}
.y22{bottom:287.993700px;}
.y281{bottom:291.265200px;}
.y8c{bottom:292.612050px;}
.ybf{bottom:292.625550px;}
.y134{bottom:292.666050px;}
.y7c{bottom:292.897650px;}
.y197{bottom:292.911150px;}
.y10d{bottom:295.408500px;}
.y2f4{bottom:298.027650px;}
.y174{bottom:299.756100px;}
.y2ad{bottom:299.989800px;}
.y239{bottom:300.402150px;}
.y159{bottom:301.531650px;}
.y175{bottom:303.752100px;}
.y280{bottom:304.768200px;}
.y21{bottom:305.989200px;}
.y10c{bottom:310.408500px;}
.yf8{bottom:310.522650px;}
.y8b{bottom:310.607550px;}
.ybe{bottom:310.621050px;}
.y133{bottom:310.661550px;}
.y196{bottom:310.906650px;}
.y2f3{bottom:311.530650px;}
.y2ac{bottom:313.492800px;}
.y173{bottom:314.756100px;}
.y27f{bottom:318.271200px;}
.y238{bottom:318.402150px;}
.y158{bottom:319.527150px;}
.y7b{bottom:319.897650px;}
.y204{bottom:319.911150px;}
.y20{bottom:323.984700px;}
.y2f2{bottom:325.033650px;}
.y2ab{bottom:326.995800px;}
.y8a{bottom:328.603050px;}
.ybd{bottom:328.616550px;}
.y132{bottom:328.657050px;}
.y195{bottom:328.902150px;}
.y172{bottom:329.756100px;}
.y1e1{bottom:330.415650px;}
.y27e{bottom:331.774200px;}
.yf7{bottom:336.022650px;}
.y237{bottom:336.406650px;}
.y156{bottom:337.531650px;}
.y203{bottom:337.906650px;}
.y2f1{bottom:338.536650px;}
.y2aa{bottom:340.498800px;}
.y1f{bottom:341.980200px;}
.y157{bottom:342.018150px;}
.y27d{bottom:345.277200px;}
.y7a{bottom:345.397650px;}
.ybc{bottom:346.612050px;}
.y194{bottom:346.906650px;}
.y1e0{bottom:348.411150px;}
.y2f0{bottom:352.039650px;}
.y2a9{bottom:354.001800px;}
.y236{bottom:354.402150px;}
.y155{bottom:355.527150px;}
.y131{bottom:355.657050px;}
.y202{bottom:355.902150px;}
.y27c{bottom:358.780200px;}
.y1e{bottom:359.975700px;}
.ybb{bottom:364.607550px;}
.y193{bottom:364.902150px;}
.y2ef{bottom:365.542650px;}
.y1df{bottom:366.406650px;}
.y2a8{bottom:367.504800px;}
.y27b{bottom:372.283200px;}
.y235{bottom:372.402150px;}
.y154{bottom:373.540650px;}
.y201{bottom:373.897650px;}
.ya6{bottom:377.254200px;}
.y1d{bottom:377.971200px;}
.y2ee{bottom:379.045650px;}
.y2a7{bottom:381.007800px;}
.yf6{bottom:381.456150px;}
.y192{bottom:382.906650px;}
.y1de{bottom:384.402150px;}
.y27a{bottom:385.786200px;}
.y234{bottom:390.406650px;}
.y79{bottom:390.514650px;}
.y153{bottom:391.536150px;}
.yba{bottom:392.120550px;}
.ya5{bottom:392.254200px;}
.y2ed{bottom:392.548650px;}
.y247{bottom:393.702600px;}
.y2a6{bottom:394.510800px;}
.y1c{bottom:395.966700px;}
.y1dc{bottom:397.198517px;}
.y1db{bottom:398.698500px;}
.y279{bottom:399.289200px;}
.yf5{bottom:399.451650px;}
.y200{bottom:400.897650px;}
.y191{bottom:400.902150px;}
.y1dd{bottom:402.397650px;}
.y1da{bottom:402.414150px;}
.y130{bottom:405.161550px;}
.y2ec{bottom:406.051650px;}
.ya4{bottom:407.254200px;}
.y2a5{bottom:408.013800px;}
.y233{bottom:408.402150px;}
.y78{bottom:408.510150px;}
.y152{bottom:409.531650px;}
.yb9{bottom:410.116050px;}
.y246{bottom:411.698100px;}
.y278{bottom:412.792200px;}
.y1b{bottom:413.962200px;}
.yf4{bottom:417.447150px;}
.y190{bottom:418.911150px;}
.y2eb{bottom:419.554650px;}
.y1d9{bottom:420.409650px;}
.y2a4{bottom:421.516800px;}
.ya3{bottom:422.254200px;}
.y12f{bottom:423.157050px;}
.y277{bottom:426.295200px;}
.y232{bottom:426.402150px;}
.y77{bottom:426.505650px;}
.y151{bottom:427.527150px;}
.y25d{bottom:427.967400px;}
.yb8{bottom:428.111550px;}
.y245{bottom:429.693600px;}
.y1a{bottom:431.957700px;}
.y2ea{bottom:433.057650px;}
.y2a3{bottom:435.019800px;}
.yf3{bottom:435.442650px;}
.y18f{bottom:436.906650px;}
.ya2{bottom:437.254200px;}
.y1d8{bottom:438.405150px;}
.y276{bottom:439.798200px;}
.y12e{bottom:441.152550px;}
.y231{bottom:444.402150px;}
.y76{bottom:444.501150px;}
.y150{bottom:445.531650px;}
.y25c{bottom:445.962900px;}
.y1ff{bottom:446.026050px;}
.yb7{bottom:446.107050px;}
.y2e9{bottom:446.560650px;}
.y244{bottom:447.689100px;}
.y2a2{bottom:448.522800px;}
.y19{bottom:449.953200px;}
.ya1{bottom:452.254200px;}
.y275{bottom:453.301200px;}
.yf2{bottom:453.438150px;}
.y18e{bottom:454.902150px;}
.y12d{bottom:459.148050px;}
.y2e8{bottom:460.063650px;}
.y2a1{bottom:462.025800px;}
.y230{bottom:462.406650px;}
.y75{bottom:462.496650px;}
.y14f{bottom:463.527150px;}
.y25b{bottom:463.958400px;}
.y1fe{bottom:464.021550px;}
.yb6{bottom:464.102550px;}
.y243{bottom:465.684600px;}
.y274{bottom:466.804200px;}
.ya0{bottom:467.254200px;}
.y18{bottom:467.948700px;}
.y1d7{bottom:468.402150px;}
.yf1{bottom:471.433650px;}
.y18d{bottom:472.924650px;}
.y2e7{bottom:473.566650px;}
.y2a0{bottom:475.528800px;}
.y12c{bottom:477.143550px;}
.y273{bottom:480.307200px;}
.y22f{bottom:480.402150px;}
.y74{bottom:480.492150px;}
.y14d{bottom:481.527150px;}
.y25a{bottom:481.953900px;}
.y1fd{bottom:482.017050px;}
.yb5{bottom:482.098050px;}
.y9f{bottom:482.254200px;}
.y242{bottom:483.680100px;}
.y14e{bottom:486.018150px;}
.y1d6{bottom:486.402150px;}
.y2e6{bottom:487.069650px;}
.y29f{bottom:489.031800px;}
.yf0{bottom:489.429150px;}
.y18c{bottom:490.920150px;}
.y272{bottom:493.810200px;}
.y12b{bottom:495.139050px;}
.y9e{bottom:497.254200px;}
.y22e{bottom:498.402150px;}
.y73{bottom:498.487650px;}
.y1d4{bottom:499.198517px;}
.y14c{bottom:499.531650px;}
.y259{bottom:499.949400px;}
.y1fc{bottom:500.012550px;}
.yb4{bottom:500.093550px;}
.y2e5{bottom:500.572650px;}
.y1d3{bottom:500.698500px;}
.y17{bottom:500.711550px;}
.y241{bottom:501.675600px;}
.y29e{bottom:502.534800px;}
.y1d5{bottom:504.397650px;}
.y1d2{bottom:504.406650px;}
.y271{bottom:507.313200px;}
.yef{bottom:507.433650px;}
.y18b{bottom:508.915650px;}
.y12a{bottom:513.134550px;}
.y2e4{bottom:514.075650px;}
.y29d{bottom:516.037800px;}
.y22d{bottom:516.397650px;}
.y72{bottom:516.483150px;}
.y14b{bottom:517.527150px;}
.y258{bottom:517.944900px;}
.y1fb{bottom:518.008050px;}
.yb3{bottom:518.089050px;}
.y16{bottom:518.707050px;}
.y240{bottom:519.689100px;}
.y270{bottom:520.816200px;}
.y1d1{bottom:522.402150px;}
.yee{bottom:525.429150px;}
.y18a{bottom:526.911150px;}
.y2e3{bottom:527.578650px;}
.y29c{bottom:529.540800px;}
.y129{bottom:531.130050px;}
.y26f{bottom:534.319200px;}
.y71{bottom:534.478650px;}
.y1cf{bottom:535.198517px;}
.y14a{bottom:535.540650px;}
.y257{bottom:535.940400px;}
.y1fa{bottom:536.003550px;}
.yb2{bottom:536.084550px;}
.y1ce{bottom:536.698500px;}
.y15{bottom:536.702550px;}
.y23f{bottom:537.684600px;}
.y1d0{bottom:540.397650px;}
.y1cd{bottom:540.411150px;}
.y31a{bottom:541.036650px;}
.y2e2{bottom:541.081650px;}
.y29b{bottom:543.043800px;}
.y22c{bottom:543.397650px;}
.yed{bottom:543.429150px;}
.y189{bottom:544.906650px;}
.y50{bottom:545.674200px;}
.y26e{bottom:547.822200px;}
.y128{bottom:549.125550px;}
.y70{bottom:552.474150px;}
.y149{bottom:553.536150px;}
.y256{bottom:553.935900px;}
.y1f9{bottom:553.999050px;}
.yb1{bottom:554.080050px;}
.y319{bottom:554.539650px;}
.y2e1{bottom:554.584650px;}
.y14{bottom:554.698050px;}
.y23e{bottom:555.680100px;}
.y29a{bottom:556.546800px;}
.y1cc{bottom:558.406650px;}
.y4f{bottom:559.177200px;}
.y26d{bottom:561.325200px;}
.yec{bottom:561.429150px;}
.y188{bottom:562.902150px;}
.y318{bottom:568.042650px;}
.y2e0{bottom:568.087650px;}
.y299{bottom:570.049800px;}
.y6f{bottom:570.469650px;}
.y148{bottom:571.531650px;}
.y255{bottom:571.931400px;}
.y1f8{bottom:571.994550px;}
.yb0{bottom:572.075550px;}
.y13{bottom:572.693550px;}
.y23d{bottom:573.675600px;}
.y26c{bottom:574.828200px;}
.y1cb{bottom:576.402150px;}
.y127{bottom:577.813050px;}
.y187{bottom:580.906650px;}
.y317{bottom:581.545650px;}
.y2df{bottom:581.590650px;}
.y298{bottom:583.552800px;}
.y26b{bottom:588.331200px;}
.y22b{bottom:588.402150px;}
.y6e{bottom:588.465150px;}
.ye7{bottom:589.142990px;}
.y1c7{bottom:589.198517px;}
.y147{bottom:589.527150px;}
.y4e{bottom:589.931700px;}
.y254{bottom:589.953900px;}
.y1f7{bottom:589.990050px;}
.yaf{bottom:590.071050px;}
.ye5{bottom:590.643000px;}
.y12{bottom:590.689050px;}
.y1c5{bottom:590.698500px;}
.y23c{bottom:591.671100px;}
.y1ca{bottom:594.397650px;}
.y1c4{bottom:594.441150px;}
.yeb{bottom:594.585150px;}
.y316{bottom:595.048650px;}
.y2de{bottom:595.093650px;}
.y126{bottom:595.808550px;}
.y297{bottom:597.055800px;}
.y186{bottom:598.902150px;}
.y26a{bottom:601.834200px;}
.y4d{bottom:603.434700px;}
.y22a{bottom:606.402150px;}
.y6d{bottom:606.460650px;}
.y145{bottom:607.540050px;}
.y253{bottom:607.949400px;}
.y1f6{bottom:607.985550px;}
.yae{bottom:608.066550px;}
.y315{bottom:608.551650px;}
.y2dd{bottom:608.596650px;}
.y11{bottom:608.684550px;}
.y296{bottom:610.558800px;}
.y146{bottom:612.018150px;}
.y1c3{bottom:612.436650px;}
.y125{bottom:613.804050px;}
.y269{bottom:615.337200px;}
.y4c{bottom:616.937700px;}
.y185{bottom:616.976550px;}
.y23b{bottom:618.671100px;}
.y314{bottom:622.054650px;}
.y2dc{bottom:622.099650px;}
.y295{bottom:624.061800px;}
.y229{bottom:624.402150px;}
.ye4{bottom:625.504650px;}
.y144{bottom:625.535550px;}
.y252{bottom:625.944900px;}
.y1f5{bottom:625.981050px;}
.yad{bottom:626.062050px;}
.y10{bottom:626.680050px;}
.y268{bottom:628.840200px;}
.y1c2{bottom:630.432150px;}
.y4b{bottom:630.440700px;}
.y124{bottom:631.799550px;}
.y6c{bottom:633.460650px;}
.y184{bottom:634.972050px;}
.y313{bottom:635.557650px;}
.y2db{bottom:635.602650px;}
.y294{bottom:637.564800px;}
.y228{bottom:642.451650px;}
.ye3{bottom:643.500150px;}
.y143{bottom:643.531050px;}
.y251{bottom:643.940400px;}
.y4a{bottom:643.943700px;}
.y1f4{bottom:643.976550px;}
.yac{bottom:644.057550px;}
.yf{bottom:644.675550px;}
.y1c1{bottom:648.427650px;}
.y312{bottom:649.060650px;}
.y2da{bottom:649.105650px;}
.y123{bottom:649.795050px;}
.y293{bottom:651.067800px;}
.y267{bottom:651.340200px;}
.y6b{bottom:651.456150px;}
.y183{bottom:652.967550px;}
.y49{bottom:657.446700px;}
.y227{bottom:660.447150px;}
.ye2{bottom:661.567050px;}
.y250{bottom:661.935900px;}
.y1f3{bottom:661.972050px;}
.y311{bottom:662.563650px;}
.y2d9{bottom:662.608650px;}
.ye{bottom:662.671050px;}
.y249{bottom:667.046100px;}
.y122{bottom:667.790550px;}
.y6a{bottom:669.451650px;}
.y142{bottom:670.531050px;}
.y48{bottom:670.949700px;}
.y182{bottom:670.963050px;}
.y212{bottom:671.041350px;}
.yab{bottom:671.570550px;}
.y310{bottom:676.066650px;}
.y2d8{bottom:676.111650px;}
.y1c0{bottom:678.424650px;}
.y226{bottom:678.442650px;}
.ye1{bottom:679.562550px;}
.y24f{bottom:679.931400px;}
.y1f2{bottom:679.967550px;}
.yd{bottom:680.666550px;}
.y248{bottom:682.046100px;}
.y47{bottom:684.452700px;}
.y121{bottom:685.786050px;}
.y211{bottom:686.041350px;}
.y69{bottom:687.447150px;}
.y141{bottom:688.526550px;}
.y181{bottom:688.958550px;}
.yaa{bottom:689.566050px;}
.y30f{bottom:689.569650px;}
.y2d7{bottom:689.614650px;}
.y1bf{bottom:696.420150px;}
.y225{bottom:696.438150px;}
.y266{bottom:697.324200px;}
.ye0{bottom:697.558050px;}
.y24e{bottom:697.926900px;}
.y1f1{bottom:697.963050px;}
.yc{bottom:698.662050px;}
.y46{bottom:700.948200px;}
.y210{bottom:701.041350px;}
.y30e{bottom:703.072650px;}
.y2d6{bottom:703.117650px;}
.y120{bottom:703.781550px;}
.y68{bottom:705.442650px;}
.y140{bottom:706.522050px;}
.y180{bottom:706.954050px;}
.ya9{bottom:707.561550px;}
.y1be{bottom:714.415650px;}
.y224{bottom:714.433650px;}
.y265{bottom:715.319700px;}
.ydf{bottom:715.553550px;}
.y1f0{bottom:715.958550px;}
.y20f{bottom:716.041350px;}
.y30d{bottom:716.575650px;}
.y2d5{bottom:716.620650px;}
.yb{bottom:716.657550px;}
.y11f{bottom:721.777050px;}
.y67{bottom:723.438150px;}
.y13f{bottom:724.517550px;}
.y24d{bottom:724.926900px;}
.ya8{bottom:725.557050px;}
.y30c{bottom:730.078650px;}
.y2d4{bottom:730.123650px;}
.y20e{bottom:731.041350px;}
.y1bd{bottom:732.411150px;}
.y223{bottom:732.429150px;}
.y264{bottom:733.315200px;}
.yde{bottom:733.549050px;}
.y17f{bottom:733.954050px;}
.ya{bottom:734.653050px;}
.y45{bottom:738.443700px;}
.y11e{bottom:739.772550px;}
.y66{bottom:741.433650px;}
.ya7{bottom:743.552550px;}
.y30b{bottom:743.581650px;}
.y2d3{bottom:743.626650px;}
.y1e5{bottom:746.539350px;}
.y1bc{bottom:750.406650px;}
.y222{bottom:750.424650px;}
.ydd{bottom:751.544550px;}
.y44{bottom:751.946700px;}
.y1ef{bottom:751.949550px;}
.y9{bottom:752.648550px;}
.y30a{bottom:757.084650px;}
.y2d2{bottom:757.129650px;}
.y11d{bottom:757.768050px;}
.y263{bottom:758.515200px;}
.y65{bottom:759.429150px;}
.y1e4{bottom:761.539350px;}
.y167{bottom:763.402650px;}
.y1bb{bottom:768.402150px;}
.y221{bottom:768.420150px;}
.y43{bottom:768.442200px;}
.ydc{bottom:769.540050px;}
.y1ee{bottom:769.945050px;}
.y309{bottom:770.587650px;}
.y2d1{bottom:770.632650px;}
.y260{bottom:773.301900px;}
.y11c{bottom:775.763550px;}
.y1e3{bottom:776.539350px;}
.y64{bottom:777.424650px;}
.y17e{bottom:777.451050px;}
.y166{bottom:778.402650px;}
.y1b9{bottom:783.508500px;}
.y308{bottom:784.090650px;}
.y2d0{bottom:784.135650px;}
.y1ba{bottom:786.397650px;}
.y220{bottom:786.415650px;}
.y1b8{bottom:786.420150px;}
.ydb{bottom:787.535550px;}
.y1ed{bottom:787.940550px;}
.y25f{bottom:788.301900px;}
.y1e2{bottom:791.539350px;}
.y165{bottom:793.402650px;}
.y11b{bottom:793.759050px;}
.y63{bottom:795.420150px;}
.y17d{bottom:795.446550px;}
.y37{bottom:797.198700px;}
.y307{bottom:797.593650px;}
.y2cf{bottom:797.638650px;}
.yd0{bottom:798.684150px;}
.y25e{bottom:803.301900px;}
.y21f{bottom:804.411150px;}
.y1b7{bottom:804.415650px;}
.yda{bottom:805.531050px;}
.y1ec{bottom:805.936050px;}
.y292{bottom:806.890200px;}
.y42{bottom:808.195200px;}
.y306{bottom:811.096650px;}
.y2ce{bottom:811.141650px;}
.y11a{bottom:811.754550px;}
.y62{bottom:813.415650px;}
.y17c{bottom:813.442050px;}
.ycf{bottom:813.684150px;}
.y36{bottom:813.698700px;}
.y41{bottom:821.698200px;}
.y291{bottom:821.890200px;}
.y21e{bottom:822.406650px;}
.y1b6{bottom:822.411150px;}
.yd9{bottom:823.526550px;}
.y1eb{bottom:823.931550px;}
.y305{bottom:824.599650px;}
.y2cd{bottom:824.644650px;}
.yce{bottom:828.684150px;}
.y119{bottom:829.750050px;}
.y35{bottom:830.198700px;}
.y61{bottom:831.411150px;}
.y17b{bottom:831.437550px;}
.y40{bottom:835.201200px;}
.y290{bottom:836.890200px;}
.y2cc{bottom:838.102650px;}
.y21d{bottom:840.402150px;}
.y1b5{bottom:840.406650px;}
.yd8{bottom:841.522050px;}
.y1ea{bottom:841.927050px;}
.ycd{bottom:843.684150px;}
.y34{bottom:846.698700px;}
.y118{bottom:847.745550px;}
.y3f{bottom:848.704200px;}
.y60{bottom:849.406650px;}
.y17a{bottom:849.433050px;}
.y2cb{bottom:851.605650px;}
.y1b4{bottom:858.402150px;}
.y21c{bottom:858.406650px;}
.ycc{bottom:858.684150px;}
.yd7{bottom:859.517550px;}
.y1e9{bottom:859.922550px;}
.y3e{bottom:862.207200px;}
.y2ca{bottom:865.108650px;}
.y117{bottom:865.741050px;}
.y33{bottom:867.194700px;}
.y5f{bottom:867.402150px;}
.y179{bottom:867.428550px;}
.y1b2{bottom:873.510000px;}
.y3d{bottom:875.710200px;}
.y1b3{bottom:876.397650px;}
.y1b1{bottom:876.402150px;}
.yd6{bottom:877.513050px;}
.y2c9{bottom:878.611650px;}
.y116{bottom:883.736550px;}
.y5e{bottom:885.424050px;}
.y3c{bottom:889.213200px;}
.y32{bottom:891.098550px;}
.y2c8{bottom:892.114650px;}
.y1af{bottom:894.406650px;}
.y21b{bottom:894.433650px;}
.yd5{bottom:895.508550px;}
.y1b0{bottom:898.893150px;}
.y115{bottom:901.732050px;}
.y3b{bottom:902.716200px;}
.y5d{bottom:903.419550px;}
.y2c7{bottom:905.617650px;}
.y31{bottom:907.298700px;}
.y1ae{bottom:912.402150px;}
.y21a{bottom:912.429150px;}
.yd4{bottom:913.504050px;}
.y3a{bottom:916.219200px;}
.y2c6{bottom:919.120650px;}
.y114{bottom:919.727550px;}
.y5c{bottom:921.415050px;}
.y30{bottom:923.498700px;}
.y1aa{bottom:927.510000px;}
.y39{bottom:929.722200px;}
.y1ad{bottom:930.397650px;}
.y1e8{bottom:930.419550px;}
.y1a9{bottom:930.420150px;}
.y219{bottom:930.424650px;}
.yd3{bottom:931.499550px;}
.y2c5{bottom:932.623650px;}
.y5b{bottom:939.410550px;}
.y2f{bottom:939.698700px;}
.y2c4{bottom:946.126650px;}
.y38{bottom:946.217700px;}
.y113{bottom:948.415050px;}
.y1a8{bottom:948.415650px;}
.y218{bottom:948.420150px;}
.yd2{bottom:949.495050px;}
.y5a{bottom:957.406050px;}
.y2c3{bottom:959.629650px;}
.y112{bottom:966.410550px;}
.y1a7{bottom:966.411150px;}
.y217{bottom:966.415650px;}
.y2e{bottom:967.898550px;}
.y2c2{bottom:973.132650px;}
.y178{bottom:975.401550px;}
.yd1{bottom:976.495050px;}
.y51{bottom:976.592700px;}
.y59{bottom:984.406050px;}
.y1a6{bottom:984.406650px;}
.y216{bottom:984.411150px;}
.y2c1{bottom:986.635650px;}
.y177{bottom:993.397050px;}
.y2d{bottom:994.898550px;}
.y52{bottom:996.098550px;}
.y2c0{bottom:1000.138650px;}
.y58{bottom:1002.401550px;}
.y1a5{bottom:1002.402150px;}
.y215{bottom:1002.406650px;}
.y2bf{bottom:1013.641650px;}
.y1a1{bottom:1017.508500px;}
.y57{bottom:1020.397050px;}
.y1a4{bottom:1020.397650px;}
.y214{bottom:1020.402150px;}
.y2be{bottom:1027.144650px;}
.y56{bottom:1038.392550px;}
.y2bd{bottom:1040.647650px;}
.y213{bottom:1042.893150px;}
.y54{bottom:1096.623600px;}
.y55{bottom:1097.773650px;}
.y89{bottom:1158.405000px;}
.h16{height:3.550694px;}
.h23{height:12.636000px;}
.h22{height:13.741500px;}
.h1f{height:13.743000px;}
.h18{height:14.494210px;}
.h1b{height:16.821000px;}
.h12{height:19.197000px;}
.h9{height:22.027200px;}
.h21{height:23.639179px;}
.h25{height:23.883964px;}
.h17{height:24.058810px;}
.h24{height:24.635971px;}
.h1d{height:24.780600px;}
.hc{height:28.812000px;}
.h1c{height:28.821030px;}
.h11{height:29.325586px;}
.h5{height:29.652000px;}
.h27{height:29.832000px;}
.hb{height:29.946000px;}
.h14{height:31.196995px;}
.h26{height:32.626564px;}
.h1a{height:33.888000px;}
.h19{height:34.224000px;}
.h13{height:36.744307px;}
.h15{height:37.013299px;}
.ha{height:38.011200px;}
.h1e{height:38.016000px;}
.h3{height:38.124000px;}
.hf{height:38.502000px;}
.he{height:42.360000px;}
.h8{height:43.007700px;}
.h7{height:43.008300px;}
.h20{height:43.617964px;}
.h2{height:47.058000px;}
.h4{height:51.336000px;}
.hd{height:59.892000px;}
.h6{height:64.170000px;}
.h1{height:1182.000000px;}
.h10{height:1182.045000px;}
.h0{height:1182.046509px;}
.w8{width:24.858000px;}
.wa{width:24.867000px;}
.w6{width:25.614000px;}
.w7{width:25.623000px;}
.w9{width:51.867004px;}
.w2{width:153.270000px;}
.w3{width:180.278984px;}
.w4{width:201.717000px;}
.w5{width:228.716995px;}
.w0{width:901.417511px;}
.w1{width:901.500000px;}
.x9{left:-37.152300px;}
.x0{left:0.000000px;}
.x27{left:8.262900px;}
.x32{left:14.171550px;}
.xc{left:17.573700px;}
.x13{left:19.990347px;}
.xb{left:22.103553px;}
.xd{left:37.369053px;}
.x2{left:45.713100px;}
.x22{left:51.693300px;}
.x3{left:60.713250px;}
.xe{left:76.660203px;}
.x14{left:110.777850px;}
.x15{left:129.428847px;}
.x16{left:132.505050px;}
.xf{left:136.615050px;}
.x17{left:152.299047px;}
.x18{left:183.538500px;}
.x5{left:220.797000px;}
.x1{left:250.671300px;}
.x3d{left:262.459350px;}
.x19{left:268.453350px;}
.x31{left:270.445496px;}
.x30{left:283.945500px;}
.x1b{left:288.440550px;}
.x1a{left:309.355950px;}
.xa{left:353.401497px;}
.x8{left:366.901500px;}
.x12{left:438.724503px;}
.x25{left:443.212800px;}
.x1c{left:450.628950px;}
.x11{left:452.224500px;}
.x21{left:453.842400px;}
.x1f{left:482.727000px;}
.x2b{left:506.722200px;}
.x10{left:520.180050px;}
.x37{left:548.927994px;}
.x36{left:562.428000px;}
.x29{left:582.969000px;}
.x38{left:587.294400px;}
.x34{left:588.562500px;}
.x1e{left:595.290150px;}
.x33{left:602.062500px;}
.x2a{left:608.592000px;}
.x3c{left:610.266900px;}
.x35{left:626.929200px;}
.x23{left:632.819250px;}
.x3a{left:654.218994px;}
.x39{left:667.719000px;}
.x3b{left:692.586600px;}
.x6{left:695.778300px;}
.x26{left:764.413500px;}
.x2e{left:767.295000px;}
.x28{left:790.036200px;}
.x2f{left:792.918300px;}
.x1d{left:809.566800px;}
.x24{left:810.925800px;}
.x4{left:817.675800px;}
.x2c{left:830.085000px;}
.x20{left:846.824850px;}
.x2d{left:855.707850px;}
.x7{left:878.940000px;}
@media print{
.v4{vertical-align:-16.752000pt;}
.v1{vertical-align:-13.440000pt;}
.v7{vertical-align:-11.946667pt;}
.vb{vertical-align:-10.293333pt;}
.v5{vertical-align:-8.501867pt;}
.v6{vertical-align:-5.312533pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.771200pt;}
.va{vertical-align:11.946667pt;}
.v3{vertical-align:14.208000pt;}
.v2{vertical-align:15.984000pt;}
.v8{vertical-align:17.541333pt;}
.ls10{letter-spacing:-1.004237pt;}
.ls11{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.lse{letter-spacing:0.001067pt;}
.ls14{letter-spacing:0.003200pt;}
.ls6{letter-spacing:0.003332pt;}
.ls12{letter-spacing:0.009067pt;}
.ls1c{letter-spacing:0.009600pt;}
.lsd{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.027200pt;}
.ls1a{letter-spacing:0.028267pt;}
.ls13{letter-spacing:0.031467pt;}
.ls19{letter-spacing:0.110933pt;}
.ls1e{letter-spacing:0.218400pt;}
.lsf{letter-spacing:0.249600pt;}
.ls23{letter-spacing:0.312000pt;}
.ls1d{letter-spacing:0.336000pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.432000pt;}
.ls22{letter-spacing:0.475200pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls0{letter-spacing:1.216000pt;}
.lsa{letter-spacing:2.391040pt;}
.lsc{letter-spacing:2.438861pt;}
.ls16{letter-spacing:2.657867pt;}
.ls17{letter-spacing:2.658400pt;}
.ls4{letter-spacing:2.660267pt;}
.ls3{letter-spacing:10.616218pt;}
.lsb{letter-spacing:13.007258pt;}
.ls5{letter-spacing:13.285074pt;}
.ls9{letter-spacing:13.285333pt;}
.ls7{letter-spacing:95.641600pt;}
.ws3d{word-spacing:-95.641600pt;}
.ws2{word-spacing:-17.216000pt;}
.wsbc{word-spacing:-14.666667pt;}
.ws59{word-spacing:-12.384000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws95{word-spacing:-11.616000pt;}
.ws35{word-spacing:-10.666667pt;}
.ws32{word-spacing:-10.664038pt;}
.ws65{word-spacing:-10.616218pt;}
.ws3e{word-spacing:-9.984000pt;}
.ws3{word-spacing:-9.333333pt;}
.wsb7{word-spacing:-8.112000pt;}
.ws5a{word-spacing:-8.049600pt;}
.wsb4{word-spacing:-8.018400pt;}
.ws0{word-spacing:-7.800000pt;}
.ws4{word-spacing:-6.933333pt;}
.wsd4{word-spacing:-6.066667pt;}
.ws94{word-spacing:-5.212800pt;}
.ws96{word-spacing:-4.881600pt;}
.wsb{word-spacing:-4.656000pt;}
.ws100{word-spacing:-3.770667pt;}
.wse{word-spacing:-3.658667pt;}
.ws36{word-spacing:-3.509333pt;}
.ws20{word-spacing:-3.360000pt;}
.wsbd{word-spacing:-3.072000pt;}
.wscc{word-spacing:-2.725333pt;}
.wsfa{word-spacing:-2.576000pt;}
.ws2a{word-spacing:-2.352000pt;}
.ws1d{word-spacing:-2.304000pt;}
.ws99{word-spacing:-2.208000pt;}
.ws55{word-spacing:-2.160000pt;}
.wse6{word-spacing:-2.128000pt;}
.ws8c{word-spacing:-2.112000pt;}
.wsd6{word-spacing:-2.090667pt;}
.wsa{word-spacing:-2.063995pt;}
.ws79{word-spacing:-2.016000pt;}
.wsa2{word-spacing:-1.968000pt;}
.ws9a{word-spacing:-1.920000pt;}
.ws2b{word-spacing:-1.872000pt;}
.wsf1{word-spacing:-1.829333pt;}
.ws1e{word-spacing:-1.824000pt;}
.ws1a{word-spacing:-1.728000pt;}
.ws7a{word-spacing:-1.680000pt;}
.ws5e{word-spacing:-1.632000pt;}
.wsf5{word-spacing:-1.605330pt;}
.ws9{word-spacing:-1.584000pt;}
.wsc8{word-spacing:-1.568000pt;}
.wsa9{word-spacing:-1.536000pt;}
.ws87{word-spacing:-1.488000pt;}
.wsf3{word-spacing:-1.456000pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws75{word-spacing:-1.392000pt;}
.wsf8{word-spacing:-1.381333pt;}
.wsf{word-spacing:-1.344000pt;}
.wsd3{word-spacing:-1.306667pt;}
.ws3f{word-spacing:-1.296000pt;}
.ws68{word-spacing:-1.248000pt;}
.ws91{word-spacing:-1.200000pt;}
.ws7b{word-spacing:-1.152000pt;}
.ws50{word-spacing:-1.104000pt;}
.ws26{word-spacing:-1.056000pt;}
.wsc9{word-spacing:-1.045333pt;}
.ws1c{word-spacing:-1.008000pt;}
.ws90{word-spacing:-0.960000pt;}
.ws93{word-spacing:-0.912000pt;}
.ws86{word-spacing:-0.864000pt;}
.ws101{word-spacing:-0.821333pt;}
.ws58{word-spacing:-0.816000pt;}
.ws40{word-spacing:-0.768000pt;}
.ws5f{word-spacing:-0.672000pt;}
.ws92{word-spacing:-0.624000pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws8a{word-spacing:-0.528000pt;}
.ws7c{word-spacing:-0.480000pt;}
.wsa4{word-spacing:-0.432000pt;}
.wsca{word-spacing:-0.410667pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws37{word-spacing:-0.336000pt;}
.ws4b{word-spacing:-0.288000pt;}
.ws3b{word-spacing:-0.240000pt;}
.ws7e{word-spacing:-0.192000pt;}
.wscf{word-spacing:-0.186667pt;}
.wsf4{word-spacing:-0.149333pt;}
.ws6d{word-spacing:-0.144000pt;}
.wsfc{word-spacing:-0.112000pt;}
.wsa3{word-spacing:-0.096000pt;}
.wsfe{word-spacing:-0.074667pt;}
.ws19{word-spacing:-0.048000pt;}
.ws33{word-spacing:-0.047821pt;}
.wsdb{word-spacing:-0.037333pt;}
.ws5d{word-spacing:-0.031084pt;}
.wsd{word-spacing:0.000000pt;}
.ws12{word-spacing:0.048000pt;}
.ws10{word-spacing:0.096000pt;}
.wsba{word-spacing:0.144000pt;}
.ws67{word-spacing:0.192000pt;}
.wsc5{word-spacing:0.224000pt;}
.ws45{word-spacing:0.240000pt;}
.wse4{word-spacing:0.261333pt;}
.ws6e{word-spacing:0.288000pt;}
.ws8f{word-spacing:0.336000pt;}
.wsfd{word-spacing:0.373333pt;}
.ws8e{word-spacing:0.384000pt;}
.ws78{word-spacing:0.432000pt;}
.wse1{word-spacing:0.448000pt;}
.ws2e{word-spacing:0.480000pt;}
.ws62{word-spacing:0.528000pt;}
.ws38{word-spacing:0.576000pt;}
.ws6c{word-spacing:0.624000pt;}
.wsc{word-spacing:0.672000pt;}
.ws9f{word-spacing:0.720000pt;}
.wsc7{word-spacing:0.746667pt;}
.ws1b{word-spacing:0.768000pt;}
.ws6a{word-spacing:0.816000pt;}
.wsd2{word-spacing:0.821333pt;}
.wsd7{word-spacing:0.858667pt;}
.ws21{word-spacing:0.864000pt;}
.ws61{word-spacing:0.912000pt;}
.wsbe{word-spacing:0.933333pt;}
.ws5c{word-spacing:0.956416pt;}
.ws44{word-spacing:0.960000pt;}
.ws31{word-spacing:1.008000pt;}
.wscb{word-spacing:1.045333pt;}
.ws27{word-spacing:1.056000pt;}
.ws42{word-spacing:1.104000pt;}
.ws6b{word-spacing:1.152000pt;}
.wsc3{word-spacing:1.157333pt;}
.wsbf{word-spacing:1.194667pt;}
.ws53{word-spacing:1.200000pt;}
.wsdf{word-spacing:1.232000pt;}
.ws3c{word-spacing:1.248000pt;}
.ws82{word-spacing:1.296000pt;}
.wsde{word-spacing:1.306667pt;}
.ws70{word-spacing:1.344000pt;}
.wsed{word-spacing:1.381333pt;}
.ws51{word-spacing:1.392000pt;}
.wsfb{word-spacing:1.418667pt;}
.ws80{word-spacing:1.440000pt;}
.ws29{word-spacing:1.488000pt;}
.wseb{word-spacing:1.530667pt;}
.ws46{word-spacing:1.536000pt;}
.ws48{word-spacing:1.584000pt;}
.wsd5{word-spacing:1.605330pt;}
.ws64{word-spacing:1.632000pt;}
.ws3a{word-spacing:1.680000pt;}
.ws7d{word-spacing:1.728000pt;}
.wsd1{word-spacing:1.754667pt;}
.ws28{word-spacing:1.776000pt;}
.wsc2{word-spacing:1.792000pt;}
.ws6f{word-spacing:1.824000pt;}
.ws74{word-spacing:1.872000pt;}
.wscd{word-spacing:1.903996pt;}
.ws13{word-spacing:1.920000pt;}
.ws8{word-spacing:1.968000pt;}
.wsf9{word-spacing:1.978667pt;}
.ws30{word-spacing:2.016000pt;}
.wse3{word-spacing:2.053333pt;}
.ws60{word-spacing:2.063995pt;}
.ws9d{word-spacing:2.112000pt;}
.wsf2{word-spacing:2.128000pt;}
.ws83{word-spacing:2.160000pt;}
.ws89{word-spacing:2.208000pt;}
.ws52{word-spacing:2.256000pt;}
.wse0{word-spacing:2.277333pt;}
.ws85{word-spacing:2.304000pt;}
.wsc4{word-spacing:2.314667pt;}
.ws4a{word-spacing:2.352000pt;}
.wsc6{word-spacing:2.389333pt;}
.wsb5{word-spacing:2.400000pt;}
.wsff{word-spacing:2.426667pt;}
.ws49{word-spacing:2.447995pt;}
.ws2d{word-spacing:2.496000pt;}
.wsf7{word-spacing:2.501333pt;}
.wsce{word-spacing:2.538667pt;}
.wsaf{word-spacing:2.544000pt;}
.ws4d{word-spacing:2.592000pt;}
.ws84{word-spacing:2.640000pt;}
.ws47{word-spacing:2.688000pt;}
.ws7f{word-spacing:2.736000pt;}
.ws8b{word-spacing:2.784000pt;}
.wse2{word-spacing:2.800000pt;}
.ws72{word-spacing:2.832000pt;}
.ws102{word-spacing:2.874667pt;}
.ws11{word-spacing:2.880000pt;}
.ws54{word-spacing:2.928000pt;}
.wse9{word-spacing:2.949333pt;}
.wsa0{word-spacing:2.976000pt;}
.ws8d{word-spacing:3.024000pt;}
.wsf0{word-spacing:3.061333pt;}
.ws43{word-spacing:3.072000pt;}
.wse7{word-spacing:3.098667pt;}
.ws63{word-spacing:3.120000pt;}
.ws25{word-spacing:3.168000pt;}
.wsa7{word-spacing:3.216000pt;}
.ws9b{word-spacing:3.312000pt;}
.ws56{word-spacing:3.360000pt;}
.ws6{word-spacing:3.504000pt;}
.wse8{word-spacing:3.546667pt;}
.ws88{word-spacing:3.552000pt;}
.wsc0{word-spacing:3.621333pt;}
.ws4c{word-spacing:3.648000pt;}
.ws7{word-spacing:3.696000pt;}
.wsdc{word-spacing:3.733333pt;}
.wse5{word-spacing:3.770667pt;}
.ws22{word-spacing:3.792000pt;}
.ws2f{word-spacing:3.840000pt;}
.wsd0{word-spacing:3.882667pt;}
.ws71{word-spacing:3.888000pt;}
.ws73{word-spacing:3.936000pt;}
.ws77{word-spacing:3.984000pt;}
.ws69{word-spacing:4.032000pt;}
.ws17{word-spacing:4.080000pt;}
.wsb1{word-spacing:4.127995pt;}
.ws23{word-spacing:4.175995pt;}
.wsb0{word-spacing:4.224000pt;}
.ws76{word-spacing:4.272000pt;}
.wsaa{word-spacing:4.320000pt;}
.ws9c{word-spacing:4.368000pt;}
.wsb3{word-spacing:4.416000pt;}
.ws39{word-spacing:4.464000pt;}
.ws81{word-spacing:4.512000pt;}
.wsa5{word-spacing:4.656000pt;}
.wsdd{word-spacing:4.666667pt;}
.wsbb{word-spacing:4.752000pt;}
.ws97{word-spacing:4.800000pt;}
.ws41{word-spacing:4.848000pt;}
.ws4f{word-spacing:4.896000pt;}
.ws15{word-spacing:4.944000pt;}
.wsea{word-spacing:5.002667pt;}
.wsec{word-spacing:5.040000pt;}
.wsac{word-spacing:5.184000pt;}
.wsf6{word-spacing:5.189333pt;}
.ws9e{word-spacing:5.232000pt;}
.ws57{word-spacing:5.280000pt;}
.wsae{word-spacing:5.424000pt;}
.wsb6{word-spacing:5.520000pt;}
.wsa6{word-spacing:5.568000pt;}
.ws18{word-spacing:5.712000pt;}
.wsa1{word-spacing:5.808000pt;}
.wsa8{word-spacing:6.048000pt;}
.ws24{word-spacing:6.336000pt;}
.wsab{word-spacing:6.432000pt;}
.ws98{word-spacing:6.768000pt;}
.wsb9{word-spacing:6.960000pt;}
.wsb8{word-spacing:7.152000pt;}
.ws16{word-spacing:7.200000pt;}
.ws14{word-spacing:7.248000pt;}
.wsd9{word-spacing:7.802667pt;}
.wsad{word-spacing:8.352000pt;}
.wsd8{word-spacing:8.437333pt;}
.wsee{word-spacing:8.810667pt;}
.ws34{word-spacing:10.568397pt;}
.wsc1{word-spacing:11.872000pt;}
.wsda{word-spacing:12.320000pt;}
.ws5b{word-spacing:13.246362pt;}
.ws5{word-spacing:14.666667pt;}
.wsb2{word-spacing:15.504000pt;}
.wsef{word-spacing:26.469333pt;}
.ws66{word-spacing:2084.016000pt;}
._17{margin-left:-27.504000pt;}
._16{margin-left:-15.888000pt;}
._15{margin-left:-13.344000pt;}
._14{margin-left:-12.288000pt;}
._10{margin-left:-10.444979pt;}
._d{margin-left:-9.333333pt;}
._8{margin-left:-7.440000pt;}
._7{margin-left:-5.157333pt;}
._5{margin-left:-4.176000pt;}
._b{margin-left:-3.226133pt;}
._1{margin-left:-2.304000pt;}
._2{margin-left:-1.056000pt;}
._0{width:1.400000pt;}
._6{width:2.296000pt;}
._4{width:3.264000pt;}
._3{width:4.456000pt;}
._12{width:5.345600pt;}
._e{width:6.676800pt;}
._f{width:7.713600pt;}
._11{width:11.212800pt;}
._13{width:15.984000pt;}
._c{width:24.490667pt;}
._18{width:26.749333pt;}
._a{width:44.869867pt;}
._9{width:45.881067pt;}
.fse{font-size:24.266667pt;}
.fsa{font-size:26.560000pt;}
.fsd{font-size:26.566933pt;}
.fs6{font-size:27.733333pt;}
.fsc{font-size:31.083733pt;}
.fs2{font-size:31.200000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1c9{bottom:0.009333pt;}
.y1ac{bottom:0.074762pt;}
.y1a3{bottom:0.076095pt;}
.y1ab{bottom:2.558933pt;}
.y1a2{bottom:2.560267pt;}
.y1c6{bottom:3.280267pt;}
.y1c8{bottom:3.285452pt;}
.ye6{bottom:4.305467pt;}
.y93{bottom:4.312133pt;}
.ye8{bottom:5.638809pt;}
.y95{bottom:5.645465pt;}
.yea{bottom:9.676267pt;}
.y97{bottom:9.833465pt;}
.ye9{bottom:13.862800pt;}
.y96{bottom:13.870933pt;}
.y53{bottom:27.287600pt;}
.y24{bottom:27.334400pt;}
.y1e7{bottom:65.353467pt;}
.y171{bottom:68.024133pt;}
.y13e{bottom:68.032133pt;}
.y10b{bottom:68.039600pt;}
.y9d{bottom:68.040133pt;}
.ycb{bottom:68.044133pt;}
.y104{bottom:68.060133pt;}
.y88{bottom:68.401467pt;}
.y20d{bottom:68.413467pt;}
.y164{bottom:72.016133pt;}
.y304{bottom:72.870800pt;}
.y2c{bottom:77.602400pt;}
.y8{bottom:77.625067pt;}
.y1e6{bottom:78.686800pt;}
.y170{bottom:84.024133pt;}
.y13d{bottom:84.028133pt;}
.y10a{bottom:84.035600pt;}
.y9c{bottom:84.036133pt;}
.yca{bottom:84.040133pt;}
.y103{bottom:84.056133pt;}
.y87{bottom:84.397467pt;}
.y20c{bottom:84.409467pt;}
.y303{bottom:84.873467pt;}
.y2bc{bottom:86.617600pt;}
.y24c{bottom:86.918000pt;}
.y2b{bottom:89.605067pt;}
.y28f{bottom:90.865067pt;}
.y7{bottom:93.629067pt;}
.y302{bottom:96.876133pt;}
.y2bb{bottom:98.620267pt;}
.y13c{bottom:100.024133pt;}
.y109{bottom:100.031600pt;}
.y9b{bottom:100.032133pt;}
.yc9{bottom:100.036133pt;}
.y16f{bottom:100.043600pt;}
.y102{bottom:100.052133pt;}
.y24b{bottom:100.251333pt;}
.y86{bottom:100.393467pt;}
.y20b{bottom:100.405467pt;}
.y2a{bottom:101.607733pt;}
.y28e{bottom:102.867733pt;}
.y1a0{bottom:108.397467pt;}
.y301{bottom:108.878800pt;}
.y6{bottom:109.625067pt;}
.y2ba{bottom:110.622933pt;}
.y24a{bottom:113.584667pt;}
.y29{bottom:113.610400pt;}
.y28d{bottom:114.870400pt;}
.y13b{bottom:116.024133pt;}
.y108{bottom:116.027600pt;}
.y9a{bottom:116.028133pt;}
.yc8{bottom:116.032133pt;}
.y16e{bottom:116.039600pt;}
.y101{bottom:116.048133pt;}
.y162{bottom:116.060133pt;}
.y85{bottom:116.389467pt;}
.y20a{bottom:116.401467pt;}
.y163{bottom:120.016133pt;}
.y300{bottom:120.881467pt;}
.y2b9{bottom:122.625600pt;}
.y19f{bottom:124.393467pt;}
.y28{bottom:125.613067pt;}
.y5{bottom:125.633067pt;}
.y28c{bottom:126.873067pt;}
.y107{bottom:132.023600pt;}
.y99{bottom:132.024133pt;}
.yc7{bottom:132.028133pt;}
.y16d{bottom:132.035600pt;}
.y100{bottom:132.044133pt;}
.y161{bottom:132.056133pt;}
.y84{bottom:132.385467pt;}
.y209{bottom:132.397467pt;}
.y2ff{bottom:132.884133pt;}
.y262{bottom:134.161733pt;}
.y2b8{bottom:134.628267pt;}
.y27{bottom:137.615733pt;}
.y28b{bottom:138.875733pt;}
.y19e{bottom:140.389467pt;}
.y4{bottom:141.629067pt;}
.y94{bottom:142.366669pt;}
.y92{bottom:143.700000pt;}
.y2fe{bottom:144.886800pt;}
.y2b7{bottom:146.630933pt;}
.y261{bottom:147.495067pt;}
.y106{bottom:148.019600pt;}
.y98{bottom:148.020133pt;}
.yc6{bottom:148.024133pt;}
.y91{bottom:148.026800pt;}
.y16c{bottom:148.031600pt;}
.yff{bottom:148.040133pt;}
.y160{bottom:148.052133pt;}
.y83{bottom:148.381467pt;}
.y208{bottom:148.393467pt;}
.y26{bottom:149.618400pt;}
.y28a{bottom:150.878400pt;}
.y19d{bottom:156.385467pt;}
.y2fd{bottom:156.889467pt;}
.y3{bottom:157.625067pt;}
.y2b6{bottom:158.633600pt;}
.y25{bottom:161.621067pt;}
.y289{bottom:162.881067pt;}
.y105{bottom:164.015600pt;}
.y16b{bottom:164.027600pt;}
.yfe{bottom:164.036133pt;}
.y13a{bottom:164.040133pt;}
.y15f{bottom:164.048133pt;}
.yc5{bottom:164.135600pt;}
.y82{bottom:164.377467pt;}
.y207{bottom:164.389467pt;}
.y90{bottom:165.438800pt;}
.y2fc{bottom:168.892133pt;}
.y2b5{bottom:170.636267pt;}
.y19c{bottom:172.381467pt;}
.y2{bottom:173.621067pt;}
.y288{bottom:174.883733pt;}
.y16a{bottom:180.023600pt;}
.yfd{bottom:180.032133pt;}
.y139{bottom:180.036133pt;}
.y15e{bottom:180.044133pt;}
.yc4{bottom:180.131600pt;}
.y81{bottom:180.373467pt;}
.y206{bottom:180.385467pt;}
.y2fb{bottom:180.894800pt;}
.y8f{bottom:181.434800pt;}
.y2b4{bottom:182.638933pt;}
.y287{bottom:186.886400pt;}
.y19b{bottom:188.377467pt;}
.y2fa{bottom:192.897467pt;}
.y2b3{bottom:194.641600pt;}
.y169{bottom:196.019600pt;}
.yfc{bottom:196.028133pt;}
.y138{bottom:196.032133pt;}
.yc3{bottom:196.127600pt;}
.y80{bottom:196.369467pt;}
.y205{bottom:196.381467pt;}
.y8e{bottom:197.435600pt;}
.y1{bottom:197.621067pt;}
.y286{bottom:198.889067pt;}
.y15d{bottom:204.044133pt;}
.y2f9{bottom:204.900133pt;}
.y2b2{bottom:206.644267pt;}
.y111{bottom:209.252000pt;}
.y285{bottom:210.891733pt;}
.y168{bottom:212.015600pt;}
.y137{bottom:212.028133pt;}
.yc2{bottom:212.123600pt;}
.y7f{bottom:212.365467pt;}
.y19a{bottom:212.377467pt;}
.y2f8{bottom:216.902800pt;}
.y2b1{bottom:218.646933pt;}
.yfb{bottom:220.028133pt;}
.y15c{bottom:220.040133pt;}
.y8d{bottom:221.435600pt;}
.y110{bottom:222.585333pt;}
.y284{bottom:222.894400pt;}
.y136{bottom:228.024133pt;}
.yc1{bottom:228.119600pt;}
.y7e{bottom:228.361467pt;}
.y199{bottom:228.373467pt;}
.y2f7{bottom:228.905467pt;}
.y2b0{bottom:230.649600pt;}
.y283{bottom:234.897067pt;}
.y10f{bottom:235.918667pt;}
.yfa{bottom:236.024133pt;}
.y15b{bottom:236.036133pt;}
.y23{bottom:239.998400pt;}
.y2f6{bottom:240.908133pt;}
.y2af{bottom:242.652267pt;}
.yc0{bottom:244.115600pt;}
.y135{bottom:244.151600pt;}
.y7d{bottom:244.357467pt;}
.y198{bottom:244.369467pt;}
.y282{bottom:246.899733pt;}
.y10e{bottom:249.252000pt;}
.y23a{bottom:251.028133pt;}
.yf9{bottom:252.020133pt;}
.y15a{bottom:252.032133pt;}
.y2f5{bottom:252.910800pt;}
.y176{bottom:253.116533pt;}
.y2ae{bottom:254.654933pt;}
.y22{bottom:255.994400pt;}
.y281{bottom:258.902400pt;}
.y8c{bottom:260.099600pt;}
.ybf{bottom:260.111600pt;}
.y134{bottom:260.147600pt;}
.y7c{bottom:260.353467pt;}
.y197{bottom:260.365467pt;}
.y10d{bottom:262.585333pt;}
.y2f4{bottom:264.913467pt;}
.y174{bottom:266.449867pt;}
.y2ad{bottom:266.657600pt;}
.y239{bottom:267.024133pt;}
.y159{bottom:268.028133pt;}
.y175{bottom:270.001867pt;}
.y280{bottom:270.905067pt;}
.y21{bottom:271.990400pt;}
.y10c{bottom:275.918667pt;}
.yf8{bottom:276.020133pt;}
.y8b{bottom:276.095600pt;}
.ybe{bottom:276.107600pt;}
.y133{bottom:276.143600pt;}
.y196{bottom:276.361467pt;}
.y2f3{bottom:276.916133pt;}
.y2ac{bottom:278.660267pt;}
.y173{bottom:279.783200pt;}
.y27f{bottom:282.907733pt;}
.y238{bottom:283.024133pt;}
.y158{bottom:284.024133pt;}
.y7b{bottom:284.353467pt;}
.y204{bottom:284.365467pt;}
.y20{bottom:287.986400pt;}
.y2f2{bottom:288.918800pt;}
.y2ab{bottom:290.662933pt;}
.y8a{bottom:292.091600pt;}
.ybd{bottom:292.103600pt;}
.y132{bottom:292.139600pt;}
.y195{bottom:292.357467pt;}
.y172{bottom:293.116533pt;}
.y1e1{bottom:293.702800pt;}
.y27e{bottom:294.910400pt;}
.yf7{bottom:298.686800pt;}
.y237{bottom:299.028133pt;}
.y156{bottom:300.028133pt;}
.y203{bottom:300.361467pt;}
.y2f1{bottom:300.921467pt;}
.y2aa{bottom:302.665600pt;}
.y1f{bottom:303.982400pt;}
.y157{bottom:304.016133pt;}
.y27d{bottom:306.913067pt;}
.y7a{bottom:307.020133pt;}
.ybc{bottom:308.099600pt;}
.y194{bottom:308.361467pt;}
.y1e0{bottom:309.698800pt;}
.y2f0{bottom:312.924133pt;}
.y2a9{bottom:314.668267pt;}
.y236{bottom:315.024133pt;}
.y155{bottom:316.024133pt;}
.y131{bottom:316.139600pt;}
.y202{bottom:316.357467pt;}
.y27c{bottom:318.915733pt;}
.y1e{bottom:319.978400pt;}
.ybb{bottom:324.095600pt;}
.y193{bottom:324.357467pt;}
.y2ef{bottom:324.926800pt;}
.y1df{bottom:325.694800pt;}
.y2a8{bottom:326.670933pt;}
.y27b{bottom:330.918400pt;}
.y235{bottom:331.024133pt;}
.y154{bottom:332.036133pt;}
.y201{bottom:332.353467pt;}
.ya6{bottom:335.337067pt;}
.y1d{bottom:335.974400pt;}
.y2ee{bottom:336.929467pt;}
.y2a7{bottom:338.673600pt;}
.yf6{bottom:339.072133pt;}
.y192{bottom:340.361467pt;}
.y1de{bottom:341.690800pt;}
.y27a{bottom:342.921067pt;}
.y234{bottom:347.028133pt;}
.y79{bottom:347.124133pt;}
.y153{bottom:348.032133pt;}
.yba{bottom:348.551600pt;}
.ya5{bottom:348.670400pt;}
.y2ed{bottom:348.932133pt;}
.y247{bottom:349.957867pt;}
.y2a6{bottom:350.676267pt;}
.y1c{bottom:351.970400pt;}
.y1dc{bottom:353.065348pt;}
.y1db{bottom:354.398667pt;}
.y279{bottom:354.923733pt;}
.yf5{bottom:355.068133pt;}
.y200{bottom:356.353467pt;}
.y191{bottom:356.357467pt;}
.y1dd{bottom:357.686800pt;}
.y1da{bottom:357.701467pt;}
.y130{bottom:360.143600pt;}
.y2ec{bottom:360.934800pt;}
.ya4{bottom:362.003733pt;}
.y2a5{bottom:362.678933pt;}
.y233{bottom:363.024133pt;}
.y78{bottom:363.120133pt;}
.y152{bottom:364.028133pt;}
.yb9{bottom:364.547600pt;}
.y246{bottom:365.953867pt;}
.y278{bottom:366.926400pt;}
.y1b{bottom:367.966400pt;}
.yf4{bottom:371.064133pt;}
.y190{bottom:372.365467pt;}
.y2eb{bottom:372.937467pt;}
.y1d9{bottom:373.697467pt;}
.y2a4{bottom:374.681600pt;}
.ya3{bottom:375.337067pt;}
.y12f{bottom:376.139600pt;}
.y277{bottom:378.929067pt;}
.y232{bottom:379.024133pt;}
.y77{bottom:379.116133pt;}
.y151{bottom:380.024133pt;}
.y25d{bottom:380.415467pt;}
.yb8{bottom:380.543600pt;}
.y245{bottom:381.949867pt;}
.y1a{bottom:383.962400pt;}
.y2ea{bottom:384.940133pt;}
.y2a3{bottom:386.684267pt;}
.yf3{bottom:387.060133pt;}
.y18f{bottom:388.361467pt;}
.ya2{bottom:388.670400pt;}
.y1d8{bottom:389.693467pt;}
.y276{bottom:390.931733pt;}
.y12e{bottom:392.135600pt;}
.y231{bottom:395.024133pt;}
.y76{bottom:395.112133pt;}
.y150{bottom:396.028133pt;}
.y25c{bottom:396.411467pt;}
.y1ff{bottom:396.467600pt;}
.yb7{bottom:396.539600pt;}
.y2e9{bottom:396.942800pt;}
.y244{bottom:397.945867pt;}
.y2a2{bottom:398.686933pt;}
.y19{bottom:399.958400pt;}
.ya1{bottom:402.003733pt;}
.y275{bottom:402.934400pt;}
.yf2{bottom:403.056133pt;}
.y18e{bottom:404.357467pt;}
.y12d{bottom:408.131600pt;}
.y2e8{bottom:408.945467pt;}
.y2a1{bottom:410.689600pt;}
.y230{bottom:411.028133pt;}
.y75{bottom:411.108133pt;}
.y14f{bottom:412.024133pt;}
.y25b{bottom:412.407467pt;}
.y1fe{bottom:412.463600pt;}
.yb6{bottom:412.535600pt;}
.y243{bottom:413.941867pt;}
.y274{bottom:414.937067pt;}
.ya0{bottom:415.337067pt;}
.y18{bottom:415.954400pt;}
.y1d7{bottom:416.357467pt;}
.yf1{bottom:419.052133pt;}
.y18d{bottom:420.377467pt;}
.y2e7{bottom:420.948133pt;}
.y2a0{bottom:422.692267pt;}
.y12c{bottom:424.127600pt;}
.y273{bottom:426.939733pt;}
.y22f{bottom:427.024133pt;}
.y74{bottom:427.104133pt;}
.y14d{bottom:428.024133pt;}
.y25a{bottom:428.403467pt;}
.y1fd{bottom:428.459600pt;}
.yb5{bottom:428.531600pt;}
.y9f{bottom:428.670400pt;}
.y242{bottom:429.937867pt;}
.y14e{bottom:432.016133pt;}
.y1d6{bottom:432.357467pt;}
.y2e6{bottom:432.950800pt;}
.y29f{bottom:434.694933pt;}
.yf0{bottom:435.048133pt;}
.y18c{bottom:436.373467pt;}
.y272{bottom:438.942400pt;}
.y12b{bottom:440.123600pt;}
.y9e{bottom:442.003733pt;}
.y22e{bottom:443.024133pt;}
.y73{bottom:443.100133pt;}
.y1d4{bottom:443.732015pt;}
.y14c{bottom:444.028133pt;}
.y259{bottom:444.399467pt;}
.y1fc{bottom:444.455600pt;}
.yb4{bottom:444.527600pt;}
.y2e5{bottom:444.953467pt;}
.y1d3{bottom:445.065333pt;}
.y17{bottom:445.076933pt;}
.y241{bottom:445.933867pt;}
.y29e{bottom:446.697600pt;}
.y1d5{bottom:448.353467pt;}
.y1d2{bottom:448.361467pt;}
.y271{bottom:450.945067pt;}
.yef{bottom:451.052133pt;}
.y18b{bottom:452.369467pt;}
.y12a{bottom:456.119600pt;}
.y2e4{bottom:456.956133pt;}
.y29d{bottom:458.700267pt;}
.y22d{bottom:459.020133pt;}
.y72{bottom:459.096133pt;}
.y14b{bottom:460.024133pt;}
.y258{bottom:460.395467pt;}
.y1fb{bottom:460.451600pt;}
.yb3{bottom:460.523600pt;}
.y16{bottom:461.072933pt;}
.y240{bottom:461.945867pt;}
.y270{bottom:462.947733pt;}
.y1d1{bottom:464.357467pt;}
.yee{bottom:467.048133pt;}
.y18a{bottom:468.365467pt;}
.y2e3{bottom:468.958800pt;}
.y29c{bottom:470.702933pt;}
.y129{bottom:472.115600pt;}
.y26f{bottom:474.950400pt;}
.y71{bottom:475.092133pt;}
.y1cf{bottom:475.732015pt;}
.y14a{bottom:476.036133pt;}
.y257{bottom:476.391467pt;}
.y1fa{bottom:476.447600pt;}
.yb2{bottom:476.519600pt;}
.y1ce{bottom:477.065333pt;}
.y15{bottom:477.068933pt;}
.y23f{bottom:477.941867pt;}
.y1d0{bottom:480.353467pt;}
.y1cd{bottom:480.365467pt;}
.y31a{bottom:480.921467pt;}
.y2e2{bottom:480.961467pt;}
.y29b{bottom:482.705600pt;}
.y22c{bottom:483.020133pt;}
.yed{bottom:483.048133pt;}
.y189{bottom:484.361467pt;}
.y50{bottom:485.043733pt;}
.y26e{bottom:486.953067pt;}
.y128{bottom:488.111600pt;}
.y70{bottom:491.088133pt;}
.y149{bottom:492.032133pt;}
.y256{bottom:492.387467pt;}
.y1f9{bottom:492.443600pt;}
.yb1{bottom:492.515600pt;}
.y319{bottom:492.924133pt;}
.y2e1{bottom:492.964133pt;}
.y14{bottom:493.064933pt;}
.y23e{bottom:493.937867pt;}
.y29a{bottom:494.708267pt;}
.y1cc{bottom:496.361467pt;}
.y4f{bottom:497.046400pt;}
.y26d{bottom:498.955733pt;}
.yec{bottom:499.048133pt;}
.y188{bottom:500.357467pt;}
.y318{bottom:504.926800pt;}
.y2e0{bottom:504.966800pt;}
.y299{bottom:506.710933pt;}
.y6f{bottom:507.084133pt;}
.y148{bottom:508.028133pt;}
.y255{bottom:508.383467pt;}
.y1f8{bottom:508.439600pt;}
.yb0{bottom:508.511600pt;}
.y13{bottom:509.060933pt;}
.y23d{bottom:509.933867pt;}
.y26c{bottom:510.958400pt;}
.y1cb{bottom:512.357467pt;}
.y127{bottom:513.611600pt;}
.y187{bottom:516.361467pt;}
.y317{bottom:516.929467pt;}
.y2df{bottom:516.969467pt;}
.y298{bottom:518.713600pt;}
.y26b{bottom:522.961067pt;}
.y22b{bottom:523.024133pt;}
.y6e{bottom:523.080133pt;}
.ye7{bottom:523.682658pt;}
.y1c7{bottom:523.732015pt;}
.y147{bottom:524.024133pt;}
.y4e{bottom:524.383733pt;}
.y254{bottom:524.403467pt;}
.y1f7{bottom:524.435600pt;}
.yaf{bottom:524.507600pt;}
.ye5{bottom:525.016000pt;}
.y12{bottom:525.056933pt;}
.y1c5{bottom:525.065333pt;}
.y23c{bottom:525.929867pt;}
.y1ca{bottom:528.353467pt;}
.y1c4{bottom:528.392133pt;}
.yeb{bottom:528.520133pt;}
.y316{bottom:528.932133pt;}
.y2de{bottom:528.972133pt;}
.y126{bottom:529.607600pt;}
.y297{bottom:530.716267pt;}
.y186{bottom:532.357467pt;}
.y26a{bottom:534.963733pt;}
.y4d{bottom:536.386400pt;}
.y22a{bottom:539.024133pt;}
.y6d{bottom:539.076133pt;}
.y145{bottom:540.035600pt;}
.y253{bottom:540.399467pt;}
.y1f6{bottom:540.431600pt;}
.yae{bottom:540.503600pt;}
.y315{bottom:540.934800pt;}
.y2dd{bottom:540.974800pt;}
.y11{bottom:541.052933pt;}
.y296{bottom:542.718933pt;}
.y146{bottom:544.016133pt;}
.y1c3{bottom:544.388133pt;}
.y125{bottom:545.603600pt;}
.y269{bottom:546.966400pt;}
.y4c{bottom:548.389067pt;}
.y185{bottom:548.423600pt;}
.y23b{bottom:549.929867pt;}
.y314{bottom:552.937467pt;}
.y2dc{bottom:552.977467pt;}
.y295{bottom:554.721600pt;}
.y229{bottom:555.024133pt;}
.ye4{bottom:556.004133pt;}
.y144{bottom:556.031600pt;}
.y252{bottom:556.395467pt;}
.y1f5{bottom:556.427600pt;}
.yad{bottom:556.499600pt;}
.y10{bottom:557.048933pt;}
.y268{bottom:558.969067pt;}
.y1c2{bottom:560.384133pt;}
.y4b{bottom:560.391733pt;}
.y124{bottom:561.599600pt;}
.y6c{bottom:563.076133pt;}
.y184{bottom:564.419600pt;}
.y313{bottom:564.940133pt;}
.y2db{bottom:564.980133pt;}
.y294{bottom:566.724267pt;}
.y228{bottom:571.068133pt;}
.ye3{bottom:572.000133pt;}
.y143{bottom:572.027600pt;}
.y251{bottom:572.391467pt;}
.y4a{bottom:572.394400pt;}
.y1f4{bottom:572.423600pt;}
.yac{bottom:572.495600pt;}
.yf{bottom:573.044933pt;}
.y1c1{bottom:576.380133pt;}
.y312{bottom:576.942800pt;}
.y2da{bottom:576.982800pt;}
.y123{bottom:577.595600pt;}
.y293{bottom:578.726933pt;}
.y267{bottom:578.969067pt;}
.y6b{bottom:579.072133pt;}
.y183{bottom:580.415600pt;}
.y49{bottom:584.397067pt;}
.y227{bottom:587.064133pt;}
.ye2{bottom:588.059600pt;}
.y250{bottom:588.387467pt;}
.y1f3{bottom:588.419600pt;}
.y311{bottom:588.945467pt;}
.y2d9{bottom:588.985467pt;}
.ye{bottom:589.040933pt;}
.y249{bottom:592.929867pt;}
.y122{bottom:593.591600pt;}
.y6a{bottom:595.068133pt;}
.y142{bottom:596.027600pt;}
.y48{bottom:596.399733pt;}
.y182{bottom:596.411600pt;}
.y212{bottom:596.481200pt;}
.yab{bottom:596.951600pt;}
.y310{bottom:600.948133pt;}
.y2d8{bottom:600.988133pt;}
.y1c0{bottom:603.044133pt;}
.y226{bottom:603.060133pt;}
.ye1{bottom:604.055600pt;}
.y24f{bottom:604.383467pt;}
.y1f2{bottom:604.415600pt;}
.yd{bottom:605.036933pt;}
.y248{bottom:606.263200pt;}
.y47{bottom:608.402400pt;}
.y121{bottom:609.587600pt;}
.y211{bottom:609.814533pt;}
.y69{bottom:611.064133pt;}
.y141{bottom:612.023600pt;}
.y181{bottom:612.407600pt;}
.yaa{bottom:612.947600pt;}
.y30f{bottom:612.950800pt;}
.y2d7{bottom:612.990800pt;}
.y1bf{bottom:619.040133pt;}
.y225{bottom:619.056133pt;}
.y266{bottom:619.843733pt;}
.ye0{bottom:620.051600pt;}
.y24e{bottom:620.379467pt;}
.y1f1{bottom:620.411600pt;}
.yc{bottom:621.032933pt;}
.y46{bottom:623.065067pt;}
.y210{bottom:623.147867pt;}
.y30e{bottom:624.953467pt;}
.y2d6{bottom:624.993467pt;}
.y120{bottom:625.583600pt;}
.y68{bottom:627.060133pt;}
.y140{bottom:628.019600pt;}
.y180{bottom:628.403600pt;}
.ya9{bottom:628.943600pt;}
.y1be{bottom:635.036133pt;}
.y224{bottom:635.052133pt;}
.y265{bottom:635.839733pt;}
.ydf{bottom:636.047600pt;}
.y1f0{bottom:636.407600pt;}
.y20f{bottom:636.481200pt;}
.y30d{bottom:636.956133pt;}
.y2d5{bottom:636.996133pt;}
.yb{bottom:637.028933pt;}
.y11f{bottom:641.579600pt;}
.y67{bottom:643.056133pt;}
.y13f{bottom:644.015600pt;}
.y24d{bottom:644.379467pt;}
.ya8{bottom:644.939600pt;}
.y30c{bottom:648.958800pt;}
.y2d4{bottom:648.998800pt;}
.y20e{bottom:649.814533pt;}
.y1bd{bottom:651.032133pt;}
.y223{bottom:651.048133pt;}
.y264{bottom:651.835733pt;}
.yde{bottom:652.043600pt;}
.y17f{bottom:652.403600pt;}
.ya{bottom:653.024933pt;}
.y45{bottom:656.394400pt;}
.y11e{bottom:657.575600pt;}
.y66{bottom:659.052133pt;}
.ya7{bottom:660.935600pt;}
.y30b{bottom:660.961467pt;}
.y2d3{bottom:661.001467pt;}
.y1e5{bottom:663.590533pt;}
.y1bc{bottom:667.028133pt;}
.y222{bottom:667.044133pt;}
.ydd{bottom:668.039600pt;}
.y44{bottom:668.397067pt;}
.y1ef{bottom:668.399600pt;}
.y9{bottom:669.020933pt;}
.y30a{bottom:672.964133pt;}
.y2d2{bottom:673.004133pt;}
.y11d{bottom:673.571600pt;}
.y263{bottom:674.235733pt;}
.y65{bottom:675.048133pt;}
.y1e4{bottom:676.923867pt;}
.y167{bottom:678.580133pt;}
.y1bb{bottom:683.024133pt;}
.y221{bottom:683.040133pt;}
.y43{bottom:683.059733pt;}
.ydc{bottom:684.035600pt;}
.y1ee{bottom:684.395600pt;}
.y309{bottom:684.966800pt;}
.y2d1{bottom:685.006800pt;}
.y260{bottom:687.379467pt;}
.y11c{bottom:689.567600pt;}
.y1e3{bottom:690.257200pt;}
.y64{bottom:691.044133pt;}
.y17e{bottom:691.067600pt;}
.y166{bottom:691.913467pt;}
.y1b9{bottom:696.452000pt;}
.y308{bottom:696.969467pt;}
.y2d0{bottom:697.009467pt;}
.y1ba{bottom:699.020133pt;}
.y220{bottom:699.036133pt;}
.y1b8{bottom:699.040133pt;}
.ydb{bottom:700.031600pt;}
.y1ed{bottom:700.391600pt;}
.y25f{bottom:700.712800pt;}
.y1e2{bottom:703.590533pt;}
.y165{bottom:705.246800pt;}
.y11b{bottom:705.563600pt;}
.y63{bottom:707.040133pt;}
.y17d{bottom:707.063600pt;}
.y37{bottom:708.621067pt;}
.y307{bottom:708.972133pt;}
.y2cf{bottom:709.012133pt;}
.yd0{bottom:709.941467pt;}
.y25e{bottom:714.046133pt;}
.y21f{bottom:715.032133pt;}
.y1b7{bottom:715.036133pt;}
.yda{bottom:716.027600pt;}
.y1ec{bottom:716.387600pt;}
.y292{bottom:717.235733pt;}
.y42{bottom:718.395733pt;}
.y306{bottom:720.974800pt;}
.y2ce{bottom:721.014800pt;}
.y11a{bottom:721.559600pt;}
.y62{bottom:723.036133pt;}
.y17c{bottom:723.059600pt;}
.ycf{bottom:723.274800pt;}
.y36{bottom:723.287733pt;}
.y41{bottom:730.398400pt;}
.y291{bottom:730.569067pt;}
.y21e{bottom:731.028133pt;}
.y1b6{bottom:731.032133pt;}
.yd9{bottom:732.023600pt;}
.y1eb{bottom:732.383600pt;}
.y305{bottom:732.977467pt;}
.y2cd{bottom:733.017467pt;}
.yce{bottom:736.608133pt;}
.y119{bottom:737.555600pt;}
.y35{bottom:737.954400pt;}
.y61{bottom:739.032133pt;}
.y17b{bottom:739.055600pt;}
.y40{bottom:742.401067pt;}
.y290{bottom:743.902400pt;}
.y2cc{bottom:744.980133pt;}
.y21d{bottom:747.024133pt;}
.y1b5{bottom:747.028133pt;}
.yd8{bottom:748.019600pt;}
.y1ea{bottom:748.379600pt;}
.ycd{bottom:749.941467pt;}
.y34{bottom:752.621067pt;}
.y118{bottom:753.551600pt;}
.y3f{bottom:754.403733pt;}
.y60{bottom:755.028133pt;}
.y17a{bottom:755.051600pt;}
.y2cb{bottom:756.982800pt;}
.y1b4{bottom:763.024133pt;}
.y21c{bottom:763.028133pt;}
.ycc{bottom:763.274800pt;}
.yd7{bottom:764.015600pt;}
.y1e9{bottom:764.375600pt;}
.y3e{bottom:766.406400pt;}
.y2ca{bottom:768.985467pt;}
.y117{bottom:769.547600pt;}
.y33{bottom:770.839733pt;}
.y5f{bottom:771.024133pt;}
.y179{bottom:771.047600pt;}
.y1b2{bottom:776.453333pt;}
.y3d{bottom:778.409067pt;}
.y1b3{bottom:779.020133pt;}
.y1b1{bottom:779.024133pt;}
.yd6{bottom:780.011600pt;}
.y2c9{bottom:780.988133pt;}
.y116{bottom:785.543600pt;}
.y5e{bottom:787.043600pt;}
.y3c{bottom:790.411733pt;}
.y32{bottom:792.087600pt;}
.y2c8{bottom:792.990800pt;}
.y1af{bottom:795.028133pt;}
.y21b{bottom:795.052133pt;}
.yd5{bottom:796.007600pt;}
.y1b0{bottom:799.016133pt;}
.y115{bottom:801.539600pt;}
.y3b{bottom:802.414400pt;}
.y5d{bottom:803.039600pt;}
.y2c7{bottom:804.993467pt;}
.y31{bottom:806.487733pt;}
.y1ae{bottom:811.024133pt;}
.y21a{bottom:811.048133pt;}
.yd4{bottom:812.003600pt;}
.y3a{bottom:814.417067pt;}
.y2c6{bottom:816.996133pt;}
.y114{bottom:817.535600pt;}
.y5c{bottom:819.035600pt;}
.y30{bottom:820.887733pt;}
.y1aa{bottom:824.453333pt;}
.y39{bottom:826.419733pt;}
.y1ad{bottom:827.020133pt;}
.y1e8{bottom:827.039600pt;}
.y1a9{bottom:827.040133pt;}
.y219{bottom:827.044133pt;}
.yd3{bottom:827.999600pt;}
.y2c5{bottom:828.998800pt;}
.y5b{bottom:835.031600pt;}
.y2f{bottom:835.287733pt;}
.y2c4{bottom:841.001467pt;}
.y38{bottom:841.082400pt;}
.y113{bottom:843.035600pt;}
.y1a8{bottom:843.036133pt;}
.y218{bottom:843.040133pt;}
.yd2{bottom:843.995600pt;}
.y5a{bottom:851.027600pt;}
.y2c3{bottom:853.004133pt;}
.y112{bottom:859.031600pt;}
.y1a7{bottom:859.032133pt;}
.y217{bottom:859.036133pt;}
.y2e{bottom:860.354267pt;}
.y2c2{bottom:865.006800pt;}
.y178{bottom:867.023600pt;}
.yd1{bottom:867.995600pt;}
.y51{bottom:868.082400pt;}
.y59{bottom:875.027600pt;}
.y1a6{bottom:875.028133pt;}
.y216{bottom:875.032133pt;}
.y2c1{bottom:877.009467pt;}
.y177{bottom:883.019600pt;}
.y2d{bottom:884.354267pt;}
.y52{bottom:885.420933pt;}
.y2c0{bottom:889.012133pt;}
.y58{bottom:891.023600pt;}
.y1a5{bottom:891.024133pt;}
.y215{bottom:891.028133pt;}
.y2bf{bottom:901.014800pt;}
.y1a1{bottom:904.452000pt;}
.y57{bottom:907.019600pt;}
.y1a4{bottom:907.020133pt;}
.y214{bottom:907.024133pt;}
.y2be{bottom:913.017467pt;}
.y56{bottom:923.015600pt;}
.y2bd{bottom:925.020133pt;}
.y213{bottom:927.016133pt;}
.y54{bottom:974.776533pt;}
.y55{bottom:975.798800pt;}
.y89{bottom:1029.693333pt;}
.h16{height:3.156173pt;}
.h23{height:11.232000pt;}
.h22{height:12.214667pt;}
.h1f{height:12.216000pt;}
.h18{height:12.883742pt;}
.h1b{height:14.952000pt;}
.h12{height:17.064000pt;}
.h9{height:19.579733pt;}
.h21{height:21.012604pt;}
.h25{height:21.230190pt;}
.h17{height:21.385609pt;}
.h24{height:21.898641pt;}
.h1d{height:22.027200pt;}
.hc{height:25.610667pt;}
.h1c{height:25.618693pt;}
.h11{height:26.067187pt;}
.h5{height:26.357333pt;}
.h27{height:26.517333pt;}
.hb{height:26.618667pt;}
.h14{height:27.730662pt;}
.h26{height:29.001390pt;}
.h1a{height:30.122667pt;}
.h19{height:30.421333pt;}
.h13{height:32.661606pt;}
.h15{height:32.900710pt;}
.ha{height:33.787733pt;}
.h1e{height:33.792000pt;}
.h3{height:33.888000pt;}
.hf{height:34.224000pt;}
.he{height:37.653333pt;}
.h8{height:38.229067pt;}
.h7{height:38.229600pt;}
.h20{height:38.771523pt;}
.h2{height:41.829333pt;}
.h4{height:45.632000pt;}
.hd{height:53.237333pt;}
.h6{height:57.040000pt;}
.h1{height:1050.666667pt;}
.h10{height:1050.706667pt;}
.h0{height:1050.708008pt;}
.w8{width:22.096000pt;}
.wa{width:22.104000pt;}
.w6{width:22.768000pt;}
.w7{width:22.776000pt;}
.w9{width:46.104004pt;}
.w2{width:136.240000pt;}
.w3{width:160.247986pt;}
.w4{width:179.304000pt;}
.w5{width:203.303996pt;}
.w0{width:801.260010pt;}
.w1{width:801.333333pt;}
.x9{left:-33.024267pt;}
.x0{left:0.000000pt;}
.x27{left:7.344800pt;}
.x32{left:12.596933pt;}
.xc{left:15.621067pt;}
.x13{left:17.769198pt;}
.xb{left:19.647603pt;}
.xd{left:33.216936pt;}
.x2{left:40.633867pt;}
.x22{left:45.949600pt;}
.x3{left:53.967333pt;}
.xe{left:68.142403pt;}
.x14{left:98.469200pt;}
.x15{left:115.047864pt;}
.x16{left:117.782267pt;}
.xf{left:121.435600pt;}
.x17{left:135.376931pt;}
.x18{left:163.145333pt;}
.x5{left:196.264000pt;}
.x1{left:222.818933pt;}
.x3d{left:233.297200pt;}
.x19{left:238.625200pt;}
.x31{left:240.395996pt;}
.x30{left:252.396000pt;}
.x1b{left:256.391600pt;}
.x1a{left:274.983067pt;}
.xa{left:314.134664pt;}
.x8{left:326.134667pt;}
.x12{left:389.977336pt;}
.x25{left:393.966933pt;}
.x1c{left:400.559067pt;}
.x11{left:401.977333pt;}
.x21{left:403.415467pt;}
.x1f{left:429.090667pt;}
.x2b{left:450.419733pt;}
.x10{left:462.382267pt;}
.x37{left:487.935994pt;}
.x36{left:499.936000pt;}
.x29{left:518.194667pt;}
.x38{left:522.039467pt;}
.x34{left:523.166667pt;}
.x1e{left:529.146800pt;}
.x33{left:535.166667pt;}
.x2a{left:540.970667pt;}
.x3c{left:542.459467pt;}
.x35{left:557.270400pt;}
.x23{left:562.506000pt;}
.x3a{left:581.527995pt;}
.x39{left:593.528000pt;}
.x3b{left:615.632533pt;}
.x6{left:618.469600pt;}
.x26{left:679.478667pt;}
.x2e{left:682.040000pt;}
.x28{left:702.254400pt;}
.x2f{left:704.816267pt;}
.x1d{left:719.614933pt;}
.x24{left:720.822933pt;}
.x4{left:726.822933pt;}
.x2c{left:737.853333pt;}
.x20{left:752.733200pt;}
.x2d{left:760.629200pt;}
.x7{left:781.280000pt;}
}




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