
    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_be7e0108d81d47209d297e4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_1a435c3dd53bd7657f533c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_94643bef5cf2bcc3f27bbbbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957000;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_90369b1c05f3bbe3ee02f630.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139000;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_788675053f2b034b2e194355.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_2bd8866a5b221b19828c13c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.249000;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_91c5261edc9765fc97cb6e1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_df2041d47f31db164f45f61a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b75ccae2ae31566452f34f5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.017000;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_b0ac1a9a12a5e2333b48671f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024000;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_2059fac442211a448363b284.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.808105;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;}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m9{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.627600px;}
.lsc{letter-spacing:-1.465200px;}
.ls7{letter-spacing:-1.428000px;}
.lsa{letter-spacing:-1.350000px;}
.lsf{letter-spacing:-0.676800px;}
.lse{letter-spacing:-0.564000px;}
.lsd{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.258000px;}
.ls10{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls5{letter-spacing:-0.168000px;}
.ls8{letter-spacing:-0.112800px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.015167px;}
.ls4{letter-spacing:0.222000px;}
.ls9{letter-spacing:1.395000px;}
.ls0{letter-spacing:2112.204490px;}
.lsb{letter-spacing:2158.153125px;}
.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;}
}
.ws54{word-spacing:-42.000000px;}
.ws51{word-spacing:-16.694400px;}
.wsc8{word-spacing:-14.100000px;}
.wsa0{word-spacing:-12.645000px;}
.ws1{word-spacing:-12.000000px;}
.ws140{word-spacing:-11.280000px;}
.ws9e{word-spacing:-11.250000px;}
.ws132{word-spacing:-11.223600px;}
.wsb8{word-spacing:-10.603200px;}
.wse2{word-spacing:-10.332000px;}
.wsa1{word-spacing:-10.320000px;}
.ws155{word-spacing:-10.080000px;}
.ws9f{word-spacing:-9.900000px;}
.ws130{word-spacing:-9.757200px;}
.ws14e{word-spacing:-9.080400px;}
.ws53{word-spacing:-9.072000px;}
.wse0{word-spacing:-8.880000px;}
.ws0{word-spacing:-8.658000px;}
.ws2{word-spacing:-8.400000px;}
.ws152{word-spacing:-8.290800px;}
.ws52{word-spacing:-8.232000px;}
.wsfc{word-spacing:-7.614000px;}
.wse1{word-spacing:-7.414800px;}
.ws11b{word-spacing:-7.106400px;}
.ws1a{word-spacing:-6.576240px;}
.ws120{word-spacing:-6.429600px;}
.wsbe{word-spacing:-6.316800px;}
.ws12f{word-spacing:-5.978400px;}
.wsc7{word-spacing:-5.640000px;}
.ws14f{word-spacing:-5.301600px;}
.ws118{word-spacing:-5.245200px;}
.wsf6{word-spacing:-4.850400px;}
.ws110{word-spacing:-4.624800px;}
.ws13b{word-spacing:-4.230000px;}
.wsfb{word-spacing:-3.528000px;}
.ws77{word-spacing:-3.496800px;}
.ws58{word-spacing:-3.440400px;}
.ws4e{word-spacing:-3.384000px;}
.ws82{word-spacing:-3.327600px;}
.wsf3{word-spacing:-3.158400px;}
.ws8d{word-spacing:-3.102000px;}
.ws26{word-spacing:-3.045600px;}
.ws65{word-spacing:-2.989200px;}
.ws7f{word-spacing:-2.876400px;}
.ws57{word-spacing:-2.820000px;}
.ws39{word-spacing:-2.763600px;}
.ws16{word-spacing:-2.707200px;}
.ws107{word-spacing:-2.650800px;}
.ws96{word-spacing:-2.481600px;}
.ws86{word-spacing:-2.425200px;}
.ws48{word-spacing:-2.312400px;}
.ws56{word-spacing:-2.199600px;}
.ws9a{word-spacing:-1.974000px;}
.wsc4{word-spacing:-1.917600px;}
.ws6e{word-spacing:-1.861200px;}
.wsef{word-spacing:-1.748400px;}
.wsf4{word-spacing:-1.692000px;}
.ws5a{word-spacing:-1.635600px;}
.ws74{word-spacing:-1.522800px;}
.ws4f{word-spacing:-1.466400px;}
.ws10{word-spacing:-1.444800px;}
.ws2d{word-spacing:-1.410000px;}
.ws87{word-spacing:-1.353600px;}
.ws62{word-spacing:-1.297200px;}
.ws88{word-spacing:-1.184400px;}
.ws99{word-spacing:-1.128000px;}
.ws92{word-spacing:-1.071600px;}
.ws38{word-spacing:-1.015200px;}
.ws3d{word-spacing:-0.958800px;}
.ws83{word-spacing:-0.902400px;}
.wse{word-spacing:-0.774000px;}
.ws63{word-spacing:-0.733200px;}
.ws168{word-spacing:-0.705600px;}
.ws75{word-spacing:-0.676800px;}
.wscb{word-spacing:-0.620400px;}
.ws16a{word-spacing:-0.604800px;}
.ws61{word-spacing:-0.564000px;}
.wsa5{word-spacing:-0.540000px;}
.wsb{word-spacing:-0.516000px;}
.ws4a{word-spacing:-0.507600px;}
.ws1b{word-spacing:-0.444000px;}
.ws71{word-spacing:-0.394800px;}
.ws8b{word-spacing:-0.338400px;}
.ws30{word-spacing:-0.282000px;}
.ws17{word-spacing:-0.169200px;}
.ws7d{word-spacing:-0.112800px;}
.wsf{word-spacing:-0.051600px;}
.ws3{word-spacing:0.000000px;}
.wsaf{word-spacing:0.045000px;}
.ws12e{word-spacing:0.056400px;}
.wsa{word-spacing:0.154800px;}
.ws50{word-spacing:0.168000px;}
.wscd{word-spacing:0.169200px;}
.ws31{word-spacing:0.225600px;}
.ws3c{word-spacing:0.282000px;}
.ws3a{word-spacing:0.394800px;}
.ws3e{word-spacing:0.451200px;}
.ws7{word-spacing:0.619200px;}
.ws46{word-spacing:0.620400px;}
.ws15{word-spacing:0.676800px;}
.ws7b{word-spacing:0.733200px;}
.ws150{word-spacing:0.789600px;}
.ws157{word-spacing:0.810000px;}
.ws11a{word-spacing:0.846000px;}
.wsa6{word-spacing:0.900000px;}
.ws68{word-spacing:0.902400px;}
.ws8f{word-spacing:0.958800px;}
.ws18{word-spacing:1.015200px;}
.ws41{word-spacing:1.071600px;}
.ws8a{word-spacing:1.128000px;}
.ws2c{word-spacing:1.184400px;}
.ws49{word-spacing:1.240800px;}
.ws43{word-spacing:1.297200px;}
.ws15c{word-spacing:1.350000px;}
.ws9b{word-spacing:1.353600px;}
.ws45{word-spacing:1.410000px;}
.ws4{word-spacing:1.444800px;}
.ws6c{word-spacing:1.466400px;}
.ws6d{word-spacing:1.522800px;}
.ws12{word-spacing:1.599600px;}
.ws9{word-spacing:1.651200px;}
.ws72{word-spacing:1.692000px;}
.ws79{word-spacing:1.748400px;}
.ws32{word-spacing:1.804800px;}
.ws156{word-spacing:1.845000px;}
.ws4b{word-spacing:1.861200px;}
.wsa3{word-spacing:1.890000px;}
.ws64{word-spacing:1.917600px;}
.ws13{word-spacing:1.960800px;}
.ws5b{word-spacing:1.974000px;}
.ws11{word-spacing:2.012400px;}
.ws2b{word-spacing:2.030400px;}
.ws91{word-spacing:2.143200px;}
.wsb3{word-spacing:2.167200px;}
.ws7c{word-spacing:2.199600px;}
.ws29{word-spacing:2.256000px;}
.ws76{word-spacing:2.312400px;}
.ws1e{word-spacing:2.368800px;}
.wsda{word-spacing:2.481600px;}
.wsb4{word-spacing:2.528400px;}
.ws1d{word-spacing:2.538000px;}
.ws9c{word-spacing:2.594400px;}
.ws60{word-spacing:2.650800px;}
.ws117{word-spacing:2.707200px;}
.ws8{word-spacing:2.838000px;}
.ws6a{word-spacing:2.876400px;}
.ws67{word-spacing:2.932800px;}
.ws14{word-spacing:2.989200px;}
.ws19{word-spacing:3.045600px;}
.wsab{word-spacing:3.240000px;}
.ws4d{word-spacing:3.271200px;}
.ws20{word-spacing:3.327600px;}
.ws59{word-spacing:3.496800px;}
.ws145{word-spacing:3.553200px;}
.ws122{word-spacing:3.609600px;}
.ws93{word-spacing:3.666000px;}
.ws143{word-spacing:3.722400px;}
.ws24{word-spacing:3.778800px;}
.wsc{word-spacing:3.818400px;}
.ws6f{word-spacing:3.835200px;}
.ws10a{word-spacing:3.891600px;}
.ws5e{word-spacing:3.948000px;}
.wsa7{word-spacing:3.960000px;}
.ws8e{word-spacing:4.004400px;}
.ws44{word-spacing:4.117200px;}
.ws47{word-spacing:4.173600px;}
.ws169{word-spacing:4.183200px;}
.ws34{word-spacing:4.230000px;}
.ws81{word-spacing:4.286400px;}
.ws78{word-spacing:4.399200px;}
.ws85{word-spacing:4.455600px;}
.wsd{word-spacing:4.592400px;}
.ws5d{word-spacing:4.624800px;}
.ws89{word-spacing:4.681200px;}
.ws80{word-spacing:4.737600px;}
.ws42{word-spacing:4.794000px;}
.wsa4{word-spacing:4.815000px;}
.ws33{word-spacing:4.906800px;}
.ws1f{word-spacing:4.963200px;}
.wsae{word-spacing:5.040000px;}
.ws55{word-spacing:5.076000px;}
.wsa2{word-spacing:5.085000px;}
.ws69{word-spacing:5.245200px;}
.ws28{word-spacing:5.301600px;}
.ws36{word-spacing:5.358000px;}
.ws8c{word-spacing:5.414400px;}
.ws3f{word-spacing:5.470800px;}
.ws7e{word-spacing:5.583600px;}
.wse3{word-spacing:5.640000px;}
.wsf8{word-spacing:5.696400px;}
.ws2f{word-spacing:5.922000px;}
.ws3b{word-spacing:5.978400px;}
.wsc6{word-spacing:6.034800px;}
.ws98{word-spacing:6.147600px;}
.ws84{word-spacing:6.260400px;}
.ws22{word-spacing:6.316800px;}
.ws2a{word-spacing:6.486000px;}
.ws27{word-spacing:6.542400px;}
.ws6b{word-spacing:6.598800px;}
.ws66{word-spacing:6.655200px;}
.wsac{word-spacing:6.705000px;}
.ws6{word-spacing:6.708000px;}
.wsd4{word-spacing:6.768000px;}
.ws23{word-spacing:6.880800px;}
.ws158{word-spacing:7.020000px;}
.ws5c{word-spacing:7.050000px;}
.ws70{word-spacing:7.219200px;}
.ws25{word-spacing:7.388400px;}
.ws5{word-spacing:7.482000px;}
.ws164{word-spacing:7.560000px;}
.ws40{word-spacing:7.614000px;}
.wsbf{word-spacing:7.839600px;}
.ws9d{word-spacing:7.952400px;}
.ws37{word-spacing:8.008800px;}
.ws97{word-spacing:8.347200px;}
.ws1c{word-spacing:8.403600px;}
.ws129{word-spacing:8.798400px;}
.ws21{word-spacing:8.854800px;}
.ws5f{word-spacing:8.911200px;}
.ws2e{word-spacing:8.967600px;}
.wsc1{word-spacing:9.024000px;}
.ws4c{word-spacing:9.193200px;}
.ws7a{word-spacing:9.249600px;}
.wsdc{word-spacing:9.306000px;}
.ws95{word-spacing:9.362400px;}
.ws90{word-spacing:9.418800px;}
.wsc2{word-spacing:9.475200px;}
.wsb2{word-spacing:9.540000px;}
.ws104{word-spacing:9.588000px;}
.ws13c{word-spacing:9.700800px;}
.ws137{word-spacing:9.926400px;}
.wse8{word-spacing:9.982800px;}
.ws113{word-spacing:10.039200px;}
.ws151{word-spacing:10.321200px;}
.ws167{word-spacing:10.432800px;}
.wsd6{word-spacing:10.490400px;}
.ws15d{word-spacing:10.575000px;}
.wsc9{word-spacing:10.603200px;}
.ws12a{word-spacing:10.659600px;}
.ws153{word-spacing:10.716000px;}
.wsfe{word-spacing:11.054400px;}
.wsad{word-spacing:11.070000px;}
.wsb1{word-spacing:11.250000px;}
.wsf7{word-spacing:11.562000px;}
.ws160{word-spacing:11.835000px;}
.ws154{word-spacing:11.900400px;}
.ws13e{word-spacing:12.013200px;}
.wse6{word-spacing:12.351600px;}
.ws114{word-spacing:12.408000px;}
.ws11d{word-spacing:12.520800px;}
.wsd9{word-spacing:12.633600px;}
.wseb{word-spacing:12.915600px;}
.wsff{word-spacing:13.310400px;}
.ws124{word-spacing:13.366800px;}
.wsec{word-spacing:13.818000px;}
.ws131{word-spacing:13.987200px;}
.wsa8{word-spacing:13.995000px;}
.ws121{word-spacing:14.156400px;}
.wsfd{word-spacing:14.382000px;}
.wsa9{word-spacing:14.445000px;}
.wsde{word-spacing:14.946000px;}
.ws105{word-spacing:15.058800px;}
.wse7{word-spacing:15.679200px;}
.wse4{word-spacing:16.130400px;}
.wsdd{word-spacing:16.243200px;}
.ws101{word-spacing:16.299600px;}
.ws159{word-spacing:16.695000px;}
.ws10d{word-spacing:17.371200px;}
.ws166{word-spacing:17.690400px;}
.ws10b{word-spacing:17.766000px;}
.ws10e{word-spacing:17.991600px;}
.ws144{word-spacing:18.442800px;}
.wse9{word-spacing:18.555600px;}
.wsd5{word-spacing:18.612000px;}
.ws100{word-spacing:18.668400px;}
.ws165{word-spacing:18.748800px;}
.ws126{word-spacing:19.006800px;}
.ws12d{word-spacing:19.119600px;}
.wse5{word-spacing:19.232400px;}
.wsc3{word-spacing:19.345200px;}
.ws148{word-spacing:19.570800px;}
.ws12b{word-spacing:19.627200px;}
.wsbd{word-spacing:19.796400px;}
.wsf5{word-spacing:20.529600px;}
.wsd2{word-spacing:20.642400px;}
.wsc0{word-spacing:20.868000px;}
.wsc5{word-spacing:20.924400px;}
.wsd3{word-spacing:21.770400px;}
.wsb9{word-spacing:21.883200px;}
.ws139{word-spacing:22.165200px;}
.ws102{word-spacing:22.334400px;}
.wsd8{word-spacing:22.560000px;}
.ws13d{word-spacing:22.729200px;}
.ws106{word-spacing:23.011200px;}
.ws112{word-spacing:23.124000px;}
.ws15a{word-spacing:23.175000px;}
.wsdf{word-spacing:23.180400px;}
.wsee{word-spacing:23.913600px;}
.wsd0{word-spacing:24.139200px;}
.ws127{word-spacing:24.534000px;}
.ws111{word-spacing:24.646800px;}
.ws103{word-spacing:24.703200px;}
.ws125{word-spacing:25.436400px;}
.wsd7{word-spacing:25.605600px;}
.ws13a{word-spacing:26.282400px;}
.ws10f{word-spacing:26.338800px;}
.wsf2{word-spacing:26.846400px;}
.wsb5{word-spacing:27.297600px;}
.ws142{word-spacing:27.466800px;}
.ws119{word-spacing:27.692400px;}
.wsf1{word-spacing:27.861600px;}
.ws108{word-spacing:27.974400px;}
.ws11e{word-spacing:28.651200px;}
.ws147{word-spacing:29.722800px;}
.wsf0{word-spacing:30.004800px;}
.ws133{word-spacing:31.471200px;}
.ws14b{word-spacing:32.204400px;}
.wsbb{word-spacing:32.486400px;}
.ws138{word-spacing:33.050400px;}
.ws123{word-spacing:33.332400px;}
.ws14a{word-spacing:33.558000px;}
.ws136{word-spacing:33.783600px;}
.wsb0{word-spacing:34.290000px;}
.wsce{word-spacing:36.152400px;}
.wsf9{word-spacing:36.372000px;}
.wsca{word-spacing:36.716400px;}
.ws10c{word-spacing:37.054800px;}
.wsb7{word-spacing:37.111200px;}
.ws14d{word-spacing:37.224000px;}
.ws15b{word-spacing:37.350000px;}
.ws11c{word-spacing:37.618800px;}
.ws12c{word-spacing:37.957200px;}
.wscc{word-spacing:38.126400px;}
.ws141{word-spacing:38.916000px;}
.ws116{word-spacing:39.310800px;}
.wsd1{word-spacing:39.536400px;}
.wsbc{word-spacing:40.382400px;}
.ws14c{word-spacing:40.777200px;}
.ws128{word-spacing:40.890000px;}
.wsba{word-spacing:40.946400px;}
.wsea{word-spacing:42.638400px;}
.ws135{word-spacing:43.315200px;}
.ws13f{word-spacing:44.781600px;}
.ws134{word-spacing:44.838000px;}
.ws146{word-spacing:47.376000px;}
.ws115{word-spacing:49.632000px;}
.wsdb{word-spacing:53.072400px;}
.wscf{word-spacing:53.580000px;}
.ws161{word-spacing:54.945000px;}
.ws15f{word-spacing:55.170000px;}
.ws149{word-spacing:56.738400px;}
.ws109{word-spacing:57.753600px;}
.wsb6{word-spacing:58.486800px;}
.wsfa{word-spacing:63.588000px;}
.ws15e{word-spacing:64.305000px;}
.ws162{word-spacing:65.025000px;}
.ws11f{word-spacing:65.424000px;}
.ws163{word-spacing:70.920000px;}
.wsed{word-spacing:77.042400px;}
.wsaa{word-spacing:98.415000px;}
.ws35{word-spacing:741.080400px;}
.ws73{word-spacing:741.391200px;}
.ws94{word-spacing:742.146000px;}
._a{margin-left:-19.745040px;}
._b{margin-left:-11.290560px;}
._10{margin-left:-9.553500px;}
._6{margin-left:-7.275600px;}
._5{margin-left:-5.273400px;}
._4{margin-left:-3.545520px;}
._1{margin-left:-2.475900px;}
._3{margin-left:-1.083600px;}
._0{width:1.285200px;}
._2{width:2.835000px;}
._8{width:4.490640px;}
._c{width:25.995420px;}
._e{width:27.047753px;}
._f{width:41.075753px;}
._9{width:51.515520px;}
._7{width:63.419753px;}
._d{width:299.122653px;}
._11{width:403.551429px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:32.881200px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fs9{font-size:45.000000px;}
.fsa{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fs6{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs5{font-size:75.600000px;}
.fsb{font-size:102.000000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:65.368050px;}
.y44{bottom:104.173350px;}
.y1e{bottom:104.175750px;}
.y177{bottom:104.180400px;}
.y92{bottom:104.185200px;}
.y15d{bottom:104.211600px;}
.yf0{bottom:104.233200px;}
.y43{bottom:121.675050px;}
.y1d{bottom:124.423350px;}
.y176{bottom:124.428000px;}
.y1c{bottom:124.430550px;}
.y91{bottom:124.432800px;}
.y15c{bottom:124.459200px;}
.yef{bottom:124.480800px;}
.y146{bottom:124.514400px;}
.y67{bottom:139.176750px;}
.y175{bottom:144.675600px;}
.y1b{bottom:144.678150px;}
.y90{bottom:144.680400px;}
.y15b{bottom:144.706800px;}
.ya3{bottom:144.714000px;}
.yee{bottom:144.728400px;}
.y145{bottom:144.762000px;}
.y66{bottom:156.678450px;}
.y174{bottom:164.923200px;}
.y42{bottom:164.925600px;}
.y1a{bottom:164.925750px;}
.y8f{bottom:164.928000px;}
.y19a{bottom:164.928600px;}
.y15a{bottom:164.954400px;}
.ya2{bottom:164.961600px;}
.y10c{bottom:164.964000px;}
.yed{bottom:164.976000px;}
.y144{bottom:165.009600px;}
.y65{bottom:174.180300px;}
.y19{bottom:185.173350px;}
.y8e{bottom:185.175600px;}
.y199{bottom:185.176800px;}
.y41{bottom:185.187600px;}
.y159{bottom:185.202000px;}
.y7a{bottom:185.209200px;}
.y10b{bottom:185.211600px;}
.yec{bottom:185.223600px;}
.y143{bottom:185.257200px;}
.y124{bottom:191.682000px;}
.y8d{bottom:205.423200px;}
.y18{bottom:205.423350px;}
.y198{bottom:205.425000px;}
.y40{bottom:205.435200px;}
.y158{bottom:205.449600px;}
.y79{bottom:205.456800px;}
.y10a{bottom:205.459200px;}
.yeb{bottom:205.471200px;}
.y142{bottom:205.504800px;}
.y123{bottom:205.782000px;}
.y197{bottom:225.673200px;}
.y64{bottom:225.680400px;}
.y3f{bottom:225.682800px;}
.y8c{bottom:225.692400px;}
.y157{bottom:225.697200px;}
.y78{bottom:225.704400px;}
.y109{bottom:225.706800px;}
.yea{bottom:225.718800px;}
.y141{bottom:225.752400px;}
.y196{bottom:245.923200px;}
.y17{bottom:245.923350px;}
.y63{bottom:245.928000px;}
.y3e{bottom:245.930400px;}
.y8b{bottom:245.940000px;}
.y156{bottom:245.944800px;}
.y122{bottom:245.949600px;}
.y77{bottom:245.952000px;}
.y108{bottom:245.954400px;}
.ye9{bottom:245.966400px;}
.y140{bottom:246.000000px;}
.y62{bottom:266.175600px;}
.y3d{bottom:266.178000px;}
.y8a{bottom:266.187600px;}
.y155{bottom:266.192400px;}
.y121{bottom:266.197200px;}
.y76{bottom:266.199600px;}
.y107{bottom:266.202000px;}
.ye8{bottom:266.214000px;}
.y13f{bottom:266.247600px;}
.y3c{bottom:286.425600px;}
.y61{bottom:286.430400px;}
.y89{bottom:286.435200px;}
.y154{bottom:286.440000px;}
.y120{bottom:286.444800px;}
.y75{bottom:286.447200px;}
.y106{bottom:286.449600px;}
.ye7{bottom:286.461600px;}
.y173{bottom:286.476000px;}
.y13e{bottom:286.495200px;}
.y3b{bottom:306.673200px;}
.y60{bottom:306.678000px;}
.y88{bottom:306.682800px;}
.y153{bottom:306.687600px;}
.y11f{bottom:306.692400px;}
.y74{bottom:306.694800px;}
.y105{bottom:306.697200px;}
.ye6{bottom:306.709200px;}
.y172{bottom:306.723600px;}
.y13d{bottom:306.742800px;}
.y16{bottom:326.875350px;}
.y195{bottom:326.923200px;}
.y5f{bottom:326.925600px;}
.y87{bottom:326.930400px;}
.y152{bottom:326.935200px;}
.y11e{bottom:326.940000px;}
.y73{bottom:326.942400px;}
.y104{bottom:326.944800px;}
.ye5{bottom:326.956800px;}
.y171{bottom:326.971200px;}
.y13c{bottom:326.990400px;}
.y15{bottom:347.128350px;}
.y3a{bottom:347.173200px;}
.y5e{bottom:347.175600px;}
.y86{bottom:347.178000px;}
.y151{bottom:347.182800px;}
.y11d{bottom:347.187600px;}
.y72{bottom:347.190000px;}
.y103{bottom:347.192400px;}
.ye4{bottom:347.204400px;}
.y170{bottom:347.218800px;}
.y13b{bottom:347.238000px;}
.y14{bottom:367.381350px;}
.yd3{bottom:367.423200px;}
.y85{bottom:367.425600px;}
.y150{bottom:367.430400px;}
.y11c{bottom:367.435200px;}
.y71{bottom:367.437600px;}
.y102{bottom:367.440000px;}
.y5d{bottom:367.442400px;}
.ye3{bottom:367.452000px;}
.y16f{bottom:367.466400px;}
.y13a{bottom:367.485600px;}
.y13{bottom:387.634350px;}
.y84{bottom:387.673200px;}
.y14f{bottom:387.678000px;}
.y11b{bottom:387.682800px;}
.y70{bottom:387.685200px;}
.y101{bottom:387.687600px;}
.y5c{bottom:387.690000px;}
.ye2{bottom:387.699600px;}
.y16e{bottom:387.714000px;}
.y139{bottom:387.733200px;}
.y12{bottom:407.887350px;}
.yd2{bottom:407.923200px;}
.y194{bottom:407.925000px;}
.y14e{bottom:407.925600px;}
.y11a{bottom:407.930400px;}
.y6f{bottom:407.932800px;}
.y100{bottom:407.935200px;}
.y5b{bottom:407.937600px;}
.y83{bottom:407.942400px;}
.ye1{bottom:407.947200px;}
.y16d{bottom:407.961600px;}
.y138{bottom:407.980800px;}
.y11{bottom:428.140350px;}
.yd1{bottom:428.173200px;}
.y39{bottom:428.175600px;}
.y119{bottom:428.178000px;}
.y6e{bottom:428.180400px;}
.yff{bottom:428.182800px;}
.y5a{bottom:428.185200px;}
.y82{bottom:428.190000px;}
.ye0{bottom:428.194800px;}
.y16c{bottom:428.209200px;}
.yb2{bottom:428.223600px;}
.y137{bottom:428.228400px;}
.y10{bottom:448.393350px;}
.y193{bottom:448.423200px;}
.y118{bottom:448.425600px;}
.y6d{bottom:448.428000px;}
.yfe{bottom:448.430400px;}
.y59{bottom:448.432800px;}
.y81{bottom:448.437600px;}
.ydf{bottom:448.442400px;}
.y16b{bottom:448.456800px;}
.y38{bottom:448.461600px;}
.yb1{bottom:448.471200px;}
.y136{bottom:448.476000px;}
.yf{bottom:468.646350px;}
.ycf{bottom:468.670200px;}
.yd0{bottom:468.673200px;}
.y6c{bottom:468.675600px;}
.yfd{bottom:468.678000px;}
.y58{bottom:468.680400px;}
.y117{bottom:468.682800px;}
.y80{bottom:468.685200px;}
.yde{bottom:468.690000px;}
.y16a{bottom:468.704400px;}
.y37{bottom:468.709200px;}
.yb0{bottom:468.718800px;}
.y135{bottom:468.723600px;}
.ye{bottom:488.899350px;}
.ya1{bottom:488.923200px;}
.yfc{bottom:488.925600px;}
.y57{bottom:488.928000px;}
.y6b{bottom:488.930400px;}
.y7f{bottom:488.932800px;}
.ydd{bottom:488.937600px;}
.y169{bottom:488.952000px;}
.y36{bottom:488.956800px;}
.yaf{bottom:488.966400px;}
.y134{bottom:488.971200px;}
.yd{bottom:509.152350px;}
.yce{bottom:509.173200px;}
.y56{bottom:509.175600px;}
.y6a{bottom:509.178000px;}
.y7e{bottom:509.180400px;}
.ydc{bottom:509.185200px;}
.yfb{bottom:509.194800px;}
.y168{bottom:509.199600px;}
.y35{bottom:509.204400px;}
.yae{bottom:509.214000px;}
.y133{bottom:509.218800px;}
.yc{bottom:529.405350px;}
.ya0{bottom:529.423200px;}
.y69{bottom:529.425600px;}
.y7d{bottom:529.428000px;}
.ydb{bottom:529.432800px;}
.y55{bottom:529.435200px;}
.yfa{bottom:529.442400px;}
.y167{bottom:529.447200px;}
.y34{bottom:529.452000px;}
.yad{bottom:529.461600px;}
.y132{bottom:529.466400px;}
.yb{bottom:549.658350px;}
.y68{bottom:549.673200px;}
.y7c{bottom:549.675600px;}
.y116{bottom:549.678000px;}
.yda{bottom:549.680400px;}
.y54{bottom:549.682800px;}
.y14d{bottom:549.687600px;}
.yf9{bottom:549.690000px;}
.y166{bottom:549.694800px;}
.y33{bottom:549.699600px;}
.yac{bottom:549.709200px;}
.y131{bottom:549.714000px;}
.ya{bottom:569.911350px;}
.y7b{bottom:569.923200px;}
.y115{bottom:569.925600px;}
.yd9{bottom:569.928000px;}
.y53{bottom:569.930400px;}
.y14c{bottom:569.935200px;}
.yf8{bottom:569.937600px;}
.y165{bottom:569.942400px;}
.y32{bottom:569.947200px;}
.yab{bottom:569.956800px;}
.y130{bottom:569.961600px;}
.y192{bottom:577.567800px;}
.y185{bottom:577.612800px;}
.y9{bottom:590.164350px;}
.ycd{bottom:590.173200px;}
.yd8{bottom:590.175600px;}
.y52{bottom:590.178000px;}
.y14b{bottom:590.182800px;}
.yf7{bottom:590.185200px;}
.y164{bottom:590.190000px;}
.y114{bottom:590.192400px;}
.y31{bottom:590.194800px;}
.yaa{bottom:590.204400px;}
.y12f{bottom:590.209200px;}
.y191{bottom:591.821550px;}
.y184{bottom:591.866550px;}
.y190{bottom:606.075300px;}
.y183{bottom:606.120300px;}
.y8{bottom:610.417350px;}
.ycc{bottom:610.423200px;}
.y51{bottom:610.425600px;}
.y14a{bottom:610.430400px;}
.yf6{bottom:610.432800px;}
.y9f{bottom:610.435200px;}
.y163{bottom:610.437600px;}
.y113{bottom:610.440000px;}
.y30{bottom:610.442400px;}
.ya9{bottom:610.452000px;}
.y12e{bottom:610.456800px;}
.y18f{bottom:620.329050px;}
.y182{bottom:620.374050px;}
.y7{bottom:630.670350px;}
.y50{bottom:630.673200px;}
.y149{bottom:630.678000px;}
.yf5{bottom:630.680400px;}
.y9e{bottom:630.682800px;}
.y162{bottom:630.685200px;}
.y112{bottom:630.687600px;}
.y2f{bottom:630.690000px;}
.y12c{bottom:630.692400px;}
.ya8{bottom:630.699600px;}
.y12d{bottom:630.704400px;}
.y18e{bottom:634.582800px;}
.y181{bottom:638.880300px;}
.yd7{bottom:650.923200px;}
.y6{bottom:650.923350px;}
.y148{bottom:650.925600px;}
.yf4{bottom:650.928000px;}
.y9d{bottom:650.930400px;}
.y161{bottom:650.932800px;}
.y111{bottom:650.935200px;}
.y2e{bottom:650.937600px;}
.y12b{bottom:650.940000px;}
.ya7{bottom:650.947200px;}
.y4f{bottom:650.952000px;}
.y18d{bottom:653.089050px;}
.y180{bottom:653.134050px;}
.yc0{bottom:666.149850px;}
.y17f{bottom:667.387800px;}
.y147{bottom:671.173200px;}
.yf3{bottom:671.175600px;}
.y9c{bottom:671.178000px;}
.y160{bottom:671.180400px;}
.y110{bottom:671.182800px;}
.y2d{bottom:671.185200px;}
.y12a{bottom:671.187600px;}
.ya6{bottom:671.194800px;}
.y4e{bottom:671.199600px;}
.y18c{bottom:671.595300px;}
.ycb{bottom:674.626950px;}
.ybf{bottom:680.403600px;}
.y18b{bottom:685.849050px;}
.y17e{bottom:685.894050px;}
.yca{bottom:688.880700px;}
.yf2{bottom:691.423200px;}
.y5{bottom:691.423350px;}
.y9b{bottom:691.425600px;}
.y15f{bottom:691.428000px;}
.y10f{bottom:691.430400px;}
.y2c{bottom:691.432800px;}
.y129{bottom:691.435200px;}
.ya5{bottom:691.442400px;}
.y4d{bottom:691.447200px;}
.ybe{bottom:698.901750px;}
.y18a{bottom:700.102800px;}
.y17d{bottom:700.147800px;}
.yc9{bottom:703.134450px;}
.y9a{bottom:711.673200px;}
.y15e{bottom:711.675600px;}
.y10e{bottom:711.678000px;}
.y2b{bottom:711.680400px;}
.y128{bottom:711.682800px;}
.ya4{bottom:711.690000px;}
.y4c{bottom:711.694800px;}
.ybc{bottom:713.135700px;}
.ybd{bottom:713.155500px;}
.y189{bottom:714.356550px;}
.y17c{bottom:718.654050px;}
.yc8{bottom:721.640700px;}
.y188{bottom:728.610300px;}
.ybb{bottom:731.641950px;}
.yf1{bottom:731.923200px;}
.y10d{bottom:731.925600px;}
.y2a{bottom:731.928000px;}
.y127{bottom:731.930400px;}
.y99{bottom:731.937600px;}
.y4b{bottom:731.942400px;}
.y17b{bottom:732.907800px;}
.yc7{bottom:735.894450px;}
.yba{bottom:745.895700px;}
.y187{bottom:747.116550px;}
.y17a{bottom:747.161550px;}
.yc6{bottom:750.148200px;}
.y29{bottom:752.175600px;}
.y126{bottom:752.178000px;}
.y98{bottom:752.185200px;}
.y4a{bottom:752.190000px;}
.yb9{bottom:760.149450px;}
.y186{bottom:761.370300px;}
.y179{bottom:761.415300px;}
.yd6{bottom:764.170200px;}
.yc5{bottom:764.401950px;}
.y28{bottom:772.423200px;}
.y125{bottom:772.425600px;}
.y97{bottom:772.432800px;}
.y49{bottom:772.437600px;}
.yb8{bottom:778.655700px;}
.y4{bottom:792.669600px;}
.y178{bottom:792.673200px;}
.y96{bottom:792.680400px;}
.y27{bottom:792.682800px;}
.y48{bottom:792.685200px;}
.yb7{bottom:792.909450px;}
.yd5{bottom:798.671700px;}
.yc4{bottom:811.398600px;}
.yb6{bottom:811.400100px;}
.y95{bottom:812.928000px;}
.y26{bottom:812.930400px;}
.y47{bottom:812.932800px;}
.yc3{bottom:825.652350px;}
.yb5{bottom:825.653850px;}
.yd4{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y94{bottom:833.175600px;}
.y25{bottom:833.178000px;}
.y46{bottom:833.180400px;}
.yc2{bottom:839.906100px;}
.yb4{bottom:839.907600px;}
.y93{bottom:853.423200px;}
.y24{bottom:853.425600px;}
.y45{bottom:853.428000px;}
.yc1{bottom:854.159850px;}
.yb3{bottom:854.161350px;}
.y23{bottom:873.673200px;}
.y22{bottom:873.675600px;}
.y21{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y20{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.h14{height:31.245117px;}
.h2{height:35.830800px;}
.h1b{height:37.094400px;}
.hc{height:38.346000px;}
.h9{height:40.537200px;}
.h1d{height:40.672800px;}
.h13{height:41.085000px;}
.h6{height:41.641200px;}
.h1a{height:44.160000px;}
.h3{height:44.247600px;}
.h15{height:45.561600px;}
.h1c{height:46.015200px;}
.h5{height:47.220000px;}
.h8{height:47.883600px;}
.ha{height:48.352205px;}
.hd{height:48.390605px;}
.hf{height:48.429005px;}
.h12{height:48.438605px;}
.hb{height:48.448205px;}
.he{height:48.457805px;}
.h11{height:48.477005px;}
.h10{height:48.496205px;}
.h19{height:51.493200px;}
.h16{height:55.875600px;}
.h18{height:55.944000px;}
.h7{height:68.342400px;}
.h17{height:75.072000px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x7{left:88.557000px;}
.x5{left:93.543300px;}
.x6{left:99.921300px;}
.x17{left:103.200150px;}
.x16{left:106.299150px;}
.x4{left:127.042500px;}
.x8{left:133.110150px;}
.xa{left:158.629050px;}
.xb{left:162.375450px;}
.x19{left:176.032950px;}
.x13{left:180.106650px;}
.xc{left:191.211150px;}
.xd{left:198.083100px;}
.xe{left:223.914600px;}
.xf{left:227.040150px;}
.x10{left:259.424250px;}
.x9{left:264.116100px;}
.x11{left:315.753900px;}
.x12{left:320.747250px;}
.x15{left:359.291400px;}
.x14{left:372.051075px;}
.x1a{left:465.833100px;}
.x3{left:493.559400px;}
.x18{left:592.225650px;}
.x2{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.557867pt;}
.lsc{letter-spacing:-1.302400pt;}
.ls7{letter-spacing:-1.269333pt;}
.lsa{letter-spacing:-1.200000pt;}
.lsf{letter-spacing:-0.601600pt;}
.lse{letter-spacing:-0.501333pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.229333pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls5{letter-spacing:-0.149333pt;}
.ls8{letter-spacing:-0.100267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.013481pt;}
.ls4{letter-spacing:0.197333pt;}
.ls9{letter-spacing:1.240000pt;}
.ls0{letter-spacing:1877.515102pt;}
.lsb{letter-spacing:1918.358333pt;}
.ws54{word-spacing:-37.333333pt;}
.ws51{word-spacing:-14.839467pt;}
.wsc8{word-spacing:-12.533333pt;}
.wsa0{word-spacing:-11.240000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws140{word-spacing:-10.026667pt;}
.ws9e{word-spacing:-10.000000pt;}
.ws132{word-spacing:-9.976533pt;}
.wsb8{word-spacing:-9.425067pt;}
.wse2{word-spacing:-9.184000pt;}
.wsa1{word-spacing:-9.173333pt;}
.ws155{word-spacing:-8.960000pt;}
.ws9f{word-spacing:-8.800000pt;}
.ws130{word-spacing:-8.673067pt;}
.ws14e{word-spacing:-8.071467pt;}
.ws53{word-spacing:-8.064000pt;}
.wse0{word-spacing:-7.893333pt;}
.ws0{word-spacing:-7.696000pt;}
.ws2{word-spacing:-7.466667pt;}
.ws152{word-spacing:-7.369600pt;}
.ws52{word-spacing:-7.317333pt;}
.wsfc{word-spacing:-6.768000pt;}
.wse1{word-spacing:-6.590933pt;}
.ws11b{word-spacing:-6.316800pt;}
.ws1a{word-spacing:-5.845547pt;}
.ws120{word-spacing:-5.715200pt;}
.wsbe{word-spacing:-5.614933pt;}
.ws12f{word-spacing:-5.314133pt;}
.wsc7{word-spacing:-5.013333pt;}
.ws14f{word-spacing:-4.712533pt;}
.ws118{word-spacing:-4.662400pt;}
.wsf6{word-spacing:-4.311467pt;}
.ws110{word-spacing:-4.110933pt;}
.ws13b{word-spacing:-3.760000pt;}
.wsfb{word-spacing:-3.136000pt;}
.ws77{word-spacing:-3.108267pt;}
.ws58{word-spacing:-3.058133pt;}
.ws4e{word-spacing:-3.008000pt;}
.ws82{word-spacing:-2.957867pt;}
.wsf3{word-spacing:-2.807467pt;}
.ws8d{word-spacing:-2.757333pt;}
.ws26{word-spacing:-2.707200pt;}
.ws65{word-spacing:-2.657067pt;}
.ws7f{word-spacing:-2.556800pt;}
.ws57{word-spacing:-2.506667pt;}
.ws39{word-spacing:-2.456533pt;}
.ws16{word-spacing:-2.406400pt;}
.ws107{word-spacing:-2.356267pt;}
.ws96{word-spacing:-2.205867pt;}
.ws86{word-spacing:-2.155733pt;}
.ws48{word-spacing:-2.055467pt;}
.ws56{word-spacing:-1.955200pt;}
.ws9a{word-spacing:-1.754667pt;}
.wsc4{word-spacing:-1.704533pt;}
.ws6e{word-spacing:-1.654400pt;}
.wsef{word-spacing:-1.554133pt;}
.wsf4{word-spacing:-1.504000pt;}
.ws5a{word-spacing:-1.453867pt;}
.ws74{word-spacing:-1.353600pt;}
.ws4f{word-spacing:-1.303467pt;}
.ws10{word-spacing:-1.284267pt;}
.ws2d{word-spacing:-1.253333pt;}
.ws87{word-spacing:-1.203200pt;}
.ws62{word-spacing:-1.153067pt;}
.ws88{word-spacing:-1.052800pt;}
.ws99{word-spacing:-1.002667pt;}
.ws92{word-spacing:-0.952533pt;}
.ws38{word-spacing:-0.902400pt;}
.ws3d{word-spacing:-0.852267pt;}
.ws83{word-spacing:-0.802133pt;}
.wse{word-spacing:-0.688000pt;}
.ws63{word-spacing:-0.651733pt;}
.ws168{word-spacing:-0.627200pt;}
.ws75{word-spacing:-0.601600pt;}
.wscb{word-spacing:-0.551467pt;}
.ws16a{word-spacing:-0.537600pt;}
.ws61{word-spacing:-0.501333pt;}
.wsa5{word-spacing:-0.480000pt;}
.wsb{word-spacing:-0.458667pt;}
.ws4a{word-spacing:-0.451200pt;}
.ws1b{word-spacing:-0.394667pt;}
.ws71{word-spacing:-0.350933pt;}
.ws8b{word-spacing:-0.300800pt;}
.ws30{word-spacing:-0.250667pt;}
.ws17{word-spacing:-0.150400pt;}
.ws7d{word-spacing:-0.100267pt;}
.wsf{word-spacing:-0.045867pt;}
.ws3{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.040000pt;}
.ws12e{word-spacing:0.050133pt;}
.wsa{word-spacing:0.137600pt;}
.ws50{word-spacing:0.149333pt;}
.wscd{word-spacing:0.150400pt;}
.ws31{word-spacing:0.200533pt;}
.ws3c{word-spacing:0.250667pt;}
.ws3a{word-spacing:0.350933pt;}
.ws3e{word-spacing:0.401067pt;}
.ws7{word-spacing:0.550400pt;}
.ws46{word-spacing:0.551467pt;}
.ws15{word-spacing:0.601600pt;}
.ws7b{word-spacing:0.651733pt;}
.ws150{word-spacing:0.701867pt;}
.ws157{word-spacing:0.720000pt;}
.ws11a{word-spacing:0.752000pt;}
.wsa6{word-spacing:0.800000pt;}
.ws68{word-spacing:0.802133pt;}
.ws8f{word-spacing:0.852267pt;}
.ws18{word-spacing:0.902400pt;}
.ws41{word-spacing:0.952533pt;}
.ws8a{word-spacing:1.002667pt;}
.ws2c{word-spacing:1.052800pt;}
.ws49{word-spacing:1.102933pt;}
.ws43{word-spacing:1.153067pt;}
.ws15c{word-spacing:1.200000pt;}
.ws9b{word-spacing:1.203200pt;}
.ws45{word-spacing:1.253333pt;}
.ws4{word-spacing:1.284267pt;}
.ws6c{word-spacing:1.303467pt;}
.ws6d{word-spacing:1.353600pt;}
.ws12{word-spacing:1.421867pt;}
.ws9{word-spacing:1.467733pt;}
.ws72{word-spacing:1.504000pt;}
.ws79{word-spacing:1.554133pt;}
.ws32{word-spacing:1.604267pt;}
.ws156{word-spacing:1.640000pt;}
.ws4b{word-spacing:1.654400pt;}
.wsa3{word-spacing:1.680000pt;}
.ws64{word-spacing:1.704533pt;}
.ws13{word-spacing:1.742933pt;}
.ws5b{word-spacing:1.754667pt;}
.ws11{word-spacing:1.788800pt;}
.ws2b{word-spacing:1.804800pt;}
.ws91{word-spacing:1.905067pt;}
.wsb3{word-spacing:1.926400pt;}
.ws7c{word-spacing:1.955200pt;}
.ws29{word-spacing:2.005333pt;}
.ws76{word-spacing:2.055467pt;}
.ws1e{word-spacing:2.105600pt;}
.wsda{word-spacing:2.205867pt;}
.wsb4{word-spacing:2.247467pt;}
.ws1d{word-spacing:2.256000pt;}
.ws9c{word-spacing:2.306133pt;}
.ws60{word-spacing:2.356267pt;}
.ws117{word-spacing:2.406400pt;}
.ws8{word-spacing:2.522667pt;}
.ws6a{word-spacing:2.556800pt;}
.ws67{word-spacing:2.606933pt;}
.ws14{word-spacing:2.657067pt;}
.ws19{word-spacing:2.707200pt;}
.wsab{word-spacing:2.880000pt;}
.ws4d{word-spacing:2.907733pt;}
.ws20{word-spacing:2.957867pt;}
.ws59{word-spacing:3.108267pt;}
.ws145{word-spacing:3.158400pt;}
.ws122{word-spacing:3.208533pt;}
.ws93{word-spacing:3.258667pt;}
.ws143{word-spacing:3.308800pt;}
.ws24{word-spacing:3.358933pt;}
.wsc{word-spacing:3.394133pt;}
.ws6f{word-spacing:3.409067pt;}
.ws10a{word-spacing:3.459200pt;}
.ws5e{word-spacing:3.509333pt;}
.wsa7{word-spacing:3.520000pt;}
.ws8e{word-spacing:3.559467pt;}
.ws44{word-spacing:3.659733pt;}
.ws47{word-spacing:3.709867pt;}
.ws169{word-spacing:3.718400pt;}
.ws34{word-spacing:3.760000pt;}
.ws81{word-spacing:3.810133pt;}
.ws78{word-spacing:3.910400pt;}
.ws85{word-spacing:3.960533pt;}
.wsd{word-spacing:4.082133pt;}
.ws5d{word-spacing:4.110933pt;}
.ws89{word-spacing:4.161067pt;}
.ws80{word-spacing:4.211200pt;}
.ws42{word-spacing:4.261333pt;}
.wsa4{word-spacing:4.280000pt;}
.ws33{word-spacing:4.361600pt;}
.ws1f{word-spacing:4.411733pt;}
.wsae{word-spacing:4.480000pt;}
.ws55{word-spacing:4.512000pt;}
.wsa2{word-spacing:4.520000pt;}
.ws69{word-spacing:4.662400pt;}
.ws28{word-spacing:4.712533pt;}
.ws36{word-spacing:4.762667pt;}
.ws8c{word-spacing:4.812800pt;}
.ws3f{word-spacing:4.862933pt;}
.ws7e{word-spacing:4.963200pt;}
.wse3{word-spacing:5.013333pt;}
.wsf8{word-spacing:5.063467pt;}
.ws2f{word-spacing:5.264000pt;}
.ws3b{word-spacing:5.314133pt;}
.wsc6{word-spacing:5.364267pt;}
.ws98{word-spacing:5.464533pt;}
.ws84{word-spacing:5.564800pt;}
.ws22{word-spacing:5.614933pt;}
.ws2a{word-spacing:5.765333pt;}
.ws27{word-spacing:5.815467pt;}
.ws6b{word-spacing:5.865600pt;}
.ws66{word-spacing:5.915733pt;}
.wsac{word-spacing:5.960000pt;}
.ws6{word-spacing:5.962667pt;}
.wsd4{word-spacing:6.016000pt;}
.ws23{word-spacing:6.116267pt;}
.ws158{word-spacing:6.240000pt;}
.ws5c{word-spacing:6.266667pt;}
.ws70{word-spacing:6.417067pt;}
.ws25{word-spacing:6.567467pt;}
.ws5{word-spacing:6.650667pt;}
.ws164{word-spacing:6.720000pt;}
.ws40{word-spacing:6.768000pt;}
.wsbf{word-spacing:6.968533pt;}
.ws9d{word-spacing:7.068800pt;}
.ws37{word-spacing:7.118933pt;}
.ws97{word-spacing:7.419733pt;}
.ws1c{word-spacing:7.469867pt;}
.ws129{word-spacing:7.820800pt;}
.ws21{word-spacing:7.870933pt;}
.ws5f{word-spacing:7.921067pt;}
.ws2e{word-spacing:7.971200pt;}
.wsc1{word-spacing:8.021333pt;}
.ws4c{word-spacing:8.171733pt;}
.ws7a{word-spacing:8.221867pt;}
.wsdc{word-spacing:8.272000pt;}
.ws95{word-spacing:8.322133pt;}
.ws90{word-spacing:8.372267pt;}
.wsc2{word-spacing:8.422400pt;}
.wsb2{word-spacing:8.480000pt;}
.ws104{word-spacing:8.522667pt;}
.ws13c{word-spacing:8.622933pt;}
.ws137{word-spacing:8.823467pt;}
.wse8{word-spacing:8.873600pt;}
.ws113{word-spacing:8.923733pt;}
.ws151{word-spacing:9.174400pt;}
.ws167{word-spacing:9.273600pt;}
.wsd6{word-spacing:9.324800pt;}
.ws15d{word-spacing:9.400000pt;}
.wsc9{word-spacing:9.425067pt;}
.ws12a{word-spacing:9.475200pt;}
.ws153{word-spacing:9.525333pt;}
.wsfe{word-spacing:9.826133pt;}
.wsad{word-spacing:9.840000pt;}
.wsb1{word-spacing:10.000000pt;}
.wsf7{word-spacing:10.277333pt;}
.ws160{word-spacing:10.520000pt;}
.ws154{word-spacing:10.578133pt;}
.ws13e{word-spacing:10.678400pt;}
.wse6{word-spacing:10.979200pt;}
.ws114{word-spacing:11.029333pt;}
.ws11d{word-spacing:11.129600pt;}
.wsd9{word-spacing:11.229867pt;}
.wseb{word-spacing:11.480533pt;}
.wsff{word-spacing:11.831467pt;}
.ws124{word-spacing:11.881600pt;}
.wsec{word-spacing:12.282667pt;}
.ws131{word-spacing:12.433067pt;}
.wsa8{word-spacing:12.440000pt;}
.ws121{word-spacing:12.583467pt;}
.wsfd{word-spacing:12.784000pt;}
.wsa9{word-spacing:12.840000pt;}
.wsde{word-spacing:13.285333pt;}
.ws105{word-spacing:13.385600pt;}
.wse7{word-spacing:13.937067pt;}
.wse4{word-spacing:14.338133pt;}
.wsdd{word-spacing:14.438400pt;}
.ws101{word-spacing:14.488533pt;}
.ws159{word-spacing:14.840000pt;}
.ws10d{word-spacing:15.441067pt;}
.ws166{word-spacing:15.724800pt;}
.ws10b{word-spacing:15.792000pt;}
.ws10e{word-spacing:15.992533pt;}
.ws144{word-spacing:16.393600pt;}
.wse9{word-spacing:16.493867pt;}
.wsd5{word-spacing:16.544000pt;}
.ws100{word-spacing:16.594133pt;}
.ws165{word-spacing:16.665600pt;}
.ws126{word-spacing:16.894933pt;}
.ws12d{word-spacing:16.995200pt;}
.wse5{word-spacing:17.095467pt;}
.wsc3{word-spacing:17.195733pt;}
.ws148{word-spacing:17.396267pt;}
.ws12b{word-spacing:17.446400pt;}
.wsbd{word-spacing:17.596800pt;}
.wsf5{word-spacing:18.248533pt;}
.wsd2{word-spacing:18.348800pt;}
.wsc0{word-spacing:18.549333pt;}
.wsc5{word-spacing:18.599467pt;}
.wsd3{word-spacing:19.351467pt;}
.wsb9{word-spacing:19.451733pt;}
.ws139{word-spacing:19.702400pt;}
.ws102{word-spacing:19.852800pt;}
.wsd8{word-spacing:20.053333pt;}
.ws13d{word-spacing:20.203733pt;}
.ws106{word-spacing:20.454400pt;}
.ws112{word-spacing:20.554667pt;}
.ws15a{word-spacing:20.600000pt;}
.wsdf{word-spacing:20.604800pt;}
.wsee{word-spacing:21.256533pt;}
.wsd0{word-spacing:21.457067pt;}
.ws127{word-spacing:21.808000pt;}
.ws111{word-spacing:21.908267pt;}
.ws103{word-spacing:21.958400pt;}
.ws125{word-spacing:22.610133pt;}
.wsd7{word-spacing:22.760533pt;}
.ws13a{word-spacing:23.362133pt;}
.ws10f{word-spacing:23.412267pt;}
.wsf2{word-spacing:23.863467pt;}
.wsb5{word-spacing:24.264533pt;}
.ws142{word-spacing:24.414933pt;}
.ws119{word-spacing:24.615467pt;}
.wsf1{word-spacing:24.765867pt;}
.ws108{word-spacing:24.866133pt;}
.ws11e{word-spacing:25.467733pt;}
.ws147{word-spacing:26.420267pt;}
.wsf0{word-spacing:26.670933pt;}
.ws133{word-spacing:27.974400pt;}
.ws14b{word-spacing:28.626133pt;}
.wsbb{word-spacing:28.876800pt;}
.ws138{word-spacing:29.378133pt;}
.ws123{word-spacing:29.628800pt;}
.ws14a{word-spacing:29.829333pt;}
.ws136{word-spacing:30.029867pt;}
.wsb0{word-spacing:30.480000pt;}
.wsce{word-spacing:32.135467pt;}
.wsf9{word-spacing:32.330667pt;}
.wsca{word-spacing:32.636800pt;}
.ws10c{word-spacing:32.937600pt;}
.wsb7{word-spacing:32.987733pt;}
.ws14d{word-spacing:33.088000pt;}
.ws15b{word-spacing:33.200000pt;}
.ws11c{word-spacing:33.438933pt;}
.ws12c{word-spacing:33.739733pt;}
.wscc{word-spacing:33.890133pt;}
.ws141{word-spacing:34.592000pt;}
.ws116{word-spacing:34.942933pt;}
.wsd1{word-spacing:35.143467pt;}
.wsbc{word-spacing:35.895467pt;}
.ws14c{word-spacing:36.246400pt;}
.ws128{word-spacing:36.346667pt;}
.wsba{word-spacing:36.396800pt;}
.wsea{word-spacing:37.900800pt;}
.ws135{word-spacing:38.502400pt;}
.ws13f{word-spacing:39.805867pt;}
.ws134{word-spacing:39.856000pt;}
.ws146{word-spacing:42.112000pt;}
.ws115{word-spacing:44.117333pt;}
.wsdb{word-spacing:47.175467pt;}
.wscf{word-spacing:47.626667pt;}
.ws161{word-spacing:48.840000pt;}
.ws15f{word-spacing:49.040000pt;}
.ws149{word-spacing:50.434133pt;}
.ws109{word-spacing:51.336533pt;}
.wsb6{word-spacing:51.988267pt;}
.wsfa{word-spacing:56.522667pt;}
.ws15e{word-spacing:57.160000pt;}
.ws162{word-spacing:57.800000pt;}
.ws11f{word-spacing:58.154667pt;}
.ws163{word-spacing:63.040000pt;}
.wsed{word-spacing:68.482133pt;}
.wsaa{word-spacing:87.480000pt;}
.ws35{word-spacing:658.738133pt;}
.ws73{word-spacing:659.014400pt;}
.ws94{word-spacing:659.685333pt;}
._a{margin-left:-17.551147pt;}
._b{margin-left:-10.036053pt;}
._10{margin-left:-8.492000pt;}
._6{margin-left:-6.467200pt;}
._5{margin-left:-4.687467pt;}
._4{margin-left:-3.151573pt;}
._1{margin-left:-2.200800pt;}
._3{margin-left:-0.963200pt;}
._0{width:1.142400pt;}
._2{width:2.520000pt;}
._8{width:3.991680pt;}
._c{width:23.107040pt;}
._e{width:24.042447pt;}
._f{width:36.511780pt;}
._9{width:45.791573pt;}
._7{width:56.373113pt;}
._d{width:265.886803pt;}
._11{width:358.712381pt;}
.fs8{font-size:29.227733pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fs9{font-size:40.000000pt;}
.fsa{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fs6{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs5{font-size:67.200000pt;}
.fsb{font-size:90.666667pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.104933pt;}
.y44{bottom:92.598533pt;}
.y1e{bottom:92.600667pt;}
.y177{bottom:92.604800pt;}
.y92{bottom:92.609067pt;}
.y15d{bottom:92.632533pt;}
.yf0{bottom:92.651733pt;}
.y43{bottom:108.155600pt;}
.y1d{bottom:110.598533pt;}
.y176{bottom:110.602667pt;}
.y1c{bottom:110.604933pt;}
.y91{bottom:110.606933pt;}
.y15c{bottom:110.630400pt;}
.yef{bottom:110.649600pt;}
.y146{bottom:110.679467pt;}
.y67{bottom:123.712667pt;}
.y175{bottom:128.600533pt;}
.y1b{bottom:128.602800pt;}
.y90{bottom:128.604800pt;}
.y15b{bottom:128.628267pt;}
.ya3{bottom:128.634667pt;}
.yee{bottom:128.647467pt;}
.y145{bottom:128.677333pt;}
.y66{bottom:139.269733pt;}
.y174{bottom:146.598400pt;}
.y42{bottom:146.600533pt;}
.y1a{bottom:146.600667pt;}
.y8f{bottom:146.602667pt;}
.y19a{bottom:146.603200pt;}
.y15a{bottom:146.626133pt;}
.ya2{bottom:146.632533pt;}
.y10c{bottom:146.634667pt;}
.yed{bottom:146.645333pt;}
.y144{bottom:146.675200pt;}
.y65{bottom:154.826933pt;}
.y19{bottom:164.598533pt;}
.y8e{bottom:164.600533pt;}
.y199{bottom:164.601600pt;}
.y41{bottom:164.611200pt;}
.y159{bottom:164.624000pt;}
.y7a{bottom:164.630400pt;}
.y10b{bottom:164.632533pt;}
.yec{bottom:164.643200pt;}
.y143{bottom:164.673067pt;}
.y124{bottom:170.384000pt;}
.y8d{bottom:182.598400pt;}
.y18{bottom:182.598533pt;}
.y198{bottom:182.600000pt;}
.y40{bottom:182.609067pt;}
.y158{bottom:182.621867pt;}
.y79{bottom:182.628267pt;}
.y10a{bottom:182.630400pt;}
.yeb{bottom:182.641067pt;}
.y142{bottom:182.670933pt;}
.y123{bottom:182.917333pt;}
.y197{bottom:200.598400pt;}
.y64{bottom:200.604800pt;}
.y3f{bottom:200.606933pt;}
.y8c{bottom:200.615467pt;}
.y157{bottom:200.619733pt;}
.y78{bottom:200.626133pt;}
.y109{bottom:200.628267pt;}
.yea{bottom:200.638933pt;}
.y141{bottom:200.668800pt;}
.y196{bottom:218.598400pt;}
.y17{bottom:218.598533pt;}
.y63{bottom:218.602667pt;}
.y3e{bottom:218.604800pt;}
.y8b{bottom:218.613333pt;}
.y156{bottom:218.617600pt;}
.y122{bottom:218.621867pt;}
.y77{bottom:218.624000pt;}
.y108{bottom:218.626133pt;}
.ye9{bottom:218.636800pt;}
.y140{bottom:218.666667pt;}
.y62{bottom:236.600533pt;}
.y3d{bottom:236.602667pt;}
.y8a{bottom:236.611200pt;}
.y155{bottom:236.615467pt;}
.y121{bottom:236.619733pt;}
.y76{bottom:236.621867pt;}
.y107{bottom:236.624000pt;}
.ye8{bottom:236.634667pt;}
.y13f{bottom:236.664533pt;}
.y3c{bottom:254.600533pt;}
.y61{bottom:254.604800pt;}
.y89{bottom:254.609067pt;}
.y154{bottom:254.613333pt;}
.y120{bottom:254.617600pt;}
.y75{bottom:254.619733pt;}
.y106{bottom:254.621867pt;}
.ye7{bottom:254.632533pt;}
.y173{bottom:254.645333pt;}
.y13e{bottom:254.662400pt;}
.y3b{bottom:272.598400pt;}
.y60{bottom:272.602667pt;}
.y88{bottom:272.606933pt;}
.y153{bottom:272.611200pt;}
.y11f{bottom:272.615467pt;}
.y74{bottom:272.617600pt;}
.y105{bottom:272.619733pt;}
.ye6{bottom:272.630400pt;}
.y172{bottom:272.643200pt;}
.y13d{bottom:272.660267pt;}
.y16{bottom:290.555867pt;}
.y195{bottom:290.598400pt;}
.y5f{bottom:290.600533pt;}
.y87{bottom:290.604800pt;}
.y152{bottom:290.609067pt;}
.y11e{bottom:290.613333pt;}
.y73{bottom:290.615467pt;}
.y104{bottom:290.617600pt;}
.ye5{bottom:290.628267pt;}
.y171{bottom:290.641067pt;}
.y13c{bottom:290.658133pt;}
.y15{bottom:308.558533pt;}
.y3a{bottom:308.598400pt;}
.y5e{bottom:308.600533pt;}
.y86{bottom:308.602667pt;}
.y151{bottom:308.606933pt;}
.y11d{bottom:308.611200pt;}
.y72{bottom:308.613333pt;}
.y103{bottom:308.615467pt;}
.ye4{bottom:308.626133pt;}
.y170{bottom:308.638933pt;}
.y13b{bottom:308.656000pt;}
.y14{bottom:326.561200pt;}
.yd3{bottom:326.598400pt;}
.y85{bottom:326.600533pt;}
.y150{bottom:326.604800pt;}
.y11c{bottom:326.609067pt;}
.y71{bottom:326.611200pt;}
.y102{bottom:326.613333pt;}
.y5d{bottom:326.615467pt;}
.ye3{bottom:326.624000pt;}
.y16f{bottom:326.636800pt;}
.y13a{bottom:326.653867pt;}
.y13{bottom:344.563867pt;}
.y84{bottom:344.598400pt;}
.y14f{bottom:344.602667pt;}
.y11b{bottom:344.606933pt;}
.y70{bottom:344.609067pt;}
.y101{bottom:344.611200pt;}
.y5c{bottom:344.613333pt;}
.ye2{bottom:344.621867pt;}
.y16e{bottom:344.634667pt;}
.y139{bottom:344.651733pt;}
.y12{bottom:362.566533pt;}
.yd2{bottom:362.598400pt;}
.y194{bottom:362.600000pt;}
.y14e{bottom:362.600533pt;}
.y11a{bottom:362.604800pt;}
.y6f{bottom:362.606933pt;}
.y100{bottom:362.609067pt;}
.y5b{bottom:362.611200pt;}
.y83{bottom:362.615467pt;}
.ye1{bottom:362.619733pt;}
.y16d{bottom:362.632533pt;}
.y138{bottom:362.649600pt;}
.y11{bottom:380.569200pt;}
.yd1{bottom:380.598400pt;}
.y39{bottom:380.600533pt;}
.y119{bottom:380.602667pt;}
.y6e{bottom:380.604800pt;}
.yff{bottom:380.606933pt;}
.y5a{bottom:380.609067pt;}
.y82{bottom:380.613333pt;}
.ye0{bottom:380.617600pt;}
.y16c{bottom:380.630400pt;}
.yb2{bottom:380.643200pt;}
.y137{bottom:380.647467pt;}
.y10{bottom:398.571867pt;}
.y193{bottom:398.598400pt;}
.y118{bottom:398.600533pt;}
.y6d{bottom:398.602667pt;}
.yfe{bottom:398.604800pt;}
.y59{bottom:398.606933pt;}
.y81{bottom:398.611200pt;}
.ydf{bottom:398.615467pt;}
.y16b{bottom:398.628267pt;}
.y38{bottom:398.632533pt;}
.yb1{bottom:398.641067pt;}
.y136{bottom:398.645333pt;}
.yf{bottom:416.574533pt;}
.ycf{bottom:416.595733pt;}
.yd0{bottom:416.598400pt;}
.y6c{bottom:416.600533pt;}
.yfd{bottom:416.602667pt;}
.y58{bottom:416.604800pt;}
.y117{bottom:416.606933pt;}
.y80{bottom:416.609067pt;}
.yde{bottom:416.613333pt;}
.y16a{bottom:416.626133pt;}
.y37{bottom:416.630400pt;}
.yb0{bottom:416.638933pt;}
.y135{bottom:416.643200pt;}
.ye{bottom:434.577200pt;}
.ya1{bottom:434.598400pt;}
.yfc{bottom:434.600533pt;}
.y57{bottom:434.602667pt;}
.y6b{bottom:434.604800pt;}
.y7f{bottom:434.606933pt;}
.ydd{bottom:434.611200pt;}
.y169{bottom:434.624000pt;}
.y36{bottom:434.628267pt;}
.yaf{bottom:434.636800pt;}
.y134{bottom:434.641067pt;}
.yd{bottom:452.579867pt;}
.yce{bottom:452.598400pt;}
.y56{bottom:452.600533pt;}
.y6a{bottom:452.602667pt;}
.y7e{bottom:452.604800pt;}
.ydc{bottom:452.609067pt;}
.yfb{bottom:452.617600pt;}
.y168{bottom:452.621867pt;}
.y35{bottom:452.626133pt;}
.yae{bottom:452.634667pt;}
.y133{bottom:452.638933pt;}
.yc{bottom:470.582533pt;}
.ya0{bottom:470.598400pt;}
.y69{bottom:470.600533pt;}
.y7d{bottom:470.602667pt;}
.ydb{bottom:470.606933pt;}
.y55{bottom:470.609067pt;}
.yfa{bottom:470.615467pt;}
.y167{bottom:470.619733pt;}
.y34{bottom:470.624000pt;}
.yad{bottom:470.632533pt;}
.y132{bottom:470.636800pt;}
.yb{bottom:488.585200pt;}
.y68{bottom:488.598400pt;}
.y7c{bottom:488.600533pt;}
.y116{bottom:488.602667pt;}
.yda{bottom:488.604800pt;}
.y54{bottom:488.606933pt;}
.y14d{bottom:488.611200pt;}
.yf9{bottom:488.613333pt;}
.y166{bottom:488.617600pt;}
.y33{bottom:488.621867pt;}
.yac{bottom:488.630400pt;}
.y131{bottom:488.634667pt;}
.ya{bottom:506.587867pt;}
.y7b{bottom:506.598400pt;}
.y115{bottom:506.600533pt;}
.yd9{bottom:506.602667pt;}
.y53{bottom:506.604800pt;}
.y14c{bottom:506.609067pt;}
.yf8{bottom:506.611200pt;}
.y165{bottom:506.615467pt;}
.y32{bottom:506.619733pt;}
.yab{bottom:506.628267pt;}
.y130{bottom:506.632533pt;}
.y192{bottom:513.393600pt;}
.y185{bottom:513.433600pt;}
.y9{bottom:524.590533pt;}
.ycd{bottom:524.598400pt;}
.yd8{bottom:524.600533pt;}
.y52{bottom:524.602667pt;}
.y14b{bottom:524.606933pt;}
.yf7{bottom:524.609067pt;}
.y164{bottom:524.613333pt;}
.y114{bottom:524.615467pt;}
.y31{bottom:524.617600pt;}
.yaa{bottom:524.626133pt;}
.y12f{bottom:524.630400pt;}
.y191{bottom:526.063600pt;}
.y184{bottom:526.103600pt;}
.y190{bottom:538.733600pt;}
.y183{bottom:538.773600pt;}
.y8{bottom:542.593200pt;}
.ycc{bottom:542.598400pt;}
.y51{bottom:542.600533pt;}
.y14a{bottom:542.604800pt;}
.yf6{bottom:542.606933pt;}
.y9f{bottom:542.609067pt;}
.y163{bottom:542.611200pt;}
.y113{bottom:542.613333pt;}
.y30{bottom:542.615467pt;}
.ya9{bottom:542.624000pt;}
.y12e{bottom:542.628267pt;}
.y18f{bottom:551.403600pt;}
.y182{bottom:551.443600pt;}
.y7{bottom:560.595867pt;}
.y50{bottom:560.598400pt;}
.y149{bottom:560.602667pt;}
.yf5{bottom:560.604800pt;}
.y9e{bottom:560.606933pt;}
.y162{bottom:560.609067pt;}
.y112{bottom:560.611200pt;}
.y2f{bottom:560.613333pt;}
.y12c{bottom:560.615467pt;}
.ya8{bottom:560.621867pt;}
.y12d{bottom:560.626133pt;}
.y18e{bottom:564.073600pt;}
.y181{bottom:567.893600pt;}
.yd7{bottom:578.598400pt;}
.y6{bottom:578.598533pt;}
.y148{bottom:578.600533pt;}
.yf4{bottom:578.602667pt;}
.y9d{bottom:578.604800pt;}
.y161{bottom:578.606933pt;}
.y111{bottom:578.609067pt;}
.y2e{bottom:578.611200pt;}
.y12b{bottom:578.613333pt;}
.ya7{bottom:578.619733pt;}
.y4f{bottom:578.624000pt;}
.y18d{bottom:580.523600pt;}
.y180{bottom:580.563600pt;}
.yc0{bottom:592.133200pt;}
.y17f{bottom:593.233600pt;}
.y147{bottom:596.598400pt;}
.yf3{bottom:596.600533pt;}
.y9c{bottom:596.602667pt;}
.y160{bottom:596.604800pt;}
.y110{bottom:596.606933pt;}
.y2d{bottom:596.609067pt;}
.y12a{bottom:596.611200pt;}
.ya6{bottom:596.617600pt;}
.y4e{bottom:596.621867pt;}
.y18c{bottom:596.973600pt;}
.ycb{bottom:599.668400pt;}
.ybf{bottom:604.803200pt;}
.y18b{bottom:609.643600pt;}
.y17e{bottom:609.683600pt;}
.yca{bottom:612.338400pt;}
.yf2{bottom:614.598400pt;}
.y5{bottom:614.598533pt;}
.y9b{bottom:614.600533pt;}
.y15f{bottom:614.602667pt;}
.y10f{bottom:614.604800pt;}
.y2c{bottom:614.606933pt;}
.y129{bottom:614.609067pt;}
.ya5{bottom:614.615467pt;}
.y4d{bottom:614.619733pt;}
.ybe{bottom:621.246000pt;}
.y18a{bottom:622.313600pt;}
.y17d{bottom:622.353600pt;}
.yc9{bottom:625.008400pt;}
.y9a{bottom:632.598400pt;}
.y15e{bottom:632.600533pt;}
.y10e{bottom:632.602667pt;}
.y2b{bottom:632.604800pt;}
.y128{bottom:632.606933pt;}
.ya4{bottom:632.613333pt;}
.y4c{bottom:632.617600pt;}
.ybc{bottom:633.898400pt;}
.ybd{bottom:633.916000pt;}
.y189{bottom:634.983600pt;}
.y17c{bottom:638.803600pt;}
.yc8{bottom:641.458400pt;}
.y188{bottom:647.653600pt;}
.ybb{bottom:650.348400pt;}
.yf1{bottom:650.598400pt;}
.y10d{bottom:650.600533pt;}
.y2a{bottom:650.602667pt;}
.y127{bottom:650.604800pt;}
.y99{bottom:650.611200pt;}
.y4b{bottom:650.615467pt;}
.y17b{bottom:651.473600pt;}
.yc7{bottom:654.128400pt;}
.yba{bottom:663.018400pt;}
.y187{bottom:664.103600pt;}
.y17a{bottom:664.143600pt;}
.yc6{bottom:666.798400pt;}
.y29{bottom:668.600533pt;}
.y126{bottom:668.602667pt;}
.y98{bottom:668.609067pt;}
.y4a{bottom:668.613333pt;}
.yb9{bottom:675.688400pt;}
.y186{bottom:676.773600pt;}
.y179{bottom:676.813600pt;}
.yd6{bottom:679.262400pt;}
.yc5{bottom:679.468400pt;}
.y28{bottom:686.598400pt;}
.y125{bottom:686.600533pt;}
.y97{bottom:686.606933pt;}
.y49{bottom:686.611200pt;}
.yb8{bottom:692.138400pt;}
.y4{bottom:704.595200pt;}
.y178{bottom:704.598400pt;}
.y96{bottom:704.604800pt;}
.y27{bottom:704.606933pt;}
.y48{bottom:704.609067pt;}
.yb7{bottom:704.808400pt;}
.yd5{bottom:709.930400pt;}
.yc4{bottom:721.243200pt;}
.yb6{bottom:721.244533pt;}
.y95{bottom:722.602667pt;}
.y26{bottom:722.604800pt;}
.y47{bottom:722.606933pt;}
.yc3{bottom:733.913200pt;}
.yb5{bottom:733.914533pt;}
.yd4{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y94{bottom:740.600533pt;}
.y25{bottom:740.602667pt;}
.y46{bottom:740.604800pt;}
.yc2{bottom:746.583200pt;}
.yb4{bottom:746.584533pt;}
.y93{bottom:758.598400pt;}
.y24{bottom:758.600533pt;}
.y45{bottom:758.602667pt;}
.yc1{bottom:759.253200pt;}
.yb3{bottom:759.254533pt;}
.y23{bottom:776.598400pt;}
.y22{bottom:776.600533pt;}
.y21{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y20{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.h14{height:27.773438pt;}
.h2{height:31.849600pt;}
.h1b{height:32.972800pt;}
.hc{height:34.085333pt;}
.h9{height:36.033067pt;}
.h1d{height:36.153600pt;}
.h13{height:36.520000pt;}
.h6{height:37.014400pt;}
.h1a{height:39.253333pt;}
.h3{height:39.331200pt;}
.h15{height:40.499200pt;}
.h1c{height:40.902400pt;}
.h5{height:41.973333pt;}
.h8{height:42.563200pt;}
.ha{height:42.979738pt;}
.hd{height:43.013871pt;}
.hf{height:43.048004pt;}
.h12{height:43.056538pt;}
.hb{height:43.065071pt;}
.he{height:43.073604pt;}
.h11{height:43.090671pt;}
.h10{height:43.107738pt;}
.h19{height:45.771733pt;}
.h16{height:49.667200pt;}
.h18{height:49.728000pt;}
.h7{height:60.748800pt;}
.h17{height:66.730667pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x7{left:78.717333pt;}
.x5{left:83.149600pt;}
.x6{left:88.818933pt;}
.x17{left:91.733467pt;}
.x16{left:94.488133pt;}
.x4{left:112.926667pt;}
.x8{left:118.320133pt;}
.xa{left:141.003600pt;}
.xb{left:144.333733pt;}
.x19{left:156.473733pt;}
.x13{left:160.094800pt;}
.xc{left:169.965467pt;}
.xd{left:176.073867pt;}
.xe{left:199.035200pt;}
.xf{left:201.813467pt;}
.x10{left:230.599333pt;}
.x9{left:234.769867pt;}
.x11{left:280.670133pt;}
.x12{left:285.108667pt;}
.x15{left:319.370133pt;}
.x14{left:330.712067pt;}
.x1a{left:414.073867pt;}
.x3{left:438.719467pt;}
.x18{left:526.422800pt;}
.x2{left:555.590533pt;}
}




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