
    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_1ac924f90fdc18f160b2be75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117000;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_c8883ad9d049afc41d4b629e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.144000;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_99935fcfa011b4ad606e108b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130000;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_493808b2bf6c928020df307f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122000;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_d3a38c86285b4ce5ef554163.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_a3dd9f8ed486875aa08d1690.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117000;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_9d9bf4e4943f58d670dded08.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.122000;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_fc6ecb70a247ed82b6972973.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115000;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_1ac924f90fdc18f160b2be75.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.117000;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_d7f03095004302d363799ab2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.034180;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_1ac924f90fdc18f160b2be75.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117000;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_c2f08aa17f23e6b9436e956d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_2842b331a2d43dfc84fb5904.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.044922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls1{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.174000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000120px;}
.ls2{letter-spacing:0.600000px;}
.ls8{letter-spacing:1.218000px;}
.ls7{letter-spacing:5.334600px;}
.ls9{letter-spacing:6.023400px;}
.lsa{letter-spacing:7.169400px;}
.ls3{letter-spacing:36.822000px;}
.ls5{letter-spacing:350.203800px;}
.ls4{letter-spacing:403.580400px;}
.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;}
}
.ws8e{word-spacing:-60.000000px;}
.ws0{word-spacing:-24.864000px;}
.ws26{word-spacing:-17.280000px;}
.ws2{word-spacing:-16.680000px;}
.ws3{word-spacing:-16.380000px;}
.ws28{word-spacing:-15.000000px;}
.ws14b{word-spacing:-14.700000px;}
.ws2a{word-spacing:-14.178000px;}
.ws1{word-spacing:-13.344000px;}
.ws14c{word-spacing:-12.750000px;}
.ws6b{word-spacing:-11.676000px;}
.wsce{word-spacing:-9.960000px;}
.ws6c{word-spacing:-9.924600px;}
.ws27{word-spacing:-9.674400px;}
.ws14a{word-spacing:-9.500400px;}
.ws9f{word-spacing:-8.520000px;}
.ws29{word-spacing:-8.223240px;}
.ws110{word-spacing:-8.100000px;}
.wsb8{word-spacing:-8.040000px;}
.ws12a{word-spacing:-7.800000px;}
.ws56{word-spacing:-6.660000px;}
.ws12e{word-spacing:-6.060000px;}
.ws77{word-spacing:-6.000000px;}
.ws171{word-spacing:-5.940000px;}
.ws115{word-spacing:-5.880000px;}
.wsdc{word-spacing:-5.520000px;}
.wsf0{word-spacing:-5.400000px;}
.ws98{word-spacing:-5.340000px;}
.ws13c{word-spacing:-5.100000px;}
.ws90{word-spacing:-5.040000px;}
.ws153{word-spacing:-4.980000px;}
.ws10{word-spacing:-4.944000px;}
.wsc1{word-spacing:-4.860000px;}
.ws15c{word-spacing:-4.845000px;}
.ws16a{word-spacing:-4.740000px;}
.wsc8{word-spacing:-4.680000px;}
.ws19{word-spacing:-4.560000px;}
.ws173{word-spacing:-4.500000px;}
.ws10e{word-spacing:-4.440000px;}
.ws170{word-spacing:-4.380000px;}
.ws2d{word-spacing:-4.200000px;}
.ws125{word-spacing:-4.140000px;}
.ws104{word-spacing:-4.080000px;}
.ws123{word-spacing:-4.029000px;}
.ws150{word-spacing:-4.020000px;}
.ws164{word-spacing:-3.960000px;}
.ws160{word-spacing:-3.900000px;}
.wsed{word-spacing:-3.840000px;}
.ws87{word-spacing:-3.660000px;}
.ws136{word-spacing:-3.621000px;}
.wsbb{word-spacing:-3.600000px;}
.ws73{word-spacing:-3.540000px;}
.ws7a{word-spacing:-3.300000px;}
.wsf6{word-spacing:-3.180000px;}
.ws9e{word-spacing:-3.120000px;}
.ws8f{word-spacing:-3.060000px;}
.wsba{word-spacing:-3.000000px;}
.ws11d{word-spacing:-2.940000px;}
.ws163{word-spacing:-2.880000px;}
.ws138{word-spacing:-2.856000px;}
.wsdb{word-spacing:-2.820000px;}
.ws10a{word-spacing:-2.760000px;}
.ws14f{word-spacing:-2.700000px;}
.ws152{word-spacing:-2.640000px;}
.wsd9{word-spacing:-2.601000px;}
.ws11e{word-spacing:-2.580000px;}
.wsb9{word-spacing:-2.520000px;}
.ws114{word-spacing:-2.460000px;}
.ws14d{word-spacing:-2.400000px;}
.wsa9{word-spacing:-2.397000px;}
.wsbc{word-spacing:-2.295000px;}
.ws121{word-spacing:-2.280000px;}
.ws70{word-spacing:-2.220000px;}
.ws4e{word-spacing:-2.193000px;}
.wsd{word-spacing:-2.160000px;}
.ws91{word-spacing:-2.040000px;}
.ws79{word-spacing:-1.980000px;}
.ws99{word-spacing:-1.920000px;}
.wsc3{word-spacing:-1.860000px;}
.ws132{word-spacing:-1.800000px;}
.ws12b{word-spacing:-1.740000px;}
.ws2c{word-spacing:-1.680000px;}
.ws5f{word-spacing:-1.620000px;}
.ws13f{word-spacing:-1.560000px;}
.ws122{word-spacing:-1.530000px;}
.ws45{word-spacing:-1.500000px;}
.ws68{word-spacing:-1.479000px;}
.ws35{word-spacing:-1.440000px;}
.ws36{word-spacing:-1.380000px;}
.wsa2{word-spacing:-1.320000px;}
.wsfe{word-spacing:-1.275000px;}
.wsca{word-spacing:-1.260000px;}
.ws17e{word-spacing:-1.200000px;}
.wsa8{word-spacing:-1.173000px;}
.ws2e{word-spacing:-1.140000px;}
.ws88{word-spacing:-1.080000px;}
.ws168{word-spacing:-1.020000px;}
.wsee{word-spacing:-0.960000px;}
.ws13d{word-spacing:-0.900000px;}
.ws2f{word-spacing:-0.840000px;}
.ws47{word-spacing:-0.780000px;}
.ws75{word-spacing:-0.720000px;}
.wsc0{word-spacing:-0.714000px;}
.ws17d{word-spacing:-0.663000px;}
.wscf{word-spacing:-0.660000px;}
.ws12c{word-spacing:-0.600000px;}
.wsbf{word-spacing:-0.561000px;}
.ws17c{word-spacing:-0.540000px;}
.ws129{word-spacing:-0.480000px;}
.ws118{word-spacing:-0.420000px;}
.ws6e{word-spacing:-0.360000px;}
.ws157{word-spacing:-0.357000px;}
.wse{word-spacing:-0.336000px;}
.ws9a{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.180000px;}
.ws130{word-spacing:-0.120000px;}
.ws6a{word-spacing:-0.102000px;}
.ws32{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:0.060000px;}
.wsa7{word-spacing:0.102000px;}
.ws92{word-spacing:0.120000px;}
.wsb0{word-spacing:0.180000px;}
.ws1e{word-spacing:0.240000px;}
.ws1f{word-spacing:0.300000px;}
.ws8c{word-spacing:0.306000px;}
.wsda{word-spacing:0.357000px;}
.ws60{word-spacing:0.360000px;}
.ws17f{word-spacing:0.420000px;}
.wsb{word-spacing:0.480000px;}
.ws71{word-spacing:0.540000px;}
.ws8d{word-spacing:0.561000px;}
.ws33{word-spacing:0.600000px;}
.ws179{word-spacing:0.663000px;}
.ws6{word-spacing:0.720000px;}
.ws111{word-spacing:0.780000px;}
.wsc9{word-spacing:0.840000px;}
.wsa1{word-spacing:0.900000px;}
.ws14{word-spacing:0.960000px;}
.ws16{word-spacing:1.008000px;}
.ws86{word-spacing:1.020000px;}
.ws20{word-spacing:1.080000px;}
.ws38{word-spacing:1.140000px;}
.ws4d{word-spacing:1.173000px;}
.wsde{word-spacing:1.200000px;}
.ws15f{word-spacing:1.260000px;}
.wse3{word-spacing:1.320000px;}
.ws11c{word-spacing:1.380000px;}
.wsab{word-spacing:1.440000px;}
.ws15a{word-spacing:1.479000px;}
.ws46{word-spacing:1.500000px;}
.ws186{word-spacing:1.530000px;}
.ws133{word-spacing:1.560000px;}
.ws43{word-spacing:1.620000px;}
.wsdf{word-spacing:1.740000px;}
.ws72{word-spacing:1.800000px;}
.ws2b{word-spacing:1.860000px;}
.ws187{word-spacing:1.887000px;}
.ws1d{word-spacing:1.920000px;}
.wsf2{word-spacing:1.980000px;}
.ws8{word-spacing:2.016000px;}
.ws7d{word-spacing:2.040000px;}
.ws34{word-spacing:2.100000px;}
.ws100{word-spacing:2.142000px;}
.ws7b{word-spacing:2.160000px;}
.ws67{word-spacing:2.193000px;}
.ws9{word-spacing:2.208000px;}
.ws4a{word-spacing:2.220000px;}
.wsea{word-spacing:2.340000px;}
.ws84{word-spacing:2.400000px;}
.ws6f{word-spacing:2.460000px;}
.wsbe{word-spacing:2.499000px;}
.ws151{word-spacing:2.520000px;}
.wsc{word-spacing:2.544000px;}
.ws105{word-spacing:2.580000px;}
.wsd8{word-spacing:2.601000px;}
.wsc4{word-spacing:2.640000px;}
.wse6{word-spacing:2.700000px;}
.wsfd{word-spacing:2.703000px;}
.wsec{word-spacing:2.760000px;}
.wsb1{word-spacing:2.820000px;}
.wsf5{word-spacing:2.880000px;}
.ws14e{word-spacing:2.940000px;}
.ws39{word-spacing:3.000000px;}
.wsbd{word-spacing:3.009000px;}
.wsf3{word-spacing:3.060000px;}
.wsb2{word-spacing:3.120000px;}
.ws17{word-spacing:3.168000px;}
.ws58{word-spacing:3.180000px;}
.ws15b{word-spacing:3.213000px;}
.ws83{word-spacing:3.240000px;}
.ws145{word-spacing:3.264000px;}
.wse4{word-spacing:3.300000px;}
.ws13{word-spacing:3.312000px;}
.ws54{word-spacing:3.360000px;}
.ws21{word-spacing:3.420000px;}
.wsd3{word-spacing:3.468000px;}
.ws4c{word-spacing:3.480000px;}
.ws181{word-spacing:3.540000px;}
.ws5d{word-spacing:3.600000px;}
.wsaf{word-spacing:3.660000px;}
.ws103{word-spacing:3.720000px;}
.ws44{word-spacing:3.780000px;}
.ws89{word-spacing:3.840000px;}
.ws185{word-spacing:3.876000px;}
.ws51{word-spacing:3.900000px;}
.wse5{word-spacing:3.960000px;}
.wscb{word-spacing:4.020000px;}
.ws18f{word-spacing:4.080000px;}
.wsd0{word-spacing:4.131000px;}
.wsa5{word-spacing:4.140000px;}
.ws191{word-spacing:4.200000px;}
.wse2{word-spacing:4.260000px;}
.ws15{word-spacing:4.272000px;}
.ws37{word-spacing:4.320000px;}
.wsd4{word-spacing:4.335000px;}
.ws62{word-spacing:4.380000px;}
.wsf4{word-spacing:4.440000px;}
.ws9d{word-spacing:4.500000px;}
.wsf{word-spacing:4.560000px;}
.ws12{word-spacing:4.608000px;}
.ws9c{word-spacing:4.620000px;}
.ws93{word-spacing:4.680000px;}
.wsac{word-spacing:4.740000px;}
.wsaa{word-spacing:4.800000px;}
.ws52{word-spacing:4.860000px;}
.ws97{word-spacing:4.920000px;}
.ws4b{word-spacing:5.040000px;}
.ws155{word-spacing:5.049000px;}
.ws25{word-spacing:5.100000px;}
.ws178{word-spacing:5.151000px;}
.ws4f{word-spacing:5.202000px;}
.wsfa{word-spacing:5.220000px;}
.wsf8{word-spacing:5.280000px;}
.ws8b{word-spacing:5.304000px;}
.ws96{word-spacing:5.340000px;}
.ws7{word-spacing:5.376000px;}
.ws134{word-spacing:5.400000px;}
.ws1a{word-spacing:5.460000px;}
.ws183{word-spacing:5.580000px;}
.ws1c{word-spacing:5.640000px;}
.wsa0{word-spacing:5.700000px;}
.ws50{word-spacing:5.760000px;}
.ws94{word-spacing:5.820000px;}
.wsd5{word-spacing:5.865000px;}
.ws119{word-spacing:5.880000px;}
.ws159{word-spacing:5.916000px;}
.wsf7{word-spacing:5.940000px;}
.ws165{word-spacing:5.967000px;}
.ws81{word-spacing:6.000000px;}
.ws16c{word-spacing:6.018000px;}
.wse8{word-spacing:6.060000px;}
.ws95{word-spacing:6.120000px;}
.wse7{word-spacing:6.180000px;}
.ws188{word-spacing:6.273000px;}
.ws117{word-spacing:6.360000px;}
.wsc2{word-spacing:6.420000px;}
.ws17a{word-spacing:6.480000px;}
.ws41{word-spacing:6.540000px;}
.ws147{word-spacing:6.579000px;}
.ws10f{word-spacing:6.600000px;}
.wsd6{word-spacing:6.630000px;}
.wse0{word-spacing:6.660000px;}
.ws76{word-spacing:6.720000px;}
.wse9{word-spacing:6.780000px;}
.ws148{word-spacing:6.834000px;}
.ws30{word-spacing:6.840000px;}
.ws127{word-spacing:6.900000px;}
.wsa3{word-spacing:6.960000px;}
.ws69{word-spacing:6.987000px;}
.ws5{word-spacing:7.008000px;}
.wscc{word-spacing:7.020000px;}
.ws126{word-spacing:7.080000px;}
.ws137{word-spacing:7.089000px;}
.ws7c{word-spacing:7.140000px;}
.wsc6{word-spacing:7.200000px;}
.ws64{word-spacing:7.260000px;}
.wsd7{word-spacing:7.293000px;}
.wsf1{word-spacing:7.320000px;}
.ws9b{word-spacing:7.380000px;}
.ws53{word-spacing:7.440000px;}
.ws11{word-spacing:7.488000px;}
.ws128{word-spacing:7.500000px;}
.ws7f{word-spacing:7.560000px;}
.wsff{word-spacing:7.650000px;}
.wsc5{word-spacing:7.680000px;}
.ws131{word-spacing:7.740000px;}
.wsad{word-spacing:7.800000px;}
.wsd2{word-spacing:7.854000px;}
.ws22{word-spacing:7.860000px;}
.ws176{word-spacing:7.905000px;}
.wsb3{word-spacing:7.920000px;}
.ws10d{word-spacing:7.980000px;}
.ws139{word-spacing:8.007000px;}
.wsb6{word-spacing:8.040000px;}
.ws66{word-spacing:8.100000px;}
.wse1{word-spacing:8.160000px;}
.ws82{word-spacing:8.220000px;}
.ws146{word-spacing:8.262000px;}
.ws166{word-spacing:8.280000px;}
.ws80{word-spacing:8.340000px;}
.ws31{word-spacing:8.400000px;}
.ws7e{word-spacing:8.460000px;}
.ws154{word-spacing:8.517000px;}
.ws3d{word-spacing:8.520000px;}
.wsef{word-spacing:8.640000px;}
.ws180{word-spacing:8.700000px;}
.wsb4{word-spacing:8.820000px;}
.ws140{word-spacing:8.880000px;}
.ws3b{word-spacing:8.940000px;}
.ws141{word-spacing:9.000000px;}
.ws10b{word-spacing:9.060000px;}
.ws11f{word-spacing:9.180000px;}
.ws156{word-spacing:9.231000px;}
.ws23{word-spacing:9.240000px;}
.ws175{word-spacing:9.300000px;}
.ws12f{word-spacing:9.360000px;}
.ws15d{word-spacing:9.420000px;}
.ws5e{word-spacing:9.480000px;}
.ws57{word-spacing:9.540000px;}
.ws101{word-spacing:9.600000px;}
.ws78{word-spacing:9.660000px;}
.ws5c{word-spacing:9.720000px;}
.wseb{word-spacing:9.780000px;}
.wsc7{word-spacing:9.840000px;}
.ws13b{word-spacing:9.900000px;}
.ws65{word-spacing:9.960000px;}
.ws59{word-spacing:10.020000px;}
.ws15e{word-spacing:10.080000px;}
.wsb7{word-spacing:10.140000px;}
.ws16b{word-spacing:10.200000px;}
.ws5b{word-spacing:10.440000px;}
.ws189{word-spacing:10.620000px;}
.ws158{word-spacing:10.659000px;}
.ws17b{word-spacing:10.680000px;}
.ws55{word-spacing:10.740000px;}
.ws16e{word-spacing:10.800000px;}
.ws11a{word-spacing:10.860000px;}
.wsfb{word-spacing:11.040000px;}
.wsf9{word-spacing:11.220000px;}
.ws18a{word-spacing:11.400000px;}
.ws3a{word-spacing:11.460000px;}
.ws12d{word-spacing:11.580000px;}
.ws13a{word-spacing:11.679000px;}
.ws16f{word-spacing:11.820000px;}
.wsd1{word-spacing:11.832000px;}
.ws169{word-spacing:11.880000px;}
.ws149{word-spacing:11.934000px;}
.ws161{word-spacing:11.940000px;}
.ws40{word-spacing:12.000000px;}
.ws85{word-spacing:12.060000px;}
.ws18e{word-spacing:12.420000px;}
.ws184{word-spacing:12.495000px;}
.ws61{word-spacing:12.540000px;}
.ws109{word-spacing:12.600000px;}
.ws113{word-spacing:12.660000px;}
.ws135{word-spacing:12.720000px;}
.ws5a{word-spacing:12.840000px;}
.ws167{word-spacing:12.900000px;}
.ws18b{word-spacing:12.960000px;}
.wsdd{word-spacing:13.080000px;}
.ws18d{word-spacing:13.140000px;}
.ws3c{word-spacing:13.200000px;}
.ws144{word-spacing:13.260000px;}
.ws18{word-spacing:13.488000px;}
.ws177{word-spacing:13.668000px;}
.wsfc{word-spacing:13.920000px;}
.ws48{word-spacing:14.040000px;}
.ws1b{word-spacing:14.880000px;}
.wsa4{word-spacing:14.940000px;}
.ws16d{word-spacing:15.000000px;}
.wsae{word-spacing:15.120000px;}
.ws8a{word-spacing:15.240000px;}
.wsb5{word-spacing:15.660000px;}
.ws106{word-spacing:15.720000px;}
.ws162{word-spacing:15.900000px;}
.ws142{word-spacing:15.960000px;}
.wsa6{word-spacing:16.020000px;}
.ws49{word-spacing:16.080000px;}
.ws112{word-spacing:16.140000px;}
.ws11b{word-spacing:16.680000px;}
.ws107{word-spacing:16.740000px;}
.ws124{word-spacing:17.580000px;}
.ws120{word-spacing:17.700000px;}
.ws172{word-spacing:18.360000px;}
.ws10c{word-spacing:18.480000px;}
.ws108{word-spacing:18.660000px;}
.wscd{word-spacing:18.780000px;}
.ws42{word-spacing:19.320000px;}
.ws190{word-spacing:20.880000px;}
.ws182{word-spacing:21.120000px;}
.ws3e{word-spacing:21.420000px;}
.ws13e{word-spacing:21.600000px;}
.ws102{word-spacing:24.240000px;}
.ws63{word-spacing:25.440000px;}
.ws143{word-spacing:25.740000px;}
.ws3f{word-spacing:25.980000px;}
.ws116{word-spacing:26.220000px;}
.ws18c{word-spacing:27.360000px;}
.ws174{word-spacing:27.480000px;}
._a{margin-left:-43.711800px;}
._16{margin-left:-24.780000px;}
._9{margin-left:-17.372400px;}
._15{margin-left:-13.860000px;}
._2{margin-left:-7.507200px;}
._1{margin-left:-6.224400px;}
._5{margin-left:-4.930200px;}
._11{margin-left:-3.652500px;}
._7{margin-left:-2.303853px;}
._e{margin-left:-1.212000px;}
._d{width:1.062000px;}
._13{width:2.892600px;}
._4{width:4.290600px;}
._c{width:5.815800px;}
._3{width:6.982800px;}
._14{width:8.074800px;}
._17{width:9.712800px;}
._b{width:11.260200px;}
._f{width:13.977000px;}
._10{width:34.628520px;}
._12{width:36.822000px;}
._6{width:357.919800px;}
._0{width:511.812000px;}
._8{width:1211.364000px;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:29.580000px;}
.fs6{font-size:34.800000px;}
.fs9{font-size:35.700000px;}
.fsa{font-size:39.000000px;}
.fs5{font-size:39.390000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:48.480000px;}
.fs8{font-size:51.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.035400px;}
.y3{bottom:63.724650px;}
.y2{bottom:76.324650px;}
.y93{bottom:108.425250px;}
.y237{bottom:108.425400px;}
.y167{bottom:108.460500px;}
.y5d{bottom:108.460650px;}
.y238{bottom:108.460800px;}
.yea{bottom:108.460950px;}
.y2d{bottom:109.751400px;}
.y92{bottom:112.668150px;}
.y236{bottom:112.668300px;}
.y5c{bottom:123.725250px;}
.y257{bottom:123.725550px;}
.y5b{bottom:123.760650px;}
.y91{bottom:123.760800px;}
.ye9{bottom:123.760950px;}
.y1a5{bottom:126.464550px;}
.y166{bottom:126.776850px;}
.y2c{bottom:127.751400px;}
.y256{bottom:127.968450px;}
.ybd{bottom:139.025250px;}
.y8f{bottom:139.025400px;}
.ye7{bottom:139.025550px;}
.y254{bottom:139.025700px;}
.y5a{bottom:139.060650px;}
.y90{bottom:139.060800px;}
.ye8{bottom:139.060950px;}
.y255{bottom:139.061100px;}
.ybc{bottom:143.268150px;}
.y8e{bottom:143.268300px;}
.ye6{bottom:143.268450px;}
.y253{bottom:143.268600px;}
.y1a4{bottom:144.468600px;}
.y165{bottom:145.093050px;}
.y2b{bottom:145.751400px;}
.y58{bottom:154.325250px;}
.y17a{bottom:154.325550px;}
.y59{bottom:154.360650px;}
.ybb{bottom:154.360800px;}
.y8d{bottom:154.360950px;}
.ye5{bottom:154.361100px;}
.y252{bottom:154.361250px;}
.y57{bottom:158.568150px;}
.y22b{bottom:158.568450px;}
.y1a3{bottom:162.472650px;}
.y164{bottom:163.409250px;}
.y2a{bottom:163.751400px;}
.yb9{bottom:169.625400px;}
.y229{bottom:169.625700px;}
.y250{bottom:169.625850px;}
.y13e{bottom:169.660650px;}
.yba{bottom:169.660800px;}
.y8c{bottom:169.660950px;}
.y22a{bottom:169.661100px;}
.y251{bottom:169.661250px;}
.yb8{bottom:173.868300px;}
.ye4{bottom:173.868450px;}
.y228{bottom:173.868600px;}
.y24f{bottom:173.868750px;}
.y1a2{bottom:180.476700px;}
.y1cc{bottom:181.360650px;}
.y163{bottom:181.725450px;}
.y29{bottom:181.751400px;}
.y111{bottom:184.925400px;}
.y8a{bottom:184.925550px;}
.y13d{bottom:184.960650px;}
.y110{bottom:184.960800px;}
.y8b{bottom:184.960950px;}
.y1f2{bottom:184.961100px;}
.y89{bottom:189.168450px;}
.y56{bottom:196.660650px;}
.y1a1{bottom:198.480600px;}
.y28{bottom:199.751400px;}
.y1cb{bottom:199.803750px;}
.y26c{bottom:200.041800px;}
.y21b{bottom:200.225250px;}
.y10e{bottom:200.225400px;}
.y1f0{bottom:200.225550px;}
.y13c{bottom:200.260650px;}
.y10f{bottom:200.260800px;}
.y1f1{bottom:200.260950px;}
.y88{bottom:200.261100px;}
.y21a{bottom:204.468150px;}
.y10d{bottom:204.468300px;}
.y1ef{bottom:204.468450px;}
.yb7{bottom:211.960800px;}
.y179{bottom:211.960950px;}
.ye3{bottom:211.961100px;}
.y24e{bottom:211.961250px;}
.y55{bottom:214.711350px;}
.y87{bottom:215.525700px;}
.y13b{bottom:215.560650px;}
.y219{bottom:215.560800px;}
.y86{bottom:215.561100px;}
.y1a0{bottom:216.484650px;}
.y27{bottom:217.751400px;}
.y1ca{bottom:218.246700px;}
.y26b{bottom:218.358000px;}
.y162{bottom:221.266200px;}
.y161{bottom:221.301600px;}
.y178{bottom:230.083950px;}
.ye2{bottom:230.084100px;}
.y227{bottom:230.084250px;}
.yb6{bottom:230.118750px;}
.y13a{bottom:230.825250px;}
.y218{bottom:230.825400px;}
.y84{bottom:230.825700px;}
.y139{bottom:230.860650px;}
.y217{bottom:230.860800px;}
.y85{bottom:230.861100px;}
.y54{bottom:232.762050px;}
.y19f{bottom:234.488700px;}
.y83{bottom:235.068600px;}
.y26{bottom:235.751400px;}
.y26a{bottom:236.674200px;}
.y1c9{bottom:236.689650px;}
.y10c{bottom:242.560800px;}
.y1ee{bottom:242.560950px;}
.y138{bottom:246.160650px;}
.y216{bottom:246.160800px;}
.ye1{bottom:248.207100px;}
.y226{bottom:248.207250px;}
.y24d{bottom:248.207400px;}
.y53{bottom:250.812750px;}
.y19e{bottom:252.492750px;}
.y25{bottom:253.751400px;}
.y269{bottom:254.990400px;}
.y1c8{bottom:255.132600px;}
.y1ed{bottom:260.698950px;}
.y214{bottom:260.840700px;}
.y249{bottom:260.840850px;}
.y136{bottom:261.425250px;}
.y137{bottom:261.460650px;}
.y215{bottom:261.460800px;}
.y10b{bottom:261.916050px;}
.y135{bottom:265.668150px;}
.y177{bottom:266.330100px;}
.ye0{bottom:266.330250px;}
.y225{bottom:266.330400px;}
.yb5{bottom:267.375150px;}
.yb4{bottom:267.410550px;}
.y52{bottom:268.863450px;}
.y19d{bottom:270.496800px;}
.y24{bottom:271.751400px;}
.y82{bottom:273.161100px;}
.y268{bottom:273.306750px;}
.y1c7{bottom:273.575700px;}
.y134{bottom:276.760800px;}
.y160{bottom:277.885500px;}
.y1ec{bottom:278.836800px;}
.y213{bottom:279.120750px;}
.y10a{bottom:281.271300px;}
.ydf{bottom:284.453250px;}
.y224{bottom:284.453400px;}
.y24c{bottom:284.453550px;}
.y51{bottom:286.914150px;}
.y19c{bottom:288.500850px;}
.y23{bottom:289.751400px;}
.y81{bottom:291.616350px;}
.y267{bottom:291.622950px;}
.y1c6{bottom:292.018650px;}
.y132{bottom:292.025400px;}
.y133{bottom:292.060800px;}
.y15f{bottom:296.201700px;}
.y131{bottom:296.268300px;}
.y1eb{bottom:296.974650px;}
.y212{bottom:297.400650px;}
.y248{bottom:297.400800px;}
.y109{bottom:300.626400px;}
.y176{bottom:302.576250px;}
.yde{bottom:302.576400px;}
.y223{bottom:302.576550px;}
.y50{bottom:304.964850px;}
.y19b{bottom:306.504900px;}
.y22{bottom:307.751400px;}
.y266{bottom:309.939150px;}
.y80{bottom:310.071600px;}
.y1c5{bottom:310.461750px;}
.y15e{bottom:314.518050px;}
.y1ea{bottom:315.112500px;}
.y211{bottom:315.680550px;}
.yb3{bottom:319.584150px;}
.y108{bottom:319.981650px;}
.y175{bottom:320.699400px;}
.ydd{bottom:320.699550px;}
.y24b{bottom:320.699700px;}
.y4f{bottom:323.015550px;}
.y19a{bottom:324.508800px;}
.y265{bottom:328.255500px;}
.y7f{bottom:328.526700px;}
.y1c4{bottom:328.904700px;}
.y15d{bottom:332.834250px;}
.y1e9{bottom:333.250350px;}
.y210{bottom:333.960450px;}
.y247{bottom:333.960600px;}
.y130{bottom:334.360800px;}
.yb2{bottom:337.742100px;}
.y174{bottom:338.822400px;}
.ydc{bottom:338.822550px;}
.y222{bottom:338.822700px;}
.y107{bottom:339.336900px;}
.y4e{bottom:341.066250px;}
.y199{bottom:342.512850px;}
.y21{bottom:344.849850px;}
.y264{bottom:346.571700px;}
.y7e{bottom:346.981950px;}
.y1c3{bottom:347.347650px;}
.y15c{bottom:351.150600px;}
.y1e8{bottom:351.388200px;}
.y20f{bottom:352.240350px;}
.y246{bottom:352.240500px;}
.y12f{bottom:352.627800px;}
.yb1{bottom:355.900050px;}
.y173{bottom:356.945550px;}
.ydb{bottom:356.945700px;}
.y106{bottom:358.692000px;}
.y4d{bottom:359.116950px;}
.y198{bottom:360.516900px;}
.y263{bottom:364.887900px;}
.y7d{bottom:365.437050px;}
.y1c2{bottom:365.790750px;}
.y15b{bottom:369.466800px;}
.y20e{bottom:370.520250px;}
.y245{bottom:370.520400px;}
.y12e{bottom:370.894800px;}
.yb0{bottom:374.058000px;}
.y172{bottom:375.068550px;}
.yda{bottom:375.068700px;}
.y235{bottom:375.068850px;}
.y4c{bottom:377.167650px;}
.y105{bottom:378.047250px;}
.y197{bottom:378.520950px;}
.y262{bottom:383.204100px;}
.y7c{bottom:383.892300px;}
.y1c1{bottom:384.233700px;}
.y15a{bottom:387.783000px;}
.y20d{bottom:388.800150px;}
.y244{bottom:388.800300px;}
.y12d{bottom:389.161800px;}
.y1e7{bottom:390.750450px;}
.y1e6{bottom:390.785850px;}
.yaf{bottom:392.215950px;}
.yd9{bottom:393.191700px;}
.y221{bottom:393.191850px;}
.y4b{bottom:395.218350px;}
.y196{bottom:396.525000px;}
.y20{bottom:396.901050px;}
.y104{bottom:397.402500px;}
.y261{bottom:401.520300px;}
.y7b{bottom:402.347550px;}
.y1c0{bottom:402.676650px;}
.y159{bottom:406.099200px;}
.y20c{bottom:407.080050px;}
.y243{bottom:407.080200px;}
.y12c{bottom:407.428800px;}
.yae{bottom:410.373900px;}
.y171{bottom:411.314700px;}
.yd8{bottom:411.314850px;}
.y234{bottom:411.315000px;}
.y1f{bottom:412.201050px;}
.y4a{bottom:413.269050px;}
.y195{bottom:414.529050px;}
.y103{bottom:416.757600px;}
.y260{bottom:419.836650px;}
.y7a{bottom:420.802650px;}
.y1bf{bottom:421.119750px;}
.y158{bottom:424.415400px;}
.y20b{bottom:425.359950px;}
.y242{bottom:425.360100px;}
.y12b{bottom:425.695800px;}
.yad{bottom:428.531700px;}
.y170{bottom:429.437850px;}
.yd7{bottom:429.438000px;}
.y49{bottom:431.319750px;}
.y1e{bottom:431.752950px;}
.y194{bottom:432.533100px;}
.y102{bottom:436.112850px;}
.y25f{bottom:438.152850px;}
.y79{bottom:439.257900px;}
.y1be{bottom:439.562700px;}
.y157{bottom:442.731750px;}
.y20a{bottom:443.639850px;}
.y241{bottom:443.640000px;}
.y12a{bottom:443.962800px;}
.yac{bottom:446.689650px;}
.y1d{bottom:447.052950px;}
.y1e5{bottom:447.191400px;}
.y16f{bottom:447.560850px;}
.yd6{bottom:447.561000px;}
.y233{bottom:447.561150px;}
.y48{bottom:449.370450px;}
.y193{bottom:450.537000px;}
.y101{bottom:455.468100px;}
.y78{bottom:457.713000px;}
.y1bd{bottom:458.005650px;}
.y156{bottom:461.047950px;}
.y209{bottom:461.919750px;}
.y240{bottom:461.919900px;}
.y129{bottom:462.229800px;}
.y1c{bottom:462.352950px;}
.yab{bottom:464.847600px;}
.y1e4{bottom:465.329400px;}
.y16e{bottom:465.684000px;}
.yd5{bottom:465.684150px;}
.y47{bottom:467.421150px;}
.y192{bottom:468.541050px;}
.y100{bottom:474.823200px;}
.y77{bottom:476.168250px;}
.y1bc{bottom:476.448750px;}
.y1b{bottom:477.652950px;}
.y25e{bottom:477.693600px;}
.y155{bottom:479.364150px;}
.y208{bottom:480.199800px;}
.y128{bottom:480.496800px;}
.yaa{bottom:483.005550px;}
.y1e3{bottom:483.467100px;}
.y16d{bottom:483.807000px;}
.yd4{bottom:483.807150px;}
.y232{bottom:483.807300px;}
.y46{bottom:485.471850px;}
.y191{bottom:486.545100px;}
.y1a{bottom:492.952950px;}
.yff{bottom:494.178450px;}
.y76{bottom:494.623500px;}
.y1bb{bottom:494.891700px;}
.y154{bottom:497.680500px;}
.y207{bottom:498.479550px;}
.y23f{bottom:498.479700px;}
.y127{bottom:498.763800px;}
.ya9{bottom:501.163500px;}
.y1e2{bottom:501.605100px;}
.y16c{bottom:501.930150px;}
.yd3{bottom:501.930300px;}
.y45{bottom:503.522550px;}
.y190{bottom:504.549150px;}
.y19{bottom:508.252950px;}
.y75{bottom:513.078600px;}
.y1ba{bottom:513.334650px;}
.yfe{bottom:513.533700px;}
.y153{bottom:515.996700px;}
.y206{bottom:516.759600px;}
.y126{bottom:517.030800px;}
.ya8{bottom:519.321300px;}
.y1e1{bottom:519.742800px;}
.yd2{bottom:520.053300px;}
.y231{bottom:520.053450px;}
.y44{bottom:521.573100px;}
.y18f{bottom:522.553200px;}
.y18{bottom:523.552950px;}
.y74{bottom:531.533850px;}
.y1b9{bottom:531.777750px;}
.yfd{bottom:532.888950px;}
.y152{bottom:534.312900px;}
.y205{bottom:535.039500px;}
.y125{bottom:535.297800px;}
.ya7{bottom:537.479250px;}
.y1e0{bottom:537.880800px;}
.y16b{bottom:538.176300px;}
.yd1{bottom:538.176450px;}
.y17{bottom:538.852950px;}
.y43{bottom:539.623800px;}
.y18e{bottom:540.557100px;}
.y73{bottom:549.988950px;}
.y1b8{bottom:550.220700px;}
.yfc{bottom:552.244050px;}
.y151{bottom:552.629100px;}
.y204{bottom:553.319400px;}
.y124{bottom:553.564800px;}
.y16{bottom:554.152950px;}
.ya6{bottom:555.637200px;}
.y1df{bottom:556.018650px;}
.yd0{bottom:556.299450px;}
.y230{bottom:556.299600px;}
.y42{bottom:557.674500px;}
.y18d{bottom:558.561150px;}
.y72{bottom:568.408800px;}
.y71{bottom:568.444200px;}
.y1b7{bottom:568.663650px;}
.y15{bottom:569.452950px;}
.y150{bottom:570.945450px;}
.yfb{bottom:571.599300px;}
.y123{bottom:571.831800px;}
.ya5{bottom:573.795150px;}
.y1de{bottom:574.156500px;}
.ycf{bottom:574.422450px;}
.y22f{bottom:574.422600px;}
.y41{bottom:575.725200px;}
.y18c{bottom:576.565200px;}
.y70{bottom:586.899450px;}
.y1b6{bottom:587.106750px;}
.y14f{bottom:589.261650px;}
.y203{bottom:589.879200px;}
.y122{bottom:590.098800px;}
.yfa{bottom:590.954400px;}
.ya4{bottom:591.953100px;}
.y1dd{bottom:592.294350px;}
.y14{bottom:592.402350px;}
.yce{bottom:592.545600px;}
.y40{bottom:593.775900px;}
.y18b{bottom:594.569250px;}
.y6f{bottom:605.354550px;}
.y1b5{bottom:605.549700px;}
.y14e{bottom:607.577850px;}
.y202{bottom:608.159100px;}
.y121{bottom:608.365800px;}
.ya3{bottom:610.110900px;}
.yf9{bottom:610.309650px;}
.y1dc{bottom:610.432200px;}
.y16a{bottom:610.668600px;}
.ycd{bottom:610.668750px;}
.y3f{bottom:611.826600px;}
.y18a{bottom:612.573300px;}
.y27c{bottom:613.225950px;}
.y6e{bottom:623.809800px;}
.y1b4{bottom:623.992800px;}
.y14d{bottom:625.894050px;}
.y201{bottom:626.439000px;}
.y23e{bottom:626.439150px;}
.y120{bottom:626.632800px;}
.ya2{bottom:628.268850px;}
.y1db{bottom:628.570050px;}
.ycc{bottom:628.791750px;}
.y22e{bottom:628.791900px;}
.yf8{bottom:629.664900px;}
.y3e{bottom:629.877300px;}
.y189{bottom:630.577350px;}
.y13{bottom:631.662150px;}
.y27b{bottom:641.281800px;}
.y6d{bottom:642.265050px;}
.y1b3{bottom:642.435750px;}
.y14c{bottom:644.210400px;}
.y200{bottom:644.718900px;}
.y23d{bottom:644.719050px;}
.y11f{bottom:644.899800px;}
.ya1{bottom:646.426800px;}
.y1da{bottom:646.707900px;}
.y169{bottom:646.914750px;}
.ycb{bottom:646.914900px;}
.y12{bottom:646.962150px;}
.y3d{bottom:647.928000px;}
.y188{bottom:648.581400px;}
.yf7{bottom:649.020150px;}
.y27a{bottom:653.846400px;}
.y279{bottom:653.881800px;}
.y6c{bottom:660.720150px;}
.y1b2{bottom:660.878700px;}
.y14b{bottom:662.526600px;}
.y1ff{bottom:662.998800px;}
.y23c{bottom:662.998950px;}
.y11e{bottom:663.166800px;}
.ya0{bottom:664.584750px;}
.y1d9{bottom:664.845750px;}
.yca{bottom:665.037900px;}
.y22d{bottom:665.038050px;}
.y3c{bottom:665.978700px;}
.y11{bottom:666.514050px;}
.y187{bottom:666.585300px;}
.yf6{bottom:668.375250px;}
.y6b{bottom:679.175400px;}
.y1b1{bottom:679.321650px;}
.y14a{bottom:680.842800px;}
.y1fe{bottom:681.278700px;}
.y23b{bottom:681.278850px;}
.y11d{bottom:681.433800px;}
.y10{bottom:681.814050px;}
.y9f{bottom:682.742700px;}
.y1d8{bottom:682.983600px;}
.y220{bottom:683.160900px;}
.yc9{bottom:683.161050px;}
.y3b{bottom:684.029400px;}
.y186{bottom:684.589350px;}
.y278{bottom:684.637800px;}
.yf5{bottom:687.730500px;}
.yf{bottom:697.114050px;}
.y6a{bottom:697.630650px;}
.y1b0{bottom:697.764750px;}
.y149{bottom:699.159150px;}
.y1fd{bottom:699.558600px;}
.y23a{bottom:699.558750px;}
.y11c{bottom:699.700800px;}
.y9e{bottom:700.900650px;}
.y1d7{bottom:701.121450px;}
.yc8{bottom:701.284050px;}
.y3a{bottom:702.080100px;}
.y185{bottom:702.593400px;}
.y277{bottom:702.637800px;}
.yf4{bottom:707.085750px;}
.ye{bottom:712.414050px;}
.y68{bottom:716.050350px;}
.y69{bottom:716.085750px;}
.y1af{bottom:716.207700px;}
.y148{bottom:717.475350px;}
.y1fc{bottom:717.838650px;}
.y11b{bottom:717.967800px;}
.y9d{bottom:719.058600px;}
.y1d6{bottom:719.259300px;}
.y168{bottom:719.407050px;}
.yc7{bottom:719.407200px;}
.y39{bottom:720.130800px;}
.y184{bottom:720.597450px;}
.y276{bottom:720.637800px;}
.yf3{bottom:726.440850px;}
.yd{bottom:727.714050px;}
.y67{bottom:734.541000px;}
.y1ae{bottom:734.650650px;}
.y147{bottom:735.791550px;}
.y1fb{bottom:736.118550px;}
.y11a{bottom:736.234800px;}
.y9c{bottom:737.216400px;}
.y1d5{bottom:737.397150px;}
.y21f{bottom:737.530050px;}
.yc6{bottom:737.530200px;}
.y38{bottom:738.181500px;}
.y183{bottom:738.601500px;}
.y275{bottom:738.637800px;}
.yc{bottom:743.014050px;}
.yf2{bottom:745.796100px;}
.y66{bottom:752.996250px;}
.y1ad{bottom:753.093750px;}
.y146{bottom:754.107900px;}
.y1fa{bottom:754.398450px;}
.y119{bottom:754.501650px;}
.y9b{bottom:755.374350px;}
.y1d4{bottom:755.535000px;}
.yc5{bottom:755.653200px;}
.y37{bottom:756.232200px;}
.y182{bottom:756.605550px;}
.y274{bottom:756.637800px;}
.yb{bottom:758.313900px;}
.yf1{bottom:765.151350px;}
.y65{bottom:771.451350px;}
.y1ac{bottom:771.536700px;}
.y145{bottom:772.424100px;}
.y1f9{bottom:772.678350px;}
.y118{bottom:772.768800px;}
.y9a{bottom:773.532300px;}
.ya{bottom:773.614050px;}
.y1d3{bottom:773.672850px;}
.y21e{bottom:773.776200px;}
.yc4{bottom:773.776350px;}
.y36{bottom:774.282900px;}
.y181{bottom:774.609600px;}
.y273{bottom:774.637800px;}
.yf0{bottom:784.506450px;}
.y9{bottom:788.914050px;}
.y64{bottom:789.906600px;}
.y1ab{bottom:789.979650px;}
.y144{bottom:790.740300px;}
.y25d{bottom:790.740450px;}
.y1f8{bottom:790.958250px;}
.y117{bottom:791.035800px;}
.y99{bottom:791.690100px;}
.y1d2{bottom:791.810700px;}
.yc3{bottom:791.899350px;}
.y24a{bottom:791.899500px;}
.y35{bottom:792.333600px;}
.y180{bottom:792.613500px;}
.y272{bottom:792.637800px;}
.yef{bottom:803.861700px;}
.y8{bottom:804.214050px;}
.y63{bottom:808.361850px;}
.y1aa{bottom:808.422750px;}
.y143{bottom:809.056500px;}
.y25c{bottom:809.056650px;}
.y1f7{bottom:809.238150px;}
.y116{bottom:809.302800px;}
.y98{bottom:809.848050px;}
.y1d1{bottom:809.948550px;}
.yc2{bottom:810.022350px;}
.y22c{bottom:810.022500px;}
.y34{bottom:810.384150px;}
.y17f{bottom:810.617550px;}
.y271{bottom:810.637800px;}
.y7{bottom:819.513900px;}
.yee{bottom:823.216950px;}
.y62{bottom:826.816950px;}
.y1a9{bottom:826.865700px;}
.y142{bottom:827.372700px;}
.y25b{bottom:827.372850px;}
.y1f6{bottom:827.518050px;}
.y239{bottom:827.518200px;}
.y115{bottom:827.569800px;}
.y97{bottom:828.006000px;}
.y1d0{bottom:828.086400px;}
.yc1{bottom:828.145500px;}
.y33{bottom:828.435000px;}
.y17e{bottom:828.621600px;}
.y270{bottom:828.637800px;}
.yed{bottom:842.572200px;}
.y61{bottom:845.272200px;}
.y1a8{bottom:845.308800px;}
.y141{bottom:845.688900px;}
.y25a{bottom:845.689050px;}
.y1f5{bottom:845.797950px;}
.y114{bottom:845.836800px;}
.y96{bottom:846.163950px;}
.y1cf{bottom:846.224250px;}
.y21d{bottom:846.268500px;}
.yc0{bottom:846.268650px;}
.y32{bottom:846.485700px;}
.y17d{bottom:846.625650px;}
.y26f{bottom:846.637800px;}
.yec{bottom:861.927300px;}
.y60{bottom:863.727450px;}
.y1a7{bottom:863.751750px;}
.y140{bottom:864.005250px;}
.y259{bottom:864.005400px;}
.y1f4{bottom:864.077850px;}
.y113{bottom:864.103800px;}
.y95{bottom:864.321900px;}
.y1ce{bottom:864.362100px;}
.ybf{bottom:864.391650px;}
.y31{bottom:864.536400px;}
.y17c{bottom:864.629700px;}
.y26e{bottom:864.637800px;}
.y6{bottom:878.018250px;}
.yeb{bottom:881.282550px;}
.y5f{bottom:882.182550px;}
.y1a6{bottom:882.194850px;}
.y13f{bottom:882.321450px;}
.y258{bottom:882.321600px;}
.y1f3{bottom:882.357900px;}
.y112{bottom:882.370800px;}
.y94{bottom:882.479850px;}
.y1cd{bottom:882.499950px;}
.y21c{bottom:882.514650px;}
.ybe{bottom:882.514800px;}
.y30{bottom:882.586950px;}
.y17b{bottom:882.633750px;}
.y26d{bottom:882.637800px;}
.y5{bottom:893.018250px;}
.y2f{bottom:900.637800px;}
.y4{bottom:932.278050px;}
.y2e{bottom:939.203550px;}
.y5e{bottom:939.297000px;}
.ha{height:29.172000px;}
.he{height:29.172600px;}
.hb{height:32.201400px;}
.hd{height:37.884000px;}
.h3{height:38.094000px;}
.h6{height:43.296000px;}
.h7{height:43.536000px;}
.h9{height:43.728960px;}
.hc{height:46.002000px;}
.h5{height:54.120000px;}
.h8{height:54.600000px;}
.h4{height:77.280000px;}
.h2{height:1020.472500px;}
.h0{height:1020.543900px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.906400px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.822850px;}
.x1{left:97.795200px;}
.x8{left:102.082650px;}
.x35{left:105.828000px;}
.x1b{left:108.297450px;}
.x2{left:110.556750px;}
.xf{left:113.769600px;}
.x6{left:119.090550px;}
.x3e{left:125.305350px;}
.x4c{left:131.754150px;}
.x36{left:140.902350px;}
.x54{left:148.060650px;}
.x42{left:149.947800px;}
.x1e{left:153.234900px;}
.x50{left:155.544450px;}
.x1c{left:156.837600px;}
.x27{left:158.594100px;}
.x4b{left:159.627450px;}
.x38{left:165.791850px;}
.x19{left:168.727200px;}
.x12{left:170.709450px;}
.x4a{left:172.342500px;}
.x2d{left:173.422800px;}
.x3f{left:177.657150px;}
.x45{left:180.437400px;}
.x37{left:185.916750px;}
.x1a{left:187.272750px;}
.x32{left:190.338150px;}
.x13{left:193.217550px;}
.x53{left:196.736100px;}
.x1d{left:200.508450px;}
.x39{left:201.880650px;}
.x1f{left:203.052600px;}
.x2e{left:208.497150px;}
.x28{left:209.546100px;}
.x40{left:213.158700px;}
.x18{left:215.108100px;}
.x44{left:216.802650px;}
.x4f{left:218.842350px;}
.x2f{left:221.772900px;}
.x56{left:230.279100px;}
.x41{left:232.364700px;}
.x5{left:238.167750px;}
.x20{left:247.767000px;}
.x30{left:254.544450px;}
.x21{left:257.453700px;}
.x3{left:269.371350px;}
.x48{left:281.066400px;}
.x3a{left:283.720050px;}
.x31{left:287.200800px;}
.x22{left:292.528050px;}
.x33{left:296.967300px;}
.x3b{left:298.793850px;}
.x4{left:302.391750px;}
.x23{left:304.193100px;}
.x49{left:305.575500px;}
.x51{left:308.329350px;}
.x10{left:311.502900px;}
.x34{left:318.824550px;}
.x11{left:327.477150px;}
.x52{left:328.855950px;}
.x24{left:336.964800px;}
.x3c{left:353.504550px;}
.x9{left:371.676150px;}
.xa{left:406.750500px;}
.xb{left:419.292150px;}
.xd{left:422.506050px;}
.x29{left:430.042950px;}
.x43{left:437.921700px;}
.xc{left:452.063850px;}
.x4d{left:456.510450px;}
.x3d{left:460.558050px;}
.x2a{left:462.645000px;}
.xe{left:464.465250px;}
.x57{left:471.303300px;}
.x2b{left:474.238800px;}
.x4e{left:481.660350px;}
.x2c{left:487.331250px;}
.x25{left:513.468000px;}
.x16{left:517.101450px;}
.x55{left:528.275400px;}
.x17{left:542.251350px;}
.x46{left:544.469700px;}
.x26{left:557.136600px;}
.x14{left:560.139150px;}
.x47{left:566.326800px;}
.x15{left:602.487000px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls1{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.154667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000107pt;}
.ls2{letter-spacing:0.533333pt;}
.ls8{letter-spacing:1.082667pt;}
.ls7{letter-spacing:4.741867pt;}
.ls9{letter-spacing:5.354133pt;}
.lsa{letter-spacing:6.372800pt;}
.ls3{letter-spacing:32.730667pt;}
.ls5{letter-spacing:311.292267pt;}
.ls4{letter-spacing:358.738133pt;}
.ws8e{word-spacing:-53.333333pt;}
.ws0{word-spacing:-22.101333pt;}
.ws26{word-spacing:-15.360000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws3{word-spacing:-14.560000pt;}
.ws28{word-spacing:-13.333333pt;}
.ws14b{word-spacing:-13.066667pt;}
.ws2a{word-spacing:-12.602667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws14c{word-spacing:-11.333333pt;}
.ws6b{word-spacing:-10.378667pt;}
.wsce{word-spacing:-8.853333pt;}
.ws6c{word-spacing:-8.821867pt;}
.ws27{word-spacing:-8.599467pt;}
.ws14a{word-spacing:-8.444800pt;}
.ws9f{word-spacing:-7.573333pt;}
.ws29{word-spacing:-7.309547pt;}
.ws110{word-spacing:-7.200000pt;}
.wsb8{word-spacing:-7.146667pt;}
.ws12a{word-spacing:-6.933333pt;}
.ws56{word-spacing:-5.920000pt;}
.ws12e{word-spacing:-5.386667pt;}
.ws77{word-spacing:-5.333333pt;}
.ws171{word-spacing:-5.280000pt;}
.ws115{word-spacing:-5.226667pt;}
.wsdc{word-spacing:-4.906667pt;}
.wsf0{word-spacing:-4.800000pt;}
.ws98{word-spacing:-4.746667pt;}
.ws13c{word-spacing:-4.533333pt;}
.ws90{word-spacing:-4.480000pt;}
.ws153{word-spacing:-4.426667pt;}
.ws10{word-spacing:-4.394667pt;}
.wsc1{word-spacing:-4.320000pt;}
.ws15c{word-spacing:-4.306667pt;}
.ws16a{word-spacing:-4.213333pt;}
.wsc8{word-spacing:-4.160000pt;}
.ws19{word-spacing:-4.053333pt;}
.ws173{word-spacing:-4.000000pt;}
.ws10e{word-spacing:-3.946667pt;}
.ws170{word-spacing:-3.893333pt;}
.ws2d{word-spacing:-3.733333pt;}
.ws125{word-spacing:-3.680000pt;}
.ws104{word-spacing:-3.626667pt;}
.ws123{word-spacing:-3.581333pt;}
.ws150{word-spacing:-3.573333pt;}
.ws164{word-spacing:-3.520000pt;}
.ws160{word-spacing:-3.466667pt;}
.wsed{word-spacing:-3.413333pt;}
.ws87{word-spacing:-3.253333pt;}
.ws136{word-spacing:-3.218667pt;}
.wsbb{word-spacing:-3.200000pt;}
.ws73{word-spacing:-3.146667pt;}
.ws7a{word-spacing:-2.933333pt;}
.wsf6{word-spacing:-2.826667pt;}
.ws9e{word-spacing:-2.773333pt;}
.ws8f{word-spacing:-2.720000pt;}
.wsba{word-spacing:-2.666667pt;}
.ws11d{word-spacing:-2.613333pt;}
.ws163{word-spacing:-2.560000pt;}
.ws138{word-spacing:-2.538667pt;}
.wsdb{word-spacing:-2.506667pt;}
.ws10a{word-spacing:-2.453333pt;}
.ws14f{word-spacing:-2.400000pt;}
.ws152{word-spacing:-2.346667pt;}
.wsd9{word-spacing:-2.312000pt;}
.ws11e{word-spacing:-2.293333pt;}
.wsb9{word-spacing:-2.240000pt;}
.ws114{word-spacing:-2.186667pt;}
.ws14d{word-spacing:-2.133333pt;}
.wsa9{word-spacing:-2.130667pt;}
.wsbc{word-spacing:-2.040000pt;}
.ws121{word-spacing:-2.026667pt;}
.ws70{word-spacing:-1.973333pt;}
.ws4e{word-spacing:-1.949333pt;}
.wsd{word-spacing:-1.920000pt;}
.ws91{word-spacing:-1.813333pt;}
.ws79{word-spacing:-1.760000pt;}
.ws99{word-spacing:-1.706667pt;}
.wsc3{word-spacing:-1.653333pt;}
.ws132{word-spacing:-1.600000pt;}
.ws12b{word-spacing:-1.546667pt;}
.ws2c{word-spacing:-1.493333pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws13f{word-spacing:-1.386667pt;}
.ws122{word-spacing:-1.360000pt;}
.ws45{word-spacing:-1.333333pt;}
.ws68{word-spacing:-1.314667pt;}
.ws35{word-spacing:-1.280000pt;}
.ws36{word-spacing:-1.226667pt;}
.wsa2{word-spacing:-1.173333pt;}
.wsfe{word-spacing:-1.133333pt;}
.wsca{word-spacing:-1.120000pt;}
.ws17e{word-spacing:-1.066667pt;}
.wsa8{word-spacing:-1.042667pt;}
.ws2e{word-spacing:-1.013333pt;}
.ws88{word-spacing:-0.960000pt;}
.ws168{word-spacing:-0.906667pt;}
.wsee{word-spacing:-0.853333pt;}
.ws13d{word-spacing:-0.800000pt;}
.ws2f{word-spacing:-0.746667pt;}
.ws47{word-spacing:-0.693333pt;}
.ws75{word-spacing:-0.640000pt;}
.wsc0{word-spacing:-0.634667pt;}
.ws17d{word-spacing:-0.589333pt;}
.wscf{word-spacing:-0.586667pt;}
.ws12c{word-spacing:-0.533333pt;}
.wsbf{word-spacing:-0.498667pt;}
.ws17c{word-spacing:-0.480000pt;}
.ws129{word-spacing:-0.426667pt;}
.ws118{word-spacing:-0.373333pt;}
.ws6e{word-spacing:-0.320000pt;}
.ws157{word-spacing:-0.317333pt;}
.wse{word-spacing:-0.298667pt;}
.ws9a{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.160000pt;}
.ws130{word-spacing:-0.106667pt;}
.ws6a{word-spacing:-0.090667pt;}
.ws32{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053333pt;}
.wsa7{word-spacing:0.090667pt;}
.ws92{word-spacing:0.106667pt;}
.wsb0{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.266667pt;}
.ws8c{word-spacing:0.272000pt;}
.wsda{word-spacing:0.317333pt;}
.ws60{word-spacing:0.320000pt;}
.ws17f{word-spacing:0.373333pt;}
.wsb{word-spacing:0.426667pt;}
.ws71{word-spacing:0.480000pt;}
.ws8d{word-spacing:0.498667pt;}
.ws33{word-spacing:0.533333pt;}
.ws179{word-spacing:0.589333pt;}
.ws6{word-spacing:0.640000pt;}
.ws111{word-spacing:0.693333pt;}
.wsc9{word-spacing:0.746667pt;}
.wsa1{word-spacing:0.800000pt;}
.ws14{word-spacing:0.853333pt;}
.ws16{word-spacing:0.896000pt;}
.ws86{word-spacing:0.906667pt;}
.ws20{word-spacing:0.960000pt;}
.ws38{word-spacing:1.013333pt;}
.ws4d{word-spacing:1.042667pt;}
.wsde{word-spacing:1.066667pt;}
.ws15f{word-spacing:1.120000pt;}
.wse3{word-spacing:1.173333pt;}
.ws11c{word-spacing:1.226667pt;}
.wsab{word-spacing:1.280000pt;}
.ws15a{word-spacing:1.314667pt;}
.ws46{word-spacing:1.333333pt;}
.ws186{word-spacing:1.360000pt;}
.ws133{word-spacing:1.386667pt;}
.ws43{word-spacing:1.440000pt;}
.wsdf{word-spacing:1.546667pt;}
.ws72{word-spacing:1.600000pt;}
.ws2b{word-spacing:1.653333pt;}
.ws187{word-spacing:1.677333pt;}
.ws1d{word-spacing:1.706667pt;}
.wsf2{word-spacing:1.760000pt;}
.ws8{word-spacing:1.792000pt;}
.ws7d{word-spacing:1.813333pt;}
.ws34{word-spacing:1.866667pt;}
.ws100{word-spacing:1.904000pt;}
.ws7b{word-spacing:1.920000pt;}
.ws67{word-spacing:1.949333pt;}
.ws9{word-spacing:1.962667pt;}
.ws4a{word-spacing:1.973333pt;}
.wsea{word-spacing:2.080000pt;}
.ws84{word-spacing:2.133333pt;}
.ws6f{word-spacing:2.186667pt;}
.wsbe{word-spacing:2.221333pt;}
.ws151{word-spacing:2.240000pt;}
.wsc{word-spacing:2.261333pt;}
.ws105{word-spacing:2.293333pt;}
.wsd8{word-spacing:2.312000pt;}
.wsc4{word-spacing:2.346667pt;}
.wse6{word-spacing:2.400000pt;}
.wsfd{word-spacing:2.402667pt;}
.wsec{word-spacing:2.453333pt;}
.wsb1{word-spacing:2.506667pt;}
.wsf5{word-spacing:2.560000pt;}
.ws14e{word-spacing:2.613333pt;}
.ws39{word-spacing:2.666667pt;}
.wsbd{word-spacing:2.674667pt;}
.wsf3{word-spacing:2.720000pt;}
.wsb2{word-spacing:2.773333pt;}
.ws17{word-spacing:2.816000pt;}
.ws58{word-spacing:2.826667pt;}
.ws15b{word-spacing:2.856000pt;}
.ws83{word-spacing:2.880000pt;}
.ws145{word-spacing:2.901333pt;}
.wse4{word-spacing:2.933333pt;}
.ws13{word-spacing:2.944000pt;}
.ws54{word-spacing:2.986667pt;}
.ws21{word-spacing:3.040000pt;}
.wsd3{word-spacing:3.082667pt;}
.ws4c{word-spacing:3.093333pt;}
.ws181{word-spacing:3.146667pt;}
.ws5d{word-spacing:3.200000pt;}
.wsaf{word-spacing:3.253333pt;}
.ws103{word-spacing:3.306667pt;}
.ws44{word-spacing:3.360000pt;}
.ws89{word-spacing:3.413333pt;}
.ws185{word-spacing:3.445333pt;}
.ws51{word-spacing:3.466667pt;}
.wse5{word-spacing:3.520000pt;}
.wscb{word-spacing:3.573333pt;}
.ws18f{word-spacing:3.626667pt;}
.wsd0{word-spacing:3.672000pt;}
.wsa5{word-spacing:3.680000pt;}
.ws191{word-spacing:3.733333pt;}
.wse2{word-spacing:3.786667pt;}
.ws15{word-spacing:3.797333pt;}
.ws37{word-spacing:3.840000pt;}
.wsd4{word-spacing:3.853333pt;}
.ws62{word-spacing:3.893333pt;}
.wsf4{word-spacing:3.946667pt;}
.ws9d{word-spacing:4.000000pt;}
.wsf{word-spacing:4.053333pt;}
.ws12{word-spacing:4.096000pt;}
.ws9c{word-spacing:4.106667pt;}
.ws93{word-spacing:4.160000pt;}
.wsac{word-spacing:4.213333pt;}
.wsaa{word-spacing:4.266667pt;}
.ws52{word-spacing:4.320000pt;}
.ws97{word-spacing:4.373333pt;}
.ws4b{word-spacing:4.480000pt;}
.ws155{word-spacing:4.488000pt;}
.ws25{word-spacing:4.533333pt;}
.ws178{word-spacing:4.578667pt;}
.ws4f{word-spacing:4.624000pt;}
.wsfa{word-spacing:4.640000pt;}
.wsf8{word-spacing:4.693333pt;}
.ws8b{word-spacing:4.714667pt;}
.ws96{word-spacing:4.746667pt;}
.ws7{word-spacing:4.778667pt;}
.ws134{word-spacing:4.800000pt;}
.ws1a{word-spacing:4.853333pt;}
.ws183{word-spacing:4.960000pt;}
.ws1c{word-spacing:5.013333pt;}
.wsa0{word-spacing:5.066667pt;}
.ws50{word-spacing:5.120000pt;}
.ws94{word-spacing:5.173333pt;}
.wsd5{word-spacing:5.213333pt;}
.ws119{word-spacing:5.226667pt;}
.ws159{word-spacing:5.258667pt;}
.wsf7{word-spacing:5.280000pt;}
.ws165{word-spacing:5.304000pt;}
.ws81{word-spacing:5.333333pt;}
.ws16c{word-spacing:5.349333pt;}
.wse8{word-spacing:5.386667pt;}
.ws95{word-spacing:5.440000pt;}
.wse7{word-spacing:5.493333pt;}
.ws188{word-spacing:5.576000pt;}
.ws117{word-spacing:5.653333pt;}
.wsc2{word-spacing:5.706667pt;}
.ws17a{word-spacing:5.760000pt;}
.ws41{word-spacing:5.813333pt;}
.ws147{word-spacing:5.848000pt;}
.ws10f{word-spacing:5.866667pt;}
.wsd6{word-spacing:5.893333pt;}
.wse0{word-spacing:5.920000pt;}
.ws76{word-spacing:5.973333pt;}
.wse9{word-spacing:6.026667pt;}
.ws148{word-spacing:6.074667pt;}
.ws30{word-spacing:6.080000pt;}
.ws127{word-spacing:6.133333pt;}
.wsa3{word-spacing:6.186667pt;}
.ws69{word-spacing:6.210667pt;}
.ws5{word-spacing:6.229333pt;}
.wscc{word-spacing:6.240000pt;}
.ws126{word-spacing:6.293333pt;}
.ws137{word-spacing:6.301333pt;}
.ws7c{word-spacing:6.346667pt;}
.wsc6{word-spacing:6.400000pt;}
.ws64{word-spacing:6.453333pt;}
.wsd7{word-spacing:6.482667pt;}
.wsf1{word-spacing:6.506667pt;}
.ws9b{word-spacing:6.560000pt;}
.ws53{word-spacing:6.613333pt;}
.ws11{word-spacing:6.656000pt;}
.ws128{word-spacing:6.666667pt;}
.ws7f{word-spacing:6.720000pt;}
.wsff{word-spacing:6.800000pt;}
.wsc5{word-spacing:6.826667pt;}
.ws131{word-spacing:6.880000pt;}
.wsad{word-spacing:6.933333pt;}
.wsd2{word-spacing:6.981333pt;}
.ws22{word-spacing:6.986667pt;}
.ws176{word-spacing:7.026667pt;}
.wsb3{word-spacing:7.040000pt;}
.ws10d{word-spacing:7.093333pt;}
.ws139{word-spacing:7.117333pt;}
.wsb6{word-spacing:7.146667pt;}
.ws66{word-spacing:7.200000pt;}
.wse1{word-spacing:7.253333pt;}
.ws82{word-spacing:7.306667pt;}
.ws146{word-spacing:7.344000pt;}
.ws166{word-spacing:7.360000pt;}
.ws80{word-spacing:7.413333pt;}
.ws31{word-spacing:7.466667pt;}
.ws7e{word-spacing:7.520000pt;}
.ws154{word-spacing:7.570667pt;}
.ws3d{word-spacing:7.573333pt;}
.wsef{word-spacing:7.680000pt;}
.ws180{word-spacing:7.733333pt;}
.wsb4{word-spacing:7.840000pt;}
.ws140{word-spacing:7.893333pt;}
.ws3b{word-spacing:7.946667pt;}
.ws141{word-spacing:8.000000pt;}
.ws10b{word-spacing:8.053333pt;}
.ws11f{word-spacing:8.160000pt;}
.ws156{word-spacing:8.205333pt;}
.ws23{word-spacing:8.213333pt;}
.ws175{word-spacing:8.266667pt;}
.ws12f{word-spacing:8.320000pt;}
.ws15d{word-spacing:8.373333pt;}
.ws5e{word-spacing:8.426667pt;}
.ws57{word-spacing:8.480000pt;}
.ws101{word-spacing:8.533333pt;}
.ws78{word-spacing:8.586667pt;}
.ws5c{word-spacing:8.640000pt;}
.wseb{word-spacing:8.693333pt;}
.wsc7{word-spacing:8.746667pt;}
.ws13b{word-spacing:8.800000pt;}
.ws65{word-spacing:8.853333pt;}
.ws59{word-spacing:8.906667pt;}
.ws15e{word-spacing:8.960000pt;}
.wsb7{word-spacing:9.013333pt;}
.ws16b{word-spacing:9.066667pt;}
.ws5b{word-spacing:9.280000pt;}
.ws189{word-spacing:9.440000pt;}
.ws158{word-spacing:9.474667pt;}
.ws17b{word-spacing:9.493333pt;}
.ws55{word-spacing:9.546667pt;}
.ws16e{word-spacing:9.600000pt;}
.ws11a{word-spacing:9.653333pt;}
.wsfb{word-spacing:9.813333pt;}
.wsf9{word-spacing:9.973333pt;}
.ws18a{word-spacing:10.133333pt;}
.ws3a{word-spacing:10.186667pt;}
.ws12d{word-spacing:10.293333pt;}
.ws13a{word-spacing:10.381333pt;}
.ws16f{word-spacing:10.506667pt;}
.wsd1{word-spacing:10.517333pt;}
.ws169{word-spacing:10.560000pt;}
.ws149{word-spacing:10.608000pt;}
.ws161{word-spacing:10.613333pt;}
.ws40{word-spacing:10.666667pt;}
.ws85{word-spacing:10.720000pt;}
.ws18e{word-spacing:11.040000pt;}
.ws184{word-spacing:11.106667pt;}
.ws61{word-spacing:11.146667pt;}
.ws109{word-spacing:11.200000pt;}
.ws113{word-spacing:11.253333pt;}
.ws135{word-spacing:11.306667pt;}
.ws5a{word-spacing:11.413333pt;}
.ws167{word-spacing:11.466667pt;}
.ws18b{word-spacing:11.520000pt;}
.wsdd{word-spacing:11.626667pt;}
.ws18d{word-spacing:11.680000pt;}
.ws3c{word-spacing:11.733333pt;}
.ws144{word-spacing:11.786667pt;}
.ws18{word-spacing:11.989333pt;}
.ws177{word-spacing:12.149333pt;}
.wsfc{word-spacing:12.373333pt;}
.ws48{word-spacing:12.480000pt;}
.ws1b{word-spacing:13.226667pt;}
.wsa4{word-spacing:13.280000pt;}
.ws16d{word-spacing:13.333333pt;}
.wsae{word-spacing:13.440000pt;}
.ws8a{word-spacing:13.546667pt;}
.wsb5{word-spacing:13.920000pt;}
.ws106{word-spacing:13.973333pt;}
.ws162{word-spacing:14.133333pt;}
.ws142{word-spacing:14.186667pt;}
.wsa6{word-spacing:14.240000pt;}
.ws49{word-spacing:14.293333pt;}
.ws112{word-spacing:14.346667pt;}
.ws11b{word-spacing:14.826667pt;}
.ws107{word-spacing:14.880000pt;}
.ws124{word-spacing:15.626667pt;}
.ws120{word-spacing:15.733333pt;}
.ws172{word-spacing:16.320000pt;}
.ws10c{word-spacing:16.426667pt;}
.ws108{word-spacing:16.586667pt;}
.wscd{word-spacing:16.693333pt;}
.ws42{word-spacing:17.173333pt;}
.ws190{word-spacing:18.560000pt;}
.ws182{word-spacing:18.773333pt;}
.ws3e{word-spacing:19.040000pt;}
.ws13e{word-spacing:19.200000pt;}
.ws102{word-spacing:21.546667pt;}
.ws63{word-spacing:22.613333pt;}
.ws143{word-spacing:22.880000pt;}
.ws3f{word-spacing:23.093333pt;}
.ws116{word-spacing:23.306667pt;}
.ws18c{word-spacing:24.320000pt;}
.ws174{word-spacing:24.426667pt;}
._a{margin-left:-38.854933pt;}
._16{margin-left:-22.026667pt;}
._9{margin-left:-15.442133pt;}
._15{margin-left:-12.320000pt;}
._2{margin-left:-6.673067pt;}
._1{margin-left:-5.532800pt;}
._5{margin-left:-4.382400pt;}
._11{margin-left:-3.246667pt;}
._7{margin-left:-2.047869pt;}
._e{margin-left:-1.077333pt;}
._d{width:0.944000pt;}
._13{width:2.571200pt;}
._4{width:3.813867pt;}
._c{width:5.169600pt;}
._3{width:6.206933pt;}
._14{width:7.177600pt;}
._17{width:8.633600pt;}
._b{width:10.009067pt;}
._f{width:12.424000pt;}
._10{width:30.780907pt;}
._12{width:32.730667pt;}
._6{width:318.150933pt;}
._0{width:454.944000pt;}
._8{width:1076.768000pt;}
.fs7{font-size:26.293333pt;}
.fs6{font-size:30.933333pt;}
.fs9{font-size:31.733333pt;}
.fsa{font-size:34.666667pt;}
.fs5{font-size:35.013333pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:43.093333pt;}
.fs8{font-size:45.333333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.031467pt;}
.y3{bottom:56.644133pt;}
.y2{bottom:67.844133pt;}
.y93{bottom:96.378000pt;}
.y237{bottom:96.378133pt;}
.y167{bottom:96.409333pt;}
.y5d{bottom:96.409467pt;}
.y238{bottom:96.409600pt;}
.yea{bottom:96.409733pt;}
.y2d{bottom:97.556800pt;}
.y92{bottom:100.149467pt;}
.y236{bottom:100.149600pt;}
.y5c{bottom:109.978000pt;}
.y257{bottom:109.978267pt;}
.y5b{bottom:110.009467pt;}
.y91{bottom:110.009600pt;}
.ye9{bottom:110.009733pt;}
.y1a5{bottom:112.412933pt;}
.y166{bottom:112.690533pt;}
.y2c{bottom:113.556800pt;}
.y256{bottom:113.749733pt;}
.ybd{bottom:123.578000pt;}
.y8f{bottom:123.578133pt;}
.ye7{bottom:123.578267pt;}
.y254{bottom:123.578400pt;}
.y5a{bottom:123.609467pt;}
.y90{bottom:123.609600pt;}
.ye8{bottom:123.609733pt;}
.y255{bottom:123.609867pt;}
.ybc{bottom:127.349467pt;}
.y8e{bottom:127.349600pt;}
.ye6{bottom:127.349733pt;}
.y253{bottom:127.349867pt;}
.y1a4{bottom:128.416533pt;}
.y165{bottom:128.971600pt;}
.y2b{bottom:129.556800pt;}
.y58{bottom:137.178000pt;}
.y17a{bottom:137.178267pt;}
.y59{bottom:137.209467pt;}
.ybb{bottom:137.209600pt;}
.y8d{bottom:137.209733pt;}
.ye5{bottom:137.209867pt;}
.y252{bottom:137.210000pt;}
.y57{bottom:140.949467pt;}
.y22b{bottom:140.949733pt;}
.y1a3{bottom:144.420133pt;}
.y164{bottom:145.252667pt;}
.y2a{bottom:145.556800pt;}
.yb9{bottom:150.778133pt;}
.y229{bottom:150.778400pt;}
.y250{bottom:150.778533pt;}
.y13e{bottom:150.809467pt;}
.yba{bottom:150.809600pt;}
.y8c{bottom:150.809733pt;}
.y22a{bottom:150.809867pt;}
.y251{bottom:150.810000pt;}
.yb8{bottom:154.549600pt;}
.ye4{bottom:154.549733pt;}
.y228{bottom:154.549867pt;}
.y24f{bottom:154.550000pt;}
.y1a2{bottom:160.423733pt;}
.y1cc{bottom:161.209467pt;}
.y163{bottom:161.533733pt;}
.y29{bottom:161.556800pt;}
.y111{bottom:164.378133pt;}
.y8a{bottom:164.378267pt;}
.y13d{bottom:164.409467pt;}
.y110{bottom:164.409600pt;}
.y8b{bottom:164.409733pt;}
.y1f2{bottom:164.409867pt;}
.y89{bottom:168.149733pt;}
.y56{bottom:174.809467pt;}
.y1a1{bottom:176.427200pt;}
.y28{bottom:177.556800pt;}
.y1cb{bottom:177.603333pt;}
.y26c{bottom:177.814933pt;}
.y21b{bottom:177.978000pt;}
.y10e{bottom:177.978133pt;}
.y1f0{bottom:177.978267pt;}
.y13c{bottom:178.009467pt;}
.y10f{bottom:178.009600pt;}
.y1f1{bottom:178.009733pt;}
.y88{bottom:178.009867pt;}
.y21a{bottom:181.749467pt;}
.y10d{bottom:181.749600pt;}
.y1ef{bottom:181.749733pt;}
.yb7{bottom:188.409600pt;}
.y179{bottom:188.409733pt;}
.ye3{bottom:188.409867pt;}
.y24e{bottom:188.410000pt;}
.y55{bottom:190.854533pt;}
.y87{bottom:191.578400pt;}
.y13b{bottom:191.609467pt;}
.y219{bottom:191.609600pt;}
.y86{bottom:191.609867pt;}
.y1a0{bottom:192.430800pt;}
.y27{bottom:193.556800pt;}
.y1ca{bottom:193.997067pt;}
.y26b{bottom:194.096000pt;}
.y162{bottom:196.681067pt;}
.y161{bottom:196.712533pt;}
.y178{bottom:204.519067pt;}
.ye2{bottom:204.519200pt;}
.y227{bottom:204.519333pt;}
.yb6{bottom:204.550000pt;}
.y13a{bottom:205.178000pt;}
.y218{bottom:205.178133pt;}
.y84{bottom:205.178400pt;}
.y139{bottom:205.209467pt;}
.y217{bottom:205.209600pt;}
.y85{bottom:205.209867pt;}
.y54{bottom:206.899600pt;}
.y19f{bottom:208.434400pt;}
.y83{bottom:208.949867pt;}
.y26{bottom:209.556800pt;}
.y26a{bottom:210.377067pt;}
.y1c9{bottom:210.390800pt;}
.y10c{bottom:215.609600pt;}
.y1ee{bottom:215.609733pt;}
.y138{bottom:218.809467pt;}
.y216{bottom:218.809600pt;}
.ye1{bottom:220.628533pt;}
.y226{bottom:220.628667pt;}
.y24d{bottom:220.628800pt;}
.y53{bottom:222.944667pt;}
.y19e{bottom:224.438000pt;}
.y25{bottom:225.556800pt;}
.y269{bottom:226.658133pt;}
.y1c8{bottom:226.784533pt;}
.y1ed{bottom:231.732400pt;}
.y214{bottom:231.858400pt;}
.y249{bottom:231.858533pt;}
.y136{bottom:232.378000pt;}
.y137{bottom:232.409467pt;}
.y215{bottom:232.409600pt;}
.y10b{bottom:232.814267pt;}
.y135{bottom:236.149467pt;}
.y177{bottom:236.737867pt;}
.ye0{bottom:236.738000pt;}
.y225{bottom:236.738133pt;}
.yb5{bottom:237.666800pt;}
.yb4{bottom:237.698267pt;}
.y52{bottom:238.989733pt;}
.y19d{bottom:240.441600pt;}
.y24{bottom:241.556800pt;}
.y82{bottom:242.809867pt;}
.y268{bottom:242.939333pt;}
.y1c7{bottom:243.178400pt;}
.y134{bottom:246.009600pt;}
.y160{bottom:247.009333pt;}
.y1ec{bottom:247.854933pt;}
.y213{bottom:248.107333pt;}
.y10a{bottom:250.018933pt;}
.ydf{bottom:252.847333pt;}
.y224{bottom:252.847467pt;}
.y24c{bottom:252.847600pt;}
.y51{bottom:255.034800pt;}
.y19c{bottom:256.445200pt;}
.y23{bottom:257.556800pt;}
.y81{bottom:259.214533pt;}
.y267{bottom:259.220400pt;}
.y1c6{bottom:259.572133pt;}
.y132{bottom:259.578133pt;}
.y133{bottom:259.609600pt;}
.y15f{bottom:263.290400pt;}
.y131{bottom:263.349600pt;}
.y1eb{bottom:263.977467pt;}
.y212{bottom:264.356133pt;}
.y248{bottom:264.356267pt;}
.y109{bottom:267.223467pt;}
.y176{bottom:268.956667pt;}
.yde{bottom:268.956800pt;}
.y223{bottom:268.956933pt;}
.y50{bottom:271.079867pt;}
.y19b{bottom:272.448800pt;}
.y22{bottom:273.556800pt;}
.y266{bottom:275.501467pt;}
.y80{bottom:275.619200pt;}
.y1c5{bottom:275.966000pt;}
.y15e{bottom:279.571600pt;}
.y1ea{bottom:280.100000pt;}
.y211{bottom:280.604933pt;}
.yb3{bottom:284.074800pt;}
.y108{bottom:284.428133pt;}
.y175{bottom:285.066133pt;}
.ydd{bottom:285.066267pt;}
.y24b{bottom:285.066400pt;}
.y4f{bottom:287.124933pt;}
.y19a{bottom:288.452267pt;}
.y265{bottom:291.782667pt;}
.y7f{bottom:292.023733pt;}
.y1c4{bottom:292.359733pt;}
.y15d{bottom:295.852667pt;}
.y1e9{bottom:296.222533pt;}
.y210{bottom:296.853733pt;}
.y247{bottom:296.853867pt;}
.y130{bottom:297.209600pt;}
.yb2{bottom:300.215200pt;}
.y174{bottom:301.175467pt;}
.ydc{bottom:301.175600pt;}
.y222{bottom:301.175733pt;}
.y107{bottom:301.632800pt;}
.y4e{bottom:303.170000pt;}
.y199{bottom:304.455867pt;}
.y21{bottom:306.533200pt;}
.y264{bottom:308.063733pt;}
.y7e{bottom:308.428400pt;}
.y1c3{bottom:308.753467pt;}
.y15c{bottom:312.133867pt;}
.y1e8{bottom:312.345067pt;}
.y20f{bottom:313.102533pt;}
.y246{bottom:313.102667pt;}
.y12f{bottom:313.446933pt;}
.yb1{bottom:316.355600pt;}
.y173{bottom:317.284933pt;}
.ydb{bottom:317.285067pt;}
.y106{bottom:318.837333pt;}
.y4d{bottom:319.215067pt;}
.y198{bottom:320.459467pt;}
.y263{bottom:324.344800pt;}
.y7d{bottom:324.832933pt;}
.y1c2{bottom:325.147333pt;}
.y15b{bottom:328.414933pt;}
.y20e{bottom:329.351333pt;}
.y245{bottom:329.351467pt;}
.y12e{bottom:329.684267pt;}
.yb0{bottom:332.496000pt;}
.y172{bottom:333.394267pt;}
.yda{bottom:333.394400pt;}
.y235{bottom:333.394533pt;}
.y4c{bottom:335.260133pt;}
.y105{bottom:336.042000pt;}
.y197{bottom:336.463067pt;}
.y262{bottom:340.625867pt;}
.y7c{bottom:341.237600pt;}
.y1c1{bottom:341.541067pt;}
.y15a{bottom:344.696000pt;}
.y20d{bottom:345.600133pt;}
.y244{bottom:345.600267pt;}
.y12d{bottom:345.921600pt;}
.y1e7{bottom:347.333733pt;}
.y1e6{bottom:347.365200pt;}
.yaf{bottom:348.636400pt;}
.yd9{bottom:349.503733pt;}
.y221{bottom:349.503867pt;}
.y4b{bottom:351.305200pt;}
.y196{bottom:352.466667pt;}
.y20{bottom:352.800933pt;}
.y104{bottom:353.246667pt;}
.y261{bottom:356.906933pt;}
.y7b{bottom:357.642267pt;}
.y1c0{bottom:357.934800pt;}
.y159{bottom:360.977067pt;}
.y20c{bottom:361.848933pt;}
.y243{bottom:361.849067pt;}
.y12c{bottom:362.158933pt;}
.yae{bottom:364.776800pt;}
.y171{bottom:365.613067pt;}
.yd8{bottom:365.613200pt;}
.y234{bottom:365.613333pt;}
.y1f{bottom:366.400933pt;}
.y4a{bottom:367.350267pt;}
.y195{bottom:368.470267pt;}
.y103{bottom:370.451200pt;}
.y260{bottom:373.188133pt;}
.y7a{bottom:374.046800pt;}
.y1bf{bottom:374.328667pt;}
.y158{bottom:377.258133pt;}
.y20b{bottom:378.097733pt;}
.y242{bottom:378.097867pt;}
.y12b{bottom:378.396267pt;}
.yad{bottom:380.917067pt;}
.y170{bottom:381.722533pt;}
.yd7{bottom:381.722667pt;}
.y49{bottom:383.395333pt;}
.y1e{bottom:383.780400pt;}
.y194{bottom:384.473867pt;}
.y102{bottom:387.655867pt;}
.y25f{bottom:389.469200pt;}
.y79{bottom:390.451467pt;}
.y1be{bottom:390.722400pt;}
.y157{bottom:393.539333pt;}
.y20a{bottom:394.346533pt;}
.y241{bottom:394.346667pt;}
.y12a{bottom:394.633600pt;}
.yac{bottom:397.057467pt;}
.y1d{bottom:397.380400pt;}
.y1e5{bottom:397.503467pt;}
.y16f{bottom:397.831867pt;}
.yd6{bottom:397.832000pt;}
.y233{bottom:397.832133pt;}
.y48{bottom:399.440400pt;}
.y193{bottom:400.477333pt;}
.y101{bottom:404.860533pt;}
.y78{bottom:406.856000pt;}
.y1bd{bottom:407.116133pt;}
.y156{bottom:409.820400pt;}
.y209{bottom:410.595333pt;}
.y240{bottom:410.595467pt;}
.y129{bottom:410.870933pt;}
.y1c{bottom:410.980400pt;}
.yab{bottom:413.197867pt;}
.y1e4{bottom:413.626133pt;}
.y16e{bottom:413.941333pt;}
.yd5{bottom:413.941467pt;}
.y47{bottom:415.485467pt;}
.y192{bottom:416.480933pt;}
.y100{bottom:422.065067pt;}
.y77{bottom:423.260667pt;}
.y1bc{bottom:423.510000pt;}
.y1b{bottom:424.580400pt;}
.y25e{bottom:424.616533pt;}
.y155{bottom:426.101467pt;}
.y208{bottom:426.844267pt;}
.y128{bottom:427.108267pt;}
.yaa{bottom:429.338267pt;}
.y1e3{bottom:429.748533pt;}
.y16d{bottom:430.050667pt;}
.yd4{bottom:430.050800pt;}
.y232{bottom:430.050933pt;}
.y46{bottom:431.530533pt;}
.y191{bottom:432.484533pt;}
.y1a{bottom:438.180400pt;}
.yff{bottom:439.269733pt;}
.y76{bottom:439.665333pt;}
.y1bb{bottom:439.903733pt;}
.y154{bottom:442.382667pt;}
.y207{bottom:443.092933pt;}
.y23f{bottom:443.093067pt;}
.y127{bottom:443.345600pt;}
.ya9{bottom:445.478667pt;}
.y1e2{bottom:445.871200pt;}
.y16c{bottom:446.160133pt;}
.yd3{bottom:446.160267pt;}
.y45{bottom:447.575600pt;}
.y190{bottom:448.488133pt;}
.y19{bottom:451.780400pt;}
.y75{bottom:456.069867pt;}
.y1ba{bottom:456.297467pt;}
.yfe{bottom:456.474400pt;}
.y153{bottom:458.663733pt;}
.y206{bottom:459.341867pt;}
.y126{bottom:459.582933pt;}
.ya8{bottom:461.618933pt;}
.y1e1{bottom:461.993600pt;}
.yd2{bottom:462.269600pt;}
.y231{bottom:462.269733pt;}
.y44{bottom:463.620533pt;}
.y18f{bottom:464.491733pt;}
.y18{bottom:465.380400pt;}
.y74{bottom:472.474533pt;}
.y1b9{bottom:472.691333pt;}
.yfd{bottom:473.679067pt;}
.y152{bottom:474.944800pt;}
.y205{bottom:475.590667pt;}
.y125{bottom:475.820267pt;}
.ya7{bottom:477.759333pt;}
.y1e0{bottom:478.116267pt;}
.y16b{bottom:478.378933pt;}
.yd1{bottom:478.379067pt;}
.y17{bottom:478.980400pt;}
.y43{bottom:479.665600pt;}
.y18e{bottom:480.495200pt;}
.y73{bottom:488.879067pt;}
.y1b8{bottom:489.085067pt;}
.yfc{bottom:490.883600pt;}
.y151{bottom:491.225867pt;}
.y204{bottom:491.839467pt;}
.y124{bottom:492.057600pt;}
.y16{bottom:492.580400pt;}
.ya6{bottom:493.899733pt;}
.y1df{bottom:494.238800pt;}
.yd0{bottom:494.488400pt;}
.y230{bottom:494.488533pt;}
.y42{bottom:495.710667pt;}
.y18d{bottom:496.498800pt;}
.y72{bottom:505.252267pt;}
.y71{bottom:505.283733pt;}
.y1b7{bottom:505.478800pt;}
.y15{bottom:506.180400pt;}
.y150{bottom:507.507067pt;}
.yfb{bottom:508.088267pt;}
.y123{bottom:508.294933pt;}
.ya5{bottom:510.040133pt;}
.y1de{bottom:510.361333pt;}
.ycf{bottom:510.597733pt;}
.y22f{bottom:510.597867pt;}
.y41{bottom:511.755733pt;}
.y18c{bottom:512.502400pt;}
.y70{bottom:521.688400pt;}
.y1b6{bottom:521.872667pt;}
.y14f{bottom:523.788133pt;}
.y203{bottom:524.337067pt;}
.y122{bottom:524.532267pt;}
.yfa{bottom:525.292800pt;}
.ya4{bottom:526.180533pt;}
.y1dd{bottom:526.483867pt;}
.y14{bottom:526.579867pt;}
.yce{bottom:526.707200pt;}
.y40{bottom:527.800800pt;}
.y18b{bottom:528.506000pt;}
.y6f{bottom:538.092933pt;}
.y1b5{bottom:538.266400pt;}
.y14e{bottom:540.069200pt;}
.y202{bottom:540.585867pt;}
.y121{bottom:540.769600pt;}
.ya3{bottom:542.320800pt;}
.yf9{bottom:542.497467pt;}
.y1dc{bottom:542.606400pt;}
.y16a{bottom:542.816533pt;}
.ycd{bottom:542.816667pt;}
.y3f{bottom:543.845867pt;}
.y18a{bottom:544.509600pt;}
.y27c{bottom:545.089733pt;}
.y6e{bottom:554.497600pt;}
.y1b4{bottom:554.660267pt;}
.y14d{bottom:556.350267pt;}
.y201{bottom:556.834667pt;}
.y23e{bottom:556.834800pt;}
.y120{bottom:557.006933pt;}
.ya2{bottom:558.461200pt;}
.y1db{bottom:558.728933pt;}
.ycc{bottom:558.926000pt;}
.y22e{bottom:558.926133pt;}
.yf8{bottom:559.702133pt;}
.y3e{bottom:559.890933pt;}
.y189{bottom:560.513200pt;}
.y13{bottom:561.477467pt;}
.y27b{bottom:570.028267pt;}
.y6d{bottom:570.902267pt;}
.y1b3{bottom:571.054000pt;}
.y14c{bottom:572.631467pt;}
.y200{bottom:573.083467pt;}
.y23d{bottom:573.083600pt;}
.y11f{bottom:573.244267pt;}
.ya1{bottom:574.601600pt;}
.y1da{bottom:574.851467pt;}
.y169{bottom:575.035333pt;}
.ycb{bottom:575.035467pt;}
.y12{bottom:575.077467pt;}
.y3d{bottom:575.936000pt;}
.y188{bottom:576.516800pt;}
.yf7{bottom:576.906800pt;}
.y27a{bottom:581.196800pt;}
.y279{bottom:581.228267pt;}
.y6c{bottom:587.306800pt;}
.y1b2{bottom:587.447733pt;}
.y14b{bottom:588.912533pt;}
.y1ff{bottom:589.332267pt;}
.y23c{bottom:589.332400pt;}
.y11e{bottom:589.481600pt;}
.ya0{bottom:590.742000pt;}
.y1d9{bottom:590.974000pt;}
.yca{bottom:591.144800pt;}
.y22d{bottom:591.144933pt;}
.y3c{bottom:591.981067pt;}
.y11{bottom:592.456933pt;}
.y187{bottom:592.520267pt;}
.yf6{bottom:594.111333pt;}
.y6b{bottom:603.711467pt;}
.y1b1{bottom:603.841467pt;}
.y14a{bottom:605.193600pt;}
.y1fe{bottom:605.581067pt;}
.y23b{bottom:605.581200pt;}
.y11d{bottom:605.718933pt;}
.y10{bottom:606.056933pt;}
.y9f{bottom:606.882400pt;}
.y1d8{bottom:607.096533pt;}
.y220{bottom:607.254133pt;}
.yc9{bottom:607.254267pt;}
.y3b{bottom:608.026133pt;}
.y186{bottom:608.523867pt;}
.y278{bottom:608.566933pt;}
.yf5{bottom:611.316000pt;}
.yf{bottom:619.656933pt;}
.y6a{bottom:620.116133pt;}
.y1b0{bottom:620.235333pt;}
.y149{bottom:621.474800pt;}
.y1fd{bottom:621.829867pt;}
.y23a{bottom:621.830000pt;}
.y11c{bottom:621.956267pt;}
.y9e{bottom:623.022800pt;}
.y1d7{bottom:623.219067pt;}
.yc8{bottom:623.363600pt;}
.y3a{bottom:624.071200pt;}
.y185{bottom:624.527467pt;}
.y277{bottom:624.566933pt;}
.yf4{bottom:628.520667pt;}
.ye{bottom:633.256933pt;}
.y68{bottom:636.489200pt;}
.y69{bottom:636.520667pt;}
.y1af{bottom:636.629067pt;}
.y148{bottom:637.755867pt;}
.y1fc{bottom:638.078800pt;}
.y11b{bottom:638.193600pt;}
.y9d{bottom:639.163200pt;}
.y1d6{bottom:639.341600pt;}
.y168{bottom:639.472933pt;}
.yc7{bottom:639.473067pt;}
.y39{bottom:640.116267pt;}
.y184{bottom:640.531067pt;}
.y276{bottom:640.566933pt;}
.yf3{bottom:645.725200pt;}
.yd{bottom:646.856933pt;}
.y67{bottom:652.925333pt;}
.y1ae{bottom:653.022800pt;}
.y147{bottom:654.036933pt;}
.y1fb{bottom:654.327600pt;}
.y11a{bottom:654.430933pt;}
.y9c{bottom:655.303467pt;}
.y1d5{bottom:655.464133pt;}
.y21f{bottom:655.582267pt;}
.yc6{bottom:655.582400pt;}
.y38{bottom:656.161333pt;}
.y183{bottom:656.534667pt;}
.y275{bottom:656.566933pt;}
.yc{bottom:660.456933pt;}
.yf2{bottom:662.929867pt;}
.y66{bottom:669.330000pt;}
.y1ad{bottom:669.416667pt;}
.y146{bottom:670.318133pt;}
.y1fa{bottom:670.576400pt;}
.y119{bottom:670.668133pt;}
.y9b{bottom:671.443867pt;}
.y1d4{bottom:671.586667pt;}
.yc5{bottom:671.691733pt;}
.y37{bottom:672.206400pt;}
.y182{bottom:672.538267pt;}
.y274{bottom:672.566933pt;}
.yb{bottom:674.056800pt;}
.yf1{bottom:680.134533pt;}
.y65{bottom:685.734533pt;}
.y1ac{bottom:685.810400pt;}
.y145{bottom:686.599200pt;}
.y1f9{bottom:686.825200pt;}
.y118{bottom:686.905600pt;}
.y9a{bottom:687.584267pt;}
.ya{bottom:687.656933pt;}
.y1d3{bottom:687.709200pt;}
.y21e{bottom:687.801067pt;}
.yc4{bottom:687.801200pt;}
.y36{bottom:688.251467pt;}
.y181{bottom:688.541867pt;}
.y273{bottom:688.566933pt;}
.yf0{bottom:697.339067pt;}
.y9{bottom:701.256933pt;}
.y64{bottom:702.139200pt;}
.y1ab{bottom:702.204133pt;}
.y144{bottom:702.880267pt;}
.y25d{bottom:702.880400pt;}
.y1f8{bottom:703.074000pt;}
.y117{bottom:703.142933pt;}
.y99{bottom:703.724533pt;}
.y1d2{bottom:703.831733pt;}
.yc3{bottom:703.910533pt;}
.y24a{bottom:703.910667pt;}
.y35{bottom:704.296533pt;}
.y180{bottom:704.545333pt;}
.y272{bottom:704.566933pt;}
.yef{bottom:714.543733pt;}
.y8{bottom:714.856933pt;}
.y63{bottom:718.543867pt;}
.y1aa{bottom:718.598000pt;}
.y143{bottom:719.161333pt;}
.y25c{bottom:719.161467pt;}
.y1f7{bottom:719.322800pt;}
.y116{bottom:719.380267pt;}
.y98{bottom:719.864933pt;}
.y1d1{bottom:719.954267pt;}
.yc2{bottom:720.019867pt;}
.y22c{bottom:720.020000pt;}
.y34{bottom:720.341467pt;}
.y17f{bottom:720.548933pt;}
.y271{bottom:720.566933pt;}
.y7{bottom:728.456800pt;}
.yee{bottom:731.748400pt;}
.y62{bottom:734.948400pt;}
.y1a9{bottom:734.991733pt;}
.y142{bottom:735.442400pt;}
.y25b{bottom:735.442533pt;}
.y1f6{bottom:735.571600pt;}
.y239{bottom:735.571733pt;}
.y115{bottom:735.617600pt;}
.y97{bottom:736.005333pt;}
.y1d0{bottom:736.076800pt;}
.yc1{bottom:736.129333pt;}
.y33{bottom:736.386667pt;}
.y17e{bottom:736.552533pt;}
.y270{bottom:736.566933pt;}
.yed{bottom:748.953067pt;}
.y61{bottom:751.353067pt;}
.y1a8{bottom:751.385600pt;}
.y141{bottom:751.723467pt;}
.y25a{bottom:751.723600pt;}
.y1f5{bottom:751.820400pt;}
.y114{bottom:751.854933pt;}
.y96{bottom:752.145733pt;}
.y1cf{bottom:752.199333pt;}
.y21d{bottom:752.238667pt;}
.yc0{bottom:752.238800pt;}
.y32{bottom:752.431733pt;}
.y17d{bottom:752.556133pt;}
.y26f{bottom:752.566933pt;}
.yec{bottom:766.157600pt;}
.y60{bottom:767.757733pt;}
.y1a7{bottom:767.779333pt;}
.y140{bottom:768.004667pt;}
.y259{bottom:768.004800pt;}
.y1f4{bottom:768.069200pt;}
.y113{bottom:768.092267pt;}
.y95{bottom:768.286133pt;}
.y1ce{bottom:768.321867pt;}
.ybf{bottom:768.348133pt;}
.y31{bottom:768.476800pt;}
.y17c{bottom:768.559733pt;}
.y26e{bottom:768.566933pt;}
.y6{bottom:780.460667pt;}
.yeb{bottom:783.362267pt;}
.y5f{bottom:784.162267pt;}
.y1a6{bottom:784.173200pt;}
.y13f{bottom:784.285733pt;}
.y258{bottom:784.285867pt;}
.y1f3{bottom:784.318133pt;}
.y112{bottom:784.329600pt;}
.y94{bottom:784.426533pt;}
.y1cd{bottom:784.444400pt;}
.y21c{bottom:784.457467pt;}
.ybe{bottom:784.457600pt;}
.y30{bottom:784.521733pt;}
.y17b{bottom:784.563333pt;}
.y26d{bottom:784.566933pt;}
.y5{bottom:793.794000pt;}
.y2f{bottom:800.566933pt;}
.y4{bottom:828.691600pt;}
.y2e{bottom:834.847600pt;}
.y5e{bottom:834.930667pt;}
.ha{height:25.930667pt;}
.he{height:25.931200pt;}
.hb{height:28.623467pt;}
.hd{height:33.674667pt;}
.h3{height:33.861333pt;}
.h6{height:38.485333pt;}
.h7{height:38.698667pt;}
.h9{height:38.870187pt;}
.hc{height:40.890667pt;}
.h5{height:48.106667pt;}
.h8{height:48.533333pt;}
.h4{height:68.693333pt;}
.h2{height:907.086667pt;}
.h0{height:907.150133pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.583467pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.842533pt;}
.x1{left:86.929067pt;}
.x8{left:90.740133pt;}
.x35{left:94.069333pt;}
.x1b{left:96.264400pt;}
.x2{left:98.272667pt;}
.xf{left:101.128533pt;}
.x6{left:105.858267pt;}
.x3e{left:111.382533pt;}
.x4c{left:117.114800pt;}
.x36{left:125.246533pt;}
.x54{left:131.609467pt;}
.x42{left:133.286933pt;}
.x1e{left:136.208800pt;}
.x50{left:138.261733pt;}
.x1c{left:139.411200pt;}
.x27{left:140.972533pt;}
.x4b{left:141.891067pt;}
.x38{left:147.370533pt;}
.x19{left:149.979733pt;}
.x12{left:151.741733pt;}
.x4a{left:153.193333pt;}
.x2d{left:154.153600pt;}
.x3f{left:157.917467pt;}
.x45{left:160.388800pt;}
.x37{left:165.259333pt;}
.x1a{left:166.464667pt;}
.x32{left:169.189467pt;}
.x13{left:171.748933pt;}
.x53{left:174.876533pt;}
.x1d{left:178.229733pt;}
.x39{left:179.449467pt;}
.x1f{left:180.491200pt;}
.x2e{left:185.330800pt;}
.x28{left:186.263200pt;}
.x40{left:189.474400pt;}
.x18{left:191.207200pt;}
.x44{left:192.713467pt;}
.x4f{left:194.526533pt;}
.x2f{left:197.131467pt;}
.x56{left:204.692533pt;}
.x41{left:206.546400pt;}
.x5{left:211.704667pt;}
.x20{left:220.237333pt;}
.x30{left:226.261733pt;}
.x21{left:228.847733pt;}
.x3{left:239.441200pt;}
.x48{left:249.836800pt;}
.x3a{left:252.195600pt;}
.x31{left:255.289600pt;}
.x22{left:260.024933pt;}
.x33{left:263.970933pt;}
.x3b{left:265.594533pt;}
.x4{left:268.792667pt;}
.x23{left:270.393867pt;}
.x49{left:271.622667pt;}
.x51{left:274.070533pt;}
.x10{left:276.891467pt;}
.x34{left:283.399600pt;}
.x11{left:291.090800pt;}
.x52{left:292.316400pt;}
.x24{left:299.524267pt;}
.x3c{left:314.226267pt;}
.x9{left:330.378800pt;}
.xa{left:361.556000pt;}
.xb{left:372.704133pt;}
.xd{left:375.560933pt;}
.x29{left:382.260400pt;}
.x43{left:389.263733pt;}
.xc{left:401.834533pt;}
.x4d{left:405.787067pt;}
.x3d{left:409.384933pt;}
.x2a{left:411.240000pt;}
.xe{left:412.858000pt;}
.x57{left:418.936267pt;}
.x2b{left:421.545600pt;}
.x4e{left:428.142533pt;}
.x2c{left:433.183333pt;}
.x25{left:456.416000pt;}
.x16{left:459.645733pt;}
.x55{left:469.578133pt;}
.x17{left:482.001200pt;}
.x46{left:483.973067pt;}
.x26{left:495.232533pt;}
.x14{left:497.901467pt;}
.x47{left:503.401600pt;}
.x15{left:535.544000pt;}
}




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