
    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_286e57bffcd593ee8fd3a5e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.700000;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_de0a16e7d7355c10ec429140.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979004;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_c7d8dcdbf0297cbcc5b1d8cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_dd260ffcd6f7f610957d8202.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.848145;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_713fc82c1d0036d852687691.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_274e5bb434dfe2636cc33993.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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_d0d7fba0a0a2eca3cbb8d468.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.848145;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_63bbb083ca5166ae9426ea70.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_8c66d27ca3180bb22917525e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.996000;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_c9cd6981a9f02d6e2976844e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921545;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_86e23bbed316b4d947b2697e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c7d8dcdbf0297cbcc5b1d8cc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9124223f711e3fea77b17011.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.985000px;}
.v4{vertical-align:17.982000px;}
.v3{vertical-align:31.968000px;}
.v5{vertical-align:138.000000px;}
.ls14{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.855000px;}
.lsb{letter-spacing:-0.798000px;}
.ls12{letter-spacing:-0.627000px;}
.ls9{letter-spacing:-0.570000px;}
.ls13{letter-spacing:-0.399000px;}
.lsd{letter-spacing:-0.342000px;}
.ls3{letter-spacing:-0.285000px;}
.ls5{letter-spacing:-0.228000px;}
.ls10{letter-spacing:-0.171000px;}
.ls15{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000096px;}
.ls8{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.001200px;}
.lsa{letter-spacing:0.285000px;}
.ls11{letter-spacing:0.357000px;}
.lsc{letter-spacing:0.570000px;}
.lsf{letter-spacing:0.714000px;}
.ls1{letter-spacing:1.440000px;}
.ls6{letter-spacing:98.280000px;}
.ls4{letter-spacing:163.890000px;}
.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;}
}
.ws0{word-spacing:-57.000000px;}
.ws4{word-spacing:-18.348000px;}
.ws70{word-spacing:-17.520000px;}
.ws81{word-spacing:-16.680000px;}
.ws18{word-spacing:-15.846000px;}
.ws9e{word-spacing:-15.504000px;}
.ws3{word-spacing:-15.012000px;}
.ws2{word-spacing:-11.676000px;}
.ws126{word-spacing:-8.586000px;}
.ws125{word-spacing:-6.426000px;}
.ws43{word-spacing:-5.301000px;}
.ws12e{word-spacing:-5.076000px;}
.ws113{word-spacing:-5.022000px;}
.ws1f{word-spacing:-3.819000px;}
.ws10e{word-spacing:-3.762000px;}
.wsfb{word-spacing:-3.591000px;}
.ws10b{word-spacing:-3.477000px;}
.wsbf{word-spacing:-3.135000px;}
.ws90{word-spacing:-3.078000px;}
.wsfa{word-spacing:-3.021000px;}
.ws11{word-spacing:-2.916000px;}
.wse3{word-spacing:-2.907000px;}
.wsb7{word-spacing:-2.850000px;}
.wsd2{word-spacing:-2.805000px;}
.ws35{word-spacing:-2.793000px;}
.wscd{word-spacing:-2.754000px;}
.ws98{word-spacing:-2.736000px;}
.wsc3{word-spacing:-2.703000px;}
.ws115{word-spacing:-2.700000px;}
.wsa1{word-spacing:-2.679000px;}
.wsb0{word-spacing:-2.652000px;}
.ws57{word-spacing:-2.622000px;}
.wsf6{word-spacing:-2.601000px;}
.ws40{word-spacing:-2.565000px;}
.ws37{word-spacing:-2.508000px;}
.wsc2{word-spacing:-2.499000px;}
.ws116{word-spacing:-2.484000px;}
.ws23{word-spacing:-2.394000px;}
.ws142{word-spacing:-2.376000px;}
.ws3e{word-spacing:-2.337000px;}
.wsfe{word-spacing:-2.295000px;}
.ws30{word-spacing:-2.280000px;}
.ws13c{word-spacing:-2.268000px;}
.ws39{word-spacing:-2.223000px;}
.ws50{word-spacing:-2.166000px;}
.ws1d{word-spacing:-2.109000px;}
.ws108{word-spacing:-2.052000px;}
.ws47{word-spacing:-1.995000px;}
.wse2{word-spacing:-1.989000px;}
.ws13d{word-spacing:-1.944000px;}
.wsf3{word-spacing:-1.938000px;}
.ws141{word-spacing:-1.890000px;}
.ws4e{word-spacing:-1.881000px;}
.ws102{word-spacing:-1.836000px;}
.ws82{word-spacing:-1.824000px;}
.wsd6{word-spacing:-1.785000px;}
.ws91{word-spacing:-1.767000px;}
.ws58{word-spacing:-1.710000px;}
.ws5b{word-spacing:-1.653000px;}
.ws78{word-spacing:-1.596000px;}
.wsa{word-spacing:-1.566000px;}
.ws66{word-spacing:-1.539000px;}
.ws4d{word-spacing:-1.482000px;}
.wsf8{word-spacing:-1.479000px;}
.ws13a{word-spacing:-1.458000px;}
.ws3a{word-spacing:-1.425000px;}
.ws8{word-spacing:-1.404000px;}
.ws94{word-spacing:-1.368000px;}
.ws48{word-spacing:-1.311000px;}
.wsbd{word-spacing:-1.275000px;}
.wsa5{word-spacing:-1.254000px;}
.ws83{word-spacing:-1.197000px;}
.wsc6{word-spacing:-1.140000px;}
.ws12a{word-spacing:-1.134000px;}
.ws15{word-spacing:-1.083000px;}
.wsfc{word-spacing:-1.071000px;}
.ws6d{word-spacing:-1.026000px;}
.wsef{word-spacing:-1.020000px;}
.wsb{word-spacing:-0.972000px;}
.ws1b{word-spacing:-0.969000px;}
.wsfd{word-spacing:-0.918000px;}
.ws2b{word-spacing:-0.912000px;}
.ws12d{word-spacing:-0.864000px;}
.ws59{word-spacing:-0.855000px;}
.ws12f{word-spacing:-0.810000px;}
.ws64{word-spacing:-0.798000px;}
.wsdd{word-spacing:-0.765000px;}
.ws121{word-spacing:-0.756000px;}
.ws7d{word-spacing:-0.741000px;}
.ws13{word-spacing:-0.684000px;}
.ws12c{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.627000px;}
.wsbb{word-spacing:-0.612000px;}
.ws3c{word-spacing:-0.570000px;}
.ws107{word-spacing:-0.513000px;}
.ws16{word-spacing:-0.456000px;}
.wsf7{word-spacing:-0.408000px;}
.ws4c{word-spacing:-0.399000px;}
.ws7a{word-spacing:-0.342000px;}
.wsc{word-spacing:-0.324000px;}
.wsc4{word-spacing:-0.285000px;}
.ws5{word-spacing:-0.259019px;}
.ws109{word-spacing:-0.228000px;}
.ws36{word-spacing:-0.171000px;}
.wsaa{word-spacing:-0.114000px;}
.ws44{word-spacing:-0.057000px;}
.ws11d{word-spacing:-0.054000px;}
.wsd7{word-spacing:-0.051000px;}
.ws6{word-spacing:0.000000px;}
.ws129{word-spacing:0.054000px;}
.ws74{word-spacing:0.057000px;}
.ws10{word-spacing:0.108000px;}
.ws8c{word-spacing:0.114000px;}
.wsff{word-spacing:0.171000px;}
.ws5f{word-spacing:0.228000px;}
.wsba{word-spacing:0.255000px;}
.ws137{word-spacing:0.270000px;}
.wsad{word-spacing:0.285000px;}
.wsed{word-spacing:0.306000px;}
.ws79{word-spacing:0.342000px;}
.ws131{word-spacing:0.378000px;}
.ws2d{word-spacing:0.399000px;}
.ws112{word-spacing:0.456000px;}
.wse8{word-spacing:0.459000px;}
.wsac{word-spacing:0.510000px;}
.ws3d{word-spacing:0.513000px;}
.wsf2{word-spacing:0.561000px;}
.wsb8{word-spacing:0.570000px;}
.wsea{word-spacing:0.663000px;}
.ws38{word-spacing:0.684000px;}
.ws55{word-spacing:0.741000px;}
.wsc5{word-spacing:0.798000px;}
.wsf1{word-spacing:0.816000px;}
.ws71{word-spacing:0.855000px;}
.ws4a{word-spacing:0.912000px;}
.ws62{word-spacing:0.969000px;}
.ws99{word-spacing:1.026000px;}
.wsdb{word-spacing:1.071000px;}
.ws114{word-spacing:1.080000px;}
.ws53{word-spacing:1.083000px;}
.ws6e{word-spacing:1.140000px;}
.wsdc{word-spacing:1.173000px;}
.ws80{word-spacing:1.197000px;}
.ws76{word-spacing:1.254000px;}
.ws10d{word-spacing:1.311000px;}
.ws26{word-spacing:1.368000px;}
.ws86{word-spacing:1.425000px;}
.ws19{word-spacing:1.482000px;}
.wsbe{word-spacing:1.539000px;}
.ws11b{word-spacing:1.566000px;}
.wsab{word-spacing:1.581000px;}
.ws1c{word-spacing:1.596000px;}
.ws32{word-spacing:1.653000px;}
.ws21{word-spacing:1.710000px;}
.ws13b{word-spacing:1.728000px;}
.ws6a{word-spacing:1.824000px;}
.ws17{word-spacing:1.881000px;}
.wsf{word-spacing:1.890000px;}
.ws54{word-spacing:1.938000px;}
.ws72{word-spacing:1.995000px;}
.ws31{word-spacing:2.052000px;}
.wse0{word-spacing:2.091000px;}
.ws11f{word-spacing:2.106000px;}
.ws2e{word-spacing:2.109000px;}
.ws120{word-spacing:2.160000px;}
.ws97{word-spacing:2.166000px;}
.ws4f{word-spacing:2.223000px;}
.ws7b{word-spacing:2.280000px;}
.wsb9{word-spacing:2.295000px;}
.ws118{word-spacing:2.322000px;}
.wsa9{word-spacing:2.337000px;}
.wsd9{word-spacing:2.346000px;}
.wsd{word-spacing:2.376000px;}
.wsce{word-spacing:2.397000px;}
.ws33{word-spacing:2.451000px;}
.ws117{word-spacing:2.484000px;}
.wsb3{word-spacing:2.508000px;}
.ws9{word-spacing:2.538000px;}
.wsf9{word-spacing:2.550000px;}
.ws67{word-spacing:2.565000px;}
.ws12b{word-spacing:2.592000px;}
.wse9{word-spacing:2.601000px;}
.wsc0{word-spacing:2.622000px;}
.ws122{word-spacing:2.646000px;}
.ws28{word-spacing:2.679000px;}
.ws8e{word-spacing:2.736000px;}
.ws12{word-spacing:2.754000px;}
.ws45{word-spacing:2.793000px;}
.ws8f{word-spacing:2.850000px;}
.ws139{word-spacing:2.862000px;}
.ws51{word-spacing:2.907000px;}
.wsd8{word-spacing:2.958000px;}
.ws84{word-spacing:2.964000px;}
.ws11a{word-spacing:2.970000px;}
.ws95{word-spacing:3.021000px;}
.wsec{word-spacing:3.060000px;}
.ws6c{word-spacing:3.078000px;}
.wscb{word-spacing:3.111000px;}
.ws61{word-spacing:3.135000px;}
.ws4b{word-spacing:3.192000px;}
.ws2c{word-spacing:3.249000px;}
.ws41{word-spacing:3.306000px;}
.ws22{word-spacing:3.363000px;}
.ws11e{word-spacing:3.402000px;}
.ws103{word-spacing:3.417000px;}
.ws52{word-spacing:3.420000px;}
.ws138{word-spacing:3.456000px;}
.wsdf{word-spacing:3.477000px;}
.wsbc{word-spacing:3.519000px;}
.wsa7{word-spacing:3.534000px;}
.ws46{word-spacing:3.591000px;}
.ws119{word-spacing:3.618000px;}
.wse1{word-spacing:3.621000px;}
.ws2f{word-spacing:3.648000px;}
.ws68{word-spacing:3.705000px;}
.wse{word-spacing:3.726000px;}
.ws9d{word-spacing:3.762000px;}
.ws65{word-spacing:3.819000px;}
.ws1e{word-spacing:3.933000px;}
.wsda{word-spacing:3.990000px;}
.ws27{word-spacing:4.104000px;}
.ws136{word-spacing:4.158000px;}
.wsa2{word-spacing:4.161000px;}
.ws14{word-spacing:4.218000px;}
.ws133{word-spacing:4.266000px;}
.ws49{word-spacing:4.275000px;}
.ws7c{word-spacing:4.332000px;}
.wseb{word-spacing:4.386000px;}
.wsde{word-spacing:4.389000px;}
.wsd5{word-spacing:4.446000px;}
.wsa4{word-spacing:4.503000px;}
.wse6{word-spacing:4.560000px;}
.ws6f{word-spacing:4.617000px;}
.ws8b{word-spacing:4.674000px;}
.ws111{word-spacing:4.731000px;}
.wse7{word-spacing:4.743000px;}
.wsa8{word-spacing:4.788000px;}
.ws132{word-spacing:4.806000px;}
.wse5{word-spacing:4.902000px;}
.wse4{word-spacing:4.959000px;}
.ws134{word-spacing:4.968000px;}
.ws88{word-spacing:5.016000px;}
.ws25{word-spacing:5.073000px;}
.ws100{word-spacing:5.130000px;}
.ws9a{word-spacing:5.187000px;}
.ws29{word-spacing:5.244000px;}
.wsa3{word-spacing:5.301000px;}
.wscc{word-spacing:5.355000px;}
.ws56{word-spacing:5.358000px;}
.wsb2{word-spacing:5.415000px;}
.wsf0{word-spacing:5.457000px;}
.wsd4{word-spacing:5.472000px;}
.wsee{word-spacing:5.508000px;}
.ws93{word-spacing:5.529000px;}
.ws101{word-spacing:5.586000px;}
.wsb1{word-spacing:5.610000px;}
.ws9f{word-spacing:5.643000px;}
.ws69{word-spacing:5.700000px;}
.wsc1{word-spacing:5.712000px;}
.ws60{word-spacing:5.757000px;}
.ws6b{word-spacing:5.814000px;}
.ws20{word-spacing:5.871000px;}
.wsd1{word-spacing:5.928000px;}
.ws75{word-spacing:6.042000px;}
.wsd3{word-spacing:6.069000px;}
.ws10f{word-spacing:6.099000px;}
.ws110{word-spacing:6.156000px;}
.wsb4{word-spacing:6.213000px;}
.ws96{word-spacing:6.270000px;}
.wsca{word-spacing:6.441000px;}
.ws130{word-spacing:6.480000px;}
.wsb6{word-spacing:6.498000px;}
.ws8a{word-spacing:6.555000px;}
.wsaf{word-spacing:6.630000px;}
.ws2a{word-spacing:6.669000px;}
.ws3b{word-spacing:6.726000px;}
.ws135{word-spacing:6.750000px;}
.ws3f{word-spacing:6.783000px;}
.ws73{word-spacing:6.954000px;}
.wsd0{word-spacing:7.011000px;}
.ws104{word-spacing:7.038000px;}
.ws87{word-spacing:7.125000px;}
.ws85{word-spacing:7.182000px;}
.ws63{word-spacing:7.239000px;}
.ws1a{word-spacing:7.296000px;}
.wsae{word-spacing:7.344000px;}
.ws34{word-spacing:7.353000px;}
.ws9c{word-spacing:7.410000px;}
.ws10c{word-spacing:7.467000px;}
.ws89{word-spacing:7.524000px;}
.wsc7{word-spacing:7.638000px;}
.ws42{word-spacing:7.695000px;}
.ws8d{word-spacing:7.752000px;}
.wsc8{word-spacing:7.809000px;}
.ws143{word-spacing:7.830000px;}
.ws106{word-spacing:8.037000px;}
.ws24{word-spacing:8.151000px;}
.wsf4{word-spacing:8.265000px;}
.wsb5{word-spacing:8.322000px;}
.wscf{word-spacing:8.664000px;}
.ws123{word-spacing:8.694000px;}
.wsa0{word-spacing:8.721000px;}
.wsa6{word-spacing:8.778000px;}
.ws13f{word-spacing:8.802000px;}
.ws5d{word-spacing:8.835000px;}
.wsc9{word-spacing:9.063000px;}
.ws5c{word-spacing:9.177000px;}
.ws7f{word-spacing:9.348000px;}
.ws5e{word-spacing:9.405000px;}
.ws11c{word-spacing:9.828000px;}
.ws5a{word-spacing:10.374000px;}
.ws9b{word-spacing:10.659000px;}
.ws124{word-spacing:10.692000px;}
.ws127{word-spacing:10.746000px;}
.ws13e{word-spacing:11.070000px;}
.ws10a{word-spacing:11.229000px;}
.ws92{word-spacing:11.514000px;}
.ws105{word-spacing:11.685000px;}
.wsf5{word-spacing:12.198000px;}
.ws7e{word-spacing:15.105000px;}
.ws128{word-spacing:19.278000px;}
.ws7{word-spacing:24.096000px;}
.ws140{word-spacing:25.002000px;}
.ws1{word-spacing:42.568800px;}
._4{margin-left:-52.080000px;}
._5{margin-left:-29.106000px;}
._e{margin-left:-24.505200px;}
._10{margin-left:-21.315600px;}
._11{margin-left:-19.147200px;}
._12{margin-left:-15.340800px;}
._a{margin-left:-13.858800px;}
._f{margin-left:-9.900000px;}
._7{margin-left:-7.565400px;}
._6{margin-left:-5.908800px;}
._1{margin-left:-3.990000px;}
._9{margin-left:-2.786400px;}
._3{margin-left:-1.776000px;}
._2{width:1.995000px;}
._d{width:12.684000px;}
._b{width:31.320000px;}
._0{width:33.060000px;}
._8{width:38.934000px;}
._c{width:113.517600px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(188,190,192);}
.fc1{color:rgb(0,100,169);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.000000px;}
.fs2{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:55.968000px;}
.fs1{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:96.000000px;}
.fs9{font-size:259.018800px;}
.y0{bottom:0.000000px;}
.y1{bottom:65.671050px;}
.y182{bottom:123.485400px;}
.y139{bottom:123.908400px;}
.ye4{bottom:124.644900px;}
.y1a5{bottom:125.032650px;}
.y15f{bottom:125.059650px;}
.y1c4{bottom:125.066400px;}
.yac{bottom:125.309400px;}
.yce{bottom:126.007950px;}
.y225{bottom:126.057150px;}
.y22d{bottom:126.262650px;}
.y203{bottom:126.478650px;}
.y251{bottom:126.870150px;}
.y10f{bottom:127.014300px;}
.y5e{bottom:127.255650px;}
.y1e6{bottom:127.321500px;}
.y4{bottom:127.773150px;}
.y50{bottom:128.052900px;}
.y82{bottom:128.428500px;}
.y284{bottom:132.921150px;}
.y181{bottom:140.742150px;}
.y138{bottom:141.165150px;}
.ye3{bottom:141.901650px;}
.y1a4{bottom:142.289400px;}
.y15e{bottom:142.316400px;}
.y1c3{bottom:142.323150px;}
.yab{bottom:142.566150px;}
.y250{bottom:142.624650px;}
.ycd{bottom:143.264700px;}
.y224{bottom:143.313900px;}
.y22c{bottom:143.519400px;}
.y3{bottom:143.523150px;}
.y202{bottom:143.735400px;}
.y10e{bottom:144.271050px;}
.y5d{bottom:144.512400px;}
.y1e5{bottom:144.572250px;}
.y4f{bottom:145.309650px;}
.y81{bottom:145.685250px;}
.y283{bottom:148.675650px;}
.y180{bottom:157.998900px;}
.y24f{bottom:158.379150px;}
.y137{bottom:158.421900px;}
.ye2{bottom:159.158400px;}
.y1a3{bottom:159.546150px;}
.y15d{bottom:159.573150px;}
.yaa{bottom:159.822900px;}
.ycc{bottom:160.521450px;}
.y223{bottom:160.570650px;}
.y22b{bottom:160.776150px;}
.y201{bottom:160.992150px;}
.y10d{bottom:161.527800px;}
.y5c{bottom:161.769150px;}
.y1e4{bottom:161.823000px;}
.y4e{bottom:162.566400px;}
.y80{bottom:162.942000px;}
.y282{bottom:164.430150px;}
.y24e{bottom:174.133650px;}
.y17f{bottom:175.255650px;}
.y136{bottom:175.678650px;}
.ye1{bottom:176.415150px;}
.y1a2{bottom:176.802900px;}
.ya9{bottom:177.079650px;}
.y1c2{bottom:177.570150px;}
.ycb{bottom:177.778200px;}
.y222{bottom:177.827400px;}
.y22a{bottom:178.032900px;}
.y200{bottom:178.248900px;}
.y10c{bottom:178.784550px;}
.y5b{bottom:179.025900px;}
.y4d{bottom:179.823150px;}
.y281{bottom:180.184650px;}
.y7f{bottom:180.198750px;}
.y24d{bottom:189.888150px;}
.y17e{bottom:192.512400px;}
.y135{bottom:192.935400px;}
.ye0{bottom:193.671900px;}
.y1a1{bottom:194.059650px;}
.ya8{bottom:194.336400px;}
.y15c{bottom:194.819400px;}
.y1c1{bottom:194.820900px;}
.yca{bottom:195.034950px;}
.y221{bottom:195.084150px;}
.y229{bottom:195.289650px;}
.y1ff{bottom:195.505650px;}
.y280{bottom:195.939150px;}
.y10b{bottom:196.041300px;}
.y5a{bottom:196.282650px;}
.y1e3{bottom:197.064750px;}
.y7e{bottom:197.455500px;}
.y23{bottom:199.300950px;}
.y24c{bottom:205.642650px;}
.y17d{bottom:209.769150px;}
.y134{bottom:210.192150px;}
.ydf{bottom:210.928650px;}
.y1a0{bottom:211.316400px;}
.ya7{bottom:211.593150px;}
.y27f{bottom:211.693650px;}
.y15b{bottom:212.070150px;}
.y1c0{bottom:212.071650px;}
.yc9{bottom:212.291700px;}
.y220{bottom:212.340900px;}
.y228{bottom:212.546400px;}
.y1fe{bottom:212.762400px;}
.y10a{bottom:213.298050px;}
.y59{bottom:213.539400px;}
.y1e2{bottom:214.321500px;}
.y7d{bottom:214.712250px;}
.y4c{bottom:215.073150px;}
.y22{bottom:216.557700px;}
.y24b{bottom:221.397150px;}
.y17c{bottom:227.025900px;}
.y27e{bottom:227.448150px;}
.y133{bottom:227.448900px;}
.yde{bottom:228.185400px;}
.y19f{bottom:228.573150px;}
.ya6{bottom:228.849900px;}
.y15a{bottom:229.320900px;}
.y1bf{bottom:229.322400px;}
.y21f{bottom:229.597650px;}
.y227{bottom:229.803150px;}
.y1fd{bottom:230.019150px;}
.y109{bottom:230.554800px;}
.y58{bottom:230.796150px;}
.y7c{bottom:231.969000px;}
.y21{bottom:233.814450px;}
.y1f{bottom:233.827950px;}
.y24a{bottom:237.151650px;}
.y27d{bottom:243.202650px;}
.y17b{bottom:244.282650px;}
.y132{bottom:244.705650px;}
.ydd{bottom:245.442150px;}
.ya5{bottom:246.106650px;}
.y159{bottom:246.571650px;}
.y1be{bottom:246.573150px;}
.y21e{bottom:246.854400px;}
.y226{bottom:247.059900px;}
.y1fc{bottom:247.275900px;}
.yc8{bottom:247.541700px;}
.y108{bottom:247.811550px;}
.y57{bottom:248.052900px;}
.y7b{bottom:249.225750px;}
.y1e1{bottom:249.569250px;}
.y20{bottom:251.071200px;}
.y249{bottom:252.906150px;}
.y27c{bottom:258.957150px;}
.y17a{bottom:261.539400px;}
.y131{bottom:261.962400px;}
.ydc{bottom:262.698900px;}
.ya4{bottom:263.363400px;}
.y19e{bottom:263.820900px;}
.y158{bottom:263.822400px;}
.y21d{bottom:264.111150px;}
.y4b{bottom:264.316650px;}
.y1fb{bottom:264.532650px;}
.y107{bottom:265.068300px;}
.y56{bottom:265.309650px;}
.y7a{bottom:266.482500px;}
.y1e0{bottom:266.820000px;}
.y248{bottom:268.660650px;}
.y27b{bottom:274.711650px;}
.y179{bottom:278.796150px;}
.y130{bottom:279.219150px;}
.ydb{bottom:279.955650px;}
.ya3{bottom:280.620150px;}
.y19d{bottom:281.071650px;}
.y157{bottom:281.073150px;}
.y21c{bottom:281.367900px;}
.y4a{bottom:281.573400px;}
.y1bd{bottom:281.775900px;}
.y1fa{bottom:281.789400px;}
.y106{bottom:282.325050px;}
.y55{bottom:282.566400px;}
.y79{bottom:283.739250px;}
.y1df{bottom:284.070750px;}
.y247{bottom:284.415150px;}
.y27a{bottom:290.466150px;}
.y178{bottom:296.052900px;}
.yda{bottom:297.212400px;}
.ya2{bottom:297.876900px;}
.y19c{bottom:298.322400px;}
.y21b{bottom:298.624650px;}
.y49{bottom:298.830150px;}
.y1bc{bottom:299.032650px;}
.y1f9{bottom:299.046150px;}
.yc7{bottom:299.449350px;}
.y105{bottom:299.581800px;}
.y54{bottom:299.823150px;}
.y246{bottom:300.169650px;}
.y78{bottom:300.996000px;}
.y1de{bottom:301.321500px;}
.y1e{bottom:303.577950px;}
.y279{bottom:306.220650px;}
.y177{bottom:313.309650px;}
.y12f{bottom:314.465400px;}
.yd9{bottom:314.469150px;}
.ya1{bottom:315.133650px;}
.y19b{bottom:315.573150px;}
.y21a{bottom:315.881400px;}
.y245{bottom:315.924150px;}
.y48{bottom:316.086900px;}
.y156{bottom:316.208400px;}
.y1bb{bottom:316.289400px;}
.y1f8{bottom:316.302900px;}
.yc6{bottom:316.706100px;}
.y104{bottom:316.838550px;}
.y77{bottom:318.252750px;}
.y278{bottom:321.975150px;}
.y176{bottom:330.566400px;}
.y244{bottom:331.678650px;}
.y12e{bottom:331.716150px;}
.yd8{bottom:331.725900px;}
.ya0{bottom:332.390400px;}
.y219{bottom:333.138150px;}
.y47{bottom:333.343650px;}
.y155{bottom:333.465150px;}
.y1ba{bottom:333.546150px;}
.y1f7{bottom:333.559650px;}
.yc5{bottom:333.962850px;}
.y103{bottom:334.095300px;}
.y53{bottom:335.073150px;}
.y76{bottom:335.509500px;}
.y277{bottom:337.729650px;}
.y1dd{bottom:340.788300px;}
.y243{bottom:347.433150px;}
.y175{bottom:347.823150px;}
.y12d{bottom:348.966900px;}
.yd7{bottom:348.982650px;}
.y218{bottom:350.394900px;}
.y46{bottom:350.600400px;}
.y154{bottom:350.721900px;}
.y19a{bottom:350.755650px;}
.y1b9{bottom:350.802900px;}
.y1f6{bottom:350.816400px;}
.yc4{bottom:351.219600px;}
.y102{bottom:351.352050px;}
.y75{bottom:352.766250px;}
.y52{bottom:353.073150px;}
.y276{bottom:353.484150px;}
.y1d{bottom:354.877950px;}
.y1dc{bottom:358.045050px;}
.y242{bottom:363.187650px;}
.y12c{bottom:366.217650px;}
.yd6{bottom:366.239400px;}
.y9f{bottom:367.640400px;}
.y217{bottom:367.651650px;}
.y45{bottom:367.857150px;}
.y153{bottom:367.978650px;}
.y199{bottom:368.012400px;}
.y1b8{bottom:368.059650px;}
.y1f5{bottom:368.073150px;}
.yc3{bottom:368.476350px;}
.y101{bottom:368.608800px;}
.y275{bottom:369.238650px;}
.y74{bottom:370.023000px;}
.y1c{bottom:371.077950px;}
.y1db{bottom:375.301800px;}
.y241{bottom:378.942150px;}
.y174{bottom:383.070150px;}
.y12b{bottom:383.468400px;}
.yd5{bottom:383.496150px;}
.y216{bottom:384.908400px;}
.y274{bottom:384.993150px;}
.y44{bottom:385.113900px;}
.y152{bottom:385.235400px;}
.y198{bottom:385.269150px;}
.y1b7{bottom:385.316400px;}
.yc2{bottom:385.733100px;}
.y100{bottom:385.865550px;}
.y73{bottom:387.279750px;}
.y1b{bottom:391.777950px;}
.y1da{bottom:392.558550px;}
.y240{bottom:394.696650px;}
.y173{bottom:400.320900px;}
.y12a{bottom:400.719150px;}
.y273{bottom:400.747650px;}
.yd4{bottom:400.752900px;}
.y215{bottom:402.165150px;}
.y43{bottom:402.370650px;}
.y151{bottom:402.492150px;}
.y197{bottom:402.525900px;}
.y1b6{bottom:402.573150px;}
.yc1{bottom:402.989850px;}
.yff{bottom:403.122300px;}
.y1f4{bottom:403.320900px;}
.y72{bottom:404.536500px;}
.y1d9{bottom:409.815300px;}
.y23f{bottom:410.451150px;}
.y272{bottom:416.502150px;}
.y9e{bottom:416.971650px;}
.y172{bottom:417.571650px;}
.yd3{bottom:418.009650px;}
.y214{bottom:419.421900px;}
.y42{bottom:419.627400px;}
.y150{bottom:419.748900px;}
.y196{bottom:419.782650px;}
.yc0{bottom:420.246600px;}
.yfe{bottom:420.379050px;}
.y1f3{bottom:420.571650px;}
.y71{bottom:421.793250px;}
.y23e{bottom:426.205650px;}
.y1a{bottom:426.877950px;}
.y1d8{bottom:427.072050px;}
.y271{bottom:432.256650px;}
.y9d{bottom:434.228400px;}
.y171{bottom:434.822400px;}
.yd2{bottom:435.266400px;}
.y129{bottom:435.881400px;}
.y213{bottom:436.678650px;}
.y41{bottom:436.884150px;}
.y14f{bottom:437.005650px;}
.y195{bottom:437.039400px;}
.ybf{bottom:437.503350px;}
.yfd{bottom:437.635800px;}
.y1b5{bottom:437.819400px;}
.y1f2{bottom:437.822400px;}
.y70{bottom:439.050000px;}
.y23d{bottom:441.960150px;}
.y19{bottom:443.077950px;}
.y270{bottom:448.011150px;}
.y9c{bottom:451.485150px;}
.y170{bottom:452.073150px;}
.yd1{bottom:452.523150px;}
.y128{bottom:453.138150px;}
.y212{bottom:453.935400px;}
.y40{bottom:454.140900px;}
.y14e{bottom:454.262400px;}
.y194{bottom:454.296150px;}
.ybe{bottom:454.760100px;}
.yfc{bottom:454.892550px;}
.y1b4{bottom:455.070150px;}
.y1f1{bottom:455.073150px;}
.y6f{bottom:456.306750px;}
.y23c{bottom:457.714650px;}
.y18{bottom:459.277950px;}
.y1d7{bottom:462.319050px;}
.y26f{bottom:463.765650px;}
.y9b{bottom:468.741900px;}
.y127{bottom:470.394900px;}
.y211{bottom:471.192150px;}
.y3f{bottom:471.397650px;}
.y14d{bottom:471.519150px;}
.y193{bottom:471.552900px;}
.ybd{bottom:472.016850px;}
.yfb{bottom:472.149300px;}
.y1b3{bottom:472.320900px;}
.y23b{bottom:473.469150px;}
.y6e{bottom:473.563500px;}
.y17{bottom:475.477950px;}
.y26e{bottom:479.520150px;}
.y1d6{bottom:479.569800px;}
.y9a{bottom:485.998650px;}
.y16f{bottom:487.248900px;}
.y126{bottom:487.651650px;}
.yd0{bottom:487.773150px;}
.y210{bottom:488.448900px;}
.y3e{bottom:488.654400px;}
.y14c{bottom:488.775900px;}
.y192{bottom:488.809650px;}
.y23a{bottom:489.223650px;}
.ybc{bottom:489.273600px;}
.yfa{bottom:489.406050px;}
.y1b2{bottom:489.571650px;}
.y1f0{bottom:490.208400px;}
.y6d{bottom:490.820250px;}
.y16{bottom:491.677950px;}
.y26d{bottom:495.274650px;}
.y1d5{bottom:496.820550px;}
.y99{bottom:503.255400px;}
.y16e{bottom:504.505650px;}
.y125{bottom:504.908400px;}
.y239{bottom:504.978150px;}
.y20f{bottom:505.705650px;}
.y3d{bottom:505.911150px;}
.y14b{bottom:506.032650px;}
.y191{bottom:506.066400px;}
.ybb{bottom:506.530350px;}
.yf9{bottom:506.662800px;}
.y1b1{bottom:506.822400px;}
.y1ef{bottom:507.465150px;}
.y15{bottom:507.877950px;}
.y6c{bottom:508.077000px;}
.y26c{bottom:511.029150px;}
.y1d4{bottom:514.071300px;}
.y98{bottom:520.512150px;}
.y238{bottom:520.732650px;}
.y16d{bottom:521.762400px;}
.y124{bottom:522.165150px;}
.y20e{bottom:522.962400px;}
.y3c{bottom:523.167900px;}
.y14a{bottom:523.289400px;}
.y190{bottom:523.323150px;}
.ycf{bottom:523.773150px;}
.yba{bottom:523.787100px;}
.yf8{bottom:523.919550px;}
.y1b0{bottom:524.073150px;}
.y14{bottom:524.077950px;}
.y1ee{bottom:524.721900px;}
.y6b{bottom:525.333750px;}
.y26b{bottom:526.783650px;}
.y1d3{bottom:531.322050px;}
.y237{bottom:536.487150px;}
.y97{bottom:537.768900px;}
.y16c{bottom:539.019150px;}
.y123{bottom:539.421900px;}
.y20d{bottom:540.219150px;}
.y13{bottom:540.277950px;}
.y3b{bottom:540.424650px;}
.y149{bottom:540.546150px;}
.yb9{bottom:541.043850px;}
.y1ed{bottom:541.978650px;}
.y26a{bottom:542.538150px;}
.y6a{bottom:542.590500px;}
.y236{bottom:552.241650px;}
.y96{bottom:555.025650px;}
.y16b{bottom:556.275900px;}
.y12{bottom:556.477950px;}
.y122{bottom:556.678650px;}
.y20c{bottom:557.475900px;}
.y3a{bottom:557.681400px;}
.y148{bottom:557.802900px;}
.y269{bottom:558.292650px;}
.yb8{bottom:558.300600px;}
.y18f{bottom:558.573150px;}
.yf7{bottom:559.169550px;}
.y1ec{bottom:559.235400px;}
.y1af{bottom:559.269150px;}
.y69{bottom:559.847250px;}
.y235{bottom:567.996150px;}
.y1d2{bottom:570.809100px;}
.y95{bottom:572.282400px;}
.y11{bottom:572.677950px;}
.y16a{bottom:573.532650px;}
.y121{bottom:573.935400px;}
.y268{bottom:574.047150px;}
.y20b{bottom:574.732650px;}
.y39{bottom:574.938150px;}
.y147{bottom:575.059650px;}
.yb7{bottom:575.557350px;}
.y1eb{bottom:576.492150px;}
.y1ae{bottom:576.525900px;}
.y68{bottom:577.104000px;}
.y234{bottom:583.750650px;}
.y1d1{bottom:588.065850px;}
.y10{bottom:588.877950px;}
.y94{bottom:589.539150px;}
.y267{bottom:589.801650px;}
.y169{bottom:590.789400px;}
.y120{bottom:591.192150px;}
.y20a{bottom:591.989400px;}
.y38{bottom:592.194900px;}
.y146{bottom:592.316400px;}
.y1ea{bottom:593.748900px;}
.y1ad{bottom:593.782650px;}
.y67{bottom:594.360750px;}
.y233{bottom:599.505150px;}
.y1d0{bottom:605.322600px;}
.y266{bottom:605.556150px;}
.y93{bottom:606.795900px;}
.y18e{bottom:608.012400px;}
.y168{bottom:608.046150px;}
.y11f{bottom:608.448900px;}
.yf6{bottom:608.568300px;}
.y209{bottom:609.246150px;}
.y37{bottom:609.451650px;}
.y145{bottom:609.573150px;}
.yf{bottom:609.577950px;}
.yb6{bottom:610.807350px;}
.y1e9{bottom:611.005650px;}
.y1ac{bottom:611.039400px;}
.y66{bottom:611.617500px;}
.y232{bottom:615.259650px;}
.y265{bottom:621.310650px;}
.y92{bottom:624.052650px;}
.y18d{bottom:625.269150px;}
.y167{bottom:625.302900px;}
.y11e{bottom:625.705650px;}
.yf5{bottom:625.825050px;}
.y208{bottom:626.502900px;}
.y36{bottom:626.708400px;}
.y1e8{bottom:628.262400px;}
.y1ab{bottom:628.296150px;}
.y65{bottom:628.874250px;}
.y231{bottom:631.014150px;}
.y264{bottom:637.065150px;}
.y1cf{bottom:640.572600px;}
.y91{bottom:641.309400px;}
.y18c{bottom:642.525900px;}
.y166{bottom:642.559650px;}
.y11d{bottom:642.962400px;}
.yf4{bottom:643.081800px;}
.y207{bottom:643.759650px;}
.y35{bottom:643.965150px;}
.y144{bottom:644.823150px;}
.y1e7{bottom:645.519150px;}
.y1aa{bottom:645.552900px;}
.y64{bottom:646.131000px;}
.y230{bottom:646.768650px;}
.y263{bottom:652.819650px;}
.ye{bottom:655.177950px;}
.y90{bottom:658.566150px;}
.y18b{bottom:659.782650px;}
.y165{bottom:659.816400px;}
.y11c{bottom:660.219150px;}
.yf3{bottom:660.338550px;}
.y206{bottom:661.016400px;}
.y34{bottom:661.221900px;}
.y22f{bottom:662.523150px;}
.yb5{bottom:662.775900px;}
.y1a9{bottom:662.809650px;}
.y63{bottom:663.387750px;}
.y262{bottom:668.574150px;}
.yd{bottom:669.577950px;}
.y8f{bottom:675.822900px;}
.y18a{bottom:677.039400px;}
.y164{bottom:677.073150px;}
.yf2{bottom:677.595300px;}
.y205{bottom:678.273150px;}
.y33{bottom:678.478650px;}
.yb4{bottom:680.032650px;}
.y1a8{bottom:680.066400px;}
.y62{bottom:680.644500px;}
.y261{bottom:684.328650px;}
.y1ce{bottom:690.038850px;}
.y8e{bottom:693.079650px;}
.y143{bottom:694.282650px;}
.y189{bottom:694.296150px;}
.yf1{bottom:694.852050px;}
.y11b{bottom:695.466150px;}
.y32{bottom:695.735400px;}
.y22e{bottom:696.273150px;}
.yb3{bottom:697.289400px;}
.y1a7{bottom:697.323150px;}
.y61{bottom:697.901250px;}
.y260{bottom:700.083150px;}
.y1cd{bottom:707.295600px;}
.y8d{bottom:710.336400px;}
.y142{bottom:711.539400px;}
.y188{bottom:711.552900px;}
.yf0{bottom:712.108800px;}
.y163{bottom:712.320900px;}
.y11a{bottom:712.716900px;}
.yc{bottom:712.777950px;}
.y31{bottom:712.992150px;}
.y204{bottom:713.523150px;}
.yb2{bottom:714.546150px;}
.y60{bottom:715.158000px;}
.y25f{bottom:715.837650px;}
.y1cc{bottom:724.552350px;}
.yb{bottom:727.177950px;}
.y8c{bottom:727.593150px;}
.y141{bottom:728.796150px;}
.y187{bottom:728.809650px;}
.yef{bottom:729.365550px;}
.y162{bottom:729.571650px;}
.y119{bottom:729.967650px;}
.y30{bottom:730.248900px;}
.y25e{bottom:731.592150px;}
.yb1{bottom:731.802900px;}
.y1a6{bottom:732.573150px;}
.y1cb{bottom:741.809100px;}
.y8b{bottom:744.849900px;}
.y140{bottom:746.052900px;}
.y186{bottom:746.066400px;}
.yee{bottom:746.622300px;}
.y161{bottom:746.822400px;}
.y118{bottom:747.218400px;}
.y25d{bottom:747.346650px;}
.y2f{bottom:747.505650px;}
.yb0{bottom:749.059650px;}
.y1ca{bottom:759.065850px;}
.y8a{bottom:762.106650px;}
.y25c{bottom:763.101150px;}
.y13f{bottom:763.309650px;}
.y185{bottom:763.323150px;}
.yed{bottom:763.879050px;}
.y160{bottom:764.073150px;}
.y117{bottom:764.469150px;}
.y2e{bottom:764.762400px;}
.yaf{bottom:766.316400px;}
.ya{bottom:770.377950px;}
.y1c9{bottom:776.322600px;}
.y25b{bottom:778.855650px;}
.y89{bottom:779.363400px;}
.y13e{bottom:780.566400px;}
.yec{bottom:781.135800px;}
.y2d{bottom:782.019150px;}
.yae{bottom:783.573150px;}
.y9{bottom:784.777950px;}
.y25a{bottom:794.610150px;}
.y88{bottom:796.620150px;}
.y13d{bottom:797.823150px;}
.yeb{bottom:798.392550px;}
.y184{bottom:798.570150px;}
.y2c{bottom:799.275900px;}
.y116{bottom:799.705650px;}
.y259{bottom:810.364650px;}
.y1c8{bottom:811.570350px;}
.y87{bottom:813.876900px;}
.yea{bottom:815.649300px;}
.y183{bottom:815.820900px;}
.y2b{bottom:816.532650px;}
.y115{bottom:816.962400px;}
.yad{bottom:818.823150px;}
.y258{bottom:826.119150px;}
.y8{bottom:827.978100px;}
.y1c7{bottom:828.821100px;}
.y86{bottom:831.133650px;}
.ye9{bottom:832.906050px;}
.y13c{bottom:833.071650px;}
.y2a{bottom:833.789400px;}
.y114{bottom:834.219150px;}
.y257{bottom:841.873650px;}
.y7{bottom:842.377950px;}
.y1c6{bottom:846.071850px;}
.y85{bottom:848.390400px;}
.ye8{bottom:850.162800px;}
.y13b{bottom:850.322400px;}
.y29{bottom:851.046150px;}
.y256{bottom:857.628150px;}
.y1c5{bottom:863.322600px;}
.ye7{bottom:867.419550px;}
.y13a{bottom:867.573150px;}
.y28{bottom:868.302900px;}
.y113{bottom:869.466900px;}
.y255{bottom:873.382650px;}
.y84{bottom:883.640400px;}
.y27{bottom:885.559650px;}
.y6{bottom:885.577950px;}
.y112{bottom:886.717650px;}
.y254{bottom:889.137150px;}
.ye6{bottom:902.669550px;}
.y26{bottom:902.816400px;}
.y111{bottom:903.968400px;}
.y253{bottom:904.891650px;}
.y5{bottom:914.377950px;}
.y83{bottom:919.640400px;}
.y25{bottom:920.073150px;}
.y252{bottom:920.646150px;}
.ye5{bottom:920.669550px;}
.y110{bottom:921.219150px;}
.y5f{bottom:921.632550px;}
.y51{bottom:962.112450px;}
.y24{bottom:962.382600px;}
.y2{bottom:976.680900px;}
.h4{height:21.379776px;}
.h9{height:29.022000px;}
.h8{height:36.864000px;}
.h2{height:37.314000px;}
.ha{height:37.343455px;}
.h12{height:38.964000px;}
.h7{height:39.736062px;}
.he{height:40.500000px;}
.h13{height:41.256000px;}
.h10{height:41.460000px;}
.hd{height:43.548000px;}
.hf{height:43.776000px;}
.h11{height:45.000000px;}
.hb{height:45.606000px;}
.h3{height:46.174453px;}
.h5{height:72.000000px;}
.h6{height:73.944000px;}
.hc{height:182.628490px;}
.h0{height:1040.040000px;}
.h1{height:1040.250000px;}
.w0{width:708.480000px;}
.w1{width:708.750000px;}
.x0{left:0.000000px;}
.x7{left:35.437500px;}
.x8{left:86.527650px;}
.x3{left:94.818900px;}
.x4{left:99.176700px;}
.xb{left:109.027500px;}
.x9{left:113.531400px;}
.x6{left:117.734700px;}
.x5{left:120.318900px;}
.xa{left:173.543250px;}
.x2{left:180.152400px;}
.x1{left:353.392050px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.320000pt;}
.v4{vertical-align:15.984000pt;}
.v3{vertical-align:28.416000pt;}
.v5{vertical-align:122.666667pt;}
.ls14{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.760000pt;}
.lsb{letter-spacing:-0.709333pt;}
.ls12{letter-spacing:-0.557333pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls13{letter-spacing:-0.354667pt;}
.lsd{letter-spacing:-0.304000pt;}
.ls3{letter-spacing:-0.253333pt;}
.ls5{letter-spacing:-0.202667pt;}
.ls10{letter-spacing:-0.152000pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000085pt;}
.ls8{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.001067pt;}
.lsa{letter-spacing:0.253333pt;}
.ls11{letter-spacing:0.317333pt;}
.lsc{letter-spacing:0.506667pt;}
.lsf{letter-spacing:0.634667pt;}
.ls1{letter-spacing:1.280000pt;}
.ls6{letter-spacing:87.360000pt;}
.ls4{letter-spacing:145.680000pt;}
.ws0{word-spacing:-50.666667pt;}
.ws4{word-spacing:-16.309333pt;}
.ws70{word-spacing:-15.573333pt;}
.ws81{word-spacing:-14.826667pt;}
.ws18{word-spacing:-14.085333pt;}
.ws9e{word-spacing:-13.781333pt;}
.ws3{word-spacing:-13.344000pt;}
.ws2{word-spacing:-10.378667pt;}
.ws126{word-spacing:-7.632000pt;}
.ws125{word-spacing:-5.712000pt;}
.ws43{word-spacing:-4.712000pt;}
.ws12e{word-spacing:-4.512000pt;}
.ws113{word-spacing:-4.464000pt;}
.ws1f{word-spacing:-3.394667pt;}
.ws10e{word-spacing:-3.344000pt;}
.wsfb{word-spacing:-3.192000pt;}
.ws10b{word-spacing:-3.090667pt;}
.wsbf{word-spacing:-2.786667pt;}
.ws90{word-spacing:-2.736000pt;}
.wsfa{word-spacing:-2.685333pt;}
.ws11{word-spacing:-2.592000pt;}
.wse3{word-spacing:-2.584000pt;}
.wsb7{word-spacing:-2.533333pt;}
.wsd2{word-spacing:-2.493333pt;}
.ws35{word-spacing:-2.482667pt;}
.wscd{word-spacing:-2.448000pt;}
.ws98{word-spacing:-2.432000pt;}
.wsc3{word-spacing:-2.402667pt;}
.ws115{word-spacing:-2.400000pt;}
.wsa1{word-spacing:-2.381333pt;}
.wsb0{word-spacing:-2.357333pt;}
.ws57{word-spacing:-2.330667pt;}
.wsf6{word-spacing:-2.312000pt;}
.ws40{word-spacing:-2.280000pt;}
.ws37{word-spacing:-2.229333pt;}
.wsc2{word-spacing:-2.221333pt;}
.ws116{word-spacing:-2.208000pt;}
.ws23{word-spacing:-2.128000pt;}
.ws142{word-spacing:-2.112000pt;}
.ws3e{word-spacing:-2.077333pt;}
.wsfe{word-spacing:-2.040000pt;}
.ws30{word-spacing:-2.026667pt;}
.ws13c{word-spacing:-2.016000pt;}
.ws39{word-spacing:-1.976000pt;}
.ws50{word-spacing:-1.925333pt;}
.ws1d{word-spacing:-1.874667pt;}
.ws108{word-spacing:-1.824000pt;}
.ws47{word-spacing:-1.773333pt;}
.wse2{word-spacing:-1.768000pt;}
.ws13d{word-spacing:-1.728000pt;}
.wsf3{word-spacing:-1.722667pt;}
.ws141{word-spacing:-1.680000pt;}
.ws4e{word-spacing:-1.672000pt;}
.ws102{word-spacing:-1.632000pt;}
.ws82{word-spacing:-1.621333pt;}
.wsd6{word-spacing:-1.586667pt;}
.ws91{word-spacing:-1.570667pt;}
.ws58{word-spacing:-1.520000pt;}
.ws5b{word-spacing:-1.469333pt;}
.ws78{word-spacing:-1.418667pt;}
.wsa{word-spacing:-1.392000pt;}
.ws66{word-spacing:-1.368000pt;}
.ws4d{word-spacing:-1.317333pt;}
.wsf8{word-spacing:-1.314667pt;}
.ws13a{word-spacing:-1.296000pt;}
.ws3a{word-spacing:-1.266667pt;}
.ws8{word-spacing:-1.248000pt;}
.ws94{word-spacing:-1.216000pt;}
.ws48{word-spacing:-1.165333pt;}
.wsbd{word-spacing:-1.133333pt;}
.wsa5{word-spacing:-1.114667pt;}
.ws83{word-spacing:-1.064000pt;}
.wsc6{word-spacing:-1.013333pt;}
.ws12a{word-spacing:-1.008000pt;}
.ws15{word-spacing:-0.962667pt;}
.wsfc{word-spacing:-0.952000pt;}
.ws6d{word-spacing:-0.912000pt;}
.wsef{word-spacing:-0.906667pt;}
.wsb{word-spacing:-0.864000pt;}
.ws1b{word-spacing:-0.861333pt;}
.wsfd{word-spacing:-0.816000pt;}
.ws2b{word-spacing:-0.810667pt;}
.ws12d{word-spacing:-0.768000pt;}
.ws59{word-spacing:-0.760000pt;}
.ws12f{word-spacing:-0.720000pt;}
.ws64{word-spacing:-0.709333pt;}
.wsdd{word-spacing:-0.680000pt;}
.ws121{word-spacing:-0.672000pt;}
.ws7d{word-spacing:-0.658667pt;}
.ws13{word-spacing:-0.608000pt;}
.ws12c{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.557333pt;}
.wsbb{word-spacing:-0.544000pt;}
.ws3c{word-spacing:-0.506667pt;}
.ws107{word-spacing:-0.456000pt;}
.ws16{word-spacing:-0.405333pt;}
.wsf7{word-spacing:-0.362667pt;}
.ws4c{word-spacing:-0.354667pt;}
.ws7a{word-spacing:-0.304000pt;}
.wsc{word-spacing:-0.288000pt;}
.wsc4{word-spacing:-0.253333pt;}
.ws5{word-spacing:-0.230239pt;}
.ws109{word-spacing:-0.202667pt;}
.ws36{word-spacing:-0.152000pt;}
.wsaa{word-spacing:-0.101333pt;}
.ws44{word-spacing:-0.050667pt;}
.ws11d{word-spacing:-0.048000pt;}
.wsd7{word-spacing:-0.045333pt;}
.ws6{word-spacing:0.000000pt;}
.ws129{word-spacing:0.048000pt;}
.ws74{word-spacing:0.050667pt;}
.ws10{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.101333pt;}
.wsff{word-spacing:0.152000pt;}
.ws5f{word-spacing:0.202667pt;}
.wsba{word-spacing:0.226667pt;}
.ws137{word-spacing:0.240000pt;}
.wsad{word-spacing:0.253333pt;}
.wsed{word-spacing:0.272000pt;}
.ws79{word-spacing:0.304000pt;}
.ws131{word-spacing:0.336000pt;}
.ws2d{word-spacing:0.354667pt;}
.ws112{word-spacing:0.405333pt;}
.wse8{word-spacing:0.408000pt;}
.wsac{word-spacing:0.453333pt;}
.ws3d{word-spacing:0.456000pt;}
.wsf2{word-spacing:0.498667pt;}
.wsb8{word-spacing:0.506667pt;}
.wsea{word-spacing:0.589333pt;}
.ws38{word-spacing:0.608000pt;}
.ws55{word-spacing:0.658667pt;}
.wsc5{word-spacing:0.709333pt;}
.wsf1{word-spacing:0.725333pt;}
.ws71{word-spacing:0.760000pt;}
.ws4a{word-spacing:0.810667pt;}
.ws62{word-spacing:0.861333pt;}
.ws99{word-spacing:0.912000pt;}
.wsdb{word-spacing:0.952000pt;}
.ws114{word-spacing:0.960000pt;}
.ws53{word-spacing:0.962667pt;}
.ws6e{word-spacing:1.013333pt;}
.wsdc{word-spacing:1.042667pt;}
.ws80{word-spacing:1.064000pt;}
.ws76{word-spacing:1.114667pt;}
.ws10d{word-spacing:1.165333pt;}
.ws26{word-spacing:1.216000pt;}
.ws86{word-spacing:1.266667pt;}
.ws19{word-spacing:1.317333pt;}
.wsbe{word-spacing:1.368000pt;}
.ws11b{word-spacing:1.392000pt;}
.wsab{word-spacing:1.405333pt;}
.ws1c{word-spacing:1.418667pt;}
.ws32{word-spacing:1.469333pt;}
.ws21{word-spacing:1.520000pt;}
.ws13b{word-spacing:1.536000pt;}
.ws6a{word-spacing:1.621333pt;}
.ws17{word-spacing:1.672000pt;}
.wsf{word-spacing:1.680000pt;}
.ws54{word-spacing:1.722667pt;}
.ws72{word-spacing:1.773333pt;}
.ws31{word-spacing:1.824000pt;}
.wse0{word-spacing:1.858667pt;}
.ws11f{word-spacing:1.872000pt;}
.ws2e{word-spacing:1.874667pt;}
.ws120{word-spacing:1.920000pt;}
.ws97{word-spacing:1.925333pt;}
.ws4f{word-spacing:1.976000pt;}
.ws7b{word-spacing:2.026667pt;}
.wsb9{word-spacing:2.040000pt;}
.ws118{word-spacing:2.064000pt;}
.wsa9{word-spacing:2.077333pt;}
.wsd9{word-spacing:2.085333pt;}
.wsd{word-spacing:2.112000pt;}
.wsce{word-spacing:2.130667pt;}
.ws33{word-spacing:2.178667pt;}
.ws117{word-spacing:2.208000pt;}
.wsb3{word-spacing:2.229333pt;}
.ws9{word-spacing:2.256000pt;}
.wsf9{word-spacing:2.266667pt;}
.ws67{word-spacing:2.280000pt;}
.ws12b{word-spacing:2.304000pt;}
.wse9{word-spacing:2.312000pt;}
.wsc0{word-spacing:2.330667pt;}
.ws122{word-spacing:2.352000pt;}
.ws28{word-spacing:2.381333pt;}
.ws8e{word-spacing:2.432000pt;}
.ws12{word-spacing:2.448000pt;}
.ws45{word-spacing:2.482667pt;}
.ws8f{word-spacing:2.533333pt;}
.ws139{word-spacing:2.544000pt;}
.ws51{word-spacing:2.584000pt;}
.wsd8{word-spacing:2.629333pt;}
.ws84{word-spacing:2.634667pt;}
.ws11a{word-spacing:2.640000pt;}
.ws95{word-spacing:2.685333pt;}
.wsec{word-spacing:2.720000pt;}
.ws6c{word-spacing:2.736000pt;}
.wscb{word-spacing:2.765333pt;}
.ws61{word-spacing:2.786667pt;}
.ws4b{word-spacing:2.837333pt;}
.ws2c{word-spacing:2.888000pt;}
.ws41{word-spacing:2.938667pt;}
.ws22{word-spacing:2.989333pt;}
.ws11e{word-spacing:3.024000pt;}
.ws103{word-spacing:3.037333pt;}
.ws52{word-spacing:3.040000pt;}
.ws138{word-spacing:3.072000pt;}
.wsdf{word-spacing:3.090667pt;}
.wsbc{word-spacing:3.128000pt;}
.wsa7{word-spacing:3.141333pt;}
.ws46{word-spacing:3.192000pt;}
.ws119{word-spacing:3.216000pt;}
.wse1{word-spacing:3.218667pt;}
.ws2f{word-spacing:3.242667pt;}
.ws68{word-spacing:3.293333pt;}
.wse{word-spacing:3.312000pt;}
.ws9d{word-spacing:3.344000pt;}
.ws65{word-spacing:3.394667pt;}
.ws1e{word-spacing:3.496000pt;}
.wsda{word-spacing:3.546667pt;}
.ws27{word-spacing:3.648000pt;}
.ws136{word-spacing:3.696000pt;}
.wsa2{word-spacing:3.698667pt;}
.ws14{word-spacing:3.749333pt;}
.ws133{word-spacing:3.792000pt;}
.ws49{word-spacing:3.800000pt;}
.ws7c{word-spacing:3.850667pt;}
.wseb{word-spacing:3.898667pt;}
.wsde{word-spacing:3.901333pt;}
.wsd5{word-spacing:3.952000pt;}
.wsa4{word-spacing:4.002667pt;}
.wse6{word-spacing:4.053333pt;}
.ws6f{word-spacing:4.104000pt;}
.ws8b{word-spacing:4.154667pt;}
.ws111{word-spacing:4.205333pt;}
.wse7{word-spacing:4.216000pt;}
.wsa8{word-spacing:4.256000pt;}
.ws132{word-spacing:4.272000pt;}
.wse5{word-spacing:4.357333pt;}
.wse4{word-spacing:4.408000pt;}
.ws134{word-spacing:4.416000pt;}
.ws88{word-spacing:4.458667pt;}
.ws25{word-spacing:4.509333pt;}
.ws100{word-spacing:4.560000pt;}
.ws9a{word-spacing:4.610667pt;}
.ws29{word-spacing:4.661333pt;}
.wsa3{word-spacing:4.712000pt;}
.wscc{word-spacing:4.760000pt;}
.ws56{word-spacing:4.762667pt;}
.wsb2{word-spacing:4.813333pt;}
.wsf0{word-spacing:4.850667pt;}
.wsd4{word-spacing:4.864000pt;}
.wsee{word-spacing:4.896000pt;}
.ws93{word-spacing:4.914667pt;}
.ws101{word-spacing:4.965333pt;}
.wsb1{word-spacing:4.986667pt;}
.ws9f{word-spacing:5.016000pt;}
.ws69{word-spacing:5.066667pt;}
.wsc1{word-spacing:5.077333pt;}
.ws60{word-spacing:5.117333pt;}
.ws6b{word-spacing:5.168000pt;}
.ws20{word-spacing:5.218667pt;}
.wsd1{word-spacing:5.269333pt;}
.ws75{word-spacing:5.370667pt;}
.wsd3{word-spacing:5.394667pt;}
.ws10f{word-spacing:5.421333pt;}
.ws110{word-spacing:5.472000pt;}
.wsb4{word-spacing:5.522667pt;}
.ws96{word-spacing:5.573333pt;}
.wsca{word-spacing:5.725333pt;}
.ws130{word-spacing:5.760000pt;}
.wsb6{word-spacing:5.776000pt;}
.ws8a{word-spacing:5.826667pt;}
.wsaf{word-spacing:5.893333pt;}
.ws2a{word-spacing:5.928000pt;}
.ws3b{word-spacing:5.978667pt;}
.ws135{word-spacing:6.000000pt;}
.ws3f{word-spacing:6.029333pt;}
.ws73{word-spacing:6.181333pt;}
.wsd0{word-spacing:6.232000pt;}
.ws104{word-spacing:6.256000pt;}
.ws87{word-spacing:6.333333pt;}
.ws85{word-spacing:6.384000pt;}
.ws63{word-spacing:6.434667pt;}
.ws1a{word-spacing:6.485333pt;}
.wsae{word-spacing:6.528000pt;}
.ws34{word-spacing:6.536000pt;}
.ws9c{word-spacing:6.586667pt;}
.ws10c{word-spacing:6.637333pt;}
.ws89{word-spacing:6.688000pt;}
.wsc7{word-spacing:6.789333pt;}
.ws42{word-spacing:6.840000pt;}
.ws8d{word-spacing:6.890667pt;}
.wsc8{word-spacing:6.941333pt;}
.ws143{word-spacing:6.960000pt;}
.ws106{word-spacing:7.144000pt;}
.ws24{word-spacing:7.245333pt;}
.wsf4{word-spacing:7.346667pt;}
.wsb5{word-spacing:7.397333pt;}
.wscf{word-spacing:7.701333pt;}
.ws123{word-spacing:7.728000pt;}
.wsa0{word-spacing:7.752000pt;}
.wsa6{word-spacing:7.802667pt;}
.ws13f{word-spacing:7.824000pt;}
.ws5d{word-spacing:7.853333pt;}
.wsc9{word-spacing:8.056000pt;}
.ws5c{word-spacing:8.157333pt;}
.ws7f{word-spacing:8.309333pt;}
.ws5e{word-spacing:8.360000pt;}
.ws11c{word-spacing:8.736000pt;}
.ws5a{word-spacing:9.221333pt;}
.ws9b{word-spacing:9.474667pt;}
.ws124{word-spacing:9.504000pt;}
.ws127{word-spacing:9.552000pt;}
.ws13e{word-spacing:9.840000pt;}
.ws10a{word-spacing:9.981333pt;}
.ws92{word-spacing:10.234667pt;}
.ws105{word-spacing:10.386667pt;}
.wsf5{word-spacing:10.842667pt;}
.ws7e{word-spacing:13.426667pt;}
.ws128{word-spacing:17.136000pt;}
.ws7{word-spacing:21.418667pt;}
.ws140{word-spacing:22.224000pt;}
.ws1{word-spacing:37.838933pt;}
._4{margin-left:-46.293333pt;}
._5{margin-left:-25.872000pt;}
._e{margin-left:-21.782400pt;}
._10{margin-left:-18.947200pt;}
._11{margin-left:-17.019733pt;}
._12{margin-left:-13.636267pt;}
._a{margin-left:-12.318933pt;}
._f{margin-left:-8.800000pt;}
._7{margin-left:-6.724800pt;}
._6{margin-left:-5.252267pt;}
._1{margin-left:-3.546667pt;}
._9{margin-left:-2.476800pt;}
._3{margin-left:-1.578667pt;}
._2{width:1.773333pt;}
._d{width:11.274667pt;}
._b{width:27.840000pt;}
._0{width:29.386667pt;}
._8{width:34.608000pt;}
._c{width:100.904533pt;}
.fsb{font-size:21.333333pt;}
.fs2{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:49.749333pt;}
.fs1{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:85.333333pt;}
.fs9{font-size:230.238933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:58.374267pt;}
.y182{bottom:109.764800pt;}
.y139{bottom:110.140800pt;}
.ye4{bottom:110.795467pt;}
.y1a5{bottom:111.140133pt;}
.y15f{bottom:111.164133pt;}
.y1c4{bottom:111.170133pt;}
.yac{bottom:111.386133pt;}
.yce{bottom:112.007067pt;}
.y225{bottom:112.050800pt;}
.y22d{bottom:112.233467pt;}
.y203{bottom:112.425467pt;}
.y251{bottom:112.773467pt;}
.y10f{bottom:112.901600pt;}
.y5e{bottom:113.116133pt;}
.y1e6{bottom:113.174667pt;}
.y4{bottom:113.576133pt;}
.y50{bottom:113.824800pt;}
.y82{bottom:114.158667pt;}
.y284{bottom:118.152133pt;}
.y181{bottom:125.104133pt;}
.y138{bottom:125.480133pt;}
.ye3{bottom:126.134800pt;}
.y1a4{bottom:126.479467pt;}
.y15e{bottom:126.503467pt;}
.y1c3{bottom:126.509467pt;}
.yab{bottom:126.725467pt;}
.y250{bottom:126.777467pt;}
.ycd{bottom:127.346400pt;}
.y224{bottom:127.390133pt;}
.y22c{bottom:127.572800pt;}
.y3{bottom:127.576133pt;}
.y202{bottom:127.764800pt;}
.y10e{bottom:128.240933pt;}
.y5d{bottom:128.455467pt;}
.y1e5{bottom:128.508667pt;}
.y4f{bottom:129.164133pt;}
.y81{bottom:129.498000pt;}
.y283{bottom:132.156133pt;}
.y180{bottom:140.443467pt;}
.y24f{bottom:140.781467pt;}
.y137{bottom:140.819467pt;}
.ye2{bottom:141.474133pt;}
.y1a3{bottom:141.818800pt;}
.y15d{bottom:141.842800pt;}
.yaa{bottom:142.064800pt;}
.ycc{bottom:142.685733pt;}
.y223{bottom:142.729467pt;}
.y22b{bottom:142.912133pt;}
.y201{bottom:143.104133pt;}
.y10d{bottom:143.580267pt;}
.y5c{bottom:143.794800pt;}
.y1e4{bottom:143.842667pt;}
.y4e{bottom:144.503467pt;}
.y80{bottom:144.837333pt;}
.y282{bottom:146.160133pt;}
.y24e{bottom:154.785467pt;}
.y17f{bottom:155.782800pt;}
.y136{bottom:156.158800pt;}
.ye1{bottom:156.813467pt;}
.y1a2{bottom:157.158133pt;}
.ya9{bottom:157.404133pt;}
.y1c2{bottom:157.840133pt;}
.ycb{bottom:158.025067pt;}
.y222{bottom:158.068800pt;}
.y22a{bottom:158.251467pt;}
.y200{bottom:158.443467pt;}
.y10c{bottom:158.919600pt;}
.y5b{bottom:159.134133pt;}
.y4d{bottom:159.842800pt;}
.y281{bottom:160.164133pt;}
.y7f{bottom:160.176667pt;}
.y24d{bottom:168.789467pt;}
.y17e{bottom:171.122133pt;}
.y135{bottom:171.498133pt;}
.ye0{bottom:172.152800pt;}
.y1a1{bottom:172.497467pt;}
.ya8{bottom:172.743467pt;}
.y15c{bottom:173.172800pt;}
.y1c1{bottom:173.174133pt;}
.yca{bottom:173.364400pt;}
.y221{bottom:173.408133pt;}
.y229{bottom:173.590800pt;}
.y1ff{bottom:173.782800pt;}
.y280{bottom:174.168133pt;}
.y10b{bottom:174.258933pt;}
.y5a{bottom:174.473467pt;}
.y1e3{bottom:175.168667pt;}
.y7e{bottom:175.516000pt;}
.y23{bottom:177.156400pt;}
.y24c{bottom:182.793467pt;}
.y17d{bottom:186.461467pt;}
.y134{bottom:186.837467pt;}
.ydf{bottom:187.492133pt;}
.y1a0{bottom:187.836800pt;}
.ya7{bottom:188.082800pt;}
.y27f{bottom:188.172133pt;}
.y15b{bottom:188.506800pt;}
.y1c0{bottom:188.508133pt;}
.yc9{bottom:188.703733pt;}
.y220{bottom:188.747467pt;}
.y228{bottom:188.930133pt;}
.y1fe{bottom:189.122133pt;}
.y10a{bottom:189.598267pt;}
.y59{bottom:189.812800pt;}
.y1e2{bottom:190.508000pt;}
.y7d{bottom:190.855333pt;}
.y4c{bottom:191.176133pt;}
.y22{bottom:192.495733pt;}
.y24b{bottom:196.797467pt;}
.y17c{bottom:201.800800pt;}
.y27e{bottom:202.176133pt;}
.y133{bottom:202.176800pt;}
.yde{bottom:202.831467pt;}
.y19f{bottom:203.176133pt;}
.ya6{bottom:203.422133pt;}
.y15a{bottom:203.840800pt;}
.y1bf{bottom:203.842133pt;}
.y21f{bottom:204.086800pt;}
.y227{bottom:204.269467pt;}
.y1fd{bottom:204.461467pt;}
.y109{bottom:204.937600pt;}
.y58{bottom:205.152133pt;}
.y7c{bottom:206.194667pt;}
.y21{bottom:207.835067pt;}
.y1f{bottom:207.847067pt;}
.y24a{bottom:210.801467pt;}
.y27d{bottom:216.180133pt;}
.y17b{bottom:217.140133pt;}
.y132{bottom:217.516133pt;}
.ydd{bottom:218.170800pt;}
.ya5{bottom:218.761467pt;}
.y159{bottom:219.174800pt;}
.y1be{bottom:219.176133pt;}
.y21e{bottom:219.426133pt;}
.y226{bottom:219.608800pt;}
.y1fc{bottom:219.800800pt;}
.yc8{bottom:220.037067pt;}
.y108{bottom:220.276933pt;}
.y57{bottom:220.491467pt;}
.y7b{bottom:221.534000pt;}
.y1e1{bottom:221.839333pt;}
.y20{bottom:223.174400pt;}
.y249{bottom:224.805467pt;}
.y27c{bottom:230.184133pt;}
.y17a{bottom:232.479467pt;}
.y131{bottom:232.855467pt;}
.ydc{bottom:233.510133pt;}
.ya4{bottom:234.100800pt;}
.y19e{bottom:234.507467pt;}
.y158{bottom:234.508800pt;}
.y21d{bottom:234.765467pt;}
.y4b{bottom:234.948133pt;}
.y1fb{bottom:235.140133pt;}
.y107{bottom:235.616267pt;}
.y56{bottom:235.830800pt;}
.y7a{bottom:236.873333pt;}
.y1e0{bottom:237.173333pt;}
.y248{bottom:238.809467pt;}
.y27b{bottom:244.188133pt;}
.y179{bottom:247.818800pt;}
.y130{bottom:248.194800pt;}
.ydb{bottom:248.849467pt;}
.ya3{bottom:249.440133pt;}
.y19d{bottom:249.841467pt;}
.y157{bottom:249.842800pt;}
.y21c{bottom:250.104800pt;}
.y4a{bottom:250.287467pt;}
.y1bd{bottom:250.467467pt;}
.y1fa{bottom:250.479467pt;}
.y106{bottom:250.955600pt;}
.y55{bottom:251.170133pt;}
.y79{bottom:252.212667pt;}
.y1df{bottom:252.507333pt;}
.y247{bottom:252.813467pt;}
.y27a{bottom:258.192133pt;}
.y178{bottom:263.158133pt;}
.yda{bottom:264.188800pt;}
.ya2{bottom:264.779467pt;}
.y19c{bottom:265.175467pt;}
.y21b{bottom:265.444133pt;}
.y49{bottom:265.626800pt;}
.y1bc{bottom:265.806800pt;}
.y1f9{bottom:265.818800pt;}
.yc7{bottom:266.177200pt;}
.y105{bottom:266.294933pt;}
.y54{bottom:266.509467pt;}
.y246{bottom:266.817467pt;}
.y78{bottom:267.552000pt;}
.y1de{bottom:267.841333pt;}
.y1e{bottom:269.847067pt;}
.y279{bottom:272.196133pt;}
.y177{bottom:278.497467pt;}
.y12f{bottom:279.524800pt;}
.yd9{bottom:279.528133pt;}
.ya1{bottom:280.118800pt;}
.y19b{bottom:280.509467pt;}
.y21a{bottom:280.783467pt;}
.y245{bottom:280.821467pt;}
.y48{bottom:280.966133pt;}
.y156{bottom:281.074133pt;}
.y1bb{bottom:281.146133pt;}
.y1f8{bottom:281.158133pt;}
.yc6{bottom:281.516533pt;}
.y104{bottom:281.634267pt;}
.y77{bottom:282.891333pt;}
.y278{bottom:286.200133pt;}
.y176{bottom:293.836800pt;}
.y244{bottom:294.825467pt;}
.y12e{bottom:294.858800pt;}
.yd8{bottom:294.867467pt;}
.ya0{bottom:295.458133pt;}
.y219{bottom:296.122800pt;}
.y47{bottom:296.305467pt;}
.y155{bottom:296.413467pt;}
.y1ba{bottom:296.485467pt;}
.y1f7{bottom:296.497467pt;}
.yc5{bottom:296.855867pt;}
.y103{bottom:296.973600pt;}
.y53{bottom:297.842800pt;}
.y76{bottom:298.230667pt;}
.y277{bottom:300.204133pt;}
.y1dd{bottom:302.922933pt;}
.y243{bottom:308.829467pt;}
.y175{bottom:309.176133pt;}
.y12d{bottom:310.192800pt;}
.yd7{bottom:310.206800pt;}
.y218{bottom:311.462133pt;}
.y46{bottom:311.644800pt;}
.y154{bottom:311.752800pt;}
.y19a{bottom:311.782800pt;}
.y1b9{bottom:311.824800pt;}
.y1f6{bottom:311.836800pt;}
.yc4{bottom:312.195200pt;}
.y102{bottom:312.312933pt;}
.y75{bottom:313.570000pt;}
.y52{bottom:313.842800pt;}
.y276{bottom:314.208133pt;}
.y1d{bottom:315.447067pt;}
.y1dc{bottom:318.262267pt;}
.y242{bottom:322.833467pt;}
.y12c{bottom:325.526800pt;}
.yd6{bottom:325.546133pt;}
.y9f{bottom:326.791467pt;}
.y217{bottom:326.801467pt;}
.y45{bottom:326.984133pt;}
.y153{bottom:327.092133pt;}
.y199{bottom:327.122133pt;}
.y1b8{bottom:327.164133pt;}
.y1f5{bottom:327.176133pt;}
.yc3{bottom:327.534533pt;}
.y101{bottom:327.652267pt;}
.y275{bottom:328.212133pt;}
.y74{bottom:328.909333pt;}
.y1c{bottom:329.847067pt;}
.y1db{bottom:333.601600pt;}
.y241{bottom:336.837467pt;}
.y174{bottom:340.506800pt;}
.y12b{bottom:340.860800pt;}
.yd5{bottom:340.885467pt;}
.y216{bottom:342.140800pt;}
.y274{bottom:342.216133pt;}
.y44{bottom:342.323467pt;}
.y152{bottom:342.431467pt;}
.y198{bottom:342.461467pt;}
.y1b7{bottom:342.503467pt;}
.yc2{bottom:342.873867pt;}
.y100{bottom:342.991600pt;}
.y73{bottom:344.248667pt;}
.y1b{bottom:348.247067pt;}
.y1da{bottom:348.940933pt;}
.y240{bottom:350.841467pt;}
.y173{bottom:355.840800pt;}
.y12a{bottom:356.194800pt;}
.y273{bottom:356.220133pt;}
.yd4{bottom:356.224800pt;}
.y215{bottom:357.480133pt;}
.y43{bottom:357.662800pt;}
.y151{bottom:357.770800pt;}
.y197{bottom:357.800800pt;}
.y1b6{bottom:357.842800pt;}
.yc1{bottom:358.213200pt;}
.yff{bottom:358.330933pt;}
.y1f4{bottom:358.507467pt;}
.y72{bottom:359.588000pt;}
.y1d9{bottom:364.280267pt;}
.y23f{bottom:364.845467pt;}
.y272{bottom:370.224133pt;}
.y9e{bottom:370.641467pt;}
.y172{bottom:371.174800pt;}
.yd3{bottom:371.564133pt;}
.y214{bottom:372.819467pt;}
.y42{bottom:373.002133pt;}
.y150{bottom:373.110133pt;}
.y196{bottom:373.140133pt;}
.yc0{bottom:373.552533pt;}
.yfe{bottom:373.670267pt;}
.y1f3{bottom:373.841467pt;}
.y71{bottom:374.927333pt;}
.y23e{bottom:378.849467pt;}
.y1a{bottom:379.447067pt;}
.y1d8{bottom:379.619600pt;}
.y271{bottom:384.228133pt;}
.y9d{bottom:385.980800pt;}
.y171{bottom:386.508800pt;}
.yd2{bottom:386.903467pt;}
.y129{bottom:387.450133pt;}
.y213{bottom:388.158800pt;}
.y41{bottom:388.341467pt;}
.y14f{bottom:388.449467pt;}
.y195{bottom:388.479467pt;}
.ybf{bottom:388.891867pt;}
.yfd{bottom:389.009600pt;}
.y1b5{bottom:389.172800pt;}
.y1f2{bottom:389.175467pt;}
.y70{bottom:390.266667pt;}
.y23d{bottom:392.853467pt;}
.y19{bottom:393.847067pt;}
.y270{bottom:398.232133pt;}
.y9c{bottom:401.320133pt;}
.y170{bottom:401.842800pt;}
.yd1{bottom:402.242800pt;}
.y128{bottom:402.789467pt;}
.y212{bottom:403.498133pt;}
.y40{bottom:403.680800pt;}
.y14e{bottom:403.788800pt;}
.y194{bottom:403.818800pt;}
.ybe{bottom:404.231200pt;}
.yfc{bottom:404.348933pt;}
.y1b4{bottom:404.506800pt;}
.y1f1{bottom:404.509467pt;}
.y6f{bottom:405.606000pt;}
.y23c{bottom:406.857467pt;}
.y18{bottom:408.247067pt;}
.y1d7{bottom:410.950267pt;}
.y26f{bottom:412.236133pt;}
.y9b{bottom:416.659467pt;}
.y127{bottom:418.128800pt;}
.y211{bottom:418.837467pt;}
.y3f{bottom:419.020133pt;}
.y14d{bottom:419.128133pt;}
.y193{bottom:419.158133pt;}
.ybd{bottom:419.570533pt;}
.yfb{bottom:419.688267pt;}
.y1b3{bottom:419.840800pt;}
.y23b{bottom:420.861467pt;}
.y6e{bottom:420.945333pt;}
.y17{bottom:422.647067pt;}
.y26e{bottom:426.240133pt;}
.y1d6{bottom:426.284267pt;}
.y9a{bottom:431.998800pt;}
.y16f{bottom:433.110133pt;}
.y126{bottom:433.468133pt;}
.yd0{bottom:433.576133pt;}
.y210{bottom:434.176800pt;}
.y3e{bottom:434.359467pt;}
.y14c{bottom:434.467467pt;}
.y192{bottom:434.497467pt;}
.y23a{bottom:434.865467pt;}
.ybc{bottom:434.909867pt;}
.yfa{bottom:435.027600pt;}
.y1b2{bottom:435.174800pt;}
.y1f0{bottom:435.740800pt;}
.y6d{bottom:436.284667pt;}
.y16{bottom:437.047067pt;}
.y26d{bottom:440.244133pt;}
.y1d5{bottom:441.618267pt;}
.y99{bottom:447.338133pt;}
.y16e{bottom:448.449467pt;}
.y125{bottom:448.807467pt;}
.y239{bottom:448.869467pt;}
.y20f{bottom:449.516133pt;}
.y3d{bottom:449.698800pt;}
.y14b{bottom:449.806800pt;}
.y191{bottom:449.836800pt;}
.ybb{bottom:450.249200pt;}
.yf9{bottom:450.366933pt;}
.y1b1{bottom:450.508800pt;}
.y1ef{bottom:451.080133pt;}
.y15{bottom:451.447067pt;}
.y6c{bottom:451.624000pt;}
.y26c{bottom:454.248133pt;}
.y1d4{bottom:456.952267pt;}
.y98{bottom:462.677467pt;}
.y238{bottom:462.873467pt;}
.y16d{bottom:463.788800pt;}
.y124{bottom:464.146800pt;}
.y20e{bottom:464.855467pt;}
.y3c{bottom:465.038133pt;}
.y14a{bottom:465.146133pt;}
.y190{bottom:465.176133pt;}
.ycf{bottom:465.576133pt;}
.yba{bottom:465.588533pt;}
.yf8{bottom:465.706267pt;}
.y1b0{bottom:465.842800pt;}
.y14{bottom:465.847067pt;}
.y1ee{bottom:466.419467pt;}
.y6b{bottom:466.963333pt;}
.y26b{bottom:468.252133pt;}
.y1d3{bottom:472.286267pt;}
.y237{bottom:476.877467pt;}
.y97{bottom:478.016800pt;}
.y16c{bottom:479.128133pt;}
.y123{bottom:479.486133pt;}
.y20d{bottom:480.194800pt;}
.y13{bottom:480.247067pt;}
.y3b{bottom:480.377467pt;}
.y149{bottom:480.485467pt;}
.yb9{bottom:480.927867pt;}
.y1ed{bottom:481.758800pt;}
.y26a{bottom:482.256133pt;}
.y6a{bottom:482.302667pt;}
.y236{bottom:490.881467pt;}
.y96{bottom:493.356133pt;}
.y16b{bottom:494.467467pt;}
.y12{bottom:494.647067pt;}
.y122{bottom:494.825467pt;}
.y20c{bottom:495.534133pt;}
.y3a{bottom:495.716800pt;}
.y148{bottom:495.824800pt;}
.y269{bottom:496.260133pt;}
.yb8{bottom:496.267200pt;}
.y18f{bottom:496.509467pt;}
.yf7{bottom:497.039600pt;}
.y1ec{bottom:497.098133pt;}
.y1af{bottom:497.128133pt;}
.y69{bottom:497.642000pt;}
.y235{bottom:504.885467pt;}
.y1d2{bottom:507.385867pt;}
.y95{bottom:508.695467pt;}
.y11{bottom:509.047067pt;}
.y16a{bottom:509.806800pt;}
.y121{bottom:510.164800pt;}
.y268{bottom:510.264133pt;}
.y20b{bottom:510.873467pt;}
.y39{bottom:511.056133pt;}
.y147{bottom:511.164133pt;}
.yb7{bottom:511.606533pt;}
.y1eb{bottom:512.437467pt;}
.y1ae{bottom:512.467467pt;}
.y68{bottom:512.981333pt;}
.y234{bottom:518.889467pt;}
.y1d1{bottom:522.725200pt;}
.y10{bottom:523.447067pt;}
.y94{bottom:524.034800pt;}
.y267{bottom:524.268133pt;}
.y169{bottom:525.146133pt;}
.y120{bottom:525.504133pt;}
.y20a{bottom:526.212800pt;}
.y38{bottom:526.395467pt;}
.y146{bottom:526.503467pt;}
.y1ea{bottom:527.776800pt;}
.y1ad{bottom:527.806800pt;}
.y67{bottom:528.320667pt;}
.y233{bottom:532.893467pt;}
.y1d0{bottom:538.064533pt;}
.y266{bottom:538.272133pt;}
.y93{bottom:539.374133pt;}
.y18e{bottom:540.455467pt;}
.y168{bottom:540.485467pt;}
.y11f{bottom:540.843467pt;}
.yf6{bottom:540.949600pt;}
.y209{bottom:541.552133pt;}
.y37{bottom:541.734800pt;}
.y145{bottom:541.842800pt;}
.yf{bottom:541.847067pt;}
.yb6{bottom:542.939867pt;}
.y1e9{bottom:543.116133pt;}
.y1ac{bottom:543.146133pt;}
.y66{bottom:543.660000pt;}
.y232{bottom:546.897467pt;}
.y265{bottom:552.276133pt;}
.y92{bottom:554.713467pt;}
.y18d{bottom:555.794800pt;}
.y167{bottom:555.824800pt;}
.y11e{bottom:556.182800pt;}
.yf5{bottom:556.288933pt;}
.y208{bottom:556.891467pt;}
.y36{bottom:557.074133pt;}
.y1e8{bottom:558.455467pt;}
.y1ab{bottom:558.485467pt;}
.y65{bottom:558.999333pt;}
.y231{bottom:560.901467pt;}
.y264{bottom:566.280133pt;}
.y1cf{bottom:569.397867pt;}
.y91{bottom:570.052800pt;}
.y18c{bottom:571.134133pt;}
.y166{bottom:571.164133pt;}
.y11d{bottom:571.522133pt;}
.yf4{bottom:571.628267pt;}
.y207{bottom:572.230800pt;}
.y35{bottom:572.413467pt;}
.y144{bottom:573.176133pt;}
.y1e7{bottom:573.794800pt;}
.y1aa{bottom:573.824800pt;}
.y64{bottom:574.338667pt;}
.y230{bottom:574.905467pt;}
.y263{bottom:580.284133pt;}
.ye{bottom:582.380400pt;}
.y90{bottom:585.392133pt;}
.y18b{bottom:586.473467pt;}
.y165{bottom:586.503467pt;}
.y11c{bottom:586.861467pt;}
.yf3{bottom:586.967600pt;}
.y206{bottom:587.570133pt;}
.y34{bottom:587.752800pt;}
.y22f{bottom:588.909467pt;}
.yb5{bottom:589.134133pt;}
.y1a9{bottom:589.164133pt;}
.y63{bottom:589.678000pt;}
.y262{bottom:594.288133pt;}
.yd{bottom:595.180400pt;}
.y8f{bottom:600.731467pt;}
.y18a{bottom:601.812800pt;}
.y164{bottom:601.842800pt;}
.yf2{bottom:602.306933pt;}
.y205{bottom:602.909467pt;}
.y33{bottom:603.092133pt;}
.yb4{bottom:604.473467pt;}
.y1a8{bottom:604.503467pt;}
.y62{bottom:605.017333pt;}
.y261{bottom:608.292133pt;}
.y1ce{bottom:613.367867pt;}
.y8e{bottom:616.070800pt;}
.y143{bottom:617.140133pt;}
.y189{bottom:617.152133pt;}
.yf1{bottom:617.646267pt;}
.y11b{bottom:618.192133pt;}
.y32{bottom:618.431467pt;}
.y22e{bottom:618.909467pt;}
.yb3{bottom:619.812800pt;}
.y1a7{bottom:619.842800pt;}
.y61{bottom:620.356667pt;}
.y260{bottom:622.296133pt;}
.y1cd{bottom:628.707200pt;}
.y8d{bottom:631.410133pt;}
.y142{bottom:632.479467pt;}
.y188{bottom:632.491467pt;}
.yf0{bottom:632.985600pt;}
.y163{bottom:633.174133pt;}
.y11a{bottom:633.526133pt;}
.yc{bottom:633.580400pt;}
.y31{bottom:633.770800pt;}
.y204{bottom:634.242800pt;}
.yb2{bottom:635.152133pt;}
.y60{bottom:635.696000pt;}
.y25f{bottom:636.300133pt;}
.y1cc{bottom:644.046533pt;}
.yb{bottom:646.380400pt;}
.y8c{bottom:646.749467pt;}
.y141{bottom:647.818800pt;}
.y187{bottom:647.830800pt;}
.yef{bottom:648.324933pt;}
.y162{bottom:648.508133pt;}
.y119{bottom:648.860133pt;}
.y30{bottom:649.110133pt;}
.y25e{bottom:650.304133pt;}
.yb1{bottom:650.491467pt;}
.y1a6{bottom:651.176133pt;}
.y1cb{bottom:659.385867pt;}
.y8b{bottom:662.088800pt;}
.y140{bottom:663.158133pt;}
.y186{bottom:663.170133pt;}
.yee{bottom:663.664267pt;}
.y161{bottom:663.842133pt;}
.y118{bottom:664.194133pt;}
.y25d{bottom:664.308133pt;}
.y2f{bottom:664.449467pt;}
.yb0{bottom:665.830800pt;}
.y1ca{bottom:674.725200pt;}
.y8a{bottom:677.428133pt;}
.y25c{bottom:678.312133pt;}
.y13f{bottom:678.497467pt;}
.y185{bottom:678.509467pt;}
.yed{bottom:679.003600pt;}
.y160{bottom:679.176133pt;}
.y117{bottom:679.528133pt;}
.y2e{bottom:679.788800pt;}
.yaf{bottom:681.170133pt;}
.ya{bottom:684.780400pt;}
.y1c9{bottom:690.064533pt;}
.y25b{bottom:692.316133pt;}
.y89{bottom:692.767467pt;}
.y13e{bottom:693.836800pt;}
.yec{bottom:694.342933pt;}
.y2d{bottom:695.128133pt;}
.yae{bottom:696.509467pt;}
.y9{bottom:697.580400pt;}
.y25a{bottom:706.320133pt;}
.y88{bottom:708.106800pt;}
.y13d{bottom:709.176133pt;}
.yeb{bottom:709.682267pt;}
.y184{bottom:709.840133pt;}
.y2c{bottom:710.467467pt;}
.y116{bottom:710.849467pt;}
.y259{bottom:720.324133pt;}
.y1c8{bottom:721.395867pt;}
.y87{bottom:723.446133pt;}
.yea{bottom:725.021600pt;}
.y183{bottom:725.174133pt;}
.y2b{bottom:725.806800pt;}
.y115{bottom:726.188800pt;}
.yad{bottom:727.842800pt;}
.y258{bottom:734.328133pt;}
.y8{bottom:735.980533pt;}
.y1c7{bottom:736.729867pt;}
.y86{bottom:738.785467pt;}
.ye9{bottom:740.360933pt;}
.y13c{bottom:740.508133pt;}
.y2a{bottom:741.146133pt;}
.y114{bottom:741.528133pt;}
.y257{bottom:748.332133pt;}
.y7{bottom:748.780400pt;}
.y1c6{bottom:752.063867pt;}
.y85{bottom:754.124800pt;}
.ye8{bottom:755.700267pt;}
.y13b{bottom:755.842133pt;}
.y29{bottom:756.485467pt;}
.y256{bottom:762.336133pt;}
.y1c5{bottom:767.397867pt;}
.ye7{bottom:771.039600pt;}
.y13a{bottom:771.176133pt;}
.y28{bottom:771.824800pt;}
.y113{bottom:772.859467pt;}
.y255{bottom:776.340133pt;}
.y84{bottom:785.458133pt;}
.y27{bottom:787.164133pt;}
.y6{bottom:787.180400pt;}
.y112{bottom:788.193467pt;}
.y254{bottom:790.344133pt;}
.ye6{bottom:802.372933pt;}
.y26{bottom:802.503467pt;}
.y111{bottom:803.527467pt;}
.y253{bottom:804.348133pt;}
.y5{bottom:812.780400pt;}
.y83{bottom:817.458133pt;}
.y25{bottom:817.842800pt;}
.y252{bottom:818.352133pt;}
.ye5{bottom:818.372933pt;}
.y110{bottom:818.861467pt;}
.y5f{bottom:819.228933pt;}
.y51{bottom:855.211067pt;}
.y24{bottom:855.451200pt;}
.y2{bottom:868.160800pt;}
.h4{height:19.004245pt;}
.h9{height:25.797333pt;}
.h8{height:32.768000pt;}
.h2{height:33.168000pt;}
.ha{height:33.194182pt;}
.h12{height:34.634667pt;}
.h7{height:35.320944pt;}
.he{height:36.000000pt;}
.h13{height:36.672000pt;}
.h10{height:36.853333pt;}
.hd{height:38.709333pt;}
.hf{height:38.912000pt;}
.h11{height:40.000000pt;}
.hb{height:40.538667pt;}
.h3{height:41.043958pt;}
.h5{height:64.000000pt;}
.h6{height:65.728000pt;}
.hc{height:162.336435pt;}
.h0{height:924.480000pt;}
.h1{height:924.666667pt;}
.w0{width:629.760000pt;}
.w1{width:630.000000pt;}
.x0{left:0.000000pt;}
.x7{left:31.500000pt;}
.x8{left:76.913467pt;}
.x3{left:84.283467pt;}
.x4{left:88.157067pt;}
.xb{left:96.913333pt;}
.x9{left:100.916800pt;}
.x6{left:104.653067pt;}
.x5{left:106.950133pt;}
.xa{left:154.260667pt;}
.x2{left:160.135467pt;}
.x1{left:314.126267pt;}
}




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