
    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_42cef2776eb023d0dc4ca780.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a850b65e7fe0a75fb849b2d6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f25e23fe49c89ed6e27e6dd0.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_54a5297484ca7977db687250.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_70e421b1f57f065e87b15f68.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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_5086c2f0761572dda63ef5f7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_12baa827d73ece072758022e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b22abccaa70d40a25d773100.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.989258;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_c050de88a6ddcd2fba529962.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_4e2fa4187d90b924832c0bed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a4740dffeedda3ff36a0602.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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_444004f8c865c557ee960ac0.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f6b5dae77a7610df8534edd6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_e463a1401dcadc1b26ff3547.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d7351b1e0fe0e96c41e70428.woff2')format("woff");}.fff{font-family:fff;line-height:0.937500;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_a52a57f9da023bb571f04b4b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.107422;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);}
.m5{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242825,0.000000,-0.080933,0.236537,0,0);-ms-transform:matrix(0.242825,0.000000,-0.080933,0.236537,0,0);-webkit-transform:matrix(0.242825,0.000000,-0.080933,0.236537,0,0);}
.m4{transform:matrix(0.245480,0.000000,-0.081819,0.236232,0,0);-ms-transform:matrix(0.245480,0.000000,-0.081819,0.236232,0,0);-webkit-transform:matrix(0.245480,0.000000,-0.081819,0.236232,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);}
.m6{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.256646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256646,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259787,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);}
.v2{vertical-align:-68.400000px;}
.v8{vertical-align:-16.806609px;}
.v3{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880002px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.v9{vertical-align:16.806609px;}
.v1{vertical-align:18.000000px;}
.v7{vertical-align:20.159992px;}
.vb{vertical-align:36.000000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.ls4a{letter-spacing:-0.978000px;}
.ls21{letter-spacing:-0.567600px;}
.ls48{letter-spacing:-0.335400px;}
.ls23{letter-spacing:-0.313800px;}
.ls20{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.259800px;}
.ls49{letter-spacing:-0.258000px;}
.ls16{letter-spacing:-0.253200px;}
.ls47{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.223800px;}
.ls4c{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls46{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.100200px;}
.ls31{letter-spacing:-0.058320px;}
.ls2{letter-spacing:-0.053400px;}
.ls3{letter-spacing:-0.053280px;}
.ls2a{letter-spacing:-0.050700px;}
.ls4{letter-spacing:-0.017280px;}
.ls1f{letter-spacing:-0.008640px;}
.ls45{letter-spacing:-0.004326px;}
.ls44{letter-spacing:-0.004320px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.004320px;}
.ls19{letter-spacing:0.005760px;}
.ls17{letter-spacing:0.010080px;}
.ls2c{letter-spacing:0.013440px;}
.ls34{letter-spacing:0.017280px;}
.ls29{letter-spacing:0.022320px;}
.ls43{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.037440px;}
.ls2f{letter-spacing:0.052559px;}
.ls1b{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.102720px;}
.ls36{letter-spacing:0.106560px;}
.ls3f{letter-spacing:0.133920px;}
.ls0{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.146880px;}
.ls22{letter-spacing:0.152400px;}
.ls4b{letter-spacing:0.162000px;}
.ls3b{letter-spacing:0.162720px;}
.ls33{letter-spacing:0.177840px;}
.ls3d{letter-spacing:0.196992px;}
.ls14{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.234000px;}
.ls3c{letter-spacing:0.239040px;}
.ls3e{letter-spacing:0.259200px;}
.ls30{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.315600px;}
.ls28{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.612000px;}
.ls4f{letter-spacing:0.613440px;}
.ls5{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.702720px;}
.ls4e{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.835200px;}
.ls9{letter-spacing:0.858240px;}
.ls12{letter-spacing:0.876000px;}
.ls4d{letter-spacing:0.926640px;}
.ls37{letter-spacing:0.978000px;}
.ls32{letter-spacing:7.146720px;}
.ls41{letter-spacing:7.830000px;}
.ls1d{letter-spacing:12.959280px;}
.ls40{letter-spacing:15.102000px;}
.ls1c{letter-spacing:16.559280px;}
.ls39{letter-spacing:20.826720px;}
.ls42{letter-spacing:55.854000px;}
.ls38{letter-spacing:78.402720px;}
.ls1e{letter-spacing:95.052960px;}
.ls18{letter-spacing:166.962720px;}
.ls1a{letter-spacing:221.682720px;}
.ls26{letter-spacing:231.762720px;}
.ls25{letter-spacing:278.562720px;}
.ls2e{letter-spacing:300.781680px;}
.ls7{letter-spacing:667.542720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws25{word-spacing:-314.287440px;}
.ws4b{word-spacing:-59.760000px;}
.ws2c{word-spacing:-40.338000px;}
.ws3a{word-spacing:-38.519858px;}
.ws31{word-spacing:-35.275743px;}
.ws2a{word-spacing:-32.808240px;}
.ws1{word-spacing:-20.016000px;}
.ws19{word-spacing:-18.567120px;}
.ws3d{word-spacing:-18.305520px;}
.ws16{word-spacing:-18.109320px;}
.ws17{word-spacing:-17.847120px;}
.ws2f{word-spacing:-17.591280px;}
.ws39{word-spacing:-17.540919px;}
.ws8{word-spacing:-17.279280px;}
.wsa{word-spacing:-17.225280px;}
.wsb{word-spacing:-16.973280px;}
.ws2b{word-spacing:-16.873080px;}
.ws1a{word-spacing:-16.650720px;}
.ws4{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.559880px;}
.ws23{word-spacing:-16.513080px;}
.ws9{word-spacing:-16.506480px;}
.wsc{word-spacing:-16.353480px;}
.ws20{word-spacing:-15.246000px;}
.wse{word-spacing:-15.228000px;}
.ws28{word-spacing:-15.052032px;}
.ws2{word-spacing:-15.012000px;}
.ws26{word-spacing:-14.970240px;}
.ws2e{word-spacing:-14.940000px;}
.ws24{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.450752px;}
.wsf{word-spacing:-13.410720px;}
.ws11{word-spacing:-13.186920px;}
.ws1c{word-spacing:-12.833400px;}
.ws48{word-spacing:-12.204000px;}
.ws47{word-spacing:-12.042000px;}
.ws1d{word-spacing:-11.924880px;}
.ws49{word-spacing:-11.880000px;}
.ws4a{word-spacing:-11.664000px;}
.ws42{word-spacing:-10.934784px;}
.ws44{word-spacing:-10.884084px;}
.wsd{word-spacing:-10.812960px;}
.ws7{word-spacing:-10.808640px;}
.ws3b{word-spacing:-10.804320px;}
.ws3c{word-spacing:-10.804314px;}
.ws15{word-spacing:-10.800000px;}
.ws6{word-spacing:-10.791360px;}
.ws43{word-spacing:-10.676784px;}
.ws41{word-spacing:-10.599384px;}
.ws22{word-spacing:-10.080000px;}
.ws21{word-spacing:-10.008000px;}
.ws45{word-spacing:-9.956784px;}
.ws27{word-spacing:-9.925920px;}
.ws2d{word-spacing:-9.720000px;}
.ws3e{word-spacing:-9.437760px;}
.ws30{word-spacing:-8.857177px;}
.ws29{word-spacing:-8.786880px;}
.ws3f{word-spacing:-8.534880px;}
.ws14{word-spacing:-8.416800px;}
.ws10{word-spacing:-8.406720px;}
.ws13{word-spacing:-8.153520px;}
.ws46{word-spacing:-8.136000px;}
.ws40{word-spacing:-6.834240px;}
.ws37{word-spacing:-0.066991px;}
.ws18{word-spacing:-0.066240px;}
.ws33{word-spacing:-0.060716px;}
.ws1f{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:5.801400px;}
.ws32{word-spacing:7.108388px;}
.ws1e{word-spacing:86.514528px;}
.ws38{word-spacing:121.475476px;}
.ws34{word-spacing:298.573790px;}
.ws35{word-spacing:317.767707px;}
.ws36{word-spacing:331.717932px;}
._20{margin-left:-283.721485px;}
._31{margin-left:-251.389288px;}
._2c{margin-left:-189.694995px;}
._2f{margin-left:-176.063329px;}
._33{margin-left:-164.757196px;}
._29{margin-left:-154.750056px;}
._21{margin-left:-139.855537px;}
._23{margin-left:-126.854071px;}
._27{margin-left:-111.654644px;}
._26{margin-left:-106.039830px;}
._2e{margin-left:-99.687590px;}
._2b{margin-left:-98.145957px;}
._32{margin-left:-97.100799px;}
._2d{margin-left:-93.896621px;}
._2a{margin-left:-92.227010px;}
._25{margin-left:-90.631943px;}
._28{margin-left:-86.965705px;}
._34{margin-left:-73.646944px;}
._22{margin-left:-49.356121px;}
._1c{margin-left:-15.360000px;}
._1b{margin-left:-4.373280px;}
._0{margin-left:-1.010964px;}
._1{width:1.086577px;}
._2{width:2.265692px;}
._a{width:3.724531px;}
._3{width:5.139599px;}
._5{width:6.693000px;}
._4{width:8.067600px;}
._6{width:9.550823px;}
._8{width:10.577400px;}
._7{width:11.713199px;}
._10{width:13.027680px;}
._9{width:14.641200px;}
._12{width:15.710615px;}
._18{width:16.761360px;}
._e{width:17.846446px;}
._13{width:18.858375px;}
._b{width:20.318400px;}
._35{width:21.319919px;}
._d{width:22.350001px;}
._c{width:23.970000px;}
._f{width:25.168320px;}
._11{width:26.343120px;}
._37{width:28.087200px;}
._15{width:29.939760px;}
._14{width:31.236240px;}
._3a{width:33.405840px;}
._39{width:34.601040px;}
._3b{width:44.521200px;}
._1e{width:63.897120px;}
._19{width:85.809312px;}
._1a{width:126.088560px;}
._38{width:139.496640px;}
._36{width:172.509600px;}
._1d{width:262.198703px;}
._16{width:722.417326px;}
._17{width:847.542720px;}
._30{width:1973.946720px;}
._24{width:2081.946720px;}
._1f{width:2450.562720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fsd{font-size:35.428706px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs12{font-size:39.090109px;}
.fs15{font-size:40.882798px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:43.920000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:48.384000px;}
.fs3{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:60.716008px;}
.fsf{font-size:64.254541px;}
.fs8{font-size:66.240000px;}
.fs11{font-size:66.990743px;}
.fs14{font-size:70.163675px;}
.fs2{font-size:72.000000px;}
.fs16{font-size:74.157166px;}
.fs0{font-size:84.240000px;}
.fs10{font-size:88.469587px;}
.fs13{font-size:92.535864px;}
.y13e{bottom:-8.820000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:0.030000px;}
.y1e9{bottom:0.360000px;}
.y1e0{bottom:0.540000px;}
.y1e5{bottom:0.720000px;}
.y73{bottom:1.080000px;}
.yc0{bottom:1.335000px;}
.y79{bottom:1.830000px;}
.y77{bottom:2.190000px;}
.y1ce{bottom:2.670000px;}
.y131{bottom:2.880000px;}
.y84{bottom:2.910000px;}
.yf8{bottom:2.955000px;}
.y134{bottom:3.060000px;}
.y88{bottom:3.240000px;}
.y80{bottom:3.270000px;}
.yff{bottom:3.315000px;}
.yd9{bottom:3.420000px;}
.y18f{bottom:3.546519px;}
.y75{bottom:3.600000px;}
.y71{bottom:3.630000px;}
.yc7{bottom:3.675000px;}
.y164{bottom:3.750000px;}
.ybd{bottom:3.810000px;}
.y166{bottom:3.960000px;}
.y101{bottom:4.035000px;}
.y132{bottom:4.140000px;}
.yba{bottom:4.170000px;}
.y1d0{bottom:4.425000px;}
.y169{bottom:4.500000px;}
.yb4{bottom:5.070000px;}
.y1a4{bottom:5.133276px;}
.yaa{bottom:5.220000px;}
.yde{bottom:5.250000px;}
.yb2{bottom:5.295000px;}
.y1b8{bottom:5.400000px;}
.y7b{bottom:5.430000px;}
.y1be{bottom:5.445000px;}
.yb0{bottom:5.610000px;}
.ydc{bottom:5.760000px;}
.ydf{bottom:5.790000px;}
.ye3{bottom:5.940000px;}
.y142{bottom:6.015000px;}
.yac{bottom:6.330000px;}
.y140{bottom:6.375000px;}
.ye4{bottom:6.480000px;}
.y146{bottom:6.555000px;}
.y144{bottom:6.585000px;}
.y148{bottom:6.660000px;}
.y1c7{bottom:6.810000px;}
.y190{bottom:7.354621px;}
.y194{bottom:8.114693px;}
.y193{bottom:8.178837px;}
.y7e{bottom:8.310000px;}
.yb8{bottom:8.490000px;}
.y1c9{bottom:8.790000px;}
.yb6{bottom:8.895000px;}
.y1da{bottom:9.000000px;}
.y12d{bottom:9.105000px;}
.y1a1{bottom:9.508470px;}
.y1a6{bottom:9.508472px;}
.y1a9{bottom:9.508486px;}
.y1ad{bottom:9.508489px;}
.y1cc{bottom:10.230000px;}
.y1b5{bottom:10.260000px;}
.yae{bottom:10.290000px;}
.ye6{bottom:11.700000px;}
.y86{bottom:11.880000px;}
.yda{bottom:12.960000px;}
.yc5{bottom:13.890000px;}
.yc2{bottom:13.935000px;}
.y1c5{bottom:14.010000px;}
.ybf{bottom:15.195000px;}
.yfd{bottom:15.840000px;}
.y162{bottom:18.036000px;}
.y130{bottom:18.360000px;}
.y1b6{bottom:18.900000px;}
.yfa{bottom:20.130000px;}
.y83{bottom:20.190000px;}
.y12b{bottom:20.415000px;}
.y87{bottom:20.520000px;}
.yd8{bottom:22.500000px;}
.y1a8{bottom:23.151158px;}
.y1ab{bottom:23.151177px;}
.y1ae{bottom:23.151181px;}
.y1a3{bottom:23.151189px;}
.y1d9{bottom:25.560000px;}
.y7d{bottom:25.590000px;}
.y1cb{bottom:26.790000px;}
.y1b4{bottom:27.540000px;}
.y1a5{bottom:29.869691px;}
.y1b0{bottom:31.006649px;}
.y1ac{bottom:34.175441px;}
.y1a7{bottom:34.175443px;}
.y1a2{bottom:34.244184px;}
.y1aa{bottom:34.244191px;}
.y1af{bottom:34.244193px;}
.y1a0{bottom:34.312926px;}
.y126{bottom:36.000000px;}
.y1d8{bottom:41.400000px;}
.y1d7{bottom:50.400000px;}
.y1e4{bottom:50.970000px;}
.y1df{bottom:51.165000px;}
.y27{bottom:57.060000px;}
.y1dd{bottom:58.140000px;}
.y1e8{bottom:58.320000px;}
.y161{bottom:59.070000px;}
.y12c{bottom:63.360000px;}
.y127{bottom:70.920000px;}
.y1d6{bottom:75.240000px;}
.y15f{bottom:83.310000px;}
.y8b{bottom:84.240000px;}
.y212{bottom:90.900000px;}
.y1f7{bottom:91.080000px;}
.y1d5{bottom:91.800000px;}
.y156{bottom:92.880000px;}
.y158{bottom:102.810000px;}
.y50{bottom:104.760000px;}
.y128{bottom:105.870000px;}
.y155{bottom:106.920000px;}
.y6f{bottom:107.820000px;}
.y1d4{bottom:108.180000px;}
.y157{bottom:109.980000px;}
.ya8{bottom:115.920000px;}
.y4f{bottom:122.040000px;}
.y1d3{bottom:124.740000px;}
.y6e{bottom:125.100000px;}
.y1f6{bottom:125.460000px;}
.y74{bottom:128.160000px;}
.y72{bottom:129.600000px;}
.ya7{bottom:133.020000px;}
.y159{bottom:135.720000px;}
.y4e{bottom:139.176000px;}
.y129{bottom:140.790000px;}
.y1d2{bottom:141.120000px;}
.y6d{bottom:142.416000px;}
.y1f5{bottom:142.776000px;}
.ya6{bottom:150.330000px;}
.y168{bottom:151.410000px;}
.y4d{bottom:157.170000px;}
.y6c{bottom:159.690000px;}
.y1f4{bottom:160.050000px;}
.y160{bottom:160.530000px;}
.ya5{bottom:167.610000px;}
.y15a{bottom:168.585000px;}
.y4c{bottom:175.530000px;}
.y12a{bottom:175.755000px;}
.y6b{bottom:176.970000px;}
.y211{bottom:177.150000px;}
.y1f3{bottom:177.330000px;}
.y78{bottom:179.820000px;}
.y12e{bottom:183.960000px;}
.ya4{bottom:184.890000px;}
.y76{bottom:191.160000px;}
.y4b{bottom:193.890000px;}
.y6a{bottom:194.250000px;}
.y210{bottom:194.430000px;}
.y1f2{bottom:194.610000px;}
.y15b{bottom:201.495000px;}
.ya3{bottom:202.170000px;}
.y81{bottom:209.520000px;}
.y4a{bottom:211.350000px;}
.y1f1{bottom:211.710000px;}
.ya2{bottom:219.450000px;}
.y49{bottom:228.630000px;}
.y1f0{bottom:228.990000px;}
.y7a{bottom:231.480000px;}
.y15c{bottom:234.360000px;}
.ya1{bottom:236.550000px;}
.yab{bottom:242.100000px;}
.y48{bottom:245.910000px;}
.y1ef{bottom:246.270000px;}
.yf6{bottom:253.650000px;}
.ya0{bottom:253.830000px;}
.y7f{bottom:255.780000px;}
.y70{bottom:256.320000px;}
.y1c3{bottom:258.510000px;}
.yad{bottom:260.280000px;}
.y47{bottom:263.190000px;}
.y1ee{bottom:263.550000px;}
.y15d{bottom:267.270000px;}
.yf5{bottom:270.930000px;}
.y9f{bottom:271.110000px;}
.y1c2{bottom:275.790000px;}
.y46{bottom:280.470000px;}
.y20f{bottom:280.650000px;}
.y1ed{bottom:280.830000px;}
.y82{bottom:281.880000px;}
.yaf{bottom:283.680000px;}
.y22{bottom:285.690000px;}
.yf4{bottom:288.210000px;}
.y9e{bottom:288.390000px;}
.yb3{bottom:290.520000px;}
.yb7{bottom:291.240000px;}
.y1c1{bottom:291.270000px;}
.y124{bottom:292.170000px;}
.y45{bottom:297.750000px;}
.y20e{bottom:297.930000px;}
.y15e{bottom:300.135000px;}
.y1ec{bottom:303.150000px;}
.yf3{bottom:305.490000px;}
.y9d{bottom:305.670000px;}
.y123{bottom:309.450000px;}
.y44{bottom:314.850000px;}
.y20d{bottom:315.210000px;}
.y19e{bottom:319.170000px;}
.ybc{bottom:320.580000px;}
.y7c{bottom:322.200000px;}
.yf2{bottom:322.770000px;}
.y9c{bottom:322.950000px;}
.y122{bottom:326.550000px;}
.y21{bottom:332.130000px;}
.y1eb{bottom:332.310000px;}
.y20c{bottom:332.490000px;}
.y19d{bottom:336.450000px;}
.y1c0{bottom:337.350000px;}
.yf1{bottom:339.870000px;}
.y9b{bottom:340.050000px;}
.y121{bottom:343.830000px;}
.y20{bottom:349.410000px;}
.y20b{bottom:349.770000px;}
.y19c{bottom:353.730000px;}
.yc4{bottom:354.240000px;}
.yf0{bottom:357.150000px;}
.y9a{bottom:357.330000px;}
.y1bf{bottom:360.930000px;}
.y120{bottom:361.110000px;}
.yb9{bottom:362.880000px;}
.ybb{bottom:363.600000px;}
.y1ea{bottom:364.170000px;}
.y1f{bottom:366.690000px;}
.y20a{bottom:367.050000px;}
.y19b{bottom:371.010000px;}
.yef{bottom:374.430000px;}
.y99{bottom:374.610000px;}
.y11f{bottom:378.390000px;}
.yc1{bottom:383.220000px;}
.y1bd{bottom:383.430000px;}
.y1e{bottom:383.970000px;}
.y209{bottom:384.150000px;}
.y19a{bottom:388.155000px;}
.yee{bottom:391.755000px;}
.y98{bottom:391.935000px;}
.y11e{bottom:395.715000px;}
.y1d{bottom:401.295000px;}
.y208{bottom:401.475000px;}
.y199{bottom:405.435000px;}
.y1bc{bottom:405.975000px;}
.yb5{bottom:408.060000px;}
.y97{bottom:409.215000px;}
.ybe{bottom:412.920000px;}
.y11d{bottom:412.995000px;}
.y43{bottom:418.395000px;}
.y207{bottom:418.755000px;}
.y198{bottom:422.715000px;}
.yed{bottom:426.315000px;}
.y96{bottom:426.495000px;}
.ya9{bottom:426.675000px;}
.yb1{bottom:426.780000px;}
.y1bb{bottom:428.475000px;}
.y11c{bottom:430.095000px;}
.y154{bottom:434.235000px;}
.y1c{bottom:435.675000px;}
.y206{bottom:436.035000px;}
.yfe{bottom:438.660000px;}
.yc6{bottom:439.020000px;}
.y197{bottom:439.995000px;}
.yec{bottom:443.415000px;}
.y95{bottom:443.595000px;}
.y1ba{bottom:450.975000px;}
.y153{bottom:451.515000px;}
.y1b{bottom:452.955000px;}
.y205{bottom:453.315000px;}
.y196{bottom:457.275000px;}
.yeb{bottom:460.695000px;}
.y94{bottom:460.875000px;}
.y11b{bottom:464.655000px;}
.y152{bottom:468.795000px;}
.y1a{bottom:470.235000px;}
.y204{bottom:470.415000px;}
.y192{bottom:471.344959px;}
.y100{bottom:472.860000px;}
.y1b9{bottom:473.475000px;}
.y8a{bottom:475.635000px;}
.y1e7{bottom:476.715000px;}
.yea{bottom:477.975000px;}
.y195{bottom:480.315000px;}
.y11a{bottom:481.935000px;}
.y141{bottom:484.380000px;}
.y151{bottom:486.075000px;}
.y19{bottom:487.515000px;}
.y203{bottom:487.695000px;}
.y93{bottom:493.635000px;}
.ye9{bottom:495.255000px;}
.y1b7{bottom:495.975000px;}
.y18e{bottom:496.020000px;}
.yf7{bottom:497.880000px;}
.y119{bottom:499.215000px;}
.y102{bottom:501.840000px;}
.y150{bottom:503.355000px;}
.y18{bottom:504.615000px;}
.y191{bottom:504.975000px;}
.y92{bottom:511.635000px;}
.ye8{bottom:512.535000px;}
.y118{bottom:516.315000px;}
.y1b3{bottom:520.095000px;}
.y14f{bottom:520.455000px;}
.y17{bottom:521.895000px;}
.y18d{bottom:522.255000px;}
.y91{bottom:529.635000px;}
.ye7{bottom:529.815000px;}
.y117{bottom:533.595000px;}
.y14e{bottom:537.735000px;}
.y16{bottom:539.175000px;}
.y18c{bottom:539.535000px;}
.ye5{bottom:545.295000px;}
.y90{bottom:547.635000px;}
.y116{bottom:550.875000px;}
.yfb{bottom:551.955000px;}
.y14d{bottom:555.015000px;}
.y15{bottom:556.455000px;}
.y18b{bottom:556.815000px;}
.y13f{bottom:558.000000px;}
.y8f{bottom:565.635000px;}
.y115{bottom:568.155000px;}
.y145{bottom:568.440000px;}
.ye2{bottom:570.315000px;}
.y14c{bottom:572.295000px;}
.y1b2{bottom:573.375000px;}
.y42{bottom:573.735000px;}
.y202{bottom:573.915000px;}
.y18a{bottom:574.095000px;}
.y8e{bottom:583.635000px;}
.y114{bottom:585.435000px;}
.yf9{bottom:588.420000px;}
.y14b{bottom:589.575000px;}
.y1b1{bottom:590.655000px;}
.y14{bottom:591.015000px;}
.y201{bottom:591.195000px;}
.y189{bottom:591.375000px;}
.ye1{bottom:594.075000px;}
.y69{bottom:596.055000px;}
.y8d{bottom:601.635000px;}
.y113{bottom:602.715000px;}
.y1e6{bottom:603.615000px;}
.y14a{bottom:606.675000px;}
.y13{bottom:608.115000px;}
.y200{bottom:608.475000px;}
.y188{bottom:608.655000px;}
.ye0{bottom:616.575000px;}
.y8c{bottom:619.635000px;}
.y112{bottom:619.815000px;}
.y1e3{bottom:622.695000px;}
.y149{bottom:623.955000px;}
.y68{bottom:625.215000px;}
.y12{bottom:625.395000px;}
.y1ff{bottom:625.755000px;}
.y187{bottom:625.935000px;}
.y111{bottom:637.095000px;}
.y89{bottom:637.635000px;}
.ydd{bottom:639.075000px;}
.y67{bottom:642.345000px;}
.y11{bottom:642.705000px;}
.y1fe{bottom:643.065000px;}
.y186{bottom:643.245000px;}
.y19f{bottom:648.269959px;}
.y110{bottom:654.405000px;}
.y85{bottom:655.665000px;}
.y66{bottom:659.625000px;}
.y10{bottom:659.985000px;}
.y1fd{bottom:660.345000px;}
.y185{bottom:660.525000px;}
.ydb{bottom:661.605000px;}
.y143{bottom:671.400000px;}
.y10f{bottom:671.685000px;}
.y65{bottom:676.905000px;}
.yf{bottom:677.265000px;}
.y1fc{bottom:677.445000px;}
.y184{bottom:677.625000px;}
.yfc{bottom:679.425000px;}
.yd7{bottom:685.545000px;}
.y10e{bottom:688.965000px;}
.y64{bottom:694.185000px;}
.y41{bottom:694.545000px;}
.y1fb{bottom:694.725000px;}
.y183{bottom:694.905000px;}
.y147{bottom:697.605000px;}
.y10d{bottom:706.245000px;}
.y63{bottom:711.465000px;}
.y40{bottom:711.645000px;}
.y1fa{bottom:712.005000px;}
.y182{bottom:712.185000px;}
.ye{bottom:716.685000px;}
.y10c{bottom:723.345000px;}
.yd6{bottom:728.205000px;}
.y62{bottom:728.745000px;}
.y3f{bottom:728.925000px;}
.y181{bottom:729.465000px;}
.y1f9{bottom:734.325000px;}
.y1e2{bottom:735.225000px;}
.y10b{bottom:740.625000px;}
.y61{bottom:745.845000px;}
.y3e{bottom:746.205000px;}
.y180{bottom:746.745000px;}
.y10a{bottom:757.905000px;}
.yd5{bottom:762.765000px;}
.yd{bottom:763.125000px;}
.y3d{bottom:763.485000px;}
.y17f{bottom:764.025000px;}
.y109{bottom:775.185000px;}
.yd4{bottom:779.865000px;}
.y60{bottom:780.405000px;}
.y3c{bottom:780.765000px;}
.y17e{bottom:781.125000px;}
.y108{bottom:792.465000px;}
.yd3{bottom:797.145000px;}
.y5f{bottom:797.685000px;}
.y3b{bottom:797.865000px;}
.y17d{bottom:799.485000px;}
.y107{bottom:809.565000px;}
.yd2{bottom:814.425000px;}
.yc{bottom:814.965000px;}
.y3a{bottom:815.145000px;}
.y17c{bottom:816.585000px;}
.y106{bottom:826.845000px;}
.yd1{bottom:831.705000px;}
.yb{bottom:832.065000px;}
.y39{bottom:832.425000px;}
.y17b{bottom:834.945000px;}
.y105{bottom:844.125000px;}
.yd0{bottom:848.985000px;}
.ya{bottom:849.345000px;}
.y38{bottom:849.705000px;}
.y17a{bottom:853.125000px;}
.y1f8{bottom:854.745000px;}
.y104{bottom:861.405000px;}
.y1e1{bottom:861.945000px;}
.ycf{bottom:866.265000px;}
.y9{bottom:866.625000px;}
.y37{bottom:866.985000px;}
.y179{bottom:871.305000px;}
.y1de{bottom:881.025000px;}
.y103{bottom:883.185000px;}
.yce{bottom:883.365000px;}
.y1cf{bottom:883.800000px;}
.y8{bottom:883.905000px;}
.y36{bottom:884.265000px;}
.y1c8{bottom:889.200000px;}
.y178{bottom:889.665000px;}
.ycd{bottom:900.690000px;}
.y5e{bottom:901.230000px;}
.y35{bottom:901.410000px;}
.y177{bottom:906.990000px;}
.ycc{bottom:917.970000px;}
.y7{bottom:918.510000px;}
.y34{bottom:918.690000px;}
.y176{bottom:924.270000px;}
.ycb{bottom:935.250000px;}
.y5d{bottom:935.610000px;}
.y33{bottom:935.970000px;}
.y125{bottom:938.340000px;}
.y13d{bottom:938.490000px;}
.y175{bottom:941.550000px;}
.y13c{bottom:943.170000px;}
.y1c6{bottom:945.360000px;}
.yca{bottom:952.530000px;}
.y5c{bottom:952.890000px;}
.y32{bottom:953.250000px;}
.y174{bottom:958.830000px;}
.y13b{bottom:959.370000px;}
.y5b{bottom:970.170000px;}
.y31{bottom:970.530000px;}
.y6{bottom:973.590000px;}
.yc9{bottom:974.130000px;}
.y13a{bottom:975.570000px;}
.y173{bottom:976.110000px;}
.y1d1{bottom:985.830000px;}
.y5a{bottom:987.450000px;}
.y30{bottom:987.810000px;}
.y5{bottom:990.870000px;}
.y139{bottom:991.950000px;}
.y172{bottom:993.210000px;}
.y1dc{bottom:993.570000px;}
.y59{bottom:1004.730000px;}
.y2f{bottom:1004.910000px;}
.y4{bottom:1008.150000px;}
.yc8{bottom:1009.950000px;}
.y171{bottom:1010.490000px;}
.y58{bottom:1022.010000px;}
.y2e{bottom:1022.190000px;}
.y138{bottom:1024.530000px;}
.y170{bottom:1027.770000px;}
.y57{bottom:1039.110000px;}
.y2d{bottom:1039.470000px;}
.y137{bottom:1040.730000px;}
.y16f{bottom:1045.050000px;}
.y1cd{bottom:1055.520000px;}
.y56{bottom:1056.390000px;}
.y2c{bottom:1056.750000px;}
.y136{bottom:1056.930000px;}
.y3{bottom:1059.810000px;}
.y16e{bottom:1062.330000px;}
.y135{bottom:1073.310000px;}
.y55{bottom:1073.670000px;}
.y2b{bottom:1074.030000px;}
.y16d{bottom:1079.610000px;}
.y133{bottom:1089.510000px;}
.y54{bottom:1090.950000px;}
.y2a{bottom:1091.310000px;}
.y16c{bottom:1096.710000px;}
.y1ca{bottom:1100.880000px;}
.y12f{bottom:1105.890000px;}
.y1c4{bottom:1106.100000px;}
.y53{bottom:1108.230000px;}
.y29{bottom:1108.410000px;}
.y2{bottom:1112.910000px;}
.y16b{bottom:1119.030000px;}
.y1db{bottom:1120.290000px;}
.y52{bottom:1125.510000px;}
.y28{bottom:1130.730000px;}
.y1{bottom:1137.030000px;}
.y16a{bottom:1139.730000px;}
.y163{bottom:1140.480000px;}
.y165{bottom:1141.020000px;}
.y167{bottom:1141.920000px;}
.y51{bottom:1142.610000px;}
.y26{bottom:1195.020000px;}
.y25{bottom:1199.352000px;}
.y24{bottom:1215.552000px;}
.y23{bottom:1231.752000px;}
.h2d{height:12.960000px;}
.h8{height:15.120000px;}
.h35{height:15.480000px;}
.h34{height:15.660000px;}
.hb{height:16.020000px;}
.ha{height:16.200000px;}
.h3a{height:16.380000px;}
.h21{height:16.560000px;}
.h1b{height:16.740000px;}
.h1a{height:16.920000px;}
.h28{height:17.100000px;}
.he{height:17.280000px;}
.h11{height:17.316000px;}
.hf{height:17.460000px;}
.h9{height:17.820000px;}
.h58{height:18.360000px;}
.h16{height:18.540000px;}
.h37{height:18.900000px;}
.h13{height:19.260000px;}
.h17{height:19.440000px;}
.hc{height:19.620000px;}
.h50{height:20.340000px;}
.h4f{height:21.060000px;}
.h19{height:21.420000px;}
.h18{height:21.600000px;}
.h3d{height:22.499671px;}
.h24{height:22.500000px;}
.h25{height:22.536000px;}
.h15{height:23.040000px;}
.h27{height:23.580000px;}
.h26{height:23.760000px;}
.h42{height:24.824955px;}
.h20{height:25.380000px;}
.h1e{height:25.560000px;}
.h1c{height:26.640000px;}
.h4e{height:29.700000px;}
.h33{height:30.960000px;}
.h10{height:34.560000px;}
.h3e{height:34.754038px;}
.h22{height:37.980000px;}
.h5{height:39.313477px;}
.h2a{height:39.420000px;}
.hd{height:39.600000px;}
.h51{height:39.780000px;}
.h48{height:40.104269px;}
.h4c{height:40.124231px;}
.h52{height:41.000977px;}
.h2e{height:43.554375px;}
.h40{height:44.614237px;}
.h30{height:47.980898px;}
.h31{height:48.124125px;}
.h4d{height:48.600000px;}
.h49{height:48.717161px;}
.h7{height:49.320000px;}
.h1d{height:50.312812px;}
.h1f{height:50.463000px;}
.h45{height:50.850090px;}
.h4a{height:51.489985px;}
.h55{height:53.709961px;}
.h54{height:55.291992px;}
.h29{height:55.980000px;}
.h14{height:56.320312px;}
.h3b{height:56.470500px;}
.h6{height:59.439023px;}
.h3c{height:59.551172px;}
.h3f{height:59.559794px;}
.h41{height:59.589441px;}
.h32{height:61.189805px;}
.h43{height:61.427613px;}
.h3{height:62.327813px;}
.h46{height:64.250976px;}
.h44{height:65.747751px;}
.h39{height:67.824844px;}
.h47{height:68.827550px;}
.h4b{height:68.861810px;}
.h23{height:69.086250px;}
.h4{height:75.093750px;}
.h2{height:87.859687px;}
.h2c{height:102.647813px;}
.h57{height:105.134766px;}
.h56{height:110.174766px;}
.h5a{height:112.536000px;}
.h2b{height:122.589141px;}
.h59{height:126.720000px;}
.h5b{height:126.900000px;}
.h53{height:154.080000px;}
.h12{height:179.310000px;}
.h36{height:199.080000px;}
.h2f{height:201.960000px;}
.h38{height:321.120000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w11{width:10.800000px;}
.w13{width:10.980000px;}
.w37{width:14.400000px;}
.w38{width:14.580000px;}
.w19{width:14.760000px;}
.w29{width:15.120000px;}
.w1a{width:17.280000px;}
.w14{width:17.640000px;}
.w3{width:19.620000px;}
.w2a{width:19.980000px;}
.w26{width:23.220000px;}
.w49{width:27.720000px;}
.w4a{width:30.420000px;}
.w4d{width:30.960000px;}
.w25{width:31.860000px;}
.w10{width:35.820000px;}
.w7{width:36.000000px;}
.w16{width:36.180000px;}
.w1e{width:37.440000px;}
.w2b{width:37.800000px;}
.w1c{width:37.980000px;}
.w27{width:41.400000px;}
.w1d{width:43.920000px;}
.w1f{width:45.540000px;}
.w4e{width:54.180000px;}
.w4b{width:54.360000px;}
.w5{width:54.720000px;}
.w3e{width:57.420000px;}
.w47{width:59.760000px;}
.w42{width:60.300000px;}
.wa{width:61.920000px;}
.w9{width:62.100000px;}
.w2d{width:63.000000px;}
.w4{width:68.580000px;}
.w8{width:69.120000px;}
.w41{width:69.156000px;}
.wc{width:70.740000px;}
.wd{width:70.776000px;}
.we{width:71.100000px;}
.wf{width:71.280000px;}
.w44{width:72.936000px;}
.wb{width:74.196000px;}
.w48{width:79.740000px;}
.w21{width:79.776000px;}
.w20{width:79.920000px;}
.w43{width:80.280000px;}
.w23{width:80.496000px;}
.w1b{width:81.540000px;}
.w2f{width:84.240000px;}
.w2e{width:84.276000px;}
.w22{width:85.320000px;}
.w45{width:89.856000px;}
.w3f{width:90.396000px;}
.w3b{width:92.099482px;}
.w39{width:92.520000px;}
.w46{width:94.500000px;}
.w40{width:95.040000px;}
.w3a{width:99.180000px;}
.w6{width:99.540000px;}
.w33{width:104.940000px;}
.w34{width:105.120000px;}
.w4c{width:109.800000px;}
.w32{width:111.780000px;}
.w31{width:111.960000px;}
.w50{width:114.120000px;}
.w3c{width:119.102778px;}
.w15{width:120.960000px;}
.w28{width:126.576000px;}
.w18{width:136.260000px;}
.w17{width:136.980000px;}
.w12{width:144.360000px;}
.w24{width:159.690000px;}
.w35{width:160.950000px;}
.w3d{width:171.002237px;}
.w51{width:171.210000px;}
.w53{width:183.810000px;}
.w52{width:184.170000px;}
.w4f{width:217.650000px;}
.w30{width:257.070000px;}
.w2c{width:392.400000px;}
.w36{width:529.380000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:1.830000px;}
.x37{left:3.885000px;}
.x42{left:5.220000px;}
.x3b{left:6.690000px;}
.xd{left:8.895000px;}
.x8d{left:9.900000px;}
.x1e{left:11.880000px;}
.x8{left:13.035000px;}
.x6{left:14.475000px;}
.x43{left:15.480000px;}
.x1d{left:16.920000px;}
.x65{left:18.180000px;}
.x1b{left:19.620000px;}
.x19{left:21.240000px;}
.x16{left:23.220000px;}
.x1f{left:25.020000px;}
.x22{left:27.180000px;}
.x21{left:28.665000px;}
.x20{left:31.500000px;}
.x18{left:32.760000px;}
.x74{left:34.560000px;}
.x8a{left:38.106175px;}
.x44{left:40.545000px;}
.x5f{left:41.685000px;}
.x72{left:43.560000px;}
.x5e{left:47.775000px;}
.x4{left:49.813500px;}
.x71{left:51.150000px;}
.x88{left:52.461954px;}
.x5d{left:53.850000px;}
.x97{left:56.874000px;}
.x9e{left:60.525000px;}
.x7f{left:62.308241px;}
.x98{left:63.585000px;}
.x83{left:66.606054px;}
.x7e{left:71.088170px;}
.x89{left:78.656917px;}
.x4e{left:80.460000px;}
.x60{left:83.265000px;}
.x73{left:87.870000px;}
.x87{left:91.914624px;}
.x62{left:97.125000px;}
.x81{left:106.485927px;}
.x84{left:110.418668px;}
.x85{left:119.314960px;}
.x66{left:121.536000px;}
.x3{left:127.656000px;}
.x92{left:128.700000px;}
.x46{left:130.500000px;}
.x2{left:131.976000px;}
.x50{left:139.500000px;}
.x9c{left:141.525000px;}
.x23{left:145.835987px;}
.x9d{left:147.450000px;}
.x86{left:149.231901px;}
.x7d{left:154.649987px;}
.x4d{left:156.810000px;}
.x9f{left:159.885000px;}
.x1{left:163.110000px;}
.xa0{left:164.369987px;}
.x76{left:166.830000px;}
.x61{left:168.660000px;}
.x4f{left:172.080000px;}
.x8c{left:176.250000px;}
.x9b{left:177.525000px;}
.x70{left:180.900000px;}
.x32{left:182.700000px;}
.x4c{left:192.090000px;}
.x63{left:194.250000px;}
.x24{left:196.409987px;}
.x93{left:199.080000px;}
.x51{left:205.560000px;}
.x3a{left:215.640000px;}
.x39{left:218.520000px;}
.x80{left:219.809987px;}
.x77{left:231.120000px;}
.x12{left:234.389987px;}
.x75{left:238.035000px;}
.x82{left:246.809987px;}
.x35{left:253.080000px;}
.x26{left:254.700000px;}
.x47{left:261.540000px;}
.x14{left:266.070000px;}
.x4b{left:267.120000px;}
.x5c{left:271.109987px;}
.x29{left:277.020000px;}
.x64{left:279.435000px;}
.x28{left:288.540000px;}
.x67{left:297.900000px;}
.x2a{left:299.700000px;}
.x3c{left:301.500000px;}
.x31{left:304.740000px;}
.x3d{left:312.735000px;}
.xc{left:316.080000px;}
.x2b{left:321.660000px;}
.x8e{left:325.515000px;}
.x7b{left:327.675000px;}
.x7{left:333.180000px;}
.x52{left:336.060000px;}
.x38{left:338.760000px;}
.x15{left:340.995000px;}
.xa{left:343.620000px;}
.x45{left:346.214987px;}
.xa1{left:358.274987px;}
.x95{left:361.980000px;}
.x5{left:364.680000px;}
.x2c{left:366.300000px;}
.x78{left:370.260000px;}
.x3e{left:375.375000px;}
.x8b{left:382.394987px;}
.x2d{left:388.620000px;}
.x48{left:392.040000px;}
.x57{left:398.160000px;}
.x99{left:405.255000px;}
.x2e{left:411.120000px;}
.x17{left:412.455000px;}
.x94{left:419.760000px;}
.x9{left:422.640000px;}
.x10{left:424.980000px;}
.x68{left:427.680000px;}
.x6b{left:428.940000px;}
.x56{left:430.920000px;}
.x2f{left:433.620000px;}
.xb{left:436.500000px;}
.xf{left:441.720000px;}
.x13{left:446.654987px;}
.x30{left:451.980000px;}
.x3f{left:455.295000px;}
.xe{left:465.300000px;}
.x53{left:466.740000px;}
.x11{left:477.720000px;}
.x7c{left:478.905000px;}
.x1a{left:483.945000px;}
.x8f{left:492.585000px;}
.x79{left:493.920000px;}
.x36{left:508.500000px;}
.x6e{left:510.585000px;}
.x49{left:522.540000px;}
.x96{left:524.985000px;}
.x59{left:528.660000px;}
.x40{left:535.785000px;}
.x6c{left:539.100000px;}
.x69{left:545.040000px;}
.x25{left:547.305000px;}
.x90{left:552.885000px;}
.x1c{left:555.765000px;}
.x58{left:561.240000px;}
.x33{left:573.120000px;}
.x34{left:574.380000px;}
.x9a{left:589.425000px;}
.x54{left:596.700000px;}
.x7a{left:606.060000px;}
.x41{left:621.825000px;}
.x91{left:634.605000px;}
.x6d{left:649.620000px;}
.x4a{left:653.040000px;}
.x6a{left:655.740000px;}
.x5b{left:658.620000px;}
.x5a{left:691.200000px;}
.x6f{left:712.229987px;}
.x55{left:727.380000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v8{vertical-align:-14.939208pt;}
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560002pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.v9{vertical-align:14.939208pt;}
.v1{vertical-align:16.000000pt;}
.v7{vertical-align:17.919993pt;}
.vb{vertical-align:32.000000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.ls4a{letter-spacing:-0.869333pt;}
.ls21{letter-spacing:-0.504533pt;}
.ls48{letter-spacing:-0.298133pt;}
.ls23{letter-spacing:-0.278933pt;}
.ls20{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls49{letter-spacing:-0.229333pt;}
.ls16{letter-spacing:-0.225067pt;}
.ls47{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls4c{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls46{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.089067pt;}
.ls31{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:-0.047467pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2a{letter-spacing:-0.045067pt;}
.ls4{letter-spacing:-0.015360pt;}
.ls1f{letter-spacing:-0.007680pt;}
.ls45{letter-spacing:-0.003845pt;}
.ls44{letter-spacing:-0.003840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.003840pt;}
.ls19{letter-spacing:0.005120pt;}
.ls17{letter-spacing:0.008960pt;}
.ls2c{letter-spacing:0.011947pt;}
.ls34{letter-spacing:0.015360pt;}
.ls29{letter-spacing:0.019840pt;}
.ls43{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.033280pt;}
.ls2f{letter-spacing:0.046719pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.091307pt;}
.ls36{letter-spacing:0.094720pt;}
.ls3f{letter-spacing:0.119040pt;}
.ls0{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.130560pt;}
.ls22{letter-spacing:0.135467pt;}
.ls4b{letter-spacing:0.144000pt;}
.ls3b{letter-spacing:0.144640pt;}
.ls33{letter-spacing:0.158080pt;}
.ls3d{letter-spacing:0.175104pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.208000pt;}
.ls3c{letter-spacing:0.212480pt;}
.ls3e{letter-spacing:0.230400pt;}
.ls30{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.280533pt;}
.ls28{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.544000pt;}
.ls4f{letter-spacing:0.545280pt;}
.ls5{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.624640pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.742400pt;}
.ls9{letter-spacing:0.762880pt;}
.ls12{letter-spacing:0.778667pt;}
.ls4d{letter-spacing:0.823680pt;}
.ls37{letter-spacing:0.869333pt;}
.ls32{letter-spacing:6.352640pt;}
.ls41{letter-spacing:6.960000pt;}
.ls1d{letter-spacing:11.519360pt;}
.ls40{letter-spacing:13.424000pt;}
.ls1c{letter-spacing:14.719360pt;}
.ls39{letter-spacing:18.512640pt;}
.ls42{letter-spacing:49.648000pt;}
.ls38{letter-spacing:69.691307pt;}
.ls1e{letter-spacing:84.491520pt;}
.ls18{letter-spacing:148.411307pt;}
.ls1a{letter-spacing:197.051307pt;}
.ls26{letter-spacing:206.011307pt;}
.ls25{letter-spacing:247.611307pt;}
.ls2e{letter-spacing:267.361493pt;}
.ls7{letter-spacing:593.371307pt;}
.ws25{word-spacing:-279.366613pt;}
.ws4b{word-spacing:-53.120000pt;}
.ws2c{word-spacing:-35.856000pt;}
.ws3a{word-spacing:-34.239873pt;}
.ws31{word-spacing:-31.356216pt;}
.ws2a{word-spacing:-29.162880pt;}
.ws1{word-spacing:-17.792000pt;}
.ws19{word-spacing:-16.504107pt;}
.ws3d{word-spacing:-16.271573pt;}
.ws16{word-spacing:-16.097173pt;}
.ws17{word-spacing:-15.864107pt;}
.ws2f{word-spacing:-15.636693pt;}
.ws39{word-spacing:-15.591928pt;}
.ws8{word-spacing:-15.359360pt;}
.wsa{word-spacing:-15.311360pt;}
.wsb{word-spacing:-15.087360pt;}
.ws2b{word-spacing:-14.998293pt;}
.ws1a{word-spacing:-14.800640pt;}
.ws4{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.719893pt;}
.ws23{word-spacing:-14.678293pt;}
.ws9{word-spacing:-14.672427pt;}
.wsc{word-spacing:-14.536427pt;}
.ws20{word-spacing:-13.552000pt;}
.wse{word-spacing:-13.536000pt;}
.ws28{word-spacing:-13.379584pt;}
.ws2{word-spacing:-13.344000pt;}
.ws26{word-spacing:-13.306880pt;}
.ws2e{word-spacing:-13.280000pt;}
.ws24{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.956224pt;}
.wsf{word-spacing:-11.920640pt;}
.ws11{word-spacing:-11.721707pt;}
.ws1c{word-spacing:-11.407467pt;}
.ws48{word-spacing:-10.848000pt;}
.ws47{word-spacing:-10.704000pt;}
.ws1d{word-spacing:-10.599893pt;}
.ws49{word-spacing:-10.560000pt;}
.ws4a{word-spacing:-10.368000pt;}
.ws42{word-spacing:-9.719808pt;}
.ws44{word-spacing:-9.674741pt;}
.wsd{word-spacing:-9.611520pt;}
.ws7{word-spacing:-9.607680pt;}
.ws3b{word-spacing:-9.603840pt;}
.ws3c{word-spacing:-9.603835pt;}
.ws15{word-spacing:-9.600000pt;}
.ws6{word-spacing:-9.592320pt;}
.ws43{word-spacing:-9.490475pt;}
.ws41{word-spacing:-9.421675pt;}
.ws22{word-spacing:-8.960000pt;}
.ws21{word-spacing:-8.896000pt;}
.ws45{word-spacing:-8.850475pt;}
.ws27{word-spacing:-8.823040pt;}
.ws2d{word-spacing:-8.640000pt;}
.ws3e{word-spacing:-8.389120pt;}
.ws30{word-spacing:-7.873046pt;}
.ws29{word-spacing:-7.810560pt;}
.ws3f{word-spacing:-7.586560pt;}
.ws14{word-spacing:-7.481600pt;}
.ws10{word-spacing:-7.472640pt;}
.ws13{word-spacing:-7.247573pt;}
.ws46{word-spacing:-7.232000pt;}
.ws40{word-spacing:-6.074880pt;}
.ws37{word-spacing:-0.059547pt;}
.ws18{word-spacing:-0.058880pt;}
.ws33{word-spacing:-0.053970pt;}
.ws1f{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:5.156800pt;}
.ws32{word-spacing:6.318567pt;}
.ws1e{word-spacing:76.901803pt;}
.ws38{word-spacing:107.978201pt;}
.ws34{word-spacing:265.398924pt;}
.ws35{word-spacing:282.460184pt;}
.ws36{word-spacing:294.860384pt;}
._20{margin-left:-252.196875pt;}
._31{margin-left:-223.457145pt;}
._2c{margin-left:-168.617773pt;}
._2f{margin-left:-156.500737pt;}
._33{margin-left:-146.450841pt;}
._29{margin-left:-137.555605pt;}
._21{margin-left:-124.316033pt;}
._23{margin-left:-112.759174pt;}
._27{margin-left:-99.248572pt;}
._26{margin-left:-94.257627pt;}
._2e{margin-left:-88.611191pt;}
._2b{margin-left:-87.240850pt;}
._32{margin-left:-86.311821pt;}
._2d{margin-left:-83.463663pt;}
._2a{margin-left:-81.979565pt;}
._25{margin-left:-80.561727pt;}
._28{margin-left:-77.302849pt;}
._34{margin-left:-65.463950pt;}
._22{margin-left:-43.872108pt;}
._1c{margin-left:-13.653333pt;}
._1b{margin-left:-3.887360pt;}
._0{margin-left:-0.898635pt;}
._1{width:0.965846pt;}
._2{width:2.013949pt;}
._a{width:3.310694pt;}
._3{width:4.568532pt;}
._5{width:5.949334pt;}
._4{width:7.171200pt;}
._6{width:8.489620pt;}
._8{width:9.402134pt;}
._7{width:10.411732pt;}
._10{width:11.580160pt;}
._9{width:13.014400pt;}
._12{width:13.964991pt;}
._18{width:14.898987pt;}
._e{width:15.863508pt;}
._13{width:16.763000pt;}
._b{width:18.060800pt;}
._35{width:18.951039pt;}
._d{width:19.866668pt;}
._c{width:21.306667pt;}
._f{width:22.371840pt;}
._11{width:23.416107pt;}
._37{width:24.966400pt;}
._15{width:26.613120pt;}
._14{width:27.765547pt;}
._3a{width:29.694080pt;}
._39{width:30.756480pt;}
._3b{width:39.574400pt;}
._1e{width:56.797440pt;}
._19{width:76.274944pt;}
._1a{width:112.078720pt;}
._38{width:123.997013pt;}
._36{width:153.341867pt;}
._1d{width:233.065514pt;}
._16{width:642.148734pt;}
._17{width:753.371307pt;}
._30{width:1754.619307pt;}
._24{width:1850.619307pt;}
._1f{width:2178.277973pt;}
.fs6{font-size:26.880000pt;}
.fsd{font-size:31.492183pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs12{font-size:34.746764pt;}
.fs15{font-size:36.340265pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:39.040000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:43.008000pt;}
.fs3{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:53.969784pt;}
.fsf{font-size:57.115148pt;}
.fs8{font-size:58.880000pt;}
.fs11{font-size:59.547327pt;}
.fs14{font-size:62.367711pt;}
.fs2{font-size:64.000000pt;}
.fs16{font-size:65.917481pt;}
.fs0{font-size:74.880000pt;}
.fs10{font-size:78.639633pt;}
.fs13{font-size:82.254101pt;}
.y13e{bottom:-7.840000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:0.026667pt;}
.y1e9{bottom:0.320000pt;}
.y1e0{bottom:0.480000pt;}
.y1e5{bottom:0.640000pt;}
.y73{bottom:0.960000pt;}
.yc0{bottom:1.186667pt;}
.y79{bottom:1.626667pt;}
.y77{bottom:1.946667pt;}
.y1ce{bottom:2.373333pt;}
.y131{bottom:2.560000pt;}
.y84{bottom:2.586667pt;}
.yf8{bottom:2.626667pt;}
.y134{bottom:2.720000pt;}
.y88{bottom:2.880000pt;}
.y80{bottom:2.906667pt;}
.yff{bottom:2.946667pt;}
.yd9{bottom:3.040000pt;}
.y18f{bottom:3.152462pt;}
.y75{bottom:3.200000pt;}
.y71{bottom:3.226667pt;}
.yc7{bottom:3.266667pt;}
.y164{bottom:3.333333pt;}
.ybd{bottom:3.386667pt;}
.y166{bottom:3.520000pt;}
.y101{bottom:3.586667pt;}
.y132{bottom:3.680000pt;}
.yba{bottom:3.706667pt;}
.y1d0{bottom:3.933333pt;}
.y169{bottom:4.000000pt;}
.yb4{bottom:4.506667pt;}
.y1a4{bottom:4.562912pt;}
.yaa{bottom:4.640000pt;}
.yde{bottom:4.666667pt;}
.yb2{bottom:4.706667pt;}
.y1b8{bottom:4.800000pt;}
.y7b{bottom:4.826667pt;}
.y1be{bottom:4.840000pt;}
.yb0{bottom:4.986667pt;}
.ydc{bottom:5.120000pt;}
.ydf{bottom:5.146667pt;}
.ye3{bottom:5.280000pt;}
.y142{bottom:5.346667pt;}
.yac{bottom:5.626667pt;}
.y140{bottom:5.666667pt;}
.ye4{bottom:5.760000pt;}
.y146{bottom:5.826667pt;}
.y144{bottom:5.853333pt;}
.y148{bottom:5.920000pt;}
.y1c7{bottom:6.053333pt;}
.y190{bottom:6.537441pt;}
.y194{bottom:7.213061pt;}
.y193{bottom:7.270078pt;}
.y7e{bottom:7.386667pt;}
.yb8{bottom:7.546667pt;}
.y1c9{bottom:7.813333pt;}
.yb6{bottom:7.906667pt;}
.y1da{bottom:8.000000pt;}
.y12d{bottom:8.093333pt;}
.y1a1{bottom:8.451973pt;}
.y1a6{bottom:8.451975pt;}
.y1a9{bottom:8.451987pt;}
.y1ad{bottom:8.451990pt;}
.y1cc{bottom:9.093333pt;}
.y1b5{bottom:9.120000pt;}
.yae{bottom:9.146667pt;}
.ye6{bottom:10.400000pt;}
.y86{bottom:10.560000pt;}
.yda{bottom:11.520000pt;}
.yc5{bottom:12.346667pt;}
.yc2{bottom:12.386667pt;}
.y1c5{bottom:12.453333pt;}
.ybf{bottom:13.506667pt;}
.yfd{bottom:14.080000pt;}
.y162{bottom:16.032000pt;}
.y130{bottom:16.320000pt;}
.y1b6{bottom:16.800000pt;}
.yfa{bottom:17.893333pt;}
.y83{bottom:17.946667pt;}
.y12b{bottom:18.146667pt;}
.y87{bottom:18.240000pt;}
.yd8{bottom:20.000000pt;}
.y1a8{bottom:20.578807pt;}
.y1ab{bottom:20.578824pt;}
.y1ae{bottom:20.578827pt;}
.y1a3{bottom:20.578835pt;}
.y1d9{bottom:22.720000pt;}
.y7d{bottom:22.746667pt;}
.y1cb{bottom:23.813333pt;}
.y1b4{bottom:24.480000pt;}
.y1a5{bottom:26.550837pt;}
.y1b0{bottom:27.561466pt;}
.y1ac{bottom:30.378170pt;}
.y1a7{bottom:30.378172pt;}
.y1a2{bottom:30.439274pt;}
.y1aa{bottom:30.439281pt;}
.y1af{bottom:30.439283pt;}
.y1a0{bottom:30.500379pt;}
.y126{bottom:32.000000pt;}
.y1d8{bottom:36.800000pt;}
.y1d7{bottom:44.800000pt;}
.y1e4{bottom:45.306667pt;}
.y1df{bottom:45.480000pt;}
.y27{bottom:50.720000pt;}
.y1dd{bottom:51.680000pt;}
.y1e8{bottom:51.840000pt;}
.y161{bottom:52.506667pt;}
.y12c{bottom:56.320000pt;}
.y127{bottom:63.040000pt;}
.y1d6{bottom:66.880000pt;}
.y15f{bottom:74.053333pt;}
.y8b{bottom:74.880000pt;}
.y212{bottom:80.800000pt;}
.y1f7{bottom:80.960000pt;}
.y1d5{bottom:81.600000pt;}
.y156{bottom:82.560000pt;}
.y158{bottom:91.386667pt;}
.y50{bottom:93.120000pt;}
.y128{bottom:94.106667pt;}
.y155{bottom:95.040000pt;}
.y6f{bottom:95.840000pt;}
.y1d4{bottom:96.160000pt;}
.y157{bottom:97.760000pt;}
.ya8{bottom:103.040000pt;}
.y4f{bottom:108.480000pt;}
.y1d3{bottom:110.880000pt;}
.y6e{bottom:111.200000pt;}
.y1f6{bottom:111.520000pt;}
.y74{bottom:113.920000pt;}
.y72{bottom:115.200000pt;}
.ya7{bottom:118.240000pt;}
.y159{bottom:120.640000pt;}
.y4e{bottom:123.712000pt;}
.y129{bottom:125.146667pt;}
.y1d2{bottom:125.440000pt;}
.y6d{bottom:126.592000pt;}
.y1f5{bottom:126.912000pt;}
.ya6{bottom:133.626667pt;}
.y168{bottom:134.586667pt;}
.y4d{bottom:139.706667pt;}
.y6c{bottom:141.946667pt;}
.y1f4{bottom:142.266667pt;}
.y160{bottom:142.693333pt;}
.ya5{bottom:148.986667pt;}
.y15a{bottom:149.853333pt;}
.y4c{bottom:156.026667pt;}
.y12a{bottom:156.226667pt;}
.y6b{bottom:157.306667pt;}
.y211{bottom:157.466667pt;}
.y1f3{bottom:157.626667pt;}
.y78{bottom:159.840000pt;}
.y12e{bottom:163.520000pt;}
.ya4{bottom:164.346667pt;}
.y76{bottom:169.920000pt;}
.y4b{bottom:172.346667pt;}
.y6a{bottom:172.666667pt;}
.y210{bottom:172.826667pt;}
.y1f2{bottom:172.986667pt;}
.y15b{bottom:179.106667pt;}
.ya3{bottom:179.706667pt;}
.y81{bottom:186.240000pt;}
.y4a{bottom:187.866667pt;}
.y1f1{bottom:188.186667pt;}
.ya2{bottom:195.066667pt;}
.y49{bottom:203.226667pt;}
.y1f0{bottom:203.546667pt;}
.y7a{bottom:205.760000pt;}
.y15c{bottom:208.320000pt;}
.ya1{bottom:210.266667pt;}
.yab{bottom:215.200000pt;}
.y48{bottom:218.586667pt;}
.y1ef{bottom:218.906667pt;}
.yf6{bottom:225.466667pt;}
.ya0{bottom:225.626667pt;}
.y7f{bottom:227.360000pt;}
.y70{bottom:227.840000pt;}
.y1c3{bottom:229.786667pt;}
.yad{bottom:231.360000pt;}
.y47{bottom:233.946667pt;}
.y1ee{bottom:234.266667pt;}
.y15d{bottom:237.573333pt;}
.yf5{bottom:240.826667pt;}
.y9f{bottom:240.986667pt;}
.y1c2{bottom:245.146667pt;}
.y46{bottom:249.306667pt;}
.y20f{bottom:249.466667pt;}
.y1ed{bottom:249.626667pt;}
.y82{bottom:250.560000pt;}
.yaf{bottom:252.160000pt;}
.y22{bottom:253.946667pt;}
.yf4{bottom:256.186667pt;}
.y9e{bottom:256.346667pt;}
.yb3{bottom:258.240000pt;}
.yb7{bottom:258.880000pt;}
.y1c1{bottom:258.906667pt;}
.y124{bottom:259.706667pt;}
.y45{bottom:264.666667pt;}
.y20e{bottom:264.826667pt;}
.y15e{bottom:266.786667pt;}
.y1ec{bottom:269.466667pt;}
.yf3{bottom:271.546667pt;}
.y9d{bottom:271.706667pt;}
.y123{bottom:275.066667pt;}
.y44{bottom:279.866667pt;}
.y20d{bottom:280.186667pt;}
.y19e{bottom:283.706667pt;}
.ybc{bottom:284.960000pt;}
.y7c{bottom:286.400000pt;}
.yf2{bottom:286.906667pt;}
.y9c{bottom:287.066667pt;}
.y122{bottom:290.266667pt;}
.y21{bottom:295.226667pt;}
.y1eb{bottom:295.386667pt;}
.y20c{bottom:295.546667pt;}
.y19d{bottom:299.066667pt;}
.y1c0{bottom:299.866667pt;}
.yf1{bottom:302.106667pt;}
.y9b{bottom:302.266667pt;}
.y121{bottom:305.626667pt;}
.y20{bottom:310.586667pt;}
.y20b{bottom:310.906667pt;}
.y19c{bottom:314.426667pt;}
.yc4{bottom:314.880000pt;}
.yf0{bottom:317.466667pt;}
.y9a{bottom:317.626667pt;}
.y1bf{bottom:320.826667pt;}
.y120{bottom:320.986667pt;}
.yb9{bottom:322.560000pt;}
.ybb{bottom:323.200000pt;}
.y1ea{bottom:323.706667pt;}
.y1f{bottom:325.946667pt;}
.y20a{bottom:326.266667pt;}
.y19b{bottom:329.786667pt;}
.yef{bottom:332.826667pt;}
.y99{bottom:332.986667pt;}
.y11f{bottom:336.346667pt;}
.yc1{bottom:340.640000pt;}
.y1bd{bottom:340.826667pt;}
.y1e{bottom:341.306667pt;}
.y209{bottom:341.466667pt;}
.y19a{bottom:345.026667pt;}
.yee{bottom:348.226667pt;}
.y98{bottom:348.386667pt;}
.y11e{bottom:351.746667pt;}
.y1d{bottom:356.706667pt;}
.y208{bottom:356.866667pt;}
.y199{bottom:360.386667pt;}
.y1bc{bottom:360.866667pt;}
.yb5{bottom:362.720000pt;}
.y97{bottom:363.746667pt;}
.ybe{bottom:367.040000pt;}
.y11d{bottom:367.106667pt;}
.y43{bottom:371.906667pt;}
.y207{bottom:372.226667pt;}
.y198{bottom:375.746667pt;}
.yed{bottom:378.946667pt;}
.y96{bottom:379.106667pt;}
.ya9{bottom:379.266667pt;}
.yb1{bottom:379.360000pt;}
.y1bb{bottom:380.866667pt;}
.y11c{bottom:382.306667pt;}
.y154{bottom:385.986667pt;}
.y1c{bottom:387.266667pt;}
.y206{bottom:387.586667pt;}
.yfe{bottom:389.920000pt;}
.yc6{bottom:390.240000pt;}
.y197{bottom:391.106667pt;}
.yec{bottom:394.146667pt;}
.y95{bottom:394.306667pt;}
.y1ba{bottom:400.866667pt;}
.y153{bottom:401.346667pt;}
.y1b{bottom:402.626667pt;}
.y205{bottom:402.946667pt;}
.y196{bottom:406.466667pt;}
.yeb{bottom:409.506667pt;}
.y94{bottom:409.666667pt;}
.y11b{bottom:413.026667pt;}
.y152{bottom:416.706667pt;}
.y1a{bottom:417.986667pt;}
.y204{bottom:418.146667pt;}
.y192{bottom:418.973297pt;}
.y100{bottom:420.320000pt;}
.y1b9{bottom:420.866667pt;}
.y8a{bottom:422.786667pt;}
.y1e7{bottom:423.746667pt;}
.yea{bottom:424.866667pt;}
.y195{bottom:426.946667pt;}
.y11a{bottom:428.386667pt;}
.y141{bottom:430.560000pt;}
.y151{bottom:432.066667pt;}
.y19{bottom:433.346667pt;}
.y203{bottom:433.506667pt;}
.y93{bottom:438.786667pt;}
.ye9{bottom:440.226667pt;}
.y1b7{bottom:440.866667pt;}
.y18e{bottom:440.906667pt;}
.yf7{bottom:442.560000pt;}
.y119{bottom:443.746667pt;}
.y102{bottom:446.080000pt;}
.y150{bottom:447.426667pt;}
.y18{bottom:448.546667pt;}
.y191{bottom:448.866667pt;}
.y92{bottom:454.786667pt;}
.ye8{bottom:455.586667pt;}
.y118{bottom:458.946667pt;}
.y1b3{bottom:462.306667pt;}
.y14f{bottom:462.626667pt;}
.y17{bottom:463.906667pt;}
.y18d{bottom:464.226667pt;}
.y91{bottom:470.786667pt;}
.ye7{bottom:470.946667pt;}
.y117{bottom:474.306667pt;}
.y14e{bottom:477.986667pt;}
.y16{bottom:479.266667pt;}
.y18c{bottom:479.586667pt;}
.ye5{bottom:484.706667pt;}
.y90{bottom:486.786667pt;}
.y116{bottom:489.666667pt;}
.yfb{bottom:490.626667pt;}
.y14d{bottom:493.346667pt;}
.y15{bottom:494.626667pt;}
.y18b{bottom:494.946667pt;}
.y13f{bottom:496.000000pt;}
.y8f{bottom:502.786667pt;}
.y115{bottom:505.026667pt;}
.y145{bottom:505.280000pt;}
.ye2{bottom:506.946667pt;}
.y14c{bottom:508.706667pt;}
.y1b2{bottom:509.666667pt;}
.y42{bottom:509.986667pt;}
.y202{bottom:510.146667pt;}
.y18a{bottom:510.306667pt;}
.y8e{bottom:518.786667pt;}
.y114{bottom:520.386667pt;}
.yf9{bottom:523.040000pt;}
.y14b{bottom:524.066667pt;}
.y1b1{bottom:525.026667pt;}
.y14{bottom:525.346667pt;}
.y201{bottom:525.506667pt;}
.y189{bottom:525.666667pt;}
.ye1{bottom:528.066667pt;}
.y69{bottom:529.826667pt;}
.y8d{bottom:534.786667pt;}
.y113{bottom:535.746667pt;}
.y1e6{bottom:536.546667pt;}
.y14a{bottom:539.266667pt;}
.y13{bottom:540.546667pt;}
.y200{bottom:540.866667pt;}
.y188{bottom:541.026667pt;}
.ye0{bottom:548.066667pt;}
.y8c{bottom:550.786667pt;}
.y112{bottom:550.946667pt;}
.y1e3{bottom:553.506667pt;}
.y149{bottom:554.626667pt;}
.y68{bottom:555.746667pt;}
.y12{bottom:555.906667pt;}
.y1ff{bottom:556.226667pt;}
.y187{bottom:556.386667pt;}
.y111{bottom:566.306667pt;}
.y89{bottom:566.786667pt;}
.ydd{bottom:568.066667pt;}
.y67{bottom:570.973333pt;}
.y11{bottom:571.293333pt;}
.y1fe{bottom:571.613333pt;}
.y186{bottom:571.773333pt;}
.y19f{bottom:576.239964pt;}
.y110{bottom:581.693333pt;}
.y85{bottom:582.813333pt;}
.y66{bottom:586.333333pt;}
.y10{bottom:586.653333pt;}
.y1fd{bottom:586.973333pt;}
.y185{bottom:587.133333pt;}
.ydb{bottom:588.093333pt;}
.y143{bottom:596.800000pt;}
.y10f{bottom:597.053333pt;}
.y65{bottom:601.693333pt;}
.yf{bottom:602.013333pt;}
.y1fc{bottom:602.173333pt;}
.y184{bottom:602.333333pt;}
.yfc{bottom:603.933333pt;}
.yd7{bottom:609.373333pt;}
.y10e{bottom:612.413333pt;}
.y64{bottom:617.053333pt;}
.y41{bottom:617.373333pt;}
.y1fb{bottom:617.533333pt;}
.y183{bottom:617.693333pt;}
.y147{bottom:620.093333pt;}
.y10d{bottom:627.773333pt;}
.y63{bottom:632.413333pt;}
.y40{bottom:632.573333pt;}
.y1fa{bottom:632.893333pt;}
.y182{bottom:633.053333pt;}
.ye{bottom:637.053333pt;}
.y10c{bottom:642.973333pt;}
.yd6{bottom:647.293333pt;}
.y62{bottom:647.773333pt;}
.y3f{bottom:647.933333pt;}
.y181{bottom:648.413333pt;}
.y1f9{bottom:652.733333pt;}
.y1e2{bottom:653.533333pt;}
.y10b{bottom:658.333333pt;}
.y61{bottom:662.973333pt;}
.y3e{bottom:663.293333pt;}
.y180{bottom:663.773333pt;}
.y10a{bottom:673.693333pt;}
.yd5{bottom:678.013333pt;}
.yd{bottom:678.333333pt;}
.y3d{bottom:678.653333pt;}
.y17f{bottom:679.133333pt;}
.y109{bottom:689.053333pt;}
.yd4{bottom:693.213333pt;}
.y60{bottom:693.693333pt;}
.y3c{bottom:694.013333pt;}
.y17e{bottom:694.333333pt;}
.y108{bottom:704.413333pt;}
.yd3{bottom:708.573333pt;}
.y5f{bottom:709.053333pt;}
.y3b{bottom:709.213333pt;}
.y17d{bottom:710.653333pt;}
.y107{bottom:719.613333pt;}
.yd2{bottom:723.933333pt;}
.yc{bottom:724.413333pt;}
.y3a{bottom:724.573333pt;}
.y17c{bottom:725.853333pt;}
.y106{bottom:734.973333pt;}
.yd1{bottom:739.293333pt;}
.yb{bottom:739.613333pt;}
.y39{bottom:739.933333pt;}
.y17b{bottom:742.173333pt;}
.y105{bottom:750.333333pt;}
.yd0{bottom:754.653333pt;}
.ya{bottom:754.973333pt;}
.y38{bottom:755.293333pt;}
.y17a{bottom:758.333333pt;}
.y1f8{bottom:759.773333pt;}
.y104{bottom:765.693333pt;}
.y1e1{bottom:766.173333pt;}
.ycf{bottom:770.013333pt;}
.y9{bottom:770.333333pt;}
.y37{bottom:770.653333pt;}
.y179{bottom:774.493333pt;}
.y1de{bottom:783.133333pt;}
.y103{bottom:785.053333pt;}
.yce{bottom:785.213333pt;}
.y1cf{bottom:785.600000pt;}
.y8{bottom:785.693333pt;}
.y36{bottom:786.013333pt;}
.y1c8{bottom:790.400000pt;}
.y178{bottom:790.813333pt;}
.ycd{bottom:800.613333pt;}
.y5e{bottom:801.093333pt;}
.y35{bottom:801.253333pt;}
.y177{bottom:806.213333pt;}
.ycc{bottom:815.973333pt;}
.y7{bottom:816.453333pt;}
.y34{bottom:816.613333pt;}
.y176{bottom:821.573333pt;}
.ycb{bottom:831.333333pt;}
.y5d{bottom:831.653333pt;}
.y33{bottom:831.973333pt;}
.y125{bottom:834.080000pt;}
.y13d{bottom:834.213333pt;}
.y175{bottom:836.933333pt;}
.y13c{bottom:838.373333pt;}
.y1c6{bottom:840.320000pt;}
.yca{bottom:846.693333pt;}
.y5c{bottom:847.013333pt;}
.y32{bottom:847.333333pt;}
.y174{bottom:852.293333pt;}
.y13b{bottom:852.773333pt;}
.y5b{bottom:862.373333pt;}
.y31{bottom:862.693333pt;}
.y6{bottom:865.413333pt;}
.yc9{bottom:865.893333pt;}
.y13a{bottom:867.173333pt;}
.y173{bottom:867.653333pt;}
.y1d1{bottom:876.293333pt;}
.y5a{bottom:877.733333pt;}
.y30{bottom:878.053333pt;}
.y5{bottom:880.773333pt;}
.y139{bottom:881.733333pt;}
.y172{bottom:882.853333pt;}
.y1dc{bottom:883.173333pt;}
.y59{bottom:893.093333pt;}
.y2f{bottom:893.253333pt;}
.y4{bottom:896.133333pt;}
.yc8{bottom:897.733333pt;}
.y171{bottom:898.213333pt;}
.y58{bottom:908.453333pt;}
.y2e{bottom:908.613333pt;}
.y138{bottom:910.693333pt;}
.y170{bottom:913.573333pt;}
.y57{bottom:923.653333pt;}
.y2d{bottom:923.973333pt;}
.y137{bottom:925.093333pt;}
.y16f{bottom:928.933333pt;}
.y1cd{bottom:938.240000pt;}
.y56{bottom:939.013333pt;}
.y2c{bottom:939.333333pt;}
.y136{bottom:939.493333pt;}
.y3{bottom:942.053333pt;}
.y16e{bottom:944.293333pt;}
.y135{bottom:954.053333pt;}
.y55{bottom:954.373333pt;}
.y2b{bottom:954.693333pt;}
.y16d{bottom:959.653333pt;}
.y133{bottom:968.453333pt;}
.y54{bottom:969.733333pt;}
.y2a{bottom:970.053333pt;}
.y16c{bottom:974.853333pt;}
.y1ca{bottom:978.560000pt;}
.y12f{bottom:983.013333pt;}
.y1c4{bottom:983.200000pt;}
.y53{bottom:985.093333pt;}
.y29{bottom:985.253333pt;}
.y2{bottom:989.253333pt;}
.y16b{bottom:994.693333pt;}
.y1db{bottom:995.813333pt;}
.y52{bottom:1000.453333pt;}
.y28{bottom:1005.093333pt;}
.y1{bottom:1010.693333pt;}
.y16a{bottom:1013.093333pt;}
.y163{bottom:1013.760000pt;}
.y165{bottom:1014.240000pt;}
.y167{bottom:1015.040000pt;}
.y51{bottom:1015.653333pt;}
.y26{bottom:1062.240000pt;}
.y25{bottom:1066.090667pt;}
.y24{bottom:1080.490667pt;}
.y23{bottom:1094.890667pt;}
.h2d{height:11.520000pt;}
.h8{height:13.440000pt;}
.h35{height:13.760000pt;}
.h34{height:13.920000pt;}
.hb{height:14.240000pt;}
.ha{height:14.400000pt;}
.h3a{height:14.560000pt;}
.h21{height:14.720000pt;}
.h1b{height:14.880000pt;}
.h1a{height:15.040000pt;}
.h28{height:15.200000pt;}
.he{height:15.360000pt;}
.h11{height:15.392000pt;}
.hf{height:15.520000pt;}
.h9{height:15.840000pt;}
.h58{height:16.320000pt;}
.h16{height:16.480000pt;}
.h37{height:16.800000pt;}
.h13{height:17.120000pt;}
.h17{height:17.280000pt;}
.hc{height:17.440000pt;}
.h50{height:18.080000pt;}
.h4f{height:18.720000pt;}
.h19{height:19.040000pt;}
.h18{height:19.200000pt;}
.h3d{height:19.999708pt;}
.h24{height:20.000000pt;}
.h25{height:20.032000pt;}
.h15{height:20.480000pt;}
.h27{height:20.960000pt;}
.h26{height:21.120000pt;}
.h42{height:22.066627pt;}
.h20{height:22.560000pt;}
.h1e{height:22.720000pt;}
.h1c{height:23.680000pt;}
.h4e{height:26.400000pt;}
.h33{height:27.520000pt;}
.h10{height:30.720000pt;}
.h3e{height:30.892479pt;}
.h22{height:33.760000pt;}
.h5{height:34.945312pt;}
.h2a{height:35.040000pt;}
.hd{height:35.200000pt;}
.h51{height:35.360000pt;}
.h48{height:35.648239pt;}
.h4c{height:35.665983pt;}
.h52{height:36.445312pt;}
.h2e{height:38.715000pt;}
.h40{height:39.657100pt;}
.h30{height:42.649687pt;}
.h31{height:42.777000pt;}
.h4d{height:43.200000pt;}
.h49{height:43.304143pt;}
.h7{height:43.840000pt;}
.h1d{height:44.722500pt;}
.h1f{height:44.856000pt;}
.h45{height:45.200080pt;}
.h4a{height:45.768876pt;}
.h55{height:47.742188pt;}
.h54{height:49.148438pt;}
.h29{height:49.760000pt;}
.h14{height:50.062500pt;}
.h3b{height:50.196000pt;}
.h6{height:52.834688pt;}
.h3c{height:52.934375pt;}
.h3f{height:52.942040pt;}
.h41{height:52.968392pt;}
.h32{height:54.390938pt;}
.h43{height:54.602323pt;}
.h3{height:55.402500pt;}
.h46{height:57.111979pt;}
.h44{height:58.442445pt;}
.h39{height:60.288750pt;}
.h47{height:61.180045pt;}
.h4b{height:61.210498pt;}
.h23{height:61.410000pt;}
.h4{height:66.750000pt;}
.h2{height:78.097500pt;}
.h2c{height:91.242500pt;}
.h57{height:93.453125pt;}
.h56{height:97.933125pt;}
.h5a{height:100.032000pt;}
.h2b{height:108.968125pt;}
.h59{height:112.640000pt;}
.h5b{height:112.800000pt;}
.h53{height:136.960000pt;}
.h12{height:159.386667pt;}
.h36{height:176.960000pt;}
.h2f{height:179.520000pt;}
.h38{height:285.440000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w11{width:9.600000pt;}
.w13{width:9.760000pt;}
.w37{width:12.800000pt;}
.w38{width:12.960000pt;}
.w19{width:13.120000pt;}
.w29{width:13.440000pt;}
.w1a{width:15.360000pt;}
.w14{width:15.680000pt;}
.w3{width:17.440000pt;}
.w2a{width:17.760000pt;}
.w26{width:20.640000pt;}
.w49{width:24.640000pt;}
.w4a{width:27.040000pt;}
.w4d{width:27.520000pt;}
.w25{width:28.320000pt;}
.w10{width:31.840000pt;}
.w7{width:32.000000pt;}
.w16{width:32.160000pt;}
.w1e{width:33.280000pt;}
.w2b{width:33.600000pt;}
.w1c{width:33.760000pt;}
.w27{width:36.800000pt;}
.w1d{width:39.040000pt;}
.w1f{width:40.480000pt;}
.w4e{width:48.160000pt;}
.w4b{width:48.320000pt;}
.w5{width:48.640000pt;}
.w3e{width:51.040000pt;}
.w47{width:53.120000pt;}
.w42{width:53.600000pt;}
.wa{width:55.040000pt;}
.w9{width:55.200000pt;}
.w2d{width:56.000000pt;}
.w4{width:60.960000pt;}
.w8{width:61.440000pt;}
.w41{width:61.472000pt;}
.wc{width:62.880000pt;}
.wd{width:62.912000pt;}
.we{width:63.200000pt;}
.wf{width:63.360000pt;}
.w44{width:64.832000pt;}
.wb{width:65.952000pt;}
.w48{width:70.880000pt;}
.w21{width:70.912000pt;}
.w20{width:71.040000pt;}
.w43{width:71.360000pt;}
.w23{width:71.552000pt;}
.w1b{width:72.480000pt;}
.w2f{width:74.880000pt;}
.w2e{width:74.912000pt;}
.w22{width:75.840000pt;}
.w45{width:79.872000pt;}
.w3f{width:80.352000pt;}
.w3b{width:81.866206pt;}
.w39{width:82.240000pt;}
.w46{width:84.000000pt;}
.w40{width:84.480000pt;}
.w3a{width:88.160000pt;}
.w6{width:88.480000pt;}
.w33{width:93.280000pt;}
.w34{width:93.440000pt;}
.w4c{width:97.600000pt;}
.w32{width:99.360000pt;}
.w31{width:99.520000pt;}
.w50{width:101.440000pt;}
.w3c{width:105.869136pt;}
.w15{width:107.520000pt;}
.w28{width:112.512000pt;}
.w18{width:121.120000pt;}
.w17{width:121.760000pt;}
.w12{width:128.320000pt;}
.w24{width:141.946667pt;}
.w35{width:143.066667pt;}
.w3d{width:152.001989pt;}
.w51{width:152.186667pt;}
.w53{width:163.386667pt;}
.w52{width:163.706667pt;}
.w4f{width:193.466667pt;}
.w30{width:228.506667pt;}
.w2c{width:348.800000pt;}
.w36{width:470.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:1.626667pt;}
.x37{left:3.453333pt;}
.x42{left:4.640000pt;}
.x3b{left:5.946667pt;}
.xd{left:7.906667pt;}
.x8d{left:8.800000pt;}
.x1e{left:10.560000pt;}
.x8{left:11.586667pt;}
.x6{left:12.866667pt;}
.x43{left:13.760000pt;}
.x1d{left:15.040000pt;}
.x65{left:16.160000pt;}
.x1b{left:17.440000pt;}
.x19{left:18.880000pt;}
.x16{left:20.640000pt;}
.x1f{left:22.240000pt;}
.x22{left:24.160000pt;}
.x21{left:25.480000pt;}
.x20{left:28.000000pt;}
.x18{left:29.120000pt;}
.x74{left:30.720000pt;}
.x8a{left:33.872156pt;}
.x44{left:36.040000pt;}
.x5f{left:37.053333pt;}
.x72{left:38.720000pt;}
.x5e{left:42.466667pt;}
.x4{left:44.278667pt;}
.x71{left:45.466667pt;}
.x88{left:46.632848pt;}
.x5d{left:47.866667pt;}
.x97{left:50.554667pt;}
.x9e{left:53.800000pt;}
.x7f{left:55.385103pt;}
.x98{left:56.520000pt;}
.x83{left:59.205382pt;}
.x7e{left:63.189485pt;}
.x89{left:69.917259pt;}
.x4e{left:71.520000pt;}
.x60{left:74.013333pt;}
.x73{left:78.106667pt;}
.x87{left:81.701888pt;}
.x62{left:86.333333pt;}
.x81{left:94.654157pt;}
.x84{left:98.149927pt;}
.x85{left:106.057742pt;}
.x66{left:108.032000pt;}
.x3{left:113.472000pt;}
.x92{left:114.400000pt;}
.x46{left:116.000000pt;}
.x2{left:117.312000pt;}
.x50{left:124.000000pt;}
.x9c{left:125.800000pt;}
.x23{left:129.631988pt;}
.x9d{left:131.066667pt;}
.x86{left:132.650579pt;}
.x7d{left:137.466655pt;}
.x4d{left:139.386667pt;}
.x9f{left:142.120000pt;}
.x1{left:144.986667pt;}
.xa0{left:146.106655pt;}
.x76{left:148.293333pt;}
.x61{left:149.920000pt;}
.x4f{left:152.960000pt;}
.x8c{left:156.666667pt;}
.x9b{left:157.800000pt;}
.x70{left:160.800000pt;}
.x32{left:162.400000pt;}
.x4c{left:170.746667pt;}
.x63{left:172.666667pt;}
.x24{left:174.586655pt;}
.x93{left:176.960000pt;}
.x51{left:182.720000pt;}
.x3a{left:191.680000pt;}
.x39{left:194.240000pt;}
.x80{left:195.386655pt;}
.x77{left:205.440000pt;}
.x12{left:208.346655pt;}
.x75{left:211.586667pt;}
.x82{left:219.386655pt;}
.x35{left:224.960000pt;}
.x26{left:226.400000pt;}
.x47{left:232.480000pt;}
.x14{left:236.506667pt;}
.x4b{left:237.440000pt;}
.x5c{left:240.986655pt;}
.x29{left:246.240000pt;}
.x64{left:248.386667pt;}
.x28{left:256.480000pt;}
.x67{left:264.800000pt;}
.x2a{left:266.400000pt;}
.x3c{left:268.000000pt;}
.x31{left:270.880000pt;}
.x3d{left:277.986667pt;}
.xc{left:280.960000pt;}
.x2b{left:285.920000pt;}
.x8e{left:289.346667pt;}
.x7b{left:291.266667pt;}
.x7{left:296.160000pt;}
.x52{left:298.720000pt;}
.x38{left:301.120000pt;}
.x15{left:303.106667pt;}
.xa{left:305.440000pt;}
.x45{left:307.746655pt;}
.xa1{left:318.466655pt;}
.x95{left:321.760000pt;}
.x5{left:324.160000pt;}
.x2c{left:325.600000pt;}
.x78{left:329.120000pt;}
.x3e{left:333.666667pt;}
.x8b{left:339.906655pt;}
.x2d{left:345.440000pt;}
.x48{left:348.480000pt;}
.x57{left:353.920000pt;}
.x99{left:360.226667pt;}
.x2e{left:365.440000pt;}
.x17{left:366.626667pt;}
.x94{left:373.120000pt;}
.x9{left:375.680000pt;}
.x10{left:377.760000pt;}
.x68{left:380.160000pt;}
.x6b{left:381.280000pt;}
.x56{left:383.040000pt;}
.x2f{left:385.440000pt;}
.xb{left:388.000000pt;}
.xf{left:392.640000pt;}
.x13{left:397.026655pt;}
.x30{left:401.760000pt;}
.x3f{left:404.706667pt;}
.xe{left:413.600000pt;}
.x53{left:414.880000pt;}
.x11{left:424.640000pt;}
.x7c{left:425.693333pt;}
.x1a{left:430.173333pt;}
.x8f{left:437.853333pt;}
.x79{left:439.040000pt;}
.x36{left:452.000000pt;}
.x6e{left:453.853333pt;}
.x49{left:464.480000pt;}
.x96{left:466.653333pt;}
.x59{left:469.920000pt;}
.x40{left:476.253333pt;}
.x6c{left:479.200000pt;}
.x69{left:484.480000pt;}
.x25{left:486.493333pt;}
.x90{left:491.453333pt;}
.x1c{left:494.013333pt;}
.x58{left:498.880000pt;}
.x33{left:509.440000pt;}
.x34{left:510.560000pt;}
.x9a{left:523.933333pt;}
.x54{left:530.400000pt;}
.x7a{left:538.720000pt;}
.x41{left:552.733333pt;}
.x91{left:564.093333pt;}
.x6d{left:577.440000pt;}
.x4a{left:580.480000pt;}
.x6a{left:582.880000pt;}
.x5b{left:585.440000pt;}
.x5a{left:614.400000pt;}
.x6f{left:633.093322pt;}
.x55{left:646.560000pt;}
}




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