
    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_cba690d6d1d4de2d7938dd48.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_a3f16c2f81f606329c65c7e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_36c2554baa76fc72656257d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_0a8aa35098cc26ea0a44aef0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_22d8f87f087e56767f1aa893.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_61b81dd1428836c983ae71b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_e1e927f1a05846a3a3b5d765.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_f5051d04a26941f2746bd0a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_65a09dbdbce43d34eb4a4e69.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_36c2554baa76fc72656257d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_8c0c540cb601c71c3fe3ffae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_5a685a20a6cf98866201770c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;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_4bc42ce83231dd4bf8972e4b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_a3f16c2f81f606329c65c7e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964000;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_36c2554baa76fc72656257d2.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;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_0a8aa35098cc26ea0a44aef0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_a3f16c2f81f606329c65c7e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.964000;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_36c2554baa76fc72656257d2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;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_0a8aa35098cc26ea0a44aef0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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_a3f16c2f81f606329c65c7e2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.964000;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_36c2554baa76fc72656257d2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.904000;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_0a8aa35098cc26ea0a44aef0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912000;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_24e5605391e6203c61d6b061.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.941000;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_30580f3cbb3fc1601fa4c31f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.975400px;}
.v1{vertical-align:29.700000px;}
.v4{vertical-align:54.000000px;}
.ls7{letter-spacing:-1.140000px;}
.ls6{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.755820px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.300000px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls4{letter-spacing:1461.214800px;}
.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;}
}
.ws4{word-spacing:-15.600000px;}
.wsc8{word-spacing:-15.599400px;}
.ws5{word-spacing:-15.012000px;}
.wsab{word-spacing:-14.400000px;}
.ws134{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.ws8{word-spacing:-11.520480px;}
.ws2{word-spacing:-11.520000px;}
.ws3{word-spacing:-10.342800px;}
.wsd8{word-spacing:-8.099400px;}
.ws1{word-spacing:-7.637760px;}
.ws25{word-spacing:-7.380000px;}
.ws38{word-spacing:-6.539400px;}
.ws80{word-spacing:-6.120600px;}
.ws88{word-spacing:-5.940000px;}
.ws42{word-spacing:-5.160000px;}
.wsc9{word-spacing:-4.859400px;}
.ws6c{word-spacing:-4.500000px;}
.ws49{word-spacing:-4.440600px;}
.ws87{word-spacing:-4.079400px;}
.ws72{word-spacing:-3.959400px;}
.wsa0{word-spacing:-3.720000px;}
.ws97{word-spacing:-3.660000px;}
.ws51{word-spacing:-3.540600px;}
.ws69{word-spacing:-3.360000px;}
.ws126{word-spacing:-3.299400px;}
.ws110{word-spacing:-3.240000px;}
.wscb{word-spacing:-3.120000px;}
.ws111{word-spacing:-3.000000px;}
.ws98{word-spacing:-2.940000px;}
.ws41{word-spacing:-2.820000px;}
.ws8b{word-spacing:-2.760600px;}
.ws90{word-spacing:-2.640600px;}
.ws10b{word-spacing:-2.520600px;}
.ws8c{word-spacing:-2.399400px;}
.ws53{word-spacing:-2.340000px;}
.ws124{word-spacing:-2.279400px;}
.wsda{word-spacing:-2.220000px;}
.ws3f{word-spacing:-2.160000px;}
.wsc4{word-spacing:-2.100000px;}
.wsf4{word-spacing:-2.040000px;}
.ws81{word-spacing:-1.980000px;}
.ws3c{word-spacing:-1.860600px;}
.ws2d{word-spacing:-1.782000px;}
.ws7{word-spacing:-1.776000px;}
.ws14{word-spacing:-1.740600px;}
.wsa4{word-spacing:-1.680000px;}
.ws116{word-spacing:-1.619400px;}
.ws105{word-spacing:-1.560000px;}
.wsa1{word-spacing:-1.551420px;}
.wsdf{word-spacing:-1.499400px;}
.ws95{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.379400px;}
.ws35{word-spacing:-1.260000px;}
.ws6b{word-spacing:-1.140000px;}
.wsed{word-spacing:-1.080600px;}
.ws44{word-spacing:-1.020000px;}
.wse3{word-spacing:-0.960600px;}
.wsd2{word-spacing:-0.840600px;}
.ws86{word-spacing:-0.780000px;}
.ws9b{word-spacing:-0.719400px;}
.wsc5{word-spacing:-0.599400px;}
.wsf7{word-spacing:-0.540000px;}
.wsca{word-spacing:-0.420000px;}
.ws71{word-spacing:-0.360000px;}
.ws135{word-spacing:-0.315000px;}
.ws37{word-spacing:-0.300000px;}
.ws76{word-spacing:-0.240000px;}
.ws5d{word-spacing:-0.180600px;}
.ws136{word-spacing:-0.180000px;}
.wsa3{word-spacing:-0.120000px;}
.ws106{word-spacing:-0.060600px;}
.ws133{word-spacing:-0.048480px;}
.ws137{word-spacing:-0.045450px;}
.ws6{word-spacing:0.000000px;}
.wsfd{word-spacing:0.060600px;}
.ws3a{word-spacing:0.120000px;}
.ws103{word-spacing:0.180600px;}
.ws12d{word-spacing:0.198900px;}
.ws9a{word-spacing:0.240000px;}
.ws10c{word-spacing:0.300000px;}
.ws50{word-spacing:0.360000px;}
.ws132{word-spacing:0.420000px;}
.wsd4{word-spacing:0.480000px;}
.ws8f{word-spacing:0.660000px;}
.ws7a{word-spacing:0.719400px;}
.ws130{word-spacing:0.780000px;}
.ws57{word-spacing:0.840600px;}
.ws39{word-spacing:0.900000px;}
.ws7b{word-spacing:0.960600px;}
.wsf6{word-spacing:1.080600px;}
.wse1{word-spacing:1.140000px;}
.wsb9{word-spacing:1.200000px;}
.ws15{word-spacing:1.260000px;}
.ws6a{word-spacing:1.379400px;}
.ws3e{word-spacing:1.440000px;}
.wsd5{word-spacing:1.499400px;}
.ws82{word-spacing:1.680000px;}
.ws2c{word-spacing:1.782000px;}
.ws52{word-spacing:1.800000px;}
.ws128{word-spacing:1.860600px;}
.ws4a{word-spacing:1.920000px;}
.ws10d{word-spacing:1.980000px;}
.ws79{word-spacing:2.040000px;}
.wsee{word-spacing:2.100000px;}
.wscd{word-spacing:2.160000px;}
.ws125{word-spacing:2.220000px;}
.ws99{word-spacing:2.340000px;}
.wsb7{word-spacing:2.460000px;}
.ws36{word-spacing:2.520600px;}
.wsbc{word-spacing:2.580000px;}
.ws1b{word-spacing:2.640600px;}
.ws2f{word-spacing:2.753460px;}
.ws43{word-spacing:2.760600px;}
.wsdb{word-spacing:2.940000px;}
.wsfe{word-spacing:3.000000px;}
.ws2b{word-spacing:3.024000px;}
.ws16{word-spacing:3.059400px;}
.ws7e{word-spacing:3.120000px;}
.wsd0{word-spacing:3.179400px;}
.wsd1{word-spacing:3.240000px;}
.ws107{word-spacing:3.360000px;}
.ws112{word-spacing:3.420600px;}
.ws115{word-spacing:3.480000px;}
.ws1e{word-spacing:3.540600px;}
.ws2e{word-spacing:3.563460px;}
.ws11e{word-spacing:3.660000px;}
.ws119{word-spacing:3.720000px;}
.ws1d{word-spacing:3.780000px;}
.wsd6{word-spacing:3.840000px;}
.ws118{word-spacing:3.900000px;}
.ws102{word-spacing:4.020000px;}
.ws12f{word-spacing:4.079400px;}
.wsaa{word-spacing:4.140000px;}
.wsb8{word-spacing:4.200600px;}
.ws22{word-spacing:4.260000px;}
.wsbd{word-spacing:4.320600px;}
.ws85{word-spacing:4.380000px;}
.ws83{word-spacing:4.440600px;}
.wsa2{word-spacing:4.500000px;}
.wsfb{word-spacing:4.620000px;}
.ws8a{word-spacing:4.680000px;}
.wsf8{word-spacing:4.739400px;}
.ws104{word-spacing:4.859400px;}
.wsae{word-spacing:4.979400px;}
.wsc2{word-spacing:5.100600px;}
.ws10e{word-spacing:5.160000px;}
.wsba{word-spacing:5.220600px;}
.ws3b{word-spacing:5.280000px;}
.wsa9{word-spacing:5.340000px;}
.ws59{word-spacing:5.400000px;}
.ws123{word-spacing:5.460000px;}
.wse2{word-spacing:5.520000px;}
.ws34{word-spacing:5.580000px;}
.wsbe{word-spacing:5.639400px;}
.wsa5{word-spacing:5.700000px;}
.ws54{word-spacing:5.759400px;}
.wsd9{word-spacing:5.880600px;}
.ws117{word-spacing:5.940000px;}
.ws6e{word-spacing:6.060000px;}
.ws4b{word-spacing:6.180000px;}
.wsf0{word-spacing:6.240000px;}
.ws75{word-spacing:6.300000px;}
.ws1f{word-spacing:6.360000px;}
.wsc1{word-spacing:6.419400px;}
.wsf2{word-spacing:6.480000px;}
.ws45{word-spacing:6.539400px;}
.ws10f{word-spacing:6.600000px;}
.ws93{word-spacing:6.659400px;}
.ws29{word-spacing:6.695460px;}
.ws12e{word-spacing:6.780600px;}
.ws113{word-spacing:6.840000px;}
.ws12{word-spacing:6.900600px;}
.ws4f{word-spacing:6.960000px;}
.wsac{word-spacing:7.020000px;}
.wsc7{word-spacing:7.080000px;}
.wsb5{word-spacing:7.140000px;}
.ws108{word-spacing:7.200000px;}
.ws5a{word-spacing:7.260000px;}
.ws7f{word-spacing:7.319400px;}
.ws11d{word-spacing:7.380000px;}
.wscc{word-spacing:7.439400px;}
.ws89{word-spacing:7.500000px;}
.ws131{word-spacing:7.620000px;}
.ws11a{word-spacing:7.740000px;}
.ws12b{word-spacing:7.800000px;}
.ws84{word-spacing:7.860000px;}
.ws122{word-spacing:7.920000px;}
.wse4{word-spacing:7.980000px;}
.wsff{word-spacing:8.040000px;}
.wse9{word-spacing:8.160000px;}
.ws100{word-spacing:8.340600px;}
.ws70{word-spacing:8.460600px;}
.ws46{word-spacing:8.520000px;}
.wse0{word-spacing:8.580600px;}
.ws96{word-spacing:8.640000px;}
.ws114{word-spacing:8.760000px;}
.wsd3{word-spacing:8.820000px;}
.ws74{word-spacing:8.940000px;}
.ws101{word-spacing:8.999400px;}
.wse8{word-spacing:9.180000px;}
.ws61{word-spacing:9.240600px;}
.ws26{word-spacing:9.300000px;}
.wsdc{word-spacing:9.360600px;}
.ws55{word-spacing:9.420000px;}
.wseb{word-spacing:9.480000px;}
.wsfc{word-spacing:9.540000px;}
.wsc6{word-spacing:9.899400px;}
.ws56{word-spacing:10.020600px;}
.ws3d{word-spacing:10.080000px;}
.ws27{word-spacing:10.140600px;}
.wsdd{word-spacing:10.320000px;}
.ws62{word-spacing:10.440000px;}
.ws4c{word-spacing:10.559400px;}
.ws5e{word-spacing:10.740000px;}
.wse{word-spacing:10.860000px;}
.wsd7{word-spacing:10.980000px;}
.wsde{word-spacing:11.160000px;}
.ws11c{word-spacing:11.220000px;}
.ws6f{word-spacing:11.280000px;}
.ws73{word-spacing:11.400000px;}
.ws7c{word-spacing:11.459400px;}
.wsbf{word-spacing:11.520000px;}
.ws11f{word-spacing:11.579400px;}
.ws94{word-spacing:11.640000px;}
.ws78{word-spacing:11.700600px;}
.ws48{word-spacing:11.760000px;}
.ws60{word-spacing:11.820600px;}
.ws5b{word-spacing:11.880000px;}
.ws92{word-spacing:12.060000px;}
.wsb2{word-spacing:12.239400px;}
.wsce{word-spacing:12.300000px;}
.ws9e{word-spacing:12.359400px;}
.ws8e{word-spacing:12.420000px;}
.wsf9{word-spacing:12.540000px;}
.ws32{word-spacing:12.600600px;}
.wscf{word-spacing:12.900000px;}
.wsc3{word-spacing:12.960000px;}
.wsea{word-spacing:13.139400px;}
.ws11{word-spacing:13.259400px;}
.wsf5{word-spacing:13.500600px;}
.ws9c{word-spacing:13.560000px;}
.ws12c{word-spacing:13.800000px;}
.wsa8{word-spacing:14.039400px;}
.wsef{word-spacing:14.159400px;}
.wsb6{word-spacing:14.220000px;}
.ws9f{word-spacing:14.280600px;}
.ws4e{word-spacing:14.520000px;}
.wsfa{word-spacing:14.819400px;}
.wsf3{word-spacing:14.880000px;}
.ws129{word-spacing:15.000000px;}
.wsb3{word-spacing:15.060600px;}
.ws47{word-spacing:15.120000px;}
.ws33{word-spacing:15.180600px;}
.ws7d{word-spacing:15.240000px;}
.wsc{word-spacing:15.780000px;}
.ws28{word-spacing:15.840600px;}
.wsf1{word-spacing:15.900000px;}
.ws12a{word-spacing:16.020000px;}
.ws11b{word-spacing:16.080600px;}
.wsb{word-spacing:16.140000px;}
.wse7{word-spacing:16.320000px;}
.wsbb{word-spacing:16.379400px;}
.ws30{word-spacing:16.428742px;}
.ws10{word-spacing:16.619400px;}
.wsad{word-spacing:16.680000px;}
.ws5f{word-spacing:16.860600px;}
.ws2a{word-spacing:17.118000px;}
.ws91{word-spacing:17.220000px;}
.ws9{word-spacing:17.340000px;}
.wsb4{word-spacing:17.399400px;}
.wsc0{word-spacing:17.460000px;}
.ws58{word-spacing:17.820000px;}
.wsec{word-spacing:17.880000px;}
.ws63{word-spacing:18.299400px;}
.ws121{word-spacing:18.720000px;}
.ws9d{word-spacing:18.780000px;}
.ws109{word-spacing:19.079400px;}
.wsa7{word-spacing:19.260000px;}
.wse6{word-spacing:19.859400px;}
.ws77{word-spacing:20.220600px;}
.wsa6{word-spacing:20.520000px;}
.ws4d{word-spacing:20.639400px;}
.ws6d{word-spacing:21.000600px;}
.wsb0{word-spacing:21.480000px;}
.ws5c{word-spacing:22.260000px;}
.wsa{word-spacing:23.099400px;}
.ws8d{word-spacing:23.400000px;}
.ws24{word-spacing:23.460600px;}
.ws17{word-spacing:24.420000px;}
.ws18{word-spacing:24.480000px;}
.wsd{word-spacing:24.660000px;}
.ws31{word-spacing:24.779400px;}
.wsaf{word-spacing:25.799400px;}
.wse5{word-spacing:27.420000px;}
.ws10a{word-spacing:27.960000px;}
.ws127{word-spacing:28.440000px;}
.ws120{word-spacing:28.500600px;}
.ws23{word-spacing:29.159400px;}
.ws20{word-spacing:30.660000px;}
.ws19{word-spacing:31.499400px;}
.ws21{word-spacing:31.560000px;}
.ws1c{word-spacing:33.179400px;}
.wsf{word-spacing:39.960000px;}
.ws13{word-spacing:41.700600px;}
.ws64{word-spacing:44.550000px;}
.ws1a{word-spacing:44.580000px;}
.wsb1{word-spacing:49.020000px;}
.ws68{word-spacing:59.508000px;}
.ws67{word-spacing:86.886000px;}
.ws65{word-spacing:99.414000px;}
.ws66{word-spacing:116.910000px;}
._13{margin-left:-3022.429680px;}
._12{margin-left:-2040.982920px;}
._2e{margin-left:-64.020000px;}
._c{margin-left:-59.964000px;}
._8{margin-left:-47.970000px;}
._34{margin-left:-44.162400px;}
._32{margin-left:-42.960000px;}
._d{margin-left:-39.121800px;}
._1c{margin-left:-36.240000px;}
._35{margin-left:-34.440000px;}
._1{margin-left:-33.000000px;}
._2f{margin-left:-30.945600px;}
._1b{margin-left:-29.824200px;}
._16{margin-left:-27.540000px;}
._33{margin-left:-26.040000px;}
._31{margin-left:-24.962400px;}
._30{margin-left:-23.400000px;}
._10{margin-left:-21.960000px;}
._1a{margin-left:-20.160000px;}
._4{margin-left:-18.348000px;}
._15{margin-left:-16.625400px;}
._17{margin-left:-15.600000px;}
._14{margin-left:-14.400000px;}
._a{margin-left:-12.960000px;}
._7{margin-left:-11.520000px;}
._19{margin-left:-10.023000px;}
._e{margin-left:-8.340000px;}
._3a{margin-left:-7.290000px;}
._b{margin-left:-6.210000px;}
._f{margin-left:-5.040000px;}
._5{margin-left:-3.552000px;}
._0{margin-left:-1.776000px;}
._9{width:1.334400px;}
._6{width:2.683200px;}
._37{width:11.520000px;}
._36{width:13.104000px;}
._2{width:14.652000px;}
._39{width:20.475000px;}
._38{width:25.155000px;}
._2b{width:29.484000px;}
._3{width:35.652600px;}
._18{width:38.016000px;}
._1d{width:39.204000px;}
._1e{width:61.398000px;}
._1f{width:70.524000px;}
._2a{width:103.032000px;}
._20{width:113.022000px;}
._24{width:116.964000px;}
._2c{width:131.922000px;}
._28{width:133.056000px;}
._23{width:148.014000px;}
._29{width:155.952000px;}
._22{width:165.996000px;}
._26{width:183.384000px;}
._27{width:191.808000px;}
._25{width:195.966000px;}
._2d{width:213.408000px;}
._21{width:356.940000px;}
._11{width:633.282840px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs6{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y1fd{bottom:81.571350px;}
.y16a{bottom:81.586200px;}
.y1a1{bottom:81.586350px;}
.y11f{bottom:81.601350px;}
.y77{bottom:81.604650px;}
.y146{bottom:81.609450px;}
.y5b{bottom:81.610800px;}
.ye7{bottom:81.611400px;}
.ya8{bottom:81.615450px;}
.yb9{bottom:81.630450px;}
.y28{bottom:81.637800px;}
.y1d7{bottom:81.820350px;}
.y235{bottom:81.970350px;}
.y234{bottom:96.550350px;}
.y27{bottom:96.637800px;}
.y169{bottom:97.786200px;}
.y1fc{bottom:99.571350px;}
.y1a0{bottom:99.586350px;}
.y11e{bottom:99.601350px;}
.y76{bottom:99.604650px;}
.y145{bottom:99.609450px;}
.y5a{bottom:99.610800px;}
.ye6{bottom:99.611400px;}
.ya7{bottom:99.615450px;}
.yb8{bottom:99.630450px;}
.y1d6{bottom:99.850350px;}
.y279{bottom:102.662100px;}
.y2c9{bottom:102.943350px;}
.y233{bottom:111.130350px;}
.y26{bottom:111.637800px;}
.y278{bottom:115.408350px;}
.y2c8{bottom:115.689600px;}
.y1fb{bottom:117.571350px;}
.y19f{bottom:117.586350px;}
.y11d{bottom:117.601350px;}
.y75{bottom:117.604650px;}
.y144{bottom:117.609450px;}
.y59{bottom:117.610800px;}
.ye5{bottom:117.611400px;}
.ya6{bottom:117.615450px;}
.yb7{bottom:117.630450px;}
.y1d5{bottom:117.880350px;}
.y232{bottom:125.710350px;}
.y25{bottom:126.637800px;}
.y277{bottom:128.154600px;}
.y2c7{bottom:128.435850px;}
.y1fa{bottom:135.571350px;}
.y19e{bottom:135.586350px;}
.y11c{bottom:135.601350px;}
.y74{bottom:135.604650px;}
.y143{bottom:135.609450px;}
.y58{bottom:135.610800px;}
.ye4{bottom:135.611400px;}
.ya5{bottom:135.615450px;}
.yb6{bottom:135.630450px;}
.y1d4{bottom:135.910350px;}
.y231{bottom:140.290350px;}
.y276{bottom:140.900850px;}
.y2c6{bottom:141.182100px;}
.y1f9{bottom:153.571350px;}
.y19d{bottom:153.586350px;}
.y11b{bottom:153.601350px;}
.y73{bottom:153.604650px;}
.y142{bottom:153.609450px;}
.y57{bottom:153.610800px;}
.ye3{bottom:153.611400px;}
.ya4{bottom:153.615450px;}
.yb5{bottom:153.630450px;}
.y275{bottom:153.647100px;}
.y2c5{bottom:153.928350px;}
.y1d3{bottom:153.940350px;}
.y230{bottom:154.870350px;}
.y24{bottom:155.137800px;}
.y274{bottom:166.393350px;}
.y2c4{bottom:166.674600px;}
.y22f{bottom:169.450350px;}
.y23{bottom:170.137800px;}
.y1f8{bottom:171.571350px;}
.y19c{bottom:171.586350px;}
.y11a{bottom:171.601350px;}
.y72{bottom:171.604650px;}
.y141{bottom:171.609450px;}
.y56{bottom:171.610800px;}
.ye2{bottom:171.611400px;}
.ya3{bottom:171.615450px;}
.yb4{bottom:171.630450px;}
.y1d2{bottom:171.970350px;}
.y273{bottom:179.139600px;}
.y2c3{bottom:179.420850px;}
.y22e{bottom:184.030350px;}
.y22{bottom:185.137800px;}
.y1f7{bottom:189.571350px;}
.y19b{bottom:189.586350px;}
.y119{bottom:189.601350px;}
.y71{bottom:189.604650px;}
.y140{bottom:189.609450px;}
.y55{bottom:189.610800px;}
.ye1{bottom:189.611400px;}
.ya2{bottom:189.615450px;}
.yb3{bottom:189.630450px;}
.y1d1{bottom:190.000350px;}
.y272{bottom:191.885850px;}
.y2c2{bottom:192.167100px;}
.y22d{bottom:204.610350px;}
.y271{bottom:204.632100px;}
.y2c1{bottom:204.913350px;}
.y21{bottom:205.537800px;}
.y1f6{bottom:207.571350px;}
.y19a{bottom:207.586350px;}
.y118{bottom:207.601350px;}
.y70{bottom:207.604650px;}
.y13f{bottom:207.609450px;}
.y54{bottom:207.610800px;}
.ye0{bottom:207.611400px;}
.ya1{bottom:207.615450px;}
.yb2{bottom:207.630450px;}
.y1d0{bottom:208.030350px;}
.y20{bottom:215.137800px;}
.y270{bottom:217.378350px;}
.y2c0{bottom:217.659600px;}
.y22c{bottom:219.010350px;}
.y1f5{bottom:225.571350px;}
.y199{bottom:225.586350px;}
.y117{bottom:225.601350px;}
.y6f{bottom:225.604650px;}
.y13e{bottom:225.609450px;}
.y53{bottom:225.610800px;}
.ydf{bottom:225.611400px;}
.ya0{bottom:225.615450px;}
.yb1{bottom:225.630450px;}
.y1cf{bottom:226.060350px;}
.y26f{bottom:230.124600px;}
.y1f{bottom:230.137800px;}
.y2bf{bottom:230.405850px;}
.y22b{bottom:233.410350px;}
.y26e{bottom:242.870850px;}
.y2be{bottom:243.152100px;}
.y1f4{bottom:243.571350px;}
.y198{bottom:243.586350px;}
.y116{bottom:243.601350px;}
.y6e{bottom:243.604650px;}
.y13d{bottom:243.609450px;}
.yde{bottom:243.611400px;}
.y9f{bottom:243.615450px;}
.yb0{bottom:243.630450px;}
.y1ce{bottom:244.090350px;}
.y1e{bottom:245.137800px;}
.y22a{bottom:247.810350px;}
.y26d{bottom:255.617100px;}
.y2bd{bottom:255.898350px;}
.y1d{bottom:260.137800px;}
.y1f3{bottom:261.571350px;}
.y197{bottom:261.586350px;}
.y115{bottom:261.601350px;}
.y6d{bottom:261.604650px;}
.y13c{bottom:261.609450px;}
.ydd{bottom:261.611400px;}
.y9e{bottom:261.615450px;}
.yaf{bottom:261.630450px;}
.y1cd{bottom:262.120350px;}
.y229{bottom:262.210350px;}
.y26c{bottom:268.363350px;}
.y2bc{bottom:268.644600px;}
.y52{bottom:271.642800px;}
.y228{bottom:276.610350px;}
.y1f2{bottom:279.571350px;}
.y196{bottom:279.586350px;}
.y114{bottom:279.601350px;}
.y6c{bottom:279.604650px;}
.y13b{bottom:279.609450px;}
.ydc{bottom:279.611400px;}
.y9d{bottom:279.615450px;}
.y1cc{bottom:280.150350px;}
.y1c{bottom:280.537800px;}
.y26b{bottom:281.109600px;}
.y2bb{bottom:281.390850px;}
.y51{bottom:288.139800px;}
.y26a{bottom:293.855850px;}
.y2ba{bottom:294.137100px;}
.y2e{bottom:294.205650px;}
.yae{bottom:295.425450px;}
.y227{bottom:297.010350px;}
.y1f1{bottom:297.571350px;}
.y195{bottom:297.586350px;}
.y113{bottom:297.601350px;}
.y6b{bottom:297.604650px;}
.y13a{bottom:297.609450px;}
.ydb{bottom:297.611400px;}
.y9c{bottom:297.615450px;}
.y1cb{bottom:298.180350px;}
.y50{bottom:304.636800px;}
.y269{bottom:306.602100px;}
.y2b9{bottom:306.883350px;}
.y2d{bottom:308.605650px;}
.y226{bottom:311.590350px;}
.yad{bottom:313.425450px;}
.y1f0{bottom:315.571350px;}
.y194{bottom:315.586350px;}
.y112{bottom:315.601350px;}
.y6a{bottom:315.604650px;}
.y139{bottom:315.609450px;}
.yda{bottom:315.611400px;}
.y9b{bottom:315.615450px;}
.y1ca{bottom:316.210350px;}
.y268{bottom:319.348350px;}
.y2b8{bottom:319.629600px;}
.y4f{bottom:321.133800px;}
.y2c{bottom:323.005650px;}
.y225{bottom:326.170350px;}
.yac{bottom:331.425450px;}
.y267{bottom:332.094600px;}
.y2b7{bottom:332.375850px;}
.y1ef{bottom:333.571350px;}
.y193{bottom:333.586350px;}
.y111{bottom:333.601350px;}
.y69{bottom:333.604650px;}
.y138{bottom:333.609450px;}
.yd9{bottom:333.611400px;}
.y9a{bottom:333.615450px;}
.y1c9{bottom:334.240350px;}
.y2b{bottom:337.405650px;}
.y4e{bottom:337.630800px;}
.y224{bottom:340.750350px;}
.y266{bottom:344.840850px;}
.y2b6{bottom:345.122100px;}
.yab{bottom:349.425450px;}
.y1ee{bottom:351.571350px;}
.y192{bottom:351.586350px;}
.y110{bottom:351.601350px;}
.y68{bottom:351.604650px;}
.y137{bottom:351.609450px;}
.yd8{bottom:351.611400px;}
.y99{bottom:351.615450px;}
.y2a{bottom:351.805650px;}
.y1c8{bottom:352.276350px;}
.y4d{bottom:354.127800px;}
.y223{bottom:355.330350px;}
.y265{bottom:357.587100px;}
.y2b5{bottom:357.868350px;}
.y29{bottom:366.205650px;}
.yaa{bottom:367.425450px;}
.y1ed{bottom:369.571350px;}
.y191{bottom:369.586350px;}
.y10f{bottom:369.601350px;}
.y67{bottom:369.604650px;}
.y136{bottom:369.609450px;}
.yd7{bottom:369.611400px;}
.y98{bottom:369.615450px;}
.y222{bottom:369.910350px;}
.y1c7{bottom:370.306350px;}
.y264{bottom:370.333350px;}
.y2b4{bottom:370.614600px;}
.y4c{bottom:370.624800px;}
.y263{bottom:383.079600px;}
.y2b3{bottom:383.360850px;}
.y221{bottom:384.490350px;}
.ya9{bottom:385.425450px;}
.y4b{bottom:387.121800px;}
.y1ec{bottom:387.571350px;}
.y190{bottom:387.586350px;}
.y10e{bottom:387.601350px;}
.y66{bottom:387.604650px;}
.y135{bottom:387.609450px;}
.yd6{bottom:387.611400px;}
.y97{bottom:387.615450px;}
.y1c6{bottom:388.336350px;}
.y262{bottom:395.825850px;}
.y2b2{bottom:396.107100px;}
.y4a{bottom:403.618800px;}
.y220{bottom:405.070350px;}
.y1eb{bottom:405.571350px;}
.y18f{bottom:405.586350px;}
.y10d{bottom:405.601350px;}
.y65{bottom:405.604650px;}
.y134{bottom:405.609450px;}
.yd5{bottom:405.611400px;}
.y96{bottom:405.615450px;}
.y1c5{bottom:406.366350px;}
.y261{bottom:408.572100px;}
.y2b1{bottom:408.853350px;}
.y49{bottom:420.115800px;}
.y260{bottom:421.318350px;}
.y2b0{bottom:421.599600px;}
.y1ea{bottom:423.571350px;}
.y18e{bottom:423.586350px;}
.y10c{bottom:423.601350px;}
.y64{bottom:423.604650px;}
.y133{bottom:423.609450px;}
.yd4{bottom:423.611400px;}
.y95{bottom:423.615450px;}
.y1c4{bottom:424.396350px;}
.y25f{bottom:434.064600px;}
.y2af{bottom:434.345850px;}
.y48{bottom:436.612800px;}
.y21f{bottom:437.470350px;}
.y1e9{bottom:441.571350px;}
.y18d{bottom:441.586350px;}
.y10b{bottom:441.601350px;}
.y63{bottom:441.604650px;}
.y132{bottom:441.609450px;}
.yd3{bottom:441.611400px;}
.y94{bottom:441.615450px;}
.y1c3{bottom:442.426350px;}
.y25e{bottom:446.810850px;}
.y2ae{bottom:447.092100px;}
.y47{bottom:453.109800px;}
.y21e{bottom:455.650350px;}
.y25d{bottom:459.557100px;}
.y1e8{bottom:459.571350px;}
.y18c{bottom:459.586350px;}
.y10a{bottom:459.601350px;}
.y62{bottom:459.604650px;}
.y131{bottom:459.609450px;}
.yd2{bottom:459.611400px;}
.y93{bottom:459.615450px;}
.y2ad{bottom:459.838350px;}
.y1c2{bottom:460.456350px;}
.y46{bottom:469.606800px;}
.y25c{bottom:472.303350px;}
.y2ac{bottom:472.584600px;}
.y21d{bottom:473.830350px;}
.y1e7{bottom:477.571350px;}
.y18b{bottom:477.586350px;}
.y109{bottom:477.601350px;}
.y61{bottom:477.604650px;}
.y130{bottom:477.609450px;}
.yd1{bottom:477.611400px;}
.y92{bottom:477.615450px;}
.y1c1{bottom:478.486350px;}
.y25b{bottom:485.049600px;}
.y2ab{bottom:485.330850px;}
.y45{bottom:486.103800px;}
.y158{bottom:487.890300px;}
.y167{bottom:488.115300px;}
.y21c{bottom:492.010350px;}
.y1e6{bottom:495.571350px;}
.y18a{bottom:495.586350px;}
.y108{bottom:495.601350px;}
.y60{bottom:495.604650px;}
.y12f{bottom:495.609450px;}
.yd0{bottom:495.611400px;}
.y91{bottom:495.615450px;}
.y1c0{bottom:496.516350px;}
.y25a{bottom:497.795850px;}
.y2aa{bottom:498.077100px;}
.y44{bottom:502.600800px;}
.y157{bottom:505.890300px;}
.y166{bottom:507.000300px;}
.y21b{bottom:510.190350px;}
.y259{bottom:510.542100px;}
.y2a9{bottom:510.823350px;}
.y1e5{bottom:513.571350px;}
.y189{bottom:513.586350px;}
.y107{bottom:513.601350px;}
.y5f{bottom:513.604650px;}
.y12e{bottom:513.609450px;}
.ycf{bottom:513.611400px;}
.y90{bottom:513.615450px;}
.y1bf{bottom:514.546350px;}
.y43{bottom:519.097800px;}
.y258{bottom:523.288350px;}
.y2a8{bottom:523.569600px;}
.y156{bottom:523.890300px;}
.y165{bottom:525.885300px;}
.y21a{bottom:528.370350px;}
.y1e4{bottom:531.571350px;}
.y188{bottom:531.586350px;}
.y106{bottom:531.601350px;}
.y12d{bottom:531.609450px;}
.y5e{bottom:531.610800px;}
.yce{bottom:531.611400px;}
.y8f{bottom:531.615450px;}
.y1be{bottom:532.576350px;}
.y42{bottom:535.594800px;}
.y257{bottom:536.038350px;}
.y2a7{bottom:536.315850px;}
.y155{bottom:541.890300px;}
.y164{bottom:544.770300px;}
.y219{bottom:546.550350px;}
.y2a6{bottom:549.062100px;}
.y1e3{bottom:549.571350px;}
.y187{bottom:549.586350px;}
.y105{bottom:549.601350px;}
.y12c{bottom:549.609450px;}
.y5d{bottom:549.610800px;}
.ycd{bottom:549.611400px;}
.y8e{bottom:549.615450px;}
.y1bd{bottom:550.606350px;}
.y41{bottom:552.091800px;}
.y1b{bottom:558.634650px;}
.y154{bottom:559.890300px;}
.y2a5{bottom:561.808350px;}
.y163{bottom:563.655300px;}
.y218{bottom:564.730350px;}
.y1e2{bottom:567.571350px;}
.y186{bottom:567.586350px;}
.y104{bottom:567.601350px;}
.y12b{bottom:567.609450px;}
.y5c{bottom:567.610800px;}
.ycc{bottom:567.611400px;}
.y8d{bottom:567.615450px;}
.y40{bottom:568.588800px;}
.y1bc{bottom:568.636350px;}
.y1a{bottom:573.634650px;}
.y2a4{bottom:574.554600px;}
.y153{bottom:577.890300px;}
.y162{bottom:582.540300px;}
.y217{bottom:582.910350px;}
.y3f{bottom:585.085800px;}
.y1e1{bottom:585.571350px;}
.y185{bottom:585.586350px;}
.y103{bottom:585.601350px;}
.y12a{bottom:585.609450px;}
.ycb{bottom:585.611400px;}
.y8c{bottom:585.615450px;}
.y1bb{bottom:586.666350px;}
.y2a3{bottom:587.300850px;}
.y19{bottom:588.634650px;}
.y152{bottom:595.890300px;}
.y256{bottom:599.833350px;}
.y2a2{bottom:600.047100px;}
.y216{bottom:601.090350px;}
.y161{bottom:601.425300px;}
.y3e{bottom:601.582800px;}
.y1e0{bottom:603.571350px;}
.y184{bottom:603.586350px;}
.y102{bottom:603.601350px;}
.y129{bottom:603.609450px;}
.yca{bottom:603.611400px;}
.y8b{bottom:603.615450px;}
.y1ba{bottom:604.696350px;}
.y2a1{bottom:612.793350px;}
.y151{bottom:613.890300px;}
.y255{bottom:614.233350px;}
.y18{bottom:617.134650px;}
.y3d{bottom:618.079800px;}
.y215{bottom:619.270350px;}
.y160{bottom:620.310300px;}
.y1df{bottom:621.571350px;}
.y183{bottom:621.586350px;}
.y101{bottom:621.601350px;}
.yc9{bottom:621.611400px;}
.y8a{bottom:621.615450px;}
.y1b9{bottom:622.726350px;}
.y2a0{bottom:625.539600px;}
.y84{bottom:626.812350px;}
.y150{bottom:631.890300px;}
.y17{bottom:632.134650px;}
.y3c{bottom:634.576800px;}
.y85{bottom:634.892160px;}
.y214{bottom:637.450350px;}
.y29f{bottom:638.285850px;}
.y15f{bottom:639.195300px;}
.y1de{bottom:639.571350px;}
.y182{bottom:639.586350px;}
.y100{bottom:639.601350px;}
.yc8{bottom:639.611400px;}
.y89{bottom:639.615450px;}
.y254{bottom:640.633350px;}
.y1b8{bottom:640.756350px;}
.y83{bottom:643.309350px;}
.y16{bottom:647.134650px;}
.y14f{bottom:649.890300px;}
.y29e{bottom:651.032100px;}
.y3b{bottom:651.073800px;}
.y148{bottom:652.974300px;}
.y253{bottom:655.033350px;}
.y213{bottom:655.630350px;}
.y1dd{bottom:657.571350px;}
.y181{bottom:657.586350px;}
.yff{bottom:657.601350px;}
.yc7{bottom:657.611400px;}
.y88{bottom:657.615450px;}
.y15e{bottom:658.080300px;}
.y1b7{bottom:658.786350px;}
.y82{bottom:659.812350px;}
.y15{bottom:662.134650px;}
.y29d{bottom:663.778350px;}
.y3a{bottom:667.570800px;}
.y14e{bottom:667.890300px;}
.y147{bottom:669.174300px;}
.y252{bottom:669.433350px;}
.y212{bottom:673.816350px;}
.y1dc{bottom:675.571350px;}
.y180{bottom:675.586350px;}
.yc6{bottom:675.611400px;}
.y87{bottom:675.615450px;}
.y81{bottom:676.309350px;}
.y29c{bottom:676.524600px;}
.y1b6{bottom:676.816350px;}
.y15d{bottom:676.965300px;}
.y14{bottom:677.134650px;}
.y251{bottom:683.833350px;}
.y39{bottom:684.067800px;}
.y14d{bottom:685.890300px;}
.y29b{bottom:689.270850px;}
.y211{bottom:691.996350px;}
.y13{bottom:692.134650px;}
.y80{bottom:692.812350px;}
.y1db{bottom:693.571350px;}
.yfe{bottom:693.586350px;}
.y1b5{bottom:694.846350px;}
.y15c{bottom:695.850300px;}
.y250{bottom:698.233350px;}
.y38{bottom:700.564800px;}
.y29a{bottom:702.017100px;}
.yc5{bottom:707.111400px;}
.y12{bottom:707.134650px;}
.y7f{bottom:709.309350px;}
.y210{bottom:710.176350px;}
.y1da{bottom:711.571350px;}
.yfd{bottom:711.586350px;}
.y24f{bottom:712.633350px;}
.y1b4{bottom:712.876350px;}
.y15b{bottom:714.735300px;}
.y299{bottom:714.763350px;}
.y37{bottom:717.061800px;}
.y14c{bottom:717.390300px;}
.ybb{bottom:724.230300px;}
.yc4{bottom:725.111400px;}
.y7e{bottom:725.815350px;}
.y298{bottom:727.509600px;}
.y20f{bottom:728.356350px;}
.y1d9{bottom:729.571350px;}
.y17f{bottom:729.586350px;}
.y1b3{bottom:730.906350px;}
.y11{bottom:731.134650px;}
.y24e{bottom:733.033350px;}
.y36{bottom:733.558800px;}
.y15a{bottom:733.620300px;}
.y14b{bottom:735.390300px;}
.y297{bottom:740.255850px;}
.yba{bottom:740.430300px;}
.y7d{bottom:742.312350px;}
.yc3{bottom:743.111400px;}
.y10{bottom:746.134650px;}
.y24d{bottom:747.433350px;}
.yfc{bottom:747.571350px;}
.y17e{bottom:747.586350px;}
.y1b2{bottom:748.936350px;}
.y35{bottom:750.055800px;}
.y159{bottom:752.505300px;}
.y296{bottom:753.002100px;}
.y14a{bottom:753.390300px;}
.y7c{bottom:758.809350px;}
.yc2{bottom:761.111400px;}
.yf{bottom:761.134650px;}
.y24c{bottom:761.833350px;}
.yfb{bottom:765.571350px;}
.y17d{bottom:765.586350px;}
.y295{bottom:765.748350px;}
.y34{bottom:766.552800px;}
.y1b1{bottom:766.966350px;}
.y149{bottom:771.390300px;}
.y7b{bottom:775.315350px;}
.ye{bottom:776.134650px;}
.y24b{bottom:776.233350px;}
.y294{bottom:778.494600px;}
.yc1{bottom:779.111400px;}
.y33{bottom:783.049800px;}
.yfa{bottom:783.571350px;}
.y17c{bottom:783.586350px;}
.y1b0{bottom:784.996350px;}
.y24a{bottom:790.633350px;}
.yd{bottom:791.134650px;}
.y293{bottom:791.240850px;}
.y7a{bottom:791.812350px;}
.yc0{bottom:797.111400px;}
.y20e{bottom:798.511350px;}
.y32{bottom:799.546800px;}
.yf9{bottom:801.571350px;}
.y17b{bottom:801.586350px;}
.y1af{bottom:803.026350px;}
.y292{bottom:803.987100px;}
.y249{bottom:805.033350px;}
.yc{bottom:806.134650px;}
.y79{bottom:808.309350px;}
.ybf{bottom:815.111400px;}
.y168{bottom:816.000150px;}
.y31{bottom:816.043800px;}
.y20d{bottom:816.691350px;}
.y291{bottom:816.733350px;}
.y248{bottom:819.433350px;}
.yf8{bottom:819.571350px;}
.y17a{bottom:819.586350px;}
.y1ae{bottom:821.056350px;}
.yb{bottom:821.134650px;}
.y290{bottom:829.479600px;}
.y30{bottom:832.540800px;}
.ybe{bottom:833.111400px;}
.y247{bottom:833.833350px;}
.y20c{bottom:834.871350px;}
.ya{bottom:836.134650px;}
.yf7{bottom:837.571350px;}
.y179{bottom:837.586350px;}
.y1ad{bottom:839.086350px;}
.y78{bottom:840.040800px;}
.y28f{bottom:842.225850px;}
.y246{bottom:848.233350px;}
.y2f{bottom:849.040800px;}
.ybd{bottom:851.111400px;}
.y9{bottom:851.134650px;}
.y20b{bottom:853.051350px;}
.y28e{bottom:854.972100px;}
.yf6{bottom:855.571350px;}
.y178{bottom:855.586350px;}
.y1ac{bottom:857.116350px;}
.y28d{bottom:867.718350px;}
.y245{bottom:868.633350px;}
.ybc{bottom:869.111400px;}
.y20a{bottom:871.231350px;}
.yf5{bottom:873.571350px;}
.y177{bottom:873.586350px;}
.y28c{bottom:880.464600px;}
.y244{bottom:883.033350px;}
.y209{bottom:889.411350px;}
.yf4{bottom:891.571350px;}
.y176{bottom:891.586350px;}
.y28b{bottom:893.210850px;}
.y243{bottom:897.433350px;}
.y28a{bottom:905.957100px;}
.y208{bottom:907.591350px;}
.yf3{bottom:909.566400px;}
.y1d8{bottom:909.571350px;}
.y242{bottom:911.833350px;}
.y8{bottom:918.040650px;}
.y289{bottom:918.703350px;}
.y207{bottom:925.771350px;}
.y241{bottom:926.233350px;}
.y1ab{bottom:927.271350px;}
.yf2{bottom:927.566400px;}
.y175{bottom:927.571350px;}
.y128{bottom:928.136400px;}
.y288{bottom:931.449600px;}
.y240{bottom:940.633350px;}
.y127{bottom:943.136400px;}
.y206{bottom:943.951350px;}
.y287{bottom:944.195850px;}
.y1aa{bottom:945.301350px;}
.yf1{bottom:945.566400px;}
.y174{bottom:945.571350px;}
.y23f{bottom:955.033350px;}
.y286{bottom:956.942100px;}
.y205{bottom:962.131350px;}
.y1a9{bottom:963.331350px;}
.yf0{bottom:963.566400px;}
.y173{bottom:963.571350px;}
.y23e{bottom:969.433350px;}
.y285{bottom:969.688350px;}
.y126{bottom:969.696000px;}
.y7{bottom:976.822650px;}
.y204{bottom:980.311350px;}
.y1a8{bottom:981.361350px;}
.yef{bottom:981.566400px;}
.y172{bottom:981.571350px;}
.y284{bottom:982.434600px;}
.y23d{bottom:989.833350px;}
.y125{bottom:989.838000px;}
.y283{bottom:995.180850px;}
.y203{bottom:998.491350px;}
.y1a7{bottom:999.391350px;}
.yee{bottom:999.566400px;}
.y171{bottom:999.571350px;}
.y282{bottom:1007.927100px;}
.y23c{bottom:1010.233350px;}
.y124{bottom:1011.478500px;}
.y6{bottom:1015.828650px;}
.y202{bottom:1016.671350px;}
.y1a6{bottom:1017.421350px;}
.yed{bottom:1017.566400px;}
.y170{bottom:1017.571350px;}
.y281{bottom:1020.673350px;}
.y23b{bottom:1031.233350px;}
.y123{bottom:1033.119000px;}
.y280{bottom:1033.419600px;}
.y201{bottom:1034.851350px;}
.y1a5{bottom:1035.451350px;}
.yec{bottom:1035.566400px;}
.y16f{bottom:1035.571350px;}
.y27f{bottom:1046.165850px;}
.y23a{bottom:1051.633350px;}
.y200{bottom:1053.031350px;}
.y122{bottom:1053.261000px;}
.y1a4{bottom:1053.481350px;}
.yeb{bottom:1053.566400px;}
.y16e{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y27e{bottom:1058.912100px;}
.y239{bottom:1066.033350px;}
.y1ff{bottom:1071.211350px;}
.y1a3{bottom:1071.511350px;}
.yea{bottom:1071.566400px;}
.y16d{bottom:1071.571350px;}
.y27d{bottom:1071.658350px;}
.y121{bottom:1077.898500px;}
.y238{bottom:1080.433350px;}
.y27c{bottom:1084.404600px;}
.y1fe{bottom:1089.391350px;}
.y1a2{bottom:1089.541350px;}
.ye9{bottom:1089.566400px;}
.y16c{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y237{bottom:1094.833350px;}
.y27b{bottom:1097.150850px;}
.y120{bottom:1099.912350px;}
.ye8{bottom:1107.566400px;}
.y16b{bottom:1107.571350px;}
.y236{bottom:1109.233350px;}
.y27a{bottom:1109.897100px;}
.y3{bottom:1140.946200px;}
.y86{bottom:1140.946350px;}
.h7{height:23.931648px;}
.h12{height:32.895000px;}
.h8{height:34.944000px;}
.h10{height:35.088000px;}
.h3{height:36.096000px;}
.he{height:39.474000px;}
.h9{height:40.608000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.ha{height:44.040000px;}
.hb{height:56.173920px;}
.h11{height:56.174520px;}
.hc{height:56.198520px;}
.hf{height:56.218320px;}
.h6{height:61.687098px;}
.h5{height:95.906250px;}
.hd{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.250000px;}
.x13{left:84.667500px;}
.x12{left:165.750150px;}
.x4{left:220.379400px;}
.x2{left:247.001850px;}
.x10{left:460.335000px;}
.xf{left:473.835000px;}
.x14{left:484.132500px;}
.x8{left:537.524400px;}
.xa{left:546.518850px;}
.x9{left:551.017800px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x7{left:688.870650px;}
.x11{left:723.955500px;}
.x1{left:824.963400px;}
.xd{left:853.499955px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.978133pt;}
.v1{vertical-align:26.400000pt;}
.v4{vertical-align:48.000000pt;}
.ls7{letter-spacing:-1.013333pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.671840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls4{letter-spacing:1298.857600pt;}
.ws4{word-spacing:-13.866667pt;}
.wsc8{word-spacing:-13.866133pt;}
.ws5{word-spacing:-13.344000pt;}
.wsab{word-spacing:-12.800000pt;}
.ws134{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws8{word-spacing:-10.240427pt;}
.ws2{word-spacing:-10.240000pt;}
.ws3{word-spacing:-9.193600pt;}
.wsd8{word-spacing:-7.199467pt;}
.ws1{word-spacing:-6.789120pt;}
.ws25{word-spacing:-6.560000pt;}
.ws38{word-spacing:-5.812800pt;}
.ws80{word-spacing:-5.440533pt;}
.ws88{word-spacing:-5.280000pt;}
.ws42{word-spacing:-4.586667pt;}
.wsc9{word-spacing:-4.319467pt;}
.ws6c{word-spacing:-4.000000pt;}
.ws49{word-spacing:-3.947200pt;}
.ws87{word-spacing:-3.626133pt;}
.ws72{word-spacing:-3.519467pt;}
.wsa0{word-spacing:-3.306667pt;}
.ws97{word-spacing:-3.253333pt;}
.ws51{word-spacing:-3.147200pt;}
.ws69{word-spacing:-2.986667pt;}
.ws126{word-spacing:-2.932800pt;}
.ws110{word-spacing:-2.880000pt;}
.wscb{word-spacing:-2.773333pt;}
.ws111{word-spacing:-2.666667pt;}
.ws98{word-spacing:-2.613333pt;}
.ws41{word-spacing:-2.506667pt;}
.ws8b{word-spacing:-2.453867pt;}
.ws90{word-spacing:-2.347200pt;}
.ws10b{word-spacing:-2.240533pt;}
.ws8c{word-spacing:-2.132800pt;}
.ws53{word-spacing:-2.080000pt;}
.ws124{word-spacing:-2.026133pt;}
.wsda{word-spacing:-1.973333pt;}
.ws3f{word-spacing:-1.920000pt;}
.wsc4{word-spacing:-1.866667pt;}
.wsf4{word-spacing:-1.813333pt;}
.ws81{word-spacing:-1.760000pt;}
.ws3c{word-spacing:-1.653867pt;}
.ws2d{word-spacing:-1.584000pt;}
.ws7{word-spacing:-1.578667pt;}
.ws14{word-spacing:-1.547200pt;}
.wsa4{word-spacing:-1.493333pt;}
.ws116{word-spacing:-1.439467pt;}
.ws105{word-spacing:-1.386667pt;}
.wsa1{word-spacing:-1.379040pt;}
.wsdf{word-spacing:-1.332800pt;}
.ws95{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.226133pt;}
.ws35{word-spacing:-1.120000pt;}
.ws6b{word-spacing:-1.013333pt;}
.wsed{word-spacing:-0.960533pt;}
.ws44{word-spacing:-0.906667pt;}
.wse3{word-spacing:-0.853867pt;}
.wsd2{word-spacing:-0.747200pt;}
.ws86{word-spacing:-0.693333pt;}
.ws9b{word-spacing:-0.639467pt;}
.wsc5{word-spacing:-0.532800pt;}
.wsf7{word-spacing:-0.480000pt;}
.wsca{word-spacing:-0.373333pt;}
.ws71{word-spacing:-0.320000pt;}
.ws135{word-spacing:-0.280000pt;}
.ws37{word-spacing:-0.266667pt;}
.ws76{word-spacing:-0.213333pt;}
.ws5d{word-spacing:-0.160533pt;}
.ws136{word-spacing:-0.160000pt;}
.wsa3{word-spacing:-0.106667pt;}
.ws106{word-spacing:-0.053867pt;}
.ws133{word-spacing:-0.043093pt;}
.ws137{word-spacing:-0.040400pt;}
.ws6{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.053867pt;}
.ws3a{word-spacing:0.106667pt;}
.ws103{word-spacing:0.160533pt;}
.ws12d{word-spacing:0.176800pt;}
.ws9a{word-spacing:0.213333pt;}
.ws10c{word-spacing:0.266667pt;}
.ws50{word-spacing:0.320000pt;}
.ws132{word-spacing:0.373333pt;}
.wsd4{word-spacing:0.426667pt;}
.ws8f{word-spacing:0.586667pt;}
.ws7a{word-spacing:0.639467pt;}
.ws130{word-spacing:0.693333pt;}
.ws57{word-spacing:0.747200pt;}
.ws39{word-spacing:0.800000pt;}
.ws7b{word-spacing:0.853867pt;}
.wsf6{word-spacing:0.960533pt;}
.wse1{word-spacing:1.013333pt;}
.wsb9{word-spacing:1.066667pt;}
.ws15{word-spacing:1.120000pt;}
.ws6a{word-spacing:1.226133pt;}
.ws3e{word-spacing:1.280000pt;}
.wsd5{word-spacing:1.332800pt;}
.ws82{word-spacing:1.493333pt;}
.ws2c{word-spacing:1.584000pt;}
.ws52{word-spacing:1.600000pt;}
.ws128{word-spacing:1.653867pt;}
.ws4a{word-spacing:1.706667pt;}
.ws10d{word-spacing:1.760000pt;}
.ws79{word-spacing:1.813333pt;}
.wsee{word-spacing:1.866667pt;}
.wscd{word-spacing:1.920000pt;}
.ws125{word-spacing:1.973333pt;}
.ws99{word-spacing:2.080000pt;}
.wsb7{word-spacing:2.186667pt;}
.ws36{word-spacing:2.240533pt;}
.wsbc{word-spacing:2.293333pt;}
.ws1b{word-spacing:2.347200pt;}
.ws2f{word-spacing:2.447520pt;}
.ws43{word-spacing:2.453867pt;}
.wsdb{word-spacing:2.613333pt;}
.wsfe{word-spacing:2.666667pt;}
.ws2b{word-spacing:2.688000pt;}
.ws16{word-spacing:2.719467pt;}
.ws7e{word-spacing:2.773333pt;}
.wsd0{word-spacing:2.826133pt;}
.wsd1{word-spacing:2.880000pt;}
.ws107{word-spacing:2.986667pt;}
.ws112{word-spacing:3.040533pt;}
.ws115{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.147200pt;}
.ws2e{word-spacing:3.167520pt;}
.ws11e{word-spacing:3.253333pt;}
.ws119{word-spacing:3.306667pt;}
.ws1d{word-spacing:3.360000pt;}
.wsd6{word-spacing:3.413333pt;}
.ws118{word-spacing:3.466667pt;}
.ws102{word-spacing:3.573333pt;}
.ws12f{word-spacing:3.626133pt;}
.wsaa{word-spacing:3.680000pt;}
.wsb8{word-spacing:3.733867pt;}
.ws22{word-spacing:3.786667pt;}
.wsbd{word-spacing:3.840533pt;}
.ws85{word-spacing:3.893333pt;}
.ws83{word-spacing:3.947200pt;}
.wsa2{word-spacing:4.000000pt;}
.wsfb{word-spacing:4.106667pt;}
.ws8a{word-spacing:4.160000pt;}
.wsf8{word-spacing:4.212800pt;}
.ws104{word-spacing:4.319467pt;}
.wsae{word-spacing:4.426133pt;}
.wsc2{word-spacing:4.533867pt;}
.ws10e{word-spacing:4.586667pt;}
.wsba{word-spacing:4.640533pt;}
.ws3b{word-spacing:4.693333pt;}
.wsa9{word-spacing:4.746667pt;}
.ws59{word-spacing:4.800000pt;}
.ws123{word-spacing:4.853333pt;}
.wse2{word-spacing:4.906667pt;}
.ws34{word-spacing:4.960000pt;}
.wsbe{word-spacing:5.012800pt;}
.wsa5{word-spacing:5.066667pt;}
.ws54{word-spacing:5.119467pt;}
.wsd9{word-spacing:5.227200pt;}
.ws117{word-spacing:5.280000pt;}
.ws6e{word-spacing:5.386667pt;}
.ws4b{word-spacing:5.493333pt;}
.wsf0{word-spacing:5.546667pt;}
.ws75{word-spacing:5.600000pt;}
.ws1f{word-spacing:5.653333pt;}
.wsc1{word-spacing:5.706133pt;}
.wsf2{word-spacing:5.760000pt;}
.ws45{word-spacing:5.812800pt;}
.ws10f{word-spacing:5.866667pt;}
.ws93{word-spacing:5.919467pt;}
.ws29{word-spacing:5.951520pt;}
.ws12e{word-spacing:6.027200pt;}
.ws113{word-spacing:6.080000pt;}
.ws12{word-spacing:6.133867pt;}
.ws4f{word-spacing:6.186667pt;}
.wsac{word-spacing:6.240000pt;}
.wsc7{word-spacing:6.293333pt;}
.wsb5{word-spacing:6.346667pt;}
.ws108{word-spacing:6.400000pt;}
.ws5a{word-spacing:6.453333pt;}
.ws7f{word-spacing:6.506133pt;}
.ws11d{word-spacing:6.560000pt;}
.wscc{word-spacing:6.612800pt;}
.ws89{word-spacing:6.666667pt;}
.ws131{word-spacing:6.773333pt;}
.ws11a{word-spacing:6.880000pt;}
.ws12b{word-spacing:6.933333pt;}
.ws84{word-spacing:6.986667pt;}
.ws122{word-spacing:7.040000pt;}
.wse4{word-spacing:7.093333pt;}
.wsff{word-spacing:7.146667pt;}
.wse9{word-spacing:7.253333pt;}
.ws100{word-spacing:7.413867pt;}
.ws70{word-spacing:7.520533pt;}
.ws46{word-spacing:7.573333pt;}
.wse0{word-spacing:7.627200pt;}
.ws96{word-spacing:7.680000pt;}
.ws114{word-spacing:7.786667pt;}
.wsd3{word-spacing:7.840000pt;}
.ws74{word-spacing:7.946667pt;}
.ws101{word-spacing:7.999467pt;}
.wse8{word-spacing:8.160000pt;}
.ws61{word-spacing:8.213867pt;}
.ws26{word-spacing:8.266667pt;}
.wsdc{word-spacing:8.320533pt;}
.ws55{word-spacing:8.373333pt;}
.wseb{word-spacing:8.426667pt;}
.wsfc{word-spacing:8.480000pt;}
.wsc6{word-spacing:8.799467pt;}
.ws56{word-spacing:8.907200pt;}
.ws3d{word-spacing:8.960000pt;}
.ws27{word-spacing:9.013867pt;}
.wsdd{word-spacing:9.173333pt;}
.ws62{word-spacing:9.280000pt;}
.ws4c{word-spacing:9.386133pt;}
.ws5e{word-spacing:9.546667pt;}
.wse{word-spacing:9.653333pt;}
.wsd7{word-spacing:9.760000pt;}
.wsde{word-spacing:9.920000pt;}
.ws11c{word-spacing:9.973333pt;}
.ws6f{word-spacing:10.026667pt;}
.ws73{word-spacing:10.133333pt;}
.ws7c{word-spacing:10.186133pt;}
.wsbf{word-spacing:10.240000pt;}
.ws11f{word-spacing:10.292800pt;}
.ws94{word-spacing:10.346667pt;}
.ws78{word-spacing:10.400533pt;}
.ws48{word-spacing:10.453333pt;}
.ws60{word-spacing:10.507200pt;}
.ws5b{word-spacing:10.560000pt;}
.ws92{word-spacing:10.720000pt;}
.wsb2{word-spacing:10.879467pt;}
.wsce{word-spacing:10.933333pt;}
.ws9e{word-spacing:10.986133pt;}
.ws8e{word-spacing:11.040000pt;}
.wsf9{word-spacing:11.146667pt;}
.ws32{word-spacing:11.200533pt;}
.wscf{word-spacing:11.466667pt;}
.wsc3{word-spacing:11.520000pt;}
.wsea{word-spacing:11.679467pt;}
.ws11{word-spacing:11.786133pt;}
.wsf5{word-spacing:12.000533pt;}
.ws9c{word-spacing:12.053333pt;}
.ws12c{word-spacing:12.266667pt;}
.wsa8{word-spacing:12.479467pt;}
.wsef{word-spacing:12.586133pt;}
.wsb6{word-spacing:12.640000pt;}
.ws9f{word-spacing:12.693867pt;}
.ws4e{word-spacing:12.906667pt;}
.wsfa{word-spacing:13.172800pt;}
.wsf3{word-spacing:13.226667pt;}
.ws129{word-spacing:13.333333pt;}
.wsb3{word-spacing:13.387200pt;}
.ws47{word-spacing:13.440000pt;}
.ws33{word-spacing:13.493867pt;}
.ws7d{word-spacing:13.546667pt;}
.wsc{word-spacing:14.026667pt;}
.ws28{word-spacing:14.080533pt;}
.wsf1{word-spacing:14.133333pt;}
.ws12a{word-spacing:14.240000pt;}
.ws11b{word-spacing:14.293867pt;}
.wsb{word-spacing:14.346667pt;}
.wse7{word-spacing:14.506667pt;}
.wsbb{word-spacing:14.559467pt;}
.ws30{word-spacing:14.603326pt;}
.ws10{word-spacing:14.772800pt;}
.wsad{word-spacing:14.826667pt;}
.ws5f{word-spacing:14.987200pt;}
.ws2a{word-spacing:15.216000pt;}
.ws91{word-spacing:15.306667pt;}
.ws9{word-spacing:15.413333pt;}
.wsb4{word-spacing:15.466133pt;}
.wsc0{word-spacing:15.520000pt;}
.ws58{word-spacing:15.840000pt;}
.wsec{word-spacing:15.893333pt;}
.ws63{word-spacing:16.266133pt;}
.ws121{word-spacing:16.640000pt;}
.ws9d{word-spacing:16.693333pt;}
.ws109{word-spacing:16.959467pt;}
.wsa7{word-spacing:17.120000pt;}
.wse6{word-spacing:17.652800pt;}
.ws77{word-spacing:17.973867pt;}
.wsa6{word-spacing:18.240000pt;}
.ws4d{word-spacing:18.346133pt;}
.ws6d{word-spacing:18.667200pt;}
.wsb0{word-spacing:19.093333pt;}
.ws5c{word-spacing:19.786667pt;}
.wsa{word-spacing:20.532800pt;}
.ws8d{word-spacing:20.800000pt;}
.ws24{word-spacing:20.853867pt;}
.ws17{word-spacing:21.706667pt;}
.ws18{word-spacing:21.760000pt;}
.wsd{word-spacing:21.920000pt;}
.ws31{word-spacing:22.026133pt;}
.wsaf{word-spacing:22.932800pt;}
.wse5{word-spacing:24.373333pt;}
.ws10a{word-spacing:24.853333pt;}
.ws127{word-spacing:25.280000pt;}
.ws120{word-spacing:25.333867pt;}
.ws23{word-spacing:25.919467pt;}
.ws20{word-spacing:27.253333pt;}
.ws19{word-spacing:27.999467pt;}
.ws21{word-spacing:28.053333pt;}
.ws1c{word-spacing:29.492800pt;}
.wsf{word-spacing:35.520000pt;}
.ws13{word-spacing:37.067200pt;}
.ws64{word-spacing:39.600000pt;}
.ws1a{word-spacing:39.626667pt;}
.wsb1{word-spacing:43.573333pt;}
.ws68{word-spacing:52.896000pt;}
.ws67{word-spacing:77.232000pt;}
.ws65{word-spacing:88.368000pt;}
.ws66{word-spacing:103.920000pt;}
._13{margin-left:-2686.604160pt;}
._12{margin-left:-1814.207040pt;}
._2e{margin-left:-56.906667pt;}
._c{margin-left:-53.301333pt;}
._8{margin-left:-42.640000pt;}
._34{margin-left:-39.255467pt;}
._32{margin-left:-38.186667pt;}
._d{margin-left:-34.774933pt;}
._1c{margin-left:-32.213333pt;}
._35{margin-left:-30.613333pt;}
._1{margin-left:-29.333333pt;}
._2f{margin-left:-27.507200pt;}
._1b{margin-left:-26.510400pt;}
._16{margin-left:-24.480000pt;}
._33{margin-left:-23.146667pt;}
._31{margin-left:-22.188800pt;}
._30{margin-left:-20.800000pt;}
._10{margin-left:-19.520000pt;}
._1a{margin-left:-17.920000pt;}
._4{margin-left:-16.309333pt;}
._15{margin-left:-14.778133pt;}
._17{margin-left:-13.866667pt;}
._14{margin-left:-12.800000pt;}
._a{margin-left:-11.520000pt;}
._7{margin-left:-10.240000pt;}
._19{margin-left:-8.909333pt;}
._e{margin-left:-7.413333pt;}
._3a{margin-left:-6.480000pt;}
._b{margin-left:-5.520000pt;}
._f{margin-left:-4.480000pt;}
._5{margin-left:-3.157333pt;}
._0{margin-left:-1.578667pt;}
._9{width:1.186133pt;}
._6{width:2.385067pt;}
._37{width:10.240000pt;}
._36{width:11.648000pt;}
._2{width:13.024000pt;}
._39{width:18.200000pt;}
._38{width:22.360000pt;}
._2b{width:26.208000pt;}
._3{width:31.691200pt;}
._18{width:33.792000pt;}
._1d{width:34.848000pt;}
._1e{width:54.576000pt;}
._1f{width:62.688000pt;}
._2a{width:91.584000pt;}
._20{width:100.464000pt;}
._24{width:103.968000pt;}
._2c{width:117.264000pt;}
._28{width:118.272000pt;}
._23{width:131.568000pt;}
._29{width:138.624000pt;}
._22{width:147.552000pt;}
._26{width:163.008000pt;}
._27{width:170.496000pt;}
._25{width:174.192000pt;}
._2d{width:189.696000pt;}
._21{width:317.280000pt;}
._11{width:562.918080pt;}
.fs6{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y1fd{bottom:72.507867pt;}
.y16a{bottom:72.521067pt;}
.y1a1{bottom:72.521200pt;}
.y11f{bottom:72.534533pt;}
.y77{bottom:72.537467pt;}
.y146{bottom:72.541733pt;}
.y5b{bottom:72.542933pt;}
.ye7{bottom:72.543467pt;}
.ya8{bottom:72.547067pt;}
.yb9{bottom:72.560400pt;}
.y28{bottom:72.566933pt;}
.y1d7{bottom:72.729200pt;}
.y235{bottom:72.862533pt;}
.y234{bottom:85.822533pt;}
.y27{bottom:85.900267pt;}
.y169{bottom:86.921067pt;}
.y1fc{bottom:88.507867pt;}
.y1a0{bottom:88.521200pt;}
.y11e{bottom:88.534533pt;}
.y76{bottom:88.537467pt;}
.y145{bottom:88.541733pt;}
.y5a{bottom:88.542933pt;}
.ye6{bottom:88.543467pt;}
.ya7{bottom:88.547067pt;}
.yb8{bottom:88.560400pt;}
.y1d6{bottom:88.755867pt;}
.y279{bottom:91.255200pt;}
.y2c9{bottom:91.505200pt;}
.y233{bottom:98.782533pt;}
.y26{bottom:99.233600pt;}
.y278{bottom:102.585200pt;}
.y2c8{bottom:102.835200pt;}
.y1fb{bottom:104.507867pt;}
.y19f{bottom:104.521200pt;}
.y11d{bottom:104.534533pt;}
.y75{bottom:104.537467pt;}
.y144{bottom:104.541733pt;}
.y59{bottom:104.542933pt;}
.ye5{bottom:104.543467pt;}
.ya6{bottom:104.547067pt;}
.yb7{bottom:104.560400pt;}
.y1d5{bottom:104.782533pt;}
.y232{bottom:111.742533pt;}
.y25{bottom:112.566933pt;}
.y277{bottom:113.915200pt;}
.y2c7{bottom:114.165200pt;}
.y1fa{bottom:120.507867pt;}
.y19e{bottom:120.521200pt;}
.y11c{bottom:120.534533pt;}
.y74{bottom:120.537467pt;}
.y143{bottom:120.541733pt;}
.y58{bottom:120.542933pt;}
.ye4{bottom:120.543467pt;}
.ya5{bottom:120.547067pt;}
.yb6{bottom:120.560400pt;}
.y1d4{bottom:120.809200pt;}
.y231{bottom:124.702533pt;}
.y276{bottom:125.245200pt;}
.y2c6{bottom:125.495200pt;}
.y1f9{bottom:136.507867pt;}
.y19d{bottom:136.521200pt;}
.y11b{bottom:136.534533pt;}
.y73{bottom:136.537467pt;}
.y142{bottom:136.541733pt;}
.y57{bottom:136.542933pt;}
.ye3{bottom:136.543467pt;}
.ya4{bottom:136.547067pt;}
.yb5{bottom:136.560400pt;}
.y275{bottom:136.575200pt;}
.y2c5{bottom:136.825200pt;}
.y1d3{bottom:136.835867pt;}
.y230{bottom:137.662533pt;}
.y24{bottom:137.900267pt;}
.y274{bottom:147.905200pt;}
.y2c4{bottom:148.155200pt;}
.y22f{bottom:150.622533pt;}
.y23{bottom:151.233600pt;}
.y1f8{bottom:152.507867pt;}
.y19c{bottom:152.521200pt;}
.y11a{bottom:152.534533pt;}
.y72{bottom:152.537467pt;}
.y141{bottom:152.541733pt;}
.y56{bottom:152.542933pt;}
.ye2{bottom:152.543467pt;}
.ya3{bottom:152.547067pt;}
.yb4{bottom:152.560400pt;}
.y1d2{bottom:152.862533pt;}
.y273{bottom:159.235200pt;}
.y2c3{bottom:159.485200pt;}
.y22e{bottom:163.582533pt;}
.y22{bottom:164.566933pt;}
.y1f7{bottom:168.507867pt;}
.y19b{bottom:168.521200pt;}
.y119{bottom:168.534533pt;}
.y71{bottom:168.537467pt;}
.y140{bottom:168.541733pt;}
.y55{bottom:168.542933pt;}
.ye1{bottom:168.543467pt;}
.ya2{bottom:168.547067pt;}
.yb3{bottom:168.560400pt;}
.y1d1{bottom:168.889200pt;}
.y272{bottom:170.565200pt;}
.y2c2{bottom:170.815200pt;}
.y22d{bottom:181.875867pt;}
.y271{bottom:181.895200pt;}
.y2c1{bottom:182.145200pt;}
.y21{bottom:182.700267pt;}
.y1f6{bottom:184.507867pt;}
.y19a{bottom:184.521200pt;}
.y118{bottom:184.534533pt;}
.y70{bottom:184.537467pt;}
.y13f{bottom:184.541733pt;}
.y54{bottom:184.542933pt;}
.ye0{bottom:184.543467pt;}
.ya1{bottom:184.547067pt;}
.yb2{bottom:184.560400pt;}
.y1d0{bottom:184.915867pt;}
.y20{bottom:191.233600pt;}
.y270{bottom:193.225200pt;}
.y2c0{bottom:193.475200pt;}
.y22c{bottom:194.675867pt;}
.y1f5{bottom:200.507867pt;}
.y199{bottom:200.521200pt;}
.y117{bottom:200.534533pt;}
.y6f{bottom:200.537467pt;}
.y13e{bottom:200.541733pt;}
.y53{bottom:200.542933pt;}
.ydf{bottom:200.543467pt;}
.ya0{bottom:200.547067pt;}
.yb1{bottom:200.560400pt;}
.y1cf{bottom:200.942533pt;}
.y26f{bottom:204.555200pt;}
.y1f{bottom:204.566933pt;}
.y2bf{bottom:204.805200pt;}
.y22b{bottom:207.475867pt;}
.y26e{bottom:215.885200pt;}
.y2be{bottom:216.135200pt;}
.y1f4{bottom:216.507867pt;}
.y198{bottom:216.521200pt;}
.y116{bottom:216.534533pt;}
.y6e{bottom:216.537467pt;}
.y13d{bottom:216.541733pt;}
.yde{bottom:216.543467pt;}
.y9f{bottom:216.547067pt;}
.yb0{bottom:216.560400pt;}
.y1ce{bottom:216.969200pt;}
.y1e{bottom:217.900267pt;}
.y22a{bottom:220.275867pt;}
.y26d{bottom:227.215200pt;}
.y2bd{bottom:227.465200pt;}
.y1d{bottom:231.233600pt;}
.y1f3{bottom:232.507867pt;}
.y197{bottom:232.521200pt;}
.y115{bottom:232.534533pt;}
.y6d{bottom:232.537467pt;}
.y13c{bottom:232.541733pt;}
.ydd{bottom:232.543467pt;}
.y9e{bottom:232.547067pt;}
.yaf{bottom:232.560400pt;}
.y1cd{bottom:232.995867pt;}
.y229{bottom:233.075867pt;}
.y26c{bottom:238.545200pt;}
.y2bc{bottom:238.795200pt;}
.y52{bottom:241.460267pt;}
.y228{bottom:245.875867pt;}
.y1f2{bottom:248.507867pt;}
.y196{bottom:248.521200pt;}
.y114{bottom:248.534533pt;}
.y6c{bottom:248.537467pt;}
.y13b{bottom:248.541733pt;}
.ydc{bottom:248.543467pt;}
.y9d{bottom:248.547067pt;}
.y1cc{bottom:249.022533pt;}
.y1c{bottom:249.366933pt;}
.y26b{bottom:249.875200pt;}
.y2bb{bottom:250.125200pt;}
.y51{bottom:256.124267pt;}
.y26a{bottom:261.205200pt;}
.y2ba{bottom:261.455200pt;}
.y2e{bottom:261.516133pt;}
.yae{bottom:262.600400pt;}
.y227{bottom:264.009200pt;}
.y1f1{bottom:264.507867pt;}
.y195{bottom:264.521200pt;}
.y113{bottom:264.534533pt;}
.y6b{bottom:264.537467pt;}
.y13a{bottom:264.541733pt;}
.ydb{bottom:264.543467pt;}
.y9c{bottom:264.547067pt;}
.y1cb{bottom:265.049200pt;}
.y50{bottom:270.788267pt;}
.y269{bottom:272.535200pt;}
.y2b9{bottom:272.785200pt;}
.y2d{bottom:274.316133pt;}
.y226{bottom:276.969200pt;}
.yad{bottom:278.600400pt;}
.y1f0{bottom:280.507867pt;}
.y194{bottom:280.521200pt;}
.y112{bottom:280.534533pt;}
.y6a{bottom:280.537467pt;}
.y139{bottom:280.541733pt;}
.yda{bottom:280.543467pt;}
.y9b{bottom:280.547067pt;}
.y1ca{bottom:281.075867pt;}
.y268{bottom:283.865200pt;}
.y2b8{bottom:284.115200pt;}
.y4f{bottom:285.452267pt;}
.y2c{bottom:287.116133pt;}
.y225{bottom:289.929200pt;}
.yac{bottom:294.600400pt;}
.y267{bottom:295.195200pt;}
.y2b7{bottom:295.445200pt;}
.y1ef{bottom:296.507867pt;}
.y193{bottom:296.521200pt;}
.y111{bottom:296.534533pt;}
.y69{bottom:296.537467pt;}
.y138{bottom:296.541733pt;}
.yd9{bottom:296.543467pt;}
.y9a{bottom:296.547067pt;}
.y1c9{bottom:297.102533pt;}
.y2b{bottom:299.916133pt;}
.y4e{bottom:300.116267pt;}
.y224{bottom:302.889200pt;}
.y266{bottom:306.525200pt;}
.y2b6{bottom:306.775200pt;}
.yab{bottom:310.600400pt;}
.y1ee{bottom:312.507867pt;}
.y192{bottom:312.521200pt;}
.y110{bottom:312.534533pt;}
.y68{bottom:312.537467pt;}
.y137{bottom:312.541733pt;}
.yd8{bottom:312.543467pt;}
.y99{bottom:312.547067pt;}
.y2a{bottom:312.716133pt;}
.y1c8{bottom:313.134533pt;}
.y4d{bottom:314.780267pt;}
.y223{bottom:315.849200pt;}
.y265{bottom:317.855200pt;}
.y2b5{bottom:318.105200pt;}
.y29{bottom:325.516133pt;}
.yaa{bottom:326.600400pt;}
.y1ed{bottom:328.507867pt;}
.y191{bottom:328.521200pt;}
.y10f{bottom:328.534533pt;}
.y67{bottom:328.537467pt;}
.y136{bottom:328.541733pt;}
.yd7{bottom:328.543467pt;}
.y98{bottom:328.547067pt;}
.y222{bottom:328.809200pt;}
.y1c7{bottom:329.161200pt;}
.y264{bottom:329.185200pt;}
.y2b4{bottom:329.435200pt;}
.y4c{bottom:329.444267pt;}
.y263{bottom:340.515200pt;}
.y2b3{bottom:340.765200pt;}
.y221{bottom:341.769200pt;}
.ya9{bottom:342.600400pt;}
.y4b{bottom:344.108267pt;}
.y1ec{bottom:344.507867pt;}
.y190{bottom:344.521200pt;}
.y10e{bottom:344.534533pt;}
.y66{bottom:344.537467pt;}
.y135{bottom:344.541733pt;}
.yd6{bottom:344.543467pt;}
.y97{bottom:344.547067pt;}
.y1c6{bottom:345.187867pt;}
.y262{bottom:351.845200pt;}
.y2b2{bottom:352.095200pt;}
.y4a{bottom:358.772267pt;}
.y220{bottom:360.062533pt;}
.y1eb{bottom:360.507867pt;}
.y18f{bottom:360.521200pt;}
.y10d{bottom:360.534533pt;}
.y65{bottom:360.537467pt;}
.y134{bottom:360.541733pt;}
.yd5{bottom:360.543467pt;}
.y96{bottom:360.547067pt;}
.y1c5{bottom:361.214533pt;}
.y261{bottom:363.175200pt;}
.y2b1{bottom:363.425200pt;}
.y49{bottom:373.436267pt;}
.y260{bottom:374.505200pt;}
.y2b0{bottom:374.755200pt;}
.y1ea{bottom:376.507867pt;}
.y18e{bottom:376.521200pt;}
.y10c{bottom:376.534533pt;}
.y64{bottom:376.537467pt;}
.y133{bottom:376.541733pt;}
.yd4{bottom:376.543467pt;}
.y95{bottom:376.547067pt;}
.y1c4{bottom:377.241200pt;}
.y25f{bottom:385.835200pt;}
.y2af{bottom:386.085200pt;}
.y48{bottom:388.100267pt;}
.y21f{bottom:388.862533pt;}
.y1e9{bottom:392.507867pt;}
.y18d{bottom:392.521200pt;}
.y10b{bottom:392.534533pt;}
.y63{bottom:392.537467pt;}
.y132{bottom:392.541733pt;}
.yd3{bottom:392.543467pt;}
.y94{bottom:392.547067pt;}
.y1c3{bottom:393.267867pt;}
.y25e{bottom:397.165200pt;}
.y2ae{bottom:397.415200pt;}
.y47{bottom:402.764267pt;}
.y21e{bottom:405.022533pt;}
.y25d{bottom:408.495200pt;}
.y1e8{bottom:408.507867pt;}
.y18c{bottom:408.521200pt;}
.y10a{bottom:408.534533pt;}
.y62{bottom:408.537467pt;}
.y131{bottom:408.541733pt;}
.yd2{bottom:408.543467pt;}
.y93{bottom:408.547067pt;}
.y2ad{bottom:408.745200pt;}
.y1c2{bottom:409.294533pt;}
.y46{bottom:417.428267pt;}
.y25c{bottom:419.825200pt;}
.y2ac{bottom:420.075200pt;}
.y21d{bottom:421.182533pt;}
.y1e7{bottom:424.507867pt;}
.y18b{bottom:424.521200pt;}
.y109{bottom:424.534533pt;}
.y61{bottom:424.537467pt;}
.y130{bottom:424.541733pt;}
.yd1{bottom:424.543467pt;}
.y92{bottom:424.547067pt;}
.y1c1{bottom:425.321200pt;}
.y25b{bottom:431.155200pt;}
.y2ab{bottom:431.405200pt;}
.y45{bottom:432.092267pt;}
.y158{bottom:433.680267pt;}
.y167{bottom:433.880267pt;}
.y21c{bottom:437.342533pt;}
.y1e6{bottom:440.507867pt;}
.y18a{bottom:440.521200pt;}
.y108{bottom:440.534533pt;}
.y60{bottom:440.537467pt;}
.y12f{bottom:440.541733pt;}
.yd0{bottom:440.543467pt;}
.y91{bottom:440.547067pt;}
.y1c0{bottom:441.347867pt;}
.y25a{bottom:442.485200pt;}
.y2aa{bottom:442.735200pt;}
.y44{bottom:446.756267pt;}
.y157{bottom:449.680267pt;}
.y166{bottom:450.666933pt;}
.y21b{bottom:453.502533pt;}
.y259{bottom:453.815200pt;}
.y2a9{bottom:454.065200pt;}
.y1e5{bottom:456.507867pt;}
.y189{bottom:456.521200pt;}
.y107{bottom:456.534533pt;}
.y5f{bottom:456.537467pt;}
.y12e{bottom:456.541733pt;}
.ycf{bottom:456.543467pt;}
.y90{bottom:456.547067pt;}
.y1bf{bottom:457.374533pt;}
.y43{bottom:461.420267pt;}
.y258{bottom:465.145200pt;}
.y2a8{bottom:465.395200pt;}
.y156{bottom:465.680267pt;}
.y165{bottom:467.453600pt;}
.y21a{bottom:469.662533pt;}
.y1e4{bottom:472.507867pt;}
.y188{bottom:472.521200pt;}
.y106{bottom:472.534533pt;}
.y12d{bottom:472.541733pt;}
.y5e{bottom:472.542933pt;}
.yce{bottom:472.543467pt;}
.y8f{bottom:472.547067pt;}
.y1be{bottom:473.401200pt;}
.y42{bottom:476.084267pt;}
.y257{bottom:476.478533pt;}
.y2a7{bottom:476.725200pt;}
.y155{bottom:481.680267pt;}
.y164{bottom:484.240267pt;}
.y219{bottom:485.822533pt;}
.y2a6{bottom:488.055200pt;}
.y1e3{bottom:488.507867pt;}
.y187{bottom:488.521200pt;}
.y105{bottom:488.534533pt;}
.y12c{bottom:488.541733pt;}
.y5d{bottom:488.542933pt;}
.ycd{bottom:488.543467pt;}
.y8e{bottom:488.547067pt;}
.y1bd{bottom:489.427867pt;}
.y41{bottom:490.748267pt;}
.y1b{bottom:496.564133pt;}
.y154{bottom:497.680267pt;}
.y2a5{bottom:499.385200pt;}
.y163{bottom:501.026933pt;}
.y218{bottom:501.982533pt;}
.y1e2{bottom:504.507867pt;}
.y186{bottom:504.521200pt;}
.y104{bottom:504.534533pt;}
.y12b{bottom:504.541733pt;}
.y5c{bottom:504.542933pt;}
.ycc{bottom:504.543467pt;}
.y8d{bottom:504.547067pt;}
.y40{bottom:505.412267pt;}
.y1bc{bottom:505.454533pt;}
.y1a{bottom:509.897467pt;}
.y2a4{bottom:510.715200pt;}
.y153{bottom:513.680267pt;}
.y162{bottom:517.813600pt;}
.y217{bottom:518.142533pt;}
.y3f{bottom:520.076267pt;}
.y1e1{bottom:520.507867pt;}
.y185{bottom:520.521200pt;}
.y103{bottom:520.534533pt;}
.y12a{bottom:520.541733pt;}
.ycb{bottom:520.543467pt;}
.y8c{bottom:520.547067pt;}
.y1bb{bottom:521.481200pt;}
.y2a3{bottom:522.045200pt;}
.y19{bottom:523.230800pt;}
.y152{bottom:529.680267pt;}
.y256{bottom:533.185200pt;}
.y2a2{bottom:533.375200pt;}
.y216{bottom:534.302533pt;}
.y161{bottom:534.600267pt;}
.y3e{bottom:534.740267pt;}
.y1e0{bottom:536.507867pt;}
.y184{bottom:536.521200pt;}
.y102{bottom:536.534533pt;}
.y129{bottom:536.541733pt;}
.yca{bottom:536.543467pt;}
.y8b{bottom:536.547067pt;}
.y1ba{bottom:537.507867pt;}
.y2a1{bottom:544.705200pt;}
.y151{bottom:545.680267pt;}
.y255{bottom:545.985200pt;}
.y18{bottom:548.564133pt;}
.y3d{bottom:549.404267pt;}
.y215{bottom:550.462533pt;}
.y160{bottom:551.386933pt;}
.y1df{bottom:552.507867pt;}
.y183{bottom:552.521200pt;}
.y101{bottom:552.534533pt;}
.yc9{bottom:552.543467pt;}
.y8a{bottom:552.547067pt;}
.y1b9{bottom:553.534533pt;}
.y2a0{bottom:556.035200pt;}
.y84{bottom:557.166533pt;}
.y150{bottom:561.680267pt;}
.y17{bottom:561.897467pt;}
.y3c{bottom:564.068267pt;}
.y85{bottom:564.348587pt;}
.y214{bottom:566.622533pt;}
.y29f{bottom:567.365200pt;}
.y15f{bottom:568.173600pt;}
.y1de{bottom:568.507867pt;}
.y182{bottom:568.521200pt;}
.y100{bottom:568.534533pt;}
.yc8{bottom:568.543467pt;}
.y89{bottom:568.547067pt;}
.y254{bottom:569.451867pt;}
.y1b8{bottom:569.561200pt;}
.y83{bottom:571.830533pt;}
.y16{bottom:575.230800pt;}
.y14f{bottom:577.680267pt;}
.y29e{bottom:578.695200pt;}
.y3b{bottom:578.732267pt;}
.y148{bottom:580.421600pt;}
.y253{bottom:582.251867pt;}
.y213{bottom:582.782533pt;}
.y1dd{bottom:584.507867pt;}
.y181{bottom:584.521200pt;}
.yff{bottom:584.534533pt;}
.yc7{bottom:584.543467pt;}
.y88{bottom:584.547067pt;}
.y15e{bottom:584.960267pt;}
.y1b7{bottom:585.587867pt;}
.y82{bottom:586.499867pt;}
.y15{bottom:588.564133pt;}
.y29d{bottom:590.025200pt;}
.y3a{bottom:593.396267pt;}
.y14e{bottom:593.680267pt;}
.y147{bottom:594.821600pt;}
.y252{bottom:595.051867pt;}
.y212{bottom:598.947867pt;}
.y1dc{bottom:600.507867pt;}
.y180{bottom:600.521200pt;}
.yc6{bottom:600.543467pt;}
.y87{bottom:600.547067pt;}
.y81{bottom:601.163867pt;}
.y29c{bottom:601.355200pt;}
.y1b6{bottom:601.614533pt;}
.y15d{bottom:601.746933pt;}
.y14{bottom:601.897467pt;}
.y251{bottom:607.851867pt;}
.y39{bottom:608.060267pt;}
.y14d{bottom:609.680267pt;}
.y29b{bottom:612.685200pt;}
.y211{bottom:615.107867pt;}
.y13{bottom:615.230800pt;}
.y80{bottom:615.833200pt;}
.y1db{bottom:616.507867pt;}
.yfe{bottom:616.521200pt;}
.y1b5{bottom:617.641200pt;}
.y15c{bottom:618.533600pt;}
.y250{bottom:620.651867pt;}
.y38{bottom:622.724267pt;}
.y29a{bottom:624.015200pt;}
.yc5{bottom:628.543467pt;}
.y12{bottom:628.564133pt;}
.y7f{bottom:630.497200pt;}
.y210{bottom:631.267867pt;}
.y1da{bottom:632.507867pt;}
.yfd{bottom:632.521200pt;}
.y24f{bottom:633.451867pt;}
.y1b4{bottom:633.667867pt;}
.y15b{bottom:635.320267pt;}
.y299{bottom:635.345200pt;}
.y37{bottom:637.388267pt;}
.y14c{bottom:637.680267pt;}
.ybb{bottom:643.760267pt;}
.yc4{bottom:644.543467pt;}
.y7e{bottom:645.169200pt;}
.y298{bottom:646.675200pt;}
.y20f{bottom:647.427867pt;}
.y1d9{bottom:648.507867pt;}
.y17f{bottom:648.521200pt;}
.y1b3{bottom:649.694533pt;}
.y11{bottom:649.897467pt;}
.y24e{bottom:651.585200pt;}
.y36{bottom:652.052267pt;}
.y15a{bottom:652.106933pt;}
.y14b{bottom:653.680267pt;}
.y297{bottom:658.005200pt;}
.yba{bottom:658.160267pt;}
.y7d{bottom:659.833200pt;}
.yc3{bottom:660.543467pt;}
.y10{bottom:663.230800pt;}
.y24d{bottom:664.385200pt;}
.yfc{bottom:664.507867pt;}
.y17e{bottom:664.521200pt;}
.y1b2{bottom:665.721200pt;}
.y35{bottom:666.716267pt;}
.y159{bottom:668.893600pt;}
.y296{bottom:669.335200pt;}
.y14a{bottom:669.680267pt;}
.y7c{bottom:674.497200pt;}
.yc2{bottom:676.543467pt;}
.yf{bottom:676.564133pt;}
.y24c{bottom:677.185200pt;}
.yfb{bottom:680.507867pt;}
.y17d{bottom:680.521200pt;}
.y295{bottom:680.665200pt;}
.y34{bottom:681.380267pt;}
.y1b1{bottom:681.747867pt;}
.y149{bottom:685.680267pt;}
.y7b{bottom:689.169200pt;}
.ye{bottom:689.897467pt;}
.y24b{bottom:689.985200pt;}
.y294{bottom:691.995200pt;}
.yc1{bottom:692.543467pt;}
.y33{bottom:696.044267pt;}
.yfa{bottom:696.507867pt;}
.y17c{bottom:696.521200pt;}
.y1b0{bottom:697.774533pt;}
.y24a{bottom:702.785200pt;}
.yd{bottom:703.230800pt;}
.y293{bottom:703.325200pt;}
.y7a{bottom:703.833200pt;}
.yc0{bottom:708.543467pt;}
.y20e{bottom:709.787867pt;}
.y32{bottom:710.708267pt;}
.yf9{bottom:712.507867pt;}
.y17b{bottom:712.521200pt;}
.y1af{bottom:713.801200pt;}
.y292{bottom:714.655200pt;}
.y249{bottom:715.585200pt;}
.yc{bottom:716.564133pt;}
.y79{bottom:718.497200pt;}
.ybf{bottom:724.543467pt;}
.y168{bottom:725.333467pt;}
.y31{bottom:725.372267pt;}
.y20d{bottom:725.947867pt;}
.y291{bottom:725.985200pt;}
.y248{bottom:728.385200pt;}
.yf8{bottom:728.507867pt;}
.y17a{bottom:728.521200pt;}
.y1ae{bottom:729.827867pt;}
.yb{bottom:729.897467pt;}
.y290{bottom:737.315200pt;}
.y30{bottom:740.036267pt;}
.ybe{bottom:740.543467pt;}
.y247{bottom:741.185200pt;}
.y20c{bottom:742.107867pt;}
.ya{bottom:743.230800pt;}
.yf7{bottom:744.507867pt;}
.y179{bottom:744.521200pt;}
.y1ad{bottom:745.854533pt;}
.y78{bottom:746.702933pt;}
.y28f{bottom:748.645200pt;}
.y246{bottom:753.985200pt;}
.y2f{bottom:754.702933pt;}
.ybd{bottom:756.543467pt;}
.y9{bottom:756.564133pt;}
.y20b{bottom:758.267867pt;}
.y28e{bottom:759.975200pt;}
.yf6{bottom:760.507867pt;}
.y178{bottom:760.521200pt;}
.y1ac{bottom:761.881200pt;}
.y28d{bottom:771.305200pt;}
.y245{bottom:772.118533pt;}
.ybc{bottom:772.543467pt;}
.y20a{bottom:774.427867pt;}
.yf5{bottom:776.507867pt;}
.y177{bottom:776.521200pt;}
.y28c{bottom:782.635200pt;}
.y244{bottom:784.918533pt;}
.y209{bottom:790.587867pt;}
.yf4{bottom:792.507867pt;}
.y176{bottom:792.521200pt;}
.y28b{bottom:793.965200pt;}
.y243{bottom:797.718533pt;}
.y28a{bottom:805.295200pt;}
.y208{bottom:806.747867pt;}
.yf3{bottom:808.503467pt;}
.y1d8{bottom:808.507867pt;}
.y242{bottom:810.518533pt;}
.y8{bottom:816.036133pt;}
.y289{bottom:816.625200pt;}
.y207{bottom:822.907867pt;}
.y241{bottom:823.318533pt;}
.y1ab{bottom:824.241200pt;}
.yf2{bottom:824.503467pt;}
.y175{bottom:824.507867pt;}
.y128{bottom:825.010133pt;}
.y288{bottom:827.955200pt;}
.y240{bottom:836.118533pt;}
.y127{bottom:838.343467pt;}
.y206{bottom:839.067867pt;}
.y287{bottom:839.285200pt;}
.y1aa{bottom:840.267867pt;}
.yf1{bottom:840.503467pt;}
.y174{bottom:840.507867pt;}
.y23f{bottom:848.918533pt;}
.y286{bottom:850.615200pt;}
.y205{bottom:855.227867pt;}
.y1a9{bottom:856.294533pt;}
.yf0{bottom:856.503467pt;}
.y173{bottom:856.507867pt;}
.y23e{bottom:861.718533pt;}
.y285{bottom:861.945200pt;}
.y126{bottom:861.952000pt;}
.y7{bottom:868.286800pt;}
.y204{bottom:871.387867pt;}
.y1a8{bottom:872.321200pt;}
.yef{bottom:872.503467pt;}
.y172{bottom:872.507867pt;}
.y284{bottom:873.275200pt;}
.y23d{bottom:879.851867pt;}
.y125{bottom:879.856000pt;}
.y283{bottom:884.605200pt;}
.y203{bottom:887.547867pt;}
.y1a7{bottom:888.347867pt;}
.yee{bottom:888.503467pt;}
.y171{bottom:888.507867pt;}
.y282{bottom:895.935200pt;}
.y23c{bottom:897.985200pt;}
.y124{bottom:899.092000pt;}
.y6{bottom:902.958800pt;}
.y202{bottom:903.707867pt;}
.y1a6{bottom:904.374533pt;}
.yed{bottom:904.503467pt;}
.y170{bottom:904.507867pt;}
.y281{bottom:907.265200pt;}
.y23b{bottom:916.651867pt;}
.y123{bottom:918.328000pt;}
.y280{bottom:918.595200pt;}
.y201{bottom:919.867867pt;}
.y1a5{bottom:920.401200pt;}
.yec{bottom:920.503467pt;}
.y16f{bottom:920.507867pt;}
.y27f{bottom:929.925200pt;}
.y23a{bottom:934.785200pt;}
.y200{bottom:936.027867pt;}
.y122{bottom:936.232000pt;}
.y1a4{bottom:936.427867pt;}
.yeb{bottom:936.503467pt;}
.y16e{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y27e{bottom:941.255200pt;}
.y239{bottom:947.585200pt;}
.y1ff{bottom:952.187867pt;}
.y1a3{bottom:952.454533pt;}
.yea{bottom:952.503467pt;}
.y16d{bottom:952.507867pt;}
.y27d{bottom:952.585200pt;}
.y121{bottom:958.132000pt;}
.y238{bottom:960.385200pt;}
.y27c{bottom:963.915200pt;}
.y1fe{bottom:968.347867pt;}
.y1a2{bottom:968.481200pt;}
.ye9{bottom:968.503467pt;}
.y16c{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y237{bottom:973.185200pt;}
.y27b{bottom:975.245200pt;}
.y120{bottom:977.699867pt;}
.ye8{bottom:984.503467pt;}
.y16b{bottom:984.507867pt;}
.y236{bottom:985.985200pt;}
.y27a{bottom:986.575200pt;}
.y3{bottom:1014.174400pt;}
.y86{bottom:1014.174533pt;}
.h7{height:21.272576pt;}
.h12{height:29.240000pt;}
.h8{height:31.061333pt;}
.h10{height:31.189333pt;}
.h3{height:32.085333pt;}
.he{height:35.088000pt;}
.h9{height:36.096000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.ha{height:39.146667pt;}
.hb{height:49.932373pt;}
.h11{height:49.932907pt;}
.hc{height:49.954240pt;}
.hf{height:49.971840pt;}
.h6{height:54.832976pt;}
.h5{height:85.250000pt;}
.hd{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:66.000000pt;}
.x13{left:75.260000pt;}
.x12{left:147.333467pt;}
.x4{left:195.892800pt;}
.x2{left:219.557200pt;}
.x10{left:409.186667pt;}
.xf{left:421.186667pt;}
.x14{left:430.340000pt;}
.x8{left:477.799467pt;}
.xa{left:485.794533pt;}
.x9{left:489.793600pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x7{left:612.329467pt;}
.x11{left:643.516000pt;}
.x1{left:733.300800pt;}
.xd{left:758.666627pt;}
}




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