
    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_592fc541c7514bfcec0e9762.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_b4c68a701e6a5069866372a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_7f2c1d64f7eb7fa918e24226.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_20f3874d0a7d00a293338d9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_cf8432701e00c9dd9f115f01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_dcf5e0882b0fcc58cb462057.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751000;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_9de43eb2464a7b87db00cb3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_5a834a485c41fc59b4ec3b52.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_2fef55a1f2b5a62bc767f28c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_fbfd28bc72d0b0c2836a83ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.386786;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_c16472b0ac979d8bd6175b7d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_73d48a94e7b3e84278267799.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.954000;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_38b9a30fda88b4e080a00d36.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c16472b0ac979d8bd6175b7d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_73d48a94e7b3e84278267799.woff2')format("woff");}.fff{font-family:fff;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fa739269ea39f6740da93398.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_225543e6c79a478a5cad3632.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v7{vertical-align:-38.219971px;}
.v13{vertical-align:-35.835571px;}
.vc{vertical-align:-31.066772px;}
.v12{vertical-align:-25.455688px;}
.v6{vertical-align:-23.520081px;}
.vb{vertical-align:-20.531387px;}
.v11{vertical-align:-19.199387px;}
.v5{vertical-align:-18.000000px;}
.v3{vertical-align:-15.000000px;}
.va{vertical-align:-13.800293px;}
.ve{vertical-align:-12.456735px;}
.v15{vertical-align:-11.235000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v9{vertical-align:14.700073px;}
.v14{vertical-align:18.000000px;}
.v10{vertical-align:19.199387px;}
.vd{vertical-align:20.584460px;}
.v4{vertical-align:24.000000px;}
.vf{vertical-align:25.224460px;}
.v2{vertical-align:26.399760px;}
.v8{vertical-align:38.237640px;}
.ls9{letter-spacing:-0.588000px;}
.lsf{letter-spacing:-0.529200px;}
.ls2{letter-spacing:-0.470400px;}
.lsb{letter-spacing:-0.411600px;}
.lsa{letter-spacing:-0.352800px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000002px;}
.ls17{letter-spacing:0.000020px;}
.ls8{letter-spacing:0.000031px;}
.ls6{letter-spacing:0.000034px;}
.ls22{letter-spacing:0.000070px;}
.lsd{letter-spacing:0.000214px;}
.ls11{letter-spacing:0.000395px;}
.ls13{letter-spacing:0.000397px;}
.ls7{letter-spacing:0.000400px;}
.ls4{letter-spacing:0.000491px;}
.lsc{letter-spacing:0.000493px;}
.ls3{letter-spacing:0.000494px;}
.ls5{letter-spacing:0.000583px;}
.ls21{letter-spacing:0.000766px;}
.ls1b{letter-spacing:0.040729px;}
.ls14{letter-spacing:0.044823px;}
.ls19{letter-spacing:0.056002px;}
.ls24{letter-spacing:0.117600px;}
.ls23{letter-spacing:0.705600px;}
.lse{letter-spacing:0.999600px;}
.ls10{letter-spacing:1.058400px;}
.ls0{letter-spacing:5.460000px;}
.ls1d{letter-spacing:6.997200px;}
.ls18{letter-spacing:13.948893px;}
.ls20{letter-spacing:14.000550px;}
.ls1a{letter-spacing:14.017482px;}
.ls15{letter-spacing:14.073919px;}
.ls1e{letter-spacing:14.464800px;}
.ls1c{letter-spacing:14.523600px;}
.ls16{letter-spacing:94.056795px;}
.ls1f{letter-spacing:162.583027px;}
.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;}
}
.ws110{word-spacing:-162.583027px;}
.ws1{word-spacing:-26.208000px;}
.wsf3{word-spacing:-20.815200px;}
.ws6{word-spacing:-19.980000px;}
.wsfb{word-spacing:-19.022706px;}
.wsf7{word-spacing:-15.693712px;}
.ws100{word-spacing:-15.568612px;}
.wse0{word-spacing:-14.876400px;}
.wsae{word-spacing:-14.817600px;}
.ws107{word-spacing:-14.523600px;}
.ws10e{word-spacing:-14.464800px;}
.ws113{word-spacing:-14.000550px;}
.ws8{word-spacing:-13.986000px;}
.ws128{word-spacing:-13.935600px;}
.wsb{word-spacing:-13.818000px;}
.ws81{word-spacing:-13.706280px;}
.ws2f{word-spacing:-13.406400px;}
.wsc{word-spacing:-13.347600px;}
.ws2c{word-spacing:-13.230000px;}
.ws7{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.483600px;}
.ws9{word-spacing:-12.420000px;}
.ws80{word-spacing:-11.426400px;}
.wsf6{word-spacing:-11.413624px;}
.wsff{word-spacing:-11.322550px;}
.ws4{word-spacing:-10.800000px;}
.wsfd{word-spacing:-10.512000px;}
.wsf9{word-spacing:-10.264050px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wse{word-spacing:-9.855000px;}
.wsa{word-spacing:-9.672600px;}
.ws145{word-spacing:-9.315000px;}
.ws5{word-spacing:-9.198000px;}
.ws146{word-spacing:-8.100000px;}
.wsf1{word-spacing:-7.805280px;}
.wsfc{word-spacing:-7.358400px;}
.wsd{word-spacing:-6.898500px;}
.ws104{word-spacing:-6.468000px;}
.ws12{word-spacing:-5.640000px;}
.ws111{word-spacing:-4.512000px;}
.ws11{word-spacing:-2.772000px;}
.wsf8{word-spacing:-2.653253px;}
.ws10c{word-spacing:-1.881600px;}
.wsa4{word-spacing:-1.587600px;}
.wsfa{word-spacing:-1.580662px;}
.ws101{word-spacing:-1.512059px;}
.ws39{word-spacing:-1.234800px;}
.ws120{word-spacing:-1.117200px;}
.wsd8{word-spacing:-0.999600px;}
.ws114{word-spacing:-0.882000px;}
.wsbd{word-spacing:-0.823200px;}
.ws10{word-spacing:-0.780000px;}
.wsc2{word-spacing:-0.705600px;}
.ws12d{word-spacing:-0.529200px;}
.ws91{word-spacing:-0.470400px;}
.ws27{word-spacing:-0.411600px;}
.wsa1{word-spacing:-0.352800px;}
.ws9d{word-spacing:-0.294000px;}
.ws70{word-spacing:-0.117600px;}
.ws144{word-spacing:-0.090000px;}
.ws8a{word-spacing:-0.058800px;}
.ws112{word-spacing:-0.056003px;}
.wsf{word-spacing:0.000000px;}
.ws13d{word-spacing:0.117600px;}
.wsdb{word-spacing:0.176400px;}
.ws8f{word-spacing:0.235200px;}
.ws9c{word-spacing:0.294000px;}
.ws29{word-spacing:0.352800px;}
.ws10b{word-spacing:0.470400px;}
.wsba{word-spacing:0.529200px;}
.wsd9{word-spacing:0.588000px;}
.wsf4{word-spacing:0.640920px;}
.ws11d{word-spacing:0.646800px;}
.ws2d{word-spacing:0.670320px;}
.ws2e{word-spacing:0.676200px;}
.wsf2{word-spacing:0.693840px;}
.ws13{word-spacing:0.705600px;}
.ws18{word-spacing:0.764400px;}
.wsb0{word-spacing:0.823200px;}
.ws30{word-spacing:0.999600px;}
.ws3f{word-spacing:1.058400px;}
.ws21{word-spacing:1.176000px;}
.ws3d{word-spacing:1.234800px;}
.ws12c{word-spacing:1.352400px;}
.ws95{word-spacing:1.411200px;}
.wse2{word-spacing:1.528800px;}
.wsc5{word-spacing:1.587600px;}
.wsab{word-spacing:1.705200px;}
.ws60{word-spacing:1.764000px;}
.ws4e{word-spacing:1.822800px;}
.ws40{word-spacing:1.881600px;}
.wsc3{word-spacing:1.940400px;}
.ws108{word-spacing:2.058000px;}
.ws50{word-spacing:2.234400px;}
.ws63{word-spacing:2.293200px;}
.ws37{word-spacing:2.352000px;}
.ws11f{word-spacing:2.469600px;}
.ws38{word-spacing:2.528400px;}
.wsc6{word-spacing:2.587200px;}
.ws14{word-spacing:2.646000px;}
.ws2a{word-spacing:2.704800px;}
.ws67{word-spacing:2.881200px;}
.wsa2{word-spacing:2.940000px;}
.ws88{word-spacing:2.998800px;}
.ws97{word-spacing:3.057600px;}
.ws36{word-spacing:3.116400px;}
.ws136{word-spacing:3.175200px;}
.ws4c{word-spacing:3.234000px;}
.wsb6{word-spacing:3.351600px;}
.ws9e{word-spacing:3.410400px;}
.ws51{word-spacing:3.469200px;}
.ws10f{word-spacing:3.528000px;}
.ws11e{word-spacing:3.586800px;}
.ws53{word-spacing:3.645600px;}
.ws15{word-spacing:3.763200px;}
.ws55{word-spacing:3.822000px;}
.wsa3{word-spacing:3.880800px;}
.wsb4{word-spacing:3.939600px;}
.wsac{word-spacing:3.998400px;}
.wsda{word-spacing:4.057200px;}
.ws119{word-spacing:4.233600px;}
.ws3a{word-spacing:4.292400px;}
.wsb7{word-spacing:4.351200px;}
.ws99{word-spacing:4.410000px;}
.ws31{word-spacing:4.468800px;}
.ws66{word-spacing:4.527600px;}
.ws12a{word-spacing:4.586400px;}
.ws9a{word-spacing:4.645200px;}
.ws47{word-spacing:4.762800px;}
.wse5{word-spacing:4.880400px;}
.wsa7{word-spacing:4.939200px;}
.wscf{word-spacing:4.998000px;}
.wsbf{word-spacing:5.056800px;}
.ws22{word-spacing:5.115594px;}
.ws69{word-spacing:5.115600px;}
.ws121{word-spacing:5.233200px;}
.wsbe{word-spacing:5.350800px;}
.ws1c{word-spacing:5.409600px;}
.wsb1{word-spacing:5.468400px;}
.ws3b{word-spacing:5.527200px;}
.wse4{word-spacing:5.586000px;}
.ws4d{word-spacing:5.644800px;}
.ws2b{word-spacing:5.703600px;}
.ws75{word-spacing:5.762400px;}
.ws11b{word-spacing:5.821200px;}
.ws73{word-spacing:5.880000px;}
.ws123{word-spacing:5.938800px;}
.ws33{word-spacing:5.997600px;}
.ws23{word-spacing:6.056400px;}
.ws5a{word-spacing:6.115200px;}
.wse7{word-spacing:6.232800px;}
.wsc0{word-spacing:6.291600px;}
.ws12e{word-spacing:6.350400px;}
.ws134{word-spacing:6.409200px;}
.ws6d{word-spacing:6.468000px;}
.ws28{word-spacing:6.526800px;}
.ws49{word-spacing:6.585600px;}
.ws68{word-spacing:6.644400px;}
.wsa6{word-spacing:6.703200px;}
.ws118{word-spacing:6.762000px;}
.ws34{word-spacing:6.820800px;}
.wsa9{word-spacing:6.938400px;}
.ws109{word-spacing:6.997200px;}
.wsc8{word-spacing:7.056000px;}
.ws115{word-spacing:7.173600px;}
.wsc4{word-spacing:7.291200px;}
.ws41{word-spacing:7.350000px;}
.ws90{word-spacing:7.408800px;}
.ws116{word-spacing:7.467600px;}
.ws11c{word-spacing:7.526400px;}
.wsce{word-spacing:7.585200px;}
.ws42{word-spacing:7.644000px;}
.ws135{word-spacing:7.702800px;}
.ws59{word-spacing:7.761600px;}
.wse3{word-spacing:7.820400px;}
.wsb2{word-spacing:7.938000px;}
.ws7e{word-spacing:7.996800px;}
.ws7b{word-spacing:8.055600px;}
.ws93{word-spacing:8.114400px;}
.ws8c{word-spacing:8.173200px;}
.ws126{word-spacing:8.232000px;}
.ws62{word-spacing:8.290800px;}
.ws141{word-spacing:8.349600px;}
.ws44{word-spacing:8.467200px;}
.wsa8{word-spacing:8.526000px;}
.ws61{word-spacing:8.584800px;}
.ws77{word-spacing:8.643600px;}
.ws74{word-spacing:8.702400px;}
.ws127{word-spacing:8.761200px;}
.ws24{word-spacing:8.820000px;}
.ws83{word-spacing:8.878800px;}
.ws6c{word-spacing:8.937600px;}
.ws13b{word-spacing:9.055200px;}
.ws4f{word-spacing:9.114000px;}
.ws76{word-spacing:9.172800px;}
.ws45{word-spacing:9.231600px;}
.ws16{word-spacing:9.290400px;}
.wscc{word-spacing:9.466800px;}
.ws89{word-spacing:9.584400px;}
.ws1d{word-spacing:9.643200px;}
.ws6a{word-spacing:9.702000px;}
.wsaa{word-spacing:9.760800px;}
.ws94{word-spacing:9.819600px;}
.ws52{word-spacing:9.878400px;}
.ws54{word-spacing:9.996000px;}
.wsb3{word-spacing:10.054800px;}
.ws64{word-spacing:10.113600px;}
.wsa5{word-spacing:10.290000px;}
.ws125{word-spacing:10.348800px;}
.ws3c{word-spacing:10.407600px;}
.wsc1{word-spacing:10.466400px;}
.ws106{word-spacing:10.525200px;}
.ws8e{word-spacing:10.584000px;}
.wse6{word-spacing:10.642800px;}
.ws35{word-spacing:10.701600px;}
.ws5e{word-spacing:10.760400px;}
.wsc7{word-spacing:10.819200px;}
.wsd3{word-spacing:11.054400px;}
.wsa0{word-spacing:11.113200px;}
.ws98{word-spacing:11.230800px;}
.wsad{word-spacing:11.289600px;}
.ws122{word-spacing:11.348400px;}
.ws124{word-spacing:11.466000px;}
.ws4a{word-spacing:11.524800px;}
.ws138{word-spacing:11.642400px;}
.ws9f{word-spacing:11.701200px;}
.ws10a{word-spacing:11.818800px;}
.wse9{word-spacing:11.877600px;}
.ws1f{word-spacing:11.936400px;}
.ws139{word-spacing:11.995200px;}
.ws17{word-spacing:12.112800px;}
.ws12b{word-spacing:12.171600px;}
.wscb{word-spacing:12.230400px;}
.ws13f{word-spacing:12.289200px;}
.ws132{word-spacing:12.348000px;}
.ws87{word-spacing:12.524400px;}
.ws133{word-spacing:12.642000px;}
.ws25{word-spacing:12.700800px;}
.wsd1{word-spacing:12.818400px;}
.wsbc{word-spacing:13.230000px;}
.wsdd{word-spacing:13.288800px;}
.ws7d{word-spacing:13.406400px;}
.ws72{word-spacing:13.465200px;}
.ws86{word-spacing:13.641600px;}
.ws92{word-spacing:13.700400px;}
.ws32{word-spacing:13.759200px;}
.wsd7{word-spacing:13.876800px;}
.ws137{word-spacing:13.935600px;}
.ws4b{word-spacing:13.994400px;}
.ws105{word-spacing:14.112000px;}
.ws56{word-spacing:14.170800px;}
.ws7c{word-spacing:14.229600px;}
.ws6f{word-spacing:14.288400px;}
.ws10d{word-spacing:14.464800px;}
.ws78{word-spacing:14.523600px;}
.ws58{word-spacing:14.582400px;}
.ws12f{word-spacing:14.641200px;}
.ws65{word-spacing:14.700000px;}
.ws13e{word-spacing:14.758800px;}
.ws13a{word-spacing:14.876400px;}
.ws129{word-spacing:14.935200px;}
.ws9b{word-spacing:15.111600px;}
.wsd5{word-spacing:15.170400px;}
.ws71{word-spacing:15.288000px;}
.wsaf{word-spacing:15.405600px;}
.ws7a{word-spacing:15.464400px;}
.ws3e{word-spacing:15.523200px;}
.wsde{word-spacing:15.582000px;}
.ws6e{word-spacing:15.640800px;}
.wse8{word-spacing:15.699600px;}
.ws20{word-spacing:15.758400px;}
.ws131{word-spacing:15.817200px;}
.ws5b{word-spacing:15.993600px;}
.ws19{word-spacing:16.052400px;}
.ws8d{word-spacing:16.170000px;}
.ws1b{word-spacing:16.346400px;}
.ws26{word-spacing:16.464000px;}
.ws1a{word-spacing:16.640400px;}
.ws117{word-spacing:16.758000px;}
.wsb5{word-spacing:16.816800px;}
.ws84{word-spacing:16.875600px;}
.ws5f{word-spacing:16.934400px;}
.wsea{word-spacing:17.228400px;}
.ws7f{word-spacing:17.346000px;}
.ws130{word-spacing:17.875200px;}
.ws8b{word-spacing:17.992800px;}
.wsbb{word-spacing:18.286800px;}
.ws13c{word-spacing:18.404400px;}
.ws102{word-spacing:18.580800px;}
.ws46{word-spacing:18.639600px;}
.wsd6{word-spacing:18.698400px;}
.wsdc{word-spacing:19.227600px;}
.wsca{word-spacing:19.345200px;}
.ws143{word-spacing:19.404000px;}
.wsc9{word-spacing:19.462800px;}
.wsd2{word-spacing:19.580400px;}
.ws142{word-spacing:19.639200px;}
.ws43{word-spacing:19.874400px;}
.wsed{word-spacing:20.109600px;}
.ws11a{word-spacing:20.227200px;}
.wsb9{word-spacing:20.286000px;}
.wse1{word-spacing:20.403600px;}
.ws5c{word-spacing:20.815200px;}
.ws48{word-spacing:21.050400px;}
.wsee{word-spacing:21.168000px;}
.ws85{word-spacing:21.462000px;}
.ws79{word-spacing:21.579600px;}
.wscd{word-spacing:21.638400px;}
.ws1e{word-spacing:21.873600px;}
.wsdf{word-spacing:21.991200px;}
.wsd0{word-spacing:22.226400px;}
.ws140{word-spacing:22.638000px;}
.wsb8{word-spacing:22.932000px;}
.ws82{word-spacing:23.108400px;}
.wsd4{word-spacing:24.990000px;}
.ws103{word-spacing:25.048800px;}
.ws96{word-spacing:26.224800px;}
.wsec{word-spacing:28.106400px;}
.ws6b{word-spacing:28.282800px;}
.wseb{word-spacing:29.223600px;}
.ws57{word-spacing:29.458800px;}
.wsf0{word-spacing:30.634800px;}
.ws5d{word-spacing:33.222000px;}
.wsef{word-spacing:34.574400px;}
.wsfe{word-spacing:77.653842px;}
.wsf5{word-spacing:437.290981px;}
._2d{margin-left:-769.324761px;}
._21{margin-left:-35.179200px;}
._26{margin-left:-33.927613px;}
._31{margin-left:-32.402420px;}
._20{margin-left:-30.852060px;}
._17{margin-left:-29.181600px;}
._30{margin-left:-27.062400px;}
._13{margin-left:-25.300800px;}
._1d{margin-left:-23.556567px;}
._19{margin-left:-21.085200px;}
._f{margin-left:-19.946520px;}
._e{margin-left:-18.933600px;}
._2f{margin-left:-17.569823px;}
._14{margin-left:-16.422000px;}
._15{margin-left:-15.229200px;}
._a{margin-left:-14.187600px;}
._5{margin-left:-13.003320px;}
._23{margin-left:-11.541600px;}
._2e{margin-left:-10.533542px;}
._22{margin-left:-9.525600px;}
._29{margin-left:-7.837200px;}
._4{margin-left:-6.769140px;}
._1c{margin-left:-5.605777px;}
._b{margin-left:-3.808680px;}
._1{margin-left:-2.505600px;}
._0{margin-left:-1.396800px;}
._6{width:1.016400px;}
._2{width:2.160000px;}
._11{width:3.373800px;}
._8{width:5.320380px;}
._7{width:6.409140px;}
._18{width:7.761600px;}
._12{width:9.838080px;}
._25{width:10.950481px;}
._d{width:12.787200px;}
._1f{width:14.170494px;}
._c{width:15.839879px;}
._9{width:17.176800px;}
._1e{width:19.018567px;}
._1a{width:20.815200px;}
._1b{width:23.503200px;}
._10{width:24.519600px;}
._28{width:25.965778px;}
._16{width:28.400400px;}
._24{width:29.613922px;}
._27{width:34.231036px;}
._3{width:38.578200px;}
._2c{width:144.462216px;}
._2b{width:220.369798px;}
._2a{width:222.371293px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fs14{font-size:33.600000px;}
.fs1b{font-size:33.640200px;}
.fsd{font-size:38.640000px;}
.fs12{font-size:39.915599px;}
.fs17{font-size:40.728599px;}
.fs10{font-size:41.056200px;}
.fs9{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs19{font-size:42.873000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs15{font-size:48.232200px;}
.fs1a{font-size:50.459999px;}
.fse{font-size:51.320400px;}
.fsc{font-size:55.199999px;}
.fs11{font-size:55.690200px;}
.fs18{font-size:56.002200px;}
.fs16{font-size:56.002800px;}
.fs1c{font-size:56.066400px;}
.fsf{font-size:56.452200px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs1d{font-size:61.673400px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs13{font-size:68.427000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y180{bottom:1.892670px;}
.y12c{bottom:2.340453px;}
.y139{bottom:3.191071px;}
.y1c{bottom:87.192750px;}
.y1b{bottom:99.194250px;}
.y21f{bottom:99.987579px;}
.y177{bottom:106.205099px;}
.ybf{bottom:106.620895px;}
.y74{bottom:106.628095px;}
.y97{bottom:106.642495px;}
.yfb{bottom:106.664095px;}
.y1e8{bottom:107.487579px;}
.y1a{bottom:111.195750px;}
.y21e{bottom:113.487579px;}
.y130{bottom:113.784302px;}
.y1e7{bottom:120.987579px;}
.y19{bottom:123.197250px;}
.y12f{bottom:123.984455px;}
.y176{bottom:124.197899px;}
.y15e{bottom:124.205099px;}
.yda{bottom:124.620895px;}
.ybe{bottom:124.628095px;}
.y96{bottom:124.635295px;}
.y73{bottom:124.642495px;}
.yfa{bottom:124.656895px;}
.y21d{bottom:126.987579px;}
.y1ad{bottom:133.620895px;}
.y1e6{bottom:134.487579px;}
.y12e{bottom:138.984455px;}
.y21c{bottom:140.487579px;}
.y175{bottom:142.205099px;}
.y15d{bottom:142.226699px;}
.y95{bottom:142.628095px;}
.y72{bottom:142.635295px;}
.yf9{bottom:142.649695px;}
.y1e5{bottom:147.987579px;}
.y12b{bottom:153.983997px;}
.y21b{bottom:153.987579px;}
.y3d{bottom:156.462000px;}
.y120{bottom:160.171955px;}
.y174{bottom:160.205099px;}
.y15c{bottom:160.219499px;}
.y94{bottom:160.620895px;}
.y71{bottom:160.628095px;}
.ybd{bottom:160.635295px;}
.yf8{bottom:160.642495px;}
.y1e4{bottom:161.487579px;}
.y21a{bottom:167.487579px;}
.y3c{bottom:169.962000px;}
.y1ac{bottom:174.120895px;}
.y1e3{bottom:174.987579px;}
.y38{bottom:177.142950px;}
.y173{bottom:178.205099px;}
.y15b{bottom:178.212299px;}
.y70{bottom:178.620895px;}
.ybc{bottom:178.628095px;}
.yf7{bottom:178.635295px;}
.yd9{bottom:178.642495px;}
.y119{bottom:180.417757px;}
.y219{bottom:180.987579px;}
.y1ab{bottom:187.620895px;}
.y3b{bottom:187.962000px;}
.y1e2{bottom:188.487579px;}
.y18a{bottom:190.837372px;}
.y11a{bottom:192.054657px;}
.y218{bottom:194.487579px;}
.y37{bottom:195.135750px;}
.y15a{bottom:196.205099px;}
.y172{bottom:196.226699px;}
.y19c{bottom:196.620895px;}
.y6f{bottom:196.628095px;}
.ybb{bottom:196.635295px;}
.y93{bottom:196.649695px;}
.y3a{bottom:196.962000px;}
.y1aa{bottom:201.120895px;}
.y1e1{bottom:201.987579px;}
.y217{bottom:207.987579px;}
.y36{bottom:213.270150px;}
.y159{bottom:214.205099px;}
.y171{bottom:214.219499px;}
.yf6{bottom:214.620895px;}
.yba{bottom:214.628095px;}
.y6e{bottom:214.635295px;}
.y92{bottom:214.642495px;}
.y1e0{bottom:215.487579px;}
.y216{bottom:221.487579px;}
.y1a9{bottom:228.120895px;}
.y1df{bottom:228.987579px;}
.y35{bottom:231.262950px;}
.y158{bottom:232.197899px;}
.y170{bottom:232.212299px;}
.yb9{bottom:232.620895px;}
.y6d{bottom:232.628095px;}
.y91{bottom:232.635295px;}
.y215{bottom:234.987579px;}
.y1de{bottom:242.487579px;}
.y11b{bottom:246.723713px;}
.y28{bottom:248.388450px;}
.y214{bottom:248.487579px;}
.y34{bottom:249.255750px;}
.y157{bottom:250.205099px;}
.y6c{bottom:250.620895px;}
.y90{bottom:250.628095px;}
.yb8{bottom:250.635295px;}
.y1dd{bottom:255.987579px;}
.y121{bottom:259.702950px;}
.y213{bottom:261.987579px;}
.y27{bottom:266.381250px;}
.y33{bottom:267.248550px;}
.y16f{bottom:268.197899px;}
.y156{bottom:268.205099px;}
.yd8{bottom:268.620895px;}
.y6b{bottom:268.628095px;}
.y8f{bottom:268.642495px;}
.yf5{bottom:268.700095px;}
.y1dc{bottom:269.487579px;}
.y122{bottom:271.591865px;}
.y1af{bottom:273.070656px;}
.y212{bottom:275.487579px;}
.y1db{bottom:282.987579px;}
.y26{bottom:284.374050px;}
.y32{bottom:285.241350px;}
.y155{bottom:286.197899px;}
.y16e{bottom:286.212299px;}
.y6a{bottom:286.620895px;}
.y19b{bottom:286.628095px;}
.y8e{bottom:286.635295px;}
.yf4{bottom:286.692895px;}
.y211{bottom:288.987579px;}
.y1da{bottom:296.487579px;}
.y12a{bottom:301.339843px;}
.y11c{bottom:301.392770px;}
.y25{bottom:302.366850px;}
.y210{bottom:302.487579px;}
.y31{bottom:303.234150px;}
.y154{bottom:304.197899px;}
.y16d{bottom:304.205099px;}
.y69{bottom:304.628095px;}
.yb7{bottom:304.635295px;}
.yf3{bottom:304.685695px;}
.y128{bottom:306.838984px;}
.y1d9{bottom:309.987579px;}
.y1ae{bottom:311.033409px;}
.y129{bottom:312.087118px;}
.y125{bottom:312.094939px;}
.y137{bottom:312.544647px;}
.y20f{bottom:315.987579px;}
.y24{bottom:320.359650px;}
.y30{bottom:321.226950px;}
.y16c{bottom:322.219499px;}
.y68{bottom:322.620895px;}
.yb6{bottom:322.628095px;}
.yd7{bottom:322.649695px;}
.yf2{bottom:322.678495px;}
.y1d8{bottom:323.487579px;}
.y126{bottom:327.542276px;}
.y20e{bottom:329.487579px;}
.y127{bottom:331.459946px;}
.y1d7{bottom:336.987579px;}
.y124{bottom:337.630943px;}
.y23{bottom:338.352450px;}
.y2f{bottom:339.219750px;}
.y16b{bottom:340.212299px;}
.y153{bottom:340.255522px;}
.y8d{bottom:340.620895px;}
.y67{bottom:340.635295px;}
.yd6{bottom:340.642495px;}
.y10e{bottom:340.649695px;}
.yb5{bottom:340.671295px;}
.y20d{bottom:342.987579px;}
.y17d{bottom:343.160522px;}
.y1d6{bottom:350.487579px;}
.y123{bottom:355.404602px;}
.y11d{bottom:356.048996px;}
.y22{bottom:356.359650px;}
.y20c{bottom:356.487579px;}
.y2e{bottom:357.212550px;}
.y16a{bottom:358.205099px;}
.y152{bottom:358.248322px;}
.y8c{bottom:358.620895px;}
.y66{bottom:358.628095px;}
.yd5{bottom:358.635295px;}
.y10d{bottom:358.642495px;}
.yb4{bottom:358.664095px;}
.y1d5{bottom:363.987579px;}
.y20b{bottom:369.987579px;}
.y21{bottom:374.352450px;}
.y2d{bottom:375.205350px;}
.y169{bottom:376.197899px;}
.y151{bottom:376.241122px;}
.y65{bottom:376.620895px;}
.yd4{bottom:376.628095px;}
.y10c{bottom:376.635295px;}
.yb3{bottom:376.656895px;}
.y1d4{bottom:377.487579px;}
.y20a{bottom:383.487579px;}
.y1d3{bottom:390.987579px;}
.y20{bottom:392.366985px;}
.y2c{bottom:393.198150px;}
.y168{bottom:394.219522px;}
.y150{bottom:394.233922px;}
.y1a8{bottom:394.620895px;}
.y64{bottom:394.628095px;}
.yb2{bottom:394.649695px;}
.y209{bottom:396.987579px;}
.y1d2{bottom:404.487579px;}
.y1f{bottom:410.359785px;}
.y208{bottom:410.487579px;}
.y11e{bottom:410.718052px;}
.y2b{bottom:411.190950px;}
.y167{bottom:412.212322px;}
.y14f{bottom:412.226722px;}
.y10b{bottom:412.620895px;}
.y63{bottom:412.628095px;}
.yd3{bottom:412.635295px;}
.yb1{bottom:412.642495px;}
.y1a7{bottom:412.649695px;}
.y1d1{bottom:417.987579px;}
.y207{bottom:423.987579px;}
.y1e{bottom:428.352585px;}
.y2a{bottom:429.183750px;}
.y166{bottom:430.205122px;}
.y14e{bottom:430.219522px;}
.y62{bottom:430.628095px;}
.yb0{bottom:430.635295px;}
.y1a6{bottom:430.642495px;}
.y1d0{bottom:431.487579px;}
.y206{bottom:437.487579px;}
.y1cf{bottom:444.987579px;}
.y1d{bottom:446.352585px;}
.y29{bottom:447.176550px;}
.y165{bottom:448.197922px;}
.y14d{bottom:448.212322px;}
.y61{bottom:448.620895px;}
.yaf{bottom:448.628095px;}
.y19a{bottom:448.635295px;}
.y8b{bottom:448.642495px;}
.y12d{bottom:449.278931px;}
.y205{bottom:450.987579px;}
.y1ce{bottom:458.487579px;}
.y204{bottom:464.487579px;}
.y11f{bottom:465.361445px;}
.y14c{bottom:466.205122px;}
.yae{bottom:466.620895px;}
.y60{bottom:466.628095px;}
.y8a{bottom:466.635295px;}
.y118{bottom:477.793808px;}
.y203{bottom:477.987579px;}
.y14b{bottom:484.197922px;}
.yad{bottom:484.620895px;}
.y5f{bottom:484.628095px;}
.y1a5{bottom:484.635295px;}
.y202{bottom:491.487579px;}
.y18{bottom:500.315100px;}
.y164{bottom:502.197922px;}
.y14a{bottom:502.233922px;}
.y5e{bottom:502.620895px;}
.y10a{bottom:502.628095px;}
.y201{bottom:504.987579px;}
.y200{bottom:518.487579px;}
.y163{bottom:520.205122px;}
.y149{bottom:520.226722px;}
.y5d{bottom:520.620895px;}
.y89{bottom:520.628095px;}
.yf1{bottom:520.635295px;}
.y17{bottom:522.815100px;}
.y1ff{bottom:531.987579px;}
.y1cd{bottom:536.487579px;}
.y162{bottom:538.197922px;}
.y148{bottom:538.219522px;}
.yac{bottom:538.620895px;}
.yf0{bottom:538.628095px;}
.y5c{bottom:538.635295px;}
.y16{bottom:540.815100px;}
.y88{bottom:544.500916px;}
.y1fe{bottom:545.487579px;}
.y117{bottom:556.197922px;}
.y161{bottom:556.205122px;}
.y147{bottom:556.212322px;}
.y87{bottom:556.620895px;}
.y5b{bottom:556.628095px;}
.yab{bottom:556.635295px;}
.yd2{bottom:556.678495px;}
.y15{bottom:558.815100px;}
.y1fd{bottom:558.987579px;}
.y1cc{bottom:563.487579px;}
.y1fc{bottom:572.487579px;}
.y116{bottom:574.197922px;}
.y146{bottom:574.205122px;}
.y160{bottom:574.216197px;}
.yef{bottom:574.620895px;}
.yaa{bottom:574.628095px;}
.y5a{bottom:574.642495px;}
.yd1{bottom:574.671295px;}
.y14{bottom:576.815100px;}
.y1cb{bottom:576.987579px;}
.y1fb{bottom:585.987579px;}
.y1ca{bottom:590.487579px;}
.y145{bottom:592.197922px;}
.y115{bottom:592.202095px;}
.y15f{bottom:592.208997px;}
.ya9{bottom:592.620895px;}
.y114{bottom:592.628095px;}
.y59{bottom:592.635295px;}
.yd0{bottom:592.664095px;}
.y13{bottom:594.815100px;}
.y1fa{bottom:599.487579px;}
.y113{bottom:610.620895px;}
.y58{bottom:610.628095px;}
.ya8{bottom:610.635295px;}
.ycf{bottom:610.656895px;}
.yee{bottom:610.721741px;}
.y12{bottom:612.815100px;}
.y1f9{bottom:612.987579px;}
.y1c9{bottom:626.487579px;}
.y57{bottom:628.620895px;}
.ya7{bottom:628.628095px;}
.yce{bottom:628.649695px;}
.yed{bottom:628.714541px;}
.y11{bottom:630.815100px;}
.y1c8{bottom:639.987579px;}
.y86{bottom:646.620895px;}
.y199{bottom:646.628095px;}
.y56{bottom:646.635295px;}
.ycd{bottom:646.642495px;}
.yec{bottom:646.707341px;}
.y10{bottom:648.815100px;}
.y1c7{bottom:653.487579px;}
.y192{bottom:659.866333px;}
.y144{bottom:660.959106px;}
.y198{bottom:664.620895px;}
.y55{bottom:664.628095px;}
.ycc{bottom:664.635295px;}
.yeb{bottom:664.700141px;}
.yf{bottom:666.815100px;}
.y1c6{bottom:666.987579px;}
.ya6{bottom:670.500916px;}
.y191{bottom:674.866333px;}
.y143{bottom:675.959106px;}
.y1c5{bottom:680.487579px;}
.y54{bottom:682.620895px;}
.ycb{bottom:682.628095px;}
.y85{bottom:682.642495px;}
.yea{bottom:682.692941px;}
.ye{bottom:684.815100px;}
.y17c{bottom:689.866516px;}
.y142{bottom:690.959106px;}
.y1c4{bottom:693.987579px;}
.yca{bottom:700.620895px;}
.y112{bottom:700.628095px;}
.y84{bottom:700.635295px;}
.y53{bottom:700.678541px;}
.ye9{bottom:700.685741px;}
.y17f{bottom:701.843655px;}
.yd{bottom:702.815100px;}
.y141{bottom:705.959106px;}
.ya5{bottom:706.500916px;}
.y1c3{bottom:707.487579px;}
.y17e{bottom:711.935715px;}
.y109{bottom:718.620895px;}
.y83{bottom:718.628095px;}
.ya4{bottom:718.642541px;}
.y197{bottom:718.649741px;}
.y52{bottom:718.671341px;}
.ye8{bottom:718.678541px;}
.yc{bottom:720.815100px;}
.y136{bottom:720.960022px;}
.y1c2{bottom:720.987579px;}
.y178{bottom:725.317200px;}
.y1c1{bottom:734.487579px;}
.y82{bottom:736.620895px;}
.y111{bottom:736.628095px;}
.ya3{bottom:736.635341px;}
.y196{bottom:736.642541px;}
.y51{bottom:736.664141px;}
.ye7{bottom:736.671341px;}
.yb{bottom:738.815100px;}
.y138{bottom:742.353607px;}
.y1f8{bottom:747.987579px;}
.y131{bottom:753.290085px;}
.ya2{bottom:754.628141px;}
.y195{bottom:754.635341px;}
.y81{bottom:754.642541px;}
.y50{bottom:754.656941px;}
.ye6{bottom:754.664141px;}
.ya{bottom:756.815100px;}
.y190{bottom:759.596256px;}
.y1c0{bottom:761.487579px;}
.ya1{bottom:772.620941px;}
.yc9{bottom:772.628141px;}
.y80{bottom:772.635341px;}
.y4f{bottom:772.649741px;}
.ye5{bottom:772.656941px;}
.y1bf{bottom:774.987579px;}
.y9{bottom:779.315100px;}
.y18f{bottom:779.792871px;}
.y1f7{bottom:788.487579px;}
.yc8{bottom:790.620941px;}
.y7f{bottom:790.628141px;}
.ya0{bottom:790.635341px;}
.y4e{bottom:790.642541px;}
.ye4{bottom:790.649741px;}
.y18e{bottom:799.976871px;}
.y1be{bottom:801.987579px;}
.y179{bottom:802.243468px;}
.y108{bottom:808.620941px;}
.y7e{bottom:808.628141px;}
.y4d{bottom:808.635341px;}
.ye3{bottom:808.642541px;}
.y1a4{bottom:808.649741px;}
.y132{bottom:809.335898px;}
.y1bd{bottom:815.487579px;}
.y13a{bottom:820.042969px;}
.y18d{bottom:820.160870px;}
.y181{bottom:821.906708px;}
.y4c{bottom:826.628141px;}
.ye2{bottom:826.635341px;}
.y1a3{bottom:826.642541px;}
.y107{bottom:826.649741px;}
.y1f6{bottom:828.987579px;}
.y13b{bottom:836.669827px;}
.y18c{bottom:840.344870px;}
.y1bc{bottom:842.487579px;}
.y8{bottom:843.548115px;}
.y4b{bottom:844.620941px;}
.y9f{bottom:844.628141px;}
.y1a2{bottom:844.635341px;}
.y106{bottom:844.642541px;}
.yc7{bottom:844.649741px;}
.y182{bottom:852.462896px;}
.y1bb{bottom:855.987579px;}
.y18b{bottom:860.528870px;}
.ye1{bottom:862.620941px;}
.y7d{bottom:862.628141px;}
.y105{bottom:862.635341px;}
.yc6{bottom:862.642541px;}
.y4a{bottom:862.656941px;}
.y7{bottom:864.552615px;}
.y133{bottom:865.381712px;}
.y110{bottom:868.500732px;}
.y1ba{bottom:869.487579px;}
.y13f{bottom:873.640847px;}
.y13c{bottom:878.565491px;}
.y17a{bottom:879.182352px;}
.y7c{bottom:880.628141px;}
.yc5{bottom:880.635341px;}
.y1a1{bottom:880.642541px;}
.y49{bottom:880.649741px;}
.ye0{bottom:880.656941px;}
.y189{bottom:880.707870px;}
.y1f5{bottom:882.983829px;}
.y222{bottom:882.987579px;}
.y1f4{bottom:896.483829px;}
.y1b9{bottom:896.487579px;}
.y13e{bottom:896.792267px;}
.y104{bottom:898.620941px;}
.y9e{bottom:898.628141px;}
.y1a0{bottom:898.635341px;}
.y48{bottom:898.642541px;}
.ydf{bottom:898.649741px;}
.y7b{bottom:898.671341px;}
.y6{bottom:900.577530px;}
.y188{bottom:900.904485px;}
.y1f3{bottom:909.983829px;}
.y1b8{bottom:909.987579px;}
.y140{bottom:916.052962px;}
.yc4{bottom:916.620941px;}
.y9d{bottom:916.628141px;}
.y47{bottom:916.635341px;}
.yde{bottom:916.642541px;}
.y7a{bottom:916.664141px;}
.y103{bottom:916.707595px;}
.y13d{bottom:918.728210px;}
.y187{bottom:921.101100px;}
.y134{bottom:921.439586px;}
.y1f2{bottom:923.483829px;}
.y221{bottom:923.487579px;}
.yc3{bottom:934.620941px;}
.y46{bottom:934.628141px;}
.ydd{bottom:934.635341px;}
.y19f{bottom:934.642541px;}
.y79{bottom:934.656941px;}
.y102{bottom:934.700395px;}
.y1f1{bottom:936.983829px;}
.y1b7{bottom:936.987579px;}
.y5{bottom:939.565530px;}
.y186{bottom:941.272484px;}
.y1f0{bottom:950.483829px;}
.y1b6{bottom:950.487579px;}
.y45{bottom:952.620941px;}
.ydc{bottom:952.628141px;}
.y10f{bottom:952.635341px;}
.y78{bottom:952.649741px;}
.y101{bottom:952.693195px;}
.y17b{bottom:956.108621px;}
.y185{bottom:961.456484px;}
.y1ef{bottom:963.983829px;}
.y1b5{bottom:963.987579px;}
.y9c{bottom:970.620941px;}
.y44{bottom:970.628141px;}
.y77{bottom:970.642541px;}
.y100{bottom:970.685995px;}
.y135{bottom:977.473343px;}
.y1ee{bottom:977.483829px;}
.y1b4{bottom:977.487579px;}
.y4{bottom:978.553530px;}
.y184{bottom:981.627869px;}
.y43{bottom:988.620941px;}
.y194{bottom:988.628141px;}
.y76{bottom:988.635341px;}
.ydb{bottom:988.642541px;}
.yff{bottom:988.678795px;}
.y1ed{bottom:990.983829px;}
.y220{bottom:990.987579px;}
.yc2{bottom:994.500732px;}
.y183{bottom:1002.304230px;}
.y1ec{bottom:1004.483829px;}
.y1b3{bottom:1004.487579px;}
.y193{bottom:1006.620941px;}
.y42{bottom:1006.628141px;}
.y19e{bottom:1006.628395px;}
.y9b{bottom:1006.635341px;}
.yfe{bottom:1006.671595px;}
.yc1{bottom:1012.500732px;}
.y1eb{bottom:1017.983829px;}
.y1b2{bottom:1017.987579px;}
.y41{bottom:1024.620941px;}
.y19d{bottom:1024.621195px;}
.y9a{bottom:1024.628141px;}
.yfd{bottom:1024.664395px;}
.y1ea{bottom:1031.483829px;}
.y1b1{bottom:1031.487579px;}
.y3{bottom:1033.362585px;}
.y39{bottom:1035.750180px;}
.y75{bottom:1042.613995px;}
.y40{bottom:1042.620941px;}
.yfc{bottom:1042.657195px;}
.y1e9{bottom:1044.983829px;}
.y1b0{bottom:1044.987579px;}
.yc0{bottom:1048.500732px;}
.y2{bottom:1112.297085px;}
.y98{bottom:1126.524628px;}
.y3e{bottom:1126.524719px;}
.y3f{bottom:1126.920719px;}
.y99{bottom:1126.925079px;}
.y1{bottom:1126.925085px;}
.h39{height:24.792827px;}
.h10{height:27.814500px;}
.h27{height:29.417796px;}
.h2c{height:29.668800px;}
.h30{height:30.016977px;}
.h24{height:30.258419px;}
.h32{height:31.597401px;}
.h2d{height:35.547131px;}
.hd{height:37.086000px;}
.h37{height:37.189019px;}
.h22{height:37.823135px;}
.h14{height:39.102000px;}
.hf{height:39.735000px;}
.h41{height:39.750000px;}
.h26{height:41.043677px;}
.h31{height:41.273621px;}
.h2f{height:41.274064px;}
.h3a{height:41.320937px;}
.h23{height:41.605271px;}
.h34{height:42.384000px;}
.h40{height:42.840000px;}
.h3d{height:43.785000px;}
.h3f{height:44.505000px;}
.h3b{height:45.453296px;}
.h3{height:45.696000px;}
.h3e{height:45.814500px;}
.h2{height:47.232000px;}
.h3c{height:47.472000px;}
.h2b{height:48.868187px;}
.h33{height:48.868690px;}
.h2a{height:50.430699px;}
.h25{height:50.842880px;}
.ha{height:52.980000px;}
.h15{height:53.709599px;}
.he{height:55.860000px;}
.h12{height:55.887783px;}
.hc{height:58.380000px;}
.hb{height:61.086000px;}
.h9{height:61.120200px;}
.h18{height:62.420389px;}
.h36{height:62.506789px;}
.h16{height:62.535589px;}
.h20{height:62.563565px;}
.h19{height:62.564389px;}
.h1a{height:62.564435px;}
.h1f{height:62.564481px;}
.h17{height:62.592365px;}
.h21{height:62.593097px;}
.h1b{height:62.593235px;}
.h11{height:62.593281px;}
.h1e{height:62.610767px;}
.h1d{height:62.621165px;}
.h35{height:62.621989px;}
.h1c{height:62.622035px;}
.h13{height:62.622081px;}
.h28{height:63.047595px;}
.h7{height:67.194360px;}
.h8{height:67.212360px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h6{height:137.232000px;}
.h2e{height:322.903496px;}
.h29{height:341.584511px;}
.h38{height:353.997002px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:350.788490px;}
.w4{width:574.012482px;}
.w2{width:722.835022px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:63.524094px;}
.x1{left:84.933000px;}
.x2{left:92.734350px;}
.x3{left:94.683150px;}
.x8{left:97.039352px;}
.x3c{left:107.539352px;}
.x28{left:110.785642px;}
.x2b{left:144.318891px;}
.x1f{left:148.181854px;}
.x3a{left:160.012505px;}
.x11{left:169.015503px;}
.x36{left:172.053005px;}
.x37{left:188.872925px;}
.x27{left:196.387642px;}
.x12{left:198.546963px;}
.xf{left:209.401104px;}
.xe{left:210.838075px;}
.x2e{left:223.428602px;}
.xd{left:227.850780px;}
.x2a{left:231.331818px;}
.x29{left:250.027359px;}
.x4{left:270.817500px;}
.xc{left:275.760910px;}
.x19{left:289.099653px;}
.x31{left:298.824132px;}
.x2d{left:300.386109px;}
.xa{left:309.936150px;}
.x2c{left:319.081650px;}
.xb{left:343.488304px;}
.x33{left:357.583638px;}
.x10{left:363.915161px;}
.x30{left:369.934742px;}
.x2f{left:387.940659px;}
.x35{left:435.564138px;}
.x32{left:438.978229px;}
.x5{left:457.092900px;}
.x26{left:466.649094px;}
.x9{left:469.088124px;}
.x3d{left:479.588093px;}
.x20{left:480.845535px;}
.x1a{left:492.036163px;}
.x22{left:506.281036px;}
.x21{left:511.416408px;}
.x1c{left:521.175157px;}
.x34{left:526.300781px;}
.x1b{left:527.903549px;}
.x1e{left:544.651199px;}
.x3b{left:567.334785px;}
.x38{left:596.886292px;}
.x13{left:602.686661px;}
.x39{left:620.082321px;}
.x17{left:630.157319px;}
.x14{left:632.749649px;}
.x16{left:644.026657px;}
.x15{left:667.396388px;}
.x18{left:685.726444px;}
.x6{left:694.929885px;}
.x23{left:720.288895px;}
.x25{left:730.540465px;}
.x24{left:746.349884px;}
.x7{left:753.380081px;}
@media print{
.v7{vertical-align:-33.973307pt;}
.v13{vertical-align:-31.853841pt;}
.vc{vertical-align:-27.614909pt;}
.v12{vertical-align:-22.627279pt;}
.v6{vertical-align:-20.906738pt;}
.vb{vertical-align:-18.250122pt;}
.v11{vertical-align:-17.066121pt;}
.v5{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.333333pt;}
.va{vertical-align:-12.266927pt;}
.ve{vertical-align:-11.072653pt;}
.v15{vertical-align:-9.986667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v9{vertical-align:13.066732pt;}
.v14{vertical-align:16.000000pt;}
.v10{vertical-align:17.066121pt;}
.vd{vertical-align:18.297298pt;}
.v4{vertical-align:21.333333pt;}
.vf{vertical-align:22.421742pt;}
.v2{vertical-align:23.466453pt;}
.v8{vertical-align:33.989013pt;}
.ls9{letter-spacing:-0.522667pt;}
.lsf{letter-spacing:-0.470400pt;}
.ls2{letter-spacing:-0.418133pt;}
.lsb{letter-spacing:-0.365867pt;}
.lsa{letter-spacing:-0.313600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000001pt;}
.ls17{letter-spacing:0.000018pt;}
.ls8{letter-spacing:0.000027pt;}
.ls6{letter-spacing:0.000030pt;}
.ls22{letter-spacing:0.000063pt;}
.lsd{letter-spacing:0.000190pt;}
.ls11{letter-spacing:0.000351pt;}
.ls13{letter-spacing:0.000353pt;}
.ls7{letter-spacing:0.000355pt;}
.ls4{letter-spacing:0.000437pt;}
.lsc{letter-spacing:0.000438pt;}
.ls3{letter-spacing:0.000439pt;}
.ls5{letter-spacing:0.000518pt;}
.ls21{letter-spacing:0.000681pt;}
.ls1b{letter-spacing:0.036203pt;}
.ls14{letter-spacing:0.039843pt;}
.ls19{letter-spacing:0.049780pt;}
.ls24{letter-spacing:0.104533pt;}
.ls23{letter-spacing:0.627200pt;}
.lse{letter-spacing:0.888533pt;}
.ls10{letter-spacing:0.940800pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1d{letter-spacing:6.219733pt;}
.ls18{letter-spacing:12.399016pt;}
.ls20{letter-spacing:12.444933pt;}
.ls1a{letter-spacing:12.459984pt;}
.ls15{letter-spacing:12.510150pt;}
.ls1e{letter-spacing:12.857600pt;}
.ls1c{letter-spacing:12.909867pt;}
.ls16{letter-spacing:83.606040pt;}
.ls1f{letter-spacing:144.518246pt;}
.ws110{word-spacing:-144.518246pt;}
.ws1{word-spacing:-23.296000pt;}
.wsf3{word-spacing:-18.502400pt;}
.ws6{word-spacing:-17.760000pt;}
.wsfb{word-spacing:-16.909072pt;}
.wsf7{word-spacing:-13.949966pt;}
.ws100{word-spacing:-13.838766pt;}
.wse0{word-spacing:-13.223467pt;}
.wsae{word-spacing:-13.171200pt;}
.ws107{word-spacing:-12.909867pt;}
.ws10e{word-spacing:-12.857600pt;}
.ws113{word-spacing:-12.444933pt;}
.ws8{word-spacing:-12.432000pt;}
.ws128{word-spacing:-12.387200pt;}
.wsb{word-spacing:-12.282667pt;}
.ws81{word-spacing:-12.183360pt;}
.ws2f{word-spacing:-11.916800pt;}
.wsc{word-spacing:-11.864533pt;}
.ws2c{word-spacing:-11.760000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.096533pt;}
.ws9{word-spacing:-11.040000pt;}
.ws80{word-spacing:-10.156800pt;}
.wsf6{word-spacing:-10.145443pt;}
.wsff{word-spacing:-10.064489pt;}
.ws4{word-spacing:-9.600000pt;}
.wsfd{word-spacing:-9.344000pt;}
.wsf9{word-spacing:-9.123600pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wse{word-spacing:-8.760000pt;}
.wsa{word-spacing:-8.597867pt;}
.ws145{word-spacing:-8.280000pt;}
.ws5{word-spacing:-8.176000pt;}
.ws146{word-spacing:-7.200000pt;}
.wsf1{word-spacing:-6.938027pt;}
.wsfc{word-spacing:-6.540800pt;}
.wsd{word-spacing:-6.132000pt;}
.ws104{word-spacing:-5.749333pt;}
.ws12{word-spacing:-5.013333pt;}
.ws111{word-spacing:-4.010667pt;}
.ws11{word-spacing:-2.464000pt;}
.wsf8{word-spacing:-2.358447pt;}
.ws10c{word-spacing:-1.672533pt;}
.wsa4{word-spacing:-1.411200pt;}
.wsfa{word-spacing:-1.405033pt;}
.ws101{word-spacing:-1.344053pt;}
.ws39{word-spacing:-1.097600pt;}
.ws120{word-spacing:-0.993067pt;}
.wsd8{word-spacing:-0.888533pt;}
.ws114{word-spacing:-0.784000pt;}
.wsbd{word-spacing:-0.731733pt;}
.ws10{word-spacing:-0.693333pt;}
.wsc2{word-spacing:-0.627200pt;}
.ws12d{word-spacing:-0.470400pt;}
.ws91{word-spacing:-0.418133pt;}
.ws27{word-spacing:-0.365867pt;}
.wsa1{word-spacing:-0.313600pt;}
.ws9d{word-spacing:-0.261333pt;}
.ws70{word-spacing:-0.104533pt;}
.ws144{word-spacing:-0.080000pt;}
.ws8a{word-spacing:-0.052267pt;}
.ws112{word-spacing:-0.049780pt;}
.wsf{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.104533pt;}
.wsdb{word-spacing:0.156800pt;}
.ws8f{word-spacing:0.209067pt;}
.ws9c{word-spacing:0.261333pt;}
.ws29{word-spacing:0.313600pt;}
.ws10b{word-spacing:0.418133pt;}
.wsba{word-spacing:0.470400pt;}
.wsd9{word-spacing:0.522667pt;}
.wsf4{word-spacing:0.569706pt;}
.ws11d{word-spacing:0.574933pt;}
.ws2d{word-spacing:0.595840pt;}
.ws2e{word-spacing:0.601067pt;}
.wsf2{word-spacing:0.616747pt;}
.ws13{word-spacing:0.627200pt;}
.ws18{word-spacing:0.679467pt;}
.wsb0{word-spacing:0.731733pt;}
.ws30{word-spacing:0.888533pt;}
.ws3f{word-spacing:0.940800pt;}
.ws21{word-spacing:1.045333pt;}
.ws3d{word-spacing:1.097600pt;}
.ws12c{word-spacing:1.202133pt;}
.ws95{word-spacing:1.254400pt;}
.wse2{word-spacing:1.358933pt;}
.wsc5{word-spacing:1.411200pt;}
.wsab{word-spacing:1.515733pt;}
.ws60{word-spacing:1.568000pt;}
.ws4e{word-spacing:1.620267pt;}
.ws40{word-spacing:1.672533pt;}
.wsc3{word-spacing:1.724800pt;}
.ws108{word-spacing:1.829333pt;}
.ws50{word-spacing:1.986133pt;}
.ws63{word-spacing:2.038400pt;}
.ws37{word-spacing:2.090667pt;}
.ws11f{word-spacing:2.195200pt;}
.ws38{word-spacing:2.247467pt;}
.wsc6{word-spacing:2.299733pt;}
.ws14{word-spacing:2.352000pt;}
.ws2a{word-spacing:2.404267pt;}
.ws67{word-spacing:2.561067pt;}
.wsa2{word-spacing:2.613333pt;}
.ws88{word-spacing:2.665600pt;}
.ws97{word-spacing:2.717867pt;}
.ws36{word-spacing:2.770133pt;}
.ws136{word-spacing:2.822400pt;}
.ws4c{word-spacing:2.874667pt;}
.wsb6{word-spacing:2.979200pt;}
.ws9e{word-spacing:3.031467pt;}
.ws51{word-spacing:3.083733pt;}
.ws10f{word-spacing:3.136000pt;}
.ws11e{word-spacing:3.188267pt;}
.ws53{word-spacing:3.240533pt;}
.ws15{word-spacing:3.345067pt;}
.ws55{word-spacing:3.397333pt;}
.wsa3{word-spacing:3.449600pt;}
.wsb4{word-spacing:3.501867pt;}
.wsac{word-spacing:3.554133pt;}
.wsda{word-spacing:3.606400pt;}
.ws119{word-spacing:3.763200pt;}
.ws3a{word-spacing:3.815467pt;}
.wsb7{word-spacing:3.867733pt;}
.ws99{word-spacing:3.920000pt;}
.ws31{word-spacing:3.972267pt;}
.ws66{word-spacing:4.024533pt;}
.ws12a{word-spacing:4.076800pt;}
.ws9a{word-spacing:4.129067pt;}
.ws47{word-spacing:4.233600pt;}
.wse5{word-spacing:4.338133pt;}
.wsa7{word-spacing:4.390400pt;}
.wscf{word-spacing:4.442667pt;}
.wsbf{word-spacing:4.494933pt;}
.ws22{word-spacing:4.547195pt;}
.ws69{word-spacing:4.547200pt;}
.ws121{word-spacing:4.651733pt;}
.wsbe{word-spacing:4.756267pt;}
.ws1c{word-spacing:4.808533pt;}
.wsb1{word-spacing:4.860800pt;}
.ws3b{word-spacing:4.913067pt;}
.wse4{word-spacing:4.965333pt;}
.ws4d{word-spacing:5.017600pt;}
.ws2b{word-spacing:5.069867pt;}
.ws75{word-spacing:5.122133pt;}
.ws11b{word-spacing:5.174400pt;}
.ws73{word-spacing:5.226667pt;}
.ws123{word-spacing:5.278933pt;}
.ws33{word-spacing:5.331200pt;}
.ws23{word-spacing:5.383467pt;}
.ws5a{word-spacing:5.435733pt;}
.wse7{word-spacing:5.540267pt;}
.wsc0{word-spacing:5.592533pt;}
.ws12e{word-spacing:5.644800pt;}
.ws134{word-spacing:5.697067pt;}
.ws6d{word-spacing:5.749333pt;}
.ws28{word-spacing:5.801600pt;}
.ws49{word-spacing:5.853867pt;}
.ws68{word-spacing:5.906133pt;}
.wsa6{word-spacing:5.958400pt;}
.ws118{word-spacing:6.010667pt;}
.ws34{word-spacing:6.062933pt;}
.wsa9{word-spacing:6.167467pt;}
.ws109{word-spacing:6.219733pt;}
.wsc8{word-spacing:6.272000pt;}
.ws115{word-spacing:6.376533pt;}
.wsc4{word-spacing:6.481067pt;}
.ws41{word-spacing:6.533333pt;}
.ws90{word-spacing:6.585600pt;}
.ws116{word-spacing:6.637867pt;}
.ws11c{word-spacing:6.690133pt;}
.wsce{word-spacing:6.742400pt;}
.ws42{word-spacing:6.794667pt;}
.ws135{word-spacing:6.846933pt;}
.ws59{word-spacing:6.899200pt;}
.wse3{word-spacing:6.951467pt;}
.wsb2{word-spacing:7.056000pt;}
.ws7e{word-spacing:7.108267pt;}
.ws7b{word-spacing:7.160533pt;}
.ws93{word-spacing:7.212800pt;}
.ws8c{word-spacing:7.265067pt;}
.ws126{word-spacing:7.317333pt;}
.ws62{word-spacing:7.369600pt;}
.ws141{word-spacing:7.421867pt;}
.ws44{word-spacing:7.526400pt;}
.wsa8{word-spacing:7.578667pt;}
.ws61{word-spacing:7.630933pt;}
.ws77{word-spacing:7.683200pt;}
.ws74{word-spacing:7.735467pt;}
.ws127{word-spacing:7.787733pt;}
.ws24{word-spacing:7.840000pt;}
.ws83{word-spacing:7.892267pt;}
.ws6c{word-spacing:7.944533pt;}
.ws13b{word-spacing:8.049067pt;}
.ws4f{word-spacing:8.101333pt;}
.ws76{word-spacing:8.153600pt;}
.ws45{word-spacing:8.205867pt;}
.ws16{word-spacing:8.258133pt;}
.wscc{word-spacing:8.414933pt;}
.ws89{word-spacing:8.519467pt;}
.ws1d{word-spacing:8.571733pt;}
.ws6a{word-spacing:8.624000pt;}
.wsaa{word-spacing:8.676267pt;}
.ws94{word-spacing:8.728533pt;}
.ws52{word-spacing:8.780800pt;}
.ws54{word-spacing:8.885333pt;}
.wsb3{word-spacing:8.937600pt;}
.ws64{word-spacing:8.989867pt;}
.wsa5{word-spacing:9.146667pt;}
.ws125{word-spacing:9.198933pt;}
.ws3c{word-spacing:9.251200pt;}
.wsc1{word-spacing:9.303467pt;}
.ws106{word-spacing:9.355733pt;}
.ws8e{word-spacing:9.408000pt;}
.wse6{word-spacing:9.460267pt;}
.ws35{word-spacing:9.512533pt;}
.ws5e{word-spacing:9.564800pt;}
.wsc7{word-spacing:9.617067pt;}
.wsd3{word-spacing:9.826133pt;}
.wsa0{word-spacing:9.878400pt;}
.ws98{word-spacing:9.982933pt;}
.wsad{word-spacing:10.035200pt;}
.ws122{word-spacing:10.087467pt;}
.ws124{word-spacing:10.192000pt;}
.ws4a{word-spacing:10.244267pt;}
.ws138{word-spacing:10.348800pt;}
.ws9f{word-spacing:10.401067pt;}
.ws10a{word-spacing:10.505600pt;}
.wse9{word-spacing:10.557867pt;}
.ws1f{word-spacing:10.610133pt;}
.ws139{word-spacing:10.662400pt;}
.ws17{word-spacing:10.766933pt;}
.ws12b{word-spacing:10.819200pt;}
.wscb{word-spacing:10.871467pt;}
.ws13f{word-spacing:10.923733pt;}
.ws132{word-spacing:10.976000pt;}
.ws87{word-spacing:11.132800pt;}
.ws133{word-spacing:11.237333pt;}
.ws25{word-spacing:11.289600pt;}
.wsd1{word-spacing:11.394133pt;}
.wsbc{word-spacing:11.760000pt;}
.wsdd{word-spacing:11.812267pt;}
.ws7d{word-spacing:11.916800pt;}
.ws72{word-spacing:11.969067pt;}
.ws86{word-spacing:12.125867pt;}
.ws92{word-spacing:12.178133pt;}
.ws32{word-spacing:12.230400pt;}
.wsd7{word-spacing:12.334933pt;}
.ws137{word-spacing:12.387200pt;}
.ws4b{word-spacing:12.439467pt;}
.ws105{word-spacing:12.544000pt;}
.ws56{word-spacing:12.596267pt;}
.ws7c{word-spacing:12.648533pt;}
.ws6f{word-spacing:12.700800pt;}
.ws10d{word-spacing:12.857600pt;}
.ws78{word-spacing:12.909867pt;}
.ws58{word-spacing:12.962133pt;}
.ws12f{word-spacing:13.014400pt;}
.ws65{word-spacing:13.066667pt;}
.ws13e{word-spacing:13.118933pt;}
.ws13a{word-spacing:13.223467pt;}
.ws129{word-spacing:13.275733pt;}
.ws9b{word-spacing:13.432533pt;}
.wsd5{word-spacing:13.484800pt;}
.ws71{word-spacing:13.589333pt;}
.wsaf{word-spacing:13.693867pt;}
.ws7a{word-spacing:13.746133pt;}
.ws3e{word-spacing:13.798400pt;}
.wsde{word-spacing:13.850667pt;}
.ws6e{word-spacing:13.902933pt;}
.wse8{word-spacing:13.955200pt;}
.ws20{word-spacing:14.007467pt;}
.ws131{word-spacing:14.059733pt;}
.ws5b{word-spacing:14.216533pt;}
.ws19{word-spacing:14.268800pt;}
.ws8d{word-spacing:14.373333pt;}
.ws1b{word-spacing:14.530133pt;}
.ws26{word-spacing:14.634667pt;}
.ws1a{word-spacing:14.791467pt;}
.ws117{word-spacing:14.896000pt;}
.wsb5{word-spacing:14.948267pt;}
.ws84{word-spacing:15.000533pt;}
.ws5f{word-spacing:15.052800pt;}
.wsea{word-spacing:15.314133pt;}
.ws7f{word-spacing:15.418667pt;}
.ws130{word-spacing:15.889067pt;}
.ws8b{word-spacing:15.993600pt;}
.wsbb{word-spacing:16.254933pt;}
.ws13c{word-spacing:16.359467pt;}
.ws102{word-spacing:16.516267pt;}
.ws46{word-spacing:16.568533pt;}
.wsd6{word-spacing:16.620800pt;}
.wsdc{word-spacing:17.091200pt;}
.wsca{word-spacing:17.195733pt;}
.ws143{word-spacing:17.248000pt;}
.wsc9{word-spacing:17.300267pt;}
.wsd2{word-spacing:17.404800pt;}
.ws142{word-spacing:17.457067pt;}
.ws43{word-spacing:17.666133pt;}
.wsed{word-spacing:17.875200pt;}
.ws11a{word-spacing:17.979733pt;}
.wsb9{word-spacing:18.032000pt;}
.wse1{word-spacing:18.136533pt;}
.ws5c{word-spacing:18.502400pt;}
.ws48{word-spacing:18.711467pt;}
.wsee{word-spacing:18.816000pt;}
.ws85{word-spacing:19.077333pt;}
.ws79{word-spacing:19.181867pt;}
.wscd{word-spacing:19.234133pt;}
.ws1e{word-spacing:19.443200pt;}
.wsdf{word-spacing:19.547733pt;}
.wsd0{word-spacing:19.756800pt;}
.ws140{word-spacing:20.122667pt;}
.wsb8{word-spacing:20.384000pt;}
.ws82{word-spacing:20.540800pt;}
.wsd4{word-spacing:22.213333pt;}
.ws103{word-spacing:22.265600pt;}
.ws96{word-spacing:23.310933pt;}
.wsec{word-spacing:24.983467pt;}
.ws6b{word-spacing:25.140267pt;}
.wseb{word-spacing:25.976533pt;}
.ws57{word-spacing:26.185600pt;}
.wsf0{word-spacing:27.230933pt;}
.ws5d{word-spacing:29.530667pt;}
.wsef{word-spacing:30.732800pt;}
.wsfe{word-spacing:69.025637pt;}
.wsf5{word-spacing:388.703094pt;}
._2d{margin-left:-683.844232pt;}
._21{margin-left:-31.270400pt;}
._26{margin-left:-30.157878pt;}
._31{margin-left:-28.802151pt;}
._20{margin-left:-27.424053pt;}
._17{margin-left:-25.939200pt;}
._30{margin-left:-24.055467pt;}
._13{margin-left:-22.489600pt;}
._1d{margin-left:-20.939171pt;}
._19{margin-left:-18.742400pt;}
._f{margin-left:-17.730240pt;}
._e{margin-left:-16.829867pt;}
._2f{margin-left:-15.617620pt;}
._14{margin-left:-14.597333pt;}
._15{margin-left:-13.537067pt;}
._a{margin-left:-12.611200pt;}
._5{margin-left:-11.558507pt;}
._23{margin-left:-10.259200pt;}
._2e{margin-left:-9.363149pt;}
._22{margin-left:-8.467200pt;}
._29{margin-left:-6.966400pt;}
._4{margin-left:-6.017013pt;}
._1c{margin-left:-4.982913pt;}
._b{margin-left:-3.385493pt;}
._1{margin-left:-2.227200pt;}
._0{margin-left:-1.241600pt;}
._6{width:0.903467pt;}
._2{width:1.920000pt;}
._11{width:2.998933pt;}
._8{width:4.729227pt;}
._7{width:5.697013pt;}
._18{width:6.899200pt;}
._12{width:8.744960pt;}
._25{width:9.733761pt;}
._d{width:11.366400pt;}
._1f{width:12.595995pt;}
._c{width:14.079893pt;}
._9{width:15.268267pt;}
._1e{width:16.905393pt;}
._1a{width:18.502400pt;}
._1b{width:20.891733pt;}
._10{width:21.795200pt;}
._28{width:23.080691pt;}
._16{width:25.244800pt;}
._24{width:26.323486pt;}
._27{width:30.427588pt;}
._3{width:34.291733pt;}
._2c{width:128.410859pt;}
._2b{width:195.884265pt;}
._2a{width:197.663372pt;}
.fsb{font-size:28.000000pt;}
.fs14{font-size:29.866667pt;}
.fs1b{font-size:29.902400pt;}
.fsd{font-size:34.346667pt;}
.fs12{font-size:35.480532pt;}
.fs17{font-size:36.203199pt;}
.fs10{font-size:36.494400pt;}
.fs9{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs19{font-size:38.109333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs15{font-size:42.873067pt;}
.fs1a{font-size:44.853333pt;}
.fse{font-size:45.618133pt;}
.fsc{font-size:49.066666pt;}
.fs11{font-size:49.502400pt;}
.fs18{font-size:49.779733pt;}
.fs16{font-size:49.780267pt;}
.fs1c{font-size:49.836800pt;}
.fsf{font-size:50.179733pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs1d{font-size:54.820800pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs13{font-size:60.824000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y180{bottom:1.682373pt;}
.y12c{bottom:2.080402pt;}
.y139{bottom:2.836507pt;}
.y1c{bottom:77.504667pt;}
.y1b{bottom:88.172667pt;}
.y21f{bottom:88.877848pt;}
.y177{bottom:94.404532pt;}
.ybf{bottom:94.774129pt;}
.y74{bottom:94.780529pt;}
.y97{bottom:94.793329pt;}
.yfb{bottom:94.812529pt;}
.y1e8{bottom:95.544515pt;}
.y1a{bottom:98.840667pt;}
.y21e{bottom:100.877848pt;}
.y130{bottom:101.141602pt;}
.y1e7{bottom:107.544515pt;}
.y19{bottom:109.508667pt;}
.y12f{bottom:110.208405pt;}
.y176{bottom:110.398132pt;}
.y15e{bottom:110.404532pt;}
.yda{bottom:110.774129pt;}
.ybe{bottom:110.780529pt;}
.y96{bottom:110.786929pt;}
.y73{bottom:110.793329pt;}
.yfa{bottom:110.806129pt;}
.y21d{bottom:112.877848pt;}
.y1ad{bottom:118.774129pt;}
.y1e6{bottom:119.544515pt;}
.y12e{bottom:123.541738pt;}
.y21c{bottom:124.877848pt;}
.y175{bottom:126.404532pt;}
.y15d{bottom:126.423732pt;}
.y95{bottom:126.780529pt;}
.y72{bottom:126.786929pt;}
.yf9{bottom:126.799729pt;}
.y1e5{bottom:131.544515pt;}
.y12b{bottom:136.874664pt;}
.y21b{bottom:136.877848pt;}
.y3d{bottom:139.077333pt;}
.y120{bottom:142.375071pt;}
.y174{bottom:142.404532pt;}
.y15c{bottom:142.417332pt;}
.y94{bottom:142.774129pt;}
.y71{bottom:142.780529pt;}
.ybd{bottom:142.786929pt;}
.yf8{bottom:142.793329pt;}
.y1e4{bottom:143.544515pt;}
.y21a{bottom:148.877848pt;}
.y3c{bottom:151.077333pt;}
.y1ac{bottom:154.774129pt;}
.y1e3{bottom:155.544515pt;}
.y38{bottom:157.460400pt;}
.y173{bottom:158.404532pt;}
.y15b{bottom:158.410932pt;}
.y70{bottom:158.774129pt;}
.ybc{bottom:158.780529pt;}
.yf7{bottom:158.786929pt;}
.yd9{bottom:158.793329pt;}
.y119{bottom:160.371339pt;}
.y219{bottom:160.877848pt;}
.y1ab{bottom:166.774129pt;}
.y3b{bottom:167.077333pt;}
.y1e2{bottom:167.544515pt;}
.y18a{bottom:169.633219pt;}
.y11a{bottom:170.715251pt;}
.y218{bottom:172.877848pt;}
.y37{bottom:173.454000pt;}
.y15a{bottom:174.404532pt;}
.y172{bottom:174.423732pt;}
.y19c{bottom:174.774129pt;}
.y6f{bottom:174.780529pt;}
.ybb{bottom:174.786929pt;}
.y93{bottom:174.799729pt;}
.y3a{bottom:175.077333pt;}
.y1aa{bottom:178.774129pt;}
.y1e1{bottom:179.544515pt;}
.y217{bottom:184.877848pt;}
.y36{bottom:189.573467pt;}
.y159{bottom:190.404532pt;}
.y171{bottom:190.417332pt;}
.yf6{bottom:190.774129pt;}
.yba{bottom:190.780529pt;}
.y6e{bottom:190.786929pt;}
.y92{bottom:190.793329pt;}
.y1e0{bottom:191.544515pt;}
.y216{bottom:196.877848pt;}
.y1a9{bottom:202.774129pt;}
.y1df{bottom:203.544515pt;}
.y35{bottom:205.567067pt;}
.y158{bottom:206.398132pt;}
.y170{bottom:206.410932pt;}
.yb9{bottom:206.774129pt;}
.y6d{bottom:206.780529pt;}
.y91{bottom:206.786929pt;}
.y215{bottom:208.877848pt;}
.y1de{bottom:215.544515pt;}
.y11b{bottom:219.309968pt;}
.y28{bottom:220.789733pt;}
.y214{bottom:220.877848pt;}
.y34{bottom:221.560667pt;}
.y157{bottom:222.404532pt;}
.y6c{bottom:222.774129pt;}
.y90{bottom:222.780529pt;}
.yb8{bottom:222.786929pt;}
.y1dd{bottom:227.544515pt;}
.y121{bottom:230.847066pt;}
.y213{bottom:232.877848pt;}
.y27{bottom:236.783333pt;}
.y33{bottom:237.554267pt;}
.y16f{bottom:238.398132pt;}
.y156{bottom:238.404532pt;}
.yd8{bottom:238.774129pt;}
.y6b{bottom:238.780529pt;}
.y8f{bottom:238.793329pt;}
.yf5{bottom:238.844529pt;}
.y1dc{bottom:239.544515pt;}
.y122{bottom:241.414991pt;}
.y1af{bottom:242.729472pt;}
.y212{bottom:244.877848pt;}
.y1db{bottom:251.544515pt;}
.y26{bottom:252.776933pt;}
.y32{bottom:253.547867pt;}
.y155{bottom:254.398132pt;}
.y16e{bottom:254.410932pt;}
.y6a{bottom:254.774129pt;}
.y19b{bottom:254.780529pt;}
.y8e{bottom:254.786929pt;}
.yf4{bottom:254.838129pt;}
.y211{bottom:256.877848pt;}
.y1da{bottom:263.544515pt;}
.y12a{bottom:267.857638pt;}
.y11c{bottom:267.904684pt;}
.y25{bottom:268.770533pt;}
.y210{bottom:268.877848pt;}
.y31{bottom:269.541467pt;}
.y154{bottom:270.398132pt;}
.y16d{bottom:270.404532pt;}
.y69{bottom:270.780529pt;}
.yb7{bottom:270.786929pt;}
.yf3{bottom:270.831729pt;}
.y128{bottom:272.745763pt;}
.y1d9{bottom:275.544515pt;}
.y1ae{bottom:276.474141pt;}
.y129{bottom:277.410772pt;}
.y125{bottom:277.417723pt;}
.y137{bottom:277.817464pt;}
.y20f{bottom:280.877848pt;}
.y24{bottom:284.764133pt;}
.y30{bottom:285.535067pt;}
.y16c{bottom:286.417332pt;}
.y68{bottom:286.774129pt;}
.yb6{bottom:286.780529pt;}
.yd7{bottom:286.799729pt;}
.yf2{bottom:286.825329pt;}
.y1d8{bottom:287.544515pt;}
.y126{bottom:291.148689pt;}
.y20e{bottom:292.877848pt;}
.y127{bottom:294.631063pt;}
.y1d7{bottom:299.544515pt;}
.y124{bottom:300.116394pt;}
.y23{bottom:300.757733pt;}
.y2f{bottom:301.528667pt;}
.y16b{bottom:302.410932pt;}
.y153{bottom:302.449353pt;}
.y8d{bottom:302.774129pt;}
.y67{bottom:302.786929pt;}
.yd6{bottom:302.793329pt;}
.y10e{bottom:302.799729pt;}
.yb5{bottom:302.818929pt;}
.y20d{bottom:304.877848pt;}
.y17d{bottom:305.031576pt;}
.y1d6{bottom:311.544515pt;}
.y123{bottom:315.915202pt;}
.y11d{bottom:316.487996pt;}
.y22{bottom:316.764133pt;}
.y20c{bottom:316.877848pt;}
.y2e{bottom:317.522267pt;}
.y16a{bottom:318.404532pt;}
.y152{bottom:318.442953pt;}
.y8c{bottom:318.774129pt;}
.y66{bottom:318.780529pt;}
.yd5{bottom:318.786929pt;}
.y10d{bottom:318.793329pt;}
.yb4{bottom:318.812529pt;}
.y1d5{bottom:323.544515pt;}
.y20b{bottom:328.877848pt;}
.y21{bottom:332.757733pt;}
.y2d{bottom:333.515867pt;}
.y169{bottom:334.398132pt;}
.y151{bottom:334.436553pt;}
.y65{bottom:334.774129pt;}
.yd4{bottom:334.780529pt;}
.y10c{bottom:334.786929pt;}
.yb3{bottom:334.806129pt;}
.y1d4{bottom:335.544515pt;}
.y20a{bottom:340.877848pt;}
.y1d3{bottom:347.544515pt;}
.y20{bottom:348.770653pt;}
.y2c{bottom:349.509467pt;}
.y168{bottom:350.417353pt;}
.y150{bottom:350.430153pt;}
.y1a8{bottom:350.774129pt;}
.y64{bottom:350.780529pt;}
.yb2{bottom:350.799729pt;}
.y209{bottom:352.877848pt;}
.y1d2{bottom:359.544515pt;}
.y1f{bottom:364.764253pt;}
.y208{bottom:364.877848pt;}
.y11e{bottom:365.082713pt;}
.y2b{bottom:365.503067pt;}
.y167{bottom:366.410953pt;}
.y14f{bottom:366.423753pt;}
.y10b{bottom:366.774129pt;}
.y63{bottom:366.780529pt;}
.yd3{bottom:366.786929pt;}
.yb1{bottom:366.793329pt;}
.y1a7{bottom:366.799729pt;}
.y1d1{bottom:371.544515pt;}
.y207{bottom:376.877848pt;}
.y1e{bottom:380.757853pt;}
.y2a{bottom:381.496667pt;}
.y166{bottom:382.404553pt;}
.y14e{bottom:382.417353pt;}
.y62{bottom:382.780529pt;}
.yb0{bottom:382.786929pt;}
.y1a6{bottom:382.793329pt;}
.y1d0{bottom:383.544515pt;}
.y206{bottom:388.877848pt;}
.y1cf{bottom:395.544515pt;}
.y1d{bottom:396.757853pt;}
.y29{bottom:397.490267pt;}
.y165{bottom:398.398153pt;}
.y14d{bottom:398.410953pt;}
.y61{bottom:398.774129pt;}
.yaf{bottom:398.780529pt;}
.y19a{bottom:398.786929pt;}
.y8b{bottom:398.793329pt;}
.y12d{bottom:399.359049pt;}
.y205{bottom:400.877848pt;}
.y1ce{bottom:407.544515pt;}
.y204{bottom:412.877848pt;}
.y11f{bottom:413.654618pt;}
.y14c{bottom:414.404553pt;}
.yae{bottom:414.774129pt;}
.y60{bottom:414.780529pt;}
.y8a{bottom:414.786929pt;}
.y118{bottom:424.705607pt;}
.y203{bottom:424.877848pt;}
.y14b{bottom:430.398153pt;}
.yad{bottom:430.774129pt;}
.y5f{bottom:430.780529pt;}
.y1a5{bottom:430.786929pt;}
.y202{bottom:436.877848pt;}
.y18{bottom:444.724533pt;}
.y164{bottom:446.398153pt;}
.y14a{bottom:446.430153pt;}
.y5e{bottom:446.774129pt;}
.y10a{bottom:446.780529pt;}
.y201{bottom:448.877848pt;}
.y200{bottom:460.877848pt;}
.y163{bottom:462.404553pt;}
.y149{bottom:462.423753pt;}
.y5d{bottom:462.774129pt;}
.y89{bottom:462.780529pt;}
.yf1{bottom:462.786929pt;}
.y17{bottom:464.724533pt;}
.y1ff{bottom:472.877848pt;}
.y1cd{bottom:476.877848pt;}
.y162{bottom:478.398153pt;}
.y148{bottom:478.417353pt;}
.yac{bottom:478.774129pt;}
.yf0{bottom:478.780529pt;}
.y5c{bottom:478.786929pt;}
.y16{bottom:480.724533pt;}
.y88{bottom:484.000814pt;}
.y1fe{bottom:484.877848pt;}
.y117{bottom:494.398153pt;}
.y161{bottom:494.404553pt;}
.y147{bottom:494.410953pt;}
.y87{bottom:494.774129pt;}
.y5b{bottom:494.780529pt;}
.yab{bottom:494.786929pt;}
.yd2{bottom:494.825329pt;}
.y15{bottom:496.724533pt;}
.y1fd{bottom:496.877848pt;}
.y1cc{bottom:500.877848pt;}
.y1fc{bottom:508.877848pt;}
.y116{bottom:510.398153pt;}
.y146{bottom:510.404553pt;}
.y160{bottom:510.414398pt;}
.yef{bottom:510.774129pt;}
.yaa{bottom:510.780529pt;}
.y5a{bottom:510.793329pt;}
.yd1{bottom:510.818929pt;}
.y14{bottom:512.724533pt;}
.y1cb{bottom:512.877848pt;}
.y1fb{bottom:520.877848pt;}
.y1ca{bottom:524.877848pt;}
.y145{bottom:526.398153pt;}
.y115{bottom:526.401863pt;}
.y15f{bottom:526.407998pt;}
.ya9{bottom:526.774129pt;}
.y114{bottom:526.780529pt;}
.y59{bottom:526.786929pt;}
.yd0{bottom:526.812529pt;}
.y13{bottom:528.724533pt;}
.y1fa{bottom:532.877848pt;}
.y113{bottom:542.774129pt;}
.y58{bottom:542.780529pt;}
.ya8{bottom:542.786929pt;}
.ycf{bottom:542.806129pt;}
.yee{bottom:542.863770pt;}
.y12{bottom:544.724533pt;}
.y1f9{bottom:544.877848pt;}
.y1c9{bottom:556.877848pt;}
.y57{bottom:558.774129pt;}
.ya7{bottom:558.780529pt;}
.yce{bottom:558.799729pt;}
.yed{bottom:558.857370pt;}
.y11{bottom:560.724533pt;}
.y1c8{bottom:568.877848pt;}
.y86{bottom:574.774129pt;}
.y199{bottom:574.780529pt;}
.y56{bottom:574.786929pt;}
.ycd{bottom:574.793329pt;}
.yec{bottom:574.850970pt;}
.y10{bottom:576.724533pt;}
.y1c7{bottom:580.877848pt;}
.y192{bottom:586.547852pt;}
.y144{bottom:587.519206pt;}
.y198{bottom:590.774129pt;}
.y55{bottom:590.780529pt;}
.ycc{bottom:590.786929pt;}
.yeb{bottom:590.844570pt;}
.yf{bottom:592.724533pt;}
.y1c6{bottom:592.877848pt;}
.ya6{bottom:596.000814pt;}
.y191{bottom:599.881185pt;}
.y143{bottom:600.852539pt;}
.y1c5{bottom:604.877848pt;}
.y54{bottom:606.774129pt;}
.ycb{bottom:606.780529pt;}
.y85{bottom:606.793329pt;}
.yea{bottom:606.838170pt;}
.ye{bottom:608.724533pt;}
.y17c{bottom:613.214681pt;}
.y142{bottom:614.185872pt;}
.y1c4{bottom:616.877848pt;}
.yca{bottom:622.774129pt;}
.y112{bottom:622.780529pt;}
.y84{bottom:622.786929pt;}
.y53{bottom:622.825370pt;}
.ye9{bottom:622.831770pt;}
.y17f{bottom:623.861026pt;}
.yd{bottom:624.724533pt;}
.y141{bottom:627.519206pt;}
.ya5{bottom:628.000814pt;}
.y1c3{bottom:628.877848pt;}
.y17e{bottom:632.831746pt;}
.y109{bottom:638.774129pt;}
.y83{bottom:638.780529pt;}
.ya4{bottom:638.793370pt;}
.y197{bottom:638.799770pt;}
.y52{bottom:638.818970pt;}
.ye8{bottom:638.825370pt;}
.yc{bottom:640.724533pt;}
.y136{bottom:640.853353pt;}
.y1c2{bottom:640.877848pt;}
.y178{bottom:644.726400pt;}
.y1c1{bottom:652.877848pt;}
.y82{bottom:654.774129pt;}
.y111{bottom:654.780529pt;}
.ya3{bottom:654.786970pt;}
.y196{bottom:654.793370pt;}
.y51{bottom:654.812570pt;}
.ye7{bottom:654.818970pt;}
.yb{bottom:656.724533pt;}
.y138{bottom:659.869873pt;}
.y1f8{bottom:664.877848pt;}
.y131{bottom:669.591187pt;}
.ya2{bottom:670.780570pt;}
.y195{bottom:670.786970pt;}
.y81{bottom:670.793370pt;}
.y50{bottom:670.806170pt;}
.ye6{bottom:670.812570pt;}
.ya{bottom:672.724533pt;}
.y190{bottom:675.196672pt;}
.y1c0{bottom:676.877848pt;}
.ya1{bottom:686.774170pt;}
.yc9{bottom:686.780570pt;}
.y80{bottom:686.786970pt;}
.y4f{bottom:686.799770pt;}
.ye5{bottom:686.806170pt;}
.y1bf{bottom:688.877848pt;}
.y9{bottom:692.724533pt;}
.y18f{bottom:693.149219pt;}
.y1f7{bottom:700.877848pt;}
.yc8{bottom:702.774170pt;}
.y7f{bottom:702.780570pt;}
.ya0{bottom:702.786970pt;}
.y4e{bottom:702.793370pt;}
.ye4{bottom:702.799770pt;}
.y18e{bottom:711.090552pt;}
.y1be{bottom:712.877848pt;}
.y179{bottom:713.105305pt;}
.y108{bottom:718.774170pt;}
.y7e{bottom:718.780570pt;}
.y4d{bottom:718.786970pt;}
.ye3{bottom:718.793370pt;}
.y1a4{bottom:718.799770pt;}
.y132{bottom:719.409687pt;}
.y1bd{bottom:724.877848pt;}
.y13a{bottom:728.927083pt;}
.y18d{bottom:729.031885pt;}
.y181{bottom:730.583740pt;}
.y4c{bottom:734.780570pt;}
.ye2{bottom:734.786970pt;}
.y1a3{bottom:734.793370pt;}
.y107{bottom:734.799770pt;}
.y1f6{bottom:736.877848pt;}
.y13b{bottom:743.706512pt;}
.y18c{bottom:746.973218pt;}
.y1bc{bottom:748.877848pt;}
.y8{bottom:749.820547pt;}
.y4b{bottom:750.774170pt;}
.y9f{bottom:750.780570pt;}
.y1a2{bottom:750.786970pt;}
.y106{bottom:750.793370pt;}
.yc7{bottom:750.799770pt;}
.y182{bottom:757.744796pt;}
.y1bb{bottom:760.877848pt;}
.y18b{bottom:764.914551pt;}
.ye1{bottom:766.774170pt;}
.y7d{bottom:766.780570pt;}
.y105{bottom:766.786970pt;}
.yc6{bottom:766.793370pt;}
.y4a{bottom:766.806170pt;}
.y7{bottom:768.491213pt;}
.y133{bottom:769.228188pt;}
.y110{bottom:772.000651pt;}
.y1ba{bottom:772.877848pt;}
.y13f{bottom:776.569642pt;}
.y13c{bottom:780.947103pt;}
.y17a{bottom:781.495424pt;}
.y7c{bottom:782.780570pt;}
.yc5{bottom:782.786970pt;}
.y1a1{bottom:782.793370pt;}
.y49{bottom:782.799770pt;}
.ye0{bottom:782.806170pt;}
.y189{bottom:782.851440pt;}
.y1f5{bottom:784.874515pt;}
.y222{bottom:784.877848pt;}
.y1f4{bottom:796.874515pt;}
.y1b9{bottom:796.877848pt;}
.y13e{bottom:797.148682pt;}
.y104{bottom:798.774170pt;}
.y9e{bottom:798.780570pt;}
.y1a0{bottom:798.786970pt;}
.y48{bottom:798.793370pt;}
.ydf{bottom:798.799770pt;}
.y7b{bottom:798.818970pt;}
.y6{bottom:800.513360pt;}
.y188{bottom:800.803987pt;}
.y1f3{bottom:808.874515pt;}
.y1b8{bottom:808.877848pt;}
.y140{bottom:814.269300pt;}
.yc4{bottom:814.774170pt;}
.y9d{bottom:814.780570pt;}
.y47{bottom:814.786970pt;}
.yde{bottom:814.793370pt;}
.y7a{bottom:814.812570pt;}
.y103{bottom:814.851196pt;}
.y13d{bottom:816.647298pt;}
.y187{bottom:818.756533pt;}
.y134{bottom:819.057410pt;}
.y1f2{bottom:820.874515pt;}
.y221{bottom:820.877848pt;}
.yc3{bottom:830.774170pt;}
.y46{bottom:830.780570pt;}
.ydd{bottom:830.786970pt;}
.y19f{bottom:830.793370pt;}
.y79{bottom:830.806170pt;}
.y102{bottom:830.844796pt;}
.y1f1{bottom:832.874515pt;}
.y1b7{bottom:832.877848pt;}
.y5{bottom:835.169360pt;}
.y186{bottom:836.686653pt;}
.y1f0{bottom:844.874515pt;}
.y1b6{bottom:844.877848pt;}
.y45{bottom:846.774170pt;}
.ydc{bottom:846.780570pt;}
.y10f{bottom:846.786970pt;}
.y78{bottom:846.799770pt;}
.y101{bottom:846.838396pt;}
.y17b{bottom:849.874329pt;}
.y185{bottom:854.627986pt;}
.y1ef{bottom:856.874515pt;}
.y1b5{bottom:856.877848pt;}
.y9c{bottom:862.774170pt;}
.y44{bottom:862.780570pt;}
.y77{bottom:862.793370pt;}
.y100{bottom:862.831996pt;}
.y135{bottom:868.865194pt;}
.y1ee{bottom:868.874515pt;}
.y1b4{bottom:868.877848pt;}
.y4{bottom:869.825360pt;}
.y184{bottom:872.558105pt;}
.y43{bottom:878.774170pt;}
.y194{bottom:878.780570pt;}
.y76{bottom:878.786970pt;}
.ydb{bottom:878.793370pt;}
.yff{bottom:878.825596pt;}
.y1ed{bottom:880.874515pt;}
.y220{bottom:880.877848pt;}
.yc2{bottom:884.000651pt;}
.y183{bottom:890.937093pt;}
.y1ec{bottom:892.874515pt;}
.y1b3{bottom:892.877848pt;}
.y193{bottom:894.774170pt;}
.y42{bottom:894.780570pt;}
.y19e{bottom:894.780796pt;}
.y9b{bottom:894.786970pt;}
.yfe{bottom:894.819196pt;}
.yc1{bottom:900.000651pt;}
.y1eb{bottom:904.874515pt;}
.y1b2{bottom:904.877848pt;}
.y41{bottom:910.774170pt;}
.y19d{bottom:910.774396pt;}
.y9a{bottom:910.780570pt;}
.yfd{bottom:910.812796pt;}
.y1ea{bottom:916.874515pt;}
.y1b1{bottom:916.877848pt;}
.y3{bottom:918.544520pt;}
.y39{bottom:920.666827pt;}
.y75{bottom:926.767996pt;}
.y40{bottom:926.774170pt;}
.yfc{bottom:926.806396pt;}
.y1e9{bottom:928.874515pt;}
.y1b0{bottom:928.877848pt;}
.yc0{bottom:932.000651pt;}
.y2{bottom:988.708520pt;}
.y98{bottom:1001.355225pt;}
.y3e{bottom:1001.355306pt;}
.y3f{bottom:1001.707306pt;}
.y99{bottom:1001.711182pt;}
.y1{bottom:1001.711187pt;}
.h39{height:22.038069pt;}
.h10{height:24.724000pt;}
.h27{height:26.149152pt;}
.h2c{height:26.372267pt;}
.h30{height:26.681757pt;}
.h24{height:26.896373pt;}
.h32{height:28.086579pt;}
.h2d{height:31.597450pt;}
.hd{height:32.965333pt;}
.h37{height:33.056906pt;}
.h22{height:33.620564pt;}
.h14{height:34.757333pt;}
.hf{height:35.320000pt;}
.h41{height:35.333333pt;}
.h26{height:36.483269pt;}
.h31{height:36.687663pt;}
.h2f{height:36.688057pt;}
.h3a{height:36.729722pt;}
.h23{height:36.982463pt;}
.h34{height:37.674667pt;}
.h40{height:38.080000pt;}
.h3d{height:38.920000pt;}
.h3f{height:39.560000pt;}
.h3b{height:40.402930pt;}
.h3{height:40.618667pt;}
.h3e{height:40.724000pt;}
.h2{height:41.984000pt;}
.h3c{height:42.197333pt;}
.h2b{height:43.438388pt;}
.h33{height:43.438836pt;}
.h2a{height:44.827288pt;}
.h25{height:45.193671pt;}
.ha{height:47.093333pt;}
.h15{height:47.741866pt;}
.he{height:49.653333pt;}
.h12{height:49.678029pt;}
.hc{height:51.893333pt;}
.hb{height:54.298667pt;}
.h9{height:54.329067pt;}
.h18{height:55.484790pt;}
.h36{height:55.561590pt;}
.h16{height:55.587190pt;}
.h20{height:55.612058pt;}
.h19{height:55.612790pt;}
.h1a{height:55.612831pt;}
.h1f{height:55.612872pt;}
.h17{height:55.637658pt;}
.h21{height:55.638309pt;}
.h1b{height:55.638431pt;}
.h11{height:55.638472pt;}
.h1e{height:55.654015pt;}
.h1d{height:55.663258pt;}
.h35{height:55.663990pt;}
.h1c{height:55.664031pt;}
.h13{height:55.664072pt;}
.h28{height:56.042306pt;}
.h7{height:59.728320pt;}
.h8{height:59.744320pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h6{height:121.984000pt;}
.h2e{height:287.025330pt;}
.h29{height:303.630676pt;}
.h38{height:314.664001pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:311.811991pt;}
.w4{width:510.233317pt;}
.w2{width:642.520020pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:56.465861pt;}
.x1{left:75.496000pt;}
.x2{left:82.430533pt;}
.x3{left:84.162800pt;}
.x8{left:86.257202pt;}
.x3c{left:95.590535pt;}
.x28{left:98.476126pt;}
.x2b{left:128.283458pt;}
.x1f{left:131.717204pt;}
.x3a{left:142.233337pt;}
.x11{left:150.236003pt;}
.x36{left:152.936005pt;}
.x37{left:167.887045pt;}
.x27{left:174.566793pt;}
.x12{left:176.486190pt;}
.xf{left:186.134314pt;}
.xe{left:187.411622pt;}
.x2e{left:198.603201pt;}
.xd{left:202.534026pt;}
.x2a{left:205.628283pt;}
.x29{left:222.246541pt;}
.x4{left:240.726667pt;}
.xc{left:245.120809pt;}
.x19{left:256.977469pt;}
.x31{left:265.621451pt;}
.x2d{left:267.009874pt;}
.xa{left:275.498800pt;}
.x2c{left:283.628133pt;}
.xb{left:305.322937pt;}
.x33{left:317.852123pt;}
.x10{left:323.480143pt;}
.x30{left:328.830881pt;}
.x2f{left:344.836141pt;}
.x35{left:387.168122pt;}
.x32{left:390.202870pt;}
.x5{left:406.304800pt;}
.x26{left:414.799194pt;}
.x9{left:416.967221pt;}
.x3d{left:426.300527pt;}
.x20{left:427.418254pt;}
.x1a{left:437.365479pt;}
.x22{left:450.027588pt;}
.x21{left:454.592363pt;}
.x1c{left:463.266806pt;}
.x34{left:467.822917pt;}
.x1b{left:469.247599pt;}
.x1e{left:484.134399pt;}
.x3b{left:504.297587pt;}
.x38{left:530.565592pt;}
.x13{left:535.721476pt;}
.x39{left:551.184285pt;}
.x17{left:560.139839pt;}
.x14{left:562.444132pt;}
.x16{left:572.468140pt;}
.x15{left:593.241234pt;}
.x18{left:609.534617pt;}
.x6{left:617.715453pt;}
.x23{left:640.256795pt;}
.x25{left:649.369302pt;}
.x24{left:663.422119pt;}
.x7{left:669.671183pt;}
}




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