
    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_71aede165d4f585d3248f45f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_2fa038dc201ed0bf4215b528.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_3b9450c2690a88bdbb130cf4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160000;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_5cb156d7864fc9c84eaaff62.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e2351e7562b52544cbd4414c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2a790f56b6ef58bc1bc8dffa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_d7c16109a0f86c49a2851f1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.069000;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_9bd791672d5aa281698b4f35.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_2ce2e045fd1e4fb4d5eee199.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;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.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m9{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);}
.m5{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);}
.md{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);}
.m4{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);}
.mb{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);}
.m1{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);}
.ma{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);}
.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);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.685200px;}
.ls2{letter-spacing:-1.015200px;}
.ls1{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.282000px;}
.ls6{letter-spacing:-0.225000px;}
.ls4{letter-spacing:-0.164406px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.450000px;}
.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;}
}
.ws1{word-spacing:-16.694400px;}
.ws83{word-spacing:-15.679200px;}
.wsce{word-spacing:-11.400000px;}
.ws151{word-spacing:-10.800000px;}
.ws3{word-spacing:-9.000000px;}
.ws31{word-spacing:-8.640000px;}
.ws37{word-spacing:-5.752800px;}
.ws1d{word-spacing:-4.794000px;}
.ws76{word-spacing:-3.327600px;}
.ws7{word-spacing:-3.271200px;}
.ws8f{word-spacing:-3.214800px;}
.ws4e{word-spacing:-3.158400px;}
.ws6c{word-spacing:-3.102000px;}
.ws25{word-spacing:-3.045600px;}
.ws30{word-spacing:-2.989200px;}
.ws45{word-spacing:-2.876400px;}
.wsbe{word-spacing:-2.820000px;}
.ws9{word-spacing:-2.763600px;}
.ws39{word-spacing:-2.707200px;}
.ws2d{word-spacing:-2.650800px;}
.ws6d{word-spacing:-2.594400px;}
.wsc3{word-spacing:-2.481600px;}
.ws54{word-spacing:-2.425200px;}
.ws36{word-spacing:-2.368800px;}
.ws150{word-spacing:-2.340000px;}
.ws46{word-spacing:-2.312400px;}
.ws8b{word-spacing:-2.256000px;}
.wsb2{word-spacing:-2.199600px;}
.ws1c{word-spacing:-2.143200px;}
.wsca{word-spacing:-2.030400px;}
.ws85{word-spacing:-1.974000px;}
.ws3d{word-spacing:-1.917600px;}
.ws56{word-spacing:-1.861200px;}
.ws62{word-spacing:-1.804800px;}
.ws12a{word-spacing:-1.800000px;}
.ws146{word-spacing:-1.755000px;}
.ws9a{word-spacing:-1.748400px;}
.wsa0{word-spacing:-1.692000px;}
.ws63{word-spacing:-1.635600px;}
.wse8{word-spacing:-1.620000px;}
.wsbd{word-spacing:-1.598400px;}
.wsc0{word-spacing:-1.579200px;}
.ws13f{word-spacing:-1.575000px;}
.wsc{word-spacing:-1.522800px;}
.ws8e{word-spacing:-1.466400px;}
.ws47{word-spacing:-1.410000px;}
.ws66{word-spacing:-1.353600px;}
.wseb{word-spacing:-1.350000px;}
.ws103{word-spacing:-1.305000px;}
.ws10b{word-spacing:-1.260000px;}
.ws53{word-spacing:-1.240800px;}
.ws105{word-spacing:-1.215000px;}
.ws41{word-spacing:-1.184400px;}
.ws6b{word-spacing:-1.128000px;}
.ws113{word-spacing:-1.080000px;}
.ws55{word-spacing:-1.071600px;}
.wsc4{word-spacing:-1.036800px;}
.wsb3{word-spacing:-1.015200px;}
.ws1f{word-spacing:-0.958800px;}
.ws96{word-spacing:-0.950400px;}
.ws135{word-spacing:-0.945000px;}
.ws9c{word-spacing:-0.846000px;}
.ws90{word-spacing:-0.789600px;}
.wsb8{word-spacing:-0.777600px;}
.ws99{word-spacing:-0.734400px;}
.ws52{word-spacing:-0.733200px;}
.ws12f{word-spacing:-0.720000px;}
.ws159{word-spacing:-0.702000px;}
.wsc8{word-spacing:-0.648000px;}
.ws6e{word-spacing:-0.620400px;}
.ws8d{word-spacing:-0.564000px;}
.ws157{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.507600px;}
.ws35{word-spacing:-0.451200px;}
.ws126{word-spacing:-0.450000px;}
.ws33{word-spacing:-0.394800px;}
.ws24{word-spacing:-0.338400px;}
.wsbb{word-spacing:-0.282000px;}
.ws44{word-spacing:-0.225600px;}
.ws11e{word-spacing:-0.180000px;}
.ws6{word-spacing:-0.169200px;}
.ws12e{word-spacing:-0.090000px;}
.ws21{word-spacing:-0.056400px;}
.ws2{word-spacing:-0.043200px;}
.ws0{word-spacing:-0.032881px;}
.ws4{word-spacing:0.000000px;}
.ws43{word-spacing:0.056400px;}
.ws27{word-spacing:0.112800px;}
.wsb4{word-spacing:0.164406px;}
.ws11{word-spacing:0.169200px;}
.ws5d{word-spacing:0.225600px;}
.ws10{word-spacing:0.282000px;}
.ws140{word-spacing:0.315000px;}
.ws2e{word-spacing:0.338400px;}
.ws97{word-spacing:0.388800px;}
.wsb0{word-spacing:0.394800px;}
.ws40{word-spacing:0.451200px;}
.ws6a{word-spacing:0.507600px;}
.ws3f{word-spacing:0.564000px;}
.ws58{word-spacing:0.620400px;}
.ws17{word-spacing:0.676800px;}
.wsa2{word-spacing:0.733200px;}
.ws4b{word-spacing:0.777600px;}
.ws77{word-spacing:0.789600px;}
.ws125{word-spacing:0.810000px;}
.ws5b{word-spacing:0.846000px;}
.wsd8{word-spacing:0.855000px;}
.ws69{word-spacing:0.902400px;}
.wse3{word-spacing:0.945000px;}
.ws144{word-spacing:0.990000px;}
.wsd{word-spacing:1.015200px;}
.ws133{word-spacing:1.080000px;}
.wsc7{word-spacing:1.123200px;}
.wsaf{word-spacing:1.128000px;}
.ws3a{word-spacing:1.184400px;}
.ws101{word-spacing:1.215000px;}
.ws5e{word-spacing:1.240800px;}
.ws9b{word-spacing:1.297200px;}
.wsb9{word-spacing:1.353600px;}
.ws112{word-spacing:1.395000px;}
.ws61{word-spacing:1.410000px;}
.ws98{word-spacing:1.425600px;}
.ws7f{word-spacing:1.466400px;}
.ws4f{word-spacing:1.522800px;}
.wsf0{word-spacing:1.530000px;}
.ws3c{word-spacing:1.579200px;}
.ws124{word-spacing:1.620000px;}
.ws20{word-spacing:1.635600px;}
.ws8c{word-spacing:1.692000px;}
.ws138{word-spacing:1.710000px;}
.wse0{word-spacing:1.755000px;}
.wsba{word-spacing:1.861200px;}
.wsab{word-spacing:1.900800px;}
.ws2b{word-spacing:1.917600px;}
.ws10a{word-spacing:1.935000px;}
.wsb1{word-spacing:1.974000px;}
.wsf9{word-spacing:1.980000px;}
.ws14{word-spacing:2.030400px;}
.ws94{word-spacing:2.073600px;}
.ws26{word-spacing:2.086800px;}
.ws5{word-spacing:2.143200px;}
.ws130{word-spacing:2.160000px;}
.wsc1{word-spacing:2.199600px;}
.ws136{word-spacing:2.205000px;}
.ws15{word-spacing:2.246400px;}
.wsc2{word-spacing:2.256000px;}
.wsdc{word-spacing:2.295000px;}
.wsa{word-spacing:2.312400px;}
.wsa7{word-spacing:2.368800px;}
.ws134{word-spacing:2.385000px;}
.ws1a{word-spacing:2.425200px;}
.ws1e{word-spacing:2.481600px;}
.ws73{word-spacing:2.594400px;}
.ws132{word-spacing:2.610000px;}
.ws8{word-spacing:2.650800px;}
.wsfc{word-spacing:2.655000px;}
.wsec{word-spacing:2.700000px;}
.ws88{word-spacing:2.707200px;}
.wsad{word-spacing:2.763600px;}
.wsef{word-spacing:2.835000px;}
.ws4c{word-spacing:2.876400px;}
.wse4{word-spacing:2.925000px;}
.ws51{word-spacing:2.932800px;}
.ws57{word-spacing:2.989200px;}
.ws128{word-spacing:3.015000px;}
.ws93{word-spacing:3.024000px;}
.ws6f{word-spacing:3.045600px;}
.wse7{word-spacing:3.150000px;}
.wsa8{word-spacing:3.153600px;}
.wsb5{word-spacing:3.158400px;}
.ws32{word-spacing:3.214800px;}
.ws49{word-spacing:3.271200px;}
.wsbf{word-spacing:3.327600px;}
.wse2{word-spacing:3.375000px;}
.ws8a{word-spacing:3.384000px;}
.ws2f{word-spacing:3.440400px;}
.ws115{word-spacing:3.465000px;}
.wsaa{word-spacing:3.499200px;}
.wsfe{word-spacing:3.555000px;}
.wse1{word-spacing:3.600000px;}
.wsb7{word-spacing:3.609600px;}
.ws81{word-spacing:3.628800px;}
.wsd0{word-spacing:3.645000px;}
.ws72{word-spacing:3.666000px;}
.ws95{word-spacing:3.672000px;}
.ws91{word-spacing:3.778800px;}
.wsed{word-spacing:3.825000px;}
.ws5c{word-spacing:3.891600px;}
.ws34{word-spacing:3.948000px;}
.ws104{word-spacing:3.960000px;}
.wsb6{word-spacing:4.004400px;}
.ws5a{word-spacing:4.060800px;}
.ws14e{word-spacing:4.095000px;}
.ws60{word-spacing:4.117200px;}
.ws7c{word-spacing:4.173600px;}
.ws3e{word-spacing:4.230000px;}
.ws86{word-spacing:4.286400px;}
.wsdf{word-spacing:4.320000px;}
.ws7d{word-spacing:4.342800px;}
.ws114{word-spacing:4.455000px;}
.ws50{word-spacing:4.455600px;}
.ws142{word-spacing:4.500000px;}
.ws5f{word-spacing:4.512000px;}
.ws111{word-spacing:4.545000px;}
.ws18{word-spacing:4.568400px;}
.ws4d{word-spacing:4.624800px;}
.ws4a{word-spacing:4.665600px;}
.ws12d{word-spacing:4.680000px;}
.ws13{word-spacing:4.681200px;}
.ws158{word-spacing:4.698000px;}
.wsbc{word-spacing:4.708800px;}
.ws38{word-spacing:4.737600px;}
.wsb{word-spacing:4.794000px;}
.wsde{word-spacing:4.860000px;}
.ws7e{word-spacing:4.906800px;}
.ws87{word-spacing:4.963200px;}
.ws147{word-spacing:4.995000px;}
.ws9d{word-spacing:5.019600px;}
.wsf5{word-spacing:5.040000px;}
.wsa4{word-spacing:5.076000px;}
.ws67{word-spacing:5.132400px;}
.ws152{word-spacing:5.175000px;}
.ws80{word-spacing:5.188800px;}
.ws11b{word-spacing:5.220000px;}
.ws2c{word-spacing:5.245200px;}
.ws15a{word-spacing:5.292000px;}
.ws13d{word-spacing:5.310000px;}
.ws65{word-spacing:5.414400px;}
.ws3b{word-spacing:5.470800px;}
.wsda{word-spacing:5.490000px;}
.ws42{word-spacing:5.527200px;}
.ws156{word-spacing:5.535000px;}
.ws117{word-spacing:5.670000px;}
.wscb{word-spacing:5.696400px;}
.ws29{word-spacing:5.752800px;}
.ws149{word-spacing:5.805000px;}
.ws68{word-spacing:5.809200px;}
.wsd1{word-spacing:5.850000px;}
.ws89{word-spacing:5.865600px;}
.wsae{word-spacing:5.978400px;}
.ws102{word-spacing:6.030000px;}
.wsa9{word-spacing:6.048000px;}
.ws2a{word-spacing:6.091200px;}
.ws127{word-spacing:6.120000px;}
.ws64{word-spacing:6.147600px;}
.ws92{word-spacing:6.177600px;}
.ws28{word-spacing:6.373200px;}
.wscf{word-spacing:6.429600px;}
.ws110{word-spacing:6.480000px;}
.ws59{word-spacing:6.598800px;}
.ws82{word-spacing:6.609600px;}
.ws7a{word-spacing:6.711600px;}
.wsd6{word-spacing:6.750000px;}
.ws13e{word-spacing:6.795000px;}
.ws12{word-spacing:6.824400px;}
.ws70{word-spacing:6.880800px;}
.ws109{word-spacing:6.975000px;}
.wsd2{word-spacing:7.020000px;}
.ws84{word-spacing:7.050000px;}
.ws19{word-spacing:7.106400px;}
.ws141{word-spacing:7.155000px;}
.ws100{word-spacing:7.290000px;}
.wse{word-spacing:7.332000px;}
.wsf{word-spacing:7.388400px;}
.ws1b{word-spacing:7.444800px;}
.ws13c{word-spacing:7.515000px;}
.wsc9{word-spacing:7.557600px;}
.wse9{word-spacing:7.560000px;}
.wsd5{word-spacing:7.650000px;}
.ws9e{word-spacing:7.726800px;}
.wscc{word-spacing:7.839600px;}
.ws48{word-spacing:7.896000px;}
.ws14c{word-spacing:7.920000px;}
.wsdb{word-spacing:7.965000px;}
.ws129{word-spacing:8.010000px;}
.ws107{word-spacing:8.100000px;}
.wsa5{word-spacing:8.290800px;}
.wsac{word-spacing:8.347200px;}
.ws118{word-spacing:8.370000px;}
.ws23{word-spacing:8.460000px;}
.ws71{word-spacing:8.516400px;}
.ws106{word-spacing:8.595000px;}
.ws139{word-spacing:8.640000px;}
.wsa1{word-spacing:8.742000px;}
.ws153{word-spacing:8.775000px;}
.ws22{word-spacing:8.911200px;}
.ws155{word-spacing:8.955000px;}
.ws9f{word-spacing:9.024000px;}
.wsfa{word-spacing:9.045000px;}
.ws7b{word-spacing:9.080400px;}
.wsf6{word-spacing:9.090000px;}
.ws74{word-spacing:9.193200px;}
.ws16{word-spacing:9.249600px;}
.ws154{word-spacing:9.270000px;}
.wsff{word-spacing:9.315000px;}
.wsa3{word-spacing:9.418800px;}
.ws11a{word-spacing:9.450000px;}
.ws119{word-spacing:9.495000px;}
.ws78{word-spacing:9.531600px;}
.ws79{word-spacing:9.757200px;}
.ws14f{word-spacing:9.990000px;}
.wsc5{word-spacing:10.022400px;}
.wsfb{word-spacing:10.035000px;}
.ws14d{word-spacing:10.080000px;}
.ws12c{word-spacing:10.260000px;}
.ws123{word-spacing:10.575000px;}
.ws108{word-spacing:10.665000px;}
.ws10c{word-spacing:10.755000px;}
.wsf3{word-spacing:10.935000px;}
.wse5{word-spacing:11.025000px;}
.wsf8{word-spacing:11.250000px;}
.wsa6{word-spacing:11.336400px;}
.ws131{word-spacing:11.385000px;}
.ws13a{word-spacing:11.430000px;}
.ws14b{word-spacing:11.520000px;}
.ws122{word-spacing:11.565000px;}
.wscd{word-spacing:11.620800px;}
.ws11d{word-spacing:12.015000px;}
.wsc6{word-spacing:12.052800px;}
.ws145{word-spacing:12.105000px;}
.ws143{word-spacing:12.195000px;}
.wsf1{word-spacing:12.240000px;}
.wsd9{word-spacing:12.375000px;}
.ws12b{word-spacing:12.420000px;}
.ws10f{word-spacing:12.555000px;}
.wsf7{word-spacing:13.095000px;}
.wsf2{word-spacing:13.410000px;}
.ws137{word-spacing:13.725000px;}
.wsf4{word-spacing:14.040000px;}
.wsd4{word-spacing:15.210000px;}
.wsd3{word-spacing:15.885000px;}
.ws121{word-spacing:16.515000px;}
.wsd7{word-spacing:16.695000px;}
.ws116{word-spacing:17.370000px;}
.ws120{word-spacing:17.460000px;}
.wsfd{word-spacing:17.820000px;}
.wsea{word-spacing:18.135000px;}
.ws11f{word-spacing:19.395000px;}
.ws14a{word-spacing:19.575000px;}
.wsee{word-spacing:19.845000px;}
.ws10e{word-spacing:20.655000px;}
.ws13b{word-spacing:20.745000px;}
.ws10d{word-spacing:20.835000px;}
.wse6{word-spacing:21.240000px;}
.wsdd{word-spacing:22.725000px;}
.ws148{word-spacing:34.920000px;}
.ws11c{word-spacing:36.315000px;}
._d{margin-left:-25.754400px;}
._a{margin-left:-21.906000px;}
._18{margin-left:-19.602000px;}
._12{margin-left:-12.355200px;}
._5{margin-left:-7.275600px;}
._6{margin-left:-6.204000px;}
._7{margin-left:-4.266000px;}
._2{margin-left:-2.484000px;}
._3{margin-left:-1.428000px;}
._4{width:1.008000px;}
._9{width:2.026080px;}
._1{width:3.180000px;}
._10{width:4.660232px;}
._15{width:19.453469px;}
._14{width:21.469763px;}
._f{width:24.881951px;}
._b{width:26.825951px;}
._e{width:27.862751px;}
._16{width:30.383069px;}
._c{width:31.498971px;}
._11{width:33.090359px;}
._13{width:34.214247px;}
._17{width:35.812213px;}
._8{width:54.805935px;}
._0{width:2237.895000px;}
.fc2{color:rgb(0,94,163);}
.fc1{color:rgb(135,20,110);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:32.881200px;}
.fs6{font-size:43.200000px;}
.fs0{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.400000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y12f{bottom:103.957200px;}
.y78{bottom:103.960800px;}
.y13d{bottom:103.965150px;}
.yd4{bottom:103.965300px;}
.y4c{bottom:104.173500px;}
.y20{bottom:104.432100px;}
.y185{bottom:111.675450px;}
.y12e{bottom:116.560800px;}
.y21d{bottom:116.633550px;}
.y1e4{bottom:120.795000px;}
.y98{bottom:123.945150px;}
.ya5{bottom:123.945300px;}
.y77{bottom:123.949650px;}
.y4b{bottom:124.157850px;}
.y184{bottom:125.929200px;}
.y21c{bottom:130.887300px;}
.y1e3{bottom:135.048750px;}
.y12d{bottom:136.545300px;}
.y13c{bottom:136.549650px;}
.y1f{bottom:138.100950px;}
.y117{bottom:143.919600px;}
.y14d{bottom:143.926050px;}
.y76{bottom:143.929650px;}
.y75{bottom:143.934000px;}
.y4a{bottom:144.142200px;}
.y183{bottom:144.419850px;}
.y21b{bottom:145.141050px;}
.y1e2{bottom:149.302500px;}
.y12c{bottom:156.529650px;}
.y14c{bottom:156.534000px;}
.y1e{bottom:158.089800px;}
.y182{bottom:158.673600px;}
.y21a{bottom:159.394800px;}
.yc0{bottom:160.292400px;}
.y116{bottom:163.899600px;}
.y73{bottom:163.910400px;}
.y74{bottom:163.914000px;}
.yd3{bottom:163.918500px;}
.y49{bottom:164.126700px;}
.y1e1{bottom:167.808750px;}
.y13b{bottom:169.129650px;}
.y181{bottom:172.927350px;}
.y115{bottom:176.503200px;}
.y72{bottom:176.514000px;}
.y219{bottom:177.885600px;}
.y1c{bottom:178.066200px;}
.y1d{bottom:178.069800px;}
.ybf{bottom:180.281100px;}
.y1e0{bottom:182.062500px;}
.yee{bottom:183.898350px;}
.y97{bottom:183.898500px;}
.y48{bottom:184.111050px;}
.y180{bottom:187.181100px;}
.y114{bottom:189.106800px;}
.y13a{bottom:189.114000px;}
.y14b{bottom:189.118500px;}
.y1b{bottom:190.669800px;}
.y218{bottom:192.139350px;}
.y1df{bottom:196.316250px;}
.y12b{bottom:196.498500px;}
.y71{bottom:196.502850px;}
.ybd{bottom:200.257500px;}
.ybe{bottom:200.261100px;}
.y113{bottom:201.710400px;}
.ya4{bottom:203.882850px;}
.y47{bottom:204.095550px;}
.y17f{bottom:205.543950px;}
.y1aa{bottom:205.586250px;}
.y217{bottom:206.393100px;}
.y14a{bottom:209.098500px;}
.ybc{bottom:212.861100px;}
.y112{bottom:214.314000px;}
.y1de{bottom:214.822500px;}
.y6f{bottom:216.479250px;}
.y70{bottom:216.482850px;}
.y17e{bottom:219.797700px;}
.y1a9{bottom:219.840000px;}
.y216{bottom:220.646850px;}
.y149{bottom:221.698500px;}
.ya3{bottom:223.867200px;}
.yfe{bottom:223.867350px;}
.y96{bottom:225.467850px;}
.y139{bottom:225.494250px;}
.y111{bottom:226.914000px;}
.y1dd{bottom:229.076250px;}
.y6e{bottom:229.082850px;}
.ybb{bottom:232.846350px;}
.y17d{bottom:234.051450px;}
.y1a8{bottom:234.093750px;}
.yed{bottom:236.467200px;}
.y215{bottom:239.141400px;}
.y148{bottom:241.682850px;}
.y1dc{bottom:243.330000px;}
.yfd{bottom:243.851700px;}
.y46{bottom:245.713050px;}
.y95{bottom:245.715450px;}
.y138{bottom:245.741850px;}
.y110{bottom:246.898500px;}
.y17c{bottom:252.557700px;}
.y1a7{bottom:252.600000px;}
.yba{bottom:252.826350px;}
.y214{bottom:253.395150px;}
.yec{bottom:256.426350px;}
.y12a{bottom:256.451700px;}
.y1db{bottom:257.583750px;}
.y147{bottom:261.667350px;}
.yfc{bottom:263.836050px;}
.yb9{bottom:265.429950px;}
.y45{bottom:265.960650px;}
.y94{bottom:265.963050px;}
.yd2{bottom:265.965450px;}
.ya2{bottom:265.972650px;}
.y1a{bottom:265.977300px;}
.y44{bottom:265.977450px;}
.y137{bottom:265.989450px;}
.y17b{bottom:266.811450px;}
.y1a6{bottom:266.853750px;}
.y213{bottom:267.648900px;}
.yeb{bottom:269.029950px;}
.y1da{bottom:276.090000px;}
.y17a{bottom:281.065200px;}
.y1a5{bottom:281.107500px;}
.yea{bottom:281.633550px;}
.y146{bottom:281.651700px;}
.y212{bottom:281.829150px;}
.yfb{bottom:283.820550px;}
.yd1{bottom:286.213050px;}
.ya1{bottom:286.220250px;}
.y93{bottom:286.222650px;}
.y19{bottom:286.224900px;}
.y43{bottom:286.225050px;}
.y1d9{bottom:290.343750px;}
.ye9{bottom:294.237150px;}
.y179{bottom:295.318950px;}
.y1a4{bottom:295.361250px;}
.y211{bottom:296.082900px;}
.y145{bottom:301.636050px;}
.yfa{bottom:303.804900px;}
.y1d8{bottom:304.597500px;}
.yd0{bottom:306.463050px;}
.y6d{bottom:306.465450px;}
.ya0{bottom:306.467850px;}
.y92{bottom:306.470250px;}
.y18{bottom:306.472500px;}
.y42{bottom:306.472650px;}
.y129{bottom:306.475050px;}
.y136{bottom:306.484650px;}
.yb8{bottom:306.489450px;}
.y10f{bottom:306.513450px;}
.ye8{bottom:306.840750px;}
.y1a3{bottom:309.615000px;}
.y210{bottom:310.336650px;}
.y178{bottom:313.825200px;}
.y1d7{bottom:318.851250px;}
.ye7{bottom:319.444350px;}
.yf9{bottom:323.789250px;}
.y1a2{bottom:323.868750px;}
.y20f{bottom:324.590400px;}
.ycf{bottom:326.710650px;}
.y6c{bottom:326.713050px;}
.y9f{bottom:326.715450px;}
.y91{bottom:326.717850px;}
.y17{bottom:326.720100px;}
.y41{bottom:326.720250px;}
.y128{bottom:326.722650px;}
.y135{bottom:326.732250px;}
.yb7{bottom:326.737050px;}
.y10e{bottom:326.761050px;}
.y177{bottom:328.078950px;}
.ye6{bottom:332.047950px;}
.y1d6{bottom:337.357500px;}
.y20e{bottom:338.844150px;}
.y176{bottom:342.332700px;}
.y1a1{bottom:342.375000px;}
.yf8{bottom:343.773750px;}
.ye5{bottom:344.651550px;}
.y6b{bottom:346.963050px;}
.y90{bottom:346.965450px;}
.y16{bottom:346.967700px;}
.y40{bottom:346.967850px;}
.y127{bottom:346.970250px;}
.y134{bottom:346.979850px;}
.yb6{bottom:346.984650px;}
.y10d{bottom:347.008650px;}
.y1d5{bottom:351.611250px;}
.y20d{bottom:353.097900px;}
.y175{bottom:356.586450px;}
.y1a0{bottom:356.628750px;}
.ye4{bottom:357.251700px;}
.yf7{bottom:363.758100px;}
.y1d4{bottom:365.865000px;}
.y6a{bottom:367.210650px;}
.y8f{bottom:367.213050px;}
.y15{bottom:367.215300px;}
.y3f{bottom:367.215450px;}
.y126{bottom:367.217850px;}
.y133{bottom:367.227450px;}
.yb5{bottom:367.232250px;}
.y10c{bottom:367.256250px;}
.y19f{bottom:370.882500px;}
.y20c{bottom:371.604150px;}
.y174{bottom:375.092700px;}
.ye3{bottom:377.236050px;}
.yf6{bottom:383.742450px;}
.y1d3{bottom:384.371250px;}
.y20b{bottom:385.857900px;}
.y9e{bottom:387.460650px;}
.y14{bottom:387.462900px;}
.y3e{bottom:387.463050px;}
.y125{bottom:387.465450px;}
.y156{bottom:387.472650px;}
.y69{bottom:387.475050px;}
.y8e{bottom:387.479850px;}
.y10b{bottom:387.503850px;}
.y173{bottom:389.346450px;}
.y19e{bottom:389.388750px;}
.ye2{bottom:397.220400px;}
.y1d2{bottom:398.625000px;}
.y20a{bottom:400.111650px;}
.y172{bottom:403.600200px;}
.y19d{bottom:403.642500px;}
.y3d{bottom:407.710650px;}
.y124{bottom:407.713050px;}
.y13{bottom:407.717700px;}
.y155{bottom:407.720250px;}
.y68{bottom:407.722650px;}
.y8d{bottom:407.727450px;}
.y10a{bottom:407.751450px;}
.y1d1{bottom:412.878750px;}
.ye1{bottom:417.204900px;}
.y19c{bottom:417.896250px;}
.y209{bottom:418.617900px;}
.y171{bottom:422.106450px;}
.y1d0{bottom:427.132500px;}
.y123{bottom:427.960650px;}
.y235{bottom:427.960800px;}
.y3c{bottom:427.963050px;}
.y12{bottom:427.965300px;}
.yf5{bottom:427.965450px;}
.y154{bottom:427.967850px;}
.y67{bottom:427.970250px;}
.y8c{bottom:427.975050px;}
.y109{bottom:427.999050px;}
.y19b{bottom:432.150000px;}
.y208{bottom:432.871650px;}
.y170{bottom:436.360200px;}
.y1cf{bottom:445.638750px;}
.y207{bottom:447.125400px;}
.y3b{bottom:448.210650px;}
.y234{bottom:448.210800px;}
.y11{bottom:448.212900px;}
.yf4{bottom:448.213050px;}
.y153{bottom:448.215450px;}
.y66{bottom:448.217850px;}
.y8b{bottom:448.222650px;}
.y16f{bottom:450.613950px;}
.y19a{bottom:450.656250px;}
.y1ce{bottom:459.892500px;}
.y199{bottom:464.910000px;}
.y206{bottom:465.631650px;}
.y3a{bottom:468.460650px;}
.y233{bottom:468.460800px;}
.y152{bottom:468.463050px;}
.y65{bottom:468.465450px;}
.y8a{bottom:468.470250px;}
.y10{bottom:468.484500px;}
.y108{bottom:468.494250px;}
.y16e{bottom:469.120200px;}
.y1cd{bottom:474.146250px;}
.y198{bottom:479.163750px;}
.y205{bottom:479.885400px;}
.y16d{bottom:483.373950px;}
.y151{bottom:488.710650px;}
.y232{bottom:488.710800px;}
.y64{bottom:488.713050px;}
.y39{bottom:488.717850px;}
.yf{bottom:488.732100px;}
.y107{bottom:488.741850px;}
.y1cc{bottom:492.652500px;}
.y16c{bottom:497.627700px;}
.y197{bottom:497.670000px;}
.y204{bottom:498.391650px;}
.y1cb{bottom:506.906250px;}
.y63{bottom:508.960650px;}
.y231{bottom:508.960800px;}
.y38{bottom:508.965450px;}
.y150{bottom:508.967850px;}
.y9d{bottom:508.972650px;}
.ye{bottom:508.979700px;}
.ye0{bottom:508.982250px;}
.y106{bottom:508.989450px;}
.y16b{bottom:511.881450px;}
.y196{bottom:511.923750px;}
.y203{bottom:512.645400px;}
.y1ca{bottom:525.412500px;}
.y195{bottom:526.177500px;}
.y202{bottom:526.899150px;}
.y230{bottom:529.210800px;}
.y37{bottom:529.213050px;}
.y14f{bottom:529.215450px;}
.y132{bottom:529.217850px;}
.y9c{bottom:529.220250px;}
.yd{bottom:529.227300px;}
.ydf{bottom:529.229850px;}
.y62{bottom:529.232250px;}
.yce{bottom:529.234650px;}
.y105{bottom:529.237050px;}
.y16a{bottom:530.387700px;}
.y1c9{bottom:539.662500px;}
.y201{bottom:541.152900px;}
.y169{bottom:544.641450px;}
.y194{bottom:544.683750px;}
.y122{bottom:549.460650px;}
.y89{bottom:549.463050px;}
.y131{bottom:549.465450px;}
.y9b{bottom:549.467850px;}
.y36{bottom:549.470250px;}
.yc{bottom:549.474900px;}
.yde{bottom:549.477450px;}
.y61{bottom:549.479850px;}
.ycd{bottom:549.482250px;}
.y1c8{bottom:553.804800px;}
.y200{bottom:555.406650px;}
.y168{bottom:558.895200px;}
.y193{bottom:558.937500px;}
.y1c7{bottom:568.058550px;}
.y88{bottom:569.710650px;}
.y121{bottom:569.713050px;}
.y9a{bottom:569.715450px;}
.y35{bottom:569.717850px;}
.yb{bottom:569.722500px;}
.ydd{bottom:569.725050px;}
.y60{bottom:569.727450px;}
.ycc{bottom:569.729850px;}
.y104{bottom:569.732250px;}
.y167{bottom:573.148950px;}
.y192{bottom:573.191250px;}
.y1ff{bottom:573.901200px;}
.y1c6{bottom:586.564800px;}
.y166{bottom:587.402700px;}
.y191{bottom:587.445000px;}
.y1fe{bottom:588.154950px;}
.y120{bottom:589.960650px;}
.y22f{bottom:589.960800px;}
.y87{bottom:589.963050px;}
.y34{bottom:589.965450px;}
.ya{bottom:589.970100px;}
.y11f{bottom:589.970250px;}
.ydc{bottom:589.972650px;}
.y5f{bottom:589.975050px;}
.ycb{bottom:589.977450px;}
.y103{bottom:589.979850px;}
.y1c5{bottom:600.818550px;}
.y190{bottom:601.657950px;}
.y1fd{bottom:602.408700px;}
.y165{bottom:605.908950px;}
.y22e{bottom:610.210800px;}
.y33{bottom:610.213050px;}
.y9{bottom:610.217700px;}
.y11e{bottom:610.217850px;}
.yb4{bottom:610.220250px;}
.y5e{bottom:610.222650px;}
.yca{bottom:610.225050px;}
.y102{bottom:610.227450px;}
.y86{bottom:610.249050px;}
.y1c4{bottom:615.072300px;}
.y18f{bottom:615.911700px;}
.y164{bottom:620.162700px;}
.y1fc{bottom:620.884350px;}
.y1c3{bottom:629.326050px;}
.y32{bottom:630.460650px;}
.y22d{bottom:630.460800px;}
.y99{bottom:630.463050px;}
.y8{bottom:630.465300px;}
.y11d{bottom:630.465450px;}
.yb3{bottom:630.467850px;}
.y5d{bottom:630.470250px;}
.yc9{bottom:630.472650px;}
.y101{bottom:630.475050px;}
.y85{bottom:630.496650px;}
.y163{bottom:634.416450px;}
.y18e{bottom:634.417950px;}
.y1fb{bottom:635.138100px;}
.y1c2{bottom:643.579800px;}
.y162{bottom:648.670200px;}
.y18d{bottom:648.671700px;}
.y1fa{bottom:649.391850px;}
.yf3{bottom:650.710650px;}
.y22c{bottom:650.710800px;}
.y7{bottom:650.712900px;}
.y11c{bottom:650.713050px;}
.yb2{bottom:650.715450px;}
.y5c{bottom:650.717850px;}
.yc8{bottom:650.720250px;}
.y100{bottom:650.722650px;}
.y31{bottom:650.727450px;}
.y84{bottom:650.744250px;}
.y1c1{bottom:662.086050px;}
.y18c{bottom:662.925450px;}
.y1f9{bottom:663.645600px;}
.y161{bottom:667.176450px;}
.y6{bottom:670.960500px;}
.y11b{bottom:670.960650px;}
.y22b{bottom:670.960800px;}
.yb1{bottom:670.963050px;}
.y5b{bottom:670.965450px;}
.yc7{bottom:670.967850px;}
.yff{bottom:670.970250px;}
.y30{bottom:670.975050px;}
.y83{bottom:670.991850px;}
.y1c0{bottom:676.339800px;}
.y1f8{bottom:677.899350px;}
.y160{bottom:681.430200px;}
.y18b{bottom:681.431700px;}
.y1bf{bottom:690.593550px;}
.ydb{bottom:691.210650px;}
.y5a{bottom:691.213050px;}
.yc6{bottom:691.215450px;}
.yb0{bottom:691.217850px;}
.y2f{bottom:691.222650px;}
.y144{bottom:691.227450px;}
.y82{bottom:691.239450px;}
.y1f7{bottom:692.153100px;}
.y15f{bottom:695.683950px;}
.y18a{bottom:695.685450px;}
.y1be{bottom:704.847300px;}
.y1f6{bottom:706.406850px;}
.y15e{bottom:709.937700px;}
.y189{bottom:709.939200px;}
.y22a{bottom:711.461550px;}
.y59{bottom:711.463050px;}
.yaf{bottom:711.465450px;}
.y14e{bottom:711.467850px;}
.y2e{bottom:711.470250px;}
.y143{bottom:711.475050px;}
.y81{bottom:711.487050px;}
.y1f5{bottom:720.660600px;}
.y1bd{bottom:723.353550px;}
.y15d{bottom:724.191450px;}
.y188{bottom:724.192950px;}
.y58{bottom:731.710650px;}
.y229{bottom:731.710800px;}
.yae{bottom:731.713050px;}
.yda{bottom:731.715450px;}
.y2d{bottom:731.717850px;}
.y142{bottom:731.722650px;}
.yf2{bottom:731.725050px;}
.y80{bottom:731.734650px;}
.y1bc{bottom:737.607300px;}
.y15c{bottom:738.445200px;}
.y187{bottom:738.446700px;}
.y1f4{bottom:739.115400px;}
.y1bb{bottom:751.861050px;}
.y57{bottom:751.963050px;}
.y2c{bottom:751.965450px;}
.yc5{bottom:751.967850px;}
.y141{bottom:751.970250px;}
.yf1{bottom:751.972650px;}
.y11a{bottom:751.975050px;}
.yad{bottom:751.977450px;}
.y7f{bottom:751.982250px;}
.y15b{bottom:752.698950px;}
.y186{bottom:752.700450px;}
.y1f3{bottom:753.369150px;}
.y1ba{bottom:766.114800px;}
.y1f2{bottom:771.875400px;}
.y56{bottom:772.210650px;}
.y2b{bottom:772.213050px;}
.yc4{bottom:772.215450px;}
.y140{bottom:772.217850px;}
.yf0{bottom:772.220250px;}
.y119{bottom:772.222650px;}
.yac{bottom:772.225050px;}
.y7e{bottom:772.229850px;}
.y1b9{bottom:780.368550px;}
.y1f1{bottom:786.129150px;}
.y5{bottom:792.460500px;}
.y55{bottom:792.460650px;}
.y15a{bottom:792.462900px;}
.yc3{bottom:792.463050px;}
.y13f{bottom:792.465450px;}
.y2a{bottom:792.467850px;}
.y118{bottom:792.470250px;}
.yab{bottom:792.472650px;}
.y7d{bottom:792.477450px;}
.y1b8{bottom:794.622300px;}
.y1f0{bottom:804.635400px;}
.y1b7{bottom:808.876050px;}
.y54{bottom:812.710650px;}
.y159{bottom:812.712150px;}
.y13e{bottom:812.713050px;}
.y29{bottom:812.715450px;}
.yc2{bottom:812.717850px;}
.yaa{bottom:812.720250px;}
.y7c{bottom:812.725050px;}
.y130{bottom:812.729850px;}
.y1b6{bottom:823.129800px;}
.y1ef{bottom:823.141650px;}
.y228{bottom:831.164550px;}
.y158{bottom:832.961400px;}
.y28{bottom:832.963050px;}
.yc1{bottom:832.965450px;}
.ya9{bottom:832.967850px;}
.y7b{bottom:832.972650px;}
.y53{bottom:832.977450px;}
.y1b5{bottom:837.383550px;}
.y1ee{bottom:837.395400px;}
.y220{bottom:851.637300px;}
.y1ed{bottom:851.649150px;}
.y4{bottom:853.207500px;}
.yd9{bottom:853.210650px;}
.y27{bottom:853.213050px;}
.ya8{bottom:853.215450px;}
.y7a{bottom:853.220250px;}
.y52{bottom:853.225050px;}
.y1b4{bottom:855.889800px;}
.y21f{bottom:865.891050px;}
.y1ec{bottom:865.902900px;}
.y1b3{bottom:870.143550px;}
.y26{bottom:873.460650px;}
.ya7{bottom:873.463050px;}
.y79{bottom:873.467850px;}
.y51{bottom:873.472650px;}
.y227{bottom:880.111050px;}
.y1eb{bottom:880.156650px;}
.y1b2{bottom:884.397300px;}
.y3{bottom:893.710500px;}
.ya6{bottom:893.710650px;}
.yd8{bottom:893.713050px;}
.y25{bottom:893.715450px;}
.y157{bottom:893.717850px;}
.y50{bottom:893.720250px;}
.y226{bottom:894.364800px;}
.y1b1{bottom:898.651050px;}
.y1ea{bottom:898.662900px;}
.y225{bottom:912.871050px;}
.y1b0{bottom:912.904800px;}
.y1e9{bottom:912.916650px;}
.yd7{bottom:913.960650px;}
.y24{bottom:913.963050px;}
.yef{bottom:913.965450px;}
.y4f{bottom:913.967850px;}
.y21e{bottom:917.157300px;}
.y224{bottom:927.124800px;}
.y1e8{bottom:927.170400px;}
.y1af{bottom:931.411050px;}
.y23{bottom:934.210650px;}
.yd6{bottom:934.213050px;}
.y4e{bottom:934.215450px;}
.y1e7{bottom:945.566250px;}
.y223{bottom:945.631050px;}
.y1ae{bottom:945.664800px;}
.yd5{bottom:954.460650px;}
.y4d{bottom:954.463050px;}
.y1e6{bottom:959.820000px;}
.y222{bottom:959.884800px;}
.y1ad{bottom:959.918550px;}
.y1e5{bottom:974.073750px;}
.y221{bottom:974.138550px;}
.y1ac{bottom:974.172300px;}
.y1ab{bottom:974.175750px;}
.y2{bottom:974.710500px;}
.y22{bottom:974.710650px;}
.y1{bottom:1037.951850px;}
.y21{bottom:1037.952000px;}
.h10{height:31.276800px;}
.h9{height:35.415000px;}
.h8{height:38.775600px;}
.hb{height:38.776200px;}
.hd{height:38.790600px;}
.h7{height:38.793600px;}
.hf{height:38.833800px;}
.h2{height:40.410000px;}
.hc{height:40.608000px;}
.h12{height:41.670000px;}
.h13{height:42.498000px;}
.he{height:43.086000px;}
.h11{height:44.859000px;}
.h6{height:47.883600px;}
.h14{height:50.004000px;}
.h3{height:55.560000px;}
.ha{height:71.232000px;}
.h5{height:77.784000px;}
.h4{height:117.162000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x1e{left:83.714100px;}
.x20{left:85.029300px;}
.x19{left:86.726100px;}
.x2{left:89.294820px;}
.x3{left:93.543300px;}
.x1a{left:97.635600px;}
.x1b{left:114.798528px;}
.x23{left:116.685150px;}
.x5{left:120.297600px;}
.x1f{left:123.307050px;}
.x12{left:126.614850px;}
.x4{left:162.738000px;}
.xc{left:197.327850px;}
.x25{left:210.113850px;}
.x1c{left:214.738200px;}
.x16{left:234.718050px;}
.xf{left:244.526550px;}
.xa{left:255.406050px;}
.xd{left:280.325550px;}
.x11{left:286.262850px;}
.x17{left:315.029100px;}
.x8{left:351.125550px;}
.x1d{left:361.672650px;}
.x22{left:380.550712px;}
.x21{left:393.307425px;}
.x7{left:402.402150px;}
.xb{left:412.951650px;}
.x6{left:451.561950px;}
.x9{left:480.320400px;}
.x18{left:502.423500px;}
.x24{left:517.047150px;}
.xe{left:527.049150px;}
.x15{left:573.483450px;}
.x10{left:608.429850px;}
.x14{left:636.843300px;}
.x13{left:640.794600px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.609067pt;}
.ls2{letter-spacing:-0.902400pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.250667pt;}
.ls6{letter-spacing:-0.200000pt;}
.ls4{letter-spacing:-0.146139pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.400000pt;}
.ws1{word-spacing:-14.839467pt;}
.ws83{word-spacing:-13.937067pt;}
.wsce{word-spacing:-10.133333pt;}
.ws151{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws31{word-spacing:-7.680000pt;}
.ws37{word-spacing:-5.113600pt;}
.ws1d{word-spacing:-4.261333pt;}
.ws76{word-spacing:-2.957867pt;}
.ws7{word-spacing:-2.907733pt;}
.ws8f{word-spacing:-2.857600pt;}
.ws4e{word-spacing:-2.807467pt;}
.ws6c{word-spacing:-2.757333pt;}
.ws25{word-spacing:-2.707200pt;}
.ws30{word-spacing:-2.657067pt;}
.ws45{word-spacing:-2.556800pt;}
.wsbe{word-spacing:-2.506667pt;}
.ws9{word-spacing:-2.456533pt;}
.ws39{word-spacing:-2.406400pt;}
.ws2d{word-spacing:-2.356267pt;}
.ws6d{word-spacing:-2.306133pt;}
.wsc3{word-spacing:-2.205867pt;}
.ws54{word-spacing:-2.155733pt;}
.ws36{word-spacing:-2.105600pt;}
.ws150{word-spacing:-2.080000pt;}
.ws46{word-spacing:-2.055467pt;}
.ws8b{word-spacing:-2.005333pt;}
.wsb2{word-spacing:-1.955200pt;}
.ws1c{word-spacing:-1.905067pt;}
.wsca{word-spacing:-1.804800pt;}
.ws85{word-spacing:-1.754667pt;}
.ws3d{word-spacing:-1.704533pt;}
.ws56{word-spacing:-1.654400pt;}
.ws62{word-spacing:-1.604267pt;}
.ws12a{word-spacing:-1.600000pt;}
.ws146{word-spacing:-1.560000pt;}
.ws9a{word-spacing:-1.554133pt;}
.wsa0{word-spacing:-1.504000pt;}
.ws63{word-spacing:-1.453867pt;}
.wse8{word-spacing:-1.440000pt;}
.wsbd{word-spacing:-1.420800pt;}
.wsc0{word-spacing:-1.403733pt;}
.ws13f{word-spacing:-1.400000pt;}
.wsc{word-spacing:-1.353600pt;}
.ws8e{word-spacing:-1.303467pt;}
.ws47{word-spacing:-1.253333pt;}
.ws66{word-spacing:-1.203200pt;}
.wseb{word-spacing:-1.200000pt;}
.ws103{word-spacing:-1.160000pt;}
.ws10b{word-spacing:-1.120000pt;}
.ws53{word-spacing:-1.102933pt;}
.ws105{word-spacing:-1.080000pt;}
.ws41{word-spacing:-1.052800pt;}
.ws6b{word-spacing:-1.002667pt;}
.ws113{word-spacing:-0.960000pt;}
.ws55{word-spacing:-0.952533pt;}
.wsc4{word-spacing:-0.921600pt;}
.wsb3{word-spacing:-0.902400pt;}
.ws1f{word-spacing:-0.852267pt;}
.ws96{word-spacing:-0.844800pt;}
.ws135{word-spacing:-0.840000pt;}
.ws9c{word-spacing:-0.752000pt;}
.ws90{word-spacing:-0.701867pt;}
.wsb8{word-spacing:-0.691200pt;}
.ws99{word-spacing:-0.652800pt;}
.ws52{word-spacing:-0.651733pt;}
.ws12f{word-spacing:-0.640000pt;}
.ws159{word-spacing:-0.624000pt;}
.wsc8{word-spacing:-0.576000pt;}
.ws6e{word-spacing:-0.551467pt;}
.ws8d{word-spacing:-0.501333pt;}
.ws157{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.451200pt;}
.ws35{word-spacing:-0.401067pt;}
.ws126{word-spacing:-0.400000pt;}
.ws33{word-spacing:-0.350933pt;}
.ws24{word-spacing:-0.300800pt;}
.wsbb{word-spacing:-0.250667pt;}
.ws44{word-spacing:-0.200533pt;}
.ws11e{word-spacing:-0.160000pt;}
.ws6{word-spacing:-0.150400pt;}
.ws12e{word-spacing:-0.080000pt;}
.ws21{word-spacing:-0.050133pt;}
.ws2{word-spacing:-0.038400pt;}
.ws0{word-spacing:-0.029228pt;}
.ws4{word-spacing:0.000000pt;}
.ws43{word-spacing:0.050133pt;}
.ws27{word-spacing:0.100267pt;}
.wsb4{word-spacing:0.146139pt;}
.ws11{word-spacing:0.150400pt;}
.ws5d{word-spacing:0.200533pt;}
.ws10{word-spacing:0.250667pt;}
.ws140{word-spacing:0.280000pt;}
.ws2e{word-spacing:0.300800pt;}
.ws97{word-spacing:0.345600pt;}
.wsb0{word-spacing:0.350933pt;}
.ws40{word-spacing:0.401067pt;}
.ws6a{word-spacing:0.451200pt;}
.ws3f{word-spacing:0.501333pt;}
.ws58{word-spacing:0.551467pt;}
.ws17{word-spacing:0.601600pt;}
.wsa2{word-spacing:0.651733pt;}
.ws4b{word-spacing:0.691200pt;}
.ws77{word-spacing:0.701867pt;}
.ws125{word-spacing:0.720000pt;}
.ws5b{word-spacing:0.752000pt;}
.wsd8{word-spacing:0.760000pt;}
.ws69{word-spacing:0.802133pt;}
.wse3{word-spacing:0.840000pt;}
.ws144{word-spacing:0.880000pt;}
.wsd{word-spacing:0.902400pt;}
.ws133{word-spacing:0.960000pt;}
.wsc7{word-spacing:0.998400pt;}
.wsaf{word-spacing:1.002667pt;}
.ws3a{word-spacing:1.052800pt;}
.ws101{word-spacing:1.080000pt;}
.ws5e{word-spacing:1.102933pt;}
.ws9b{word-spacing:1.153067pt;}
.wsb9{word-spacing:1.203200pt;}
.ws112{word-spacing:1.240000pt;}
.ws61{word-spacing:1.253333pt;}
.ws98{word-spacing:1.267200pt;}
.ws7f{word-spacing:1.303467pt;}
.ws4f{word-spacing:1.353600pt;}
.wsf0{word-spacing:1.360000pt;}
.ws3c{word-spacing:1.403733pt;}
.ws124{word-spacing:1.440000pt;}
.ws20{word-spacing:1.453867pt;}
.ws8c{word-spacing:1.504000pt;}
.ws138{word-spacing:1.520000pt;}
.wse0{word-spacing:1.560000pt;}
.wsba{word-spacing:1.654400pt;}
.wsab{word-spacing:1.689600pt;}
.ws2b{word-spacing:1.704533pt;}
.ws10a{word-spacing:1.720000pt;}
.wsb1{word-spacing:1.754667pt;}
.wsf9{word-spacing:1.760000pt;}
.ws14{word-spacing:1.804800pt;}
.ws94{word-spacing:1.843200pt;}
.ws26{word-spacing:1.854933pt;}
.ws5{word-spacing:1.905067pt;}
.ws130{word-spacing:1.920000pt;}
.wsc1{word-spacing:1.955200pt;}
.ws136{word-spacing:1.960000pt;}
.ws15{word-spacing:1.996800pt;}
.wsc2{word-spacing:2.005333pt;}
.wsdc{word-spacing:2.040000pt;}
.wsa{word-spacing:2.055467pt;}
.wsa7{word-spacing:2.105600pt;}
.ws134{word-spacing:2.120000pt;}
.ws1a{word-spacing:2.155733pt;}
.ws1e{word-spacing:2.205867pt;}
.ws73{word-spacing:2.306133pt;}
.ws132{word-spacing:2.320000pt;}
.ws8{word-spacing:2.356267pt;}
.wsfc{word-spacing:2.360000pt;}
.wsec{word-spacing:2.400000pt;}
.ws88{word-spacing:2.406400pt;}
.wsad{word-spacing:2.456533pt;}
.wsef{word-spacing:2.520000pt;}
.ws4c{word-spacing:2.556800pt;}
.wse4{word-spacing:2.600000pt;}
.ws51{word-spacing:2.606933pt;}
.ws57{word-spacing:2.657067pt;}
.ws128{word-spacing:2.680000pt;}
.ws93{word-spacing:2.688000pt;}
.ws6f{word-spacing:2.707200pt;}
.wse7{word-spacing:2.800000pt;}
.wsa8{word-spacing:2.803200pt;}
.wsb5{word-spacing:2.807467pt;}
.ws32{word-spacing:2.857600pt;}
.ws49{word-spacing:2.907733pt;}
.wsbf{word-spacing:2.957867pt;}
.wse2{word-spacing:3.000000pt;}
.ws8a{word-spacing:3.008000pt;}
.ws2f{word-spacing:3.058133pt;}
.ws115{word-spacing:3.080000pt;}
.wsaa{word-spacing:3.110400pt;}
.wsfe{word-spacing:3.160000pt;}
.wse1{word-spacing:3.200000pt;}
.wsb7{word-spacing:3.208533pt;}
.ws81{word-spacing:3.225600pt;}
.wsd0{word-spacing:3.240000pt;}
.ws72{word-spacing:3.258667pt;}
.ws95{word-spacing:3.264000pt;}
.ws91{word-spacing:3.358933pt;}
.wsed{word-spacing:3.400000pt;}
.ws5c{word-spacing:3.459200pt;}
.ws34{word-spacing:3.509333pt;}
.ws104{word-spacing:3.520000pt;}
.wsb6{word-spacing:3.559467pt;}
.ws5a{word-spacing:3.609600pt;}
.ws14e{word-spacing:3.640000pt;}
.ws60{word-spacing:3.659733pt;}
.ws7c{word-spacing:3.709867pt;}
.ws3e{word-spacing:3.760000pt;}
.ws86{word-spacing:3.810133pt;}
.wsdf{word-spacing:3.840000pt;}
.ws7d{word-spacing:3.860267pt;}
.ws114{word-spacing:3.960000pt;}
.ws50{word-spacing:3.960533pt;}
.ws142{word-spacing:4.000000pt;}
.ws5f{word-spacing:4.010667pt;}
.ws111{word-spacing:4.040000pt;}
.ws18{word-spacing:4.060800pt;}
.ws4d{word-spacing:4.110933pt;}
.ws4a{word-spacing:4.147200pt;}
.ws12d{word-spacing:4.160000pt;}
.ws13{word-spacing:4.161067pt;}
.ws158{word-spacing:4.176000pt;}
.wsbc{word-spacing:4.185600pt;}
.ws38{word-spacing:4.211200pt;}
.wsb{word-spacing:4.261333pt;}
.wsde{word-spacing:4.320000pt;}
.ws7e{word-spacing:4.361600pt;}
.ws87{word-spacing:4.411733pt;}
.ws147{word-spacing:4.440000pt;}
.ws9d{word-spacing:4.461867pt;}
.wsf5{word-spacing:4.480000pt;}
.wsa4{word-spacing:4.512000pt;}
.ws67{word-spacing:4.562133pt;}
.ws152{word-spacing:4.600000pt;}
.ws80{word-spacing:4.612267pt;}
.ws11b{word-spacing:4.640000pt;}
.ws2c{word-spacing:4.662400pt;}
.ws15a{word-spacing:4.704000pt;}
.ws13d{word-spacing:4.720000pt;}
.ws65{word-spacing:4.812800pt;}
.ws3b{word-spacing:4.862933pt;}
.wsda{word-spacing:4.880000pt;}
.ws42{word-spacing:4.913067pt;}
.ws156{word-spacing:4.920000pt;}
.ws117{word-spacing:5.040000pt;}
.wscb{word-spacing:5.063467pt;}
.ws29{word-spacing:5.113600pt;}
.ws149{word-spacing:5.160000pt;}
.ws68{word-spacing:5.163733pt;}
.wsd1{word-spacing:5.200000pt;}
.ws89{word-spacing:5.213867pt;}
.wsae{word-spacing:5.314133pt;}
.ws102{word-spacing:5.360000pt;}
.wsa9{word-spacing:5.376000pt;}
.ws2a{word-spacing:5.414400pt;}
.ws127{word-spacing:5.440000pt;}
.ws64{word-spacing:5.464533pt;}
.ws92{word-spacing:5.491200pt;}
.ws28{word-spacing:5.665067pt;}
.wscf{word-spacing:5.715200pt;}
.ws110{word-spacing:5.760000pt;}
.ws59{word-spacing:5.865600pt;}
.ws82{word-spacing:5.875200pt;}
.ws7a{word-spacing:5.965867pt;}
.wsd6{word-spacing:6.000000pt;}
.ws13e{word-spacing:6.040000pt;}
.ws12{word-spacing:6.066133pt;}
.ws70{word-spacing:6.116267pt;}
.ws109{word-spacing:6.200000pt;}
.wsd2{word-spacing:6.240000pt;}
.ws84{word-spacing:6.266667pt;}
.ws19{word-spacing:6.316800pt;}
.ws141{word-spacing:6.360000pt;}
.ws100{word-spacing:6.480000pt;}
.wse{word-spacing:6.517333pt;}
.wsf{word-spacing:6.567467pt;}
.ws1b{word-spacing:6.617600pt;}
.ws13c{word-spacing:6.680000pt;}
.wsc9{word-spacing:6.717867pt;}
.wse9{word-spacing:6.720000pt;}
.wsd5{word-spacing:6.800000pt;}
.ws9e{word-spacing:6.868267pt;}
.wscc{word-spacing:6.968533pt;}
.ws48{word-spacing:7.018667pt;}
.ws14c{word-spacing:7.040000pt;}
.wsdb{word-spacing:7.080000pt;}
.ws129{word-spacing:7.120000pt;}
.ws107{word-spacing:7.200000pt;}
.wsa5{word-spacing:7.369600pt;}
.wsac{word-spacing:7.419733pt;}
.ws118{word-spacing:7.440000pt;}
.ws23{word-spacing:7.520000pt;}
.ws71{word-spacing:7.570133pt;}
.ws106{word-spacing:7.640000pt;}
.ws139{word-spacing:7.680000pt;}
.wsa1{word-spacing:7.770667pt;}
.ws153{word-spacing:7.800000pt;}
.ws22{word-spacing:7.921067pt;}
.ws155{word-spacing:7.960000pt;}
.ws9f{word-spacing:8.021333pt;}
.wsfa{word-spacing:8.040000pt;}
.ws7b{word-spacing:8.071467pt;}
.wsf6{word-spacing:8.080000pt;}
.ws74{word-spacing:8.171733pt;}
.ws16{word-spacing:8.221867pt;}
.ws154{word-spacing:8.240000pt;}
.wsff{word-spacing:8.280000pt;}
.wsa3{word-spacing:8.372267pt;}
.ws11a{word-spacing:8.400000pt;}
.ws119{word-spacing:8.440000pt;}
.ws78{word-spacing:8.472533pt;}
.ws79{word-spacing:8.673067pt;}
.ws14f{word-spacing:8.880000pt;}
.wsc5{word-spacing:8.908800pt;}
.wsfb{word-spacing:8.920000pt;}
.ws14d{word-spacing:8.960000pt;}
.ws12c{word-spacing:9.120000pt;}
.ws123{word-spacing:9.400000pt;}
.ws108{word-spacing:9.480000pt;}
.ws10c{word-spacing:9.560000pt;}
.wsf3{word-spacing:9.720000pt;}
.wse5{word-spacing:9.800000pt;}
.wsf8{word-spacing:10.000000pt;}
.wsa6{word-spacing:10.076800pt;}
.ws131{word-spacing:10.120000pt;}
.ws13a{word-spacing:10.160000pt;}
.ws14b{word-spacing:10.240000pt;}
.ws122{word-spacing:10.280000pt;}
.wscd{word-spacing:10.329600pt;}
.ws11d{word-spacing:10.680000pt;}
.wsc6{word-spacing:10.713600pt;}
.ws145{word-spacing:10.760000pt;}
.ws143{word-spacing:10.840000pt;}
.wsf1{word-spacing:10.880000pt;}
.wsd9{word-spacing:11.000000pt;}
.ws12b{word-spacing:11.040000pt;}
.ws10f{word-spacing:11.160000pt;}
.wsf7{word-spacing:11.640000pt;}
.wsf2{word-spacing:11.920000pt;}
.ws137{word-spacing:12.200000pt;}
.wsf4{word-spacing:12.480000pt;}
.wsd4{word-spacing:13.520000pt;}
.wsd3{word-spacing:14.120000pt;}
.ws121{word-spacing:14.680000pt;}
.wsd7{word-spacing:14.840000pt;}
.ws116{word-spacing:15.440000pt;}
.ws120{word-spacing:15.520000pt;}
.wsfd{word-spacing:15.840000pt;}
.wsea{word-spacing:16.120000pt;}
.ws11f{word-spacing:17.240000pt;}
.ws14a{word-spacing:17.400000pt;}
.wsee{word-spacing:17.640000pt;}
.ws10e{word-spacing:18.360000pt;}
.ws13b{word-spacing:18.440000pt;}
.ws10d{word-spacing:18.520000pt;}
.wse6{word-spacing:18.880000pt;}
.wsdd{word-spacing:20.200000pt;}
.ws148{word-spacing:31.040000pt;}
.ws11c{word-spacing:32.280000pt;}
._d{margin-left:-22.892800pt;}
._a{margin-left:-19.472000pt;}
._18{margin-left:-17.424000pt;}
._12{margin-left:-10.982400pt;}
._5{margin-left:-6.467200pt;}
._6{margin-left:-5.514667pt;}
._7{margin-left:-3.792000pt;}
._2{margin-left:-2.208000pt;}
._3{margin-left:-1.269333pt;}
._4{width:0.896000pt;}
._9{width:1.800960pt;}
._1{width:2.826667pt;}
._10{width:4.142428pt;}
._15{width:17.291973pt;}
._14{width:19.084234pt;}
._f{width:22.117290pt;}
._b{width:23.845290pt;}
._e{width:24.766890pt;}
._16{width:27.007173pt;}
._c{width:27.999086pt;}
._11{width:29.413652pt;}
._13{width:30.412664pt;}
._17{width:31.833078pt;}
._8{width:48.716386pt;}
._0{width:1989.240000pt;}
.fs5{font-size:29.227733pt;}
.fs6{font-size:38.400000pt;}
.fs0{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.133333pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y12f{bottom:92.406400pt;}
.y78{bottom:92.409600pt;}
.y13d{bottom:92.413467pt;}
.yd4{bottom:92.413600pt;}
.y4c{bottom:92.598667pt;}
.y20{bottom:92.828533pt;}
.y185{bottom:99.267067pt;}
.y12e{bottom:103.609600pt;}
.y21d{bottom:103.674267pt;}
.y1e4{bottom:107.373333pt;}
.y98{bottom:110.173467pt;}
.ya5{bottom:110.173600pt;}
.y77{bottom:110.177467pt;}
.y4b{bottom:110.362533pt;}
.y184{bottom:111.937067pt;}
.y21c{bottom:116.344267pt;}
.y1e3{bottom:120.043333pt;}
.y12d{bottom:121.373600pt;}
.y13c{bottom:121.377467pt;}
.y1f{bottom:122.756400pt;}
.y117{bottom:127.928533pt;}
.y14d{bottom:127.934267pt;}
.y76{bottom:127.937467pt;}
.y75{bottom:127.941333pt;}
.y4a{bottom:128.126400pt;}
.y183{bottom:128.373200pt;}
.y21b{bottom:129.014267pt;}
.y1e2{bottom:132.713333pt;}
.y12c{bottom:139.137467pt;}
.y14c{bottom:139.141333pt;}
.y1e{bottom:140.524267pt;}
.y182{bottom:141.043200pt;}
.y21a{bottom:141.684267pt;}
.yc0{bottom:142.482133pt;}
.y116{bottom:145.688533pt;}
.y73{bottom:145.698133pt;}
.y74{bottom:145.701333pt;}
.yd3{bottom:145.705333pt;}
.y49{bottom:145.890400pt;}
.y1e1{bottom:149.163333pt;}
.y13b{bottom:150.337467pt;}
.y181{bottom:153.713200pt;}
.y115{bottom:156.891733pt;}
.y72{bottom:156.901333pt;}
.y219{bottom:158.120533pt;}
.y1c{bottom:158.281067pt;}
.y1d{bottom:158.284267pt;}
.ybf{bottom:160.249867pt;}
.y1e0{bottom:161.833333pt;}
.yee{bottom:163.465200pt;}
.y97{bottom:163.465333pt;}
.y48{bottom:163.654267pt;}
.y180{bottom:166.383200pt;}
.y114{bottom:168.094933pt;}
.y13a{bottom:168.101333pt;}
.y14b{bottom:168.105333pt;}
.y1b{bottom:169.484267pt;}
.y218{bottom:170.790533pt;}
.y1df{bottom:174.503333pt;}
.y12b{bottom:174.665333pt;}
.y71{bottom:174.669200pt;}
.ybd{bottom:178.006667pt;}
.ybe{bottom:178.009867pt;}
.y113{bottom:179.298133pt;}
.ya4{bottom:181.229200pt;}
.y47{bottom:181.418267pt;}
.y17f{bottom:182.705733pt;}
.y1aa{bottom:182.743333pt;}
.y217{bottom:183.460533pt;}
.y14a{bottom:185.865333pt;}
.ybc{bottom:189.209867pt;}
.y112{bottom:190.501333pt;}
.y1de{bottom:190.953333pt;}
.y6f{bottom:192.426000pt;}
.y70{bottom:192.429200pt;}
.y17e{bottom:195.375733pt;}
.y1a9{bottom:195.413333pt;}
.y216{bottom:196.130533pt;}
.y149{bottom:197.065333pt;}
.ya3{bottom:198.993067pt;}
.yfe{bottom:198.993200pt;}
.y96{bottom:200.415867pt;}
.y139{bottom:200.439333pt;}
.y111{bottom:201.701333pt;}
.y1dd{bottom:203.623333pt;}
.y6e{bottom:203.629200pt;}
.ybb{bottom:206.974533pt;}
.y17d{bottom:208.045733pt;}
.y1a8{bottom:208.083333pt;}
.yed{bottom:210.193067pt;}
.y215{bottom:212.570133pt;}
.y148{bottom:214.829200pt;}
.y1dc{bottom:216.293333pt;}
.yfd{bottom:216.757067pt;}
.y46{bottom:218.411600pt;}
.y95{bottom:218.413733pt;}
.y138{bottom:218.437200pt;}
.y110{bottom:219.465333pt;}
.y17c{bottom:224.495733pt;}
.y1a7{bottom:224.533333pt;}
.yba{bottom:224.734533pt;}
.y214{bottom:225.240133pt;}
.yec{bottom:227.934533pt;}
.y12a{bottom:227.957067pt;}
.y1db{bottom:228.963333pt;}
.y147{bottom:232.593200pt;}
.yfc{bottom:234.520933pt;}
.yb9{bottom:235.937733pt;}
.y45{bottom:236.409467pt;}
.y94{bottom:236.411600pt;}
.yd2{bottom:236.413733pt;}
.ya2{bottom:236.420133pt;}
.y1a{bottom:236.424267pt;}
.y44{bottom:236.424400pt;}
.y137{bottom:236.435067pt;}
.y17b{bottom:237.165733pt;}
.y1a6{bottom:237.203333pt;}
.y213{bottom:237.910133pt;}
.yeb{bottom:239.137733pt;}
.y1da{bottom:245.413333pt;}
.y17a{bottom:249.835733pt;}
.y1a5{bottom:249.873333pt;}
.yea{bottom:250.340933pt;}
.y146{bottom:250.357067pt;}
.y212{bottom:250.514800pt;}
.yfb{bottom:252.284933pt;}
.yd1{bottom:254.411600pt;}
.ya1{bottom:254.418000pt;}
.y93{bottom:254.420133pt;}
.y19{bottom:254.422133pt;}
.y43{bottom:254.422267pt;}
.y1d9{bottom:258.083333pt;}
.ye9{bottom:261.544133pt;}
.y179{bottom:262.505733pt;}
.y1a4{bottom:262.543333pt;}
.y211{bottom:263.184800pt;}
.y145{bottom:268.120933pt;}
.yfa{bottom:270.048800pt;}
.y1d8{bottom:270.753333pt;}
.yd0{bottom:272.411600pt;}
.y6d{bottom:272.413733pt;}
.ya0{bottom:272.415867pt;}
.y92{bottom:272.418000pt;}
.y18{bottom:272.420000pt;}
.y42{bottom:272.420133pt;}
.y129{bottom:272.422267pt;}
.y136{bottom:272.430800pt;}
.yb8{bottom:272.435067pt;}
.y10f{bottom:272.456400pt;}
.ye8{bottom:272.747333pt;}
.y1a3{bottom:275.213333pt;}
.y210{bottom:275.854800pt;}
.y178{bottom:278.955733pt;}
.y1d7{bottom:283.423333pt;}
.ye7{bottom:283.950533pt;}
.yf9{bottom:287.812667pt;}
.y1a2{bottom:287.883333pt;}
.y20f{bottom:288.524800pt;}
.ycf{bottom:290.409467pt;}
.y6c{bottom:290.411600pt;}
.y9f{bottom:290.413733pt;}
.y91{bottom:290.415867pt;}
.y17{bottom:290.417867pt;}
.y41{bottom:290.418000pt;}
.y128{bottom:290.420133pt;}
.y135{bottom:290.428667pt;}
.yb7{bottom:290.432933pt;}
.y10e{bottom:290.454267pt;}
.y177{bottom:291.625733pt;}
.ye6{bottom:295.153733pt;}
.y1d6{bottom:299.873333pt;}
.y20e{bottom:301.194800pt;}
.y176{bottom:304.295733pt;}
.y1a1{bottom:304.333333pt;}
.yf8{bottom:305.576667pt;}
.ye5{bottom:306.356933pt;}
.y6b{bottom:308.411600pt;}
.y90{bottom:308.413733pt;}
.y16{bottom:308.415733pt;}
.y40{bottom:308.415867pt;}
.y127{bottom:308.418000pt;}
.y134{bottom:308.426533pt;}
.yb6{bottom:308.430800pt;}
.y10d{bottom:308.452133pt;}
.y1d5{bottom:312.543333pt;}
.y20d{bottom:313.864800pt;}
.y175{bottom:316.965733pt;}
.y1a0{bottom:317.003333pt;}
.ye4{bottom:317.557067pt;}
.yf7{bottom:323.340533pt;}
.y1d4{bottom:325.213333pt;}
.y6a{bottom:326.409467pt;}
.y8f{bottom:326.411600pt;}
.y15{bottom:326.413600pt;}
.y3f{bottom:326.413733pt;}
.y126{bottom:326.415867pt;}
.y133{bottom:326.424400pt;}
.yb5{bottom:326.428667pt;}
.y10c{bottom:326.450000pt;}
.y19f{bottom:329.673333pt;}
.y20c{bottom:330.314800pt;}
.y174{bottom:333.415733pt;}
.ye3{bottom:335.320933pt;}
.yf6{bottom:341.104400pt;}
.y1d3{bottom:341.663333pt;}
.y20b{bottom:342.984800pt;}
.y9e{bottom:344.409467pt;}
.y14{bottom:344.411467pt;}
.y3e{bottom:344.411600pt;}
.y125{bottom:344.413733pt;}
.y156{bottom:344.420133pt;}
.y69{bottom:344.422267pt;}
.y8e{bottom:344.426533pt;}
.y10b{bottom:344.447867pt;}
.y173{bottom:346.085733pt;}
.y19e{bottom:346.123333pt;}
.ye2{bottom:353.084800pt;}
.y1d2{bottom:354.333333pt;}
.y20a{bottom:355.654800pt;}
.y172{bottom:358.755733pt;}
.y19d{bottom:358.793333pt;}
.y3d{bottom:362.409467pt;}
.y124{bottom:362.411600pt;}
.y13{bottom:362.415733pt;}
.y155{bottom:362.418000pt;}
.y68{bottom:362.420133pt;}
.y8d{bottom:362.424400pt;}
.y10a{bottom:362.445733pt;}
.y1d1{bottom:367.003333pt;}
.ye1{bottom:370.848800pt;}
.y19c{bottom:371.463333pt;}
.y209{bottom:372.104800pt;}
.y171{bottom:375.205733pt;}
.y1d0{bottom:379.673333pt;}
.y123{bottom:380.409467pt;}
.y235{bottom:380.409600pt;}
.y3c{bottom:380.411600pt;}
.y12{bottom:380.413600pt;}
.yf5{bottom:380.413733pt;}
.y154{bottom:380.415867pt;}
.y67{bottom:380.418000pt;}
.y8c{bottom:380.422267pt;}
.y109{bottom:380.443600pt;}
.y19b{bottom:384.133333pt;}
.y208{bottom:384.774800pt;}
.y170{bottom:387.875733pt;}
.y1cf{bottom:396.123333pt;}
.y207{bottom:397.444800pt;}
.y3b{bottom:398.409467pt;}
.y234{bottom:398.409600pt;}
.y11{bottom:398.411467pt;}
.yf4{bottom:398.411600pt;}
.y153{bottom:398.413733pt;}
.y66{bottom:398.415867pt;}
.y8b{bottom:398.420133pt;}
.y16f{bottom:400.545733pt;}
.y19a{bottom:400.583333pt;}
.y1ce{bottom:408.793333pt;}
.y199{bottom:413.253333pt;}
.y206{bottom:413.894800pt;}
.y3a{bottom:416.409467pt;}
.y233{bottom:416.409600pt;}
.y152{bottom:416.411600pt;}
.y65{bottom:416.413733pt;}
.y8a{bottom:416.418000pt;}
.y10{bottom:416.430667pt;}
.y108{bottom:416.439333pt;}
.y16e{bottom:416.995733pt;}
.y1cd{bottom:421.463333pt;}
.y198{bottom:425.923333pt;}
.y205{bottom:426.564800pt;}
.y16d{bottom:429.665733pt;}
.y151{bottom:434.409467pt;}
.y232{bottom:434.409600pt;}
.y64{bottom:434.411600pt;}
.y39{bottom:434.415867pt;}
.yf{bottom:434.428533pt;}
.y107{bottom:434.437200pt;}
.y1cc{bottom:437.913333pt;}
.y16c{bottom:442.335733pt;}
.y197{bottom:442.373333pt;}
.y204{bottom:443.014800pt;}
.y1cb{bottom:450.583333pt;}
.y63{bottom:452.409467pt;}
.y231{bottom:452.409600pt;}
.y38{bottom:452.413733pt;}
.y150{bottom:452.415867pt;}
.y9d{bottom:452.420133pt;}
.ye{bottom:452.426400pt;}
.ye0{bottom:452.428667pt;}
.y106{bottom:452.435067pt;}
.y16b{bottom:455.005733pt;}
.y196{bottom:455.043333pt;}
.y203{bottom:455.684800pt;}
.y1ca{bottom:467.033333pt;}
.y195{bottom:467.713333pt;}
.y202{bottom:468.354800pt;}
.y230{bottom:470.409600pt;}
.y37{bottom:470.411600pt;}
.y14f{bottom:470.413733pt;}
.y132{bottom:470.415867pt;}
.y9c{bottom:470.418000pt;}
.yd{bottom:470.424267pt;}
.ydf{bottom:470.426533pt;}
.y62{bottom:470.428667pt;}
.yce{bottom:470.430800pt;}
.y105{bottom:470.432933pt;}
.y16a{bottom:471.455733pt;}
.y1c9{bottom:479.700000pt;}
.y201{bottom:481.024800pt;}
.y169{bottom:484.125733pt;}
.y194{bottom:484.163333pt;}
.y122{bottom:488.409467pt;}
.y89{bottom:488.411600pt;}
.y131{bottom:488.413733pt;}
.y9b{bottom:488.415867pt;}
.y36{bottom:488.418000pt;}
.yc{bottom:488.422133pt;}
.yde{bottom:488.424400pt;}
.y61{bottom:488.426533pt;}
.ycd{bottom:488.428667pt;}
.y1c8{bottom:492.270933pt;}
.y200{bottom:493.694800pt;}
.y168{bottom:496.795733pt;}
.y193{bottom:496.833333pt;}
.y1c7{bottom:504.940933pt;}
.y88{bottom:506.409467pt;}
.y121{bottom:506.411600pt;}
.y9a{bottom:506.413733pt;}
.y35{bottom:506.415867pt;}
.yb{bottom:506.420000pt;}
.ydd{bottom:506.422267pt;}
.y60{bottom:506.424400pt;}
.ycc{bottom:506.426533pt;}
.y104{bottom:506.428667pt;}
.y167{bottom:509.465733pt;}
.y192{bottom:509.503333pt;}
.y1ff{bottom:510.134400pt;}
.y1c6{bottom:521.390933pt;}
.y166{bottom:522.135733pt;}
.y191{bottom:522.173333pt;}
.y1fe{bottom:522.804400pt;}
.y120{bottom:524.409467pt;}
.y22f{bottom:524.409600pt;}
.y87{bottom:524.411600pt;}
.y34{bottom:524.413733pt;}
.ya{bottom:524.417867pt;}
.y11f{bottom:524.418000pt;}
.ydc{bottom:524.420133pt;}
.y5f{bottom:524.422267pt;}
.ycb{bottom:524.424400pt;}
.y103{bottom:524.426533pt;}
.y1c5{bottom:534.060933pt;}
.y190{bottom:534.807067pt;}
.y1fd{bottom:535.474400pt;}
.y165{bottom:538.585733pt;}
.y22e{bottom:542.409600pt;}
.y33{bottom:542.411600pt;}
.y9{bottom:542.415733pt;}
.y11e{bottom:542.415867pt;}
.yb4{bottom:542.418000pt;}
.y5e{bottom:542.420133pt;}
.yca{bottom:542.422267pt;}
.y102{bottom:542.424400pt;}
.y86{bottom:542.443600pt;}
.y1c4{bottom:546.730933pt;}
.y18f{bottom:547.477067pt;}
.y164{bottom:551.255733pt;}
.y1fc{bottom:551.897200pt;}
.y1c3{bottom:559.400933pt;}
.y32{bottom:560.409467pt;}
.y22d{bottom:560.409600pt;}
.y99{bottom:560.411600pt;}
.y8{bottom:560.413600pt;}
.y11d{bottom:560.413733pt;}
.yb3{bottom:560.415867pt;}
.y5d{bottom:560.418000pt;}
.yc9{bottom:560.420133pt;}
.y101{bottom:560.422267pt;}
.y85{bottom:560.441467pt;}
.y163{bottom:563.925733pt;}
.y18e{bottom:563.927067pt;}
.y1fb{bottom:564.567200pt;}
.y1c2{bottom:572.070933pt;}
.y162{bottom:576.595733pt;}
.y18d{bottom:576.597067pt;}
.y1fa{bottom:577.237200pt;}
.yf3{bottom:578.409467pt;}
.y22c{bottom:578.409600pt;}
.y7{bottom:578.411467pt;}
.y11c{bottom:578.411600pt;}
.yb2{bottom:578.413733pt;}
.y5c{bottom:578.415867pt;}
.yc8{bottom:578.418000pt;}
.y100{bottom:578.420133pt;}
.y31{bottom:578.424400pt;}
.y84{bottom:578.439333pt;}
.y1c1{bottom:588.520933pt;}
.y18c{bottom:589.267067pt;}
.y1f9{bottom:589.907200pt;}
.y161{bottom:593.045733pt;}
.y6{bottom:596.409333pt;}
.y11b{bottom:596.409467pt;}
.y22b{bottom:596.409600pt;}
.yb1{bottom:596.411600pt;}
.y5b{bottom:596.413733pt;}
.yc7{bottom:596.415867pt;}
.yff{bottom:596.418000pt;}
.y30{bottom:596.422267pt;}
.y83{bottom:596.437200pt;}
.y1c0{bottom:601.190933pt;}
.y1f8{bottom:602.577200pt;}
.y160{bottom:605.715733pt;}
.y18b{bottom:605.717067pt;}
.y1bf{bottom:613.860933pt;}
.ydb{bottom:614.409467pt;}
.y5a{bottom:614.411600pt;}
.yc6{bottom:614.413733pt;}
.yb0{bottom:614.415867pt;}
.y2f{bottom:614.420133pt;}
.y144{bottom:614.424400pt;}
.y82{bottom:614.435067pt;}
.y1f7{bottom:615.247200pt;}
.y15f{bottom:618.385733pt;}
.y18a{bottom:618.387067pt;}
.y1be{bottom:626.530933pt;}
.y1f6{bottom:627.917200pt;}
.y15e{bottom:631.055733pt;}
.y189{bottom:631.057067pt;}
.y22a{bottom:632.410267pt;}
.y59{bottom:632.411600pt;}
.yaf{bottom:632.413733pt;}
.y14e{bottom:632.415867pt;}
.y2e{bottom:632.418000pt;}
.y143{bottom:632.422267pt;}
.y81{bottom:632.432933pt;}
.y1f5{bottom:640.587200pt;}
.y1bd{bottom:642.980933pt;}
.y15d{bottom:643.725733pt;}
.y188{bottom:643.727067pt;}
.y58{bottom:650.409467pt;}
.y229{bottom:650.409600pt;}
.yae{bottom:650.411600pt;}
.yda{bottom:650.413733pt;}
.y2d{bottom:650.415867pt;}
.y142{bottom:650.420133pt;}
.yf2{bottom:650.422267pt;}
.y80{bottom:650.430800pt;}
.y1bc{bottom:655.650933pt;}
.y15c{bottom:656.395733pt;}
.y187{bottom:656.397067pt;}
.y1f4{bottom:656.991467pt;}
.y1bb{bottom:668.320933pt;}
.y57{bottom:668.411600pt;}
.y2c{bottom:668.413733pt;}
.yc5{bottom:668.415867pt;}
.y141{bottom:668.418000pt;}
.yf1{bottom:668.420133pt;}
.y11a{bottom:668.422267pt;}
.yad{bottom:668.424400pt;}
.y7f{bottom:668.428667pt;}
.y15b{bottom:669.065733pt;}
.y186{bottom:669.067067pt;}
.y1f3{bottom:669.661467pt;}
.y1ba{bottom:680.990933pt;}
.y1f2{bottom:686.111467pt;}
.y56{bottom:686.409467pt;}
.y2b{bottom:686.411600pt;}
.yc4{bottom:686.413733pt;}
.y140{bottom:686.415867pt;}
.yf0{bottom:686.418000pt;}
.y119{bottom:686.420133pt;}
.yac{bottom:686.422267pt;}
.y7e{bottom:686.426533pt;}
.y1b9{bottom:693.660933pt;}
.y1f1{bottom:698.781467pt;}
.y5{bottom:704.409333pt;}
.y55{bottom:704.409467pt;}
.y15a{bottom:704.411467pt;}
.yc3{bottom:704.411600pt;}
.y13f{bottom:704.413733pt;}
.y2a{bottom:704.415867pt;}
.y118{bottom:704.418000pt;}
.yab{bottom:704.420133pt;}
.y7d{bottom:704.424400pt;}
.y1b8{bottom:706.330933pt;}
.y1f0{bottom:715.231467pt;}
.y1b7{bottom:719.000933pt;}
.y54{bottom:722.409467pt;}
.y159{bottom:722.410800pt;}
.y13e{bottom:722.411600pt;}
.y29{bottom:722.413733pt;}
.yc2{bottom:722.415867pt;}
.yaa{bottom:722.418000pt;}
.y7c{bottom:722.422267pt;}
.y130{bottom:722.426533pt;}
.y1b6{bottom:731.670933pt;}
.y1ef{bottom:731.681467pt;}
.y228{bottom:738.812933pt;}
.y158{bottom:740.410133pt;}
.y28{bottom:740.411600pt;}
.yc1{bottom:740.413733pt;}
.ya9{bottom:740.415867pt;}
.y7b{bottom:740.420133pt;}
.y53{bottom:740.424400pt;}
.y1b5{bottom:744.340933pt;}
.y1ee{bottom:744.351467pt;}
.y220{bottom:757.010933pt;}
.y1ed{bottom:757.021467pt;}
.y4{bottom:758.406667pt;}
.yd9{bottom:758.409467pt;}
.y27{bottom:758.411600pt;}
.ya8{bottom:758.413733pt;}
.y7a{bottom:758.418000pt;}
.y52{bottom:758.422267pt;}
.y1b4{bottom:760.790933pt;}
.y21f{bottom:769.680933pt;}
.y1ec{bottom:769.691467pt;}
.y1b3{bottom:773.460933pt;}
.y26{bottom:776.409467pt;}
.ya7{bottom:776.411600pt;}
.y79{bottom:776.415867pt;}
.y51{bottom:776.420133pt;}
.y227{bottom:782.320933pt;}
.y1eb{bottom:782.361467pt;}
.y1b2{bottom:786.130933pt;}
.y3{bottom:794.409333pt;}
.ya6{bottom:794.409467pt;}
.yd8{bottom:794.411600pt;}
.y25{bottom:794.413733pt;}
.y157{bottom:794.415867pt;}
.y50{bottom:794.418000pt;}
.y226{bottom:794.990933pt;}
.y1b1{bottom:798.800933pt;}
.y1ea{bottom:798.811467pt;}
.y225{bottom:811.440933pt;}
.y1b0{bottom:811.470933pt;}
.y1e9{bottom:811.481467pt;}
.yd7{bottom:812.409467pt;}
.y24{bottom:812.411600pt;}
.yef{bottom:812.413733pt;}
.y4f{bottom:812.415867pt;}
.y21e{bottom:815.250933pt;}
.y224{bottom:824.110933pt;}
.y1e8{bottom:824.151467pt;}
.y1af{bottom:827.920933pt;}
.y23{bottom:830.409467pt;}
.yd6{bottom:830.411600pt;}
.y4e{bottom:830.413733pt;}
.y1e7{bottom:840.503333pt;}
.y223{bottom:840.560933pt;}
.y1ae{bottom:840.590933pt;}
.yd5{bottom:848.409467pt;}
.y4d{bottom:848.411600pt;}
.y1e6{bottom:853.173333pt;}
.y222{bottom:853.230933pt;}
.y1ad{bottom:853.260933pt;}
.y1e5{bottom:865.843333pt;}
.y221{bottom:865.900933pt;}
.y1ac{bottom:865.930933pt;}
.y1ab{bottom:865.934000pt;}
.y2{bottom:866.409333pt;}
.y22{bottom:866.409467pt;}
.y1{bottom:922.623867pt;}
.y21{bottom:922.624000pt;}
.h10{height:27.801600pt;}
.h9{height:31.480000pt;}
.h8{height:34.467200pt;}
.hb{height:34.467733pt;}
.hd{height:34.480533pt;}
.h7{height:34.483200pt;}
.hf{height:34.518933pt;}
.h2{height:35.920000pt;}
.hc{height:36.096000pt;}
.h12{height:37.040000pt;}
.h13{height:37.776000pt;}
.he{height:38.298667pt;}
.h11{height:39.874667pt;}
.h6{height:42.563200pt;}
.h14{height:44.448000pt;}
.h3{height:49.386667pt;}
.ha{height:63.317333pt;}
.h5{height:69.141333pt;}
.h4{height:104.144000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x1e{left:74.412533pt;}
.x20{left:75.581600pt;}
.x19{left:77.089867pt;}
.x2{left:79.373173pt;}
.x3{left:83.149600pt;}
.x1a{left:86.787200pt;}
.x1b{left:102.043136pt;}
.x23{left:103.720133pt;}
.x5{left:106.931200pt;}
.x1f{left:109.606267pt;}
.x12{left:112.546533pt;}
.x4{left:144.656000pt;}
.xc{left:175.402533pt;}
.x25{left:186.767867pt;}
.x1c{left:190.878400pt;}
.x16{left:208.638267pt;}
.xf{left:217.356933pt;}
.xa{left:227.027600pt;}
.xd{left:249.178267pt;}
.x11{left:254.455867pt;}
.x17{left:280.025867pt;}
.x8{left:312.111600pt;}
.x1d{left:321.486800pt;}
.x22{left:338.267300pt;}
.x21{left:349.606600pt;}
.x7{left:357.690800pt;}
.xb{left:367.068133pt;}
.x6{left:401.388400pt;}
.x9{left:426.951467pt;}
.x18{left:446.598667pt;}
.x24{left:459.597467pt;}
.xe{left:468.488133pt;}
.x15{left:509.763067pt;}
.x10{left:540.826533pt;}
.x14{left:566.082933pt;}
.x13{left:569.595200pt;}
}




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