
    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_35da1f579f1e35a233fd1dac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.142090;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_8efee762921fd09882bacf0b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1cd4aee1caf11830cdb912b1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_03cc1ab27923d209cab88488.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8aabd6b11cddcbff3f5aadff.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_008889302ebdbf08c472595a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94c860a04a37412305bb8a4f.woff')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_7f793d4551f95673c5239185.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_81b27ca49a842206ac9569fe.woff')format("woff");}.ff9{font-family:ff9;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;}
.m8{transform:matrix(0.234828,0.000000,-0.078268,0.237432,0,0);-ms-transform:matrix(0.234828,0.000000,-0.078268,0.237432,0,0);-webkit-transform:matrix(0.234828,0.000000,-0.078268,0.237432,0,0);}
.m12{transform:matrix(0.236343,0.000000,-0.078773,0.237265,0,0);-ms-transform:matrix(0.236343,0.000000,-0.078773,0.237265,0,0);-webkit-transform:matrix(0.236343,0.000000,-0.078773,0.237265,0,0);}
.mc{transform:matrix(0.237823,0.000000,-0.079266,0.237101,0,0);-ms-transform:matrix(0.237823,0.000000,-0.079266,0.237101,0,0);-webkit-transform:matrix(0.237823,0.000000,-0.079266,0.237101,0,0);}
.m19{transform:matrix(0.239988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239988,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240074,0.000000,-0.080016,0.236849,0,0);-ms-transform:matrix(0.240074,0.000000,-0.080016,0.236849,0,0);-webkit-transform:matrix(0.240074,0.000000,-0.080016,0.236849,0,0);}
.m18{transform:matrix(0.240228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240228,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240351,0.000000,-0.080109,0.236818,0,0);-ms-transform:matrix(0.240351,0.000000,-0.080109,0.236818,0,0);-webkit-transform:matrix(0.240351,0.000000,-0.080109,0.236818,0,0);}
.m6{transform:matrix(0.242100,0.000000,-0.080692,0.236620,0,0);-ms-transform:matrix(0.242100,0.000000,-0.080692,0.236620,0,0);-webkit-transform:matrix(0.242100,0.000000,-0.080692,0.236620,0,0);}
.m15{transform:matrix(0.243038,0.000000,-0.081004,0.236513,0,0);-ms-transform:matrix(0.243038,0.000000,-0.081004,0.236513,0,0);-webkit-transform:matrix(0.243038,0.000000,-0.081004,0.236513,0,0);}
.m7{transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249028,0.000000,0.000000,0.250000,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);}
.mb{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251704,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251984,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252237,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255790,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.256277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256277,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.256682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256682,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.256897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256897,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259981,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);}
.v5{vertical-align:-55.761071px;}
.v9{vertical-align:-51.930096px;}
.v4{vertical-align:-45.451513px;}
.va{vertical-align:-33.393805px;}
.v8{vertical-align:-31.786460px;}
.vd{vertical-align:-22.054808px;}
.v1{vertical-align:-20.880000px;}
.vf{vertical-align:-18.393041px;}
.v3{vertical-align:-15.120000px;}
.ve{vertical-align:-7.243735px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.vc{vertical-align:18.737875px;}
.v6{vertical-align:29.212760px;}
.vb{vertical-align:31.841518px;}
.v10{vertical-align:39.663904px;}
.v7{vertical-align:45.451513px;}
.ls21{letter-spacing:-2.204715px;}
.ls20{letter-spacing:-1.460638px;}
.ls1c{letter-spacing:-1.440169px;}
.ls32{letter-spacing:-1.226453px;}
.lsb{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls37{letter-spacing:-0.120594px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls7{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.023529px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.318894px;}
.ls1a{letter-spacing:0.354327px;}
.ls0{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.360379px;}
.ls35{letter-spacing:0.431874px;}
.ls23{letter-spacing:0.817884px;}
.ls1f{letter-spacing:1.321644px;}
.ls22{letter-spacing:1.781818px;}
.ls34{letter-spacing:1.801897px;}
.ls39{letter-spacing:2.156782px;}
.ls24{letter-spacing:2.929705px;}
.ls2b{letter-spacing:3.191491px;}
.ls1b{letter-spacing:4.406230px;}
.ls36{letter-spacing:4.516368px;}
.ls38{letter-spacing:6.087690px;}
.ls1e{letter-spacing:6.282254px;}
.ls19{letter-spacing:26.733600px;}
.ls2c{letter-spacing:37.173600px;}
.ls2d{letter-spacing:40.773600px;}
.ls3c{letter-spacing:47.726640px;}
.ls17{letter-spacing:64.479495px;}
.ls3b{letter-spacing:80.846640px;}
.ls11{letter-spacing:87.333600px;}
.ls26{letter-spacing:121.053600px;}
.ls13{letter-spacing:155.733600px;}
.ls16{letter-spacing:174.093600px;}
.ls18{letter-spacing:184.893600px;}
.ls2a{letter-spacing:199.533600px;}
.ls2e{letter-spacing:202.773600px;}
.ls15{letter-spacing:353.512904px;}
.ls14{letter-spacing:473.965221px;}
.ls10{letter-spacing:561.409222px;}
.ls12{letter-spacing:661.041075px;}
.ls29{letter-spacing:982.168762px;}
.ls28{letter-spacing:1013.451671px;}
.ls30{letter-spacing:1736.302734px;}
.ls25{letter-spacing:1738.311446px;}
.ls31{letter-spacing:1802.664954px;}
.ls2f{letter-spacing:1903.499214px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws17{word-spacing:-40.512739px;}
.ws3b{word-spacing:-40.215667px;}
.ws29{word-spacing:-40.016417px;}
.ws42{word-spacing:-39.802325px;}
.ws34{word-spacing:-38.941310px;}
.ws14{word-spacing:-38.703157px;}
.ws3d{word-spacing:-38.344445px;}
.ws2d{word-spacing:-38.335958px;}
.ws21{word-spacing:-38.073525px;}
.ws45{word-spacing:-23.265454px;}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws2a{word-spacing:-13.376400px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws15{word-spacing:-6.352751px;}
.ws2e{word-spacing:-6.157519px;}
.ws27{word-spacing:-4.589258px;}
.wse{word-spacing:-4.478604px;}
.ws36{word-spacing:-3.232892px;}
.ws2f{word-spacing:-2.226610px;}
.ws1f{word-spacing:-1.851168px;}
.ws20{word-spacing:-0.887234px;}
.ws26{word-spacing:-0.504764px;}
.ws24{word-spacing:-0.433269px;}
.wsc{word-spacing:-0.426701px;}
.ws11{word-spacing:-0.094026px;}
.ws38{word-spacing:-0.073253px;}
.ws23{word-spacing:-0.072890px;}
.ws3f{word-spacing:-0.072500px;}
.wsd{word-spacing:-0.072374px;}
.ws35{word-spacing:-0.070931px;}
.ws12{word-spacing:-0.070498px;}
.ws16{word-spacing:-0.069844px;}
.ws2b{word-spacing:-0.069829px;}
.ws1e{word-spacing:-0.069351px;}
.ws19{word-spacing:-0.069186px;}
.ws37{word-spacing:-0.042719px;}
.ws3e{word-spacing:-0.042378px;}
.ws31{word-spacing:-0.040662px;}
.ws9{word-spacing:0.000000px;}
.ws2c{word-spacing:0.050766px;}
.ws22{word-spacing:1.153563px;}
.ws10{word-spacing:1.367794px;}
.ws1a{word-spacing:1.391452px;}
.ws7{word-spacing:4.304880px;}
.ws33{word-spacing:101.946362px;}
.ws18{word-spacing:119.777113px;}
.ws32{word-spacing:139.941714px;}
.wsf{word-spacing:413.116541px;}
.ws1d{word-spacing:416.810852px;}
.ws13{word-spacing:536.172986px;}
.ws1b{word-spacing:649.271332px;}
.ws1c{word-spacing:650.947538px;}
.ws41{word-spacing:709.776383px;}
.ws40{word-spacing:907.965790px;}
.ws30{word-spacing:936.024777px;}
.ws3a{word-spacing:1153.992130px;}
.ws39{word-spacing:1277.429147px;}
.ws3c{word-spacing:1409.252887px;}
.ws28{word-spacing:1567.185908px;}
.ws44{word-spacing:1711.950796px;}
.ws25{word-spacing:1753.862776px;}
.ws43{word-spacing:1970.056638px;}
._79{margin-left:-774.679277px;}
._80{margin-left:-772.470063px;}
._9e{margin-left:-702.971519px;}
._7d{margin-left:-562.700165px;}
._81{margin-left:-542.139205px;}
._38{margin-left:-496.222128px;}
._94{margin-left:-482.919761px;}
._93{margin-left:-481.614910px;}
._71{margin-left:-461.777317px;}
._70{margin-left:-460.697455px;}
._91{margin-left:-446.759293px;}
._62{margin-left:-430.866974px;}
._4d{margin-left:-414.304844px;}
._31{margin-left:-391.989130px;}
._6a{margin-left:-388.805097px;}
._8e{margin-left:-376.702817px;}
._9a{margin-left:-354.456188px;}
._8f{margin-left:-342.967839px;}
._4c{margin-left:-338.072968px;}
._33{margin-left:-335.763823px;}
._5e{margin-left:-333.609192px;}
._7a{margin-left:-331.890420px;}
._8a{margin-left:-330.595897px;}
._87{margin-left:-327.422338px;}
._88{margin-left:-326.397524px;}
._32{margin-left:-322.955460px;}
._99{margin-left:-320.704853px;}
._6e{margin-left:-307.963706px;}
._7f{margin-left:-306.034532px;}
._25{margin-left:-304.405064px;}
._1f{margin-left:-302.756652px;}
._6f{margin-left:-298.060402px;}
._83{margin-left:-297.013539px;}
._90{margin-left:-295.885945px;}
._8d{margin-left:-291.440618px;}
._61{margin-left:-289.883092px;}
._5d{margin-left:-284.799532px;}
._82{margin-left:-283.712672px;}
._1a{margin-left:-282.707549px;}
._c{margin-left:-278.368692px;}
._50{margin-left:-276.954084px;}
._9b{margin-left:-274.258479px;}
._9c{margin-left:-273.076741px;}
._76{margin-left:-271.041799px;}
._35{margin-left:-269.099036px;}
._3d{margin-left:-267.694334px;}
._3c{margin-left:-265.425525px;}
._95{margin-left:-262.816690px;}
._19{margin-left:-261.285450px;}
._47{margin-left:-256.803134px;}
._69{margin-left:-255.236687px;}
._57{margin-left:-253.901954px;}
._4a{margin-left:-252.105034px;}
._8c{margin-left:-247.969738px;}
._56{margin-left:-244.560812px;}
._74{margin-left:-241.993956px;}
._7b{margin-left:-240.083452px;}
._1e{margin-left:-238.022472px;}
._44{margin-left:-236.155340px;}
._34{margin-left:-234.682165px;}
._53{margin-left:-233.460311px;}
._37{margin-left:-231.254232px;}
._7c{margin-left:-227.414655px;}
._10{margin-left:-225.275045px;}
._12{margin-left:-223.143481px;}
._78{margin-left:-222.006163px;}
._13{margin-left:-220.023116px;}
._96{margin-left:-216.297967px;}
._55{margin-left:-214.638371px;}
._59{margin-left:-212.562605px;}
._2e{margin-left:-210.301613px;}
._3a{margin-left:-207.682391px;}
._17{margin-left:-206.214001px;}
._4f{margin-left:-205.094962px;}
._63{margin-left:-203.679020px;}
._52{margin-left:-197.695791px;}
._2d{margin-left:-195.965628px;}
._5a{margin-left:-194.721265px;}
._39{margin-left:-190.729388px;}
._46{margin-left:-188.826155px;}
._45{margin-left:-186.036121px;}
._66{margin-left:-184.904213px;}
._5b{margin-left:-182.764806px;}
._98{margin-left:-181.434654px;}
._22{margin-left:-179.286511px;}
._26{margin-left:-176.731981px;}
._16{margin-left:-175.689147px;}
._64{margin-left:-174.654112px;}
._58{margin-left:-173.029343px;}
._67{margin-left:-169.605783px;}
._3f{margin-left:-167.795699px;}
._2c{margin-left:-166.487753px;}
._2a{margin-left:-163.462789px;}
._36{margin-left:-161.726086px;}
._6d{margin-left:-160.578341px;}
._65{margin-left:-158.987951px;}
._2b{margin-left:-156.347247px;}
._51{margin-left:-155.192386px;}
._23{margin-left:-153.644841px;}
._3e{margin-left:-151.286135px;}
._11{margin-left:-149.214823px;}
._1d{margin-left:-143.249341px;}
._20{margin-left:-140.802492px;}
._e{margin-left:-138.159037px;}
._54{margin-left:-136.705872px;}
._40{margin-left:-134.690817px;}
._5f{margin-left:-131.880840px;}
._21{margin-left:-128.830650px;}
._f{margin-left:-126.266216px;}
._3b{margin-left:-121.177908px;}
._4e{margin-left:-119.522992px;}
._d{margin-left:-117.619489px;}
._92{margin-left:-115.958641px;}
._48{margin-left:-114.088109px;}
._1b{margin-left:-106.045687px;}
._9d{margin-left:-102.667638px;}
._4b{margin-left:-100.954079px;}
._5c{margin-left:-99.211698px;}
._68{margin-left:-98.119645px;}
._85{margin-left:-97.015316px;}
._14{margin-left:-95.539966px;}
._27{margin-left:-94.321729px;}
._86{margin-left:-93.315482px;}
._43{margin-left:-92.305570px;}
._30{margin-left:-88.764865px;}
._60{margin-left:-84.955019px;}
._84{margin-left:-83.504225px;}
._24{margin-left:-82.063141px;}
._89{margin-left:-79.884291px;}
._1c{margin-left:-78.722269px;}
._18{margin-left:-76.987300px;}
._49{margin-left:-66.567748px;}
._6c{margin-left:-58.892129px;}
._7e{margin-left:-57.274060px;}
._8b{margin-left:-55.692690px;}
._6b{margin-left:-54.516756px;}
._15{margin-left:-53.132577px;}
._41{margin-left:-51.552159px;}
._75{margin-left:-50.507938px;}
._73{margin-left:-49.482636px;}
._97{margin-left:-48.457974px;}
._77{margin-left:-30.998394px;}
._72{margin-left:-29.923057px;}
._b{margin-left:-3.791399px;}
._5{margin-left:-2.645400px;}
._0{margin-left:-1.110000px;}
._1{width:1.075080px;}
._9{width:2.075522px;}
._6{width:3.126000px;}
._7{width:4.990200px;}
._8{width:6.130797px;}
._a{width:7.256643px;}
._3{width:8.352360px;}
._4{width:9.361320px;}
._a1{width:10.392004px;}
._28{width:11.973600px;}
._a0{width:16.262400px;}
._2{width:17.494800px;}
._a6{width:19.021680px;}
._a7{width:20.032560px;}
._9f{width:23.386680px;}
._a2{width:30.204000px;}
._2f{width:38.347200px;}
._a8{width:48.216240px;}
._a3{width:57.017520px;}
._42{width:191.973600px;}
._a5{width:199.237680px;}
._a4{width:200.319840px;}
._29{width:202.893600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs15{font-size:40.430225px;}
.fs16{font-size:40.537814px;}
.fs12{font-size:40.657015px;}
.fsb{font-size:40.658443px;}
.fs1c{font-size:40.661711px;}
.fs10{font-size:40.797313px;}
.fse{font-size:40.805496px;}
.fs1f{font-size:41.400770px;}
.fs6{font-size:42.120000px;}
.fs22{font-size:42.377875px;}
.fs1a{font-size:42.493967px;}
.fs20{font-size:42.719367px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs14{font-size:69.185947px;}
.fs17{font-size:69.350684px;}
.fs1b{font-size:69.828703px;}
.fsc{font-size:69.844162px;}
.fs9{font-size:70.497554px;}
.fs1e{font-size:70.931347px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:72.374190px;}
.fs23{font-size:72.499682px;}
.fs19{font-size:72.889648px;}
.fs21{font-size:73.252581px;}
.fsf{font-size:73.524835px;}
.fs18{font-size:73.592898px;}
.fs13{font-size:73.613402px;}
.fsd{font-size:73.793696px;}
.fs1d{font-size:73.810703px;}
.fs11{font-size:73.841031px;}
.fsa{font-size:74.421778px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y62{bottom:2.899446px;}
.y64{bottom:2.935227px;}
.ybf{bottom:3.902393px;}
.yd0{bottom:3.902432px;}
.y94{bottom:4.115215px;}
.y52{bottom:4.115216px;}
.y79{bottom:4.237558px;}
.y6b{bottom:4.237632px;}
.y4c{bottom:4.237634px;}
.y4a{bottom:4.237638px;}
.y16d{bottom:4.331316px;}
.y16e{bottom:4.331335px;}
.y72{bottom:4.434647px;}
.y158{bottom:4.646363px;}
.y15a{bottom:4.646382px;}
.y60{bottom:4.695638px;}
.y183{bottom:5.202573px;}
.y17d{bottom:5.202592px;}
.yd3{bottom:5.417766px;}
.yd6{bottom:5.417787px;}
.y85{bottom:5.692474px;}
.y8a{bottom:5.692484px;}
.yb0{bottom:7.009008px;}
.yc1{bottom:7.009047px;}
.y17a{bottom:7.081263px;}
.y178{bottom:7.081269px;}
.y63{bottom:7.337927px;}
.y65{bottom:7.373709px;}
.yae{bottom:7.376727px;}
.y45{bottom:7.376730px;}
.ya5{bottom:7.703831px;}
.ya8{bottom:7.703883px;}
.y97{bottom:8.564269px;}
.y56{bottom:8.564272px;}
.y59{bottom:8.564280px;}
.y16f{bottom:9.017030px;}
.y170{bottom:9.017049px;}
.y172{bottom:9.017058px;}
.y61{bottom:9.171105px;}
.y15c{bottom:9.332078px;}
.y15e{bottom:9.332097px;}
.y160{bottom:9.332105px;}
.y116{bottom:9.471651px;}
.yd8{bottom:9.471653px;}
.y118{bottom:9.471659px;}
.ydb{bottom:9.471660px;}
.y11a{bottom:9.471666px;}
.yde{bottom:9.471668px;}
.y11c{bottom:9.471672px;}
.ye0{bottom:9.471673px;}
.y185{bottom:9.801876px;}
.y17f{bottom:9.801896px;}
.y181{bottom:9.801899px;}
.ya1{bottom:10.445046px;}
.y80{bottom:10.497979px;}
.y8d{bottom:10.497983px;}
.y82{bottom:11.385089px;}
.y87{bottom:11.385100px;}
.ya6{bottom:15.664282px;}
.ya7{bottom:15.664284px;}
.y168{bottom:17.364127px;}
.y169{bottom:17.364145px;}
.y16b{bottom:17.364155px;}
.y54{bottom:18.055811px;}
.yd2{bottom:18.223850px;}
.yd5{bottom:18.223871px;}
.y74{bottom:18.260953px;}
.y76{bottom:18.260960px;}
.y7b{bottom:18.300027px;}
.y49{bottom:18.300033px;}
.y6a{bottom:18.300034px;}
.y4e{bottom:18.300094px;}
.ya2{bottom:18.793497px;}
.y177{bottom:21.020641px;}
.y99{bottom:22.504542px;}
.y96{bottom:22.504547px;}
.y5a{bottom:22.504562px;}
.y58{bottom:22.504573px;}
.y55{bottom:22.504586px;}
.y5c{bottom:22.504591px;}
.yb1{bottom:23.527521px;}
.yc2{bottom:23.527560px;}
.yda{bottom:23.603886px;}
.ydd{bottom:23.603893px;}
.y173{bottom:23.940441px;}
.y163{bottom:23.940445px;}
.y165{bottom:23.940458px;}
.y187{bottom:24.278277px;}
.y83{bottom:28.389327px;}
.y88{bottom:28.389337px;}
.y7a{bottom:29.662905px;}
.y6c{bottom:29.662981px;}
.y4d{bottom:29.662982px;}
.y4b{bottom:29.662985px;}
.y53{bottom:29.733589px;}
.y95{bottom:29.881529px;}
.y73{bottom:29.999041px;}
.y75{bottom:29.999058px;}
.y140{bottom:31.105083px;}
.y17b{bottom:32.254608px;}
.y179{bottom:32.254620px;}
.y159{bottom:33.942563px;}
.y16a{bottom:33.942584px;}
.y15b{bottom:33.942588px;}
.y5b{bottom:34.182343px;}
.y57{bottom:34.182352px;}
.y184{bottom:34.194253px;}
.y17e{bottom:34.194255px;}
.y98{bottom:34.330290px;}
.y11d{bottom:35.007646px;}
.ye1{bottom:35.007647px;}
.yd4{bottom:35.574966px;}
.yd7{bottom:35.574987px;}
.y117{bottom:35.651313px;}
.yd9{bottom:35.651315px;}
.y119{bottom:35.651321px;}
.ydc{bottom:35.651322px;}
.y11b{bottom:35.651328px;}
.ydf{bottom:35.651330px;}
.y161{bottom:35.753535px;}
.y8e{bottom:37.038447px;}
.y81{bottom:37.038451px;}
.y8c{bottom:37.038459px;}
.y90{bottom:37.038465px;}
.y162{bottom:38.627031px;}
.y15d{bottom:38.627036px;}
.y171{bottom:38.627056px;}
.y174{bottom:38.627057px;}
.y15f{bottom:38.627060px;}
.y164{bottom:38.627062px;}
.y186{bottom:38.792513px;}
.y180{bottom:38.792522px;}
.y17c{bottom:40.226339px;}
.yb2{bottom:40.880133px;}
.yc3{bottom:40.880172px;}
.y16c{bottom:44.140772px;}
.y7f{bottom:44.985058px;}
.y84{bottom:45.356029px;}
.y89{bottom:45.356039px;}
.yb3{bottom:58.231249px;}
.yc4{bottom:58.231287px;}
.y86{bottom:62.322731px;}
.y8b{bottom:62.322742px;}
.ye4{bottom:62.740067px;}
.ye7{bottom:62.740088px;}
.y8f{bottom:63.615281px;}
.y11e{bottom:66.793802px;}
.ye9{bottom:66.793804px;}
.y120{bottom:66.793810px;}
.yec{bottom:66.793811px;}
.y122{bottom:66.793817px;}
.yef{bottom:66.793819px;}
.y124{bottom:66.793823px;}
.yf1{bottom:66.793824px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.yb4{bottom:75.583861px;}
.ye3{bottom:75.583874px;}
.ye6{bottom:75.583895px;}
.yc5{bottom:75.583900px;}
.ye2{bottom:80.926477px;}
.yeb{bottom:80.926486px;}
.yee{bottom:80.926493px;}
.y142{bottom:88.313923px;}
.y141{bottom:88.427683px;}
.y125{bottom:92.367669px;}
.yf2{bottom:92.367671px;}
.y121{bottom:92.822729px;}
.yed{bottom:92.822731px;}
.y123{bottom:92.822737px;}
.yf0{bottom:92.822738px;}
.yb5{bottom:92.899049px;}
.ye5{bottom:92.899062px;}
.ye8{bottom:92.899084px;}
.yc6{bottom:92.899088px;}
.y11f{bottom:92.973913px;}
.yea{bottom:92.973915px;}
.y1{bottom:101.640000px;}
.yb6{bottom:110.250165px;}
.yc7{bottom:110.250203px;}
.y1a3{bottom:116.400000px;}
.y192{bottom:119.100000px;}
.yf5{bottom:120.062667px;}
.yf8{bottom:120.062688px;}
.y43{bottom:122.250000px;}
.y126{bottom:124.116403px;}
.yfa{bottom:124.116404px;}
.y128{bottom:124.116410px;}
.yfd{bottom:124.116411px;}
.y12a{bottom:124.116418px;}
.y100{bottom:124.116419px;}
.y12c{bottom:124.116423px;}
.y102{bottom:124.116424px;}
.yb7{bottom:127.602777px;}
.yc8{bottom:127.602816px;}
.yf4{bottom:132.906474px;}
.yf7{bottom:132.906495px;}
.y1a2{bottom:133.950000px;}
.y1cf{bottom:136.290000px;}
.y191{bottom:136.650000px;}
.yf3{bottom:138.286501px;}
.yfc{bottom:138.286510px;}
.yff{bottom:138.286517px;}
.y42{bottom:139.800000px;}
.y9f{bottom:140.520000px;}
.yb8{bottom:144.955389px;}
.yc9{bottom:144.955428px;}
.y144{bottom:145.636523px;}
.y143{bottom:145.750284px;}
.y12d{bottom:149.690269px;}
.y103{bottom:149.690271px;}
.y129{bottom:150.143833px;}
.yfe{bottom:150.143834px;}
.y12b{bottom:150.143840px;}
.y101{bottom:150.143841px;}
.yf6{bottom:150.263577px;}
.yf9{bottom:150.263598px;}
.y127{bottom:150.293520px;}
.yfb{bottom:150.293521px;}
.y1ce{bottom:153.840000px;}
.y190{bottom:154.290000px;}
.y41{bottom:157.350000px;}
.yb9{bottom:162.313989px;}
.yca{bottom:162.314028px;}
.y1fb{bottom:168.870000px;}
.y1a1{bottom:169.500000px;}
.y1cd{bottom:171.480000px;}
.y18f{bottom:171.840000px;}
.y40{bottom:174.990000px;}
.y9e{bottom:176.070000px;}
.yba{bottom:179.663607px;}
.ycb{bottom:179.663646px;}
.y12e{bottom:179.963000px;}
.y105{bottom:179.963002px;}
.y131{bottom:179.963013px;}
.y108{bottom:179.963014px;}
.y134{bottom:179.963026px;}
.y10b{bottom:179.963027px;}
.y1fa{bottom:186.510000px;}
.y1a0{bottom:187.140000px;}
.y18e{bottom:189.390000px;}
.y146{bottom:189.543469px;}
.y148{bottom:189.543481px;}
.y14a{bottom:189.543494px;}
.y9d{bottom:193.710000px;}
.y104{bottom:194.094180px;}
.y130{bottom:194.094190px;}
.y154{bottom:194.094191px;}
.y107{bottom:194.094193px;}
.y133{bottom:194.094202px;}
.y10a{bottom:194.094206px;}
.y136{bottom:194.094215px;}
.ybb{bottom:197.013226px;}
.ycc{bottom:197.013265px;}
.y1cc{bottom:198.030000px;}
.y3f{bottom:201.540000px;}
.y12f{bottom:205.500921px;}
.y106{bottom:205.500923px;}
.y132{bottom:205.500933px;}
.y109{bottom:205.500936px;}
.y135{bottom:205.500946px;}
.y10c{bottom:205.500949px;}
.y9c{bottom:211.260000px;}
.y1f9{bottom:213.060000px;}
.y145{bottom:213.599406px;}
.y147{bottom:213.599419px;}
.y149{bottom:213.599432px;}
.ybc{bottom:214.362844px;}
.ycd{bottom:214.362883px;}
.y1cb{bottom:215.580000px;}
.y18d{bottom:216.030000px;}
.y23{bottom:219.000000px;}
.y19f{bottom:219.360000px;}
.y9b{bottom:228.900000px;}
.y1f8{bottom:230.610000px;}
.ybd{bottom:231.712463px;}
.yce{bottom:231.712501px;}
.y137{bottom:234.676430px;}
.y10e{bottom:234.676431px;}
.y13a{bottom:234.676440px;}
.y111{bottom:234.676442px;}
.y13d{bottom:234.676451px;}
.y114{bottom:234.676452px;}
.y22{bottom:236.550000px;}
.y3e{bottom:237.180000px;}
.y1ca{bottom:242.220000px;}
.y14b{bottom:242.774913px;}
.y14e{bottom:242.774923px;}
.y151{bottom:242.774934px;}
.y14d{bottom:244.631132px;}
.y150{bottom:244.631143px;}
.y153{bottom:244.631153px;}
.y1f7{bottom:248.250000px;}
.ybe{bottom:249.062081px;}
.ycf{bottom:249.062120px;}
.y10d{bottom:249.136937px;}
.y139{bottom:249.136945px;}
.y110{bottom:249.136947px;}
.y13c{bottom:249.136956px;}
.y113{bottom:249.136958px;}
.y13f{bottom:249.136966px;}
.y18c{bottom:251.580000px;}
.y21{bottom:254.190000px;}
.y3d{bottom:254.730000px;}
.y1c9{bottom:259.770000px;}
.y138{bottom:260.588585px;}
.y10f{bottom:260.588588px;}
.y13b{bottom:260.588596px;}
.y112{bottom:260.588598px;}
.y13e{bottom:260.588606px;}
.y115{bottom:260.588609px;}
.y9a{bottom:264.360000px;}
.y93{bottom:264.374980px;}
.yc0{bottom:266.426669px;}
.yd1{bottom:266.426707px;}
.y14c{bottom:268.687070px;}
.y14f{bottom:268.687081px;}
.y152{bottom:268.687091px;}
.y18b{bottom:269.220000px;}
.y3c{bottom:272.280000px;}
.y1f6{bottom:274.800000px;}
.y1c8{bottom:277.410000px;}
.y18a{bottom:286.770000px;}
.y20{bottom:289.740000px;}
.y3b{bottom:289.920000px;}
.y1f5{bottom:301.440000px;}
.y1c7{bottom:303.960000px;}
.y189{bottom:304.320000px;}
.y1f{bottom:307.380000px;}
.y3a{bottom:307.470000px;}
.y1f4{bottom:318.990000px;}
.y1c6{bottom:321.510000px;}
.y1e{bottom:324.930000px;}
.y39{bottom:325.110000px;}
.y92{bottom:337.980000px;}
.y188{bottom:339.960000px;}
.y182{bottom:339.975000px;}
.y1f3{bottom:345.540000px;}
.y1c5{bottom:348.150000px;}
.y1d{bottom:360.480000px;}
.y38{bottom:360.660000px;}
.y1f2{bottom:363.180000px;}
.y1c4{bottom:365.700000px;}
.y91{bottom:373.530000px;}
.y7e{bottom:373.574959px;}
.y1c{bottom:378.120000px;}
.y37{bottom:378.210000px;}
.y1f1{bottom:389.730000px;}
.y1c3{bottom:392.340000px;}
.y1b{bottom:395.670000px;}
.y36{bottom:395.850000px;}
.y176{bottom:396.674959px;}
.y1f0{bottom:407.370000px;}
.y1c2{bottom:409.890000px;}
.y1a{bottom:413.310000px;}
.y35{bottom:413.400000px;}
.y1c1{bottom:427.440000px;}
.y19{bottom:430.860000px;}
.y34{bottom:431.040000px;}
.y1ef{bottom:433.920000px;}
.y18{bottom:448.410000px;}
.y33{bottom:448.590000px;}
.y1ee{bottom:451.470000px;}
.y1c0{bottom:454.080000px;}
.y17{bottom:466.050000px;}
.y32{bottom:466.140000px;}
.y1bf{bottom:471.660000px;}
.y7d{bottom:477.780000px;}
.y1ed{bottom:478.140000px;}
.y167{bottom:483.524959px;}
.y175{bottom:483.540000px;}
.y16{bottom:483.630000px;}
.y31{bottom:483.810000px;}
.y19e{bottom:494.970000px;}
.y1ec{bottom:495.690000px;}
.y1be{bottom:498.300000px;}
.y30{bottom:501.360000px;}
.y15{bottom:510.540000px;}
.y19d{bottom:512.610000px;}
.y78{bottom:513.225000px;}
.y7c{bottom:513.240000px;}
.y1bd{bottom:515.850000px;}
.y2f{bottom:518.910000px;}
.y1eb{bottom:522.330000px;}
.y2e{bottom:536.550000px;}
.y1ea{bottom:539.880000px;}
.y1bc{bottom:542.400000px;}
.y19c{bottom:548.160000px;}
.y2d{bottom:554.100000px;}
.y14{bottom:559.140000px;}
.y1bb{bottom:560.040000px;}
.y157{bottom:561.524959px;}
.y166{bottom:561.570000px;}
.y1e9{bottom:566.430000px;}
.y2c{bottom:571.740000px;}
.y1ba{bottom:577.590000px;}
.y71{bottom:581.324959px;}
.y77{bottom:581.370000px;}
.y1e8{bottom:584.070000px;}
.y19b{bottom:589.020000px;}
.y2b{bottom:589.290000px;}
.y13{bottom:596.130000px;}
.y1b9{bottom:604.230000px;}
.y2a{bottom:606.840000px;}
.y1e7{bottom:610.620000px;}
.y12{bottom:613.770000px;}
.y1b8{bottom:621.780000px;}
.y1e6{bottom:628.260000px;}
.y11{bottom:631.320000px;}
.y29{bottom:633.480000px;}
.y156{bottom:639.600000px;}
.y1b7{bottom:648.330000px;}
.y10{bottom:648.960000px;}
.y70{bottom:650.490000px;}
.y1e5{bottom:654.810000px;}
.y1b6{bottom:665.970000px;}
.yf{bottom:666.510000px;}
.y6f{bottom:668.040000px;}
.y28{bottom:669.390000px;}
.yad{bottom:671.774959px;}
.y1e4{bottom:672.360000px;}
.yaf{bottom:679.274959px;}
.y155{bottom:679.290000px;}
.ye{bottom:684.060000px;}
.y6e{bottom:685.590000px;}
.y1b5{bottom:692.520000px;}
.y1e3{bottom:699.000000px;}
.yd{bottom:701.700000px;}
.y1b4{bottom:710.160000px;}
.y1e2{bottom:716.550000px;}
.y27{bottom:717.630000px;}
.yc{bottom:719.250000px;}
.y69{bottom:721.124919px;}
.y6d{bottom:721.140000px;}
.y1b3{bottom:736.710000px;}
.yb{bottom:736.890000px;}
.y1e1{bottom:743.190000px;}
.y1b2{bottom:754.260000px;}
.y26{bottom:758.490000px;}
.y1e0{bottom:760.740000px;}
.ya{bottom:763.800000px;}
.y1df{bottom:778.290000px;}
.y1b1{bottom:781.170000px;}
.y68{bottom:789.360000px;}
.y19a{bottom:790.350000px;}
.y1de{bottom:804.930000px;}
.y67{bottom:806.910000px;}
.y9{bottom:812.040000px;}
.y1dd{bottom:822.480000px;}
.y1b0{bottom:829.500000px;}
.y199{bottom:831.210000px;}
.y66{bottom:833.460000px;}
.y1af{bottom:847.050000px;}
.y8{bottom:847.860000px;}
.y1dc{bottom:849.030000px;}
.y1db{bottom:866.670000px;}
.y5e{bottom:869.010000px;}
.y5f{bottom:869.025000px;}
.y1ae{bottom:873.960000px;}
.y7{bottom:883.860000px;}
.y1da{bottom:884.220000px;}
.y1d9{bottom:910.860000px;}
.y1ad{bottom:911.310000px;}
.y51{bottom:917.324919px;}
.y5d{bottom:917.340000px;}
.y6{bottom:923.640000px;}
.y1d8{bottom:928.410000px;}
.y5{bottom:941.640000px;}
.y1d7{bottom:954.960000px;}
.y1ac{bottom:959.550000px;}
.y1d6{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y1ab{bottom:977.190000px;}
.y1ff{bottom:981.600000px;}
.yac{bottom:986.820000px;}
.y1d5{bottom:990.150000px;}
.y50{bottom:990.960000px;}
.y1aa{bottom:994.740000px;}
.y1fe{bottom:999.150000px;}
.y3{bottom:1012.230000px;}
.y1a9{bottom:1012.320000px;}
.y1d4{bottom:1016.820000px;}
.yab{bottom:1022.490000px;}
.y48{bottom:1026.374919px;}
.y4f{bottom:1026.450000px;}
.y1a8{bottom:1029.960000px;}
.y198{bottom:1030.320000px;}
.y1d3{bottom:1034.370000px;}
.yaa{bottom:1040.040000px;}
.y1fd{bottom:1043.370000px;}
.y1a7{bottom:1047.510000px;}
.y197{bottom:1047.960000px;}
.y1d2{bottom:1060.920000px;}
.y196{bottom:1065.510000px;}
.y1a6{bottom:1074.420000px;}
.ya4{bottom:1075.574919px;}
.ya9{bottom:1075.590000px;}
.y1d1{bottom:1078.560000px;}
.y195{bottom:1083.150000px;}
.y47{bottom:1094.670000px;}
.y1d0{bottom:1096.110000px;}
.y194{bottom:1100.700000px;}
.y1fc{bottom:1105.110000px;}
.y1a5{bottom:1122.750000px;}
.ya0{bottom:1123.875000px;}
.ya3{bottom:1123.920000px;}
.y193{bottom:1127.610000px;}
.y44{bottom:1130.174919px;}
.y46{bottom:1130.220000px;}
.y1a4{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.h3a{height:24.300029px;}
.hc{height:24.300070px;}
.h1c{height:25.199905px;}
.h19{height:27.000355px;}
.h35{height:27.000436px;}
.h30{height:30.598830px;}
.h6{height:35.782383px;}
.h2{height:36.013359px;}
.h3{height:38.100586px;}
.h34{height:39.360867px;}
.h29{height:39.765854px;}
.h2e{height:39.884186px;}
.h38{height:39.887391px;}
.h1f{height:39.902637px;}
.h14{height:39.904038px;}
.h37{height:39.907245px;}
.h1d{height:40.040332px;}
.h1a{height:40.048363px;}
.h3e{height:40.632592px;}
.h4b{height:41.570875px;}
.h33{height:41.684756px;}
.h32{height:41.705505px;}
.h41{height:41.905863px;}
.h46{height:41.926722px;}
.h25{height:46.799827px;}
.he{height:46.799908px;}
.h21{height:47.700474px;}
.h47{height:49.838594px;}
.h7{height:50.902383px;}
.h2d{height:52.201500px;}
.h49{height:52.201521px;}
.h13{height:52.201561px;}
.h5{height:55.779258px;}
.h4f{height:56.699959px;}
.h4a{height:56.699999px;}
.h40{height:56.700625px;}
.h8{height:60.960938px;}
.h9{height:61.793886px;}
.hb{height:62.585859px;}
.h2b{height:64.237425px;}
.h17{height:64.694519px;}
.h10{height:65.299736px;}
.h3c{height:65.701546px;}
.h45{height:67.851634px;}
.h24{height:67.868441px;}
.h22{height:67.902223px;}
.h2a{height:68.030041px;}
.h2c{height:68.063903px;}
.h1b{height:68.103814px;}
.h2f{height:68.166860px;}
.h20{height:68.185851px;}
.h16{height:68.352853px;}
.h39{height:68.368605px;}
.h1e{height:68.396697px;}
.h18{height:68.514122px;}
.h36{height:68.533053px;}
.h15{height:68.548226px;}
.ha{height:68.582109px;}
.h23{height:68.873074px;}
.h12{height:68.934626px;}
.h11{height:69.155071px;}
.hf{height:69.189494px;}
.h3d{height:69.580604px;}
.h3f{height:69.615238px;}
.h4{height:71.019492px;}
.hd{height:71.031310px;}
.h4c{height:71.119073px;}
.h4d{height:71.154473px;}
.h31{height:71.537203px;}
.h42{height:71.857634px;}
.h43{height:71.893402px;}
.h50{height:78.917239px;}
.h48{height:79.345773px;}
.h28{height:82.800527px;}
.h4e{height:85.547287px;}
.h44{height:86.589508px;}
.h27{height:110.751249px;}
.h26{height:114.606584px;}
.h3b{height:286.126533px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:21.599318px;}
.w7{width:21.599339px;}
.w8{width:22.500492px;}
.wd{width:56.700011px;}
.w10{width:85.499236px;}
.wa{width:91.800510px;}
.w5{width:155.707953px;}
.w9{width:169.200766px;}
.w3{width:190.878496px;}
.wb{width:220.501094px;}
.w4{width:227.776021px;}
.wc{width:260.014941px;}
.w11{width:279.910484px;}
.w14{width:284.239916px;}
.wf{width:324.816814px;}
.w12{width:418.503322px;}
.w13{width:487.964919px;}
.we{width:506.409401px;}
.w15{width:540.961055px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.953942px;}
.xc{left:3.950260px;}
.xb{left:5.068324px;}
.x91{left:7.521533px;}
.x6e{left:10.297193px;}
.x51{left:11.515143px;}
.xe{left:12.707914px;}
.xd{left:13.825828px;}
.x21{left:14.835779px;}
.x28{left:16.587798px;}
.x93{left:18.334334px;}
.x64{left:20.225950px;}
.x43{left:21.260257px;}
.x3f{left:22.296221px;}
.x92{left:24.445294px;}
.x83{left:28.527125px;}
.x3b{left:30.013453px;}
.x29{left:31.078546px;}
.x19{left:34.542323px;}
.x5e{left:35.763610px;}
.xf{left:41.030369px;}
.x14{left:43.047882px;}
.x26{left:45.422383px;}
.x50{left:49.493313px;}
.x63{left:51.301299px;}
.x2e{left:52.718455px;}
.x77{left:54.180065px;}
.x62{left:58.202631px;}
.x74{left:59.974862px;}
.x59{left:62.114962px;}
.x6a{left:66.101766px;}
.x1{left:68.040000px;}
.x27{left:69.107124px;}
.x69{left:70.825769px;}
.x47{left:72.651677px;}
.x13{left:77.925921px;}
.x6d{left:80.900754px;}
.x2d{left:83.875631px;}
.x80{left:85.841481px;}
.x18{left:89.217704px;}
.x76{left:91.531246px;}
.x4f{left:93.376480px;}
.x2f{left:94.544893px;}
.x44{left:99.476647px;}
.x4e{left:100.682897px;}
.x61{left:102.085799px;}
.x38{left:105.224682px;}
.x7e{left:106.884739px;}
.x5d{left:108.212689px;}
.x60{left:109.356473px;}
.xa0{left:111.239987px;}
.x70{left:113.011164px;}
.x16{left:115.699589px;}
.x17{left:117.408204px;}
.x75{left:118.878921px;}
.x96{left:120.641129px;}
.x6c{left:125.005826px;}
.x12{left:126.360391px;}
.x8d{left:128.688755px;}
.x4d{left:130.319599px;}
.x15{left:131.597125px;}
.x58{left:137.480052px;}
.x5c{left:139.731842px;}
.x37{left:142.402609px;}
.x11{left:143.408988px;}
.x4c{left:145.304749px;}
.x9f{left:146.969987px;}
.x73{left:148.293724px;}
.x54{left:151.683335px;}
.x4b{left:152.874769px;}
.x3d{left:153.944990px;}
.x24{left:155.294671px;}
.x82{left:159.229799px;}
.x65{left:160.395632px;}
.x5f{left:161.587066px;}
.x6f{left:164.312449px;}
.x36{left:165.513056px;}
.x2b{left:168.791721px;}
.x7{left:170.077535px;}
.x57{left:172.324772px;}
.x85{left:175.844980px;}
.x53{left:177.418119px;}
.x4a{left:178.818052px;}
.x5b{left:180.545603px;}
.x5{left:182.819987px;}
.x78{left:186.055948px;}
.x52{left:188.379231px;}
.x2{left:191.459987px;}
.x68{left:195.349065px;}
.x6b{left:196.942591px;}
.x34{left:198.720460px;}
.x72{left:204.806003px;}
.x2c{left:209.244314px;}
.x5a{left:211.626908px;}
.xa{left:212.723278px;}
.x8a{left:215.852751px;}
.x41{left:221.969980px;}
.x95{left:223.216732px;}
.x33{left:224.367127px;}
.x46{left:227.594980px;}
.x8e{left:228.995384px;}
.x35{left:233.080704px;}
.x71{left:234.993738px;}
.x56{left:237.570197px;}
.x67{left:241.114685px;}
.x66{left:246.282494px;}
.x32{left:249.474796px;}
.x99{left:256.164406px;}
.x55{left:259.015850px;}
.x49{left:269.679119px;}
.x94{left:272.572166px;}
.x90{left:276.194980px;}
.x9{left:277.544980px;}
.x2a{left:279.194980px;}
.x31{left:281.744980px;}
.x7c{left:290.862353px;}
.x7a{left:300.310597px;}
.x6{left:304.544980px;}
.x42{left:305.960514px;}
.x23{left:308.745000px;}
.x48{left:313.094980px;}
.x1b{left:326.894980px;}
.x3a{left:333.194980px;}
.x1d{left:348.509987px;}
.x8b{left:354.791255px;}
.x7d{left:361.484961px;}
.x88{left:364.200185px;}
.x86{left:365.305356px;}
.x3c{left:389.909987px;}
.x81{left:397.080318px;}
.x1e{left:399.569959px;}
.x7b{left:400.638358px;}
.x7f{left:407.829186px;}
.x1f{left:421.139987px;}
.x8c{left:430.450969px;}
.x1a{left:460.199987px;}
.x87{left:465.936069px;}
.x89{left:469.490552px;}
.x25{left:477.929987px;}
.x20{left:479.744959px;}
.x3e{left:492.504102px;}
.x98{left:493.809087px;}
.x8{left:495.389987px;}
.x30{left:499.709987px;}
.x22{left:502.229987px;}
.x10{left:505.289987px;}
.x97{left:522.800364px;}
.x9a{left:529.950946px;}
.x39{left:541.769987px;}
.x45{left:546.809987px;}
.x84{left:591.179987px;}
.x79{left:592.979987px;}
.x40{left:660.389987px;}
.x8f{left:663.809987px;}
.x9c{left:667.139987px;}
.x9d{left:669.389987px;}
.x9e{left:680.639987px;}
.x4{left:688.559987px;}
.x9b{left:691.889987px;}
.x3{left:800.339987px;}
@media print{
.v5{vertical-align:-49.565397pt;}
.v9{vertical-align:-46.160085pt;}
.v4{vertical-align:-40.401345pt;}
.va{vertical-align:-29.683382pt;}
.v8{vertical-align:-28.254631pt;}
.vd{vertical-align:-19.604274pt;}
.v1{vertical-align:-18.560000pt;}
.vf{vertical-align:-16.349369pt;}
.v3{vertical-align:-13.440000pt;}
.ve{vertical-align:-6.438876pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.vc{vertical-align:16.655888pt;}
.v6{vertical-align:25.966898pt;}
.vb{vertical-align:28.303571pt;}
.v10{vertical-align:35.256803pt;}
.v7{vertical-align:40.401345pt;}
.ls21{letter-spacing:-1.959747pt;}
.ls20{letter-spacing:-1.298345pt;}
.ls1c{letter-spacing:-1.280150pt;}
.ls32{letter-spacing:-1.090180pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls37{letter-spacing:-0.107195pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.020915pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.283462pt;}
.ls1a{letter-spacing:0.314958pt;}
.ls0{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.320337pt;}
.ls35{letter-spacing:0.383888pt;}
.ls23{letter-spacing:0.727008pt;}
.ls1f{letter-spacing:1.174795pt;}
.ls22{letter-spacing:1.583838pt;}
.ls34{letter-spacing:1.601686pt;}
.ls39{letter-spacing:1.917139pt;}
.ls24{letter-spacing:2.604182pt;}
.ls2b{letter-spacing:2.836881pt;}
.ls1b{letter-spacing:3.916649pt;}
.ls36{letter-spacing:4.014549pt;}
.ls38{letter-spacing:5.411280pt;}
.ls1e{letter-spacing:5.584225pt;}
.ls19{letter-spacing:23.763200pt;}
.ls2c{letter-spacing:33.043200pt;}
.ls2d{letter-spacing:36.243200pt;}
.ls3c{letter-spacing:42.423680pt;}
.ls17{letter-spacing:57.315106pt;}
.ls3b{letter-spacing:71.863680pt;}
.ls11{letter-spacing:77.629867pt;}
.ls26{letter-spacing:107.603200pt;}
.ls13{letter-spacing:138.429867pt;}
.ls16{letter-spacing:154.749867pt;}
.ls18{letter-spacing:164.349867pt;}
.ls2a{letter-spacing:177.363200pt;}
.ls2e{letter-spacing:180.243200pt;}
.ls15{letter-spacing:314.233693pt;}
.ls14{letter-spacing:421.302419pt;}
.ls10{letter-spacing:499.030419pt;}
.ls12{letter-spacing:587.592067pt;}
.ls29{letter-spacing:873.038900pt;}
.ls28{letter-spacing:900.845930pt;}
.ls30{letter-spacing:1543.380208pt;}
.ls25{letter-spacing:1545.165729pt;}
.ls31{letter-spacing:1602.368848pt;}
.ls2f{letter-spacing:1691.999301pt;}
.ws17{word-spacing:-36.011324pt;}
.ws3b{word-spacing:-35.747259pt;}
.ws29{word-spacing:-35.570148pt;}
.ws42{word-spacing:-35.379845pt;}
.ws34{word-spacing:-34.614497pt;}
.ws14{word-spacing:-34.402806pt;}
.ws3d{word-spacing:-34.083951pt;}
.ws2d{word-spacing:-34.076407pt;}
.ws21{word-spacing:-33.843134pt;}
.ws45{word-spacing:-20.680403pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws2a{word-spacing:-11.890133pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws15{word-spacing:-5.646890pt;}
.ws2e{word-spacing:-5.473350pt;}
.ws27{word-spacing:-4.079340pt;}
.wse{word-spacing:-3.980982pt;}
.ws36{word-spacing:-2.873682pt;}
.ws2f{word-spacing:-1.979209pt;}
.ws1f{word-spacing:-1.645483pt;}
.ws20{word-spacing:-0.788653pt;}
.ws26{word-spacing:-0.448679pt;}
.ws24{word-spacing:-0.385128pt;}
.wsc{word-spacing:-0.379290pt;}
.ws11{word-spacing:-0.083579pt;}
.ws38{word-spacing:-0.065113pt;}
.ws23{word-spacing:-0.064791pt;}
.ws3f{word-spacing:-0.064444pt;}
.wsd{word-spacing:-0.064333pt;}
.ws35{word-spacing:-0.063050pt;}
.ws12{word-spacing:-0.062664pt;}
.ws16{word-spacing:-0.062084pt;}
.ws2b{word-spacing:-0.062070pt;}
.ws1e{word-spacing:-0.061645pt;}
.ws19{word-spacing:-0.061499pt;}
.ws37{word-spacing:-0.037973pt;}
.ws3e{word-spacing:-0.037669pt;}
.ws31{word-spacing:-0.036144pt;}
.ws9{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.045125pt;}
.ws22{word-spacing:1.025389pt;}
.ws10{word-spacing:1.215817pt;}
.ws1a{word-spacing:1.236846pt;}
.ws7{word-spacing:3.826560pt;}
.ws33{word-spacing:90.618988pt;}
.ws18{word-spacing:106.468545pt;}
.ws32{word-spacing:124.392635pt;}
.wsf{word-spacing:367.214703pt;}
.ws1d{word-spacing:370.498535pt;}
.ws13{word-spacing:476.598210pt;}
.ws1b{word-spacing:577.130073pt;}
.ws1c{word-spacing:578.620034pt;}
.ws41{word-spacing:630.912341pt;}
.ws40{word-spacing:807.080702pt;}
.ws30{word-spacing:832.022024pt;}
.ws3a{word-spacing:1025.770783pt;}
.ws39{word-spacing:1135.492575pt;}
.ws3c{word-spacing:1252.669233pt;}
.ws28{word-spacing:1393.054140pt;}
.ws44{word-spacing:1521.734041pt;}
.ws25{word-spacing:1558.989134pt;}
.ws43{word-spacing:1751.161456pt;}
._79{margin-left:-688.603802pt;}
._80{margin-left:-686.640056pt;}
._9e{margin-left:-624.863572pt;}
._7d{margin-left:-500.177924pt;}
._81{margin-left:-481.901516pt;}
._38{margin-left:-441.086336pt;}
._94{margin-left:-429.262010pt;}
._93{margin-left:-428.102142pt;}
._71{margin-left:-410.468726pt;}
._70{margin-left:-409.508849pt;}
._91{margin-left:-397.119372pt;}
._62{margin-left:-382.992865pt;}
._4d{margin-left:-368.270973pt;}
._31{margin-left:-348.434782pt;}
._6a{margin-left:-345.604530pt;}
._8e{margin-left:-334.846949pt;}
._9a{margin-left:-315.072167pt;}
._8f{margin-left:-304.860301pt;}
._4c{margin-left:-300.509305pt;}
._33{margin-left:-298.456731pt;}
._5e{margin-left:-296.541504pt;}
._7a{margin-left:-295.013707pt;}
._8a{margin-left:-293.863019pt;}
._87{margin-left:-291.042079pt;}
._88{margin-left:-290.131132pt;}
._32{margin-left:-287.071520pt;}
._99{margin-left:-285.070980pt;}
._6e{margin-left:-273.745516pt;}
._7f{margin-left:-272.030696pt;}
._25{margin-left:-270.582279pt;}
._1f{margin-left:-269.117024pt;}
._6f{margin-left:-264.942579pt;}
._83{margin-left:-264.012035pt;}
._90{margin-left:-263.009729pt;}
._8d{margin-left:-259.058327pt;}
._61{margin-left:-257.673860pt;}
._5d{margin-left:-253.155139pt;}
._82{margin-left:-252.189042pt;}
._1a{margin-left:-251.295600pt;}
._c{margin-left:-247.438837pt;}
._50{margin-left:-246.181408pt;}
._9b{margin-left:-243.785315pt;}
._9c{margin-left:-242.734881pt;}
._76{margin-left:-240.926043pt;}
._35{margin-left:-239.199143pt;}
._3d{margin-left:-237.950519pt;}
._3c{margin-left:-235.933800pt;}
._95{margin-left:-233.614836pt;}
._19{margin-left:-232.253733pt;}
._47{margin-left:-228.269452pt;}
._69{margin-left:-226.877055pt;}
._57{margin-left:-225.690626pt;}
._4a{margin-left:-224.093363pt;}
._8c{margin-left:-220.417545pt;}
._56{margin-left:-217.387388pt;}
._74{margin-left:-215.105738pt;}
._7b{margin-left:-213.407512pt;}
._1e{margin-left:-211.575530pt;}
._44{margin-left:-209.915858pt;}
._34{margin-left:-208.606369pt;}
._53{margin-left:-207.520277pt;}
._37{margin-left:-205.559318pt;}
._7c{margin-left:-202.146360pt;}
._10{margin-left:-200.244485pt;}
._12{margin-left:-198.349761pt;}
._78{margin-left:-197.338812pt;}
._13{margin-left:-195.576103pt;}
._96{margin-left:-192.264859pt;}
._55{margin-left:-190.789663pt;}
._59{margin-left:-188.944538pt;}
._2e{margin-left:-186.934767pt;}
._3a{margin-left:-184.606569pt;}
._17{margin-left:-183.301335pt;}
._4f{margin-left:-182.306633pt;}
._63{margin-left:-181.048018pt;}
._52{margin-left:-175.729592pt;}
._2d{margin-left:-174.191669pt;}
._5a{margin-left:-173.085569pt;}
._39{margin-left:-169.537234pt;}
._46{margin-left:-167.845471pt;}
._45{margin-left:-165.365441pt;}
._66{margin-left:-164.359301pt;}
._5b{margin-left:-162.457605pt;}
._98{margin-left:-161.275248pt;}
._22{margin-left:-159.365788pt;}
._26{margin-left:-157.095094pt;}
._16{margin-left:-156.168130pt;}
._64{margin-left:-155.248100pt;}
._58{margin-left:-153.803860pt;}
._67{margin-left:-150.760696pt;}
._3f{margin-left:-149.151733pt;}
._2c{margin-left:-147.989114pt;}
._2a{margin-left:-145.300257pt;}
._36{margin-left:-143.756521pt;}
._6d{margin-left:-142.736303pt;}
._65{margin-left:-141.322623pt;}
._2b{margin-left:-138.975331pt;}
._51{margin-left:-137.948787pt;}
._23{margin-left:-136.573192pt;}
._3e{margin-left:-134.476565pt;}
._11{margin-left:-132.635398pt;}
._1d{margin-left:-127.332748pt;}
._20{margin-left:-125.157771pt;}
._e{margin-left:-122.808033pt;}
._54{margin-left:-121.516331pt;}
._40{margin-left:-119.725170pt;}
._5f{margin-left:-117.227414pt;}
._21{margin-left:-114.516134pt;}
._f{margin-left:-112.236636pt;}
._3b{margin-left:-107.713696pt;}
._4e{margin-left:-106.242660pt;}
._d{margin-left:-104.550657pt;}
._92{margin-left:-103.074348pt;}
._48{margin-left:-101.411653pt;}
._1b{margin-left:-94.262833pt;}
._9d{margin-left:-91.260123pt;}
._4b{margin-left:-89.736959pt;}
._5c{margin-left:-88.188176pt;}
._68{margin-left:-87.217463pt;}
._85{margin-left:-86.235837pt;}
._14{margin-left:-84.924414pt;}
._27{margin-left:-83.841537pt;}
._86{margin-left:-82.947095pt;}
._43{margin-left:-82.049396pt;}
._30{margin-left:-78.902102pt;}
._60{margin-left:-75.515572pt;}
._84{margin-left:-74.225978pt;}
._24{margin-left:-72.945014pt;}
._89{margin-left:-71.008259pt;}
._1c{margin-left:-69.975350pt;}
._18{margin-left:-68.433156pt;}
._49{margin-left:-59.171331pt;}
._6c{margin-left:-52.348559pt;}
._7e{margin-left:-50.910276pt;}
._8b{margin-left:-49.504613pt;}
._6b{margin-left:-48.459339pt;}
._15{margin-left:-47.228957pt;}
._41{margin-left:-45.824141pt;}
._75{margin-left:-44.895945pt;}
._73{margin-left:-43.984566pt;}
._97{margin-left:-43.073755pt;}
._77{margin-left:-27.554128pt;}
._72{margin-left:-26.598273pt;}
._b{margin-left:-3.370132pt;}
._5{margin-left:-2.351467pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.955627pt;}
._9{width:1.844908pt;}
._6{width:2.778666pt;}
._7{width:4.435734pt;}
._8{width:5.449597pt;}
._a{width:6.450349pt;}
._3{width:7.424320pt;}
._4{width:8.321173pt;}
._a1{width:9.237337pt;}
._28{width:10.643200pt;}
._a0{width:14.455467pt;}
._2{width:15.550933pt;}
._a6{width:16.908160pt;}
._a7{width:17.806720pt;}
._9f{width:20.788160pt;}
._a2{width:26.848000pt;}
._2f{width:34.086400pt;}
._a8{width:42.858880pt;}
._a3{width:50.682240pt;}
._42{width:170.643200pt;}
._a5{width:177.100160pt;}
._a4{width:178.062080pt;}
._29{width:180.349867pt;}
.fs0{font-size:34.560000pt;}
.fs15{font-size:35.937978pt;}
.fs16{font-size:36.033613pt;}
.fs12{font-size:36.139569pt;}
.fsb{font-size:36.140838pt;}
.fs1c{font-size:36.143743pt;}
.fs10{font-size:36.264279pt;}
.fse{font-size:36.271552pt;}
.fs1f{font-size:36.800684pt;}
.fs6{font-size:37.440000pt;}
.fs22{font-size:37.669223pt;}
.fs1a{font-size:37.772415pt;}
.fs20{font-size:37.972771pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs14{font-size:61.498620pt;}
.fs17{font-size:61.645052pt;}
.fs1b{font-size:62.069958pt;}
.fsc{font-size:62.083700pt;}
.fs9{font-size:62.664493pt;}
.fs1e{font-size:63.050087pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:64.332613pt;}
.fs23{font-size:64.444162pt;}
.fs19{font-size:64.790798pt;}
.fs21{font-size:65.113405pt;}
.fsf{font-size:65.355408pt;}
.fs18{font-size:65.415910pt;}
.fs13{font-size:65.434135pt;}
.fsd{font-size:65.594397pt;}
.fs1d{font-size:65.609514pt;}
.fs11{font-size:65.636472pt;}
.fsa{font-size:66.152692pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:2.577285pt;}
.y64{bottom:2.609091pt;}
.ybf{bottom:3.468794pt;}
.yd0{bottom:3.468828pt;}
.y94{bottom:3.657969pt;}
.y52{bottom:3.657970pt;}
.y79{bottom:3.766718pt;}
.y6b{bottom:3.766784pt;}
.y4c{bottom:3.766786pt;}
.y4a{bottom:3.766789pt;}
.y16d{bottom:3.850058pt;}
.y16e{bottom:3.850075pt;}
.y72{bottom:3.941909pt;}
.y158{bottom:4.130101pt;}
.y15a{bottom:4.130118pt;}
.y60{bottom:4.173901pt;}
.y183{bottom:4.624509pt;}
.y17d{bottom:4.624526pt;}
.yd3{bottom:4.815792pt;}
.yd6{bottom:4.815811pt;}
.y85{bottom:5.059977pt;}
.y8a{bottom:5.059986pt;}
.yb0{bottom:6.230229pt;}
.yc1{bottom:6.230264pt;}
.y17a{bottom:6.294456pt;}
.y178{bottom:6.294461pt;}
.y63{bottom:6.522602pt;}
.y65{bottom:6.554408pt;}
.yae{bottom:6.557091pt;}
.y45{bottom:6.557093pt;}
.ya5{bottom:6.847850pt;}
.ya8{bottom:6.847896pt;}
.y97{bottom:7.612684pt;}
.y56{bottom:7.612686pt;}
.y59{bottom:7.612693pt;}
.y16f{bottom:8.015138pt;}
.y170{bottom:8.015154pt;}
.y172{bottom:8.015163pt;}
.y61{bottom:8.152093pt;}
.y15c{bottom:8.295180pt;}
.y15e{bottom:8.295197pt;}
.y160{bottom:8.295204pt;}
.y116{bottom:8.419246pt;}
.yd8{bottom:8.419247pt;}
.y118{bottom:8.419252pt;}
.ydb{bottom:8.419254pt;}
.y11a{bottom:8.419259pt;}
.yde{bottom:8.419260pt;}
.y11c{bottom:8.419264pt;}
.ye0{bottom:8.419265pt;}
.y185{bottom:8.712779pt;}
.y17f{bottom:8.712796pt;}
.y181{bottom:8.712799pt;}
.ya1{bottom:9.284485pt;}
.y80{bottom:9.331537pt;}
.y8d{bottom:9.331541pt;}
.y82{bottom:10.120079pt;}
.y87{bottom:10.120089pt;}
.ya6{bottom:13.923806pt;}
.ya7{bottom:13.923808pt;}
.y168{bottom:15.434779pt;}
.y169{bottom:15.434796pt;}
.y16b{bottom:15.434805pt;}
.y54{bottom:16.049610pt;}
.yd2{bottom:16.198978pt;}
.yd5{bottom:16.198997pt;}
.y74{bottom:16.231959pt;}
.y76{bottom:16.231964pt;}
.y7b{bottom:16.266691pt;}
.y49{bottom:16.266696pt;}
.y6a{bottom:16.266697pt;}
.y4e{bottom:16.266750pt;}
.ya2{bottom:16.705331pt;}
.y177{bottom:18.685014pt;}
.y99{bottom:20.004038pt;}
.y96{bottom:20.004042pt;}
.y5a{bottom:20.004055pt;}
.y58{bottom:20.004065pt;}
.y55{bottom:20.004077pt;}
.y5c{bottom:20.004081pt;}
.yb1{bottom:20.913352pt;}
.yc2{bottom:20.913387pt;}
.yda{bottom:20.981232pt;}
.ydd{bottom:20.981238pt;}
.y173{bottom:21.280392pt;}
.y163{bottom:21.280395pt;}
.y165{bottom:21.280407pt;}
.y187{bottom:21.580691pt;}
.y83{bottom:25.234957pt;}
.y88{bottom:25.234966pt;}
.y7a{bottom:26.367027pt;}
.y6c{bottom:26.367094pt;}
.y4d{bottom:26.367095pt;}
.y4b{bottom:26.367098pt;}
.y53{bottom:26.429857pt;}
.y95{bottom:26.561359pt;}
.y73{bottom:26.665815pt;}
.y75{bottom:26.665830pt;}
.y140{bottom:27.648963pt;}
.y17b{bottom:28.670763pt;}
.y179{bottom:28.670774pt;}
.y159{bottom:30.171167pt;}
.y16a{bottom:30.171186pt;}
.y15b{bottom:30.171189pt;}
.y5b{bottom:30.384305pt;}
.y57{bottom:30.384313pt;}
.y184{bottom:30.394892pt;}
.y17e{bottom:30.394893pt;}
.y98{bottom:30.515814pt;}
.y11d{bottom:31.117907pt;}
.ye1{bottom:31.117908pt;}
.yd4{bottom:31.622192pt;}
.yd7{bottom:31.622210pt;}
.y117{bottom:31.690056pt;}
.yd9{bottom:31.690058pt;}
.y119{bottom:31.690063pt;}
.ydc{bottom:31.690064pt;}
.y11b{bottom:31.690070pt;}
.ydf{bottom:31.690071pt;}
.y161{bottom:31.780920pt;}
.y8e{bottom:32.923064pt;}
.y81{bottom:32.923067pt;}
.y8c{bottom:32.923075pt;}
.y90{bottom:32.923080pt;}
.y162{bottom:34.335139pt;}
.y15d{bottom:34.335143pt;}
.y171{bottom:34.335161pt;}
.y174{bottom:34.335162pt;}
.y15f{bottom:34.335165pt;}
.y164{bottom:34.335166pt;}
.y186{bottom:34.482234pt;}
.y180{bottom:34.482242pt;}
.y17c{bottom:35.756746pt;}
.yb2{bottom:36.337896pt;}
.yc3{bottom:36.337931pt;}
.y16c{bottom:39.236241pt;}
.y7f{bottom:39.986718pt;}
.y84{bottom:40.316470pt;}
.y89{bottom:40.316480pt;}
.yb3{bottom:51.761110pt;}
.yc4{bottom:51.761144pt;}
.y86{bottom:55.397983pt;}
.y8b{bottom:55.397993pt;}
.ye4{bottom:55.768948pt;}
.ye7{bottom:55.768967pt;}
.y8f{bottom:56.546916pt;}
.y11e{bottom:59.372269pt;}
.ye9{bottom:59.372270pt;}
.y120{bottom:59.372275pt;}
.yec{bottom:59.372277pt;}
.y122{bottom:59.372282pt;}
.yef{bottom:59.372283pt;}
.y124{bottom:59.372287pt;}
.yf1{bottom:59.372288pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.yb4{bottom:67.185654pt;}
.ye3{bottom:67.185666pt;}
.ye6{bottom:67.185685pt;}
.yc5{bottom:67.185689pt;}
.ye2{bottom:71.934646pt;}
.yeb{bottom:71.934654pt;}
.yee{bottom:71.934661pt;}
.y142{bottom:78.501265pt;}
.y141{bottom:78.602385pt;}
.y125{bottom:82.104595pt;}
.yf2{bottom:82.104596pt;}
.y121{bottom:82.509093pt;}
.yed{bottom:82.509094pt;}
.y123{bottom:82.509099pt;}
.yf0{bottom:82.509101pt;}
.yb5{bottom:82.576933pt;}
.ye5{bottom:82.576944pt;}
.ye8{bottom:82.576963pt;}
.yc6{bottom:82.576967pt;}
.y11f{bottom:82.643479pt;}
.yea{bottom:82.643480pt;}
.y1{bottom:90.346667pt;}
.yb6{bottom:98.000146pt;}
.yc7{bottom:98.000181pt;}
.y1a3{bottom:103.466667pt;}
.y192{bottom:105.866667pt;}
.yf5{bottom:106.722371pt;}
.yf8{bottom:106.722389pt;}
.y43{bottom:108.666667pt;}
.y126{bottom:110.325691pt;}
.yfa{bottom:110.325692pt;}
.y128{bottom:110.325698pt;}
.yfd{bottom:110.325699pt;}
.y12a{bottom:110.325705pt;}
.y100{bottom:110.325706pt;}
.y12c{bottom:110.325709pt;}
.y102{bottom:110.325710pt;}
.yb7{bottom:113.424691pt;}
.yc8{bottom:113.424725pt;}
.yf4{bottom:118.139088pt;}
.yf7{bottom:118.139107pt;}
.y1a2{bottom:119.066667pt;}
.y1cf{bottom:121.146667pt;}
.y191{bottom:121.466667pt;}
.yf3{bottom:122.921334pt;}
.yfc{bottom:122.921342pt;}
.yff{bottom:122.921349pt;}
.y42{bottom:124.266667pt;}
.y9f{bottom:124.906667pt;}
.yb8{bottom:128.849235pt;}
.yc9{bottom:128.849269pt;}
.y144{bottom:129.454687pt;}
.y143{bottom:129.555808pt;}
.y12d{bottom:133.058017pt;}
.y103{bottom:133.058018pt;}
.y129{bottom:133.461185pt;}
.yfe{bottom:133.461186pt;}
.y12b{bottom:133.461191pt;}
.y101{bottom:133.461192pt;}
.yf6{bottom:133.567624pt;}
.yf9{bottom:133.567643pt;}
.y127{bottom:133.594240pt;}
.yfb{bottom:133.594241pt;}
.y1ce{bottom:136.746667pt;}
.y190{bottom:137.146667pt;}
.y41{bottom:139.866667pt;}
.yb9{bottom:144.279101pt;}
.yca{bottom:144.279136pt;}
.y1fb{bottom:150.106667pt;}
.y1a1{bottom:150.666667pt;}
.y1cd{bottom:152.426667pt;}
.y18f{bottom:152.746667pt;}
.y40{bottom:155.546667pt;}
.y9e{bottom:156.506667pt;}
.yba{bottom:159.700984pt;}
.ycb{bottom:159.701019pt;}
.y12e{bottom:159.967111pt;}
.y105{bottom:159.967113pt;}
.y131{bottom:159.967123pt;}
.y108{bottom:159.967124pt;}
.y134{bottom:159.967134pt;}
.y10b{bottom:159.967135pt;}
.y1fa{bottom:165.786667pt;}
.y1a0{bottom:166.346667pt;}
.y18e{bottom:168.346667pt;}
.y146{bottom:168.483083pt;}
.y148{bottom:168.483094pt;}
.y14a{bottom:168.483106pt;}
.y9d{bottom:172.186667pt;}
.y104{bottom:172.528160pt;}
.y130{bottom:172.528168pt;}
.y154{bottom:172.528170pt;}
.y107{bottom:172.528171pt;}
.y133{bottom:172.528180pt;}
.y10a{bottom:172.528183pt;}
.y136{bottom:172.528191pt;}
.ybb{bottom:175.122867pt;}
.ycc{bottom:175.122902pt;}
.y1cc{bottom:176.026667pt;}
.y3f{bottom:179.146667pt;}
.y12f{bottom:182.667485pt;}
.y106{bottom:182.667487pt;}
.y132{bottom:182.667496pt;}
.y109{bottom:182.667499pt;}
.y135{bottom:182.667508pt;}
.y10c{bottom:182.667510pt;}
.y9c{bottom:187.786667pt;}
.y1f9{bottom:189.386667pt;}
.y145{bottom:189.866139pt;}
.y147{bottom:189.866150pt;}
.y149{bottom:189.866161pt;}
.ybc{bottom:190.544750pt;}
.ycd{bottom:190.544785pt;}
.y1cb{bottom:191.626667pt;}
.y18d{bottom:192.026667pt;}
.y23{bottom:194.666667pt;}
.y19f{bottom:194.986667pt;}
.y9b{bottom:203.466667pt;}
.y1f8{bottom:204.986667pt;}
.ybd{bottom:205.966633pt;}
.yce{bottom:205.966668pt;}
.y137{bottom:208.601271pt;}
.y10e{bottom:208.601272pt;}
.y13a{bottom:208.601280pt;}
.y111{bottom:208.601281pt;}
.y13d{bottom:208.601290pt;}
.y114{bottom:208.601291pt;}
.y22{bottom:210.266667pt;}
.y3e{bottom:210.826667pt;}
.y1ca{bottom:215.306667pt;}
.y14b{bottom:215.799923pt;}
.y14e{bottom:215.799932pt;}
.y151{bottom:215.799941pt;}
.y14d{bottom:217.449896pt;}
.y150{bottom:217.449905pt;}
.y153{bottom:217.449914pt;}
.y1f7{bottom:220.666667pt;}
.ybe{bottom:221.388516pt;}
.ycf{bottom:221.388551pt;}
.y10d{bottom:221.455055pt;}
.y139{bottom:221.455062pt;}
.y110{bottom:221.455064pt;}
.y13c{bottom:221.455072pt;}
.y113{bottom:221.455074pt;}
.y13f{bottom:221.455081pt;}
.y18c{bottom:223.626667pt;}
.y21{bottom:225.946667pt;}
.y3d{bottom:226.426667pt;}
.y1c9{bottom:230.906667pt;}
.y138{bottom:231.634298pt;}
.y10f{bottom:231.634300pt;}
.y13b{bottom:231.634307pt;}
.y112{bottom:231.634309pt;}
.y13e{bottom:231.634317pt;}
.y115{bottom:231.634319pt;}
.y9a{bottom:234.986667pt;}
.y93{bottom:234.999982pt;}
.yc0{bottom:236.823705pt;}
.yd1{bottom:236.823740pt;}
.y14c{bottom:238.832952pt;}
.y14f{bottom:238.832961pt;}
.y152{bottom:238.832970pt;}
.y18b{bottom:239.306667pt;}
.y3c{bottom:242.026667pt;}
.y1f6{bottom:244.266667pt;}
.y1c8{bottom:246.586667pt;}
.y18a{bottom:254.906667pt;}
.y20{bottom:257.546667pt;}
.y3b{bottom:257.706667pt;}
.y1f5{bottom:267.946667pt;}
.y1c7{bottom:270.186667pt;}
.y189{bottom:270.506667pt;}
.y1f{bottom:273.226667pt;}
.y3a{bottom:273.306667pt;}
.y1f4{bottom:283.546667pt;}
.y1c6{bottom:285.786667pt;}
.y1e{bottom:288.826667pt;}
.y39{bottom:288.986667pt;}
.y92{bottom:300.426667pt;}
.y188{bottom:302.186667pt;}
.y182{bottom:302.200000pt;}
.y1f3{bottom:307.146667pt;}
.y1c5{bottom:309.466667pt;}
.y1d{bottom:320.426667pt;}
.y38{bottom:320.586667pt;}
.y1f2{bottom:322.826667pt;}
.y1c4{bottom:325.066667pt;}
.y91{bottom:332.026667pt;}
.y7e{bottom:332.066630pt;}
.y1c{bottom:336.106667pt;}
.y37{bottom:336.186667pt;}
.y1f1{bottom:346.426667pt;}
.y1c3{bottom:348.746667pt;}
.y1b{bottom:351.706667pt;}
.y36{bottom:351.866667pt;}
.y176{bottom:352.599964pt;}
.y1f0{bottom:362.106667pt;}
.y1c2{bottom:364.346667pt;}
.y1a{bottom:367.386667pt;}
.y35{bottom:367.466667pt;}
.y1c1{bottom:379.946667pt;}
.y19{bottom:382.986667pt;}
.y34{bottom:383.146667pt;}
.y1ef{bottom:385.706667pt;}
.y18{bottom:398.586667pt;}
.y33{bottom:398.746667pt;}
.y1ee{bottom:401.306667pt;}
.y1c0{bottom:403.626667pt;}
.y17{bottom:414.266667pt;}
.y32{bottom:414.346667pt;}
.y1bf{bottom:419.253333pt;}
.y7d{bottom:424.693333pt;}
.y1ed{bottom:425.013333pt;}
.y167{bottom:429.799964pt;}
.y175{bottom:429.813333pt;}
.y16{bottom:429.893333pt;}
.y31{bottom:430.053333pt;}
.y19e{bottom:439.973333pt;}
.y1ec{bottom:440.613333pt;}
.y1be{bottom:442.933333pt;}
.y30{bottom:445.653333pt;}
.y15{bottom:453.813333pt;}
.y19d{bottom:455.653333pt;}
.y78{bottom:456.200000pt;}
.y7c{bottom:456.213333pt;}
.y1bd{bottom:458.533333pt;}
.y2f{bottom:461.253333pt;}
.y1eb{bottom:464.293333pt;}
.y2e{bottom:476.933333pt;}
.y1ea{bottom:479.893333pt;}
.y1bc{bottom:482.133333pt;}
.y19c{bottom:487.253333pt;}
.y2d{bottom:492.533333pt;}
.y14{bottom:497.013333pt;}
.y1bb{bottom:497.813333pt;}
.y157{bottom:499.133297pt;}
.y166{bottom:499.173333pt;}
.y1e9{bottom:503.493333pt;}
.y2c{bottom:508.213333pt;}
.y1ba{bottom:513.413333pt;}
.y71{bottom:516.733297pt;}
.y77{bottom:516.773333pt;}
.y1e8{bottom:519.173333pt;}
.y19b{bottom:523.573333pt;}
.y2b{bottom:523.813333pt;}
.y13{bottom:529.893333pt;}
.y1b9{bottom:537.093333pt;}
.y2a{bottom:539.413333pt;}
.y1e7{bottom:542.773333pt;}
.y12{bottom:545.573333pt;}
.y1b8{bottom:552.693333pt;}
.y1e6{bottom:558.453333pt;}
.y11{bottom:561.173333pt;}
.y29{bottom:563.093333pt;}
.y156{bottom:568.533333pt;}
.y1b7{bottom:576.293333pt;}
.y10{bottom:576.853333pt;}
.y70{bottom:578.213333pt;}
.y1e5{bottom:582.053333pt;}
.y1b6{bottom:591.973333pt;}
.yf{bottom:592.453333pt;}
.y6f{bottom:593.813333pt;}
.y28{bottom:595.013333pt;}
.yad{bottom:597.133297pt;}
.y1e4{bottom:597.653333pt;}
.yaf{bottom:603.799964pt;}
.y155{bottom:603.813333pt;}
.ye{bottom:608.053333pt;}
.y6e{bottom:609.413333pt;}
.y1b5{bottom:615.573333pt;}
.y1e3{bottom:621.333333pt;}
.yd{bottom:623.733333pt;}
.y1b4{bottom:631.253333pt;}
.y1e2{bottom:636.933333pt;}
.y27{bottom:637.893333pt;}
.yc{bottom:639.333333pt;}
.y69{bottom:640.999928pt;}
.y6d{bottom:641.013333pt;}
.y1b3{bottom:654.853333pt;}
.yb{bottom:655.013333pt;}
.y1e1{bottom:660.613333pt;}
.y1b2{bottom:670.453333pt;}
.y26{bottom:674.213333pt;}
.y1e0{bottom:676.213333pt;}
.ya{bottom:678.933333pt;}
.y1df{bottom:691.813333pt;}
.y1b1{bottom:694.373333pt;}
.y68{bottom:701.653333pt;}
.y19a{bottom:702.533333pt;}
.y1de{bottom:715.493333pt;}
.y67{bottom:717.253333pt;}
.y9{bottom:721.813333pt;}
.y1dd{bottom:731.093333pt;}
.y1b0{bottom:737.333333pt;}
.y199{bottom:738.853333pt;}
.y66{bottom:740.853333pt;}
.y1af{bottom:752.933333pt;}
.y8{bottom:753.653333pt;}
.y1dc{bottom:754.693333pt;}
.y1db{bottom:770.373333pt;}
.y5e{bottom:772.453333pt;}
.y5f{bottom:772.466667pt;}
.y1ae{bottom:776.853333pt;}
.y7{bottom:785.653333pt;}
.y1da{bottom:785.973333pt;}
.y1d9{bottom:809.653333pt;}
.y1ad{bottom:810.053333pt;}
.y51{bottom:815.399928pt;}
.y5d{bottom:815.413333pt;}
.y6{bottom:821.013333pt;}
.y1d8{bottom:825.253333pt;}
.y5{bottom:837.013333pt;}
.y1d7{bottom:848.853333pt;}
.y1ac{bottom:852.933333pt;}
.y1d6{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y1ab{bottom:868.613333pt;}
.y1ff{bottom:872.533333pt;}
.yac{bottom:877.173333pt;}
.y1d5{bottom:880.133333pt;}
.y50{bottom:880.853333pt;}
.y1aa{bottom:884.213333pt;}
.y1fe{bottom:888.133333pt;}
.y3{bottom:899.760000pt;}
.y1a9{bottom:899.840000pt;}
.y1d4{bottom:903.840000pt;}
.yab{bottom:908.880000pt;}
.y48{bottom:912.333261pt;}
.y4f{bottom:912.400000pt;}
.y1a8{bottom:915.520000pt;}
.y198{bottom:915.840000pt;}
.y1d3{bottom:919.440000pt;}
.yaa{bottom:924.480000pt;}
.y1fd{bottom:927.440000pt;}
.y1a7{bottom:931.120000pt;}
.y197{bottom:931.520000pt;}
.y1d2{bottom:943.040000pt;}
.y196{bottom:947.120000pt;}
.y1a6{bottom:955.040000pt;}
.ya4{bottom:956.066594pt;}
.ya9{bottom:956.080000pt;}
.y1d1{bottom:958.720000pt;}
.y195{bottom:962.800000pt;}
.y47{bottom:973.040000pt;}
.y1d0{bottom:974.320000pt;}
.y194{bottom:978.400000pt;}
.y1fc{bottom:982.320000pt;}
.y1a5{bottom:998.000000pt;}
.ya0{bottom:999.000000pt;}
.ya3{bottom:999.040000pt;}
.y193{bottom:1002.320000pt;}
.y44{bottom:1004.599928pt;}
.y46{bottom:1004.640000pt;}
.y1a4{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.h3a{height:21.600026pt;}
.hc{height:21.600062pt;}
.h1c{height:22.399915pt;}
.h19{height:24.000315pt;}
.h35{height:24.000388pt;}
.h30{height:27.198960pt;}
.h6{height:31.806563pt;}
.h2{height:32.011875pt;}
.h3{height:33.867188pt;}
.h34{height:34.987437pt;}
.h29{height:35.347426pt;}
.h2e{height:35.452609pt;}
.h38{height:35.455459pt;}
.h1f{height:35.469011pt;}
.h14{height:35.470256pt;}
.h37{height:35.473107pt;}
.h1d{height:35.591406pt;}
.h1a{height:35.598545pt;}
.h3e{height:36.117859pt;}
.h4b{height:36.951889pt;}
.h33{height:37.053116pt;}
.h32{height:37.071560pt;}
.h41{height:37.249656pt;}
.h46{height:37.268198pt;}
.h25{height:41.599846pt;}
.he{height:41.599918pt;}
.h21{height:42.400421pt;}
.h47{height:44.300972pt;}
.h7{height:45.246562pt;}
.h2d{height:46.401334pt;}
.h49{height:46.401352pt;}
.h13{height:46.401388pt;}
.h5{height:49.581562pt;}
.h4f{height:50.399963pt;}
.h4a{height:50.399999pt;}
.h40{height:50.400556pt;}
.h8{height:54.187500pt;}
.h9{height:54.927899pt;}
.hb{height:55.631875pt;}
.h2b{height:57.099933pt;}
.h17{height:57.506240pt;}
.h10{height:58.044210pt;}
.h3c{height:58.401374pt;}
.h45{height:60.312563pt;}
.h24{height:60.327503pt;}
.h22{height:60.357532pt;}
.h2a{height:60.471147pt;}
.h2c{height:60.501247pt;}
.h1b{height:60.536724pt;}
.h2f{height:60.592764pt;}
.h20{height:60.609646pt;}
.h16{height:60.758091pt;}
.h39{height:60.772094pt;}
.h1e{height:60.797064pt;}
.h18{height:60.901442pt;}
.h36{height:60.918270pt;}
.h15{height:60.931756pt;}
.ha{height:60.961875pt;}
.h23{height:61.220510pt;}
.h12{height:61.275223pt;}
.h11{height:61.471175pt;}
.hf{height:61.501773pt;}
.h3d{height:61.849426pt;}
.h3f{height:61.880212pt;}
.h4{height:63.128437pt;}
.hd{height:63.138942pt;}
.h4c{height:63.216953pt;}
.h4d{height:63.248420pt;}
.h31{height:63.588625pt;}
.h42{height:63.873453pt;}
.h43{height:63.905246pt;}
.h50{height:70.148656pt;}
.h48{height:70.529576pt;}
.h28{height:73.600469pt;}
.h4e{height:76.042033pt;}
.h44{height:76.968452pt;}
.h27{height:98.445555pt;}
.h26{height:101.872519pt;}
.h3b{height:254.334696pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:19.199394pt;}
.w7{width:19.199412pt;}
.w8{width:20.000437pt;}
.wd{width:50.400010pt;}
.w10{width:75.999321pt;}
.wa{width:81.600453pt;}
.w5{width:138.407069pt;}
.w9{width:150.400681pt;}
.w3{width:169.669774pt;}
.wb{width:196.000972pt;}
.w4{width:202.467574pt;}
.wc{width:231.124392pt;}
.w11{width:248.809319pt;}
.w14{width:252.657703pt;}
.wf{width:288.726057pt;}
.w12{width:372.002953pt;}
.w13{width:433.746595pt;}
.we{width:450.141690pt;}
.w15{width:480.854272pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.736837pt;}
.xc{left:3.511342pt;}
.xb{left:4.505177pt;}
.x91{left:6.685807pt;}
.x6e{left:9.153060pt;}
.x51{left:10.235682pt;}
.xe{left:11.295924pt;}
.xd{left:12.289625pt;}
.x21{left:13.187359pt;}
.x28{left:14.744710pt;}
.x93{left:16.297186pt;}
.x64{left:17.978622pt;}
.x43{left:18.898006pt;}
.x3f{left:19.818863pt;}
.x92{left:21.729150pt;}
.x83{left:25.357444pt;}
.x3b{left:26.678625pt;}
.x29{left:27.625374pt;}
.x19{left:30.704287pt;}
.x5e{left:31.789876pt;}
.xf{left:36.471439pt;}
.x14{left:38.264784pt;}
.x26{left:40.375452pt;}
.x50{left:43.994056pt;}
.x63{left:45.601154pt;}
.x2e{left:46.860849pt;}
.x77{left:48.160058pt;}
.x62{left:51.735672pt;}
.x74{left:53.310988pt;}
.x59{left:55.213299pt;}
.x6a{left:58.757126pt;}
.x1{left:60.480000pt;}
.x27{left:61.428555pt;}
.x69{left:62.956239pt;}
.x47{left:64.579269pt;}
.x13{left:69.267485pt;}
.x6d{left:71.911781pt;}
.x2d{left:74.556116pt;}
.x80{left:76.303539pt;}
.x18{left:79.304626pt;}
.x76{left:81.361107pt;}
.x4f{left:83.001316pt;}
.x2f{left:84.039905pt;}
.x44{left:88.423686pt;}
.x4e{left:89.495909pt;}
.x61{left:90.742932pt;}
.x38{left:93.533051pt;}
.x7e{left:95.008657pt;}
.x5d{left:96.189057pt;}
.x60{left:97.205754pt;}
.xa0{left:98.879988pt;}
.x70{left:100.454368pt;}
.x16{left:102.844079pt;}
.x17{left:104.362848pt;}
.x75{left:105.670152pt;}
.x96{left:107.236559pt;}
.x6c{left:111.116289pt;}
.x12{left:112.320347pt;}
.x8d{left:114.390005pt;}
.x4d{left:115.839643pt;}
.x15{left:116.975223pt;}
.x58{left:122.204490pt;}
.x5c{left:124.206082pt;}
.x37{left:126.580097pt;}
.x11{left:127.474656pt;}
.x4c{left:129.159777pt;}
.x9f{left:130.639988pt;}
.x73{left:131.816644pt;}
.x54{left:134.829631pt;}
.x4b{left:135.888683pt;}
.x3d{left:136.839991pt;}
.x24{left:138.039708pt;}
.x82{left:141.537599pt;}
.x65{left:142.573895pt;}
.x5f{left:143.632947pt;}
.x6f{left:146.055510pt;}
.x36{left:147.122717pt;}
.x2b{left:150.037086pt;}
.x7{left:151.180031pt;}
.x57{left:153.177575pt;}
.x85{left:156.306649pt;}
.x53{left:157.704995pt;}
.x4a{left:158.949380pt;}
.x5b{left:160.484981pt;}
.x5{left:162.506655pt;}
.x78{left:165.383065pt;}
.x52{left:167.448205pt;}
.x2{left:170.186655pt;}
.x68{left:173.643613pt;}
.x6b{left:175.060081pt;}
.x34{left:176.640409pt;}
.x72{left:182.049780pt;}
.x2c{left:185.994946pt;}
.x5a{left:188.112807pt;}
.xa{left:189.087358pt;}
.x8a{left:191.869112pt;}
.x41{left:197.306649pt;}
.x95{left:198.414873pt;}
.x33{left:199.437447pt;}
.x46{left:202.306649pt;}
.x8e{left:203.551452pt;}
.x35{left:207.182848pt;}
.x71{left:208.883322pt;}
.x56{left:211.173509pt;}
.x67{left:214.324165pt;}
.x66{left:218.917773pt;}
.x32{left:221.755374pt;}
.x99{left:227.701694pt;}
.x55{left:230.236311pt;}
.x49{left:239.714773pt;}
.x94{left:242.286370pt;}
.x90{left:245.506649pt;}
.x9{left:246.706649pt;}
.x2a{left:248.173315pt;}
.x31{left:250.439982pt;}
.x7c{left:258.544314pt;}
.x7a{left:266.942753pt;}
.x6{left:270.706649pt;}
.x42{left:271.964902pt;}
.x23{left:274.440000pt;}
.x48{left:278.306649pt;}
.x1b{left:290.573315pt;}
.x3a{left:296.173315pt;}
.x1d{left:309.786655pt;}
.x8b{left:315.370005pt;}
.x7d{left:321.319966pt;}
.x88{left:323.733497pt;}
.x86{left:324.715872pt;}
.x3c{left:346.586655pt;}
.x81{left:352.960283pt;}
.x1e{left:355.173297pt;}
.x7b{left:356.122985pt;}
.x7f{left:362.514832pt;}
.x1f{left:374.346655pt;}
.x8c{left:382.623084pt;}
.x1a{left:409.066655pt;}
.x87{left:414.165394pt;}
.x89{left:417.324935pt;}
.x25{left:424.826655pt;}
.x20{left:426.439964pt;}
.x3e{left:437.781424pt;}
.x98{left:438.941411pt;}
.x8{left:440.346655pt;}
.x30{left:444.186655pt;}
.x22{left:446.426655pt;}
.x10{left:449.146655pt;}
.x97{left:464.711435pt;}
.x9a{left:471.067508pt;}
.x39{left:481.573322pt;}
.x45{left:486.053322pt;}
.x84{left:525.493322pt;}
.x79{left:527.093322pt;}
.x40{left:587.013322pt;}
.x8f{left:590.053322pt;}
.x9c{left:593.013322pt;}
.x9d{left:595.013322pt;}
.x9e{left:605.013322pt;}
.x4{left:612.053322pt;}
.x9b{left:615.013322pt;}
.x3{left:711.413322pt;}
}




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