
    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_3142181c900d8d0b953fb2f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_9ea0b7d1968377d9568a3120.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_ca3ec6958748183b66eab316.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_bd8cd79c9ab549cf4aa2615f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897949;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_0f8cbbda180e7b6d85a0cdf5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ddbb146626df34ad2b29cb02.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3321cdce93f4a3da8f99eacc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.768555;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_0dbc4a062b9de4547926c685.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120117;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_e7d54e0ddcce3e0fe3e1b68c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_266d5caa086390d7cf5a5523.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120117;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8e8b7f75b22a4e654f398323.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.640625;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_a720d5dc50e52284a28f15d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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_5510f96cbc2851af7cf660a4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.767090;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_a0fd131df1bd31db091cfb06.woff2')format("woff");}.fff{font-family:fff;line-height:0.982910;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_edd51f1ff7cbdb6cd51efc14.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.640625;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_76b5e1eafa18b488713443d2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.115234;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_e808ba160394b4a8b0cd6019.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3edf49f389f1a68f080965c6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.897949;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.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-123.840000px;}
.v2{vertical-align:-82.800000px;}
.vd{vertical-align:-22.440000px;}
.v7{vertical-align:-14.400000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v8{vertical-align:8.640000px;}
.v9{vertical-align:11.520000px;}
.va{vertical-align:14.400000px;}
.vc{vertical-align:16.560000px;}
.vb{vertical-align:20.880000px;}
.ve{vertical-align:23.760000px;}
.vf{vertical-align:26.640000px;}
.v10{vertical-align:42.480000px;}
.ls2f{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.008000px;}
.ls4d{letter-spacing:-0.900000px;}
.ls19{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.720000px;}
.ls5c{letter-spacing:-0.678000px;}
.lsf{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.341400px;}
.ls21{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.270000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.144000px;}
.ls47{letter-spacing:-0.072000px;}
.ls5d{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.034560px;}
.ls58{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.008640px;}
.ls17{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.034560px;}
.ls33{letter-spacing:0.036000px;}
.ls44{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.090600px;}
.ls1f{letter-spacing:0.090720px;}
.ls48{letter-spacing:0.112200px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.223920px;}
.ls18{letter-spacing:0.256200px;}
.ls5e{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.264000px;}
.ls34{letter-spacing:0.269280px;}
.ls49{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.341400px;}
.ls30{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.379470px;}
.ls51{letter-spacing:0.385200px;}
.ls46{letter-spacing:0.408000px;}
.lsd{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.810720px;}
.ls50{letter-spacing:0.816480px;}
.ls2a{letter-spacing:0.864000px;}
.ls55{letter-spacing:0.973871px;}
.ls2b{letter-spacing:1.391287px;}
.ls1b{letter-spacing:1.512000px;}
.ls13{letter-spacing:1.584000px;}
.ls15{letter-spacing:1.872000px;}
.ls3a{letter-spacing:2.081520px;}
.ls20{letter-spacing:2.160000px;}
.ls4c{letter-spacing:2.304000px;}
.ls26{letter-spacing:2.448000px;}
.ls1e{letter-spacing:2.520000px;}
.ls3b{letter-spacing:2.801520px;}
.ls2d{letter-spacing:3.024000px;}
.ls3e{letter-spacing:3.521520px;}
.ls39{letter-spacing:3.543120px;}
.ls32{letter-spacing:4.352400px;}
.ls59{letter-spacing:4.464000px;}
.ls35{letter-spacing:4.659120px;}
.ls3f{letter-spacing:4.800240px;}
.ls52{letter-spacing:5.760000px;}
.ls4e{letter-spacing:6.480000px;}
.ls54{letter-spacing:9.504000px;}
.ls1d{letter-spacing:11.789280px;}
.ls36{letter-spacing:12.312000px;}
.ls41{letter-spacing:12.384000px;}
.ls2c{letter-spacing:13.104000px;}
.ls4b{letter-spacing:15.984000px;}
.ls57{letter-spacing:20.304000px;}
.ls42{letter-spacing:25.776000px;}
.ls45{letter-spacing:43.704720px;}
.ls43{letter-spacing:44.424720px;}
.ls6{letter-spacing:57.029760px;}
.ls16{letter-spacing:64.062720px;}
.ls5{letter-spacing:76.469760px;}
.ls8{letter-spacing:95.165760px;}
.ls7{letter-spacing:103.085760px;}
.ls40{letter-spacing:108.072000px;}
.ls9{letter-spacing:115.325760px;}
.ls27{letter-spacing:125.604000px;}
.ls29{letter-spacing:149.904000px;}
.ls24{letter-spacing:151.344000px;}
.ls28{letter-spacing:195.984000px;}
.ls4f{letter-spacing:211.032000px;}
.ls53{letter-spacing:311.832000px;}
.ls5a{letter-spacing:844.140000px;}
.ls0{letter-spacing:1406.532000px;}
.ls1{letter-spacing:1537.500000px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.ws5{word-spacing:-23.760120px;}
.ws24{word-spacing:-23.390640px;}
.ws7{word-spacing:-23.077320px;}
.wsa{word-spacing:-21.888000px;}
.ws8{word-spacing:-21.582720px;}
.ws13{word-spacing:-20.736000px;}
.ws12{word-spacing:-20.520000px;}
.ws3{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws1{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.944000px;}
.ws6{word-spacing:-19.872000px;}
.wsd{word-spacing:-19.800000px;}
.ws17{word-spacing:-19.728000px;}
.ws9{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.296000px;}
.wsc{word-spacing:-19.152000px;}
.ws14{word-spacing:-18.576000px;}
.ws2c{word-spacing:-16.873080px;}
.ws27{word-spacing:-16.632000px;}
.ws2a{word-spacing:-16.488000px;}
.ws28{word-spacing:-16.344000px;}
.ws29{word-spacing:-16.272000px;}
.ws2b{word-spacing:-16.128000px;}
.ws11{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.226440px;}
.ws25{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.886720px;}
.ws16{word-spacing:-13.770720px;}
.wsf{word-spacing:-13.501320px;}
.ws10{word-spacing:-13.410720px;}
.ws15{word-spacing:-13.229520px;}
.ws1a{word-spacing:-11.358600px;}
.ws1b{word-spacing:-11.246400px;}
.ws23{word-spacing:-11.186762px;}
.ws1e{word-spacing:-10.976400px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:21.636000px;}
.ws1c{word-spacing:38.355120px;}
.ws1f{word-spacing:288.731520px;}
.ws20{word-spacing:289.451520px;}
.ws21{word-spacing:367.395120px;}
.ws22{word-spacing:635.355120px;}
._39{margin-left:-128.936880px;}
._7{margin-left:-18.708000px;}
._3{margin-left:-17.316000px;}
._9{margin-left:-16.080000px;}
._5{margin-left:-11.220000px;}
._37{margin-left:-9.168000px;}
._36{margin-left:-8.064000px;}
._38{margin-left:-6.843840px;}
._8{margin-left:-5.292000px;}
._4{margin-left:-3.660000px;}
._6{margin-left:-2.556000px;}
._0{margin-left:-1.080000px;}
._1{width:1.188000px;}
._2{width:2.352000px;}
._14{width:3.480000px;}
._13{width:4.512000px;}
._12{width:6.096000px;}
._c{width:7.752000px;}
._b{width:9.144000px;}
._1b{width:10.800000px;}
._e{width:12.600000px;}
._d{width:13.608000px;}
._21{width:14.724000px;}
._f{width:15.756000px;}
._26{width:17.328000px;}
._25{width:18.408000px;}
._17{width:21.744000px;}
._10{width:22.824000px;}
._11{width:23.856000px;}
._1a{width:25.668000px;}
._18{width:27.288000px;}
._19{width:28.344000px;}
._27{width:30.024000px;}
._16{width:31.896000px;}
._15{width:33.048000px;}
._23{width:34.464000px;}
._43{width:35.472000px;}
._24{width:36.480000px;}
._35{width:38.106720px;}
._41{width:40.320000px;}
._2c{width:41.400000px;}
._2b{width:42.408000px;}
._30{width:43.954920px;}
._42{width:45.012000px;}
._20{width:46.152000px;}
._1f{width:47.304000px;}
._29{width:50.616000px;}
._28{width:51.840000px;}
._1e{width:64.817280px;}
._3f{width:74.664000px;}
._40{width:76.344000px;}
._2f{width:79.135680px;}
._32{width:82.234920px;}
._3c{width:85.037520px;}
._3e{width:89.555760px;}
._34{width:92.376000px;}
._2a{width:98.906400px;}
._3b{width:107.633280px;}
._3d{width:113.357520px;}
._2e{width:117.512760px;}
._1d{width:122.505120px;}
._33{width:139.713120px;}
._a{width:145.061040px;}
._22{width:149.904000px;}
._44{width:153.306720px;}
._31{width:168.346920px;}
._3a{width:181.810560px;}
._2d{width:195.976560px;}
._45{width:198.805440px;}
._1c{width:844.140000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs9{font-size:50.848916px;}
.fsa{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y251{bottom:3.585000px;}
.y295{bottom:4.680000px;}
.y103{bottom:4.860000px;}
.y299{bottom:5.760000px;}
.y20d{bottom:6.120000px;}
.y20e{bottom:6.480000px;}
.y21a{bottom:6.840000px;}
.y297{bottom:7.020000px;}
.y265{bottom:7.191000px;}
.y21d{bottom:7.200000px;}
.y25d{bottom:7.545000px;}
.y266{bottom:7.551000px;}
.y28b{bottom:7.725000px;}
.y262{bottom:8.805000px;}
.y210{bottom:9.000000px;}
.y213{bottom:9.540000px;}
.y216{bottom:9.900000px;}
.y28c{bottom:10.425000px;}
.y289{bottom:11.325000px;}
.y27a{bottom:11.340000px;}
.y275{bottom:11.505000px;}
.y271{bottom:11.520000px;}
.y258{bottom:12.045000px;}
.y22c{bottom:13.860000px;}
.y21b{bottom:15.480000px;}
.y25a{bottom:15.825000px;}
.y21e{bottom:15.840000px;}
.y25b{bottom:16.185000px;}
.y211{bottom:17.280000px;}
.y276{bottom:17.985000px;}
.y27b{bottom:18.000000px;}
.y286{bottom:18.165000px;}
.y214{bottom:18.180000px;}
.y217{bottom:18.540000px;}
.y254{bottom:20.325000px;}
.y250{bottom:20.865000px;}
.y237{bottom:21.600000px;}
.y219{bottom:23.940000px;}
.y21c{bottom:24.300000px;}
.y264{bottom:24.465000px;}
.y25c{bottom:24.825000px;}
.y296{bottom:24.840000px;}
.y25f{bottom:25.725000px;}
.y260{bottom:26.085000px;}
.y20f{bottom:26.280000px;}
.y106{bottom:26.820000px;}
.y215{bottom:27.180000px;}
.y20b{bottom:27.900000px;}
.y256{bottom:28.965000px;}
.y26a{bottom:29.160000px;}
.y255{bottom:29.325000px;}
.y109{bottom:29.700000px;}
.y239{bottom:30.060000px;}
.y26f{bottom:30.600000px;}
.y22b{bottom:31.140000px;}
.y253{bottom:37.605000px;}
.y246{bottom:38.160000px;}
.y24f{bottom:38.190000px;}
.y231{bottom:38.340000px;}
.y236{bottom:38.700000px;}
.y269{bottom:40.140000px;}
.y261{bottom:43.365000px;}
.y257{bottom:46.605000px;}
.y233{bottom:46.980000px;}
.y232{bottom:47.340000px;}
.y22a{bottom:48.420000px;}
.y26e{bottom:53.280000px;}
.y273{bottom:53.325000px;}
.y24a{bottom:55.110000px;}
.y245{bottom:55.260000px;}
.y24b{bottom:55.470000px;}
.y230{bottom:55.620000px;}
.y235{bottom:55.980000px;}
.y22e{bottom:57.060000px;}
.y23{bottom:57.780000px;}
.y101{bottom:64.440000px;}
.y238{bottom:64.620000px;}
.y221{bottom:65.340000px;}
.y229{bottom:65.700000px;}
.y244{bottom:72.540000px;}
.y24e{bottom:72.750000px;}
.y234{bottom:73.260000px;}
.y222{bottom:73.980000px;}
.y223{bottom:74.340000px;}
.y22{bottom:77.940000px;}
.y224{bottom:78.660000px;}
.y248{bottom:81.180000px;}
.y220{bottom:82.620000px;}
.y228{bottom:82.980000px;}
.y23c{bottom:89.460000px;}
.y243{bottom:89.820000px;}
.y24d{bottom:89.850000px;}
.y22d{bottom:91.620000px;}
.y23e{bottom:98.100000px;}
.y23d{bottom:98.460000px;}
.y227{bottom:100.305000px;}
.y23b{bottom:106.740000px;}
.y242{bottom:107.100000px;}
.y24c{bottom:107.130000px;}
.y1f{bottom:108.936000px;}
.y247{bottom:115.740000px;}
.y226{bottom:117.405000px;}
.y241{bottom:124.380000px;}
.y136{bottom:132.300000px;}
.y8e{bottom:134.640000px;}
.y225{bottom:134.685000px;}
.y193{bottom:134.856000px;}
.y1e{bottom:139.716000px;}
.y263{bottom:140.625000px;}
.y240{bottom:141.480000px;}
.yc0{bottom:143.496000px;}
.yef{bottom:151.590000px;}
.y14a{bottom:153.390000px;}
.yfc{bottom:153.930000px;}
.y135{bottom:154.290000px;}
.y117{bottom:154.650000px;}
.y19d{bottom:155.910000px;}
.y9f{bottom:156.990000px;}
.yc5{bottom:157.170000px;}
.yb8{bottom:157.530000px;}
.y8d{bottom:157.710000px;}
.y23f{bottom:158.760000px;}
.y134{bottom:160.230000px;}
.y1f9{bottom:162.210000px;}
.y192{bottom:165.990000px;}
.y28f{bottom:169.230000px;}
.y1d{bottom:170.670000px;}
.ybf{bottom:174.450000px;}
.y133{bottom:175.530000px;}
.y16f{bottom:176.790000px;}
.y1d0{bottom:178.050000px;}
.yee{bottom:182.730000px;}
.y25e{bottom:183.465000px;}
.y5a{bottom:183.630000px;}
.yfb{bottom:184.890000px;}
.y116{bottom:185.790000px;}
.y19c{bottom:186.870000px;}
.y1b2{bottom:187.590000px;}
.y9e{bottom:187.950000px;}
.y204{bottom:188.130000px;}
.yb7{bottom:188.490000px;}
.y1f8{bottom:192.990000px;}
.y8c{bottom:193.350000px;}
.y28e{bottom:194.970000px;}
.y191{bottom:196.950000px;}
.y1c{bottom:201.810000px;}
.ybe{bottom:205.590000px;}
.y16e{bottom:208.110000px;}
.y1cf{bottom:210.270000px;}
.yed{bottom:213.690000px;}
.y59{bottom:214.770000px;}
.yfa{bottom:216.030000px;}
.y149{bottom:216.210000px;}
.yce{bottom:216.570000px;}
.y115{bottom:216.750000px;}
.y19b{bottom:217.830000px;}
.y1b1{bottom:218.550000px;}
.y9d{bottom:219.090000px;}
.yc4{bottom:219.270000px;}
.yb6{bottom:219.630000px;}
.y28d{bottom:220.890000px;}
.y1f7{bottom:224.130000px;}
.y132{bottom:226.290000px;}
.y8b{bottom:227.730000px;}
.y190{bottom:228.090000px;}
.y26c{bottom:235.485000px;}
.ybd{bottom:236.550000px;}
.y1b{bottom:238.710000px;}
.y16d{bottom:239.430000px;}
.y1ce{bottom:241.230000px;}
.yb5{bottom:242.490000px;}
.yec{bottom:244.830000px;}
.y58{bottom:245.730000px;}
.y259{bottom:246.105000px;}
.ycd{bottom:247.710000px;}
.y114{bottom:248.070000px;}
.y19a{bottom:248.970000px;}
.y9c{bottom:250.050000px;}
.yc3{bottom:250.230000px;}
.y202{bottom:255.090000px;}
.y1f6{bottom:255.270000px;}
.y131{bottom:257.250000px;}
.y8a{bottom:258.690000px;}
.y18f{bottom:259.230000px;}
.y28a{bottom:263.025000px;}
.ybc{bottom:267.690000px;}
.y16c{bottom:270.930000px;}
.y1cd{bottom:272.370000px;}
.yeb{bottom:275.790000px;}
.y57{bottom:276.870000px;}
.yb4{bottom:277.770000px;}
.yf9{bottom:278.850000px;}
.ycc{bottom:279.930000px;}
.y199{bottom:280.110000px;}
.y9b{bottom:281.190000px;}
.y1a{bottom:281.370000px;}
.y1f5{bottom:286.050000px;}
.y201{bottom:286.230000px;}
.y130{bottom:288.210000px;}
.y252{bottom:288.945000px;}
.y89{bottom:289.650000px;}
.y18e{bottom:290.010000px;}
.y288{bottom:298.305000px;}
.ybb{bottom:298.650000px;}
.y16b{bottom:302.790000px;}
.y1cc{bottom:303.330000px;}
.yea{bottom:306.930000px;}
.y56{bottom:307.830000px;}
.yb3{bottom:308.910000px;}
.yf8{bottom:310.350000px;}
.y113{bottom:310.530000px;}
.ycb{bottom:310.890000px;}
.y9a{bottom:312.150000px;}
.yc2{bottom:312.330000px;}
.y1b0{bottom:313.050000px;}
.y1f4{bottom:317.190000px;}
.y12f{bottom:319.350000px;}
.y19{bottom:319.395000px;}
.y88{bottom:320.790000px;}
.y18d{bottom:320.970000px;}
.yba{bottom:321.690000px;}
.y287{bottom:333.405000px;}
.y16a{bottom:333.930000px;}
.y1cb{bottom:334.470000px;}
.ye9{bottom:337.890000px;}
.y55{bottom:338.970000px;}
.yb2{bottom:339.870000px;}
.y148{bottom:341.310000px;}
.yf7{bottom:341.670000px;}
.yca{bottom:342.030000px;}
.y112{bottom:342.210000px;}
.y99{bottom:343.290000px;}
.y207{bottom:343.470000px;}
.y1af{bottom:344.010000px;}
.yb9{bottom:345.810000px;}
.y1f3{bottom:348.150000px;}
.y200{bottom:348.330000px;}
.y12e{bottom:350.310000px;}
.y87{bottom:351.750000px;}
.y18c{bottom:352.290000px;}
.y249{bottom:358.065000px;}
.y18{bottom:358.995000px;}
.y169{bottom:365.070000px;}
.y1ca{bottom:365.430000px;}
.y285{bottom:368.505000px;}
.ye8{bottom:369.030000px;}
.y54{bottom:369.930000px;}
.yb1{bottom:371.010000px;}
.yf6{bottom:372.450000px;}
.y147{bottom:372.630000px;}
.y198{bottom:372.990000px;}
.y111{bottom:373.890000px;}
.y98{bottom:374.250000px;}
.y206{bottom:374.430000px;}
.y1ae{bottom:375.690000px;}
.y1f2{bottom:379.290000px;}
.y12d{bottom:381.450000px;}
.y86{bottom:382.890000px;}
.y18b{bottom:383.070000px;}
.y26d{bottom:394.770000px;}
.y168{bottom:396.075000px;}
.y1c9{bottom:396.615000px;}
.ye7{bottom:400.035000px;}
.y53{bottom:401.115000px;}
.yb0{bottom:402.015000px;}
.y17{bottom:402.915000px;}
.y197{bottom:403.275000px;}
.y146{bottom:403.635000px;}
.y284{bottom:403.815000px;}
.yf5{bottom:404.175000px;}
.y196{bottom:404.715000px;}
.y110{bottom:404.895000px;}
.ya4{bottom:405.435000px;}
.y97{bottom:405.615000px;}
.y1ad{bottom:406.695000px;}
.y1f1{bottom:410.295000px;}
.y12c{bottom:412.455000px;}
.y85{bottom:413.895000px;}
.y18a{bottom:414.255000px;}
.y167{bottom:427.395000px;}
.y1c8{bottom:427.575000px;}
.ye6{bottom:431.175000px;}
.y52{bottom:432.075000px;}
.yaf{bottom:433.155000px;}
.yf4{bottom:435.135000px;}
.y195{bottom:435.855000px;}
.y10f{bottom:436.035000px;}
.y96{bottom:436.395000px;}
.y1ac{bottom:437.835000px;}
.y283{bottom:438.915000px;}
.y1f0{bottom:441.435000px;}
.y12b{bottom:443.595000px;}
.y84{bottom:445.035000px;}
.y189{bottom:445.935000px;}
.y16{bottom:446.835000px;}
.y166{bottom:458.715000px;}
.ye5{bottom:462.135000px;}
.y51{bottom:463.215000px;}
.yae{bottom:464.115000px;}
.yf3{bottom:466.275000px;}
.y145{bottom:466.815000px;}
.y10e{bottom:466.995000px;}
.y95{bottom:467.535000px;}
.y205{bottom:467.715000px;}
.y1ab{bottom:468.795000px;}
.y1ef{bottom:472.395000px;}
.y282{bottom:474.195000px;}
.y12a{bottom:474.555000px;}
.y3a{bottom:475.275000px;}
.y83{bottom:475.995000px;}
.y188{bottom:477.075000px;}
.y23a{bottom:479.415000px;}
.y1c7{bottom:489.675000px;}
.y165{bottom:490.395000px;}
.y15{bottom:490.935000px;}
.ye4{bottom:493.275000px;}
.y50{bottom:494.175000px;}
.yad{bottom:495.255000px;}
.yf2{bottom:497.955000px;}
.y144{bottom:498.135000px;}
.ya3{bottom:498.495000px;}
.y94{bottom:498.675000px;}
.y1aa{bottom:500.475000px;}
.y1ee{bottom:503.535000px;}
.y39{bottom:505.155000px;}
.y129{bottom:505.875000px;}
.y82{bottom:507.135000px;}
.y187{bottom:508.035000px;}
.y281{bottom:509.295000px;}
.y14{bottom:519.735000px;}
.y1c6{bottom:520.815000px;}
.y164{bottom:522.795000px;}
.ye3{bottom:524.235000px;}
.y4f{bottom:525.315000px;}
.yac{bottom:526.215000px;}
.y194{bottom:528.195000px;}
.yf1{bottom:528.915000px;}
.y143{bottom:529.095000px;}
.y93{bottom:529.635000px;}
.y137{bottom:529.815000px;}
.y1a9{bottom:531.255000px;}
.y1a8{bottom:531.975000px;}
.y1ed{bottom:534.495000px;}
.y38{bottom:535.035000px;}
.y128{bottom:536.835000px;}
.y81{bottom:538.095000px;}
.y186{bottom:539.175000px;}
.y13{bottom:543.855000px;}
.y280{bottom:544.575000px;}
.y1c5{bottom:551.775000px;}
.y163{bottom:553.575000px;}
.ye2{bottom:555.375000px;}
.y4e{bottom:556.275000px;}
.yab{bottom:557.355000px;}
.yf0{bottom:560.235000px;}
.y92{bottom:560.595000px;}
.y10d{bottom:560.775000px;}
.y1a5{bottom:562.575000px;}
.y37{bottom:564.735000px;}
.y1ec{bottom:565.635000px;}
.y1ff{bottom:565.815000px;}
.y1a7{bottom:567.255000px;}
.y12{bottom:567.615000px;}
.y127{bottom:567.795000px;}
.y80{bottom:569.235000px;}
.y184{bottom:571.035000px;}
.y1a4{bottom:571.575000px;}
.y183{bottom:574.635000px;}
.y1a6{bottom:578.955000px;}
.y27f{bottom:579.675000px;}
.y1c4{bottom:582.915000px;}
.y185{bottom:583.815000px;}
.y162{bottom:585.255000px;}
.ye1{bottom:586.335000px;}
.y4d{bottom:587.415000px;}
.yaa{bottom:588.315000px;}
.y91{bottom:591.735000px;}
.y10c{bottom:591.915000px;}
.y142{bottom:592.275000px;}
.y11{bottom:593.205000px;}
.y36{bottom:594.615000px;}
.y1eb{bottom:596.595000px;}
.y126{bottom:598.755000px;}
.y7f{bottom:600.195000px;}
.y1a3{bottom:608.115000px;}
.y182{bottom:609.195000px;}
.y1c3{bottom:613.875000px;}
.y27e{bottom:614.775000px;}
.ye0{bottom:617.475000px;}
.y4c{bottom:618.375000px;}
.y161{bottom:618.915000px;}
.ya9{bottom:619.455000px;}
.y90{bottom:622.695000px;}
.y6c{bottom:622.875000px;}
.y141{bottom:623.235000px;}
.y10{bottom:624.165000px;}
.y35{bottom:624.495000px;}
.y1ea{bottom:627.735000px;}
.y1fe{bottom:627.915000px;}
.y125{bottom:629.895000px;}
.y7e{bottom:631.335000px;}
.y1a0{bottom:638.535000px;}
.y108{bottom:641.085000px;}
.y180{bottom:641.265000px;}
.y1a2{bottom:643.245000px;}
.y17f{bottom:644.865000px;}
.y1c2{bottom:645.045000px;}
.y19f{bottom:647.565000px;}
.ydf{bottom:648.465000px;}
.y4b{bottom:649.545000px;}
.y27d{bottom:650.085000px;}
.y160{bottom:650.265000px;}
.ya8{bottom:650.445000px;}
.y6b{bottom:653.865000px;}
.y181{bottom:654.045000px;}
.y34{bottom:654.405000px;}
.y140{bottom:654.585000px;}
.y1a1{bottom:654.945000px;}
.yf{bottom:655.305000px;}
.y1e9{bottom:658.725000px;}
.y123{bottom:660.885000px;}
.y7d{bottom:662.325000px;}
.y10b{bottom:666.285000px;}
.y124{bottom:666.825000px;}
.y1c1{bottom:676.005000px;}
.yde{bottom:679.605000px;}
.y4a{bottom:680.505000px;}
.y15f{bottom:681.405000px;}
.ya7{bottom:681.585000px;}
.y33{bottom:684.105000px;}
.y19e{bottom:684.285000px;}
.y6a{bottom:684.825000px;}
.y208{bottom:685.005000px;}
.y27c{bottom:685.185000px;}
.y13f{bottom:685.365000px;}
.ye{bottom:686.265000px;}
.y22f{bottom:686.805000px;}
.y1e8{bottom:689.865000px;}
.y10a{bottom:690.225000px;}
.y122{bottom:692.025000px;}
.y7c{bottom:693.465000px;}
.y1c0{bottom:707.145000px;}
.ydd{bottom:710.565000px;}
.y49{bottom:711.645000px;}
.y15e{bottom:712.365000px;}
.ya6{bottom:712.725000px;}
.y32{bottom:713.985000px;}
.y100{bottom:714.165000px;}
.yd{bottom:715.425000px;}
.y69{bottom:715.965000px;}
.ya2{bottom:716.145000px;}
.y13e{bottom:716.685000px;}
.y279{bottom:720.465000px;}
.y1e7{bottom:720.825000px;}
.y121{bottom:722.985000px;}
.y7b{bottom:724.425000px;}
.y107{bottom:739.365000px;}
.y1bf{bottom:741.525000px;}
.ydc{bottom:741.705000px;}
.y48{bottom:742.605000px;}
.y15d{bottom:743.505000px;}
.y31{bottom:743.865000px;}
.y68{bottom:746.925000px;}
.ya5{bottom:747.105000px;}
.y13d{bottom:747.465000px;}
.y1e6{bottom:751.965000px;}
.y120{bottom:754.125000px;}
.y7a{bottom:755.565000px;}
.y278{bottom:755.580000px;}
.yc{bottom:756.825000px;}
.y105{bottom:763.305000px;}
.ydb{bottom:764.565000px;}
.y1be{bottom:764.745000px;}
.y30{bottom:766.005000px;}
.y17e{bottom:772.845000px;}
.y47{bottom:773.745000px;}
.y15c{bottom:774.285000px;}
.y67{bottom:778.065000px;}
.yc1{bottom:778.245000px;}
.y13c{bottom:778.605000px;}
.y1e5{bottom:782.925000px;}
.y1fd{bottom:783.105000px;}
.y11f{bottom:785.085000px;}
.y79{bottom:786.525000px;}
.y277{bottom:790.665000px;}
.yb{bottom:791.205000px;}
.y21f{bottom:792.105000px;}
.y2f{bottom:796.065000px;}
.yda{bottom:799.845000px;}
.y17d{bottom:803.985000px;}
.y46{bottom:804.705000px;}
.y15b{bottom:805.425000px;}
.y1d9{bottom:806.865000px;}
.y1bd{bottom:807.945000px;}
.y104{bottom:808.845000px;}
.y66{bottom:809.025000px;}
.y8f{bottom:809.205000px;}
.y13b{bottom:809.565000px;}
.y1e4{bottom:814.065000px;}
.ya{bottom:814.605000px;}
.y11e{bottom:816.225000px;}
.y78{bottom:817.485000px;}
.yd9{bottom:823.245000px;}
.y2e{bottom:825.765000px;}
.y274{bottom:825.960000px;}
.y102{bottom:832.785000px;}
.y17c{bottom:834.765000px;}
.y45{bottom:835.845000px;}
.y15a{bottom:836.385000px;}
.y1d8{bottom:837.645000px;}
.y1bc{bottom:838.905000px;}
.y65{bottom:839.985000px;}
.y203{bottom:840.165000px;}
.y13a{bottom:840.705000px;}
.y1e3{bottom:845.025000px;}
.y11d{bottom:847.185000px;}
.y77{bottom:848.625000px;}
.y29f{bottom:851.145000px;}
.y2d{bottom:855.645000px;}
.y272{bottom:861.045000px;}
.y9{bottom:862.710000px;}
.y17b{bottom:866.085000px;}
.yd8{bottom:866.445000px;}
.y159{bottom:866.625000px;}
.y44{bottom:866.805000px;}
.y158{bottom:867.345000px;}
.y157{bottom:868.065000px;}
.y1d7{bottom:868.605000px;}
.y1bb{bottom:869.865000px;}
.y64{bottom:871.125000px;}
.yff{bottom:871.305000px;}
.y139{bottom:875.085000px;}
.y1e2{bottom:876.165000px;}
.y29e{bottom:876.885000px;}
.y2c{bottom:877.785000px;}
.y11c{bottom:878.325000px;}
.y76{bottom:879.585000px;}
.y8{bottom:893.670000px;}
.y17a{bottom:896.910000px;}
.yd7{bottom:897.270000px;}
.y138{bottom:897.810000px;}
.y43{bottom:897.990000px;}
.y155{bottom:898.350000px;}
.y156{bottom:899.070000px;}
.y154{bottom:899.790000px;}
.y1ba{bottom:901.050000px;}
.y63{bottom:902.130000px;}
.yfe{bottom:902.310000px;}
.y29d{bottom:902.850000px;}
.y1e1{bottom:907.170000px;}
.y2b{bottom:907.890000px;}
.y11b{bottom:909.330000px;}
.y75{bottom:910.770000px;}
.y179{bottom:924.450000px;}
.yd6{bottom:928.410000px;}
.y177{bottom:928.590000px;}
.y29c{bottom:928.770000px;}
.y42{bottom:928.950000px;}
.y153{bottom:930.750000px;}
.y1b9{bottom:931.290000px;}
.y270{bottom:931.470000px;}
.y1b8{bottom:932.730000px;}
.y62{bottom:933.270000px;}
.yc9{bottom:933.450000px;}
.y178{bottom:935.610000px;}
.y2a{bottom:937.770000px;}
.y1e0{bottom:938.310000px;}
.y74{bottom:941.730000px;}
.y29b{bottom:943.350000px;}
.y11a{bottom:943.890000px;}
.y218{bottom:951.270000px;}
.y7{bottom:955.770000px;}
.y176{bottom:957.030000px;}
.y41{bottom:960.090000px;}
.yd5{bottom:960.630000px;}
.y174{bottom:961.170000px;}
.y1d6{bottom:961.890000px;}
.y152{bottom:962.250000px;}
.y1b7{bottom:963.690000px;}
.y61{bottom:964.230000px;}
.yc8{bottom:964.410000px;}
.y29a{bottom:965.850000px;}
.y119{bottom:966.570000px;}
.y26b{bottom:966.750000px;}
.y29{bottom:967.650000px;}
.y175{bottom:968.190000px;}
.y1df{bottom:969.270000px;}
.y73{bottom:972.870000px;}
.y6{bottom:986.910000px;}
.y298{bottom:988.350000px;}
.y118{bottom:990.870000px;}
.y40{bottom:991.050000px;}
.yd4{bottom:991.590000px;}
.y1d5{bottom:992.850000px;}
.y212{bottom:993.390000px;}
.y173{bottom:993.570000px;}
.y151{bottom:993.750000px;}
.y1b6{bottom:994.830000px;}
.y60{bottom:995.370000px;}
.yfd{bottom:995.550000px;}
.y28{bottom:997.350000px;}
.y1fc{bottom:1000.410000px;}
.y1de{bottom:1000.590000px;}
.y72{bottom:1003.830000px;}
.y294{bottom:1011.570000px;}
.y5{bottom:1017.870000px;}
.y3f{bottom:1022.010000px;}
.yd3{bottom:1023.990000px;}
.y172{bottom:1024.530000px;}
.y150{bottom:1024.710000px;}
.y1b5{bottom:1025.790000px;}
.y5f{bottom:1026.330000px;}
.ya1{bottom:1026.510000px;}
.y27{bottom:1027.230000px;}
.y1dd{bottom:1031.370000px;}
.y71{bottom:1034.970000px;}
.y268{bottom:1037.850000px;}
.y20a{bottom:1041.090000px;}
.y4{bottom:1049.010000px;}
.y3e{bottom:1053.150000px;}
.y14f{bottom:1054.770000px;}
.yd2{bottom:1054.950000px;}
.y1d4{bottom:1055.130000px;}
.y171{bottom:1056.030000px;}
.y14e{bottom:1056.210000px;}
.y1b4{bottom:1056.930000px;}
.y26{bottom:1057.110000px;}
.y5e{bottom:1057.470000px;}
.yc7{bottom:1057.650000px;}
.y1fb{bottom:1062.510000px;}
.y1dc{bottom:1062.690000px;}
.y70{bottom:1065.930000px;}
.y293{bottom:1071.690000px;}
.y3{bottom:1078.020000px;}
.y25{bottom:1082.670000px;}
.y3d{bottom:1084.110000px;}
.y1d3{bottom:1086.090000px;}
.y14d{bottom:1086.450000px;}
.y20c{bottom:1086.810000px;}
.yd1{bottom:1087.350000px;}
.y14c{bottom:1087.890000px;}
.y5d{bottom:1088.430000px;}
.ya0{bottom:1088.610000px;}
.y6f{bottom:1088.970000px;}
.y1fa{bottom:1093.470000px;}
.y1db{bottom:1093.650000px;}
.y2{bottom:1099.260000px;}
.y292{bottom:1100.310000px;}
.y3c{bottom:1107.690000px;}
.y267{bottom:1115.250000px;}
.y1b3{bottom:1118.130000px;}
.yd0{bottom:1118.310000px;}
.y1d2{bottom:1118.490000px;}
.y14b{bottom:1118.850000px;}
.y170{bottom:1119.390000px;}
.y1{bottom:1119.420000px;}
.y5c{bottom:1119.570000px;}
.yc6{bottom:1119.750000px;}
.y209{bottom:1120.290000px;}
.y1da{bottom:1124.610000px;}
.y6e{bottom:1124.790000px;}
.y291{bottom:1126.230000px;}
.y24{bottom:1130.010000px;}
.y290{bottom:1146.240000px;}
.y6d{bottom:1148.040000px;}
.ycf{bottom:1149.300000px;}
.y1d1{bottom:1149.480000px;}
.y5b{bottom:1150.560000px;}
.y3b{bottom:1150.740000px;}
.y21{bottom:1174.320000px;}
.y20{bottom:1194.480000px;}
.h26{height:22.485000px;}
.h10{height:22.500000px;}
.h16{height:23.580000px;}
.h14{height:23.760000px;}
.h3f{height:27.525000px;}
.h3a{height:35.085000px;}
.h3c{height:35.100000px;}
.h38{height:35.265000px;}
.h3b{height:35.280000px;}
.h3e{height:35.301000px;}
.h3d{height:35.310000px;}
.h19{height:38.818125px;}
.h2b{height:41.205000px;}
.h31{height:42.105000px;}
.h33{height:42.111000px;}
.h37{height:43.453125px;}
.h13{height:43.920000px;}
.h29{height:44.985000px;}
.h2a{height:46.965000px;}
.h18{height:50.312812px;}
.h1{height:53.302500px;}
.hf{height:54.386719px;}
.h11{height:54.421875px;}
.h1e{height:56.561484px;}
.h12{height:57.937500px;}
.h2d{height:58.621992px;}
.h28{height:58.651172px;}
.h23{height:59.441484px;}
.h27{height:60.226875px;}
.h32{height:61.905000px;}
.h40{height:62.327813px;}
.hc{height:65.496094px;}
.h25{height:68.205000px;}
.h35{height:70.365000px;}
.h39{height:70.402500px;}
.h34{height:70.545000px;}
.h15{height:71.640000px;}
.h2{height:72.562500px;}
.ha{height:72.801914px;}
.h5{height:75.093750px;}
.h1c{height:77.973750px;}
.hd{height:79.664062px;}
.h1b{height:80.853750px;}
.hb{height:81.101250px;}
.h1d{height:82.544062px;}
.h6{height:82.676953px;}
.h1a{height:83.972455px;}
.h24{height:85.424063px;}
.h4{height:87.859687px;}
.h21{height:89.493750px;}
.h1f{height:91.653750px;}
.h20{height:96.944063px;}
.h22{height:99.041484px;}
.h2e{height:104.580000px;}
.h7{height:106.633125px;}
.h3{height:112.640625px;}
.h30{height:120.621000px;}
.he{height:141.120000px;}
.h2c{height:158.430000px;}
.h2f{height:206.670000px;}
.h36{height:801.630000px;}
.h0{height:1188.000000px;}
.h9{height:1263.000000px;}
.h17{height:1263.044910px;}
.h8{height:1263.060000px;}
.w1f{width:17.805000px;}
.w3{width:33.480000px;}
.w15{width:52.185000px;}
.w21{width:52.545000px;}
.w1c{width:53.280000px;}
.w14{width:57.945000px;}
.w20{width:58.305000px;}
.w1d{width:63.720000px;}
.w18{width:63.930000px;}
.w16{width:64.641000px;}
.w22{width:65.001000px;}
.w1b{width:68.961000px;}
.w1a{width:73.245000px;}
.w1e{width:74.196000px;}
.w12{width:80.271000px;}
.w19{width:80.631000px;}
.w17{width:84.585000px;}
.w23{width:85.125000px;}
.w8{width:89.985000px;}
.w11{width:92.730000px;}
.wf{width:93.090000px;}
.w9{width:99.705000px;}
.wa{width:100.461000px;}
.wc{width:100.785000px;}
.wd{width:100.821000px;}
.we{width:105.645000px;}
.w10{width:106.005000px;}
.w26{width:106.185000px;}
.w25{width:109.836000px;}
.w24{width:114.480000px;}
.wb{width:117.216000px;}
.w6{width:137.376000px;}
.w4{width:182.190000px;}
.w13{width:350.880000px;}
.w7{width:520.650000px;}
.w5{width:892.957500px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:5.220000px;}
.x6a{left:8.085000px;}
.x28{left:10.260000px;}
.x24{left:11.520000px;}
.x26{left:13.320000px;}
.x82{left:14.580000px;}
.x6f{left:16.371000px;}
.x66{left:17.640000px;}
.x84{left:19.260000px;}
.x79{left:21.270000px;}
.x80{left:22.320000px;}
.x78{left:23.580000px;}
.x83{left:24.645000px;}
.x85{left:25.920000px;}
.x7c{left:26.985000px;}
.x81{left:28.650000px;}
.x86{left:29.730000px;}
.x76{left:30.960000px;}
.x7f{left:32.385000px;}
.x8b{left:34.020000px;}
.x7e{left:35.451000px;}
.x71{left:37.065000px;}
.x8c{left:38.325000px;}
.x7d{left:40.320000px;}
.x29{left:43.200000px;}
.x69{left:45.000000px;}
.x67{left:50.760000px;}
.x2{left:84.960000px;}
.x6e{left:104.625000px;}
.x13{left:106.416000px;}
.x30{left:112.536000px;}
.x5{left:114.696000px;}
.x2c{left:122.256000px;}
.x15{left:124.416000px;}
.x1c{left:133.416000px;}
.x3c{left:148.896000px;}
.x2e{left:155.347500px;}
.x40{left:157.170000px;}
.x3d{left:159.150000px;}
.x1b{left:160.410000px;}
.xb{left:161.670000px;}
.x58{left:162.750000px;}
.x42{left:164.910000px;}
.x41{left:167.430000px;}
.x22{left:170.850000px;}
.x6{left:172.110000px;}
.x43{left:174.990000px;}
.x5d{left:176.250000px;}
.x4e{left:182.190000px;}
.x70{left:185.265000px;}
.x5e{left:189.210000px;}
.x1d{left:192.450000px;}
.x5f{left:195.150000px;}
.x9{left:204.330000px;}
.x60{left:206.850000px;}
.x87{left:207.930000px;}
.x5c{left:214.050000px;}
.x7{left:222.510000px;}
.x2a{left:224.850000px;}
.x44{left:226.830000px;}
.x45{left:236.910000px;}
.x59{left:239.070000px;}
.x10{left:252.570000px;}
.x32{left:255.450000px;}
.x4f{left:257.610000px;}
.x33{left:265.530000px;}
.xc{left:274.170000px;}
.xd{left:278.130000px;}
.x88{left:281.415000px;}
.x62{left:283.215000px;}
.x1a{left:292.215000px;}
.x4b{left:299.235000px;}
.x46{left:300.855000px;}
.x18{left:301.935000px;}
.x52{left:307.155000px;}
.x4c{left:309.135000px;}
.x47{left:310.935000px;}
.x1e{left:313.815000px;}
.x2d{left:315.435000px;}
.x31{left:318.135000px;}
.x5a{left:319.395000px;}
.x2f{left:322.455000px;}
.x7a{left:327.495000px;}
.x51{left:329.115000px;}
.x5b{left:331.095000px;}
.x14{left:333.435000px;}
.x50{left:335.235000px;}
.x61{left:336.855000px;}
.x57{left:340.095000px;}
.x21{left:349.635000px;}
.x17{left:352.695000px;}
.x11{left:354.855000px;}
.x6b{left:356.475000px;}
.xa{left:359.175000px;}
.x49{left:362.055000px;}
.x23{left:372.855000px;}
.x63{left:374.835000px;}
.x4d{left:377.715000px;}
.x19{left:380.415000px;}
.x2b{left:386.895000px;}
.x48{left:391.215000px;}
.x89{left:395.895000px;}
.xe{left:402.195000px;}
.x64{left:404.535000px;}
.x25{left:406.695000px;}
.x65{left:410.295000px;}
.x4{left:414.975000px;}
.xf{left:429.915000px;}
.x4a{left:432.435000px;}
.x20{left:438.195000px;}
.x16{left:442.515000px;}
.x1f{left:444.135000px;}
.x12{left:446.655000px;}
.x1{left:458.895000px;}
.x8{left:473.835000px;}
.x3a{left:481.425000px;}
.x3b{left:491.505000px;}
.x3{left:494.025000px;}
.x8a{left:505.740000px;}
.x7b{left:518.700000px;}
.x72{left:536.520000px;}
.x38{left:568.545000px;}
.x39{left:573.045000px;}
.x6c{left:575.400000px;}
.x73{left:594.840000px;}
.x34{left:623.085000px;}
.x35{left:636.405000px;}
.x74{left:647.400000px;}
.x68{left:676.590000px;}
.x36{left:697.470000px;}
.x37{left:710.250000px;}
.x75{left:712.410000px;}
.x55{left:722.670000px;}
.x56{left:731.850000px;}
.x53{left:749.850000px;}
.x54{left:759.030000px;}
.x3e{left:770.190000px;}
.x3f{left:780.450000px;}
.x6d{left:782.610000px;}
.x77{left:797.550000px;}
@media print{
.v1{vertical-align:-110.080000pt;}
.v2{vertical-align:-73.600000pt;}
.vd{vertical-align:-19.946667pt;}
.v7{vertical-align:-12.800000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v8{vertical-align:7.680000pt;}
.v9{vertical-align:10.240000pt;}
.va{vertical-align:12.800000pt;}
.vc{vertical-align:14.720000pt;}
.vb{vertical-align:18.560000pt;}
.ve{vertical-align:21.120000pt;}
.vf{vertical-align:23.680000pt;}
.v10{vertical-align:37.760000pt;}
.ls2f{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls4d{letter-spacing:-0.800000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls5c{letter-spacing:-0.602667pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.303467pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.240000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.128000pt;}
.ls47{letter-spacing:-0.064000pt;}
.ls5d{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.030720pt;}
.ls58{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.007680pt;}
.ls17{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.030720pt;}
.ls33{letter-spacing:0.032000pt;}
.ls44{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.080533pt;}
.ls1f{letter-spacing:0.080640pt;}
.ls48{letter-spacing:0.099733pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.199040pt;}
.ls18{letter-spacing:0.227733pt;}
.ls5e{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.234667pt;}
.ls34{letter-spacing:0.239360pt;}
.ls49{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.303467pt;}
.ls30{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.337306pt;}
.ls51{letter-spacing:0.342400pt;}
.ls46{letter-spacing:0.362667pt;}
.lsd{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.720640pt;}
.ls50{letter-spacing:0.725760pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls55{letter-spacing:0.865663pt;}
.ls2b{letter-spacing:1.236700pt;}
.ls1b{letter-spacing:1.344000pt;}
.ls13{letter-spacing:1.408000pt;}
.ls15{letter-spacing:1.664000pt;}
.ls3a{letter-spacing:1.850240pt;}
.ls20{letter-spacing:1.920000pt;}
.ls4c{letter-spacing:2.048000pt;}
.ls26{letter-spacing:2.176000pt;}
.ls1e{letter-spacing:2.240000pt;}
.ls3b{letter-spacing:2.490240pt;}
.ls2d{letter-spacing:2.688000pt;}
.ls3e{letter-spacing:3.130240pt;}
.ls39{letter-spacing:3.149440pt;}
.ls32{letter-spacing:3.868800pt;}
.ls59{letter-spacing:3.968000pt;}
.ls35{letter-spacing:4.141440pt;}
.ls3f{letter-spacing:4.266880pt;}
.ls52{letter-spacing:5.120000pt;}
.ls4e{letter-spacing:5.760000pt;}
.ls54{letter-spacing:8.448000pt;}
.ls1d{letter-spacing:10.479360pt;}
.ls36{letter-spacing:10.944000pt;}
.ls41{letter-spacing:11.008000pt;}
.ls2c{letter-spacing:11.648000pt;}
.ls4b{letter-spacing:14.208000pt;}
.ls57{letter-spacing:18.048000pt;}
.ls42{letter-spacing:22.912000pt;}
.ls45{letter-spacing:38.848640pt;}
.ls43{letter-spacing:39.488640pt;}
.ls6{letter-spacing:50.693120pt;}
.ls16{letter-spacing:56.944640pt;}
.ls5{letter-spacing:67.973120pt;}
.ls8{letter-spacing:84.591787pt;}
.ls7{letter-spacing:91.631787pt;}
.ls40{letter-spacing:96.064000pt;}
.ls9{letter-spacing:102.511787pt;}
.ls27{letter-spacing:111.648000pt;}
.ls29{letter-spacing:133.248000pt;}
.ls24{letter-spacing:134.528000pt;}
.ls28{letter-spacing:174.208000pt;}
.ls4f{letter-spacing:187.584000pt;}
.ls53{letter-spacing:277.184000pt;}
.ls5a{letter-spacing:750.346667pt;}
.ls0{letter-spacing:1250.250667pt;}
.ls1{letter-spacing:1366.666667pt;}
.wse{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.120107pt;}
.ws24{word-spacing:-20.791680pt;}
.ws7{word-spacing:-20.513173pt;}
.wsa{word-spacing:-19.456000pt;}
.ws8{word-spacing:-19.184640pt;}
.ws13{word-spacing:-18.432000pt;}
.ws12{word-spacing:-18.240000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws1{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.728000pt;}
.ws6{word-spacing:-17.664000pt;}
.wsd{word-spacing:-17.600000pt;}
.ws17{word-spacing:-17.536000pt;}
.ws9{word-spacing:-17.408000pt;}
.ws18{word-spacing:-17.152000pt;}
.wsc{word-spacing:-17.024000pt;}
.ws14{word-spacing:-16.512000pt;}
.ws2c{word-spacing:-14.998293pt;}
.ws27{word-spacing:-14.784000pt;}
.ws2a{word-spacing:-14.656000pt;}
.ws28{word-spacing:-14.528000pt;}
.ws29{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-14.336000pt;}
.ws11{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.534613pt;}
.ws25{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.232640pt;}
.ws16{word-spacing:-12.240640pt;}
.wsf{word-spacing:-12.001173pt;}
.ws10{word-spacing:-11.920640pt;}
.ws15{word-spacing:-11.759573pt;}
.ws1a{word-spacing:-10.096533pt;}
.ws1b{word-spacing:-9.996800pt;}
.ws23{word-spacing:-9.943788pt;}
.ws1e{word-spacing:-9.756800pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:19.232000pt;}
.ws1c{word-spacing:34.093440pt;}
.ws1f{word-spacing:256.650240pt;}
.ws20{word-spacing:257.290240pt;}
.ws21{word-spacing:326.573440pt;}
.ws22{word-spacing:564.760107pt;}
._39{margin-left:-114.610560pt;}
._7{margin-left:-16.629333pt;}
._3{margin-left:-15.392000pt;}
._9{margin-left:-14.293333pt;}
._5{margin-left:-9.973333pt;}
._37{margin-left:-8.149333pt;}
._36{margin-left:-7.168000pt;}
._38{margin-left:-6.083413pt;}
._8{margin-left:-4.704000pt;}
._4{margin-left:-3.253333pt;}
._6{margin-left:-2.272000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.056000pt;}
._2{width:2.090667pt;}
._14{width:3.093333pt;}
._13{width:4.010667pt;}
._12{width:5.418667pt;}
._c{width:6.890667pt;}
._b{width:8.128000pt;}
._1b{width:9.600000pt;}
._e{width:11.200000pt;}
._d{width:12.096000pt;}
._21{width:13.088000pt;}
._f{width:14.005333pt;}
._26{width:15.402667pt;}
._25{width:16.362667pt;}
._17{width:19.328000pt;}
._10{width:20.288000pt;}
._11{width:21.205333pt;}
._1a{width:22.816000pt;}
._18{width:24.256000pt;}
._19{width:25.194667pt;}
._27{width:26.688000pt;}
._16{width:28.352000pt;}
._15{width:29.376000pt;}
._23{width:30.634667pt;}
._43{width:31.530667pt;}
._24{width:32.426667pt;}
._35{width:33.872640pt;}
._41{width:35.840000pt;}
._2c{width:36.800000pt;}
._2b{width:37.696000pt;}
._30{width:39.071040pt;}
._42{width:40.010667pt;}
._20{width:41.024000pt;}
._1f{width:42.048000pt;}
._29{width:44.992000pt;}
._28{width:46.080000pt;}
._1e{width:57.615360pt;}
._3f{width:66.368000pt;}
._40{width:67.861333pt;}
._2f{width:70.342827pt;}
._32{width:73.097707pt;}
._3c{width:75.588907pt;}
._3e{width:79.605120pt;}
._34{width:82.112000pt;}
._2a{width:87.916800pt;}
._3b{width:95.674027pt;}
._3d{width:100.762240pt;}
._2e{width:104.455787pt;}
._1d{width:108.893440pt;}
._33{width:124.189440pt;}
._a{width:128.943147pt;}
._22{width:133.248000pt;}
._44{width:136.272640pt;}
._31{width:149.641707pt;}
._3a{width:161.609387pt;}
._2d{width:174.201387pt;}
._45{width:176.715947pt;}
._1c{width:750.346667pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:45.199037pt;}
.fsa{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y251{bottom:3.186667pt;}
.y295{bottom:4.160000pt;}
.y103{bottom:4.320000pt;}
.y299{bottom:5.120000pt;}
.y20d{bottom:5.440000pt;}
.y20e{bottom:5.760000pt;}
.y21a{bottom:6.080000pt;}
.y297{bottom:6.240000pt;}
.y265{bottom:6.392000pt;}
.y21d{bottom:6.400000pt;}
.y25d{bottom:6.706667pt;}
.y266{bottom:6.712000pt;}
.y28b{bottom:6.866667pt;}
.y262{bottom:7.826667pt;}
.y210{bottom:8.000000pt;}
.y213{bottom:8.480000pt;}
.y216{bottom:8.800000pt;}
.y28c{bottom:9.266667pt;}
.y289{bottom:10.066667pt;}
.y27a{bottom:10.080000pt;}
.y275{bottom:10.226667pt;}
.y271{bottom:10.240000pt;}
.y258{bottom:10.706667pt;}
.y22c{bottom:12.320000pt;}
.y21b{bottom:13.760000pt;}
.y25a{bottom:14.066667pt;}
.y21e{bottom:14.080000pt;}
.y25b{bottom:14.386667pt;}
.y211{bottom:15.360000pt;}
.y276{bottom:15.986667pt;}
.y27b{bottom:16.000000pt;}
.y286{bottom:16.146667pt;}
.y214{bottom:16.160000pt;}
.y217{bottom:16.480000pt;}
.y254{bottom:18.066667pt;}
.y250{bottom:18.546667pt;}
.y237{bottom:19.200000pt;}
.y219{bottom:21.280000pt;}
.y21c{bottom:21.600000pt;}
.y264{bottom:21.746667pt;}
.y25c{bottom:22.066667pt;}
.y296{bottom:22.080000pt;}
.y25f{bottom:22.866667pt;}
.y260{bottom:23.186667pt;}
.y20f{bottom:23.360000pt;}
.y106{bottom:23.840000pt;}
.y215{bottom:24.160000pt;}
.y20b{bottom:24.800000pt;}
.y256{bottom:25.746667pt;}
.y26a{bottom:25.920000pt;}
.y255{bottom:26.066667pt;}
.y109{bottom:26.400000pt;}
.y239{bottom:26.720000pt;}
.y26f{bottom:27.200000pt;}
.y22b{bottom:27.680000pt;}
.y253{bottom:33.426667pt;}
.y246{bottom:33.920000pt;}
.y24f{bottom:33.946667pt;}
.y231{bottom:34.080000pt;}
.y236{bottom:34.400000pt;}
.y269{bottom:35.680000pt;}
.y261{bottom:38.546667pt;}
.y257{bottom:41.426667pt;}
.y233{bottom:41.760000pt;}
.y232{bottom:42.080000pt;}
.y22a{bottom:43.040000pt;}
.y26e{bottom:47.360000pt;}
.y273{bottom:47.400000pt;}
.y24a{bottom:48.986667pt;}
.y245{bottom:49.120000pt;}
.y24b{bottom:49.306667pt;}
.y230{bottom:49.440000pt;}
.y235{bottom:49.760000pt;}
.y22e{bottom:50.720000pt;}
.y23{bottom:51.360000pt;}
.y101{bottom:57.280000pt;}
.y238{bottom:57.440000pt;}
.y221{bottom:58.080000pt;}
.y229{bottom:58.400000pt;}
.y244{bottom:64.480000pt;}
.y24e{bottom:64.666667pt;}
.y234{bottom:65.120000pt;}
.y222{bottom:65.760000pt;}
.y223{bottom:66.080000pt;}
.y22{bottom:69.280000pt;}
.y224{bottom:69.920000pt;}
.y248{bottom:72.160000pt;}
.y220{bottom:73.440000pt;}
.y228{bottom:73.760000pt;}
.y23c{bottom:79.520000pt;}
.y243{bottom:79.840000pt;}
.y24d{bottom:79.866667pt;}
.y22d{bottom:81.440000pt;}
.y23e{bottom:87.200000pt;}
.y23d{bottom:87.520000pt;}
.y227{bottom:89.160000pt;}
.y23b{bottom:94.880000pt;}
.y242{bottom:95.200000pt;}
.y24c{bottom:95.226667pt;}
.y1f{bottom:96.832000pt;}
.y247{bottom:102.880000pt;}
.y226{bottom:104.360000pt;}
.y241{bottom:110.560000pt;}
.y136{bottom:117.600000pt;}
.y8e{bottom:119.680000pt;}
.y225{bottom:119.720000pt;}
.y193{bottom:119.872000pt;}
.y1e{bottom:124.192000pt;}
.y263{bottom:125.000000pt;}
.y240{bottom:125.760000pt;}
.yc0{bottom:127.552000pt;}
.yef{bottom:134.746667pt;}
.y14a{bottom:136.346667pt;}
.yfc{bottom:136.826667pt;}
.y135{bottom:137.146667pt;}
.y117{bottom:137.466667pt;}
.y19d{bottom:138.586667pt;}
.y9f{bottom:139.546667pt;}
.yc5{bottom:139.706667pt;}
.yb8{bottom:140.026667pt;}
.y8d{bottom:140.186667pt;}
.y23f{bottom:141.120000pt;}
.y134{bottom:142.426667pt;}
.y1f9{bottom:144.186667pt;}
.y192{bottom:147.546667pt;}
.y28f{bottom:150.426667pt;}
.y1d{bottom:151.706667pt;}
.ybf{bottom:155.066667pt;}
.y133{bottom:156.026667pt;}
.y16f{bottom:157.146667pt;}
.y1d0{bottom:158.266667pt;}
.yee{bottom:162.426667pt;}
.y25e{bottom:163.080000pt;}
.y5a{bottom:163.226667pt;}
.yfb{bottom:164.346667pt;}
.y116{bottom:165.146667pt;}
.y19c{bottom:166.106667pt;}
.y1b2{bottom:166.746667pt;}
.y9e{bottom:167.066667pt;}
.y204{bottom:167.226667pt;}
.yb7{bottom:167.546667pt;}
.y1f8{bottom:171.546667pt;}
.y8c{bottom:171.866667pt;}
.y28e{bottom:173.306667pt;}
.y191{bottom:175.066667pt;}
.y1c{bottom:179.386667pt;}
.ybe{bottom:182.746667pt;}
.y16e{bottom:184.986667pt;}
.y1cf{bottom:186.906667pt;}
.yed{bottom:189.946667pt;}
.y59{bottom:190.906667pt;}
.yfa{bottom:192.026667pt;}
.y149{bottom:192.186667pt;}
.yce{bottom:192.506667pt;}
.y115{bottom:192.666667pt;}
.y19b{bottom:193.626667pt;}
.y1b1{bottom:194.266667pt;}
.y9d{bottom:194.746667pt;}
.yc4{bottom:194.906667pt;}
.yb6{bottom:195.226667pt;}
.y28d{bottom:196.346667pt;}
.y1f7{bottom:199.226667pt;}
.y132{bottom:201.146667pt;}
.y8b{bottom:202.426667pt;}
.y190{bottom:202.746667pt;}
.y26c{bottom:209.320000pt;}
.ybd{bottom:210.266667pt;}
.y1b{bottom:212.186667pt;}
.y16d{bottom:212.826667pt;}
.y1ce{bottom:214.426667pt;}
.yb5{bottom:215.546667pt;}
.yec{bottom:217.626667pt;}
.y58{bottom:218.426667pt;}
.y259{bottom:218.760000pt;}
.ycd{bottom:220.186667pt;}
.y114{bottom:220.506667pt;}
.y19a{bottom:221.306667pt;}
.y9c{bottom:222.266667pt;}
.yc3{bottom:222.426667pt;}
.y202{bottom:226.746667pt;}
.y1f6{bottom:226.906667pt;}
.y131{bottom:228.666667pt;}
.y8a{bottom:229.946667pt;}
.y18f{bottom:230.426667pt;}
.y28a{bottom:233.800000pt;}
.ybc{bottom:237.946667pt;}
.y16c{bottom:240.826667pt;}
.y1cd{bottom:242.106667pt;}
.yeb{bottom:245.146667pt;}
.y57{bottom:246.106667pt;}
.yb4{bottom:246.906667pt;}
.yf9{bottom:247.866667pt;}
.ycc{bottom:248.826667pt;}
.y199{bottom:248.986667pt;}
.y9b{bottom:249.946667pt;}
.y1a{bottom:250.106667pt;}
.y1f5{bottom:254.266667pt;}
.y201{bottom:254.426667pt;}
.y130{bottom:256.186667pt;}
.y252{bottom:256.840000pt;}
.y89{bottom:257.466667pt;}
.y18e{bottom:257.786667pt;}
.y288{bottom:265.160000pt;}
.ybb{bottom:265.466667pt;}
.y16b{bottom:269.146667pt;}
.y1cc{bottom:269.626667pt;}
.yea{bottom:272.826667pt;}
.y56{bottom:273.626667pt;}
.yb3{bottom:274.586667pt;}
.yf8{bottom:275.866667pt;}
.y113{bottom:276.026667pt;}
.ycb{bottom:276.346667pt;}
.y9a{bottom:277.466667pt;}
.yc2{bottom:277.626667pt;}
.y1b0{bottom:278.266667pt;}
.y1f4{bottom:281.946667pt;}
.y12f{bottom:283.866667pt;}
.y19{bottom:283.906667pt;}
.y88{bottom:285.146667pt;}
.y18d{bottom:285.306667pt;}
.yba{bottom:285.946667pt;}
.y287{bottom:296.360000pt;}
.y16a{bottom:296.826667pt;}
.y1cb{bottom:297.306667pt;}
.ye9{bottom:300.346667pt;}
.y55{bottom:301.306667pt;}
.yb2{bottom:302.106667pt;}
.y148{bottom:303.386667pt;}
.yf7{bottom:303.706667pt;}
.yca{bottom:304.026667pt;}
.y112{bottom:304.186667pt;}
.y99{bottom:305.146667pt;}
.y207{bottom:305.306667pt;}
.y1af{bottom:305.786667pt;}
.yb9{bottom:307.386667pt;}
.y1f3{bottom:309.466667pt;}
.y200{bottom:309.626667pt;}
.y12e{bottom:311.386667pt;}
.y87{bottom:312.666667pt;}
.y18c{bottom:313.146667pt;}
.y249{bottom:318.280000pt;}
.y18{bottom:319.106667pt;}
.y169{bottom:324.506667pt;}
.y1ca{bottom:324.826667pt;}
.y285{bottom:327.560000pt;}
.ye8{bottom:328.026667pt;}
.y54{bottom:328.826667pt;}
.yb1{bottom:329.786667pt;}
.yf6{bottom:331.066667pt;}
.y147{bottom:331.226667pt;}
.y198{bottom:331.546667pt;}
.y111{bottom:332.346667pt;}
.y98{bottom:332.666667pt;}
.y206{bottom:332.826667pt;}
.y1ae{bottom:333.946667pt;}
.y1f2{bottom:337.146667pt;}
.y12d{bottom:339.066667pt;}
.y86{bottom:340.346667pt;}
.y18b{bottom:340.506667pt;}
.y26d{bottom:350.906667pt;}
.y168{bottom:352.066667pt;}
.y1c9{bottom:352.546667pt;}
.ye7{bottom:355.586667pt;}
.y53{bottom:356.546667pt;}
.yb0{bottom:357.346667pt;}
.y17{bottom:358.146667pt;}
.y197{bottom:358.466667pt;}
.y146{bottom:358.786667pt;}
.y284{bottom:358.946667pt;}
.yf5{bottom:359.266667pt;}
.y196{bottom:359.746667pt;}
.y110{bottom:359.906667pt;}
.ya4{bottom:360.386667pt;}
.y97{bottom:360.546667pt;}
.y1ad{bottom:361.506667pt;}
.y1f1{bottom:364.706667pt;}
.y12c{bottom:366.626667pt;}
.y85{bottom:367.906667pt;}
.y18a{bottom:368.226667pt;}
.y167{bottom:379.906667pt;}
.y1c8{bottom:380.066667pt;}
.ye6{bottom:383.266667pt;}
.y52{bottom:384.066667pt;}
.yaf{bottom:385.026667pt;}
.yf4{bottom:386.786667pt;}
.y195{bottom:387.426667pt;}
.y10f{bottom:387.586667pt;}
.y96{bottom:387.906667pt;}
.y1ac{bottom:389.186667pt;}
.y283{bottom:390.146667pt;}
.y1f0{bottom:392.386667pt;}
.y12b{bottom:394.306667pt;}
.y84{bottom:395.586667pt;}
.y189{bottom:396.386667pt;}
.y16{bottom:397.186667pt;}
.y166{bottom:407.746667pt;}
.ye5{bottom:410.786667pt;}
.y51{bottom:411.746667pt;}
.yae{bottom:412.546667pt;}
.yf3{bottom:414.466667pt;}
.y145{bottom:414.946667pt;}
.y10e{bottom:415.106667pt;}
.y95{bottom:415.586667pt;}
.y205{bottom:415.746667pt;}
.y1ab{bottom:416.706667pt;}
.y1ef{bottom:419.906667pt;}
.y282{bottom:421.506667pt;}
.y12a{bottom:421.826667pt;}
.y3a{bottom:422.466667pt;}
.y83{bottom:423.106667pt;}
.y188{bottom:424.066667pt;}
.y23a{bottom:426.146667pt;}
.y1c7{bottom:435.266667pt;}
.y165{bottom:435.906667pt;}
.y15{bottom:436.386667pt;}
.ye4{bottom:438.466667pt;}
.y50{bottom:439.266667pt;}
.yad{bottom:440.226667pt;}
.yf2{bottom:442.626667pt;}
.y144{bottom:442.786667pt;}
.ya3{bottom:443.106667pt;}
.y94{bottom:443.266667pt;}
.y1aa{bottom:444.866667pt;}
.y1ee{bottom:447.586667pt;}
.y39{bottom:449.026667pt;}
.y129{bottom:449.666667pt;}
.y82{bottom:450.786667pt;}
.y187{bottom:451.586667pt;}
.y281{bottom:452.706667pt;}
.y14{bottom:461.986667pt;}
.y1c6{bottom:462.946667pt;}
.y164{bottom:464.706667pt;}
.ye3{bottom:465.986667pt;}
.y4f{bottom:466.946667pt;}
.yac{bottom:467.746667pt;}
.y194{bottom:469.506667pt;}
.yf1{bottom:470.146667pt;}
.y143{bottom:470.306667pt;}
.y93{bottom:470.786667pt;}
.y137{bottom:470.946667pt;}
.y1a9{bottom:472.226667pt;}
.y1a8{bottom:472.866667pt;}
.y1ed{bottom:475.106667pt;}
.y38{bottom:475.586667pt;}
.y128{bottom:477.186667pt;}
.y81{bottom:478.306667pt;}
.y186{bottom:479.266667pt;}
.y13{bottom:483.426667pt;}
.y280{bottom:484.066667pt;}
.y1c5{bottom:490.466667pt;}
.y163{bottom:492.066667pt;}
.ye2{bottom:493.666667pt;}
.y4e{bottom:494.466667pt;}
.yab{bottom:495.426667pt;}
.yf0{bottom:497.986667pt;}
.y92{bottom:498.306667pt;}
.y10d{bottom:498.466667pt;}
.y1a5{bottom:500.066667pt;}
.y37{bottom:501.986667pt;}
.y1ec{bottom:502.786667pt;}
.y1ff{bottom:502.946667pt;}
.y1a7{bottom:504.226667pt;}
.y12{bottom:504.546667pt;}
.y127{bottom:504.706667pt;}
.y80{bottom:505.986667pt;}
.y184{bottom:507.586667pt;}
.y1a4{bottom:508.066667pt;}
.y183{bottom:510.786667pt;}
.y1a6{bottom:514.626667pt;}
.y27f{bottom:515.266667pt;}
.y1c4{bottom:518.146667pt;}
.y185{bottom:518.946667pt;}
.y162{bottom:520.226667pt;}
.ye1{bottom:521.186667pt;}
.y4d{bottom:522.146667pt;}
.yaa{bottom:522.946667pt;}
.y91{bottom:525.986667pt;}
.y10c{bottom:526.146667pt;}
.y142{bottom:526.466667pt;}
.y11{bottom:527.293333pt;}
.y36{bottom:528.546667pt;}
.y1eb{bottom:530.306667pt;}
.y126{bottom:532.226667pt;}
.y7f{bottom:533.506667pt;}
.y1a3{bottom:540.546667pt;}
.y182{bottom:541.506667pt;}
.y1c3{bottom:545.666667pt;}
.y27e{bottom:546.466667pt;}
.ye0{bottom:548.866667pt;}
.y4c{bottom:549.666667pt;}
.y161{bottom:550.146667pt;}
.ya9{bottom:550.626667pt;}
.y90{bottom:553.506667pt;}
.y6c{bottom:553.666667pt;}
.y141{bottom:553.986667pt;}
.y10{bottom:554.813333pt;}
.y35{bottom:555.106667pt;}
.y1ea{bottom:557.986667pt;}
.y1fe{bottom:558.146667pt;}
.y125{bottom:559.906667pt;}
.y7e{bottom:561.186667pt;}
.y1a0{bottom:567.586667pt;}
.y108{bottom:569.853333pt;}
.y180{bottom:570.013333pt;}
.y1a2{bottom:571.773333pt;}
.y17f{bottom:573.213333pt;}
.y1c2{bottom:573.373333pt;}
.y19f{bottom:575.613333pt;}
.ydf{bottom:576.413333pt;}
.y4b{bottom:577.373333pt;}
.y27d{bottom:577.853333pt;}
.y160{bottom:578.013333pt;}
.ya8{bottom:578.173333pt;}
.y6b{bottom:581.213333pt;}
.y181{bottom:581.373333pt;}
.y34{bottom:581.693333pt;}
.y140{bottom:581.853333pt;}
.y1a1{bottom:582.173333pt;}
.yf{bottom:582.493333pt;}
.y1e9{bottom:585.533333pt;}
.y123{bottom:587.453333pt;}
.y7d{bottom:588.733333pt;}
.y10b{bottom:592.253333pt;}
.y124{bottom:592.733333pt;}
.y1c1{bottom:600.893333pt;}
.yde{bottom:604.093333pt;}
.y4a{bottom:604.893333pt;}
.y15f{bottom:605.693333pt;}
.ya7{bottom:605.853333pt;}
.y33{bottom:608.093333pt;}
.y19e{bottom:608.253333pt;}
.y6a{bottom:608.733333pt;}
.y208{bottom:608.893333pt;}
.y27c{bottom:609.053333pt;}
.y13f{bottom:609.213333pt;}
.ye{bottom:610.013333pt;}
.y22f{bottom:610.493333pt;}
.y1e8{bottom:613.213333pt;}
.y10a{bottom:613.533333pt;}
.y122{bottom:615.133333pt;}
.y7c{bottom:616.413333pt;}
.y1c0{bottom:628.573333pt;}
.ydd{bottom:631.613333pt;}
.y49{bottom:632.573333pt;}
.y15e{bottom:633.213333pt;}
.ya6{bottom:633.533333pt;}
.y32{bottom:634.653333pt;}
.y100{bottom:634.813333pt;}
.yd{bottom:635.933333pt;}
.y69{bottom:636.413333pt;}
.ya2{bottom:636.573333pt;}
.y13e{bottom:637.053333pt;}
.y279{bottom:640.413333pt;}
.y1e7{bottom:640.733333pt;}
.y121{bottom:642.653333pt;}
.y7b{bottom:643.933333pt;}
.y107{bottom:657.213333pt;}
.y1bf{bottom:659.133333pt;}
.ydc{bottom:659.293333pt;}
.y48{bottom:660.093333pt;}
.y15d{bottom:660.893333pt;}
.y31{bottom:661.213333pt;}
.y68{bottom:663.933333pt;}
.ya5{bottom:664.093333pt;}
.y13d{bottom:664.413333pt;}
.y1e6{bottom:668.413333pt;}
.y120{bottom:670.333333pt;}
.y7a{bottom:671.613333pt;}
.y278{bottom:671.626667pt;}
.yc{bottom:672.733333pt;}
.y105{bottom:678.493333pt;}
.ydb{bottom:679.613333pt;}
.y1be{bottom:679.773333pt;}
.y30{bottom:680.893333pt;}
.y17e{bottom:686.973333pt;}
.y47{bottom:687.773333pt;}
.y15c{bottom:688.253333pt;}
.y67{bottom:691.613333pt;}
.yc1{bottom:691.773333pt;}
.y13c{bottom:692.093333pt;}
.y1e5{bottom:695.933333pt;}
.y1fd{bottom:696.093333pt;}
.y11f{bottom:697.853333pt;}
.y79{bottom:699.133333pt;}
.y277{bottom:702.813333pt;}
.yb{bottom:703.293333pt;}
.y21f{bottom:704.093333pt;}
.y2f{bottom:707.613333pt;}
.yda{bottom:710.973333pt;}
.y17d{bottom:714.653333pt;}
.y46{bottom:715.293333pt;}
.y15b{bottom:715.933333pt;}
.y1d9{bottom:717.213333pt;}
.y1bd{bottom:718.173333pt;}
.y104{bottom:718.973333pt;}
.y66{bottom:719.133333pt;}
.y8f{bottom:719.293333pt;}
.y13b{bottom:719.613333pt;}
.y1e4{bottom:723.613333pt;}
.ya{bottom:724.093333pt;}
.y11e{bottom:725.533333pt;}
.y78{bottom:726.653333pt;}
.yd9{bottom:731.773333pt;}
.y2e{bottom:734.013333pt;}
.y274{bottom:734.186667pt;}
.y102{bottom:740.253333pt;}
.y17c{bottom:742.013333pt;}
.y45{bottom:742.973333pt;}
.y15a{bottom:743.453333pt;}
.y1d8{bottom:744.573333pt;}
.y1bc{bottom:745.693333pt;}
.y65{bottom:746.653333pt;}
.y203{bottom:746.813333pt;}
.y13a{bottom:747.293333pt;}
.y1e3{bottom:751.133333pt;}
.y11d{bottom:753.053333pt;}
.y77{bottom:754.333333pt;}
.y29f{bottom:756.573333pt;}
.y2d{bottom:760.573333pt;}
.y272{bottom:765.373333pt;}
.y9{bottom:766.853333pt;}
.y17b{bottom:769.853333pt;}
.yd8{bottom:770.173333pt;}
.y159{bottom:770.333333pt;}
.y44{bottom:770.493333pt;}
.y158{bottom:770.973333pt;}
.y157{bottom:771.613333pt;}
.y1d7{bottom:772.093333pt;}
.y1bb{bottom:773.213333pt;}
.y64{bottom:774.333333pt;}
.yff{bottom:774.493333pt;}
.y139{bottom:777.853333pt;}
.y1e2{bottom:778.813333pt;}
.y29e{bottom:779.453333pt;}
.y2c{bottom:780.253333pt;}
.y11c{bottom:780.733333pt;}
.y76{bottom:781.853333pt;}
.y8{bottom:794.373333pt;}
.y17a{bottom:797.253333pt;}
.yd7{bottom:797.573333pt;}
.y138{bottom:798.053333pt;}
.y43{bottom:798.213333pt;}
.y155{bottom:798.533333pt;}
.y156{bottom:799.173333pt;}
.y154{bottom:799.813333pt;}
.y1ba{bottom:800.933333pt;}
.y63{bottom:801.893333pt;}
.yfe{bottom:802.053333pt;}
.y29d{bottom:802.533333pt;}
.y1e1{bottom:806.373333pt;}
.y2b{bottom:807.013333pt;}
.y11b{bottom:808.293333pt;}
.y75{bottom:809.573333pt;}
.y179{bottom:821.733333pt;}
.yd6{bottom:825.253333pt;}
.y177{bottom:825.413333pt;}
.y29c{bottom:825.573333pt;}
.y42{bottom:825.733333pt;}
.y153{bottom:827.333333pt;}
.y1b9{bottom:827.813333pt;}
.y270{bottom:827.973333pt;}
.y1b8{bottom:829.093333pt;}
.y62{bottom:829.573333pt;}
.yc9{bottom:829.733333pt;}
.y178{bottom:831.653333pt;}
.y2a{bottom:833.573333pt;}
.y1e0{bottom:834.053333pt;}
.y74{bottom:837.093333pt;}
.y29b{bottom:838.533333pt;}
.y11a{bottom:839.013333pt;}
.y218{bottom:845.573333pt;}
.y7{bottom:849.573333pt;}
.y176{bottom:850.693333pt;}
.y41{bottom:853.413333pt;}
.yd5{bottom:853.893333pt;}
.y174{bottom:854.373333pt;}
.y1d6{bottom:855.013333pt;}
.y152{bottom:855.333333pt;}
.y1b7{bottom:856.613333pt;}
.y61{bottom:857.093333pt;}
.yc8{bottom:857.253333pt;}
.y29a{bottom:858.533333pt;}
.y119{bottom:859.173333pt;}
.y26b{bottom:859.333333pt;}
.y29{bottom:860.133333pt;}
.y175{bottom:860.613333pt;}
.y1df{bottom:861.573333pt;}
.y73{bottom:864.773333pt;}
.y6{bottom:877.253333pt;}
.y298{bottom:878.533333pt;}
.y118{bottom:880.773333pt;}
.y40{bottom:880.933333pt;}
.yd4{bottom:881.413333pt;}
.y1d5{bottom:882.533333pt;}
.y212{bottom:883.013333pt;}
.y173{bottom:883.173333pt;}
.y151{bottom:883.333333pt;}
.y1b6{bottom:884.293333pt;}
.y60{bottom:884.773333pt;}
.yfd{bottom:884.933333pt;}
.y28{bottom:886.533333pt;}
.y1fc{bottom:889.253333pt;}
.y1de{bottom:889.413333pt;}
.y72{bottom:892.293333pt;}
.y294{bottom:899.173333pt;}
.y5{bottom:904.773333pt;}
.y3f{bottom:908.453333pt;}
.yd3{bottom:910.213333pt;}
.y172{bottom:910.693333pt;}
.y150{bottom:910.853333pt;}
.y1b5{bottom:911.813333pt;}
.y5f{bottom:912.293333pt;}
.ya1{bottom:912.453333pt;}
.y27{bottom:913.093333pt;}
.y1dd{bottom:916.773333pt;}
.y71{bottom:919.973333pt;}
.y268{bottom:922.533333pt;}
.y20a{bottom:925.413333pt;}
.y4{bottom:932.453333pt;}
.y3e{bottom:936.133333pt;}
.y14f{bottom:937.573333pt;}
.yd2{bottom:937.733333pt;}
.y1d4{bottom:937.893333pt;}
.y171{bottom:938.693333pt;}
.y14e{bottom:938.853333pt;}
.y1b4{bottom:939.493333pt;}
.y26{bottom:939.653333pt;}
.y5e{bottom:939.973333pt;}
.yc7{bottom:940.133333pt;}
.y1fb{bottom:944.453333pt;}
.y1dc{bottom:944.613333pt;}
.y70{bottom:947.493333pt;}
.y293{bottom:952.613333pt;}
.y3{bottom:958.240000pt;}
.y25{bottom:962.373333pt;}
.y3d{bottom:963.653333pt;}
.y1d3{bottom:965.413333pt;}
.y14d{bottom:965.733333pt;}
.y20c{bottom:966.053333pt;}
.yd1{bottom:966.533333pt;}
.y14c{bottom:967.013333pt;}
.y5d{bottom:967.493333pt;}
.ya0{bottom:967.653333pt;}
.y6f{bottom:967.973333pt;}
.y1fa{bottom:971.973333pt;}
.y1db{bottom:972.133333pt;}
.y2{bottom:977.120000pt;}
.y292{bottom:978.053333pt;}
.y3c{bottom:984.613333pt;}
.y267{bottom:991.333333pt;}
.y1b3{bottom:993.893333pt;}
.yd0{bottom:994.053333pt;}
.y1d2{bottom:994.213333pt;}
.y14b{bottom:994.533333pt;}
.y170{bottom:995.013333pt;}
.y1{bottom:995.040000pt;}
.y5c{bottom:995.173333pt;}
.yc6{bottom:995.333333pt;}
.y209{bottom:995.813333pt;}
.y1da{bottom:999.653333pt;}
.y6e{bottom:999.813333pt;}
.y291{bottom:1001.093333pt;}
.y24{bottom:1004.453333pt;}
.y290{bottom:1018.880000pt;}
.y6d{bottom:1020.480000pt;}
.ycf{bottom:1021.600000pt;}
.y1d1{bottom:1021.760000pt;}
.y5b{bottom:1022.720000pt;}
.y3b{bottom:1022.880000pt;}
.y21{bottom:1043.840000pt;}
.y20{bottom:1061.760000pt;}
.h26{height:19.986667pt;}
.h10{height:20.000000pt;}
.h16{height:20.960000pt;}
.h14{height:21.120000pt;}
.h3f{height:24.466667pt;}
.h3a{height:31.186667pt;}
.h3c{height:31.200000pt;}
.h38{height:31.346667pt;}
.h3b{height:31.360000pt;}
.h3e{height:31.378667pt;}
.h3d{height:31.386667pt;}
.h19{height:34.505000pt;}
.h2b{height:36.626667pt;}
.h31{height:37.426667pt;}
.h33{height:37.432000pt;}
.h37{height:38.625000pt;}
.h13{height:39.040000pt;}
.h29{height:39.986667pt;}
.h2a{height:41.746667pt;}
.h18{height:44.722500pt;}
.h1{height:47.380000pt;}
.hf{height:48.343750pt;}
.h11{height:48.375000pt;}
.h1e{height:50.276875pt;}
.h12{height:51.500000pt;}
.h2d{height:52.108438pt;}
.h28{height:52.134375pt;}
.h23{height:52.836875pt;}
.h27{height:53.535000pt;}
.h32{height:55.026667pt;}
.h40{height:55.402500pt;}
.hc{height:58.218750pt;}
.h25{height:60.626667pt;}
.h35{height:62.546667pt;}
.h39{height:62.580000pt;}
.h34{height:62.706667pt;}
.h15{height:63.680000pt;}
.h2{height:64.500000pt;}
.ha{height:64.712812pt;}
.h5{height:66.750000pt;}
.h1c{height:69.310000pt;}
.hd{height:70.812500pt;}
.h1b{height:71.870000pt;}
.hb{height:72.090000pt;}
.h1d{height:73.372500pt;}
.h6{height:73.490625pt;}
.h1a{height:74.642183pt;}
.h24{height:75.932500pt;}
.h4{height:78.097500pt;}
.h21{height:79.550000pt;}
.h1f{height:81.470000pt;}
.h20{height:86.172500pt;}
.h22{height:88.036875pt;}
.h2e{height:92.960000pt;}
.h7{height:94.785000pt;}
.h3{height:100.125000pt;}
.h30{height:107.218667pt;}
.he{height:125.440000pt;}
.h2c{height:140.826667pt;}
.h2f{height:183.706667pt;}
.h36{height:712.560000pt;}
.h0{height:1056.000000pt;}
.h9{height:1122.666667pt;}
.h17{height:1122.706587pt;}
.h8{height:1122.720000pt;}
.w1f{width:15.826667pt;}
.w3{width:29.760000pt;}
.w15{width:46.386667pt;}
.w21{width:46.706667pt;}
.w1c{width:47.360000pt;}
.w14{width:51.506667pt;}
.w20{width:51.826667pt;}
.w1d{width:56.640000pt;}
.w18{width:56.826667pt;}
.w16{width:57.458667pt;}
.w22{width:57.778667pt;}
.w1b{width:61.298667pt;}
.w1a{width:65.106667pt;}
.w1e{width:65.952000pt;}
.w12{width:71.352000pt;}
.w19{width:71.672000pt;}
.w17{width:75.186667pt;}
.w23{width:75.666667pt;}
.w8{width:79.986667pt;}
.w11{width:82.426667pt;}
.wf{width:82.746667pt;}
.w9{width:88.626667pt;}
.wa{width:89.298667pt;}
.wc{width:89.586667pt;}
.wd{width:89.618667pt;}
.we{width:93.906667pt;}
.w10{width:94.226667pt;}
.w26{width:94.386667pt;}
.w25{width:97.632000pt;}
.w24{width:101.760000pt;}
.wb{width:104.192000pt;}
.w6{width:122.112000pt;}
.w4{width:161.946667pt;}
.w13{width:311.893333pt;}
.w7{width:462.800000pt;}
.w5{width:793.740000pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:4.640000pt;}
.x6a{left:7.186667pt;}
.x28{left:9.120000pt;}
.x24{left:10.240000pt;}
.x26{left:11.840000pt;}
.x82{left:12.960000pt;}
.x6f{left:14.552000pt;}
.x66{left:15.680000pt;}
.x84{left:17.120000pt;}
.x79{left:18.906667pt;}
.x80{left:19.840000pt;}
.x78{left:20.960000pt;}
.x83{left:21.906667pt;}
.x85{left:23.040000pt;}
.x7c{left:23.986667pt;}
.x81{left:25.466667pt;}
.x86{left:26.426667pt;}
.x76{left:27.520000pt;}
.x7f{left:28.786667pt;}
.x8b{left:30.240000pt;}
.x7e{left:31.512000pt;}
.x71{left:32.946667pt;}
.x8c{left:34.066667pt;}
.x7d{left:35.840000pt;}
.x29{left:38.400000pt;}
.x69{left:40.000000pt;}
.x67{left:45.120000pt;}
.x2{left:75.520000pt;}
.x6e{left:93.000000pt;}
.x13{left:94.592000pt;}
.x30{left:100.032000pt;}
.x5{left:101.952000pt;}
.x2c{left:108.672000pt;}
.x15{left:110.592000pt;}
.x1c{left:118.592000pt;}
.x3c{left:132.352000pt;}
.x2e{left:138.086667pt;}
.x40{left:139.706667pt;}
.x3d{left:141.466667pt;}
.x1b{left:142.586667pt;}
.xb{left:143.706667pt;}
.x58{left:144.666667pt;}
.x42{left:146.586667pt;}
.x41{left:148.826667pt;}
.x22{left:151.866667pt;}
.x6{left:152.986667pt;}
.x43{left:155.546667pt;}
.x5d{left:156.666667pt;}
.x4e{left:161.946667pt;}
.x70{left:164.680000pt;}
.x5e{left:168.186667pt;}
.x1d{left:171.066667pt;}
.x5f{left:173.466667pt;}
.x9{left:181.626667pt;}
.x60{left:183.866667pt;}
.x87{left:184.826667pt;}
.x5c{left:190.266667pt;}
.x7{left:197.786667pt;}
.x2a{left:199.866667pt;}
.x44{left:201.626667pt;}
.x45{left:210.586667pt;}
.x59{left:212.506667pt;}
.x10{left:224.506667pt;}
.x32{left:227.066667pt;}
.x4f{left:228.986667pt;}
.x33{left:236.026667pt;}
.xc{left:243.706667pt;}
.xd{left:247.226667pt;}
.x88{left:250.146667pt;}
.x62{left:251.746667pt;}
.x1a{left:259.746667pt;}
.x4b{left:265.986667pt;}
.x46{left:267.426667pt;}
.x18{left:268.386667pt;}
.x52{left:273.026667pt;}
.x4c{left:274.786667pt;}
.x47{left:276.386667pt;}
.x1e{left:278.946667pt;}
.x2d{left:280.386667pt;}
.x31{left:282.786667pt;}
.x5a{left:283.906667pt;}
.x2f{left:286.626667pt;}
.x7a{left:291.106667pt;}
.x51{left:292.546667pt;}
.x5b{left:294.306667pt;}
.x14{left:296.386667pt;}
.x50{left:297.986667pt;}
.x61{left:299.426667pt;}
.x57{left:302.306667pt;}
.x21{left:310.786667pt;}
.x17{left:313.506667pt;}
.x11{left:315.426667pt;}
.x6b{left:316.866667pt;}
.xa{left:319.266667pt;}
.x49{left:321.826667pt;}
.x23{left:331.426667pt;}
.x63{left:333.186667pt;}
.x4d{left:335.746667pt;}
.x19{left:338.146667pt;}
.x2b{left:343.906667pt;}
.x48{left:347.746667pt;}
.x89{left:351.906667pt;}
.xe{left:357.506667pt;}
.x64{left:359.586667pt;}
.x25{left:361.506667pt;}
.x65{left:364.706667pt;}
.x4{left:368.866667pt;}
.xf{left:382.146667pt;}
.x4a{left:384.386667pt;}
.x20{left:389.506667pt;}
.x16{left:393.346667pt;}
.x1f{left:394.786667pt;}
.x12{left:397.026667pt;}
.x1{left:407.906667pt;}
.x8{left:421.186667pt;}
.x3a{left:427.933333pt;}
.x3b{left:436.893333pt;}
.x3{left:439.133333pt;}
.x8a{left:449.546667pt;}
.x7b{left:461.066667pt;}
.x72{left:476.906667pt;}
.x38{left:505.373333pt;}
.x39{left:509.373333pt;}
.x6c{left:511.466667pt;}
.x73{left:528.746667pt;}
.x34{left:553.853333pt;}
.x35{left:565.693333pt;}
.x74{left:575.466667pt;}
.x68{left:601.413333pt;}
.x36{left:619.973333pt;}
.x37{left:631.333333pt;}
.x75{left:633.253333pt;}
.x55{left:642.373333pt;}
.x56{left:650.533333pt;}
.x53{left:666.533333pt;}
.x54{left:674.693333pt;}
.x3e{left:684.613333pt;}
.x3f{left:693.733333pt;}
.x6d{left:695.653333pt;}
.x77{left:708.933333pt;}
}




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