
    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_443682a8d594e441604f1865.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_03efbab188e536a8855ddde9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.833008;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_46853664a81d14bbe175cd3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.833008;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_7b88210b6b33006751bccde0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_7a07a79fe6ff87019f61deca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890625;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_7f38cdbef3d7c3f6acc88855.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890625;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_5d0dad64d9db43ec832590f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118652;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_a75810f6738b9eaee9d48d8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.118652;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_b1816b23f9cd577cf43c6142.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_c47d639b28271b0f43039587.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_107e948b2d68c69c4d6a2458.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ca79e05aec49418d265e0fcb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_1374e16ee7995e614bb4d1db.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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_c7b2865f787ce785a3cdd8d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;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_0d9df38fae2335bde26d2b5c.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_062ccb2e477a85b57caeca0e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3684633a30b4cb7f47f1c289.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.983398;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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.800000px;}
.v2{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.v4{vertical-align:29.520000px;}
.lsb{letter-spacing:-1.572000px;}
.ls2e{letter-spacing:-1.440000px;}
.ls36{letter-spacing:-0.936000px;}
.ls3d{letter-spacing:-0.852000px;}
.ls22{letter-spacing:-0.834000px;}
.ls37{letter-spacing:-0.798000px;}
.ls48{letter-spacing:-0.768000px;}
.ls3a{letter-spacing:-0.756000px;}
.ls20{letter-spacing:-0.720000px;}
.ls47{letter-spacing:-0.702000px;}
.ls1{letter-spacing:-0.660000px;}
.ls38{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.486600px;}
.ls54{letter-spacing:-0.475200px;}
.ls2{letter-spacing:-0.472200px;}
.ls1e{letter-spacing:-0.463800px;}
.ls39{letter-spacing:-0.348600px;}
.ls15{letter-spacing:-0.302400px;}
.ls14{letter-spacing:-0.244800px;}
.ls52{letter-spacing:-0.227400px;}
.ls1f{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.207600px;}
.ls4b{letter-spacing:-0.193200px;}
.ls43{letter-spacing:-0.164400px;}
.ls42{letter-spacing:-0.155400px;}
.ls4{letter-spacing:-0.132600px;}
.ls35{letter-spacing:-0.123600px;}
.ls1d{letter-spacing:-0.115200px;}
.ls11{letter-spacing:-0.107400px;}
.ls44{letter-spacing:-0.078000px;}
.lsd{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.048960px;}
.ls4c{letter-spacing:-0.046080px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.036000px;}
.ls23{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.069120px;}
.ls21{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.075000px;}
.lsf{letter-spacing:0.089400px;}
.lse{letter-spacing:0.106560px;}
.ls53{letter-spacing:0.115200px;}
.ls3f{letter-spacing:0.129600px;}
.ls4e{letter-spacing:0.132480px;}
.ls10{letter-spacing:0.132600px;}
.ls2b{letter-spacing:0.149760px;}
.ls4f{letter-spacing:0.150000px;}
.ls3b{letter-spacing:0.158400px;}
.ls16{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181440px;}
.ls9{letter-spacing:0.198720px;}
.ls40{letter-spacing:0.232320px;}
.ls34{letter-spacing:0.233400px;}
.ls24{letter-spacing:0.234600px;}
.ls56{letter-spacing:0.244800px;}
.ls45{letter-spacing:0.247800px;}
.ls7{letter-spacing:0.256200px;}
.ls51{letter-spacing:0.259200px;}
.ls2f{letter-spacing:0.265200px;}
.ls27{letter-spacing:0.286800px;}
.ls31{letter-spacing:0.302400px;}
.ls4a{letter-spacing:0.313800px;}
.ls49{letter-spacing:0.354000px;}
.ls17{letter-spacing:0.354240px;}
.ls29{letter-spacing:0.354600px;}
.ls25{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.371400px;}
.ls41{letter-spacing:0.391680px;}
.ls26{letter-spacing:0.427800px;}
.ls2a{letter-spacing:0.498600px;}
.ls28{letter-spacing:0.571800px;}
.ls50{letter-spacing:2.465280px;}
.lsa{letter-spacing:4.608000px;}
.ls19{letter-spacing:5.189760px;}
.ls33{letter-spacing:5.909760px;}
.ls55{letter-spacing:6.402240px;}
.ls32{letter-spacing:8.069760px;}
.ls2c{letter-spacing:10.974240px;}
.ls6{letter-spacing:11.105280px;}
.ls3e{letter-spacing:13.985280px;}
.ls8{letter-spacing:18.864000px;}
.ls30{letter-spacing:19.709760px;}
.ls12{letter-spacing:28.254240px;}
.ls3c{letter-spacing:28.385280px;}
.ls4d{letter-spacing:36.305280px;}
.ls5{letter-spacing:39.161280px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(90,90,90),0 0.015em rgb(90,90,90),0.015em 0 rgb(90,90,90),0 -0.015em  rgb(90,90,90);}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{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);}
.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(90,90,90);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-66.240000px;}
.ws6{word-spacing:-24.624000px;}
.ws3{word-spacing:-20.016000px;}
.ws2a{word-spacing:-18.414720px;}
.ws14{word-spacing:-16.344000px;}
.ws2{word-spacing:-15.341640px;}
.ws35{word-spacing:-15.324240px;}
.ws37{word-spacing:-15.284040px;}
.ws28{word-spacing:-15.272640px;}
.ws39{word-spacing:-15.229440px;}
.ws4{word-spacing:-15.226440px;}
.ws3d{word-spacing:-15.215040px;}
.ws7{word-spacing:-15.168960px;}
.wsb{word-spacing:-15.102840px;}
.ws2e{word-spacing:-15.099840px;}
.ws3b{word-spacing:-15.085440px;}
.wsd{word-spacing:-15.059640px;}
.ws27{word-spacing:-15.045240px;}
.ws30{word-spacing:-15.030840px;}
.ws5{word-spacing:-14.970240px;}
.ws38{word-spacing:-14.924160px;}
.ws33{word-spacing:-14.921280px;}
.ws32{word-spacing:-14.892240px;}
.wse{word-spacing:-14.855040px;}
.ws25{word-spacing:-14.846640px;}
.ws13{word-spacing:-14.837640px;}
.ws31{word-spacing:-14.805840px;}
.ws36{word-spacing:-14.777040px;}
.ws34{word-spacing:-14.762640px;}
.ws11{word-spacing:-14.754240px;}
.ws3a{word-spacing:-14.742840px;}
.wsf{word-spacing:-14.506440px;}
.ws3c{word-spacing:-14.495040px;}
.ws2b{word-spacing:-14.340240px;}
.ws29{word-spacing:-14.322240px;}
.ws1{word-spacing:-14.310240px;}
.ws12{word-spacing:-14.136240px;}
.ws2f{word-spacing:-14.118240px;}
.ws26{word-spacing:-14.034240px;}
.ws15{word-spacing:-13.740360px;}
.ws2c{word-spacing:-13.566360px;}
.ws19{word-spacing:-13.538304px;}
.ws17{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.398360px;}
.ws1b{word-spacing:-9.470304px;}
.ws10{word-spacing:-9.437760px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:81.604440px;}
.ws1a{word-spacing:103.281600px;}
.ws1f{word-spacing:127.762200px;}
.ws20{word-spacing:128.074200px;}
.ws1e{word-spacing:128.134200px;}
.ws1c{word-spacing:128.374200px;}
.ws23{word-spacing:129.123240px;}
.ws22{word-spacing:129.435240px;}
.ws8{word-spacing:166.021440px;}
.ws24{word-spacing:174.012960px;}
.ws1d{word-spacing:174.912960px;}
.ws21{word-spacing:175.032960px;}
.ws16{word-spacing:323.365560px;}
.ws18{word-spacing:347.230224px;}
._1b{margin-left:-18.043200px;}
._3{margin-left:-9.875103px;}
._7{margin-left:-8.255520px;}
._6{margin-left:-7.212960px;}
._5{margin-left:-6.144960px;}
._1{margin-left:-4.208400px;}
._0{margin-left:-3.006000px;}
._2{margin-left:-1.941120px;}
._a{width:1.483680px;}
._e{width:3.192000px;}
._8{width:4.464000px;}
._f{width:5.630400px;}
._10{width:6.638400px;}
._11{width:8.482080px;}
._2b{width:9.628560px;}
._2a{width:11.062080px;}
._c{width:12.320640px;}
._d{width:13.702080px;}
._2c{width:16.030080px;}
._2d{width:17.441280px;}
._32{width:18.924480px;}
._b{width:20.064960px;}
._9{width:21.130560px;}
._12{width:22.224960px;}
._29{width:23.978880px;}
._13{width:25.038720px;}
._14{width:26.052480px;}
._40{width:27.118080px;}
._31{width:28.309440px;}
._30{width:29.543040px;}
._2f{width:30.642720px;}
._2e{width:31.749120px;}
._33{width:33.465600px;}
._42{width:35.200800px;}
._41{width:36.217920px;}
._43{width:37.344000px;}
._3b{width:38.617920px;}
._3c{width:40.028160px;}
._45{width:41.109360px;}
._46{width:43.188480px;}
._21{width:47.762160px;}
._44{width:53.078880px;}
._25{width:55.044960px;}
._3d{width:56.833920px;}
._24{width:68.466240px;}
._1f{width:76.275360px;}
._47{width:91.013760px;}
._48{width:92.424960px;}
._3f{width:94.363920px;}
._3e{width:95.574240px;}
._1e{width:103.366560px;}
._23{width:124.518480px;}
._39{width:126.959760px;}
._3a{width:129.060144px;}
._4{width:133.288560px;}
._15{width:147.005760px;}
._36{width:154.954560px;}
._27{width:157.405440px;}
._20{width:159.348960px;}
._28{width:163.234320px;}
._1a{width:164.566080px;}
._22{width:171.706800px;}
._17{width:173.766480px;}
._1d{width:180.381600px;}
._26{width:190.309920px;}
._19{width:192.275040px;}
._1c{width:194.380320px;}
._18{width:196.469760px;}
._16{width:197.609760px;}
._49{width:231.773760px;}
._35{width:351.487200px;}
._34{width:359.902080px;}
._38{width:375.422880px;}
._37{width:383.768832px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(82,77,102);}
.fc7{color:rgb(95,99,104);}
.fc6{color:rgb(77,81,86);}
.fc1{color:transparent;}
.fc5{color:rgb(68,84,106);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(90,90,90);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fse{font-size:41.904000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.fs5{font-size:151.787810px;}
.fs4{font-size:156.240000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:4.170000px;}
.y2{bottom:4.500000px;}
.y1c2{bottom:5.760000px;}
.y1e2{bottom:6.150000px;}
.y31{bottom:6.300000px;}
.ya2{bottom:6.480000px;}
.y128{bottom:6.840000px;}
.y106{bottom:7.020000px;}
.y129{bottom:7.920000px;}
.y126{bottom:8.850000px;}
.y124{bottom:9.000000px;}
.ya0{bottom:9.174000px;}
.y127{bottom:9.540000px;}
.y44{bottom:10.080000px;}
.y138{bottom:10.260000px;}
.y49{bottom:11.700000px;}
.y16{bottom:12.240000px;}
.y18e{bottom:13.425000px;}
.y1bf{bottom:14.040000px;}
.y226{bottom:14.760000px;}
.y171{bottom:17.850000px;}
.y180{bottom:18.180000px;}
.y14e{bottom:18.570000px;}
.y9a{bottom:18.615000px;}
.y158{bottom:18.645000px;}
.ybf{bottom:18.900000px;}
.y163{bottom:18.945000px;}
.y18c{bottom:19.110000px;}
.yd0{bottom:19.800000px;}
.y101{bottom:22.320000px;}
.ye7{bottom:22.530000px;}
.y16f{bottom:23.325000px;}
.y1c1{bottom:24.120000px;}
.y1e1{bottom:24.330000px;}
.y141{bottom:25.200000px;}
.y17e{bottom:25.230000px;}
.y105{bottom:25.380000px;}
.y145{bottom:26.640000px;}
.y9f{bottom:27.534000px;}
.y137{bottom:28.620000px;}
.y1be{bottom:32.400000px;}
.y225{bottom:33.120000px;}
.ybe{bottom:37.260000px;}
.y162{bottom:37.305000px;}
.y122{bottom:38.010000px;}
.ycf{bottom:38.160000px;}
.y1e0{bottom:38.730000px;}
.y100{bottom:40.545000px;}
.y30{bottom:41.976000px;}
.y140{bottom:43.560000px;}
.y104{bottom:43.740000px;}
.y144{bottom:45.000000px;}
.y9e{bottom:45.894000px;}
.y1bd{bottom:46.620000px;}
.y2f{bottom:46.836000px;}
.y136{bottom:46.980000px;}
.y43{bottom:48.600000px;}
.y48{bottom:50.220000px;}
.y17c{bottom:50.940000px;}
.y224{bottom:51.480000px;}
.y14b{bottom:51.555000px;}
.y155{bottom:51.660000px;}
.y18a{bottom:51.735000px;}
.y16d{bottom:52.740000px;}
.yd2{bottom:55.620000px;}
.y161{bottom:55.665000px;}
.yce{bottom:56.520000px;}
.y103{bottom:57.960000px;}
.y13f{bottom:61.920000px;}
.y216{bottom:62.136000px;}
.y143{bottom:63.360000px;}
.y9d{bottom:64.074000px;}
.y173{bottom:64.590000px;}
.y135{bottom:65.340000px;}
.y182{bottom:65.370000px;}
.y165{bottom:66.390000px;}
.y223{bottom:69.840000px;}
.ya1{bottom:70.236000px;}
.y147{bottom:72.210000px;}
.yd3{bottom:72.216000px;}
.y150{bottom:72.285000px;}
.y96{bottom:72.390000px;}
.y160{bottom:73.845000px;}
.ycd{bottom:74.700000px;}
.y1c3{bottom:79.416000px;}
.y13e{bottom:80.100000px;}
.y255{bottom:82.296000px;}
.y9c{bottom:82.434000px;}
.y174{bottom:83.850000px;}
.y42{bottom:86.940000px;}
.y183{bottom:87.480000px;}
.y166{bottom:87.945000px;}
.y47{bottom:88.560000px;}
.y16e{bottom:102.030000px;}
.y17d{bottom:102.855000px;}
.y175{bottom:103.110000px;}
.y18b{bottom:105.765000px;}
.y167{bottom:109.470000px;}
.y184{bottom:109.590000px;}
.ybc{bottom:110.196000px;}
.ye5{bottom:110.736000px;}
.y281{bottom:113.616000px;}
.y240{bottom:113.976000px;}
.ycb{bottom:115.236000px;}
.y1d0{bottom:115.416000px;}
.y221{bottom:116.676000px;}
.y151{bottom:119.415000px;}
.y249{bottom:119.736000px;}
.y15e{bottom:120.456000px;}
.y176{bottom:122.370000px;}
.y14c{bottom:122.835000px;}
.y3f{bottom:124.776000px;}
.y41{bottom:125.460000px;}
.y1f1{bottom:125.856000px;}
.y46{bottom:127.080000px;}
.ybb{bottom:128.376000px;}
.ye4{bottom:130.716000px;}
.y168{bottom:131.040000px;}
.y185{bottom:131.685000px;}
.y1bb{bottom:131.796000px;}
.y254{bottom:132.156000px;}
.yba{bottom:133.596000px;}
.y156{bottom:133.950000px;}
.y116{bottom:134.136000px;}
.y85{bottom:135.756000px;}
.ye3{bottom:135.936000px;}
.y215{bottom:136.656000px;}
.y68{bottom:138.096000px;}
.y22d{bottom:140.436000px;}
.y27d{bottom:140.976000px;}
.y177{bottom:141.660000px;}
.y280{bottom:143.856000px;}
.y23f{bottom:144.216000px;}
.yca{bottom:145.476000px;}
.y1cf{bottom:146.736000px;}
.yb9{bottom:147.276000px;}
.y9b{bottom:148.716000px;}
.y248{bottom:149.976000px;}
.y15d{bottom:150.690000px;}
.ye2{bottom:150.870000px;}
.y1ce{bottom:151.950000px;}
.y14{bottom:152.130000px;}
.y169{bottom:152.565000px;}
.y186{bottom:153.795000px;}
.y148{bottom:154.650000px;}
.y40{bottom:155.730000px;}
.y1f0{bottom:156.090000px;}
.y263{bottom:156.810000px;}
.yfe{bottom:158.610000px;}
.y178{bottom:160.920000px;}
.y13c{bottom:162.030000px;}
.y209{bottom:162.210000px;}
.y253{bottom:162.390000px;}
.yf6{bottom:164.370000px;}
.y1cd{bottom:165.630000px;}
.y152{bottom:166.500000px;}
.y2e{bottom:169.950000px;}
.y22c{bottom:170.490000px;}
.y262{bottom:171.030000px;}
.y27c{bottom:171.210000px;}
.y67{bottom:171.750000px;}
.y27f{bottom:173.910000px;}
.y16a{bottom:174.135000px;}
.y23e{bottom:174.450000px;}
.yc9{bottom:175.530000px;}
.y187{bottom:175.890000px;}
.y13{bottom:176.790000px;}
.y275{bottom:177.330000px;}
.y84{bottom:178.050000px;}
.y142{bottom:178.770000px;}
.y179{bottom:180.180000px;}
.y15c{bottom:180.750000px;}
.y133{bottom:181.110000px;}
.yb8{bottom:184.530000px;}
.y1ef{bottom:186.330000px;}
.y220{bottom:188.130000px;}
.yfd{bottom:188.850000px;}
.y1ba{bottom:192.270000px;}
.y208{bottom:192.450000px;}
.y252{bottom:192.630000px;}
.ye1{bottom:193.170000px;}
.yf5{bottom:194.610000px;}
.y16b{bottom:195.660000px;}
.y188{bottom:198.000000px;}
.y17a{bottom:199.440000px;}
.y1a9{bottom:200.730000px;}
.y27b{bottom:201.450000px;}
.y214{bottom:203.790000px;}
.y27e{bottom:204.150000px;}
.y23d{bottom:204.690000px;}
.y66{bottom:205.590000px;}
.yc8{bottom:205.770000px;}
.y274{bottom:207.570000px;}
.y15b{bottom:210.990000px;}
.y132{bottom:211.350000px;}
.y2d{bottom:212.070000px;}
.y1cc{bottom:212.790000px;}
.y153{bottom:213.630000px;}
.yb6{bottom:214.770000px;}
.y1ee{bottom:216.570000px;}
.y16c{bottom:217.185000px;}
.y21f{bottom:218.370000px;}
.y17b{bottom:218.700000px;}
.yfc{bottom:219.090000px;}
.y189{bottom:220.110000px;}
.y83{bottom:220.170000px;}
.yb7{bottom:220.710000px;}
.y247{bottom:222.330000px;}
.y251{bottom:222.870000px;}
.ye0{bottom:223.410000px;}
.y12{bottom:223.770000px;}
.yf4{bottom:224.850000px;}
.y170{bottom:230.220000px;}
.y18d{bottom:230.835000px;}
.y1a8{bottom:230.970000px;}
.y27a{bottom:231.690000px;}
.y213{bottom:234.030000px;}
.y1b9{bottom:234.390000px;}
.y17f{bottom:234.720000px;}
.y207{bottom:235.650000px;}
.y149{bottom:237.135000px;}
.y273{bottom:237.810000px;}
.yc7{bottom:239.070000px;}
.y65{bottom:239.250000px;}
.y15a{bottom:241.230000px;}
.y131{bottom:241.590000px;}
.y1cb{bottom:243.030000px;}
.yb5{bottom:245.010000px;}
.y95{bottom:245.880000px;}
.y1ed{bottom:246.630000px;}
.y23c{bottom:246.810000px;}
.y21e{bottom:248.610000px;}
.yfb{bottom:249.150000px;}
.y246{bottom:252.570000px;}
.ydf{bottom:253.650000px;}
.y2c{bottom:254.370000px;}
.yf3{bottom:255.090000px;}
.y14f{bottom:259.020000px;}
.y154{bottom:260.715000px;}
.y1a7{bottom:261.210000px;}
.y279{bottom:261.750000px;}
.y82{bottom:262.470000px;}
.y212{bottom:264.270000px;}
.y1b8{bottom:264.630000px;}
.y250{bottom:264.990000px;}
.yff{bottom:265.530000px;}
.y272{bottom:268.050000px;}
.y97{bottom:271.185000px;}
.y159{bottom:271.470000px;}
.y130{bottom:271.830000px;}
.y64{bottom:272.910000px;}
.y1ca{bottom:273.270000px;}
.yb4{bottom:275.250000px;}
.y23b{bottom:277.050000px;}
.y21d{bottom:278.670000px;}
.y1de{bottom:279.390000px;}
.y206{bottom:280.110000px;}
.yc6{bottom:282.090000px;}
.y245{bottom:282.810000px;}
.yde{bottom:283.890000px;}
.yf2{bottom:285.150000px;}
.y15f{bottom:287.130000px;}
.y157{bottom:287.430000px;}
.y1ec{bottom:288.975000px;}
.ybd{bottom:291.495000px;}
.y278{bottom:292.035000px;}
.y1b7{bottom:294.915000px;}
.y24f{bottom:295.275000px;}
.y98{bottom:296.250000px;}
.y2b{bottom:296.535000px;}
.y211{bottom:297.615000px;}
.yd1{bottom:297.795000px;}
.y11{bottom:300.675000px;}
.y12f{bottom:302.115000px;}
.y1a6{bottom:303.555000px;}
.y81{bottom:304.635000px;}
.y63{bottom:306.795000px;}
.y23a{bottom:307.335000px;}
.y21c{bottom:308.955000px;}
.y1dd{bottom:309.675000px;}
.y271{bottom:310.215000px;}
.ydd{bottom:314.175000px;}
.y115{bottom:315.435000px;}
.yf1{bottom:318.675000px;}
.y1eb{bottom:319.215000px;}
.y14a{bottom:319.605000px;}
.y22b{bottom:321.735000px;}
.y205{bottom:322.275000px;}
.y1b6{bottom:325.155000px;}
.y24e{bottom:325.515000px;}
.y99{bottom:326.340000px;}
.y261{bottom:327.675000px;}
.y12e{bottom:332.355000px;}
.y1a5{bottom:333.615000px;}
.y3e{bottom:336.315000px;}
.y239{bottom:337.575000px;}
.y2a{bottom:338.835000px;}
.y21b{bottom:339.195000px;}
.y1dc{bottom:339.915000px;}
.y62{bottom:340.455000px;}
.ydc{bottom:344.415000px;}
.y114{bottom:345.675000px;}
.y14d{bottom:346.320000px;}
.y80{bottom:346.935000px;}
.y22a{bottom:351.975000px;}
.y204{bottom:352.515000px;}
.y244{bottom:355.215000px;}
.y1b5{bottom:355.395000px;}
.y1ea{bottom:361.335000px;}
.yf0{bottom:361.515000px;}
.y12d{bottom:362.415000px;}
.y1a4{bottom:363.855000px;}
.y238{bottom:367.815000px;}
.y21a{bottom:369.435000px;}
.y270{bottom:370.695000px;}
.ydb{bottom:374.655000px;}
.y181{bottom:375.120000px;}
.y10{bottom:377.535000px;}
.y3d{bottom:378.615000px;}
.y29{bottom:380.955000px;}
.y1db{bottom:382.035000px;}
.y61{bottom:382.755000px;}
.y1b4{bottom:385.455000px;}
.y113{bottom:387.975000px;}
.y7f{bottom:389.055000px;}
.y1e9{bottom:391.575000px;}
.y1a3{bottom:394.095000px;}
.y24d{bottom:397.875000px;}
.y219{bottom:399.675000px;}
.y26f{bottom:400.935000px;}
.yef{bottom:403.815000px;}
.yda{bottom:404.715000px;}
.y1c9{bottom:406.155000px;}
.y237{bottom:409.935000px;}
.y1da{bottom:412.275000px;}
.y203{bottom:412.995000px;}
.y1b3{bottom:415.695000px;}
.y112{bottom:418.035000px;}
.y3c{bottom:420.735000px;}
.y1e8{bottom:421.815000px;}
.y12c{bottom:422.535000px;}
.y28{bottom:423.255000px;}
.y1a2{bottom:424.335000px;}
.y60{bottom:424.875000px;}
.y24c{bottom:428.115000px;}
.y218{bottom:429.915000px;}
.y26e{bottom:431.175000px;}
.y7e{bottom:431.355000px;}
.yee{bottom:433.875000px;}
.y1c8{bottom:436.395000px;}
.y236{bottom:440.175000px;}
.y1c0{bottom:441.795000px;}
.y1d9{bottom:442.515000px;}
.y202{bottom:443.235000px;}
.y222{bottom:445.575000px;}
.y1b2{bottom:445.935000px;}
.yd9{bottom:447.015000px;}
.y111{bottom:448.275000px;}
.y12b{bottom:450.075000px;}
.y1e7{bottom:452.055000px;}
.yf{bottom:454.395000px;}
.y1a1{bottom:454.575000px;}
.y5f{bottom:455.115000px;}
.y24b{bottom:458.355000px;}
.y26d{bottom:461.415000px;}
.y3b{bottom:463.035000px;}
.yed{bottom:464.115000px;}
.y27{bottom:465.375000px;}
.y1c7{bottom:466.455000px;}
.y235{bottom:470.415000px;}
.y1d8{bottom:472.755000px;}
.y201{bottom:473.295000px;}
.y7d{bottom:473.475000px;}
.y1b1{bottom:476.175000px;}
.yd8{bottom:477.255000px;}
.y12a{bottom:477.615000px;}
.y110{bottom:478.515000px;}
.y1e6{bottom:482.295000px;}
.y1a0{bottom:484.815000px;}
.y26c{bottom:491.655000px;}
.yec{bottom:494.355000px;}
.y5e{bottom:497.415000px;}
.y1c6{bottom:499.935000px;}
.y234{bottom:500.655000px;}
.y1d7{bottom:502.995000px;}
.y200{bottom:503.535000px;}
.y3a{bottom:505.155000px;}
.y1b0{bottom:506.415000px;}
.yd7{bottom:507.495000px;}
.y26{bottom:507.675000px;}
.y10f{bottom:508.755000px;}
.y1e5{bottom:512.355000px;}
.y19f{bottom:514.875000px;}
.y7c{bottom:515.775000px;}
.yeb{bottom:524.595000px;}
.y233{bottom:530.715000px;}
.ye{bottom:531.255000px;}
.y121{bottom:532.695000px;}
.y1d6{bottom:533.235000px;}
.y1ff{bottom:533.775000px;}
.y1af{bottom:536.655000px;}
.y10e{bottom:538.995000px;}
.y5d{bottom:539.535000px;}
.y1e4{bottom:542.595000px;}
.y1c5{bottom:542.775000px;}
.y19e{bottom:545.115000px;}
.y7b{bottom:546.015000px;}
.y39{bottom:547.455000px;}
.yd6{bottom:549.615000px;}
.y25{bottom:549.795000px;}
.yea{bottom:554.835000px;}
.y266{bottom:557.175000px;}
.y232{bottom:560.955000px;}
.y125{bottom:561.315000px;}
.y1fe{bottom:564.015000px;}
.ye6{bottom:565.275000px;}
.y1ae{bottom:566.715000px;}
.y1df{bottom:567.615000px;}
.y10d{bottom:569.265000px;}
.y5c{bottom:569.805000px;}
.yc5{bottom:570.525000px;}
.y1e3{bottom:572.865000px;}
.y19d{bottom:575.385000px;}
.y7a{bottom:576.285000px;}
.ye9{bottom:585.105000px;}
.y260{bottom:587.445000px;}
.y1f2{bottom:589.245000px;}
.y38{bottom:589.785000px;}
.y231{bottom:591.225000px;}
.y24{bottom:592.125000px;}
.y123{bottom:592.845000px;}
.y1fd{bottom:594.285000px;}
.y1ad{bottom:596.985000px;}
.y10c{bottom:599.325000px;}
.y5b{bottom:600.045000px;}
.yc4{bottom:600.765000px;}
.yd{bottom:602.025000px;}
.y19b{bottom:605.625000px;}
.y79{bottom:606.345000px;}
.y210{bottom:607.245000px;}
.y13b{bottom:609.765000px;}
.y19c{bottom:611.565000px;}
.yb3{bottom:615.345000px;}
.y94{bottom:615.525000px;}
.y25f{bottom:617.685000px;}
.y24a{bottom:621.465000px;}
.y1fc{bottom:624.525000px;}
.y134{bottom:625.245000px;}
.y1ac{bottom:627.225000px;}
.y10b{bottom:629.565000px;}
.y5a{bottom:630.285000px;}
.yd5{bottom:630.645000px;}
.yc3{bottom:630.825000px;}
.y37{bottom:631.905000px;}
.y230{bottom:633.525000px;}
.y23{bottom:634.245000px;}
.y172{bottom:634.500000px;}
.y19a{bottom:635.865000px;}
.y78{bottom:636.585000px;}
.y243{bottom:638.925000px;}
.y13a{bottom:640.005000px;}
.yb2{bottom:645.405000px;}
.y93{bottom:645.765000px;}
.y229{bottom:647.925000px;}
.y20f{bottom:651.705000px;}
.y1fb{bottom:654.585000px;}
.y1ab{bottom:657.465000px;}
.y10a{bottom:659.805000px;}
.y59{bottom:660.525000px;}
.yc2{bottom:661.065000px;}
.y22f{bottom:663.765000px;}
.y199{bottom:666.105000px;}
.y77{bottom:666.825000px;}
.y139{bottom:670.245000px;}
.y36{bottom:674.205000px;}
.yb1{bottom:675.645000px;}
.y92{bottom:676.005000px;}
.y22{bottom:676.545000px;}
.y228{bottom:677.985000px;}
.yc{bottom:681.225000px;}
.y242{bottom:681.945000px;}
.y1fa{bottom:684.825000px;}
.y13d{bottom:685.905000px;}
.y1aa{bottom:687.705000px;}
.y109{bottom:690.045000px;}
.y58{bottom:690.585000px;}
.yc1{bottom:691.305000px;}
.y20e{bottom:693.825000px;}
.y198{bottom:696.345000px;}
.y76{bottom:697.065000px;}
.y277{bottom:697.965000px;}
.yb0{bottom:705.885000px;}
.y91{bottom:706.065000px;}
.y25e{bottom:708.225000px;}
.y120{bottom:711.285000px;}
.y227{bottom:711.465000px;}
.y1f9{bottom:715.065000px;}
.y35{bottom:716.145000px;}
.yfa{bottom:717.945000px;}
.y21{bottom:718.665000px;}
.y108{bottom:720.285000px;}
.y57{bottom:720.825000px;}
.yc0{bottom:721.545000px;}
.y20d{bottom:724.065000px;}
.y1d5{bottom:726.405000px;}
.y26b{bottom:727.125000px;}
.y75{bottom:727.305000px;}
.y11f{bottom:731.445000px;}
.yaf{bottom:736.125000px;}
.y90{bottom:736.305000px;}
.ycc{bottom:738.105000px;}
.y197{bottom:738.465000px;}
.y276{bottom:742.245000px;}
.y1f8{bottom:745.305000px;}
.yf9{bottom:748.185000px;}
.y25d{bottom:750.525000px;}
.y56{bottom:751.065000px;}
.y107{bottom:753.585000px;}
.y20c{bottom:754.305000px;}
.y26a{bottom:757.365000px;}
.y74{bottom:757.545000px;}
.y1d4{bottom:759.885000px;}
.yb{bottom:760.425000px;}
.y20{bottom:760.965000px;}
.y11e{bottom:762.945000px;}
.yae{bottom:766.365000px;}
.y8f{bottom:766.545000px;}
.y196{bottom:768.705000px;}
.yf8{bottom:778.245000px;}
.y25c{bottom:780.765000px;}
.y55{bottom:781.305000px;}
.y34{bottom:781.665000px;}
.y146{bottom:781.920000px;}
.y22e{bottom:784.545000px;}
.y1f7{bottom:787.425000px;}
.y73{bottom:787.605000px;}
.y11d{bottom:794.445000px;}
.yad{bottom:796.605000px;}
.y8e{bottom:799.845000px;}
.y195{bottom:802.005000px;}
.y1d3{bottom:802.725000px;}
.y1f{bottom:803.085000px;}
.yf7{bottom:808.485000px;}
.y25b{bottom:810.825000px;}
.y54{bottom:811.545000px;}
.y241{bottom:814.785000px;}
.y269{bottom:817.665000px;}
.y72{bottom:817.845000px;}
.y11c{bottom:825.945000px;}
.y20b{bottom:826.665000px;}
.ya{bottom:827.025000px;}
.y1f6{bottom:829.725000px;}
.y8d{bottom:834.405000px;}
.yac{bottom:838.725000px;}
.y25a{bottom:841.065000px;}
.y53{bottom:841.785000px;}
.y194{bottom:845.025000px;}
.y1e{bottom:845.385000px;}
.y71{bottom:848.085000px;}
.y20a{bottom:856.950000px;}
.y11b{bottom:857.490000px;}
.y33{bottom:858.570000px;}
.y1f5{bottom:860.010000px;}
.y9{bottom:860.730000px;}
.y268{bottom:861.090000px;}
.yab{bottom:869.010000px;}
.y258{bottom:871.350000px;}
.y1d2{bottom:875.130000px;}
.y8c{bottom:876.570000px;}
.y259{bottom:877.290000px;}
.y70{bottom:878.370000px;}
.y52{bottom:883.950000px;}
.y15{bottom:887.010000px;}
.y193{bottom:887.190000px;}
.y102{bottom:887.550000px;}
.y1d{bottom:887.730000px;}
.y11a{bottom:888.990000px;}
.y1f4{bottom:890.250000px;}
.y164{bottom:898.020000px;}
.yaa{bottom:899.250000px;}
.y257{bottom:901.590000px;}
.y267{bottom:905.370000px;}
.y8b{bottom:906.810000px;}
.y32{bottom:907.350000px;}
.y6f{bottom:908.610000px;}
.y8{bottom:913.290000px;}
.y51{bottom:914.190000px;}
.y1bc{bottom:916.890000px;}
.y192{bottom:917.430000px;}
.y119{bottom:920.490000px;}
.ya9{bottom:929.490000px;}
.y1c{bottom:929.850000px;}
.y256{bottom:931.830000px;}
.y8a{bottom:937.050000px;}
.y6e{bottom:938.850000px;}
.y50{bottom:944.430000px;}
.y191{bottom:947.670000px;}
.y45{bottom:952.530000px;}
.ya8{bottom:959.730000px;}
.y265{bottom:962.070000px;}
.y1f3{bottom:963.690000px;}
.y118{bottom:965.130000px;}
.y89{bottom:967.290000px;}
.y6d{bottom:969.090000px;}
.y1b{bottom:972.150000px;}
.y4f{bottom:974.670000px;}
.y190{bottom:977.910000px;}
.ya7{bottom:989.790000px;}
.y7{bottom:990.330000px;}
.y264{bottom:995.370000px;}
.y88{bottom:997.530000px;}
.y6c{bottom:999.150000px;}
.y4e{bottom:1004.910000px;}
.y117{bottom:1008.150000px;}
.y1a{bottom:1014.270000px;}
.ya6{bottom:1020.030000px;}
.y87{bottom:1027.590000px;}
.y6b{bottom:1029.390000px;}
.y4d{bottom:1034.970000px;}
.y18f{bottom:1038.210000px;}
.y6{bottom:1043.790000px;}
.ya5{bottom:1050.270000px;}
.y19{bottom:1056.570000px;}
.y6a{bottom:1059.630000px;}
.y86{bottom:1061.070000px;}
.y4c{bottom:1065.210000px;}
.y1d1{bottom:1068.450000px;}
.y217{bottom:1074.390000px;}
.ya4{bottom:1080.510000px;}
.y5{bottom:1085.910000px;}
.y69{bottom:1089.870000px;}
.y4b{bottom:1095.450000px;}
.y18{bottom:1098.690000px;}
.ya3{bottom:1110.750000px;}
.y1c4{bottom:1116.690000px;}
.y4{bottom:1128.030000px;}
.y4a{bottom:1138.860000px;}
.y17{bottom:1141.020000px;}
.yd4{bottom:1146.960000px;}
.y3{bottom:1184.580000px;}
.y1{bottom:1200.240000px;}
.h2{height:20.160000px;}
.hc{height:21.960000px;}
.h1b{height:22.140000px;}
.h2c{height:26.100000px;}
.h2a{height:27.000000px;}
.h27{height:30.060000px;}
.h29{height:30.096000px;}
.ha{height:33.120000px;}
.h23{height:36.936000px;}
.h3b{height:38.520000px;}
.h1d{height:38.671172px;}
.h1c{height:41.535703px;}
.h36{height:41.678930px;}
.h2b{height:45.931641px;}
.h3d{height:46.620000px;}
.h1a{height:48.088125px;}
.h1f{height:51.480000px;}
.h22{height:52.166250px;}
.h31{height:53.709961px;}
.h24{height:54.936000px;}
.h1e{height:59.439023px;}
.h33{height:59.582250px;}
.h15{height:61.388437px;}
.h3{height:65.884219px;}
.h3f{height:66.519141px;}
.h12{height:66.726562px;}
.h39{height:67.824844px;}
.h13{height:68.084282px;}
.h28{height:68.554688px;}
.h10{height:69.473320px;}
.h21{height:70.020000px;}
.h18{height:73.722656px;}
.h14{height:74.953125px;}
.h2f{height:77.760000px;}
.hb{height:78.070078px;}
.h2d{height:79.560000px;}
.h17{height:79.684219px;}
.hf{height:80.208984px;}
.h3e{height:84.240000px;}
.h34{height:88.236000px;}
.h20{height:89.100000px;}
.h26{height:90.216000px;}
.h2e{height:94.500000px;}
.h19{height:96.840000px;}
.h4{height:99.162773px;}
.h5{height:108.663398px;}
.hd{height:125.455078px;}
.h7{height:137.206055px;}
.h8{height:138.352852px;}
.h9{height:140.670539px;}
.he{height:145.656000px;}
.h11{height:147.240000px;}
.h6{height:159.732422px;}
.h3c{height:165.630000px;}
.h3a{height:186.120000px;}
.h25{height:244.830000px;}
.h35{height:258.660000px;}
.h38{height:259.380000px;}
.h37{height:263.160000px;}
.h32{height:315.900000px;}
.h16{height:354.780000px;}
.h30{height:374.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.956000px;}
.w12{width:56.160000px;}
.w1f{width:57.240000px;}
.w1b{width:62.280000px;}
.w1d{width:69.840000px;}
.w19{width:69.876000px;}
.w1a{width:73.620000px;}
.w1c{width:73.836000px;}
.w1e{width:78.876000px;}
.w20{width:79.776000px;}
.w16{width:137.736000px;}
.w18{width:138.456000px;}
.w15{width:145.116000px;}
.w17{width:150.150000px;}
.w26{width:199.695000px;}
.w27{width:204.195000px;}
.w28{width:211.575000px;}
.w2{width:212.250000px;}
.w3{width:212.295000px;}
.w11{width:270.075000px;}
.w13{width:284.295000px;}
.w14{width:290.055000px;}
.we{width:298.335000px;}
.w5{width:298.875000px;}
.wc{width:425.265000px;}
.wd{width:439.305000px;}
.w25{width:454.680000px;}
.w24{width:526.605000px;}
.w23{width:528.300000px;}
.w22{width:528.405000px;}
.w9{width:606.780000px;}
.w10{width:620.790000px;}
.wf{width:621.105000px;}
.wa{width:622.950000px;}
.w7{width:630.510000px;}
.w8{width:632.445000px;}
.w21{width:635.730000px;}
.w29{width:636.450000px;}
.wb{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:4.680000px;}
.x44{left:5.760000px;}
.x40{left:7.200000px;}
.x46{left:8.280000px;}
.x3d{left:10.260000px;}
.x49{left:12.060000px;}
.x3a{left:14.040000px;}
.x48{left:15.840000px;}
.x30{left:18.210000px;}
.x12{left:22.350000px;}
.x31{left:25.554000px;}
.x43{left:27.900000px;}
.x42{left:29.370000px;}
.x36{left:30.960000px;}
.x45{left:32.400000px;}
.x38{left:33.480000px;}
.x47{left:36.180000px;}
.x10{left:38.565000px;}
.x4f{left:39.960000px;}
.x58{left:43.275000px;}
.x4e{left:45.285000px;}
.x5f{left:48.390000px;}
.x4d{left:50.610000px;}
.x57{left:53.925000px;}
.x4c{left:55.950000px;}
.x60{left:58.110000px;}
.x5d{left:60.690000px;}
.x59{left:63.690000px;}
.x50{left:65.310000px;}
.x22{left:71.820000px;}
.x53{left:73.875000px;}
.x3{left:106.050000px;}
.x33{left:112.185000px;}
.x52{left:113.400000px;}
.x35{left:115.020000px;}
.x51{left:118.290000px;}
.x1{left:127.656000px;}
.x19{left:128.916000px;}
.x2d{left:130.536000px;}
.x2c{left:131.975987px;}
.x14{left:133.776000px;}
.x71{left:137.015987px;}
.x75{left:139.355987px;}
.x20{left:142.560000px;}
.xb{left:144.035987px;}
.x6c{left:148.895987px;}
.x5e{left:153.390000px;}
.xa{left:155.369987px;}
.x5c{left:157.170000px;}
.x1f{left:159.149987px;}
.x62{left:163.875000px;}
.x5b{left:169.170000px;}
.x1e{left:181.649987px;}
.x55{left:184.530000px;}
.x4a{left:186.330000px;}
.x32{left:187.410000px;}
.x54{left:192.135000px;}
.x4b{left:194.070000px;}
.x24{left:197.309973px;}
.x25{left:199.649987px;}
.x6b{left:202.545000px;}
.x5{left:212.835000px;}
.x56{left:223.380000px;}
.x15{left:226.119000px;}
.xc{left:230.429987px;}
.x27{left:233.130000px;}
.x23{left:236.370000px;}
.x21{left:241.890000px;}
.x28{left:243.930000px;}
.x2f{left:253.305000px;}
.x6{left:255.854987px;}
.x3b{left:258.915000px;}
.x13{left:275.114987px;}
.x18{left:280.299000px;}
.x72{left:287.534987px;}
.x29{left:296.895000px;}
.xe{left:299.774987px;}
.x67{left:307.154987px;}
.x17{left:326.589000px;}
.x37{left:333.975000px;}
.x2{left:339.915000px;}
.x26{left:343.694987px;}
.x8{left:359.714987px;}
.x61{left:370.980000px;}
.x5a{left:372.270000px;}
.x16{left:392.289000px;}
.x7{left:396.614987px;}
.x3e{left:397.875000px;}
.x11{left:420.015000px;}
.xd{left:446.504987px;}
.x1a{left:454.929000px;}
.x1b{left:458.889000px;}
.x1c{left:462.129000px;}
.x34{left:473.325000px;}
.x1d{left:475.674000px;}
.x2e{left:495.465000px;}
.x73{left:529.304973px;}
.x74{left:536.144987px;}
.x3f{left:544.605000px;}
.x4{left:552.165000px;}
.x6a{left:553.965000px;}
.x66{left:560.805000px;}
.x9{left:562.604987px;}
.x65{left:565.305000px;}
.xf{left:577.545000px;}
.x39{left:624.930000px;}
.x68{left:647.069973px;}
.x69{left:651.749987px;}
.x63{left:665.069973px;}
.x64{left:672.089987px;}
.x6f{left:677.669973px;}
.x41{left:683.610000px;}
.x70{left:687.029987px;}
.x2a{left:723.569973px;}
.x2b{left:728.249987px;}
.x6d{left:754.349973px;}
.x6e{left:761.369987px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.266667pt;}
.v2{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.v4{vertical-align:26.240000pt;}
.lsb{letter-spacing:-1.397333pt;}
.ls2e{letter-spacing:-1.280000pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls3d{letter-spacing:-0.757333pt;}
.ls22{letter-spacing:-0.741333pt;}
.ls37{letter-spacing:-0.709333pt;}
.ls48{letter-spacing:-0.682667pt;}
.ls3a{letter-spacing:-0.672000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls47{letter-spacing:-0.624000pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls38{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.432533pt;}
.ls54{letter-spacing:-0.422400pt;}
.ls2{letter-spacing:-0.419733pt;}
.ls1e{letter-spacing:-0.412267pt;}
.ls39{letter-spacing:-0.309867pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls14{letter-spacing:-0.217600pt;}
.ls52{letter-spacing:-0.202133pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.184533pt;}
.ls4b{letter-spacing:-0.171733pt;}
.ls43{letter-spacing:-0.146133pt;}
.ls42{letter-spacing:-0.138133pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls35{letter-spacing:-0.109867pt;}
.ls1d{letter-spacing:-0.102400pt;}
.ls11{letter-spacing:-0.095467pt;}
.ls44{letter-spacing:-0.069333pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.043520pt;}
.ls4c{letter-spacing:-0.040960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.032000pt;}
.ls23{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.061440pt;}
.ls21{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.066667pt;}
.lsf{letter-spacing:0.079467pt;}
.lse{letter-spacing:0.094720pt;}
.ls53{letter-spacing:0.102400pt;}
.ls3f{letter-spacing:0.115200pt;}
.ls4e{letter-spacing:0.117760pt;}
.ls10{letter-spacing:0.117867pt;}
.ls2b{letter-spacing:0.133120pt;}
.ls4f{letter-spacing:0.133333pt;}
.ls3b{letter-spacing:0.140800pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161280pt;}
.ls9{letter-spacing:0.176640pt;}
.ls40{letter-spacing:0.206507pt;}
.ls34{letter-spacing:0.207467pt;}
.ls24{letter-spacing:0.208533pt;}
.ls56{letter-spacing:0.217600pt;}
.ls45{letter-spacing:0.220267pt;}
.ls7{letter-spacing:0.227733pt;}
.ls51{letter-spacing:0.230400pt;}
.ls2f{letter-spacing:0.235733pt;}
.ls27{letter-spacing:0.254933pt;}
.ls31{letter-spacing:0.268800pt;}
.ls4a{letter-spacing:0.278933pt;}
.ls49{letter-spacing:0.314667pt;}
.ls17{letter-spacing:0.314880pt;}
.ls29{letter-spacing:0.315200pt;}
.ls25{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.330133pt;}
.ls41{letter-spacing:0.348160pt;}
.ls26{letter-spacing:0.380267pt;}
.ls2a{letter-spacing:0.443200pt;}
.ls28{letter-spacing:0.508267pt;}
.ls50{letter-spacing:2.191360pt;}
.lsa{letter-spacing:4.096000pt;}
.ls19{letter-spacing:4.613120pt;}
.ls33{letter-spacing:5.253120pt;}
.ls55{letter-spacing:5.690880pt;}
.ls32{letter-spacing:7.173120pt;}
.ls2c{letter-spacing:9.754880pt;}
.ls6{letter-spacing:9.871360pt;}
.ls3e{letter-spacing:12.431360pt;}
.ls8{letter-spacing:16.768000pt;}
.ls30{letter-spacing:17.519787pt;}
.ls12{letter-spacing:25.114880pt;}
.ls3c{letter-spacing:25.231360pt;}
.ls4d{letter-spacing:32.271360pt;}
.ls5{letter-spacing:34.810027pt;}
.ws2d{word-spacing:-58.880000pt;}
.ws6{word-spacing:-21.888000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws2a{word-spacing:-16.368640pt;}
.ws14{word-spacing:-14.528000pt;}
.ws2{word-spacing:-13.637013pt;}
.ws35{word-spacing:-13.621547pt;}
.ws37{word-spacing:-13.585813pt;}
.ws28{word-spacing:-13.575680pt;}
.ws39{word-spacing:-13.537280pt;}
.ws4{word-spacing:-13.534613pt;}
.ws3d{word-spacing:-13.524480pt;}
.ws7{word-spacing:-13.483520pt;}
.wsb{word-spacing:-13.424747pt;}
.ws2e{word-spacing:-13.422080pt;}
.ws3b{word-spacing:-13.409280pt;}
.wsd{word-spacing:-13.386347pt;}
.ws27{word-spacing:-13.373547pt;}
.ws30{word-spacing:-13.360747pt;}
.ws5{word-spacing:-13.306880pt;}
.ws38{word-spacing:-13.265920pt;}
.ws33{word-spacing:-13.263360pt;}
.ws32{word-spacing:-13.237547pt;}
.wse{word-spacing:-13.204480pt;}
.ws25{word-spacing:-13.197013pt;}
.ws13{word-spacing:-13.189013pt;}
.ws31{word-spacing:-13.160747pt;}
.ws36{word-spacing:-13.135147pt;}
.ws34{word-spacing:-13.122347pt;}
.ws11{word-spacing:-13.114880pt;}
.ws3a{word-spacing:-13.104747pt;}
.wsf{word-spacing:-12.894613pt;}
.ws3c{word-spacing:-12.884480pt;}
.ws2b{word-spacing:-12.746880pt;}
.ws29{word-spacing:-12.730880pt;}
.ws1{word-spacing:-12.720213pt;}
.ws12{word-spacing:-12.565547pt;}
.ws2f{word-spacing:-12.549547pt;}
.ws26{word-spacing:-12.474880pt;}
.ws15{word-spacing:-12.213653pt;}
.ws2c{word-spacing:-12.058987pt;}
.ws19{word-spacing:-12.034048pt;}
.ws17{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.909653pt;}
.ws1b{word-spacing:-8.418048pt;}
.ws10{word-spacing:-8.389120pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:72.537280pt;}
.ws1a{word-spacing:91.805867pt;}
.ws1f{word-spacing:113.566400pt;}
.ws20{word-spacing:113.843733pt;}
.ws1e{word-spacing:113.897067pt;}
.ws1c{word-spacing:114.110400pt;}
.ws23{word-spacing:114.776213pt;}
.ws22{word-spacing:115.053547pt;}
.ws8{word-spacing:147.574613pt;}
.ws24{word-spacing:154.678187pt;}
.ws1d{word-spacing:155.478187pt;}
.ws21{word-spacing:155.584853pt;}
.ws16{word-spacing:287.436053pt;}
.ws18{word-spacing:308.649088pt;}
._1b{margin-left:-16.038400pt;}
._3{margin-left:-8.777870pt;}
._7{margin-left:-7.338240pt;}
._6{margin-left:-6.411520pt;}
._5{margin-left:-5.462187pt;}
._1{margin-left:-3.740800pt;}
._0{margin-left:-2.672000pt;}
._2{margin-left:-1.725440pt;}
._a{width:1.318827pt;}
._e{width:2.837333pt;}
._8{width:3.968000pt;}
._f{width:5.004800pt;}
._10{width:5.900800pt;}
._11{width:7.539627pt;}
._2b{width:8.558720pt;}
._2a{width:9.832960pt;}
._c{width:10.951680pt;}
._d{width:12.179627pt;}
._2c{width:14.248960pt;}
._2d{width:15.503360pt;}
._32{width:16.821760pt;}
._b{width:17.835520pt;}
._9{width:18.782720pt;}
._12{width:19.755520pt;}
._29{width:21.314560pt;}
._13{width:22.256640pt;}
._14{width:23.157760pt;}
._40{width:24.104960pt;}
._31{width:25.163947pt;}
._30{width:26.260480pt;}
._2f{width:27.237973pt;}
._2e{width:28.221440pt;}
._33{width:29.747200pt;}
._42{width:31.289600pt;}
._41{width:32.193707pt;}
._43{width:33.194667pt;}
._3b{width:34.327040pt;}
._3c{width:35.580587pt;}
._45{width:36.541653pt;}
._46{width:38.389760pt;}
._21{width:42.455253pt;}
._44{width:47.181227pt;}
._25{width:48.928853pt;}
._3d{width:50.519040pt;}
._24{width:60.858880pt;}
._1f{width:67.800320pt;}
._47{width:80.901120pt;}
._48{width:82.155520pt;}
._3f{width:83.879040pt;}
._3e{width:84.954880pt;}
._1e{width:91.881387pt;}
._23{width:110.683093pt;}
._39{width:112.853120pt;}
._3a{width:114.720128pt;}
._4{width:118.478720pt;}
._15{width:130.671787pt;}
._36{width:137.737387pt;}
._27{width:139.915947pt;}
._20{width:141.643520pt;}
._28{width:145.097173pt;}
._1a{width:146.280960pt;}
._22{width:152.628267pt;}
._17{width:154.459093pt;}
._1d{width:160.339200pt;}
._26{width:169.164373pt;}
._19{width:170.911147pt;}
._1c{width:172.782507pt;}
._18{width:174.639787pt;}
._16{width:175.653120pt;}
._49{width:206.021120pt;}
._35{width:312.433067pt;}
._34{width:319.912960pt;}
._38{width:333.709227pt;}
._37{width:341.127851pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fse{font-size:37.248000pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.fs5{font-size:134.922498pt;}
.fs4{font-size:138.880000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:3.706667pt;}
.y2{bottom:4.000000pt;}
.y1c2{bottom:5.120000pt;}
.y1e2{bottom:5.466667pt;}
.y31{bottom:5.600000pt;}
.ya2{bottom:5.760000pt;}
.y128{bottom:6.080000pt;}
.y106{bottom:6.240000pt;}
.y129{bottom:7.040000pt;}
.y126{bottom:7.866667pt;}
.y124{bottom:8.000000pt;}
.ya0{bottom:8.154667pt;}
.y127{bottom:8.480000pt;}
.y44{bottom:8.960000pt;}
.y138{bottom:9.120000pt;}
.y49{bottom:10.400000pt;}
.y16{bottom:10.880000pt;}
.y18e{bottom:11.933333pt;}
.y1bf{bottom:12.480000pt;}
.y226{bottom:13.120000pt;}
.y171{bottom:15.866667pt;}
.y180{bottom:16.160000pt;}
.y14e{bottom:16.506667pt;}
.y9a{bottom:16.546667pt;}
.y158{bottom:16.573333pt;}
.ybf{bottom:16.800000pt;}
.y163{bottom:16.840000pt;}
.y18c{bottom:16.986667pt;}
.yd0{bottom:17.600000pt;}
.y101{bottom:19.840000pt;}
.ye7{bottom:20.026667pt;}
.y16f{bottom:20.733333pt;}
.y1c1{bottom:21.440000pt;}
.y1e1{bottom:21.626667pt;}
.y141{bottom:22.400000pt;}
.y17e{bottom:22.426667pt;}
.y105{bottom:22.560000pt;}
.y145{bottom:23.680000pt;}
.y9f{bottom:24.474667pt;}
.y137{bottom:25.440000pt;}
.y1be{bottom:28.800000pt;}
.y225{bottom:29.440000pt;}
.ybe{bottom:33.120000pt;}
.y162{bottom:33.160000pt;}
.y122{bottom:33.786667pt;}
.ycf{bottom:33.920000pt;}
.y1e0{bottom:34.426667pt;}
.y100{bottom:36.040000pt;}
.y30{bottom:37.312000pt;}
.y140{bottom:38.720000pt;}
.y104{bottom:38.880000pt;}
.y144{bottom:40.000000pt;}
.y9e{bottom:40.794667pt;}
.y1bd{bottom:41.440000pt;}
.y2f{bottom:41.632000pt;}
.y136{bottom:41.760000pt;}
.y43{bottom:43.200000pt;}
.y48{bottom:44.640000pt;}
.y17c{bottom:45.280000pt;}
.y224{bottom:45.760000pt;}
.y14b{bottom:45.826667pt;}
.y155{bottom:45.920000pt;}
.y18a{bottom:45.986667pt;}
.y16d{bottom:46.880000pt;}
.yd2{bottom:49.440000pt;}
.y161{bottom:49.480000pt;}
.yce{bottom:50.240000pt;}
.y103{bottom:51.520000pt;}
.y13f{bottom:55.040000pt;}
.y216{bottom:55.232000pt;}
.y143{bottom:56.320000pt;}
.y9d{bottom:56.954667pt;}
.y173{bottom:57.413333pt;}
.y135{bottom:58.080000pt;}
.y182{bottom:58.106667pt;}
.y165{bottom:59.013333pt;}
.y223{bottom:62.080000pt;}
.ya1{bottom:62.432000pt;}
.y147{bottom:64.186667pt;}
.yd3{bottom:64.192000pt;}
.y150{bottom:64.253333pt;}
.y96{bottom:64.346667pt;}
.y160{bottom:65.640000pt;}
.ycd{bottom:66.400000pt;}
.y1c3{bottom:70.592000pt;}
.y13e{bottom:71.200000pt;}
.y255{bottom:73.152000pt;}
.y9c{bottom:73.274667pt;}
.y174{bottom:74.533333pt;}
.y42{bottom:77.280000pt;}
.y183{bottom:77.760000pt;}
.y166{bottom:78.173333pt;}
.y47{bottom:78.720000pt;}
.y16e{bottom:90.693333pt;}
.y17d{bottom:91.426667pt;}
.y175{bottom:91.653333pt;}
.y18b{bottom:94.013333pt;}
.y167{bottom:97.306667pt;}
.y184{bottom:97.413333pt;}
.ybc{bottom:97.952000pt;}
.ye5{bottom:98.432000pt;}
.y281{bottom:100.992000pt;}
.y240{bottom:101.312000pt;}
.ycb{bottom:102.432000pt;}
.y1d0{bottom:102.592000pt;}
.y221{bottom:103.712000pt;}
.y151{bottom:106.146667pt;}
.y249{bottom:106.432000pt;}
.y15e{bottom:107.072000pt;}
.y176{bottom:108.773333pt;}
.y14c{bottom:109.186667pt;}
.y3f{bottom:110.912000pt;}
.y41{bottom:111.520000pt;}
.y1f1{bottom:111.872000pt;}
.y46{bottom:112.960000pt;}
.ybb{bottom:114.112000pt;}
.ye4{bottom:116.192000pt;}
.y168{bottom:116.480000pt;}
.y185{bottom:117.053333pt;}
.y1bb{bottom:117.152000pt;}
.y254{bottom:117.472000pt;}
.yba{bottom:118.752000pt;}
.y156{bottom:119.066667pt;}
.y116{bottom:119.232000pt;}
.y85{bottom:120.672000pt;}
.ye3{bottom:120.832000pt;}
.y215{bottom:121.472000pt;}
.y68{bottom:122.752000pt;}
.y22d{bottom:124.832000pt;}
.y27d{bottom:125.312000pt;}
.y177{bottom:125.920000pt;}
.y280{bottom:127.872000pt;}
.y23f{bottom:128.192000pt;}
.yca{bottom:129.312000pt;}
.y1cf{bottom:130.432000pt;}
.yb9{bottom:130.912000pt;}
.y9b{bottom:132.192000pt;}
.y248{bottom:133.312000pt;}
.y15d{bottom:133.946667pt;}
.ye2{bottom:134.106667pt;}
.y1ce{bottom:135.066667pt;}
.y14{bottom:135.226667pt;}
.y169{bottom:135.613333pt;}
.y186{bottom:136.706667pt;}
.y148{bottom:137.466667pt;}
.y40{bottom:138.426667pt;}
.y1f0{bottom:138.746667pt;}
.y263{bottom:139.386667pt;}
.yfe{bottom:140.986667pt;}
.y178{bottom:143.040000pt;}
.y13c{bottom:144.026667pt;}
.y209{bottom:144.186667pt;}
.y253{bottom:144.346667pt;}
.yf6{bottom:146.106667pt;}
.y1cd{bottom:147.226667pt;}
.y152{bottom:148.000000pt;}
.y2e{bottom:151.066667pt;}
.y22c{bottom:151.546667pt;}
.y262{bottom:152.026667pt;}
.y27c{bottom:152.186667pt;}
.y67{bottom:152.666667pt;}
.y27f{bottom:154.586667pt;}
.y16a{bottom:154.786667pt;}
.y23e{bottom:155.066667pt;}
.yc9{bottom:156.026667pt;}
.y187{bottom:156.346667pt;}
.y13{bottom:157.146667pt;}
.y275{bottom:157.626667pt;}
.y84{bottom:158.266667pt;}
.y142{bottom:158.906667pt;}
.y179{bottom:160.160000pt;}
.y15c{bottom:160.666667pt;}
.y133{bottom:160.986667pt;}
.yb8{bottom:164.026667pt;}
.y1ef{bottom:165.626667pt;}
.y220{bottom:167.226667pt;}
.yfd{bottom:167.866667pt;}
.y1ba{bottom:170.906667pt;}
.y208{bottom:171.066667pt;}
.y252{bottom:171.226667pt;}
.ye1{bottom:171.706667pt;}
.yf5{bottom:172.986667pt;}
.y16b{bottom:173.920000pt;}
.y188{bottom:176.000000pt;}
.y17a{bottom:177.280000pt;}
.y1a9{bottom:178.426667pt;}
.y27b{bottom:179.066667pt;}
.y214{bottom:181.146667pt;}
.y27e{bottom:181.466667pt;}
.y23d{bottom:181.946667pt;}
.y66{bottom:182.746667pt;}
.yc8{bottom:182.906667pt;}
.y274{bottom:184.506667pt;}
.y15b{bottom:187.546667pt;}
.y132{bottom:187.866667pt;}
.y2d{bottom:188.506667pt;}
.y1cc{bottom:189.146667pt;}
.y153{bottom:189.893333pt;}
.yb6{bottom:190.906667pt;}
.y1ee{bottom:192.506667pt;}
.y16c{bottom:193.053333pt;}
.y21f{bottom:194.106667pt;}
.y17b{bottom:194.400000pt;}
.yfc{bottom:194.746667pt;}
.y189{bottom:195.653333pt;}
.y83{bottom:195.706667pt;}
.yb7{bottom:196.186667pt;}
.y247{bottom:197.626667pt;}
.y251{bottom:198.106667pt;}
.ye0{bottom:198.586667pt;}
.y12{bottom:198.906667pt;}
.yf4{bottom:199.866667pt;}
.y170{bottom:204.640000pt;}
.y18d{bottom:205.186667pt;}
.y1a8{bottom:205.306667pt;}
.y27a{bottom:205.946667pt;}
.y213{bottom:208.026667pt;}
.y1b9{bottom:208.346667pt;}
.y17f{bottom:208.640000pt;}
.y207{bottom:209.466667pt;}
.y149{bottom:210.786667pt;}
.y273{bottom:211.386667pt;}
.yc7{bottom:212.506667pt;}
.y65{bottom:212.666667pt;}
.y15a{bottom:214.426667pt;}
.y131{bottom:214.746667pt;}
.y1cb{bottom:216.026667pt;}
.yb5{bottom:217.786667pt;}
.y95{bottom:218.560000pt;}
.y1ed{bottom:219.226667pt;}
.y23c{bottom:219.386667pt;}
.y21e{bottom:220.986667pt;}
.yfb{bottom:221.466667pt;}
.y246{bottom:224.506667pt;}
.ydf{bottom:225.466667pt;}
.y2c{bottom:226.106667pt;}
.yf3{bottom:226.746667pt;}
.y14f{bottom:230.240000pt;}
.y154{bottom:231.746667pt;}
.y1a7{bottom:232.186667pt;}
.y279{bottom:232.666667pt;}
.y82{bottom:233.306667pt;}
.y212{bottom:234.906667pt;}
.y1b8{bottom:235.226667pt;}
.y250{bottom:235.546667pt;}
.yff{bottom:236.026667pt;}
.y272{bottom:238.266667pt;}
.y97{bottom:241.053333pt;}
.y159{bottom:241.306667pt;}
.y130{bottom:241.626667pt;}
.y64{bottom:242.586667pt;}
.y1ca{bottom:242.906667pt;}
.yb4{bottom:244.666667pt;}
.y23b{bottom:246.266667pt;}
.y21d{bottom:247.706667pt;}
.y1de{bottom:248.346667pt;}
.y206{bottom:248.986667pt;}
.yc6{bottom:250.746667pt;}
.y245{bottom:251.386667pt;}
.yde{bottom:252.346667pt;}
.yf2{bottom:253.466667pt;}
.y15f{bottom:255.226667pt;}
.y157{bottom:255.493333pt;}
.y1ec{bottom:256.866667pt;}
.ybd{bottom:259.106667pt;}
.y278{bottom:259.586667pt;}
.y1b7{bottom:262.146667pt;}
.y24f{bottom:262.466667pt;}
.y98{bottom:263.333333pt;}
.y2b{bottom:263.586667pt;}
.y211{bottom:264.546667pt;}
.yd1{bottom:264.706667pt;}
.y11{bottom:267.266667pt;}
.y12f{bottom:268.546667pt;}
.y1a6{bottom:269.826667pt;}
.y81{bottom:270.786667pt;}
.y63{bottom:272.706667pt;}
.y23a{bottom:273.186667pt;}
.y21c{bottom:274.626667pt;}
.y1dd{bottom:275.266667pt;}
.y271{bottom:275.746667pt;}
.ydd{bottom:279.266667pt;}
.y115{bottom:280.386667pt;}
.yf1{bottom:283.266667pt;}
.y1eb{bottom:283.746667pt;}
.y14a{bottom:284.093333pt;}
.y22b{bottom:285.986667pt;}
.y205{bottom:286.466667pt;}
.y1b6{bottom:289.026667pt;}
.y24e{bottom:289.346667pt;}
.y99{bottom:290.080000pt;}
.y261{bottom:291.266667pt;}
.y12e{bottom:295.426667pt;}
.y1a5{bottom:296.546667pt;}
.y3e{bottom:298.946667pt;}
.y239{bottom:300.066667pt;}
.y2a{bottom:301.186667pt;}
.y21b{bottom:301.506667pt;}
.y1dc{bottom:302.146667pt;}
.y62{bottom:302.626667pt;}
.ydc{bottom:306.146667pt;}
.y114{bottom:307.266667pt;}
.y14d{bottom:307.840000pt;}
.y80{bottom:308.386667pt;}
.y22a{bottom:312.866667pt;}
.y204{bottom:313.346667pt;}
.y244{bottom:315.746667pt;}
.y1b5{bottom:315.906667pt;}
.y1ea{bottom:321.186667pt;}
.yf0{bottom:321.346667pt;}
.y12d{bottom:322.146667pt;}
.y1a4{bottom:323.426667pt;}
.y238{bottom:326.946667pt;}
.y21a{bottom:328.386667pt;}
.y270{bottom:329.506667pt;}
.ydb{bottom:333.026667pt;}
.y181{bottom:333.440000pt;}
.y10{bottom:335.586667pt;}
.y3d{bottom:336.546667pt;}
.y29{bottom:338.626667pt;}
.y1db{bottom:339.586667pt;}
.y61{bottom:340.226667pt;}
.y1b4{bottom:342.626667pt;}
.y113{bottom:344.866667pt;}
.y7f{bottom:345.826667pt;}
.y1e9{bottom:348.066667pt;}
.y1a3{bottom:350.306667pt;}
.y24d{bottom:353.666667pt;}
.y219{bottom:355.266667pt;}
.y26f{bottom:356.386667pt;}
.yef{bottom:358.946667pt;}
.yda{bottom:359.746667pt;}
.y1c9{bottom:361.026667pt;}
.y237{bottom:364.386667pt;}
.y1da{bottom:366.466667pt;}
.y203{bottom:367.106667pt;}
.y1b3{bottom:369.506667pt;}
.y112{bottom:371.586667pt;}
.y3c{bottom:373.986667pt;}
.y1e8{bottom:374.946667pt;}
.y12c{bottom:375.586667pt;}
.y28{bottom:376.226667pt;}
.y1a2{bottom:377.186667pt;}
.y60{bottom:377.666667pt;}
.y24c{bottom:380.546667pt;}
.y218{bottom:382.146667pt;}
.y26e{bottom:383.266667pt;}
.y7e{bottom:383.426667pt;}
.yee{bottom:385.666667pt;}
.y1c8{bottom:387.906667pt;}
.y236{bottom:391.266667pt;}
.y1c0{bottom:392.706667pt;}
.y1d9{bottom:393.346667pt;}
.y202{bottom:393.986667pt;}
.y222{bottom:396.066667pt;}
.y1b2{bottom:396.386667pt;}
.yd9{bottom:397.346667pt;}
.y111{bottom:398.466667pt;}
.y12b{bottom:400.066667pt;}
.y1e7{bottom:401.826667pt;}
.yf{bottom:403.906667pt;}
.y1a1{bottom:404.066667pt;}
.y5f{bottom:404.546667pt;}
.y24b{bottom:407.426667pt;}
.y26d{bottom:410.146667pt;}
.y3b{bottom:411.586667pt;}
.yed{bottom:412.546667pt;}
.y27{bottom:413.666667pt;}
.y1c7{bottom:414.626667pt;}
.y235{bottom:418.146667pt;}
.y1d8{bottom:420.226667pt;}
.y201{bottom:420.706667pt;}
.y7d{bottom:420.866667pt;}
.y1b1{bottom:423.266667pt;}
.yd8{bottom:424.226667pt;}
.y12a{bottom:424.546667pt;}
.y110{bottom:425.346667pt;}
.y1e6{bottom:428.706667pt;}
.y1a0{bottom:430.946667pt;}
.y26c{bottom:437.026667pt;}
.yec{bottom:439.426667pt;}
.y5e{bottom:442.146667pt;}
.y1c6{bottom:444.386667pt;}
.y234{bottom:445.026667pt;}
.y1d7{bottom:447.106667pt;}
.y200{bottom:447.586667pt;}
.y3a{bottom:449.026667pt;}
.y1b0{bottom:450.146667pt;}
.yd7{bottom:451.106667pt;}
.y26{bottom:451.266667pt;}
.y10f{bottom:452.226667pt;}
.y1e5{bottom:455.426667pt;}
.y19f{bottom:457.666667pt;}
.y7c{bottom:458.466667pt;}
.yeb{bottom:466.306667pt;}
.y233{bottom:471.746667pt;}
.ye{bottom:472.226667pt;}
.y121{bottom:473.506667pt;}
.y1d6{bottom:473.986667pt;}
.y1ff{bottom:474.466667pt;}
.y1af{bottom:477.026667pt;}
.y10e{bottom:479.106667pt;}
.y5d{bottom:479.586667pt;}
.y1e4{bottom:482.306667pt;}
.y1c5{bottom:482.466667pt;}
.y19e{bottom:484.546667pt;}
.y7b{bottom:485.346667pt;}
.y39{bottom:486.626667pt;}
.yd6{bottom:488.546667pt;}
.y25{bottom:488.706667pt;}
.yea{bottom:493.186667pt;}
.y266{bottom:495.266667pt;}
.y232{bottom:498.626667pt;}
.y125{bottom:498.946667pt;}
.y1fe{bottom:501.346667pt;}
.ye6{bottom:502.466667pt;}
.y1ae{bottom:503.746667pt;}
.y1df{bottom:504.546667pt;}
.y10d{bottom:506.013333pt;}
.y5c{bottom:506.493333pt;}
.yc5{bottom:507.133333pt;}
.y1e3{bottom:509.213333pt;}
.y19d{bottom:511.453333pt;}
.y7a{bottom:512.253333pt;}
.ye9{bottom:520.093333pt;}
.y260{bottom:522.173333pt;}
.y1f2{bottom:523.773333pt;}
.y38{bottom:524.253333pt;}
.y231{bottom:525.533333pt;}
.y24{bottom:526.333333pt;}
.y123{bottom:526.973333pt;}
.y1fd{bottom:528.253333pt;}
.y1ad{bottom:530.653333pt;}
.y10c{bottom:532.733333pt;}
.y5b{bottom:533.373333pt;}
.yc4{bottom:534.013333pt;}
.yd{bottom:535.133333pt;}
.y19b{bottom:538.333333pt;}
.y79{bottom:538.973333pt;}
.y210{bottom:539.773333pt;}
.y13b{bottom:542.013333pt;}
.y19c{bottom:543.613333pt;}
.yb3{bottom:546.973333pt;}
.y94{bottom:547.133333pt;}
.y25f{bottom:549.053333pt;}
.y24a{bottom:552.413333pt;}
.y1fc{bottom:555.133333pt;}
.y134{bottom:555.773333pt;}
.y1ac{bottom:557.533333pt;}
.y10b{bottom:559.613333pt;}
.y5a{bottom:560.253333pt;}
.yd5{bottom:560.573333pt;}
.yc3{bottom:560.733333pt;}
.y37{bottom:561.693333pt;}
.y230{bottom:563.133333pt;}
.y23{bottom:563.773333pt;}
.y172{bottom:564.000000pt;}
.y19a{bottom:565.213333pt;}
.y78{bottom:565.853333pt;}
.y243{bottom:567.933333pt;}
.y13a{bottom:568.893333pt;}
.yb2{bottom:573.693333pt;}
.y93{bottom:574.013333pt;}
.y229{bottom:575.933333pt;}
.y20f{bottom:579.293333pt;}
.y1fb{bottom:581.853333pt;}
.y1ab{bottom:584.413333pt;}
.y10a{bottom:586.493333pt;}
.y59{bottom:587.133333pt;}
.yc2{bottom:587.613333pt;}
.y22f{bottom:590.013333pt;}
.y199{bottom:592.093333pt;}
.y77{bottom:592.733333pt;}
.y139{bottom:595.773333pt;}
.y36{bottom:599.293333pt;}
.yb1{bottom:600.573333pt;}
.y92{bottom:600.893333pt;}
.y22{bottom:601.373333pt;}
.y228{bottom:602.653333pt;}
.yc{bottom:605.533333pt;}
.y242{bottom:606.173333pt;}
.y1fa{bottom:608.733333pt;}
.y13d{bottom:609.693333pt;}
.y1aa{bottom:611.293333pt;}
.y109{bottom:613.373333pt;}
.y58{bottom:613.853333pt;}
.yc1{bottom:614.493333pt;}
.y20e{bottom:616.733333pt;}
.y198{bottom:618.973333pt;}
.y76{bottom:619.613333pt;}
.y277{bottom:620.413333pt;}
.yb0{bottom:627.453333pt;}
.y91{bottom:627.613333pt;}
.y25e{bottom:629.533333pt;}
.y120{bottom:632.253333pt;}
.y227{bottom:632.413333pt;}
.y1f9{bottom:635.613333pt;}
.y35{bottom:636.573333pt;}
.yfa{bottom:638.173333pt;}
.y21{bottom:638.813333pt;}
.y108{bottom:640.253333pt;}
.y57{bottom:640.733333pt;}
.yc0{bottom:641.373333pt;}
.y20d{bottom:643.613333pt;}
.y1d5{bottom:645.693333pt;}
.y26b{bottom:646.333333pt;}
.y75{bottom:646.493333pt;}
.y11f{bottom:650.173333pt;}
.yaf{bottom:654.333333pt;}
.y90{bottom:654.493333pt;}
.ycc{bottom:656.093333pt;}
.y197{bottom:656.413333pt;}
.y276{bottom:659.773333pt;}
.y1f8{bottom:662.493333pt;}
.yf9{bottom:665.053333pt;}
.y25d{bottom:667.133333pt;}
.y56{bottom:667.613333pt;}
.y107{bottom:669.853333pt;}
.y20c{bottom:670.493333pt;}
.y26a{bottom:673.213333pt;}
.y74{bottom:673.373333pt;}
.y1d4{bottom:675.453333pt;}
.yb{bottom:675.933333pt;}
.y20{bottom:676.413333pt;}
.y11e{bottom:678.173333pt;}
.yae{bottom:681.213333pt;}
.y8f{bottom:681.373333pt;}
.y196{bottom:683.293333pt;}
.yf8{bottom:691.773333pt;}
.y25c{bottom:694.013333pt;}
.y55{bottom:694.493333pt;}
.y34{bottom:694.813333pt;}
.y146{bottom:695.040000pt;}
.y22e{bottom:697.373333pt;}
.y1f7{bottom:699.933333pt;}
.y73{bottom:700.093333pt;}
.y11d{bottom:706.173333pt;}
.yad{bottom:708.093333pt;}
.y8e{bottom:710.973333pt;}
.y195{bottom:712.893333pt;}
.y1d3{bottom:713.533333pt;}
.y1f{bottom:713.853333pt;}
.yf7{bottom:718.653333pt;}
.y25b{bottom:720.733333pt;}
.y54{bottom:721.373333pt;}
.y241{bottom:724.253333pt;}
.y269{bottom:726.813333pt;}
.y72{bottom:726.973333pt;}
.y11c{bottom:734.173333pt;}
.y20b{bottom:734.813333pt;}
.ya{bottom:735.133333pt;}
.y1f6{bottom:737.533333pt;}
.y8d{bottom:741.693333pt;}
.yac{bottom:745.533333pt;}
.y25a{bottom:747.613333pt;}
.y53{bottom:748.253333pt;}
.y194{bottom:751.133333pt;}
.y1e{bottom:751.453333pt;}
.y71{bottom:753.853333pt;}
.y20a{bottom:761.733333pt;}
.y11b{bottom:762.213333pt;}
.y33{bottom:763.173333pt;}
.y1f5{bottom:764.453333pt;}
.y9{bottom:765.093333pt;}
.y268{bottom:765.413333pt;}
.yab{bottom:772.453333pt;}
.y258{bottom:774.533333pt;}
.y1d2{bottom:777.893333pt;}
.y8c{bottom:779.173333pt;}
.y259{bottom:779.813333pt;}
.y70{bottom:780.773333pt;}
.y52{bottom:785.733333pt;}
.y15{bottom:788.453333pt;}
.y193{bottom:788.613333pt;}
.y102{bottom:788.933333pt;}
.y1d{bottom:789.093333pt;}
.y11a{bottom:790.213333pt;}
.y1f4{bottom:791.333333pt;}
.y164{bottom:798.240000pt;}
.yaa{bottom:799.333333pt;}
.y257{bottom:801.413333pt;}
.y267{bottom:804.773333pt;}
.y8b{bottom:806.053333pt;}
.y32{bottom:806.533333pt;}
.y6f{bottom:807.653333pt;}
.y8{bottom:811.813333pt;}
.y51{bottom:812.613333pt;}
.y1bc{bottom:815.013333pt;}
.y192{bottom:815.493333pt;}
.y119{bottom:818.213333pt;}
.ya9{bottom:826.213333pt;}
.y1c{bottom:826.533333pt;}
.y256{bottom:828.293333pt;}
.y8a{bottom:832.933333pt;}
.y6e{bottom:834.533333pt;}
.y50{bottom:839.493333pt;}
.y191{bottom:842.373333pt;}
.y45{bottom:846.693333pt;}
.ya8{bottom:853.093333pt;}
.y265{bottom:855.173333pt;}
.y1f3{bottom:856.613333pt;}
.y118{bottom:857.893333pt;}
.y89{bottom:859.813333pt;}
.y6d{bottom:861.413333pt;}
.y1b{bottom:864.133333pt;}
.y4f{bottom:866.373333pt;}
.y190{bottom:869.253333pt;}
.ya7{bottom:879.813333pt;}
.y7{bottom:880.293333pt;}
.y264{bottom:884.773333pt;}
.y88{bottom:886.693333pt;}
.y6c{bottom:888.133333pt;}
.y4e{bottom:893.253333pt;}
.y117{bottom:896.133333pt;}
.y1a{bottom:901.573333pt;}
.ya6{bottom:906.693333pt;}
.y87{bottom:913.413333pt;}
.y6b{bottom:915.013333pt;}
.y4d{bottom:919.973333pt;}
.y18f{bottom:922.853333pt;}
.y6{bottom:927.813333pt;}
.ya5{bottom:933.573333pt;}
.y19{bottom:939.173333pt;}
.y6a{bottom:941.893333pt;}
.y86{bottom:943.173333pt;}
.y4c{bottom:946.853333pt;}
.y1d1{bottom:949.733333pt;}
.y217{bottom:955.013333pt;}
.ya4{bottom:960.453333pt;}
.y5{bottom:965.253333pt;}
.y69{bottom:968.773333pt;}
.y4b{bottom:973.733333pt;}
.y18{bottom:976.613333pt;}
.ya3{bottom:987.333333pt;}
.y1c4{bottom:992.613333pt;}
.y4{bottom:1002.693333pt;}
.y4a{bottom:1012.320000pt;}
.y17{bottom:1014.240000pt;}
.yd4{bottom:1019.520000pt;}
.y3{bottom:1052.960000pt;}
.y1{bottom:1066.880000pt;}
.h2{height:17.920000pt;}
.hc{height:19.520000pt;}
.h1b{height:19.680000pt;}
.h2c{height:23.200000pt;}
.h2a{height:24.000000pt;}
.h27{height:26.720000pt;}
.h29{height:26.752000pt;}
.ha{height:29.440000pt;}
.h23{height:32.832000pt;}
.h3b{height:34.240000pt;}
.h1d{height:34.374375pt;}
.h1c{height:36.920625pt;}
.h36{height:37.047937pt;}
.h2b{height:40.828125pt;}
.h3d{height:41.440000pt;}
.h1a{height:42.745000pt;}
.h1f{height:45.760000pt;}
.h22{height:46.370000pt;}
.h31{height:47.742188pt;}
.h24{height:48.832000pt;}
.h1e{height:52.834688pt;}
.h33{height:52.962000pt;}
.h15{height:54.567500pt;}
.h3{height:58.563750pt;}
.h3f{height:59.128125pt;}
.h12{height:59.312500pt;}
.h39{height:60.288750pt;}
.h13{height:60.519362pt;}
.h28{height:60.937500pt;}
.h10{height:61.754062pt;}
.h21{height:62.240000pt;}
.h18{height:65.531250pt;}
.h14{height:66.625000pt;}
.h2f{height:69.120000pt;}
.hb{height:69.395625pt;}
.h2d{height:70.720000pt;}
.h17{height:70.830417pt;}
.hf{height:71.296875pt;}
.h3e{height:74.880000pt;}
.h34{height:78.432000pt;}
.h20{height:79.200000pt;}
.h26{height:80.192000pt;}
.h2e{height:84.000000pt;}
.h19{height:86.080000pt;}
.h4{height:88.144687pt;}
.h5{height:96.589687pt;}
.hd{height:111.515625pt;}
.h7{height:121.960938pt;}
.h8{height:122.980312pt;}
.h9{height:125.040479pt;}
.he{height:129.472000pt;}
.h11{height:130.880000pt;}
.h6{height:141.984375pt;}
.h3c{height:147.226667pt;}
.h3a{height:165.440000pt;}
.h25{height:217.626667pt;}
.h35{height:229.920000pt;}
.h38{height:230.560000pt;}
.h37{height:233.920000pt;}
.h32{height:280.800000pt;}
.h16{height:315.360000pt;}
.h30{height:333.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:47.072000pt;}
.w12{width:49.920000pt;}
.w1f{width:50.880000pt;}
.w1b{width:55.360000pt;}
.w1d{width:62.080000pt;}
.w19{width:62.112000pt;}
.w1a{width:65.440000pt;}
.w1c{width:65.632000pt;}
.w1e{width:70.112000pt;}
.w20{width:70.912000pt;}
.w16{width:122.432000pt;}
.w18{width:123.072000pt;}
.w15{width:128.992000pt;}
.w17{width:133.466667pt;}
.w26{width:177.506667pt;}
.w27{width:181.506667pt;}
.w28{width:188.066667pt;}
.w2{width:188.666667pt;}
.w3{width:188.706667pt;}
.w11{width:240.066667pt;}
.w13{width:252.706667pt;}
.w14{width:257.826667pt;}
.we{width:265.186667pt;}
.w5{width:265.666667pt;}
.wc{width:378.013333pt;}
.wd{width:390.493333pt;}
.w25{width:404.160000pt;}
.w24{width:468.093333pt;}
.w23{width:469.600000pt;}
.w22{width:469.693333pt;}
.w9{width:539.360000pt;}
.w10{width:551.813333pt;}
.wf{width:552.093333pt;}
.wa{width:553.733333pt;}
.w7{width:560.453333pt;}
.w8{width:562.173333pt;}
.w21{width:565.093333pt;}
.w29{width:565.733333pt;}
.wb{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:4.160000pt;}
.x44{left:5.120000pt;}
.x40{left:6.400000pt;}
.x46{left:7.360000pt;}
.x3d{left:9.120000pt;}
.x49{left:10.720000pt;}
.x3a{left:12.480000pt;}
.x48{left:14.080000pt;}
.x30{left:16.186667pt;}
.x12{left:19.866667pt;}
.x31{left:22.714667pt;}
.x43{left:24.800000pt;}
.x42{left:26.106667pt;}
.x36{left:27.520000pt;}
.x45{left:28.800000pt;}
.x38{left:29.760000pt;}
.x47{left:32.160000pt;}
.x10{left:34.280000pt;}
.x4f{left:35.520000pt;}
.x58{left:38.466667pt;}
.x4e{left:40.253333pt;}
.x5f{left:43.013333pt;}
.x4d{left:44.986667pt;}
.x57{left:47.933333pt;}
.x4c{left:49.733333pt;}
.x60{left:51.653333pt;}
.x5d{left:53.946667pt;}
.x59{left:56.613333pt;}
.x50{left:58.053333pt;}
.x22{left:63.840000pt;}
.x53{left:65.666667pt;}
.x3{left:94.266667pt;}
.x33{left:99.720000pt;}
.x52{left:100.800000pt;}
.x35{left:102.240000pt;}
.x51{left:105.146667pt;}
.x1{left:113.472000pt;}
.x19{left:114.592000pt;}
.x2d{left:116.032000pt;}
.x2c{left:117.311988pt;}
.x14{left:118.912000pt;}
.x71{left:121.791988pt;}
.x75{left:123.871988pt;}
.x20{left:126.720000pt;}
.xb{left:128.031988pt;}
.x6c{left:132.351988pt;}
.x5e{left:136.346667pt;}
.xa{left:138.106655pt;}
.x5c{left:139.706667pt;}
.x1f{left:141.466655pt;}
.x62{left:145.666667pt;}
.x5b{left:150.373333pt;}
.x1e{left:161.466655pt;}
.x55{left:164.026667pt;}
.x4a{left:165.626667pt;}
.x32{left:166.586667pt;}
.x54{left:170.786667pt;}
.x4b{left:172.506667pt;}
.x24{left:175.386643pt;}
.x25{left:177.466655pt;}
.x6b{left:180.040000pt;}
.x5{left:189.186667pt;}
.x56{left:198.560000pt;}
.x15{left:200.994667pt;}
.xc{left:204.826655pt;}
.x27{left:207.226667pt;}
.x23{left:210.106667pt;}
.x21{left:215.013333pt;}
.x28{left:216.826667pt;}
.x2f{left:225.160000pt;}
.x6{left:227.426655pt;}
.x3b{left:230.146667pt;}
.x13{left:244.546655pt;}
.x18{left:249.154667pt;}
.x72{left:255.586655pt;}
.x29{left:263.906667pt;}
.xe{left:266.466655pt;}
.x67{left:273.026655pt;}
.x17{left:290.301333pt;}
.x37{left:296.866667pt;}
.x2{left:302.146667pt;}
.x26{left:305.506655pt;}
.x8{left:319.746655pt;}
.x61{left:329.760000pt;}
.x5a{left:330.906667pt;}
.x16{left:348.701333pt;}
.x7{left:352.546655pt;}
.x3e{left:353.666667pt;}
.x11{left:373.346667pt;}
.xd{left:396.893322pt;}
.x1a{left:404.381333pt;}
.x1b{left:407.901333pt;}
.x1c{left:410.781333pt;}
.x34{left:420.733333pt;}
.x1d{left:422.821333pt;}
.x2e{left:440.413333pt;}
.x73{left:470.493310pt;}
.x74{left:476.573322pt;}
.x3f{left:484.093333pt;}
.x4{left:490.813333pt;}
.x6a{left:492.413333pt;}
.x66{left:498.493333pt;}
.x9{left:500.093322pt;}
.x65{left:502.493333pt;}
.xf{left:513.373333pt;}
.x39{left:555.493333pt;}
.x68{left:575.173310pt;}
.x69{left:579.333322pt;}
.x63{left:591.173310pt;}
.x64{left:597.413322pt;}
.x6f{left:602.373310pt;}
.x41{left:607.653333pt;}
.x70{left:610.693322pt;}
.x2a{left:643.173310pt;}
.x2b{left:647.333322pt;}
.x6d{left:670.533310pt;}
.x6e{left:676.773322pt;}
}




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