
    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_f1368a969d7e7fc92dc4cc19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_21dcf1cee62226adf21576a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_8acf37d80df1cf79afa199f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063477;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_e70de8f07d5ab449a6fcb8db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.774902;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_2af242783850c59ca296ad55.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_179a0cf333b392679780240e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_1701e6f518298eebd6158e92.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_88849553a69672019ef37e03.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_176dc7639c275c6a4070342a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766113;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_276498eb573009ca9fd8dcad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.859863;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_5124f9e2b99bdcbdb221aba6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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_1a223ba5a7222bd273e50f8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.835938;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_4d3ae17643543e8d3e88799b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_f619e02455150345ae5c4313.woff2')format("woff");}.fff{font-family:fff;line-height:1.063477;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_2a2ca8e13e59633bce766e11.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.063477;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_0d06230d980cff7b2b661002.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.435059;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:ff12;src:url('chunks/assets/font_4b15632247284180f9e81bfc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;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:ff13;src:url('chunks/assets/font_7000d14b77c8d99bb0154bab.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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:ff14;src:url('chunks/assets/font_4d3ae17643543e8d3e88799b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;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:ff15;src:url('chunks/assets/font_740de406a633fe004c9be3e0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.063477;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:ff16;src:url('chunks/assets/font_b759e7e15c7066ab5953e570.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.063477;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:ff17;src:url('chunks/assets/font_8c44aebd813ba92fab571e05.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.435059;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:ff18;src:url('chunks/assets/font_355e937dd49f8dda866ffa97.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.435059;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:ff19;src:url('chunks/assets/font_475dd04941f1597d84e1b346.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.402354;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:ff1a;src:url('chunks/assets/font_096346659dc20781eee32073.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.402354;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:ff1b;src:url('chunks/assets/font_19a6332b180148030368fbc6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.063477;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:ff1c;src:url('chunks/assets/font_b6096952944e8664d0c5bb7c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.063477;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:ff1d;src:url('chunks/assets/font_475dd04941f1597d84e1b346.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.402354;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);}
.v10{vertical-align:-49.260000px;}
.v3{vertical-align:-44.880000px;}
.va{vertical-align:-40.440000px;}
.v9{vertical-align:-37.860000px;}
.v8{vertical-align:-35.760000px;}
.v4{vertical-align:-33.720000px;}
.v7{vertical-align:-31.800000px;}
.v6{vertical-align:-30.240000px;}
.ve{vertical-align:-16.560000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:7.080000px;}
.v1{vertical-align:19.440000px;}
.vf{vertical-align:27.660000px;}
.v5{vertical-align:33.720000px;}
.vd{vertical-align:36.480000px;}
.v2{vertical-align:39.060000px;}
.vc{vertical-align:41.880000px;}
.lse{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.260400px;}
.ls5{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.lsd{letter-spacing:1.584000px;}
.ls8{letter-spacing:2.880000px;}
.ls11{letter-spacing:3.744000px;}
.ls15{letter-spacing:5.184000px;}
.ls18{letter-spacing:5.544000px;}
.ls14{letter-spacing:5.904000px;}
.ls13{letter-spacing:6.240000px;}
.ls17{letter-spacing:6.264000px;}
.ls1c{letter-spacing:6.840000px;}
.ls3{letter-spacing:6.960000px;}
.ls12{letter-spacing:7.416000px;}
.ls19{letter-spacing:10.584000px;}
.ls0{letter-spacing:27.504000px;}
.ls1d{letter-spacing:45.504000px;}
.ls9{letter-spacing:54.864000px;}
.ls20{letter-spacing:63.801360px;}
.ls1f{letter-spacing:69.984000px;}
.ls1e{letter-spacing:90.144000px;}
.ls1a{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(112,48,160),0 0.015em rgb(112,48,160),0.015em 0 rgb(112,48,160),0 -0.015em  rgb(112,48,160);}
.sc1{text-shadow:-0.015em 0 rgb(58,4,139),0 0.015em rgb(58,4,139),0.015em 0 rgb(58,4,139),0 -0.015em  rgb(58,4,139);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(112,48,160);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(58,4,139);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-84.240000px;}
.wsa{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws22{word-spacing:-20.970000px;}
.ws21{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.960000px;}
.ws1f{word-spacing:-15.264000px;}
.ws17{word-spacing:-15.240000px;}
.ws9{word-spacing:-15.200400px;}
.ws1a{word-spacing:-14.940000px;}
.wse{word-spacing:-14.845200px;}
.ws11{word-spacing:-13.505760px;}
.ws8{word-spacing:0.000000px;}
.ws1b{word-spacing:83.116320px;}
.ws16{word-spacing:83.649360px;}
.wsd{word-spacing:83.889360px;}
.ws19{word-spacing:93.297360px;}
.ws1c{word-spacing:95.723520px;}
.ws14{word-spacing:147.204960px;}
.ws13{word-spacing:156.533040px;}
.wsf{word-spacing:183.504960px;}
.ws18{word-spacing:198.833040px;}
.ws1d{word-spacing:231.357360px;}
.ws12{word-spacing:237.537600px;}
.ws15{word-spacing:239.155920px;}
.wsc{word-spacing:295.015920px;}
._37{margin-left:-194.040000px;}
._b{margin-left:-14.253120px;}
._19{margin-left:-11.664000px;}
._3d{margin-left:-6.864000px;}
._31{margin-left:-5.400000px;}
._33{margin-left:-3.792000px;}
._32{margin-left:-2.268000px;}
._7{margin-left:-1.010880px;}
._8{width:1.524000px;}
._a{width:2.808000px;}
._9{width:3.864000px;}
._4{width:5.652000px;}
._3{width:6.660000px;}
._5{width:7.884000px;}
._14{width:8.952000px;}
._10{width:9.984000px;}
._6{width:11.688000px;}
._c{width:13.392000px;}
._d{width:14.604000px;}
._f{width:15.984000px;}
._e{width:19.368000px;}
._34{width:20.448000px;}
._1c{width:21.448080px;}
._36{width:22.475760px;}
._1b{width:24.028080px;}
._20{width:25.128000px;}
._35{width:26.208000px;}
._40{width:27.528000px;}
._3f{width:28.704000px;}
._3a{width:35.640000px;}
._3b{width:37.296000px;}
._17{width:45.328080px;}
._13{width:48.868080px;}
._21{width:50.159760px;}
._16{width:60.328080px;}
._12{width:64.948080px;}
._3e{width:68.126880px;}
._39{width:74.112000px;}
._3c{width:78.348000px;}
._1a{width:91.497600px;}
._22{width:93.868080px;}
._15{width:98.582400px;}
._23{width:107.848080px;}
._2a{width:113.924640px;}
._2b{width:116.188080px;}
._24{width:123.088080px;}
._11{width:132.297600px;}
._1d{width:135.628080px;}
._25{width:139.828080px;}
._2c{width:142.828080px;}
._1e{width:155.668080px;}
._26{width:157.948080px;}
._27{width:177.988080px;}
._29{width:184.797600px;}
._2e{width:192.567120px;}
._38{width:194.400000px;}
._18{width:198.046800px;}
._28{width:203.997600px;}
._1f{width:213.498720px;}
._2d{width:216.608400px;}
._30{width:298.526880px;}
._2f{width:395.008080px;}
._1{width:481.320000px;}
._2{width:621.660000px;}
._0{width:764.940000px;}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(51,51,153);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(58,4,139);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:60.120000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:83.880000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:4.500000px;}
.y1e{bottom:4.680000px;}
.y37{bottom:5.565000px;}
.y43{bottom:5.580000px;}
.y1a0{bottom:5.610000px;}
.ycc{bottom:5.745000px;}
.y2b{bottom:5.760000px;}
.y22{bottom:6.480000px;}
.y41{bottom:6.660000px;}
.y1f{bottom:6.840000px;}
.yfd{bottom:8.850000px;}
.y21{bottom:9.000000px;}
.yb4{bottom:9.180000px;}
.y2d3{bottom:10.530000px;}
.y133{bottom:11.145000px;}
.ybd{bottom:11.160000px;}
.y32{bottom:12.225000px;}
.yc1{bottom:12.240000px;}
.y2f{bottom:12.405000px;}
.ya{bottom:12.420000px;}
.yaa{bottom:12.960000px;}
.y1c3{bottom:15.840000px;}
.y12f{bottom:16.005000px;}
.y181{bottom:16.020000px;}
.y120{bottom:16.050000px;}
.y12c{bottom:16.545000px;}
.y27{bottom:16.560000px;}
.y164{bottom:18.000000px;}
.y1e1{bottom:18.105000px;}
.y93{bottom:18.180000px;}
.y2d2{bottom:18.270000px;}
.y9{bottom:18.360000px;}
.y115{bottom:19.470000px;}
.y1e7{bottom:20.520000px;}
.yc5{bottom:23.400000px;}
.y139{bottom:23.430000px;}
.y3a{bottom:23.565000px;}
.y2c{bottom:23.580000px;}
.y28{bottom:25.020000px;}
.y12d{bottom:25.050000px;}
.y209{bottom:25.560000px;}
.y3{bottom:25.740000px;}
.y270{bottom:25.776000px;}
.yc4{bottom:25.920000px;}
.y138{bottom:25.950000px;}
.y1c4{bottom:25.965000px;}
.y36{bottom:26.085000px;}
.y2a{bottom:26.100000px;}
.y15a{bottom:26.640000px;}
.yfc{bottom:27.210000px;}
.y11f{bottom:27.825000px;}
.y24{bottom:29.520000px;}
.yb3{bottom:29.565000px;}
.y273{bottom:30.240000px;}
.y20e{bottom:30.330000px;}
.y25{bottom:30.420000px;}
.yb5{bottom:30.465000px;}
.y132{bottom:31.485000px;}
.ybc{bottom:31.500000px;}
.y15c{bottom:32.295000px;}
.y136{bottom:32.565000px;}
.yc0{bottom:32.610000px;}
.y2e{bottom:32.745000px;}
.yb9{bottom:32.940000px;}
.y134{bottom:34.545000px;}
.ybe{bottom:34.560000px;}
.y107{bottom:36.180000px;}
.y137{bottom:36.705000px;}
.yc2{bottom:36.750000px;}
.y33{bottom:36.885000px;}
.y30{bottom:37.065000px;}
.yba{bottom:37.080000px;}
.ya9{bottom:39.420000px;}
.y2{bottom:42.120000px;}
.y26f{bottom:42.156000px;}
.y38{bottom:43.905000px;}
.y153{bottom:46.155000px;}
.y11e{bottom:46.185000px;}
.y35{bottom:46.425000px;}
.y19c{bottom:46.440000px;}
.y1c1{bottom:46.620000px;}
.yf5{bottom:46.725000px;}
.y1fb{bottom:49.755000px;}
.y6f{bottom:50.220000px;}
.y180{bottom:51.120000px;}
.y206{bottom:53.100000px;}
.y8{bottom:54.000000px;}
.y20d{bottom:54.090000px;}
.y88{bottom:57.420000px;}
.ya2{bottom:58.935000px;}
.y117{bottom:65.670000px;}
.y15d{bottom:65.775000px;}
.y1da{bottom:65.850000px;}
.y1e4{bottom:66.960000px;}
.y1f4{bottom:69.270000px;}
.y68{bottom:69.735000px;}
.y179{bottom:70.635000px;}
.y1fd{bottom:72.570000px;}
.y108{bottom:73.470000px;}
.y1d9{bottom:75.090000px;}
.y7{bottom:89.820000px;}
.yf6{bottom:90.285000px;}
.y1af{bottom:91.440000px;}
.y89{bottom:93.390000px;}
.y15e{bottom:93.705000px;}
.y1fe{bottom:94.215000px;}
.ya3{bottom:96.990000px;}
.y118{bottom:100.515000px;}
.y1f5{bottom:102.210000px;}
.y17a{bottom:102.450000px;}
.y154{bottom:102.855000px;}
.y69{bottom:103.785000px;}
.y109{bottom:109.050000px;}
.y1ff{bottom:115.845000px;}
.y1a8{bottom:116.175000px;}
.y1d8{bottom:118.800000px;}
.y15f{bottom:121.650000px;}
.y3e{bottom:124.920000px;}
.y6{bottom:125.460000px;}
.y2d6{bottom:125.550000px;}
.y20c{bottom:125.580000px;}
.y1a6{bottom:125.820000px;}
.y8a{bottom:126.330000px;}
.y62{bottom:128.625000px;}
.y14a{bottom:130.320000px;}
.yd6{bottom:130.860000px;}
.y3d{bottom:131.760000px;}
.yee{bottom:132.090000px;}
.ya0{bottom:132.480000px;}
.yf7{bottom:133.845000px;}
.y17b{bottom:134.250000px;}
.y263{bottom:134.460000px;}
.y1f2{bottom:134.640000px;}
.ya4{bottom:135.030000px;}
.y2fb{bottom:135.090000px;}
.y1a9{bottom:135.105000px;}
.y1f6{bottom:135.150000px;}
.y119{bottom:135.360000px;}
.y18d{bottom:136.080000px;}
.y200{bottom:137.490000px;}
.y6a{bottom:137.880000px;}
.y1a5{bottom:138.240000px;}
.y298{bottom:139.176000px;}
.y235{bottom:139.230000px;}
.y1a7{bottom:139.680000px;}
.y1d2{bottom:139.860000px;}
.y3c{bottom:142.200000px;}
.y149{bottom:142.740000px;}
.y1b4{bottom:142.815000px;}
.y1d4{bottom:143.640000px;}
.y10a{bottom:144.645000px;}
.y15b{bottom:145.260000px;}
.y1f1{bottom:147.060000px;}
.y5f{bottom:147.600000px;}
.y1fc{bottom:148.320000px;}
.y18c{bottom:148.500000px;}
.y160{bottom:149.580000px;}
.yd5{bottom:151.200000px;}
.y9f{bottom:153.000000px;}
.y105{bottom:153.540000px;}
.y1aa{bottom:154.230000px;}
.y2d0{bottom:154.830000px;}
.y262{bottom:154.890000px;}
.yf2{bottom:154.950000px;}
.y2fa{bottom:155.520000px;}
.y2b4{bottom:158.250000px;}
.y1d1{bottom:158.940000px;}
.y201{bottom:159.090000px;}
.y8b{bottom:159.300000px;}
.y155{bottom:159.555000px;}
.y234{bottom:159.660000px;}
.y297{bottom:159.690000px;}
.y20b{bottom:161.220000px;}
.y272{bottom:161.280000px;}
.y2d5{bottom:161.310000px;}
.y1ba{bottom:161.640000px;}
.y177{bottom:162.570000px;}
.y64{bottom:162.690000px;}
.y3b{bottom:164.745000px;}
.yf0{bottom:165.810000px;}
.y17c{bottom:166.065000px;}
.y1f7{bottom:168.090000px;}
.y11a{bottom:170.205000px;}
.yd4{bottom:171.750000px;}
.y6b{bottom:171.930000px;}
.y9e{bottom:172.290000px;}
.ya5{bottom:173.130000px;}
.y1ab{bottom:173.595000px;}
.y104{bottom:173.910000px;}
.y1b3{bottom:174.240000px;}
.y1b1{bottom:174.930000px;}
.y261{bottom:175.230000px;}
.y2cf{bottom:175.350000px;}
.y2f9{bottom:175.950000px;}
.y1b7{bottom:176.430000px;}
.y66{bottom:177.300000px;}
.yf8{bottom:177.405000px;}
.y161{bottom:177.510000px;}
.y1d5{bottom:177.915000px;}
.y2b3{bottom:178.770000px;}
.y86{bottom:178.950000px;}
.y1b9{bottom:179.250000px;}
.y1d0{bottom:179.490000px;}
.y135{bottom:179.505000px;}
.y5e{bottom:179.670000px;}
.y233{bottom:180.000000px;}
.y296{bottom:180.030000px;}
.y10b{bottom:180.210000px;}
.y202{bottom:180.720000px;}
.y176{bottom:182.910000px;}
.y1dc{bottom:183.960000px;}
.y9d{bottom:184.710000px;}
.y151{bottom:185.970000px;}
.yd3{bottom:192.090000px;}
.y8c{bottom:192.240000px;}
.y1ac{bottom:193.170000px;}
.y103{bottom:193.350000px;}
.y1b5{bottom:193.710000px;}
.y260{bottom:195.660000px;}
.y2ce{bottom:195.690000px;}
.y1df{bottom:195.765000px;}
.y2f8{bottom:196.290000px;}
.y14d{bottom:197.310000px;}
.y17d{bottom:197.850000px;}
.y26e{bottom:199.080000px;}
.y2b2{bottom:199.110000px;}
.y85{bottom:199.470000px;}
.y1cf{bottom:199.830000px;}
.y5d{bottom:200.010000px;}
.y232{bottom:200.430000px;}
.y295{bottom:200.550000px;}
.y1f8{bottom:201.060000px;}
.yf1{bottom:202.350000px;}
.y175{bottom:203.430000px;}
.y11b{bottom:205.020000px;}
.y162{bottom:205.455000px;}
.y102{bottom:205.770000px;}
.y6c{bottom:205.995000px;}
.y39{bottom:206.325000px;}
.y116{bottom:207.180000px;}
.ya6{bottom:211.170000px;}
.yd2{bottom:212.430000px;}
.y1ad{bottom:212.970000px;}
.y1d6{bottom:213.015000px;}
.y10c{bottom:215.820000px;}
.y2cd{bottom:216.030000px;}
.y25f{bottom:216.120000px;}
.y156{bottom:216.255000px;}
.y2f7{bottom:217.650000px;}
.y2b1{bottom:219.450000px;}
.y26d{bottom:219.540000px;}
.y1b0{bottom:219.600000px;}
.y84{bottom:219.810000px;}
.y1ce{bottom:220.170000px;}
.y5c{bottom:220.530000px;}
.y231{bottom:220.890000px;}
.yf9{bottom:221.010000px;}
.y174{bottom:221.070000px;}
.y1b2{bottom:221.580000px;}
.y203{bottom:223.950000px;}
.y1b6{bottom:224.850000px;}
.y8d{bottom:225.180000px;}
.y1bb{bottom:226.695000px;}
.y17e{bottom:229.680000px;}
.y14f{bottom:231.330000px;}
.y1db{bottom:231.690000px;}
.yd1{bottom:232.950000px;}
.y1ae{bottom:233.025000px;}
.y163{bottom:233.385000px;}
.y1f9{bottom:234.000000px;}
.y131{bottom:234.405000px;}
.y65{bottom:235.695000px;}
.yed{bottom:236.055000px;}
.y173{bottom:236.550000px;}
.y1b8{bottom:237.315000px;}
.y11c{bottom:239.865000px;}
.y26c{bottom:239.970000px;}
.y6d{bottom:240.090000px;}
.y83{bottom:240.150000px;}
.y2f6{bottom:240.600000px;}
.y5b{bottom:240.870000px;}
.y294{bottom:241.230000px;}
.y230{bottom:241.320000px;}
.y1dd{bottom:241.815000px;}
.y204{bottom:245.595000px;}
.y34{bottom:247.905000px;}
.y1d7{bottom:248.970000px;}
.ya7{bottom:249.225000px;}
.y10d{bottom:251.385000px;}
.y172{bottom:252.030000px;}
.yd0{bottom:253.290000px;}
.y150{bottom:254.010000px;}
.y61{bottom:255.165000px;}
.y25e{bottom:256.890000px;}
.y8e{bottom:258.150000px;}
.y1cd{bottom:258.690000px;}
.y1e0{bottom:259.125000px;}
.y26b{bottom:260.310000px;}
.y82{bottom:260.670000px;}
.y2f5{bottom:261.030000px;}
.y1de{bottom:261.210000px;}
.y5a{bottom:261.390000px;}
.y17f{bottom:261.510000px;}
.y22f{bottom:261.660000px;}
.y293{bottom:261.750000px;}
.yfa{bottom:264.570000px;}
.y67{bottom:264.885000px;}
.y1fa{bottom:266.940000px;}
.y205{bottom:267.225000px;}
.y171{bottom:269.310000px;}
.y63{bottom:269.745000px;}
.y157{bottom:272.955000px;}
.ycf{bottom:273.630000px;}
.y6e{bottom:274.140000px;}
.y11d{bottom:274.710000px;}
.y25d{bottom:277.320000px;}
.y2cc{bottom:277.410000px;}
.y26a{bottom:280.740000px;}
.y2b0{bottom:280.875000px;}
.y81{bottom:281.010000px;}
.y207{bottom:281.235000px;}
.y2f4{bottom:281.370000px;}
.y59{bottom:281.730000px;}
.y22e{bottom:282.090000px;}
.y292{bottom:282.135000px;}
.yef{bottom:285.450000px;}
.y130{bottom:286.965000px;}
.y10e{bottom:286.995000px;}
.ya8{bottom:287.280000px;}
.y8f{bottom:291.090000px;}
.yce{bottom:294.150000px;}
.y1cc{bottom:297.030000px;}
.y25c{bottom:297.750000px;}
.y2cb{bottom:297.795000px;}
.yf4{bottom:297.900000px;}
.y269{bottom:301.170000px;}
.y2af{bottom:301.215000px;}
.y80{bottom:301.350000px;}
.y2f3{bottom:301.800000px;}
.y58{bottom:302.070000px;}
.y291{bottom:302.475000px;}
.y22d{bottom:302.520000px;}
.yf3{bottom:303.510000px;}
.yfb{bottom:308.130000px;}
.y31{bottom:309.825000px;}
.y14c{bottom:310.710000px;}
.ycd{bottom:313.950000px;}
.y2ca{bottom:318.135000px;}
.y25b{bottom:318.180000px;}
.y2ae{bottom:321.555000px;}
.y268{bottom:321.600000px;}
.y7f{bottom:321.870000px;}
.y2f2{bottom:322.230000px;}
.y10f{bottom:322.560000px;}
.y57{bottom:322.590000px;}
.y22c{bottom:322.950000px;}
.y290{bottom:322.995000px;}
.y90{bottom:324.030000px;}
.y158{bottom:329.655000px;}
.y1cb{bottom:333.210000px;}
.y152{bottom:333.390000px;}
.ycb{bottom:333.765000px;}
.y25a{bottom:338.520000px;}
.y2c9{bottom:338.655000px;}
.y267{bottom:341.940000px;}
.y12e{bottom:342.045000px;}
.y2ad{bottom:342.075000px;}
.y7e{bottom:342.210000px;}
.y2f1{bottom:342.660000px;}
.y56{bottom:342.930000px;}
.y22b{bottom:343.290000px;}
.y28f{bottom:343.335000px;}
.y14e{bottom:344.730000px;}
.y1ca{bottom:351.570000px;}
.yeb{bottom:352.290000px;}
.y91{bottom:357.015000px;}
.y110{bottom:358.170000px;}
.y259{bottom:358.950000px;}
.y2c8{bottom:358.995000px;}
.y266{bottom:362.370000px;}
.y2ac{bottom:362.415000px;}
.y7d{bottom:362.730000px;}
.y2f0{bottom:363.000000px;}
.y55{bottom:363.270000px;}
.y22a{bottom:363.720000px;}
.y28e{bottom:363.855000px;}
.y1c9{bottom:363.990000px;}
.y2d{bottom:364.725000px;}
.y1d3{bottom:366.120000px;}
.yea{bottom:372.630000px;}
.yca{bottom:375.345000px;}
.y258{bottom:379.380000px;}
.y2c7{bottom:379.515000px;}
.y2ab{bottom:382.755000px;}
.y265{bottom:382.800000px;}
.y7c{bottom:383.070000px;}
.y2ef{bottom:383.430000px;}
.y54{bottom:383.790000px;}
.y12b{bottom:383.805000px;}
.y229{bottom:384.150000px;}
.y28d{bottom:384.195000px;}
.y159{bottom:386.355000px;}
.y92{bottom:389.955000px;}
.ye9{bottom:393.150000px;}
.y111{bottom:393.735000px;}
.y2c6{bottom:399.855000px;}
.y257{bottom:400.710000px;}
.y264{bottom:403.230000px;}
.y2aa{bottom:403.275000px;}
.y7b{bottom:403.410000px;}
.y53{bottom:404.130000px;}
.y28c{bottom:404.535000px;}
.y228{bottom:404.580000px;}
.y2ee{bottom:404.760000px;}
.ye8{bottom:413.535000px;}
.yc9{bottom:416.955000px;}
.y29{bottom:419.835000px;}
.y2c5{bottom:420.195000px;}
.y256{bottom:423.570000px;}
.y2a9{bottom:423.615000px;}
.y7a{bottom:423.975000px;}
.y52{bottom:424.695000px;}
.y227{bottom:424.920000px;}
.y28b{bottom:425.055000px;}
.y12a{bottom:426.855000px;}
.y148{bottom:427.395000px;}
.y2ed{bottom:427.620000px;}
.y112{bottom:429.330000px;}
.y1a4{bottom:430.095000px;}
.ye7{bottom:433.875000px;}
.y2c4{bottom:440.715000px;}
.y255{bottom:444.000000px;}
.y2a8{bottom:444.135000px;}
.y79{bottom:444.315000px;}
.y51{bottom:445.035000px;}
.y226{bottom:445.350000px;}
.y28a{bottom:445.395000px;}
.y1a3{bottom:447.375000px;}
.y147{bottom:447.735000px;}
.y2ec{bottom:448.050000px;}
.ye6{bottom:454.395000px;}
.yc8{bottom:458.535000px;}
.y2c3{bottom:461.055000px;}
.y26{bottom:461.595000px;}
.y78{bottom:463.755000px;}
.y254{bottom:464.430000px;}
.y2a7{bottom:464.475000px;}
.y113{bottom:464.910000px;}
.y50{bottom:465.375000px;}
.y289{bottom:465.735000px;}
.y225{bottom:465.780000px;}
.y146{bottom:468.255000px;}
.y2eb{bottom:471.180000px;}
.y1f0{bottom:472.215000px;}
.y129{bottom:475.275000px;}
.y77{bottom:476.175000px;}
.y87{bottom:477.360000px;}
.y2c2{bottom:481.395000px;}
.y2a6{bottom:484.815000px;}
.y253{bottom:484.860000px;}
.y4f{bottom:485.895000px;}
.y224{bottom:486.210000px;}
.y288{bottom:486.255000px;}
.y145{bottom:488.595000px;}
.y2ea{bottom:491.610000px;}
.y1ef{bottom:492.555000px;}
.ye5{bottom:492.735000px;}
.y128{bottom:499.755000px;}
.yc7{bottom:500.115000px;}
.y114{bottom:500.505000px;}
.y2c1{bottom:501.915000px;}
.y23{bottom:504.615000px;}
.y252{bottom:505.200000px;}
.y2a5{bottom:505.335000px;}
.y4e{bottom:506.235000px;}
.y223{bottom:506.550000px;}
.y287{bottom:506.595000px;}
.y144{bottom:508.935000px;}
.y101{bottom:510.735000px;}
.y2e9{bottom:512.040000px;}
.y1ee{bottom:513.075000px;}
.ye4{bottom:513.255000px;}
.y2c0{bottom:522.255000px;}
.y1a2{bottom:523.515000px;}
.y251{bottom:525.630000px;}
.y4d{bottom:525.675000px;}
.y222{bottom:526.980000px;}
.y286{bottom:527.115000px;}
.y143{bottom:529.455000px;}
.y18b{bottom:529.995000px;}
.y100{bottom:531.075000px;}
.y1ed{bottom:531.255000px;}
.y127{bottom:531.795000px;}
.y2e8{bottom:532.470000px;}
.ye3{bottom:533.595000px;}
.y4c{bottom:538.095000px;}
.y60{bottom:540.540000px;}
.yc6{bottom:541.695000px;}
.y2bf{bottom:542.775000px;}
.y2a4{bottom:546.015000px;}
.y250{bottom:546.060000px;}
.y221{bottom:547.410000px;}
.y285{bottom:547.455000px;}
.y1ec{bottom:548.355000px;}
.y142{bottom:549.795000px;}
.y18a{bottom:550.335000px;}
.yff{bottom:550.515000px;}
.y126{bottom:552.135000px;}
.y2e7{bottom:552.810000px;}
.y20{bottom:553.035000px;}
.ye2{bottom:553.935000px;}
.yfe{bottom:562.935000px;}
.y2be{bottom:563.145000px;}
.y106{bottom:564.120000px;}
.y24f{bottom:566.490000px;}
.y2a3{bottom:566.565000px;}
.y1eb{bottom:566.895000px;}
.y284{bottom:567.825000px;}
.y220{bottom:567.840000px;}
.y141{bottom:570.315000px;}
.y189{bottom:570.675000px;}
.y2e6{bottom:573.240000px;}
.ye1{bottom:574.455000px;}
.y1d{bottom:577.515000px;}
.y1ea{bottom:579.315000px;}
.y1f3{bottom:581.760000px;}
.yc3{bottom:583.275000px;}
.y2bd{bottom:583.485000px;}
.y1a1{bottom:585.435000px;}
.y24e{bottom:586.830000px;}
.y2a2{bottom:586.905000px;}
.y21f{bottom:588.270000px;}
.y283{bottom:588.345000px;}
.y170{bottom:589.215000px;}
.y125{bottom:590.475000px;}
.y140{bottom:590.655000px;}
.y188{bottom:591.195000px;}
.y2e5{bottom:594.570000px;}
.ye0{bottom:594.795000px;}
.y2bc{bottom:604.005000px;}
.y16f{bottom:606.495000px;}
.y1c{bottom:607.035000px;}
.y24d{bottom:607.260000px;}
.y2a1{bottom:607.425000px;}
.y21e{bottom:608.610000px;}
.y282{bottom:608.685000px;}
.y13f{bottom:609.915000px;}
.y124{bottom:610.995000px;}
.y187{bottom:611.535000px;}
.ydf{bottom:615.315000px;}
.y2e4{bottom:617.520000px;}
.y13e{bottom:622.515000px;}
.y2bb{bottom:624.345000px;}
.y16e{bottom:624.675000px;}
.y14b{bottom:624.780000px;}
.ybf{bottom:624.855000px;}
.y24c{bottom:627.690000px;}
.y1b{bottom:627.735000px;}
.y2a0{bottom:627.765000px;}
.y21d{bottom:629.040000px;}
.y281{bottom:629.205000px;}
.y123{bottom:631.335000px;}
.y186{bottom:631.875000px;}
.yde{bottom:635.655000px;}
.y16d{bottom:637.095000px;}
.y2e3{bottom:637.890000px;}
.y178{bottom:639.540000px;}
.y9c{bottom:643.935000px;}
.y2ba{bottom:644.685000px;}
.y19f{bottom:647.535000px;}
.y1a{bottom:648.075000px;}
.y29f{bottom:648.105000px;}
.y24b{bottom:648.150000px;}
.y21c{bottom:649.500000px;}
.y280{bottom:649.545000px;}
.y122{bottom:650.805000px;}
.y185{bottom:652.425000px;}
.ydd{bottom:656.025000px;}
.y2e2{bottom:658.320000px;}
.y9b{bottom:661.965000px;}
.y121{bottom:663.225000px;}
.y2b9{bottom:665.205000px;}
.y24a{bottom:668.490000px;}
.y19{bottom:668.625000px;}
.y27f{bottom:669.885000px;}
.y21b{bottom:669.930000px;}
.y184{bottom:670.965000px;}
.ydc{bottom:676.545000px;}
.y2e1{bottom:678.750000px;}
.ybb{bottom:679.785000px;}
.y9a{bottom:682.485000px;}
.y2b8{bottom:685.545000px;}
.y249{bottom:688.920000px;}
.y18{bottom:688.965000px;}
.y19e{bottom:689.145000px;}
.y1c8{bottom:689.325000px;}
.y21a{bottom:690.270000px;}
.y27e{bottom:690.405000px;}
.ydb{bottom:696.885000px;}
.y2e0{bottom:699.180000px;}
.y183{bottom:701.385000px;}
.y99{bottom:702.825000px;}
.y1c7{bottom:704.805000px;}
.y2b7{bottom:706.065000px;}
.y17{bottom:709.305000px;}
.y248{bottom:709.350000px;}
.y219{bottom:710.700000px;}
.y27d{bottom:710.745000px;}
.yda{bottom:715.425000px;}
.y2df{bottom:719.520000px;}
.y98{bottom:723.165000px;}
.y2b6{bottom:726.405000px;}
.y247{bottom:729.780000px;}
.y16{bottom:729.825000px;}
.y19d{bottom:730.545000px;}
.y27c{bottom:731.085000px;}
.y218{bottom:731.130000px;}
.yb8{bottom:732.345000px;}
.yd9{bottom:733.425000px;}
.y2de{bottom:739.950000px;}
.y97{bottom:743.685000px;}
.yd8{bottom:746.025000px;}
.y2b5{bottom:747.645000px;}
.yec{bottom:748.260000px;}
.y246{bottom:750.120000px;}
.y15{bottom:750.165000px;}
.y217{bottom:751.560000px;}
.y27b{bottom:751.605000px;}
.y19b{bottom:751.785000px;}
.y2dd{bottom:760.380000px;}
.y96{bottom:762.945000px;}
.y1c6{bottom:766.725000px;}
.y245{bottom:770.550000px;}
.y14{bottom:770.685000px;}
.y216{bottom:770.910000px;}
.y27a{bottom:771.045000px;}
.y95{bottom:780.045000px;}
.y2dc{bottom:780.810000px;}
.yb7{bottom:787.425000px;}
.y244{bottom:790.980000px;}
.y12{bottom:791.025000px;}
.y94{bottom:792.465000px;}
.ya1{bottom:794.880000px;}
.y13{bottom:795.525000px;}
.y279{bottom:796.065000px;}
.y215{bottom:796.110000px;}
.y2db{bottom:801.150000px;}
.y11{bottom:811.365000px;}
.y243{bottom:811.410000px;}
.y19a{bottom:813.705000px;}
.y214{bottom:816.450000px;}
.y278{bottom:816.585000px;}
.y2da{bottom:821.580000px;}
.y1c5{bottom:828.825000px;}
.yb6{bottom:829.185000px;}
.y242{bottom:831.750000px;}
.y10{bottom:831.885000px;}
.y213{bottom:836.880000px;}
.y277{bottom:836.925000px;}
.y199{bottom:838.725000px;}
.y2d9{bottom:842.010000px;}
.y241{bottom:852.180000px;}
.yf{bottom:852.225000px;}
.y29e{bottom:852.270000px;}
.y212{bottom:857.310000px;}
.y198{bottom:857.805000px;}
.y2d8{bottom:862.440000px;}
.y4b{bottom:865.725000px;}
.y1c2{bottom:870.405000px;}
.yb2{bottom:872.205000px;}
.ye{bottom:872.565000px;}
.y240{bottom:872.610000px;}
.y1e9{bottom:872.925000px;}
.y211{bottom:877.740000px;}
.y276{bottom:877.830000px;}
.y197{bottom:878.145000px;}
.y2d7{bottom:882.780000px;}
.y4a{bottom:884.985000px;}
.y1e8{bottom:890.205000px;}
.y23f{bottom:893.040000px;}
.yd{bottom:893.085000px;}
.y29d{bottom:893.130000px;}
.y2d4{bottom:897.630000px;}
.y210{bottom:898.080000px;}
.y275{bottom:898.170000px;}
.y1e5{bottom:904.830000px;}
.y76{bottom:905.190000px;}
.y49{bottom:905.370000px;}
.y1c0{bottom:911.850000px;}
.yc{bottom:913.470000px;}
.y196{bottom:916.710000px;}
.y20f{bottom:918.510000px;}
.y274{bottom:918.690000px;}
.yb1{bottom:920.670000px;}
.y1e6{bottom:925.350000px;}
.y48{bottom:925.890000px;}
.y20a{bottom:933.360000px;}
.y271{bottom:933.450000px;}
.y23e{bottom:933.810000px;}
.yb{bottom:933.990000px;}
.y75{bottom:934.710000px;}
.y195{bottom:937.050000px;}
.y16c{bottom:939.750000px;}
.yb0{bottom:945.150000px;}
.y47{bottom:946.230000px;}
.y5{bottom:948.750000px;}
.y23d{bottom:954.240000px;}
.y29c{bottom:954.330000px;}
.y194{bottom:957.570000px;}
.y16b{bottom:960.090000px;}
.y46{bottom:966.570000px;}
.y74{bottom:966.930000px;}
.y1bf{bottom:973.950000px;}
.y23c{bottom:974.670000px;}
.yaf{bottom:977.190000px;}
.y193{bottom:977.910000px;}
.y16a{bottom:980.610000px;}
.y45{bottom:987.090000px;}
.y2fd{bottom:989.160000px;}
.y23b{bottom:995.100000px;}
.y29b{bottom:995.190000px;}
.yae{bottom:997.530000px;}
.y192{bottom:998.250000px;}
.y73{bottom:999.150000px;}
.y1be{bottom:1000.770000px;}
.y169{bottom:1000.950000px;}
.y44{bottom:1002.570000px;}
.y1e3{bottom:1008.330000px;}
.y2fc{bottom:1012.920000px;}
.y23a{bottom:1015.440000px;}
.y29a{bottom:1015.530000px;}
.yad{bottom:1018.050000px;}
.y191{bottom:1018.770000px;}
.y1bd{bottom:1021.110000px;}
.y72{bottom:1031.370000px;}
.y13d{bottom:1033.530000px;}
.y239{bottom:1035.870000px;}
.y299{bottom:1036.050000px;}
.y182{bottom:1038.570000px;}
.y190{bottom:1039.110000px;}
.y168{bottom:1039.290000px;}
.y42{bottom:1044.150000px;}
.y13c{bottom:1052.610000px;}
.y238{bottom:1056.330000px;}
.yac{bottom:1056.390000px;}
.y18f{bottom:1059.450000px;}
.y167{bottom:1059.810000px;}
.y71{bottom:1063.590000px;}
.y13b{bottom:1073.130000px;}
.y2d1{bottom:1076.310000px;}
.yab{bottom:1076.730000px;}
.y237{bottom:1076.760000px;}
.y18e{bottom:1079.970000px;}
.y166{bottom:1080.150000px;}
.y3f{bottom:1085.730000px;}
.y1e2{bottom:1090.770000px;}
.y13a{bottom:1092.930000px;}
.y70{bottom:1095.810000px;}
.y236{bottom:1097.100000px;}
.y4{bottom:1097.250000px;}
.y1bc{bottom:1098.150000px;}
.yd7{bottom:1098.510000px;}
.y165{bottom:1099.590000px;}
.y208{bottom:1111.950000px;}
.y1{bottom:1112.010000px;}
.h42{height:2.527031px;}
.h3b{height:20.325000px;}
.h34{height:20.520000px;}
.hd{height:23.745000px;}
.h16{height:25.365000px;}
.hb{height:25.545000px;}
.h3{height:31.587891px;}
.h50{height:35.640000px;}
.h15{height:38.158594px;}
.h23{height:40.665000px;}
.h36{height:40.680000px;}
.h3d{height:40.702500px;}
.h37{height:40.710000px;}
.h2e{height:40.716000px;}
.h19{height:40.764023px;}
.h11{height:40.845000px;}
.h1f{height:40.860000px;}
.h24{height:40.881000px;}
.h10{height:42.285000px;}
.h1e{height:42.300000px;}
.h2a{height:42.321000px;}
.h9{height:42.327773px;}
.ha{height:45.403594px;}
.he{height:47.685000px;}
.h1d{height:47.722500px;}
.h39{height:47.844023px;}
.h2c{height:51.825000px;}
.h21{height:51.840000px;}
.h17{height:52.435898px;}
.h33{height:52.998047px;}
.h2d{height:53.985000px;}
.h22{height:54.030000px;}
.h13{height:54.165000px;}
.h2b{height:54.345000px;}
.h20{height:54.360000px;}
.h12{height:54.381000px;}
.h31{height:56.214844px;}
.h2{height:58.651172px;}
.h14{height:61.185000px;}
.h35{height:61.200000px;}
.h3c{height:61.365000px;}
.h4c{height:61.423863px;}
.h46{height:61.793886px;}
.h29{height:62.211094px;}
.h4{height:63.175781px;}
.hc{height:64.002656px;}
.h40{height:68.424023px;}
.h48{height:73.599785px;}
.h6{height:73.915664px;}
.hf{height:74.004654px;}
.h26{height:74.484023px;}
.h4b{height:74.953125px;}
.h3f{height:77.244023px;}
.h41{height:81.705000px;}
.h3a{height:82.644023px;}
.h7{height:82.676953px;}
.h49{height:86.215422px;}
.h4e{height:86.585445px;}
.h4a{height:87.320391px;}
.h4f{height:87.695156px;}
.h45{height:89.068359px;}
.h1a{height:118.704023px;}
.h5{height:142.725000px;}
.h4d{height:178.545000px;}
.h47{height:178.590000px;}
.h51{height:178.680000px;}
.h30{height:276.660000px;}
.h38{height:286.740000px;}
.h43{height:287.820000px;}
.h32{height:294.660000px;}
.h28{height:297.900000px;}
.h1c{height:317.160000px;}
.h3e{height:317.520000px;}
.h44{height:318.420000px;}
.h18{height:321.660000px;}
.h25{height:346.500000px;}
.h2f{height:405.000000px;}
.h1b{height:424.080000px;}
.h27{height:547.920000px;}
.h8{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:53.265000px;}
.w7{width:53.301000px;}
.w19{width:217.635000px;}
.w18{width:233.115000px;}
.w17{width:243.930000px;}
.w16{width:254.413500px;}
.w3{width:264.435000px;}
.w1d{width:269.310000px;}
.w1f{width:269.340000px;}
.w11{width:307.635000px;}
.w12{width:307.695000px;}
.w14{width:337.575000px;}
.w13{width:341.533500px;}
.w1b{width:426.240000px;}
.w8{width:471.844500px;}
.w5{width:472.384500px;}
.w1a{width:472.500000px;}
.w2{width:474.763500px;}
.w1c{width:497.218500px;}
.w1e{width:497.263500px;}
.w15{width:527.400000px;}
.wf{width:567.000000px;}
.we{width:577.080000px;}
.wc{width:606.240000px;}
.wd{width:619.920000px;}
.w9{width:621.000000px;}
.wa{width:640.080000px;}
.wb{width:648.000000px;}
.w10{width:651.240000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x49{left:2.340000px;}
.x3d{left:6.336000px;}
.xd{left:8.089500px;}
.x88{left:9.930000px;}
.x5a{left:11.910000px;}
.x28{left:14.295000px;}
.xf{left:17.985000px;}
.x14{left:20.685000px;}
.x29{left:21.885000px;}
.x59{left:23.250000px;}
.x32{left:24.829500px;}
.x11{left:26.805000px;}
.x4{left:28.474500px;}
.x6d{left:30.525000px;}
.x7c{left:32.970000px;}
.x15{left:34.549500px;}
.x31{left:38.235000px;}
.x8c{left:39.778500px;}
.x3e{left:42.120000px;}
.x4a{left:43.305000px;}
.x84{left:44.820000px;}
.x30{left:49.575000px;}
.x36{left:52.230000px;}
.x63{left:53.460000px;}
.x93{left:54.988500px;}
.x91{left:56.194500px;}
.x23{left:58.065000px;}
.x8b{left:59.581500px;}
.x5b{left:61.665000px;}
.x47{left:66.060000px;}
.x1c{left:68.145000px;}
.x27{left:71.250000px;}
.x8a{left:73.335000px;}
.x5d{left:74.985000px;}
.x3{left:77.041500px;}
.x5{left:78.508500px;}
.x6a{left:80.805000px;}
.x6e{left:81.870000px;}
.x1{left:84.960000px;}
.x8d{left:86.068500px;}
.x4b{left:87.765000px;}
.x17{left:89.820000px;}
.x64{left:91.005000px;}
.x89{left:92.085000px;}
.x4c{left:94.245000px;}
.x76{left:96.121500px;}
.x37{left:97.350000px;}
.x78{left:99.210000px;}
.x7e{left:100.260000px;}
.xc{left:102.106500px;}
.x94{left:108.388500px;}
.x1a{left:111.996000px;}
.x48{left:116.280000px;}
.x62{left:120.240000px;}
.x2f{left:121.320000px;}
.x1d{left:123.480000px;}
.x4d{left:132.225000px;}
.x1b{left:134.820000px;}
.x26{left:136.440000px;}
.x2{left:138.996000px;}
.x90{left:141.696000px;}
.x35{left:142.740000px;}
.x55{left:144.825000px;}
.x8e{left:152.848500px;}
.x2a{left:155.670000px;}
.x54{left:157.320000px;}
.x69{left:159.885000px;}
.x5c{left:161.820000px;}
.x7f{left:163.950000px;}
.x4e{left:176.685000px;}
.x1e{left:178.770000px;}
.x7b{left:181.980000px;}
.x6{left:183.628500px;}
.x38{left:187.560000px;}
.x80{left:192.885000px;}
.x6f{left:209.550000px;}
.x4f{left:215.640000px;}
.x8{left:217.650000px;}
.x82{left:220.890000px;}
.x34{left:229.170000px;}
.x39{left:232.665000px;}
.x19{left:236.010000px;}
.x75{left:238.935000px;}
.x45{left:240.150000px;}
.x68{left:243.210000px;}
.x66{left:244.830000px;}
.x92{left:248.608500px;}
.x25{left:250.950000px;}
.x81{left:254.775000px;}
.x6c{left:261.570000px;}
.x7a{left:269.850000px;}
.x5f{left:272.730000px;}
.x46{left:276.690000px;}
.x3a{left:277.770000px;}
.x70{left:279.390000px;}
.x52{left:281.550000px;}
.x2c{left:284.430000px;}
.x9{left:288.208125px;}
.x56{left:290.850000px;}
.xa{left:295.230000px;}
.x16{left:301.035000px;}
.x73{left:305.430000px;}
.x50{left:307.875000px;}
.x3b{left:322.890000px;}
.x2e{left:324.615000px;}
.x61{left:326.595000px;}
.x83{left:340.635000px;}
.x7d{left:361.470000px;}
.x57{left:363.855000px;}
.x1f{left:400.035000px;}
.x71{left:429.945000px;}
.x58{left:436.860000px;}
.x77{left:438.375000px;}
.xb{left:446.475000px;}
.x20{left:455.325000px;}
.x3f{left:460.110000px;}
.x6b{left:468.255000px;}
.x40{left:498.750000px;}
.x3c{left:503.355000px;}
.x41{left:505.230000px;}
.x21{left:510.660000px;}
.x72{left:513.930000px;}
.x74{left:524.235000px;}
.x42{left:543.855000px;}
.x43{left:550.335000px;}
.x7{left:551.820000px;}
.x8f{left:556.800000px;}
.x22{left:565.950000px;}
.xe{left:575.220000px;}
.x85{left:585.300000px;}
.x86{left:593.040000px;}
.x10{left:629.220000px;}
.x87{left:660.165000px;}
.x12{left:683.220000px;}
.x79{left:710.790000px;}
.x67{left:713.670000px;}
.x53{left:731.130000px;}
.x60{left:732.210000px;}
.x51{left:735.630000px;}
.x13{left:737.250000px;}
.x65{left:743.550000px;}
.x33{left:750.210000px;}
.x44{left:757.050000px;}
.x18{left:758.130000px;}
.x2b{left:771.630000px;}
.x5e{left:772.710000px;}
.x24{left:777.750000px;}
.x2d{left:807.990000px;}
@media print{
.v10{vertical-align:-43.786667pt;}
.v3{vertical-align:-39.893333pt;}
.va{vertical-align:-35.946667pt;}
.v9{vertical-align:-33.653333pt;}
.v8{vertical-align:-31.786667pt;}
.v4{vertical-align:-29.973333pt;}
.v7{vertical-align:-28.266667pt;}
.v6{vertical-align:-26.880000pt;}
.ve{vertical-align:-14.720000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:6.293333pt;}
.v1{vertical-align:17.280000pt;}
.vf{vertical-align:24.586667pt;}
.v5{vertical-align:29.973333pt;}
.vd{vertical-align:32.426667pt;}
.v2{vertical-align:34.720000pt;}
.vc{vertical-align:37.226667pt;}
.lse{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.231467pt;}
.ls5{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.lsd{letter-spacing:1.408000pt;}
.ls8{letter-spacing:2.560000pt;}
.ls11{letter-spacing:3.328000pt;}
.ls15{letter-spacing:4.608000pt;}
.ls18{letter-spacing:4.928000pt;}
.ls14{letter-spacing:5.248000pt;}
.ls13{letter-spacing:5.546667pt;}
.ls17{letter-spacing:5.568000pt;}
.ls1c{letter-spacing:6.080000pt;}
.ls3{letter-spacing:6.186667pt;}
.ls12{letter-spacing:6.592000pt;}
.ls19{letter-spacing:9.408000pt;}
.ls0{letter-spacing:24.448000pt;}
.ls1d{letter-spacing:40.448000pt;}
.ls9{letter-spacing:48.768000pt;}
.ls20{letter-spacing:56.712320pt;}
.ls1f{letter-spacing:62.208000pt;}
.ls1e{letter-spacing:80.128000pt;}
.ls1a{letter-spacing:172.800000pt;}
.ws3{word-spacing:-74.880000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws22{word-spacing:-18.640000pt;}
.ws21{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.186667pt;}
.ws1f{word-spacing:-13.568000pt;}
.ws17{word-spacing:-13.546667pt;}
.ws9{word-spacing:-13.511467pt;}
.ws1a{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.195733pt;}
.ws11{word-spacing:-12.005120pt;}
.ws8{word-spacing:0.000000pt;}
.ws1b{word-spacing:73.881173pt;}
.ws16{word-spacing:74.354987pt;}
.wsd{word-spacing:74.568320pt;}
.ws19{word-spacing:82.930987pt;}
.ws1c{word-spacing:85.087573pt;}
.ws14{word-spacing:130.848853pt;}
.ws13{word-spacing:139.140480pt;}
.wsf{word-spacing:163.115520pt;}
.ws18{word-spacing:176.740480pt;}
.ws1d{word-spacing:205.650987pt;}
.ws12{word-spacing:211.144533pt;}
.ws15{word-spacing:212.583040pt;}
.wsc{word-spacing:262.236373pt;}
._37{margin-left:-172.480000pt;}
._b{margin-left:-12.669440pt;}
._19{margin-left:-10.368000pt;}
._3d{margin-left:-6.101333pt;}
._31{margin-left:-4.800000pt;}
._33{margin-left:-3.370667pt;}
._32{margin-left:-2.016000pt;}
._7{margin-left:-0.898560pt;}
._8{width:1.354667pt;}
._a{width:2.496000pt;}
._9{width:3.434667pt;}
._4{width:5.024000pt;}
._3{width:5.920000pt;}
._5{width:7.008000pt;}
._14{width:7.957333pt;}
._10{width:8.874667pt;}
._6{width:10.389333pt;}
._c{width:11.904000pt;}
._d{width:12.981333pt;}
._f{width:14.208000pt;}
._e{width:17.216000pt;}
._34{width:18.176000pt;}
._1c{width:19.064960pt;}
._36{width:19.978453pt;}
._1b{width:21.358293pt;}
._20{width:22.336000pt;}
._35{width:23.296000pt;}
._40{width:24.469333pt;}
._3f{width:25.514667pt;}
._3a{width:31.680000pt;}
._3b{width:33.152000pt;}
._17{width:40.291627pt;}
._13{width:43.438293pt;}
._21{width:44.586453pt;}
._16{width:53.624960pt;}
._12{width:57.731627pt;}
._3e{width:60.557227pt;}
._39{width:65.877333pt;}
._3c{width:69.642667pt;}
._1a{width:81.331200pt;}
._22{width:83.438293pt;}
._15{width:87.628800pt;}
._23{width:95.864960pt;}
._2a{width:101.266347pt;}
._2b{width:103.278293pt;}
._24{width:109.411627pt;}
._11{width:117.597867pt;}
._1d{width:120.558293pt;}
._25{width:124.291627pt;}
._2c{width:126.958293pt;}
._1e{width:138.371627pt;}
._26{width:140.398293pt;}
._27{width:158.211627pt;}
._29{width:164.264533pt;}
._2e{width:171.170773pt;}
._38{width:172.800000pt;}
._18{width:176.041600pt;}
._28{width:181.331200pt;}
._1f{width:189.776640pt;}
._2d{width:192.540800pt;}
._30{width:265.357227pt;}
._2f{width:351.118293pt;}
._1{width:427.840000pt;}
._2{width:552.586667pt;}
._0{width:679.946667pt;}
.fs7{font-size:2.560000pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:53.440000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:74.560000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:4.000000pt;}
.y1e{bottom:4.160000pt;}
.y37{bottom:4.946667pt;}
.y43{bottom:4.960000pt;}
.y1a0{bottom:4.986667pt;}
.ycc{bottom:5.106667pt;}
.y2b{bottom:5.120000pt;}
.y22{bottom:5.760000pt;}
.y41{bottom:5.920000pt;}
.y1f{bottom:6.080000pt;}
.yfd{bottom:7.866667pt;}
.y21{bottom:8.000000pt;}
.yb4{bottom:8.160000pt;}
.y2d3{bottom:9.360000pt;}
.y133{bottom:9.906667pt;}
.ybd{bottom:9.920000pt;}
.y32{bottom:10.866667pt;}
.yc1{bottom:10.880000pt;}
.y2f{bottom:11.026667pt;}
.ya{bottom:11.040000pt;}
.yaa{bottom:11.520000pt;}
.y1c3{bottom:14.080000pt;}
.y12f{bottom:14.226667pt;}
.y181{bottom:14.240000pt;}
.y120{bottom:14.266667pt;}
.y12c{bottom:14.706667pt;}
.y27{bottom:14.720000pt;}
.y164{bottom:16.000000pt;}
.y1e1{bottom:16.093333pt;}
.y93{bottom:16.160000pt;}
.y2d2{bottom:16.240000pt;}
.y9{bottom:16.320000pt;}
.y115{bottom:17.306667pt;}
.y1e7{bottom:18.240000pt;}
.yc5{bottom:20.800000pt;}
.y139{bottom:20.826667pt;}
.y3a{bottom:20.946667pt;}
.y2c{bottom:20.960000pt;}
.y28{bottom:22.240000pt;}
.y12d{bottom:22.266667pt;}
.y209{bottom:22.720000pt;}
.y3{bottom:22.880000pt;}
.y270{bottom:22.912000pt;}
.yc4{bottom:23.040000pt;}
.y138{bottom:23.066667pt;}
.y1c4{bottom:23.080000pt;}
.y36{bottom:23.186667pt;}
.y2a{bottom:23.200000pt;}
.y15a{bottom:23.680000pt;}
.yfc{bottom:24.186667pt;}
.y11f{bottom:24.733333pt;}
.y24{bottom:26.240000pt;}
.yb3{bottom:26.280000pt;}
.y273{bottom:26.880000pt;}
.y20e{bottom:26.960000pt;}
.y25{bottom:27.040000pt;}
.yb5{bottom:27.080000pt;}
.y132{bottom:27.986667pt;}
.ybc{bottom:28.000000pt;}
.y15c{bottom:28.706667pt;}
.y136{bottom:28.946667pt;}
.yc0{bottom:28.986667pt;}
.y2e{bottom:29.106667pt;}
.yb9{bottom:29.280000pt;}
.y134{bottom:30.706667pt;}
.ybe{bottom:30.720000pt;}
.y107{bottom:32.160000pt;}
.y137{bottom:32.626667pt;}
.yc2{bottom:32.666667pt;}
.y33{bottom:32.786667pt;}
.y30{bottom:32.946667pt;}
.yba{bottom:32.960000pt;}
.ya9{bottom:35.040000pt;}
.y2{bottom:37.440000pt;}
.y26f{bottom:37.472000pt;}
.y38{bottom:39.026667pt;}
.y153{bottom:41.026667pt;}
.y11e{bottom:41.053333pt;}
.y35{bottom:41.266667pt;}
.y19c{bottom:41.280000pt;}
.y1c1{bottom:41.440000pt;}
.yf5{bottom:41.533333pt;}
.y1fb{bottom:44.226667pt;}
.y6f{bottom:44.640000pt;}
.y180{bottom:45.440000pt;}
.y206{bottom:47.200000pt;}
.y8{bottom:48.000000pt;}
.y20d{bottom:48.080000pt;}
.y88{bottom:51.040000pt;}
.ya2{bottom:52.386667pt;}
.y117{bottom:58.373333pt;}
.y15d{bottom:58.466667pt;}
.y1da{bottom:58.533333pt;}
.y1e4{bottom:59.520000pt;}
.y1f4{bottom:61.573333pt;}
.y68{bottom:61.986667pt;}
.y179{bottom:62.786667pt;}
.y1fd{bottom:64.506667pt;}
.y108{bottom:65.306667pt;}
.y1d9{bottom:66.746667pt;}
.y7{bottom:79.840000pt;}
.yf6{bottom:80.253333pt;}
.y1af{bottom:81.280000pt;}
.y89{bottom:83.013333pt;}
.y15e{bottom:83.293333pt;}
.y1fe{bottom:83.746667pt;}
.ya3{bottom:86.213333pt;}
.y118{bottom:89.346667pt;}
.y1f5{bottom:90.853333pt;}
.y17a{bottom:91.066667pt;}
.y154{bottom:91.426667pt;}
.y69{bottom:92.253333pt;}
.y109{bottom:96.933333pt;}
.y1ff{bottom:102.973333pt;}
.y1a8{bottom:103.266667pt;}
.y1d8{bottom:105.600000pt;}
.y15f{bottom:108.133333pt;}
.y3e{bottom:111.040000pt;}
.y6{bottom:111.520000pt;}
.y2d6{bottom:111.600000pt;}
.y20c{bottom:111.626667pt;}
.y1a6{bottom:111.840000pt;}
.y8a{bottom:112.293333pt;}
.y62{bottom:114.333333pt;}
.y14a{bottom:115.840000pt;}
.yd6{bottom:116.320000pt;}
.y3d{bottom:117.120000pt;}
.yee{bottom:117.413333pt;}
.ya0{bottom:117.760000pt;}
.yf7{bottom:118.973333pt;}
.y17b{bottom:119.333333pt;}
.y263{bottom:119.520000pt;}
.y1f2{bottom:119.680000pt;}
.ya4{bottom:120.026667pt;}
.y2fb{bottom:120.080000pt;}
.y1a9{bottom:120.093333pt;}
.y1f6{bottom:120.133333pt;}
.y119{bottom:120.320000pt;}
.y18d{bottom:120.960000pt;}
.y200{bottom:122.213333pt;}
.y6a{bottom:122.560000pt;}
.y1a5{bottom:122.880000pt;}
.y298{bottom:123.712000pt;}
.y235{bottom:123.760000pt;}
.y1a7{bottom:124.160000pt;}
.y1d2{bottom:124.320000pt;}
.y3c{bottom:126.400000pt;}
.y149{bottom:126.880000pt;}
.y1b4{bottom:126.946667pt;}
.y1d4{bottom:127.680000pt;}
.y10a{bottom:128.573333pt;}
.y15b{bottom:129.120000pt;}
.y1f1{bottom:130.720000pt;}
.y5f{bottom:131.200000pt;}
.y1fc{bottom:131.840000pt;}
.y18c{bottom:132.000000pt;}
.y160{bottom:132.960000pt;}
.yd5{bottom:134.400000pt;}
.y9f{bottom:136.000000pt;}
.y105{bottom:136.480000pt;}
.y1aa{bottom:137.093333pt;}
.y2d0{bottom:137.626667pt;}
.y262{bottom:137.680000pt;}
.yf2{bottom:137.733333pt;}
.y2fa{bottom:138.240000pt;}
.y2b4{bottom:140.666667pt;}
.y1d1{bottom:141.280000pt;}
.y201{bottom:141.413333pt;}
.y8b{bottom:141.600000pt;}
.y155{bottom:141.826667pt;}
.y234{bottom:141.920000pt;}
.y297{bottom:141.946667pt;}
.y20b{bottom:143.306667pt;}
.y272{bottom:143.360000pt;}
.y2d5{bottom:143.386667pt;}
.y1ba{bottom:143.680000pt;}
.y177{bottom:144.506667pt;}
.y64{bottom:144.613333pt;}
.y3b{bottom:146.440000pt;}
.yf0{bottom:147.386667pt;}
.y17c{bottom:147.613333pt;}
.y1f7{bottom:149.413333pt;}
.y11a{bottom:151.293333pt;}
.yd4{bottom:152.666667pt;}
.y6b{bottom:152.826667pt;}
.y9e{bottom:153.146667pt;}
.ya5{bottom:153.893333pt;}
.y1ab{bottom:154.306667pt;}
.y104{bottom:154.586667pt;}
.y1b3{bottom:154.880000pt;}
.y1b1{bottom:155.493333pt;}
.y261{bottom:155.760000pt;}
.y2cf{bottom:155.866667pt;}
.y2f9{bottom:156.400000pt;}
.y1b7{bottom:156.826667pt;}
.y66{bottom:157.600000pt;}
.yf8{bottom:157.693333pt;}
.y161{bottom:157.786667pt;}
.y1d5{bottom:158.146667pt;}
.y2b3{bottom:158.906667pt;}
.y86{bottom:159.066667pt;}
.y1b9{bottom:159.333333pt;}
.y1d0{bottom:159.546667pt;}
.y135{bottom:159.560000pt;}
.y5e{bottom:159.706667pt;}
.y233{bottom:160.000000pt;}
.y296{bottom:160.026667pt;}
.y10b{bottom:160.186667pt;}
.y202{bottom:160.640000pt;}
.y176{bottom:162.586667pt;}
.y1dc{bottom:163.520000pt;}
.y9d{bottom:164.186667pt;}
.y151{bottom:165.306667pt;}
.yd3{bottom:170.746667pt;}
.y8c{bottom:170.880000pt;}
.y1ac{bottom:171.706667pt;}
.y103{bottom:171.866667pt;}
.y1b5{bottom:172.186667pt;}
.y260{bottom:173.920000pt;}
.y2ce{bottom:173.946667pt;}
.y1df{bottom:174.013333pt;}
.y2f8{bottom:174.480000pt;}
.y14d{bottom:175.386667pt;}
.y17d{bottom:175.866667pt;}
.y26e{bottom:176.960000pt;}
.y2b2{bottom:176.986667pt;}
.y85{bottom:177.306667pt;}
.y1cf{bottom:177.626667pt;}
.y5d{bottom:177.786667pt;}
.y232{bottom:178.160000pt;}
.y295{bottom:178.266667pt;}
.y1f8{bottom:178.720000pt;}
.yf1{bottom:179.866667pt;}
.y175{bottom:180.826667pt;}
.y11b{bottom:182.240000pt;}
.y162{bottom:182.626667pt;}
.y102{bottom:182.906667pt;}
.y6c{bottom:183.106667pt;}
.y39{bottom:183.400000pt;}
.y116{bottom:184.160000pt;}
.ya6{bottom:187.706667pt;}
.yd2{bottom:188.826667pt;}
.y1ad{bottom:189.306667pt;}
.y1d6{bottom:189.346667pt;}
.y10c{bottom:191.840000pt;}
.y2cd{bottom:192.026667pt;}
.y25f{bottom:192.106667pt;}
.y156{bottom:192.226667pt;}
.y2f7{bottom:193.466667pt;}
.y2b1{bottom:195.066667pt;}
.y26d{bottom:195.146667pt;}
.y1b0{bottom:195.200000pt;}
.y84{bottom:195.386667pt;}
.y1ce{bottom:195.706667pt;}
.y5c{bottom:196.026667pt;}
.y231{bottom:196.346667pt;}
.yf9{bottom:196.453333pt;}
.y174{bottom:196.506667pt;}
.y1b2{bottom:196.960000pt;}
.y203{bottom:199.066667pt;}
.y1b6{bottom:199.866667pt;}
.y8d{bottom:200.160000pt;}
.y1bb{bottom:201.506667pt;}
.y17e{bottom:204.160000pt;}
.y14f{bottom:205.626667pt;}
.y1db{bottom:205.946667pt;}
.yd1{bottom:207.066667pt;}
.y1ae{bottom:207.133333pt;}
.y163{bottom:207.453333pt;}
.y1f9{bottom:208.000000pt;}
.y131{bottom:208.360000pt;}
.y65{bottom:209.506667pt;}
.yed{bottom:209.826667pt;}
.y173{bottom:210.266667pt;}
.y1b8{bottom:210.946667pt;}
.y11c{bottom:213.213333pt;}
.y26c{bottom:213.306667pt;}
.y6d{bottom:213.413333pt;}
.y83{bottom:213.466667pt;}
.y2f6{bottom:213.866667pt;}
.y5b{bottom:214.106667pt;}
.y294{bottom:214.426667pt;}
.y230{bottom:214.506667pt;}
.y1dd{bottom:214.946667pt;}
.y204{bottom:218.306667pt;}
.y34{bottom:220.360000pt;}
.y1d7{bottom:221.306667pt;}
.ya7{bottom:221.533333pt;}
.y10d{bottom:223.453333pt;}
.y172{bottom:224.026667pt;}
.yd0{bottom:225.146667pt;}
.y150{bottom:225.786667pt;}
.y61{bottom:226.813333pt;}
.y25e{bottom:228.346667pt;}
.y8e{bottom:229.466667pt;}
.y1cd{bottom:229.946667pt;}
.y1e0{bottom:230.333333pt;}
.y26b{bottom:231.386667pt;}
.y82{bottom:231.706667pt;}
.y2f5{bottom:232.026667pt;}
.y1de{bottom:232.186667pt;}
.y5a{bottom:232.346667pt;}
.y17f{bottom:232.453333pt;}
.y22f{bottom:232.586667pt;}
.y293{bottom:232.666667pt;}
.yfa{bottom:235.173333pt;}
.y67{bottom:235.453333pt;}
.y1fa{bottom:237.280000pt;}
.y205{bottom:237.533333pt;}
.y171{bottom:239.386667pt;}
.y63{bottom:239.773333pt;}
.y157{bottom:242.626667pt;}
.ycf{bottom:243.226667pt;}
.y6e{bottom:243.680000pt;}
.y11d{bottom:244.186667pt;}
.y25d{bottom:246.506667pt;}
.y2cc{bottom:246.586667pt;}
.y26a{bottom:249.546667pt;}
.y2b0{bottom:249.666667pt;}
.y81{bottom:249.786667pt;}
.y207{bottom:249.986667pt;}
.y2f4{bottom:250.106667pt;}
.y59{bottom:250.426667pt;}
.y22e{bottom:250.746667pt;}
.y292{bottom:250.786667pt;}
.yef{bottom:253.733333pt;}
.y130{bottom:255.080000pt;}
.y10e{bottom:255.106667pt;}
.ya8{bottom:255.360000pt;}
.y8f{bottom:258.746667pt;}
.yce{bottom:261.466667pt;}
.y1cc{bottom:264.026667pt;}
.y25c{bottom:264.666667pt;}
.y2cb{bottom:264.706667pt;}
.yf4{bottom:264.800000pt;}
.y269{bottom:267.706667pt;}
.y2af{bottom:267.746667pt;}
.y80{bottom:267.866667pt;}
.y2f3{bottom:268.266667pt;}
.y58{bottom:268.506667pt;}
.y291{bottom:268.866667pt;}
.y22d{bottom:268.906667pt;}
.yf3{bottom:269.786667pt;}
.yfb{bottom:273.893333pt;}
.y31{bottom:275.400000pt;}
.y14c{bottom:276.186667pt;}
.ycd{bottom:279.066667pt;}
.y2ca{bottom:282.786667pt;}
.y25b{bottom:282.826667pt;}
.y2ae{bottom:285.826667pt;}
.y268{bottom:285.866667pt;}
.y7f{bottom:286.106667pt;}
.y2f2{bottom:286.426667pt;}
.y10f{bottom:286.720000pt;}
.y57{bottom:286.746667pt;}
.y22c{bottom:287.066667pt;}
.y290{bottom:287.106667pt;}
.y90{bottom:288.026667pt;}
.y158{bottom:293.026667pt;}
.y1cb{bottom:296.186667pt;}
.y152{bottom:296.346667pt;}
.ycb{bottom:296.680000pt;}
.y25a{bottom:300.906667pt;}
.y2c9{bottom:301.026667pt;}
.y267{bottom:303.946667pt;}
.y12e{bottom:304.040000pt;}
.y2ad{bottom:304.066667pt;}
.y7e{bottom:304.186667pt;}
.y2f1{bottom:304.586667pt;}
.y56{bottom:304.826667pt;}
.y22b{bottom:305.146667pt;}
.y28f{bottom:305.186667pt;}
.y14e{bottom:306.426667pt;}
.y1ca{bottom:312.506667pt;}
.yeb{bottom:313.146667pt;}
.y91{bottom:317.346667pt;}
.y110{bottom:318.373333pt;}
.y259{bottom:319.066667pt;}
.y2c8{bottom:319.106667pt;}
.y266{bottom:322.106667pt;}
.y2ac{bottom:322.146667pt;}
.y7d{bottom:322.426667pt;}
.y2f0{bottom:322.666667pt;}
.y55{bottom:322.906667pt;}
.y22a{bottom:323.306667pt;}
.y28e{bottom:323.426667pt;}
.y1c9{bottom:323.546667pt;}
.y2d{bottom:324.200000pt;}
.y1d3{bottom:325.440000pt;}
.yea{bottom:331.226667pt;}
.yca{bottom:333.640000pt;}
.y258{bottom:337.226667pt;}
.y2c7{bottom:337.346667pt;}
.y2ab{bottom:340.226667pt;}
.y265{bottom:340.266667pt;}
.y7c{bottom:340.506667pt;}
.y2ef{bottom:340.826667pt;}
.y54{bottom:341.146667pt;}
.y12b{bottom:341.160000pt;}
.y229{bottom:341.466667pt;}
.y28d{bottom:341.506667pt;}
.y159{bottom:343.426667pt;}
.y92{bottom:346.626667pt;}
.ye9{bottom:349.466667pt;}
.y111{bottom:349.986667pt;}
.y2c6{bottom:355.426667pt;}
.y257{bottom:356.186667pt;}
.y264{bottom:358.426667pt;}
.y2aa{bottom:358.466667pt;}
.y7b{bottom:358.586667pt;}
.y53{bottom:359.226667pt;}
.y28c{bottom:359.586667pt;}
.y228{bottom:359.626667pt;}
.y2ee{bottom:359.786667pt;}
.ye8{bottom:367.586667pt;}
.yc9{bottom:370.626667pt;}
.y29{bottom:373.186667pt;}
.y2c5{bottom:373.506667pt;}
.y256{bottom:376.506667pt;}
.y2a9{bottom:376.546667pt;}
.y7a{bottom:376.866667pt;}
.y52{bottom:377.506667pt;}
.y227{bottom:377.706667pt;}
.y28b{bottom:377.826667pt;}
.y12a{bottom:379.426667pt;}
.y148{bottom:379.906667pt;}
.y2ed{bottom:380.106667pt;}
.y112{bottom:381.626667pt;}
.y1a4{bottom:382.306667pt;}
.ye7{bottom:385.666667pt;}
.y2c4{bottom:391.746667pt;}
.y255{bottom:394.666667pt;}
.y2a8{bottom:394.786667pt;}
.y79{bottom:394.946667pt;}
.y51{bottom:395.586667pt;}
.y226{bottom:395.866667pt;}
.y28a{bottom:395.906667pt;}
.y1a3{bottom:397.666667pt;}
.y147{bottom:397.986667pt;}
.y2ec{bottom:398.266667pt;}
.ye6{bottom:403.906667pt;}
.yc8{bottom:407.586667pt;}
.y2c3{bottom:409.826667pt;}
.y26{bottom:410.306667pt;}
.y78{bottom:412.226667pt;}
.y254{bottom:412.826667pt;}
.y2a7{bottom:412.866667pt;}
.y113{bottom:413.253333pt;}
.y50{bottom:413.666667pt;}
.y289{bottom:413.986667pt;}
.y225{bottom:414.026667pt;}
.y146{bottom:416.226667pt;}
.y2eb{bottom:418.826667pt;}
.y1f0{bottom:419.746667pt;}
.y129{bottom:422.466667pt;}
.y77{bottom:423.266667pt;}
.y87{bottom:424.320000pt;}
.y2c2{bottom:427.906667pt;}
.y2a6{bottom:430.946667pt;}
.y253{bottom:430.986667pt;}
.y4f{bottom:431.906667pt;}
.y224{bottom:432.186667pt;}
.y288{bottom:432.226667pt;}
.y145{bottom:434.306667pt;}
.y2ea{bottom:436.986667pt;}
.y1ef{bottom:437.826667pt;}
.ye5{bottom:437.986667pt;}
.y128{bottom:444.226667pt;}
.yc7{bottom:444.546667pt;}
.y114{bottom:444.893333pt;}
.y2c1{bottom:446.146667pt;}
.y23{bottom:448.546667pt;}
.y252{bottom:449.066667pt;}
.y2a5{bottom:449.186667pt;}
.y4e{bottom:449.986667pt;}
.y223{bottom:450.266667pt;}
.y287{bottom:450.306667pt;}
.y144{bottom:452.386667pt;}
.y101{bottom:453.986667pt;}
.y2e9{bottom:455.146667pt;}
.y1ee{bottom:456.066667pt;}
.ye4{bottom:456.226667pt;}
.y2c0{bottom:464.226667pt;}
.y1a2{bottom:465.346667pt;}
.y251{bottom:467.226667pt;}
.y4d{bottom:467.266667pt;}
.y222{bottom:468.426667pt;}
.y286{bottom:468.546667pt;}
.y143{bottom:470.626667pt;}
.y18b{bottom:471.106667pt;}
.y100{bottom:472.066667pt;}
.y1ed{bottom:472.226667pt;}
.y127{bottom:472.706667pt;}
.y2e8{bottom:473.306667pt;}
.ye3{bottom:474.306667pt;}
.y4c{bottom:478.306667pt;}
.y60{bottom:480.480000pt;}
.yc6{bottom:481.506667pt;}
.y2bf{bottom:482.466667pt;}
.y2a4{bottom:485.346667pt;}
.y250{bottom:485.386667pt;}
.y221{bottom:486.586667pt;}
.y285{bottom:486.626667pt;}
.y1ec{bottom:487.426667pt;}
.y142{bottom:488.706667pt;}
.y18a{bottom:489.186667pt;}
.yff{bottom:489.346667pt;}
.y126{bottom:490.786667pt;}
.y2e7{bottom:491.386667pt;}
.y20{bottom:491.586667pt;}
.ye2{bottom:492.386667pt;}
.yfe{bottom:500.386667pt;}
.y2be{bottom:500.573333pt;}
.y106{bottom:501.440000pt;}
.y24f{bottom:503.546667pt;}
.y2a3{bottom:503.613333pt;}
.y1eb{bottom:503.906667pt;}
.y284{bottom:504.733333pt;}
.y220{bottom:504.746667pt;}
.y141{bottom:506.946667pt;}
.y189{bottom:507.266667pt;}
.y2e6{bottom:509.546667pt;}
.ye1{bottom:510.626667pt;}
.y1d{bottom:513.346667pt;}
.y1ea{bottom:514.946667pt;}
.y1f3{bottom:517.120000pt;}
.yc3{bottom:518.466667pt;}
.y2bd{bottom:518.653333pt;}
.y1a1{bottom:520.386667pt;}
.y24e{bottom:521.626667pt;}
.y2a2{bottom:521.693333pt;}
.y21f{bottom:522.906667pt;}
.y283{bottom:522.973333pt;}
.y170{bottom:523.746667pt;}
.y125{bottom:524.866667pt;}
.y140{bottom:525.026667pt;}
.y188{bottom:525.506667pt;}
.y2e5{bottom:528.506667pt;}
.ye0{bottom:528.706667pt;}
.y2bc{bottom:536.893333pt;}
.y16f{bottom:539.106667pt;}
.y1c{bottom:539.586667pt;}
.y24d{bottom:539.786667pt;}
.y2a1{bottom:539.933333pt;}
.y21e{bottom:540.986667pt;}
.y282{bottom:541.053333pt;}
.y13f{bottom:542.146667pt;}
.y124{bottom:543.106667pt;}
.y187{bottom:543.586667pt;}
.ydf{bottom:546.946667pt;}
.y2e4{bottom:548.906667pt;}
.y13e{bottom:553.346667pt;}
.y2bb{bottom:554.973333pt;}
.y16e{bottom:555.266667pt;}
.y14b{bottom:555.360000pt;}
.ybf{bottom:555.426667pt;}
.y24c{bottom:557.946667pt;}
.y1b{bottom:557.986667pt;}
.y2a0{bottom:558.013333pt;}
.y21d{bottom:559.146667pt;}
.y281{bottom:559.293333pt;}
.y123{bottom:561.186667pt;}
.y186{bottom:561.666667pt;}
.yde{bottom:565.026667pt;}
.y16d{bottom:566.306667pt;}
.y2e3{bottom:567.013333pt;}
.y178{bottom:568.480000pt;}
.y9c{bottom:572.386667pt;}
.y2ba{bottom:573.053333pt;}
.y19f{bottom:575.586667pt;}
.y1a{bottom:576.066667pt;}
.y29f{bottom:576.093333pt;}
.y24b{bottom:576.133333pt;}
.y21c{bottom:577.333333pt;}
.y280{bottom:577.373333pt;}
.y122{bottom:578.493333pt;}
.y185{bottom:579.933333pt;}
.ydd{bottom:583.133333pt;}
.y2e2{bottom:585.173333pt;}
.y9b{bottom:588.413333pt;}
.y121{bottom:589.533333pt;}
.y2b9{bottom:591.293333pt;}
.y24a{bottom:594.213333pt;}
.y19{bottom:594.333333pt;}
.y27f{bottom:595.453333pt;}
.y21b{bottom:595.493333pt;}
.y184{bottom:596.413333pt;}
.ydc{bottom:601.373333pt;}
.y2e1{bottom:603.333333pt;}
.ybb{bottom:604.253333pt;}
.y9a{bottom:606.653333pt;}
.y2b8{bottom:609.373333pt;}
.y249{bottom:612.373333pt;}
.y18{bottom:612.413333pt;}
.y19e{bottom:612.573333pt;}
.y1c8{bottom:612.733333pt;}
.y21a{bottom:613.573333pt;}
.y27e{bottom:613.693333pt;}
.ydb{bottom:619.453333pt;}
.y2e0{bottom:621.493333pt;}
.y183{bottom:623.453333pt;}
.y99{bottom:624.733333pt;}
.y1c7{bottom:626.493333pt;}
.y2b7{bottom:627.613333pt;}
.y17{bottom:630.493333pt;}
.y248{bottom:630.533333pt;}
.y219{bottom:631.733333pt;}
.y27d{bottom:631.773333pt;}
.yda{bottom:635.933333pt;}
.y2df{bottom:639.573333pt;}
.y98{bottom:642.813333pt;}
.y2b6{bottom:645.693333pt;}
.y247{bottom:648.693333pt;}
.y16{bottom:648.733333pt;}
.y19d{bottom:649.373333pt;}
.y27c{bottom:649.853333pt;}
.y218{bottom:649.893333pt;}
.yb8{bottom:650.973333pt;}
.yd9{bottom:651.933333pt;}
.y2de{bottom:657.733333pt;}
.y97{bottom:661.053333pt;}
.yd8{bottom:663.133333pt;}
.y2b5{bottom:664.573333pt;}
.yec{bottom:665.120000pt;}
.y246{bottom:666.773333pt;}
.y15{bottom:666.813333pt;}
.y217{bottom:668.053333pt;}
.y27b{bottom:668.093333pt;}
.y19b{bottom:668.253333pt;}
.y2dd{bottom:675.893333pt;}
.y96{bottom:678.173333pt;}
.y1c6{bottom:681.533333pt;}
.y245{bottom:684.933333pt;}
.y14{bottom:685.053333pt;}
.y216{bottom:685.253333pt;}
.y27a{bottom:685.373333pt;}
.y95{bottom:693.373333pt;}
.y2dc{bottom:694.053333pt;}
.yb7{bottom:699.933333pt;}
.y244{bottom:703.093333pt;}
.y12{bottom:703.133333pt;}
.y94{bottom:704.413333pt;}
.ya1{bottom:706.560000pt;}
.y13{bottom:707.133333pt;}
.y279{bottom:707.613333pt;}
.y215{bottom:707.653333pt;}
.y2db{bottom:712.133333pt;}
.y11{bottom:721.213333pt;}
.y243{bottom:721.253333pt;}
.y19a{bottom:723.293333pt;}
.y214{bottom:725.733333pt;}
.y278{bottom:725.853333pt;}
.y2da{bottom:730.293333pt;}
.y1c5{bottom:736.733333pt;}
.yb6{bottom:737.053333pt;}
.y242{bottom:739.333333pt;}
.y10{bottom:739.453333pt;}
.y213{bottom:743.893333pt;}
.y277{bottom:743.933333pt;}
.y199{bottom:745.533333pt;}
.y2d9{bottom:748.453333pt;}
.y241{bottom:757.493333pt;}
.yf{bottom:757.533333pt;}
.y29e{bottom:757.573333pt;}
.y212{bottom:762.053333pt;}
.y198{bottom:762.493333pt;}
.y2d8{bottom:766.613333pt;}
.y4b{bottom:769.533333pt;}
.y1c2{bottom:773.693333pt;}
.yb2{bottom:775.293333pt;}
.ye{bottom:775.613333pt;}
.y240{bottom:775.653333pt;}
.y1e9{bottom:775.933333pt;}
.y211{bottom:780.213333pt;}
.y276{bottom:780.293333pt;}
.y197{bottom:780.573333pt;}
.y2d7{bottom:784.693333pt;}
.y4a{bottom:786.653333pt;}
.y1e8{bottom:791.293333pt;}
.y23f{bottom:793.813333pt;}
.yd{bottom:793.853333pt;}
.y29d{bottom:793.893333pt;}
.y2d4{bottom:797.893333pt;}
.y210{bottom:798.293333pt;}
.y275{bottom:798.373333pt;}
.y1e5{bottom:804.293333pt;}
.y76{bottom:804.613333pt;}
.y49{bottom:804.773333pt;}
.y1c0{bottom:810.533333pt;}
.yc{bottom:811.973333pt;}
.y196{bottom:814.853333pt;}
.y20f{bottom:816.453333pt;}
.y274{bottom:816.613333pt;}
.yb1{bottom:818.373333pt;}
.y1e6{bottom:822.533333pt;}
.y48{bottom:823.013333pt;}
.y20a{bottom:829.653333pt;}
.y271{bottom:829.733333pt;}
.y23e{bottom:830.053333pt;}
.yb{bottom:830.213333pt;}
.y75{bottom:830.853333pt;}
.y195{bottom:832.933333pt;}
.y16c{bottom:835.333333pt;}
.yb0{bottom:840.133333pt;}
.y47{bottom:841.093333pt;}
.y5{bottom:843.333333pt;}
.y23d{bottom:848.213333pt;}
.y29c{bottom:848.293333pt;}
.y194{bottom:851.173333pt;}
.y16b{bottom:853.413333pt;}
.y46{bottom:859.173333pt;}
.y74{bottom:859.493333pt;}
.y1bf{bottom:865.733333pt;}
.y23c{bottom:866.373333pt;}
.yaf{bottom:868.613333pt;}
.y193{bottom:869.253333pt;}
.y16a{bottom:871.653333pt;}
.y45{bottom:877.413333pt;}
.y2fd{bottom:879.253333pt;}
.y23b{bottom:884.533333pt;}
.y29b{bottom:884.613333pt;}
.yae{bottom:886.693333pt;}
.y192{bottom:887.333333pt;}
.y73{bottom:888.133333pt;}
.y1be{bottom:889.573333pt;}
.y169{bottom:889.733333pt;}
.y44{bottom:891.173333pt;}
.y1e3{bottom:896.293333pt;}
.y2fc{bottom:900.373333pt;}
.y23a{bottom:902.613333pt;}
.y29a{bottom:902.693333pt;}
.yad{bottom:904.933333pt;}
.y191{bottom:905.573333pt;}
.y1bd{bottom:907.653333pt;}
.y72{bottom:916.773333pt;}
.y13d{bottom:918.693333pt;}
.y239{bottom:920.773333pt;}
.y299{bottom:920.933333pt;}
.y182{bottom:923.173333pt;}
.y190{bottom:923.653333pt;}
.y168{bottom:923.813333pt;}
.y42{bottom:928.133333pt;}
.y13c{bottom:935.653333pt;}
.y238{bottom:938.960000pt;}
.yac{bottom:939.013333pt;}
.y18f{bottom:941.733333pt;}
.y167{bottom:942.053333pt;}
.y71{bottom:945.413333pt;}
.y13b{bottom:953.893333pt;}
.y2d1{bottom:956.720000pt;}
.yab{bottom:957.093333pt;}
.y237{bottom:957.120000pt;}
.y18e{bottom:959.973333pt;}
.y166{bottom:960.133333pt;}
.y3f{bottom:965.093333pt;}
.y1e2{bottom:969.573333pt;}
.y13a{bottom:971.493333pt;}
.y70{bottom:974.053333pt;}
.y236{bottom:975.200000pt;}
.y4{bottom:975.333333pt;}
.y1bc{bottom:976.133333pt;}
.yd7{bottom:976.453333pt;}
.y165{bottom:977.413333pt;}
.y208{bottom:988.400000pt;}
.y1{bottom:988.453333pt;}
.h42{height:2.246250pt;}
.h3b{height:18.066667pt;}
.h34{height:18.240000pt;}
.hd{height:21.106667pt;}
.h16{height:22.546667pt;}
.hb{height:22.706667pt;}
.h3{height:28.078125pt;}
.h50{height:31.680000pt;}
.h15{height:33.918750pt;}
.h23{height:36.146667pt;}
.h36{height:36.160000pt;}
.h3d{height:36.180000pt;}
.h37{height:36.186667pt;}
.h2e{height:36.192000pt;}
.h19{height:36.234687pt;}
.h11{height:36.306667pt;}
.h1f{height:36.320000pt;}
.h24{height:36.338667pt;}
.h10{height:37.586667pt;}
.h1e{height:37.600000pt;}
.h2a{height:37.618667pt;}
.h9{height:37.624687pt;}
.ha{height:40.358750pt;}
.he{height:42.386667pt;}
.h1d{height:42.420000pt;}
.h39{height:42.528021pt;}
.h2c{height:46.066667pt;}
.h21{height:46.080000pt;}
.h17{height:46.609688pt;}
.h33{height:47.109375pt;}
.h2d{height:47.986667pt;}
.h22{height:48.026667pt;}
.h13{height:48.146667pt;}
.h2b{height:48.306667pt;}
.h20{height:48.320000pt;}
.h12{height:48.338667pt;}
.h31{height:49.968750pt;}
.h2{height:52.134375pt;}
.h14{height:54.386667pt;}
.h35{height:54.400000pt;}
.h3c{height:54.546667pt;}
.h4c{height:54.598989pt;}
.h46{height:54.927899pt;}
.h29{height:55.298750pt;}
.h4{height:56.156250pt;}
.hc{height:56.891250pt;}
.h40{height:60.821354pt;}
.h48{height:65.422031pt;}
.h6{height:65.702812pt;}
.hf{height:65.781915pt;}
.h26{height:66.208021pt;}
.h4b{height:66.625000pt;}
.h3f{height:68.661354pt;}
.h41{height:72.626667pt;}
.h3a{height:73.461354pt;}
.h7{height:73.490625pt;}
.h49{height:76.635931pt;}
.h4e{height:76.964840pt;}
.h4a{height:77.618125pt;}
.h4f{height:77.951250pt;}
.h45{height:79.171875pt;}
.h1a{height:105.514688pt;}
.h5{height:126.866667pt;}
.h4d{height:158.706667pt;}
.h47{height:158.746667pt;}
.h51{height:158.826667pt;}
.h30{height:245.920000pt;}
.h38{height:254.880000pt;}
.h43{height:255.840000pt;}
.h32{height:261.920000pt;}
.h28{height:264.800000pt;}
.h1c{height:281.920000pt;}
.h3e{height:282.240000pt;}
.h44{height:283.040000pt;}
.h18{height:285.920000pt;}
.h25{height:308.000000pt;}
.h2f{height:360.000000pt;}
.h1b{height:376.960000pt;}
.h27{height:487.040000pt;}
.h8{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:47.346667pt;}
.w7{width:47.378667pt;}
.w19{width:193.453333pt;}
.w18{width:207.213333pt;}
.w17{width:216.826667pt;}
.w16{width:226.145333pt;}
.w3{width:235.053333pt;}
.w1d{width:239.386667pt;}
.w1f{width:239.413333pt;}
.w11{width:273.453333pt;}
.w12{width:273.506667pt;}
.w14{width:300.066667pt;}
.w13{width:303.585333pt;}
.w1b{width:378.880000pt;}
.w8{width:419.417333pt;}
.w5{width:419.897333pt;}
.w1a{width:420.000000pt;}
.w2{width:422.012000pt;}
.w1c{width:441.972000pt;}
.w1e{width:442.012000pt;}
.w15{width:468.800000pt;}
.wf{width:504.000000pt;}
.we{width:512.960000pt;}
.wc{width:538.880000pt;}
.wd{width:551.040000pt;}
.w9{width:552.000000pt;}
.wa{width:568.960000pt;}
.wb{width:576.000000pt;}
.w10{width:578.880000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x49{left:2.080000pt;}
.x3d{left:5.632000pt;}
.xd{left:7.190667pt;}
.x88{left:8.826667pt;}
.x5a{left:10.586667pt;}
.x28{left:12.706667pt;}
.xf{left:15.986667pt;}
.x14{left:18.386667pt;}
.x29{left:19.453333pt;}
.x59{left:20.666667pt;}
.x32{left:22.070667pt;}
.x11{left:23.826667pt;}
.x4{left:25.310667pt;}
.x6d{left:27.133333pt;}
.x7c{left:29.306667pt;}
.x15{left:30.710667pt;}
.x31{left:33.986667pt;}
.x8c{left:35.358667pt;}
.x3e{left:37.440000pt;}
.x4a{left:38.493333pt;}
.x84{left:39.840000pt;}
.x30{left:44.066667pt;}
.x36{left:46.426667pt;}
.x63{left:47.520000pt;}
.x93{left:48.878667pt;}
.x91{left:49.950667pt;}
.x23{left:51.613333pt;}
.x8b{left:52.961333pt;}
.x5b{left:54.813333pt;}
.x47{left:58.720000pt;}
.x1c{left:60.573333pt;}
.x27{left:63.333333pt;}
.x8a{left:65.186667pt;}
.x5d{left:66.653333pt;}
.x3{left:68.481333pt;}
.x5{left:69.785333pt;}
.x6a{left:71.826667pt;}
.x6e{left:72.773333pt;}
.x1{left:75.520000pt;}
.x8d{left:76.505333pt;}
.x4b{left:78.013333pt;}
.x17{left:79.840000pt;}
.x64{left:80.893333pt;}
.x89{left:81.853333pt;}
.x4c{left:83.773333pt;}
.x76{left:85.441333pt;}
.x37{left:86.533333pt;}
.x78{left:88.186667pt;}
.x7e{left:89.120000pt;}
.xc{left:90.761333pt;}
.x94{left:96.345333pt;}
.x1a{left:99.552000pt;}
.x48{left:103.360000pt;}
.x62{left:106.880000pt;}
.x2f{left:107.840000pt;}
.x1d{left:109.760000pt;}
.x4d{left:117.533333pt;}
.x1b{left:119.840000pt;}
.x26{left:121.280000pt;}
.x2{left:123.552000pt;}
.x90{left:125.952000pt;}
.x35{left:126.880000pt;}
.x55{left:128.733333pt;}
.x8e{left:135.865333pt;}
.x2a{left:138.373333pt;}
.x54{left:139.840000pt;}
.x69{left:142.120000pt;}
.x5c{left:143.840000pt;}
.x7f{left:145.733333pt;}
.x4e{left:157.053333pt;}
.x1e{left:158.906667pt;}
.x7b{left:161.760000pt;}
.x6{left:163.225333pt;}
.x38{left:166.720000pt;}
.x80{left:171.453333pt;}
.x6f{left:186.266667pt;}
.x4f{left:191.680000pt;}
.x8{left:193.466667pt;}
.x82{left:196.346667pt;}
.x34{left:203.706667pt;}
.x39{left:206.813333pt;}
.x19{left:209.786667pt;}
.x75{left:212.386667pt;}
.x45{left:213.466667pt;}
.x68{left:216.186667pt;}
.x66{left:217.626667pt;}
.x92{left:220.985333pt;}
.x25{left:223.066667pt;}
.x81{left:226.466667pt;}
.x6c{left:232.506667pt;}
.x7a{left:239.866667pt;}
.x5f{left:242.426667pt;}
.x46{left:245.946667pt;}
.x3a{left:246.906667pt;}
.x70{left:248.346667pt;}
.x52{left:250.266667pt;}
.x2c{left:252.826667pt;}
.x9{left:256.185000pt;}
.x56{left:258.533333pt;}
.xa{left:262.426667pt;}
.x16{left:267.586667pt;}
.x73{left:271.493333pt;}
.x50{left:273.666667pt;}
.x3b{left:287.013333pt;}
.x2e{left:288.546667pt;}
.x61{left:290.306667pt;}
.x83{left:302.786667pt;}
.x7d{left:321.306667pt;}
.x57{left:323.426667pt;}
.x1f{left:355.586667pt;}
.x71{left:382.173333pt;}
.x58{left:388.320000pt;}
.x77{left:389.666667pt;}
.xb{left:396.866667pt;}
.x20{left:404.733333pt;}
.x3f{left:408.986667pt;}
.x6b{left:416.226667pt;}
.x40{left:443.333333pt;}
.x3c{left:447.426667pt;}
.x41{left:449.093333pt;}
.x21{left:453.920000pt;}
.x72{left:456.826667pt;}
.x74{left:465.986667pt;}
.x42{left:483.426667pt;}
.x43{left:489.186667pt;}
.x7{left:490.506667pt;}
.x8f{left:494.933333pt;}
.x22{left:503.066667pt;}
.xe{left:511.306667pt;}
.x85{left:520.266667pt;}
.x86{left:527.146667pt;}
.x10{left:559.306667pt;}
.x87{left:586.813333pt;}
.x12{left:607.306667pt;}
.x79{left:631.813333pt;}
.x67{left:634.373333pt;}
.x53{left:649.893333pt;}
.x60{left:650.853333pt;}
.x51{left:653.893333pt;}
.x13{left:655.333333pt;}
.x65{left:660.933333pt;}
.x33{left:666.853333pt;}
.x44{left:672.933333pt;}
.x18{left:673.893333pt;}
.x2b{left:685.893333pt;}
.x5e{left:686.853333pt;}
.x24{left:691.333333pt;}
.x2d{left:718.213333pt;}
}




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