
    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_b7edb36438851378475147b9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c528e89a95e85a156e9e779b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_817602b379c5225998d3b1ad.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_440c7ebd6ea9c25b73b5a3b5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4167a82372f4869490d17480.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2ffa2c32bedfed92692f2abf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_00c3fad42d42080dae221e7f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_efbccc92127ddf79acf941f5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_90e1aa184f96a287532b21c1.woff')format("woff");}.ff9{font-family:ff9;line-height:3.684570;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_4120185be1bdba93240e2e0e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d14381c23ba998463e822ba7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_79b47e888e9b05efd3968740.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_eab54e387513d12014eedc81.woff')format("woff");}.ffd{font-family:ffd;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;}
.m18{transform:matrix(0.221416,0.000000,-0.073798,0.238860,0,0);-ms-transform:matrix(0.221416,0.000000,-0.073798,0.238860,0,0);-webkit-transform:matrix(0.221416,0.000000,-0.073798,0.238860,0,0);}
.m7{transform:matrix(0.224405,0.000000,-0.074794,0.238549,0,0);-ms-transform:matrix(0.224405,0.000000,-0.074794,0.238549,0,0);-webkit-transform:matrix(0.224405,0.000000,-0.074794,0.238549,0,0);}
.m13{transform:matrix(0.225453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225453,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.231742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231742,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.232162,0.000000,-0.077379,0.237724,0,0);-ms-transform:matrix(0.232162,0.000000,-0.077379,0.237724,0,0);-webkit-transform:matrix(0.232162,0.000000,-0.077379,0.237724,0,0);}
.m3{transform:matrix(0.232165,0.000000,-0.077380,0.237723,0,0);-ms-transform:matrix(0.232165,0.000000,-0.077380,0.237723,0,0);-webkit-transform:matrix(0.232165,0.000000,-0.077380,0.237723,0,0);}
.m17{transform:matrix(0.233261,0.000000,-0.077746,0.237604,0,0);-ms-transform:matrix(0.233261,0.000000,-0.077746,0.237604,0,0);-webkit-transform:matrix(0.233261,0.000000,-0.077746,0.237604,0,0);}
.m6{transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.237726,0.000000,-0.079234,0.237112,0,0);-ms-transform:matrix(0.237726,0.000000,-0.079234,0.237112,0,0);-webkit-transform:matrix(0.237726,0.000000,-0.079234,0.237112,0,0);}
.m10{transform:matrix(0.237726,0.000000,-0.079234,0.237112,0,0);-ms-transform:matrix(0.237726,0.000000,-0.079234,0.237112,0,0);-webkit-transform:matrix(0.237726,0.000000,-0.079234,0.237112,0,0);}
.m5{transform:matrix(0.237734,0.000000,-0.079237,0.237111,0,0);-ms-transform:matrix(0.237734,0.000000,-0.079237,0.237111,0,0);-webkit-transform:matrix(0.237734,0.000000,-0.079237,0.237111,0,0);}
.ma{transform:matrix(0.237734,0.000000,-0.079236,0.237111,0,0);-ms-transform:matrix(0.237734,0.000000,-0.079236,0.237111,0,0);-webkit-transform:matrix(0.237734,0.000000,-0.079236,0.237111,0,0);}
.m14{transform:matrix(0.237838,0.000000,-0.079271,0.237099,0,0);-ms-transform:matrix(0.237838,0.000000,-0.079271,0.237099,0,0);-webkit-transform:matrix(0.237838,0.000000,-0.079271,0.237099,0,0);}
.m8{transform:matrix(0.244151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244151,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244151,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.244383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244383,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245430,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);}
.md{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250779,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);}
.v11{vertical-align:-30.960000px;}
.v25{vertical-align:-27.362609px;}
.v21{vertical-align:-22.507468px;}
.v6{vertical-align:-17.280000px;}
.v23{vertical-align:-15.539935px;}
.vf{vertical-align:-13.680000px;}
.vc{vertical-align:-12.240000px;}
.vb{vertical-align:-5.040000px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v1a{vertical-align:12.240000px;}
.v22{vertical-align:13.792597px;}
.v24{vertical-align:15.212133px;}
.v7{vertical-align:17.280000px;}
.v1f{vertical-align:18.895154px;}
.v20{vertical-align:20.462999px;}
.v19{vertical-align:30.960000px;}
.vd{vertical-align:38.160000px;}
.v9{vertical-align:42.480000px;}
.v13{vertical-align:43.920000px;}
.v1c{vertical-align:45.360000px;}
.v10{vertical-align:48.240000px;}
.v8{vertical-align:49.680000px;}
.v1{vertical-align:53.280000px;}
.v2{vertical-align:56.160000px;}
.v4{vertical-align:59.040000px;}
.v12{vertical-align:62.100000px;}
.v18{vertical-align:64.080000px;}
.v14{vertical-align:66.960000px;}
.v1b{vertical-align:73.440000px;}
.v15{vertical-align:76.320000px;}
.v16{vertical-align:86.400000px;}
.va{vertical-align:92.160000px;}
.v1d{vertical-align:94.500000px;}
.v5{vertical-align:119.520000px;}
.v1e{vertical-align:121.140000px;}
.v17{vertical-align:136.080000px;}
.ls62{letter-spacing:-2.511743px;}
.ls63{letter-spacing:-2.281295px;}
.ls61{letter-spacing:-2.281209px;}
.ls60{letter-spacing:-2.205880px;}
.ls56{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.684000px;}
.ls36{letter-spacing:-0.618000px;}
.ls6{letter-spacing:-0.378600px;}
.ls77{letter-spacing:-0.369600px;}
.ls4{letter-spacing:-0.360000px;}
.ls5e{letter-spacing:-0.341400px;}
.ls38{letter-spacing:-0.200400px;}
.ls8{letter-spacing:-0.180000px;}
.ls54{letter-spacing:-0.150600px;}
.ls39{letter-spacing:-0.096000px;}
.ls1e{letter-spacing:-0.083400px;}
.ls57{letter-spacing:-0.038880px;}
.ls79{letter-spacing:-0.037440px;}
.ls1d{letter-spacing:-0.026640px;}
.ls73{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.008640px;}
.ls52{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.028080px;}
.ls78{letter-spacing:0.037440px;}
.ls55{letter-spacing:0.100800px;}
.ls53{letter-spacing:0.130800px;}
.ls41{letter-spacing:0.131040px;}
.lsc{letter-spacing:0.138960px;}
.ls6f{letter-spacing:0.163200px;}
.ls24{letter-spacing:0.187200px;}
.ls71{letter-spacing:0.208080px;}
.ls10{letter-spacing:0.223200px;}
.ls49{letter-spacing:0.252720px;}
.ls67{letter-spacing:0.253200px;}
.ls33{letter-spacing:0.277200px;}
.lsd{letter-spacing:0.296400px;}
.ls72{letter-spacing:0.299400px;}
.ls3a{letter-spacing:0.301200px;}
.ls18{letter-spacing:0.320400px;}
.ls5{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.369360px;}
.ls66{letter-spacing:0.378600px;}
.lsb{letter-spacing:0.378720px;}
.ls3d{letter-spacing:0.440400px;}
.ls4a{letter-spacing:0.462240px;}
.ls70{letter-spacing:0.485280px;}
.ls0{letter-spacing:0.504000px;}
.ls74{letter-spacing:0.513360px;}
.lsa{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.728640px;}
.ls21{letter-spacing:0.820080px;}
.ls46{letter-spacing:1.065600px;}
.ls6e{letter-spacing:1.313280px;}
.lse{letter-spacing:1.401120px;}
.ls2b{letter-spacing:1.517040px;}
.ls26{letter-spacing:1.717200px;}
.ls2f{letter-spacing:1.771200px;}
.ls14{letter-spacing:2.016000px;}
.ls15{letter-spacing:2.160000px;}
.ls44{letter-spacing:2.257200px;}
.ls19{letter-spacing:2.704320px;}
.ls59{letter-spacing:2.838960px;}
.ls3f{letter-spacing:2.884320px;}
.ls47{letter-spacing:2.977200px;}
.ls2d{letter-spacing:3.558960px;}
.ls9{letter-spacing:4.140000px;}
.ls2e{letter-spacing:5.016960px;}
.ls32{letter-spacing:6.279120px;}
.ls3e{letter-spacing:13.995360px;}
.ls16{letter-spacing:15.086880px;}
.ls1f{letter-spacing:15.266880px;}
.ls31{letter-spacing:15.395040px;}
.ls3b{letter-spacing:15.806880px;}
.ls35{letter-spacing:16.115040px;}
.ls1a{letter-spacing:17.600400px;}
.ls20{letter-spacing:18.432720px;}
.ls1b{letter-spacing:19.152720px;}
.ls4f{letter-spacing:20.435040px;}
.ls4d{letter-spacing:21.155040px;}
.ls25{letter-spacing:21.920400px;}
.ls58{letter-spacing:22.254960px;}
.ls28{letter-spacing:22.278960px;}
.ls27{letter-spacing:22.640400px;}
.ls23{letter-spacing:22.752720px;}
.ls11{letter-spacing:22.808160px;}
.lsf{letter-spacing:23.360400px;}
.ls17{letter-spacing:23.472720px;}
.ls3c{letter-spacing:23.592720px;}
.ls4c{letter-spacing:25.632720px;}
.ls34{letter-spacing:25.752720px;}
.ls30{letter-spacing:26.472720px;}
.ls64{letter-spacing:26.598960px;}
.ls5f{letter-spacing:27.180000px;}
.ls65{letter-spacing:27.318960px;}
.ls42{letter-spacing:27.438960px;}
.ls50{letter-spacing:27.871920px;}
.ls12{letter-spacing:28.041840px;}
.ls4b{letter-spacing:28.221840px;}
.ls13{letter-spacing:28.411920px;}
.ls4e{letter-spacing:28.591920px;}
.ls7a{letter-spacing:28.620000px;}
.ls2c{letter-spacing:29.069280px;}
.ls29{letter-spacing:63.075360px;}
.ls5a{letter-spacing:73.793601px;}
.ls76{letter-spacing:83.861280px;}
.ls2a{letter-spacing:84.337200px;}
.ls5b{letter-spacing:90.733368px;}
.ls5d{letter-spacing:90.736771px;}
.ls5c{letter-spacing:92.497429px;}
.ls48{letter-spacing:94.740960px;}
.ls51{letter-spacing:95.460960px;}
.ls45{letter-spacing:97.620960px;}
.ls43{letter-spacing:99.929520px;}
.ls40{letter-spacing:101.820960px;}
.ls1c{letter-spacing:133.541280px;}
.ls68{letter-spacing:416.026433px;}
.ls6c{letter-spacing:708.909276px;}
.ls6d{letter-spacing:726.014070px;}
.ls69{letter-spacing:738.453593px;}
.ls6a{letter-spacing:755.932143px;}
.ls6b{letter-spacing:2447.241765px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws2d{word-spacing:-34.952265px;}
.ws28{word-spacing:-34.114346px;}
.ws30{word-spacing:-33.394731px;}
.ws1{word-spacing:-24.300000px;}
.ws20{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.ws35{word-spacing:-21.097440px;}
.ws16{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws33{word-spacing:-21.041280px;}
.ws36{word-spacing:-21.022560px;}
.ws2a{word-spacing:-20.943721px;}
.ws1b{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws34{word-spacing:-20.690400px;}
.ws6{word-spacing:-20.681400px;}
.ws2e{word-spacing:-20.394152px;}
.ws7{word-spacing:-20.376000px;}
.ws29{word-spacing:-19.905238px;}
.wsc{word-spacing:-18.853200px;}
.ws32{word-spacing:-18.832200px;}
.ws19{word-spacing:-18.810000px;}
.ws21{word-spacing:-18.786000px;}
.ws17{word-spacing:-18.663600px;}
.ws14{word-spacing:-18.633600px;}
.wsf{word-spacing:-18.541440px;}
.ws9{word-spacing:-18.532800px;}
.ws18{word-spacing:-18.493920px;}
.wsb{word-spacing:-18.449400px;}
.ws13{word-spacing:-18.382200px;}
.wse{word-spacing:-17.914800px;}
.ws1a{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.448400px;}
.wsd{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.120560px;}
.ws11{word-spacing:-13.051200px;}
.ws10{word-spacing:-12.946800px;}
.ws15{word-spacing:-10.612800px;}
.ws23{word-spacing:-0.090341px;}
.ws22{word-spacing:-0.085321px;}
.ws26{word-spacing:-0.062139px;}
.ws2f{word-spacing:-0.060828px;}
.ws2c{word-spacing:-0.036257px;}
.ws8{word-spacing:0.000000px;}
.ws1c{word-spacing:2.130038px;}
.ws1d{word-spacing:2.205219px;}
.ws1f{word-spacing:2.205302px;}
.ws1e{word-spacing:2.430590px;}
.ws24{word-spacing:212.021574px;}
.ws2b{word-spacing:282.328264px;}
.ws31{word-spacing:851.222643px;}
.ws27{word-spacing:1586.814336px;}
.ws25{word-spacing:2078.490842px;}
._48{margin-left:-1016.721380px;}
._46{margin-left:-985.092193px;}
._4f{margin-left:-969.684812px;}
._5f{margin-left:-946.347366px;}
._4e{margin-left:-525.634181px;}
._63{margin-left:-429.307238px;}
._35{margin-left:-409.799707px;}
._53{margin-left:-350.637791px;}
._4b{margin-left:-323.396498px;}
._49{margin-left:-314.659808px;}
._62{margin-left:-312.526235px;}
._60{margin-left:-303.973838px;}
._34{margin-left:-293.351094px;}
._55{margin-left:-287.558946px;}
._4c{margin-left:-260.433188px;}
._54{margin-left:-218.278418px;}
._45{margin-left:-210.641911px;}
._38{margin-left:-204.572954px;}
._3a{margin-left:-203.115123px;}
._3c{margin-left:-199.993663px;}
._51{margin-left:-198.577542px;}
._40{margin-left:-196.027445px;}
._5d{margin-left:-193.871093px;}
._3b{margin-left:-192.376025px;}
._44{margin-left:-190.159912px;}
._52{margin-left:-185.484076px;}
._43{margin-left:-183.186164px;}
._3d{margin-left:-179.432903px;}
._56{margin-left:-177.216692px;}
._3f{margin-left:-174.397778px;}
._58{margin-left:-168.188701px;}
._4d{margin-left:-165.827136px;}
._5b{margin-left:-156.835928px;}
._37{margin-left:-149.316155px;}
._42{margin-left:-144.930834px;}
._32{margin-left:-139.143837px;}
._5a{margin-left:-137.369709px;}
._31{margin-left:-132.982557px;}
._33{margin-left:-126.575727px;}
._36{margin-left:-124.905527px;}
._30{margin-left:-122.957388px;}
._4a{margin-left:-112.956616px;}
._61{margin-left:-106.171173px;}
._5c{margin-left:-101.490128px;}
._41{margin-left:-88.685160px;}
._5e{margin-left:-83.499731px;}
._59{margin-left:-81.411476px;}
._47{margin-left:-55.204689px;}
._39{margin-left:-46.884111px;}
._50{margin-left:-45.710587px;}
._3e{margin-left:-38.539660px;}
._57{margin-left:-35.550643px;}
._2b{margin-left:-16.256640px;}
._2d{margin-left:-11.242800px;}
._2a{margin-left:-9.727440px;}
._29{margin-left:-8.586720px;}
._16{margin-left:-6.173520px;}
._7{margin-left:-4.464720px;}
._15{margin-left:-3.442320px;}
._3{margin-left:-2.232960px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._6{width:2.223840px;}
._a{width:3.255360px;}
._2{width:4.633200px;}
._5{width:5.919360px;}
._11{width:7.497360px;}
._e{width:8.929440px;}
._14{width:11.014800px;}
._13{width:12.278400px;}
._12{width:13.309920px;}
._19{width:14.740080px;}
._8{width:16.655520px;}
._9{width:18.097440px;}
._f{width:20.050560px;}
._26{width:21.588480px;}
._1e{width:22.892640px;}
._4{width:24.661680px;}
._10{width:26.050800px;}
._23{width:27.548400px;}
._1b{width:28.916880px;}
._1a{width:30.073680px;}
._20{width:31.863360px;}
._b{width:33.155760px;}
._18{width:34.285680px;}
._17{width:35.380800px;}
._25{width:36.774480px;}
._21{width:37.992240px;}
._22{width:39.319440px;}
._24{width:40.751520px;}
._28{width:41.803680px;}
._27{width:43.229040px;}
._c{width:44.251920px;}
._d{width:46.323600px;}
._1d{width:47.508240px;}
._1c{width:48.956640px;}
._2c{width:50.974080px;}
._2f{width:61.878960px;}
._2e{width:85.232160px;}
._1f{width:88.786800px;}
.fc4{color:rgb(29,27,17);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs27{font-size:35.492446px;}
.fs20{font-size:36.257264px;}
.fs25{font-size:37.147818px;}
.fs23{font-size:38.148855px;}
.fs6{font-size:44.228838px;}
.fs9{font-size:44.379260px;}
.fs13{font-size:44.380924px;}
.fsc{font-size:47.300465px;}
.fs5{font-size:48.240000px;}
.fs1b{font-size:49.756869px;}
.fs1f{font-size:52.684363px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs26{font-size:60.828289px;}
.fs21{font-size:62.139063px;}
.fs24{font-size:63.665327px;}
.fs22{font-size:65.380942px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:75.842053px;}
.fsa{font-size:75.990032px;}
.fs14{font-size:75.992882px;}
.fsf{font-size:79.758619px;}
.fs17{font-size:79.758641px;}
.fs8{font-size:79.758781px;}
.fs12{font-size:79.758804px;}
.fs10{font-size:80.120728px;}
.fsb{font-size:80.120753px;}
.fs18{font-size:80.123451px;}
.fs15{font-size:80.123477px;}
.fsd{font-size:81.152726px;}
.fs2{font-size:84.240000px;}
.fse{font-size:85.048079px;}
.fs11{font-size:85.048095px;}
.fs16{font-size:85.048107px;}
.fs19{font-size:85.048122px;}
.fs1a{font-size:85.321325px;}
.fs1e{font-size:90.341289px;}
.fs1d{font-size:95.256773px;}
.fs3{font-size:95.760000px;}
.fs1c{font-size:98.652179px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:3.420000px;}
.yae{bottom:3.428476px;}
.yc2{bottom:3.428557px;}
.ybe{bottom:3.466736px;}
.yaa{bottom:3.466784px;}
.y35{bottom:3.600000px;}
.yde{bottom:3.900044px;}
.yc5{bottom:5.278176px;}
.yb2{bottom:5.278240px;}
.yf8{bottom:5.640725px;}
.yfb{bottom:5.640754px;}
.yff{bottom:5.640758px;}
.y102{bottom:5.640788px;}
.y125{bottom:6.349908px;}
.y128{bottom:6.349933px;}
.y12c{bottom:6.349937px;}
.y12f{bottom:6.349962px;}
.y3a{bottom:8.100000px;}
.yaf{bottom:8.190281px;}
.ybf{bottom:8.190528px;}
.yab{bottom:8.190588px;}
.yca{bottom:8.280000px;}
.ydd{bottom:9.214226px;}
.ydf{bottom:9.214254px;}
.yea{bottom:9.756352px;}
.yeb{bottom:9.756364px;}
.y106{bottom:10.059225px;}
.y109{bottom:10.059258px;}
.yc6{bottom:10.393925px;}
.yb3{bottom:10.394005px;}
.ye2{bottom:10.653889px;}
.ye7{bottom:10.653943px;}
.y113{bottom:11.012744px;}
.y116{bottom:11.012772px;}
.ya1{bottom:11.520000px;}
.yb6{bottom:12.780000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.yad{bottom:16.684886px;}
.yc1{bottom:16.685505px;}
.ybd{bottom:16.723213px;}
.ya9{bottom:16.723221px;}
.ya{bottom:17.280000px;}
.yfa{bottom:18.614610px;}
.yfe{bottom:18.614614px;}
.y101{bottom:18.614644px;}
.y123{bottom:19.234116px;}
.y9{bottom:19.440000px;}
.yc4{bottom:19.489447px;}
.yb1{bottom:19.489458px;}
.y124{bottom:19.878003px;}
.y127{bottom:19.878028px;}
.y12b{bottom:19.878032px;}
.y12e{bottom:19.878057px;}
.yfd{bottom:22.248855px;}
.y108{bottom:22.248857px;}
.yf5{bottom:22.248860px;}
.y10d{bottom:22.248862px;}
.y104{bottom:22.248889px;}
.y10b{bottom:22.248891px;}
.yf7{bottom:22.248894px;}
.y10f{bottom:22.248896px;}
.y112{bottom:23.037071px;}
.y11a{bottom:23.037074px;}
.y12a{bottom:23.037092px;}
.y115{bottom:23.037094px;}
.y11c{bottom:23.037097px;}
.y132{bottom:23.037098px;}
.y131{bottom:23.037121px;}
.y118{bottom:23.037123px;}
.y11e{bottom:23.037125px;}
.y134{bottom:23.037127px;}
.y4{bottom:27.900000px;}
.yf1{bottom:28.798785px;}
.yf3{bottom:28.798819px;}
.yf4{bottom:29.236965px;}
.y120{bottom:29.847379px;}
.y122{bottom:29.847407px;}
.y10c{bottom:32.685053px;}
.y107{bottom:32.685057px;}
.yf6{bottom:32.685080px;}
.y10e{bottom:32.685086px;}
.y10a{bottom:32.685090px;}
.yf9{bottom:33.530282px;}
.yfc{bottom:33.530311px;}
.y100{bottom:33.530315px;}
.y103{bottom:33.530345px;}
.y11b{bottom:33.651664px;}
.y114{bottom:33.651673px;}
.y11d{bottom:33.651693px;}
.y133{bottom:33.651698px;}
.y117{bottom:33.651701px;}
.y126{bottom:34.480335px;}
.y129{bottom:34.480360px;}
.y12d{bottom:34.480364px;}
.y130{bottom:34.480389px;}
.y3c{bottom:35.820000px;}
.yc9{bottom:36.000000px;}
.y2{bottom:36.720000px;}
.y105{bottom:39.673111px;}
.yc7{bottom:40.320000px;}
.y119{bottom:40.492320px;}
.yb4{bottom:40.500000px;}
.yf2{bottom:44.090595px;}
.y8{bottom:44.640000px;}
.y121{bottom:44.817882px;}
.yf0{bottom:50.453095px;}
.y11f{bottom:51.075273px;}
.ybb{bottom:74.880000px;}
.ya7{bottom:75.060000px;}
.y38{bottom:85.854000px;}
.y39{bottom:99.216000px;}
.ye4{bottom:101.916000px;}
.y199{bottom:103.536000px;}
.ya6{bottom:104.400000px;}
.yba{bottom:104.445000px;}
.y14d{bottom:110.376000px;}
.y9e{bottom:111.996000px;}
.ycd{bottom:119.376000px;}
.y2f{bottom:121.536000px;}
.y172{bottom:124.056000px;}
.y36{bottom:126.936000px;}
.y198{bottom:127.656000px;}
.ya5{bottom:132.120000px;}
.yb9{bottom:132.165000px;}
.y4d{bottom:133.236000px;}
.y14c{bottom:138.096000px;}
.y9d{bottom:139.896000px;}
.ycc{bottom:147.096000px;}
.y171{bottom:148.176000px;}
.y2e{bottom:149.436000px;}
.y75{bottom:151.230000px;}
.y197{bottom:151.770000px;}
.y4c{bottom:156.630000px;}
.yb8{bottom:159.885000px;}
.ya4{bottom:160.020000px;}
.y14b{bottom:165.990000px;}
.y4b{bottom:167.250000px;}
.y9c{bottom:168.150000px;}
.y170{bottom:172.290000px;}
.ycb{bottom:174.810000px;}
.y196{bottom:175.890000px;}
.y2d{bottom:177.150000px;}
.y74{bottom:179.130000px;}
.y14a{bottom:193.710000px;}
.yc8{bottom:194.430000px;}
.y16f{bottom:196.410000px;}
.y9b{bottom:196.590000px;}
.y195{bottom:200.010000px;}
.y4a{bottom:201.270000px;}
.y2c{bottom:204.870000px;}
.y37{bottom:205.374000px;}
.y73{bottom:205.410000px;}
.y72{bottom:216.030000px;}
.y16e{bottom:220.530000px;}
.y149{bottom:221.430000px;}
.y9a{bottom:224.310000px;}
.y49{bottom:229.170000px;}
.y2b{bottom:232.770000px;}
.y70{bottom:235.110000px;}
.y16d{bottom:244.830000px;}
.y71{bottom:247.350000px;}
.y194{bottom:248.430000px;}
.y148{bottom:249.150000px;}
.yb7{bottom:250.050000px;}
.y99{bottom:252.210000px;}
.y48{bottom:256.890000px;}
.y2a{bottom:260.490000px;}
.y16c{bottom:268.950000px;}
.y193{bottom:272.550000px;}
.y147{bottom:277.050000px;}
.y98{bottom:279.930000px;}
.yc3{bottom:281.415000px;}
.yc0{bottom:282.839980px;}
.y47{bottom:284.610000px;}
.ye3{bottom:285.510000px;}
.y34{bottom:285.870000px;}
.y29{bottom:288.210000px;}
.y6f{bottom:290.910000px;}
.y16b{bottom:293.070000px;}
.y192{bottom:296.670000px;}
.y146{bottom:304.770000px;}
.y97{bottom:306.210000px;}
.ye1{bottom:308.789980px;}
.y46{bottom:312.330000px;}
.y28{bottom:315.930000px;}
.ye0{bottom:316.290000px;}
.y96{bottom:316.830000px;}
.y16a{bottom:317.190000px;}
.ybc{bottom:317.414980px;}
.y191{bottom:320.790000px;}
.y6e{bottom:321.330000px;}
.y6d{bottom:332.310000px;}
.y145{bottom:332.490000px;}
.y94{bottom:336.270000px;}
.y45{bottom:340.275000px;}
.y169{bottom:341.355000px;}
.y27{bottom:343.875000px;}
.y190{bottom:344.955000px;}
.ydc{bottom:345.689959px;}
.y95{bottom:349.275000px;}
.ydb{bottom:353.235000px;}
.y144{bottom:360.435000px;}
.y44{bottom:363.495000px;}
.y168{bottom:365.475000px;}
.y18f{bottom:369.255000px;}
.y26{bottom:371.595000px;}
.y6c{bottom:373.755000px;}
.yda{bottom:384.375000px;}
.y143{bottom:388.155000px;}
.y167{bottom:389.775000px;}
.y93{bottom:391.575000px;}
.y18e{bottom:393.375000px;}
.y25{bottom:399.315000px;}
.y6b{bottom:401.475000px;}
.y92{bottom:402.195000px;}
.yd9{bottom:412.275000px;}
.y166{bottom:413.895000px;}
.y142{bottom:415.875000px;}
.y18d{bottom:417.495000px;}
.y90{bottom:421.095000px;}
.y24{bottom:427.215000px;}
.y6a{bottom:427.575000px;}
.yb5{bottom:429.555000px;}
.y91{bottom:433.515000px;}
.y165{bottom:438.015000px;}
.y69{bottom:438.195000px;}
.yd8{bottom:439.995000px;}
.y18c{bottom:441.615000px;}
.y141{bottom:443.595000px;}
.y23{bottom:454.935000px;}
.y164{bottom:462.135000px;}
.y18b{bottom:465.735000px;}
.yd7{bottom:467.715000px;}
.y68{bottom:471.135000px;}
.y140{bottom:471.495000px;}
.y8f{bottom:477.255000px;}
.y22{bottom:482.655000px;}
.y163{bottom:486.255000px;}
.y18a{bottom:489.855000px;}
.yd6{bottom:490.935000px;}
.y67{bottom:499.035000px;}
.y13f{bottom:499.215000px;}
.y8e{bottom:504.975000px;}
.y21{bottom:510.375000px;}
.y189{bottom:513.975000px;}
.y66{bottom:526.935000px;}
.y8d{bottom:528.375000px;}
.y162{bottom:534.675000px;}
.y20{bottom:538.275000px;}
.y8c{bottom:541.695000px;}
.y13e{bottom:554.835000px;}
.y65{bottom:555.015000px;}
.y161{bottom:558.795000px;}
.y188{bottom:562.395000px;}
.y33{bottom:565.455000px;}
.y1f{bottom:565.995000px;}
.y8b{bottom:578.415000px;}
.y13d{bottom:582.735000px;}
.y64{bottom:582.915000px;}
.y187{bottom:586.515000px;}
.y32{bottom:593.175000px;}
.y1e{bottom:593.715000px;}
.y8a{bottom:606.345000px;}
.y160{bottom:607.065000px;}
.y186{bottom:610.665000px;}
.y63{bottom:610.845000px;}
.y13c{bottom:611.025000px;}
.y31{bottom:620.925000px;}
.y1d{bottom:621.465000px;}
.y15f{bottom:631.185000px;}
.y89{bottom:634.065000px;}
.y185{bottom:634.785000px;}
.y62{bottom:638.925000px;}
.y13b{bottom:639.285000px;}
.y30{bottom:649.005000px;}
.y1c{bottom:649.365000px;}
.y15e{bottom:655.305000px;}
.y184{bottom:658.905000px;}
.y88{bottom:661.785000px;}
.y61{bottom:666.645000px;}
.y13a{bottom:667.545000px;}
.ya3{bottom:669.705000px;}
.y43{bottom:671.685000px;}
.y1b{bottom:677.085000px;}
.y15d{bottom:679.425000px;}
.y183{bottom:683.205000px;}
.y87{bottom:689.505000px;}
.y60{bottom:693.645000px;}
.y139{bottom:696.345000px;}
.y42{bottom:699.585000px;}
.yb0{bottom:701.189919px;}
.yac{bottom:702.614919px;}
.y15c{bottom:703.725000px;}
.y5f{bottom:704.265000px;}
.y1a{bottom:704.805000px;}
.y182{bottom:707.325000px;}
.y86{bottom:715.965000px;}
.y138{bottom:724.425000px;}
.y85{bottom:726.585000px;}
.y41{bottom:727.665000px;}
.y15b{bottom:727.845000px;}
.y181{bottom:731.445000px;}
.y19{bottom:732.705000px;}
.ya8{bottom:737.189919px;}
.y5e{bottom:738.285000px;}
.y15a{bottom:751.965000px;}
.y137{bottom:752.145000px;}
.y180{bottom:755.565000px;}
.y40{bottom:755.745000px;}
.y84{bottom:759.165000px;}
.y18{bottom:760.425000px;}
.y5d{bottom:766.185000px;}
.y83{bottom:769.785000px;}
.y159{bottom:776.085000px;}
.y17f{bottom:779.685000px;}
.y136{bottom:779.865000px;}
.y3e{bottom:785.085000px;}
.y3f{bottom:786.525000px;}
.y17{bottom:788.145000px;}
.y5c{bottom:792.465000px;}
.y3d{bottom:799.665000px;}
.y158{bottom:800.205000px;}
.y5a{bottom:801.285000px;}
.y82{bottom:802.725000px;}
.y111{bottom:803.264919px;}
.y17e{bottom:803.805000px;}
.y5b{bottom:813.885000px;}
.y16{bottom:815.865000px;}
.y81{bottom:816.765000px;}
.y157{bottom:824.325000px;}
.y17d{bottom:827.925000px;}
.y135{bottom:830.265000px;}
.y59{bottom:832.605000px;}
.yd5{bottom:841.245000px;}
.y15{bottom:843.765000px;}
.y156{bottom:848.625000px;}
.ya0{bottom:849.345000px;}
.y17c{bottom:852.225000px;}
.y80{bottom:857.805000px;}
.y58{bottom:860.325000px;}
.yef{bottom:868.064919px;}
.yd4{bottom:869.145000px;}
.y14{bottom:871.530000px;}
.y155{bottom:872.790000px;}
.y17b{bottom:876.390000px;}
.y57{bottom:883.770000px;}
.y7f{bottom:884.310000px;}
.y110{bottom:893.670000px;}
.y56{bottom:894.390000px;}
.y7e{bottom:894.930000px;}
.y154{bottom:896.910000px;}
.yd3{bottom:897.630000px;}
.y13{bottom:899.250000px;}
.y17a{bottom:900.510000px;}
.y153{bottom:921.030000px;}
.y179{bottom:924.630000px;}
.yd2{bottom:925.350000px;}
.y12{bottom:927.150000px;}
.y55{bottom:927.870000px;}
.y7d{bottom:928.230000px;}
.yee{bottom:937.410000px;}
.y152{bottom:945.150000px;}
.y178{bottom:948.750000px;}
.yd1{bottom:953.070000px;}
.y11{bottom:954.870000px;}
.y54{bottom:955.950000px;}
.y7c{bottom:957.030000px;}
.yed{bottom:965.130000px;}
.y151{bottom:969.270000px;}
.y177{bottom:972.870000px;}
.y53{bottom:979.710000px;}
.yd0{bottom:980.970000px;}
.y7b{bottom:981.510000px;}
.y10{bottom:982.590000px;}
.y52{bottom:990.330000px;}
.yec{bottom:993.030000px;}
.y150{bottom:993.390000px;}
.y7a{bottom:995.550000px;}
.y176{bottom:997.170000px;}
.ycf{bottom:1009.590000px;}
.yf{bottom:1010.310000px;}
.ye9{bottom:1016.189919px;}
.y14f{bottom:1017.690000px;}
.y175{bottom:1021.290000px;}
.ye8{bottom:1023.810000px;}
.y51{bottom:1024.530000px;}
.y79{bottom:1036.050000px;}
.yce{bottom:1037.490000px;}
.ye{bottom:1038.210000px;}
.y14e{bottom:1041.810000px;}
.y174{bottom:1045.410000px;}
.y78{bottom:1046.670000px;}
.ye6{bottom:1052.189919px;}
.y50{bottom:1052.970000px;}
.y3b{bottom:1057.830000px;}
.ye5{bottom:1059.810000px;}
.y76{bottom:1065.570000px;}
.yd{bottom:1065.930000px;}
.y173{bottom:1069.530000px;}
.y77{bottom:1076.370000px;}
.y4f{bottom:1076.730000px;}
.y4e{bottom:1087.350000px;}
.y9f{bottom:1092.930000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.h11{height:27.720000px;}
.h29{height:28.799562px;}
.h36{height:28.800581px;}
.h25{height:28.800642px;}
.h41{height:30.599203px;}
.h48{height:32.399576px;}
.h3b{height:32.399804px;}
.h2d{height:32.399885px;}
.h5b{height:32.875572px;}
.h45{height:33.299627px;}
.h47{height:33.299688px;}
.h50{height:33.583999px;}
.h56{height:34.408892px;}
.h58{height:34.833895px;}
.h52{height:35.336122px;}
.h4c{height:35.584522px;}
.h7{height:39.636000px;}
.h26{height:43.408185px;}
.h2a{height:43.555817px;}
.h38{height:43.557450px;}
.h2e{height:46.422820px;}
.h43{height:48.833645px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.h12{height:55.440000px;}
.h40{height:55.620000px;}
.h5a{height:56.343391px;}
.h4f{height:57.557521px;}
.h55{height:58.971253px;}
.hc{height:59.066719px;}
.h5c{height:59.669938px;}
.h57{height:59.699639px;}
.h51{height:60.560374px;}
.h53{height:60.955751px;}
.h4e{height:60.986092px;}
.h54{height:61.199059px;}
.h4b{height:61.200855px;}
.h8{height:70.664062px;}
.h59{height:71.555524px;}
.h3{height:72.562500px;}
.h31{height:73.877979px;}
.h3d{height:73.877999px;}
.h28{height:73.878129px;}
.h37{height:73.878150px;}
.h32{height:74.213389px;}
.h2c{height:74.213413px;}
.h3e{height:74.215911px;}
.h3a{height:74.215935px;}
.h4d{height:74.778689px;}
.h30{height:78.777445px;}
.h33{height:78.777459px;}
.h3c{height:78.777470px;}
.h3f{height:78.777484px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.h22{height:83.238047px;}
.h42{height:83.696554px;}
.h44{height:83.738215px;}
.h6{height:84.898125px;}
.h17{height:86.585445px;}
.h49{height:88.233446px;}
.h4a{height:88.665035px;}
.h27{height:93.329981px;}
.h2b{height:93.627215px;}
.h39{height:93.630726px;}
.h9{height:96.508125px;}
.h46{height:96.773548px;}
.h2f{height:100.109961px;}
.h19{height:127.165078px;}
.h10{height:158.940000px;}
.hd{height:179.256797px;}
.h35{height:179.490000px;}
.h24{height:179.640000px;}
.h18{height:182.136797px;}
.h1a{height:217.416797px;}
.h15{height:221.736797px;}
.h16{height:224.616797px;}
.h23{height:235.290000px;}
.h13{height:235.416797px;}
.h34{height:240.150000px;}
.h1b{height:240.636797px;}
.h1e{height:243.336797px;}
.h1d{height:264.936797px;}
.h1c{height:270.696797px;}
.h20{height:271.416797px;}
.he{height:271.470000px;}
.h21{height:273.756797px;}
.h14{height:298.776797px;}
.h1f{height:299.496797px;}
.hf{height:430.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:23.400666px;}
.w15{width:23.400686px;}
.w6{width:63.756000px;}
.wf{width:63.900932px;}
.wc{width:63.901971px;}
.w3{width:68.616000px;}
.w13{width:70.200453px;}
.w11{width:72.001177px;}
.wd{width:72.001187px;}
.we{width:72.001197px;}
.w10{width:72.001218px;}
.w16{width:192.595675px;}
.w8{width:268.770000px;}
.wb{width:339.735000px;}
.wa{width:339.870000px;}
.w7{width:423.645000px;}
.w17{width:587.028961px;}
.w18{width:622.415511px;}
.w12{width:679.605000px;}
.w9{width:692.430000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:1.373063px;}
.x4b{left:3.175720px;}
.x2{left:8.640000px;}
.x3d{left:13.507578px;}
.x41{left:15.695380px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4a{left:51.647351px;}
.x3c{left:55.886203px;}
.x4{left:59.970000px;}
.x43{left:62.743688px;}
.x40{left:64.038505px;}
.x56{left:81.560070px;}
.x5{left:84.959987px;}
.x38{left:106.776000px;}
.x3f{left:114.914990px;}
.x5d{left:116.663558px;}
.xd{left:127.475987px;}
.x15{left:136.655987px;}
.x52{left:142.881997px;}
.x44{left:152.094000px;}
.x73{left:158.579744px;}
.x59{left:160.450611px;}
.x51{left:171.485049px;}
.xa{left:175.709987px;}
.x63{left:181.778894px;}
.x42{left:186.914980px;}
.x5e{left:196.204984px;}
.x8{left:202.529987px;}
.x2c{left:217.109987px;}
.x2e{left:223.769987px;}
.x74{left:229.906616px;}
.x36{left:243.209987px;}
.x70{left:248.600307px;}
.x32{left:252.389987px;}
.xb{left:256.349987px;}
.x13{left:258.885000px;}
.x12{left:260.685000px;}
.x62{left:263.640931px;}
.x34{left:265.709987px;}
.x30{left:277.229987px;}
.x66{left:280.947161px;}
.x6a{left:282.012055px;}
.x31{left:287.714987px;}
.x4d{left:289.514987px;}
.x19{left:291.314987px;}
.x1b{left:305.714987px;}
.x18{left:306.794987px;}
.x33{left:311.294987px;}
.x35{left:312.734987px;}
.x2a{left:321.194987px;}
.x58{left:324.364998px;}
.x27{left:326.954987px;}
.x5c{left:331.114939px;}
.x3a{left:334.875000px;}
.x39{left:336.639000px;}
.x16{left:338.654987px;}
.x1f{left:341.534987px;}
.x1a{left:346.574987px;}
.x50{left:348.014959px;}
.x72{left:353.057469px;}
.x5a{left:360.512697px;}
.xc{left:373.574987px;}
.x3b{left:374.639959px;}
.xf{left:378.434987px;}
.x71{left:379.772795px;}
.x20{left:387.614987px;}
.xe{left:392.654987px;}
.x76{left:403.028498px;}
.x57{left:404.057412px;}
.x22{left:408.674987px;}
.x10{left:413.205000px;}
.x14{left:415.365000px;}
.x6e{left:417.922468px;}
.x26{left:419.294987px;}
.x23{left:424.334987px;}
.x28{left:426.134987px;}
.x2d{left:434.954987px;}
.x69{left:436.276061px;}
.x5b{left:437.908607px;}
.x2f{left:439.274987px;}
.x24{left:440.354987px;}
.x9{left:446.474987px;}
.x4f{left:448.274987px;}
.x37{left:450.794987px;}
.x49{left:453.164959px;}
.x46{left:454.739959px;}
.x55{left:458.285300px;}
.x6f{left:467.811403px;}
.x1e{left:470.444987px;}
.x1d{left:474.764987px;}
.x21{left:476.024987px;}
.x1c{left:477.644987px;}
.x25{left:487.364987px;}
.x61{left:492.580569px;}
.x68{left:499.241198px;}
.x60{left:504.278774px;}
.x11{left:508.605000px;}
.x65{left:520.506536px;}
.x4c{left:523.364987px;}
.x47{left:526.740000px;}
.x2b{left:532.544987px;}
.x5f{left:534.526614px;}
.x64{left:536.214099px;}
.x75{left:537.437781px;}
.x6b{left:539.114819px;}
.x53{left:540.644987px;}
.x6d{left:564.047561px;}
.x29{left:569.804987px;}
.x54{left:579.543119px;}
.x4e{left:582.584987px;}
.x6c{left:591.806639px;}
.x67{left:610.160233px;}
.x45{left:714.539919px;}
.x17{left:741.749987px;}
.x77{left:750.029987px;}
.x48{left:759.749987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v11{vertical-align:-27.520000pt;}
.v25{vertical-align:-24.322319pt;}
.v21{vertical-align:-20.006638pt;}
.v6{vertical-align:-15.360000pt;}
.v23{vertical-align:-13.813276pt;}
.vf{vertical-align:-12.160000pt;}
.vc{vertical-align:-10.880000pt;}
.vb{vertical-align:-4.480000pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v1a{vertical-align:10.880000pt;}
.v22{vertical-align:12.260087pt;}
.v24{vertical-align:13.521896pt;}
.v7{vertical-align:15.360000pt;}
.v1f{vertical-align:16.795692pt;}
.v20{vertical-align:18.189332pt;}
.v19{vertical-align:27.520000pt;}
.vd{vertical-align:33.920000pt;}
.v9{vertical-align:37.760000pt;}
.v13{vertical-align:39.040000pt;}
.v1c{vertical-align:40.320000pt;}
.v10{vertical-align:42.880000pt;}
.v8{vertical-align:44.160000pt;}
.v1{vertical-align:47.360000pt;}
.v2{vertical-align:49.920000pt;}
.v4{vertical-align:52.480000pt;}
.v12{vertical-align:55.200000pt;}
.v18{vertical-align:56.960000pt;}
.v14{vertical-align:59.520000pt;}
.v1b{vertical-align:65.280000pt;}
.v15{vertical-align:67.840000pt;}
.v16{vertical-align:76.800000pt;}
.va{vertical-align:81.920000pt;}
.v1d{vertical-align:84.000000pt;}
.v5{vertical-align:106.240000pt;}
.v1e{vertical-align:107.680000pt;}
.v17{vertical-align:120.960000pt;}
.ls62{letter-spacing:-2.232660pt;}
.ls63{letter-spacing:-2.027818pt;}
.ls61{letter-spacing:-2.027742pt;}
.ls60{letter-spacing:-1.960782pt;}
.ls56{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.608000pt;}
.ls36{letter-spacing:-0.549333pt;}
.ls6{letter-spacing:-0.336533pt;}
.ls77{letter-spacing:-0.328533pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5e{letter-spacing:-0.303467pt;}
.ls38{letter-spacing:-0.178133pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls54{letter-spacing:-0.133867pt;}
.ls39{letter-spacing:-0.085333pt;}
.ls1e{letter-spacing:-0.074133pt;}
.ls57{letter-spacing:-0.034560pt;}
.ls79{letter-spacing:-0.033280pt;}
.ls1d{letter-spacing:-0.023680pt;}
.ls73{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.007680pt;}
.ls52{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.024960pt;}
.ls78{letter-spacing:0.033280pt;}
.ls55{letter-spacing:0.089600pt;}
.ls53{letter-spacing:0.116267pt;}
.ls41{letter-spacing:0.116480pt;}
.lsc{letter-spacing:0.123520pt;}
.ls6f{letter-spacing:0.145067pt;}
.ls24{letter-spacing:0.166400pt;}
.ls71{letter-spacing:0.184960pt;}
.ls10{letter-spacing:0.198400pt;}
.ls49{letter-spacing:0.224640pt;}
.ls67{letter-spacing:0.225067pt;}
.ls33{letter-spacing:0.246400pt;}
.lsd{letter-spacing:0.263467pt;}
.ls72{letter-spacing:0.266133pt;}
.ls3a{letter-spacing:0.267733pt;}
.ls18{letter-spacing:0.284800pt;}
.ls5{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.328320pt;}
.ls66{letter-spacing:0.336533pt;}
.lsb{letter-spacing:0.336640pt;}
.ls3d{letter-spacing:0.391467pt;}
.ls4a{letter-spacing:0.410880pt;}
.ls70{letter-spacing:0.431360pt;}
.ls0{letter-spacing:0.448000pt;}
.ls74{letter-spacing:0.456320pt;}
.lsa{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.647680pt;}
.ls21{letter-spacing:0.728960pt;}
.ls46{letter-spacing:0.947200pt;}
.ls6e{letter-spacing:1.167360pt;}
.lse{letter-spacing:1.245440pt;}
.ls2b{letter-spacing:1.348480pt;}
.ls26{letter-spacing:1.526400pt;}
.ls2f{letter-spacing:1.574400pt;}
.ls14{letter-spacing:1.792000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls44{letter-spacing:2.006400pt;}
.ls19{letter-spacing:2.403840pt;}
.ls59{letter-spacing:2.523520pt;}
.ls3f{letter-spacing:2.563840pt;}
.ls47{letter-spacing:2.646400pt;}
.ls2d{letter-spacing:3.163520pt;}
.ls9{letter-spacing:3.680000pt;}
.ls2e{letter-spacing:4.459520pt;}
.ls32{letter-spacing:5.581440pt;}
.ls3e{letter-spacing:12.440320pt;}
.ls16{letter-spacing:13.410560pt;}
.ls1f{letter-spacing:13.570560pt;}
.ls31{letter-spacing:13.684480pt;}
.ls3b{letter-spacing:14.050560pt;}
.ls35{letter-spacing:14.324480pt;}
.ls1a{letter-spacing:15.644800pt;}
.ls20{letter-spacing:16.384640pt;}
.ls1b{letter-spacing:17.024640pt;}
.ls4f{letter-spacing:18.164480pt;}
.ls4d{letter-spacing:18.804480pt;}
.ls25{letter-spacing:19.484800pt;}
.ls58{letter-spacing:19.782187pt;}
.ls28{letter-spacing:19.803520pt;}
.ls27{letter-spacing:20.124800pt;}
.ls23{letter-spacing:20.224640pt;}
.ls11{letter-spacing:20.273920pt;}
.lsf{letter-spacing:20.764800pt;}
.ls17{letter-spacing:20.864640pt;}
.ls3c{letter-spacing:20.971307pt;}
.ls4c{letter-spacing:22.784640pt;}
.ls34{letter-spacing:22.891307pt;}
.ls30{letter-spacing:23.531307pt;}
.ls64{letter-spacing:23.643520pt;}
.ls5f{letter-spacing:24.160000pt;}
.ls65{letter-spacing:24.283520pt;}
.ls42{letter-spacing:24.390187pt;}
.ls50{letter-spacing:24.775040pt;}
.ls12{letter-spacing:24.926080pt;}
.ls4b{letter-spacing:25.086080pt;}
.ls13{letter-spacing:25.255040pt;}
.ls4e{letter-spacing:25.415040pt;}
.ls7a{letter-spacing:25.440000pt;}
.ls2c{letter-spacing:25.839360pt;}
.ls29{letter-spacing:56.066987pt;}
.ls5a{letter-spacing:65.594312pt;}
.ls76{letter-spacing:74.543360pt;}
.ls2a{letter-spacing:74.966400pt;}
.ls5b{letter-spacing:80.651883pt;}
.ls5d{letter-spacing:80.654907pt;}
.ls5c{letter-spacing:82.219937pt;}
.ls48{letter-spacing:84.214187pt;}
.ls51{letter-spacing:84.854187pt;}
.ls45{letter-spacing:86.774187pt;}
.ls43{letter-spacing:88.826240pt;}
.ls40{letter-spacing:90.507520pt;}
.ls1c{letter-spacing:118.703360pt;}
.ls68{letter-spacing:369.801274pt;}
.ls6c{letter-spacing:630.141579pt;}
.ls6d{letter-spacing:645.345840pt;}
.ls69{letter-spacing:656.403194pt;}
.ls6a{letter-spacing:671.939683pt;}
.ls6b{letter-spacing:2175.326013pt;}
.ws0{word-spacing:-64.000000pt;}
.ws2d{word-spacing:-31.068680pt;}
.ws28{word-spacing:-30.323863pt;}
.ws30{word-spacing:-29.684205pt;}
.ws1{word-spacing:-21.600000pt;}
.ws20{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.ws35{word-spacing:-18.753280pt;}
.ws16{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws33{word-spacing:-18.703360pt;}
.ws36{word-spacing:-18.686720pt;}
.ws2a{word-spacing:-18.616641pt;}
.ws1b{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws34{word-spacing:-18.391467pt;}
.ws6{word-spacing:-18.383467pt;}
.ws2e{word-spacing:-18.128135pt;}
.ws7{word-spacing:-18.112000pt;}
.ws29{word-spacing:-17.693545pt;}
.wsc{word-spacing:-16.758400pt;}
.ws32{word-spacing:-16.739733pt;}
.ws19{word-spacing:-16.720000pt;}
.ws21{word-spacing:-16.698667pt;}
.ws17{word-spacing:-16.589867pt;}
.ws14{word-spacing:-16.563200pt;}
.wsf{word-spacing:-16.481280pt;}
.ws9{word-spacing:-16.473600pt;}
.ws18{word-spacing:-16.439040pt;}
.wsb{word-spacing:-16.399467pt;}
.ws13{word-spacing:-16.339733pt;}
.wse{word-spacing:-15.924267pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.954133pt;}
.wsd{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.662720pt;}
.ws11{word-spacing:-11.601067pt;}
.ws10{word-spacing:-11.508267pt;}
.ws15{word-spacing:-9.433600pt;}
.ws23{word-spacing:-0.080303pt;}
.ws22{word-spacing:-0.075841pt;}
.ws26{word-spacing:-0.055235pt;}
.ws2f{word-spacing:-0.054070pt;}
.ws2c{word-spacing:-0.032229pt;}
.ws8{word-spacing:0.000000pt;}
.ws1c{word-spacing:1.893367pt;}
.ws1d{word-spacing:1.960195pt;}
.ws1f{word-spacing:1.960268pt;}
.ws1e{word-spacing:2.160524pt;}
.ws24{word-spacing:188.463621pt;}
.ws2b{word-spacing:250.958457pt;}
.ws31{word-spacing:756.642349pt;}
.ws27{word-spacing:1410.501632pt;}
.ws25{word-spacing:1847.547415pt;}
._48{margin-left:-903.752338pt;}
._46{margin-left:-875.637505pt;}
._4f{margin-left:-861.942055pt;}
._5f{margin-left:-841.197659pt;}
._4e{margin-left:-467.230384pt;}
._63{margin-left:-381.606434pt;}
._35{margin-left:-364.266406pt;}
._53{margin-left:-311.678036pt;}
._4b{margin-left:-287.463554pt;}
._49{margin-left:-279.697607pt;}
._62{margin-left:-277.801098pt;}
._60{margin-left:-270.198967pt;}
._34{margin-left:-260.756528pt;}
._55{margin-left:-255.607952pt;}
._4c{margin-left:-231.496167pt;}
._54{margin-left:-194.025261pt;}
._45{margin-left:-187.237254pt;}
._38{margin-left:-181.842626pt;}
._3a{margin-left:-180.546776pt;}
._3c{margin-left:-177.772144pt;}
._51{margin-left:-176.513371pt;}
._40{margin-left:-174.246617pt;}
._5d{margin-left:-172.329860pt;}
._3b{margin-left:-171.000911pt;}
._44{margin-left:-169.031033pt;}
._52{margin-left:-164.874734pt;}
._43{margin-left:-162.832146pt;}
._3d{margin-left:-159.495914pt;}
._56{margin-left:-157.525948pt;}
._3f{margin-left:-155.020247pt;}
._58{margin-left:-149.501068pt;}
._4d{margin-left:-147.401899pt;}
._5b{margin-left:-139.409714pt;}
._37{margin-left:-132.725471pt;}
._42{margin-left:-128.827408pt;}
._32{margin-left:-123.683410pt;}
._5a{margin-left:-122.106408pt;}
._31{margin-left:-118.206717pt;}
._33{margin-left:-112.511757pt;}
._36{margin-left:-111.027135pt;}
._30{margin-left:-109.295456pt;}
._4a{margin-left:-100.405881pt;}
._61{margin-left:-94.374376pt;}
._5c{margin-left:-90.213447pt;}
._41{margin-left:-78.831253pt;}
._5e{margin-left:-74.221983pt;}
._59{margin-left:-72.365757pt;}
._47{margin-left:-49.070835pt;}
._39{margin-left:-41.674765pt;}
._50{margin-left:-40.631633pt;}
._3e{margin-left:-34.257476pt;}
._57{margin-left:-31.600572pt;}
._2b{margin-left:-14.450347pt;}
._2d{margin-left:-9.993600pt;}
._2a{margin-left:-8.646613pt;}
._29{margin-left:-7.632640pt;}
._16{margin-left:-5.487573pt;}
._7{margin-left:-3.968640pt;}
._15{margin-left:-3.059840pt;}
._3{margin-left:-1.984853pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._6{width:1.976747pt;}
._a{width:2.893653pt;}
._2{width:4.118400pt;}
._5{width:5.261653pt;}
._11{width:6.664320pt;}
._e{width:7.937280pt;}
._14{width:9.790933pt;}
._13{width:10.914133pt;}
._12{width:11.831040pt;}
._19{width:13.102293pt;}
._8{width:14.804907pt;}
._9{width:16.086613pt;}
._f{width:17.822720pt;}
._26{width:19.189760pt;}
._1e{width:20.349013pt;}
._4{width:21.921493pt;}
._10{width:23.156267pt;}
._23{width:24.487467pt;}
._1b{width:25.703893pt;}
._1a{width:26.732160pt;}
._20{width:28.322987pt;}
._b{width:29.471787pt;}
._18{width:30.476160pt;}
._17{width:31.449600pt;}
._25{width:32.688427pt;}
._21{width:33.770880pt;}
._22{width:34.950613pt;}
._24{width:36.223573pt;}
._28{width:37.158827pt;}
._27{width:38.425813pt;}
._c{width:39.335040pt;}
._d{width:41.176533pt;}
._1d{width:42.229547pt;}
._1c{width:43.517013pt;}
._2c{width:45.310293pt;}
._2f{width:55.003520pt;}
._2e{width:75.761920pt;}
._1f{width:78.921600pt;}
.fs27{font-size:31.548841pt;}
.fs20{font-size:32.228679pt;}
.fs25{font-size:33.020283pt;}
.fs23{font-size:33.910093pt;}
.fs6{font-size:39.314522pt;}
.fs9{font-size:39.448231pt;}
.fs13{font-size:39.449710pt;}
.fsc{font-size:42.044858pt;}
.fs5{font-size:42.880000pt;}
.fs1b{font-size:44.228328pt;}
.fs1f{font-size:46.830545pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs26{font-size:54.069590pt;}
.fs21{font-size:55.234723pt;}
.fs24{font-size:56.591402pt;}
.fs22{font-size:58.116393pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:67.415158pt;}
.fsa{font-size:67.546695pt;}
.fs14{font-size:67.549228pt;}
.fsf{font-size:70.896550pt;}
.fs17{font-size:70.896570pt;}
.fs8{font-size:70.896694pt;}
.fs12{font-size:70.896714pt;}
.fs10{font-size:71.218425pt;}
.fsb{font-size:71.218447pt;}
.fs18{font-size:71.220845pt;}
.fs15{font-size:71.220868pt;}
.fsd{font-size:72.135756pt;}
.fs2{font-size:74.880000pt;}
.fse{font-size:75.598293pt;}
.fs11{font-size:75.598306pt;}
.fs16{font-size:75.598317pt;}
.fs19{font-size:75.598331pt;}
.fs1a{font-size:75.841178pt;}
.fs1e{font-size:80.303368pt;}
.fs1d{font-size:84.672687pt;}
.fs3{font-size:85.120000pt;}
.fs1c{font-size:87.690825pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:3.040000pt;}
.yae{bottom:3.047534pt;}
.yc2{bottom:3.047606pt;}
.ybe{bottom:3.081543pt;}
.yaa{bottom:3.081586pt;}
.y35{bottom:3.200000pt;}
.yde{bottom:3.466706pt;}
.yc5{bottom:4.691712pt;}
.yb2{bottom:4.691769pt;}
.yf8{bottom:5.013978pt;}
.yfb{bottom:5.014004pt;}
.yff{bottom:5.014007pt;}
.y102{bottom:5.014034pt;}
.y125{bottom:5.644363pt;}
.y128{bottom:5.644385pt;}
.y12c{bottom:5.644388pt;}
.y12f{bottom:5.644411pt;}
.y3a{bottom:7.200000pt;}
.yaf{bottom:7.280250pt;}
.ybf{bottom:7.280469pt;}
.yab{bottom:7.280522pt;}
.yca{bottom:7.360000pt;}
.ydd{bottom:8.190423pt;}
.ydf{bottom:8.190448pt;}
.yea{bottom:8.672313pt;}
.yeb{bottom:8.672323pt;}
.y106{bottom:8.941533pt;}
.y109{bottom:8.941563pt;}
.yc6{bottom:9.239045pt;}
.yb3{bottom:9.239116pt;}
.ye2{bottom:9.470124pt;}
.ye7{bottom:9.470171pt;}
.y113{bottom:9.789106pt;}
.y116{bottom:9.789131pt;}
.ya1{bottom:10.240000pt;}
.yb6{bottom:11.360000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.yad{bottom:14.831010pt;}
.yc1{bottom:14.831560pt;}
.ybd{bottom:14.865078pt;}
.ya9{bottom:14.865085pt;}
.ya{bottom:15.360000pt;}
.yfa{bottom:16.546320pt;}
.yfe{bottom:16.546323pt;}
.y101{bottom:16.546350pt;}
.y123{bottom:17.096992pt;}
.y9{bottom:17.280000pt;}
.yc4{bottom:17.323953pt;}
.yb1{bottom:17.323962pt;}
.y124{bottom:17.669336pt;}
.y127{bottom:17.669359pt;}
.y12b{bottom:17.669362pt;}
.y12e{bottom:17.669384pt;}
.yfd{bottom:19.776760pt;}
.y108{bottom:19.776762pt;}
.yf5{bottom:19.776764pt;}
.y10d{bottom:19.776767pt;}
.y104{bottom:19.776790pt;}
.y10b{bottom:19.776792pt;}
.yf7{bottom:19.776794pt;}
.y10f{bottom:19.776797pt;}
.y112{bottom:20.477397pt;}
.y11a{bottom:20.477399pt;}
.y12a{bottom:20.477416pt;}
.y115{bottom:20.477417pt;}
.y11c{bottom:20.477419pt;}
.y132{bottom:20.477421pt;}
.y131{bottom:20.477441pt;}
.y118{bottom:20.477442pt;}
.y11e{bottom:20.477445pt;}
.y134{bottom:20.477447pt;}
.y4{bottom:24.800000pt;}
.yf1{bottom:25.598920pt;}
.yf3{bottom:25.598950pt;}
.yf4{bottom:25.988413pt;}
.y120{bottom:26.531003pt;}
.y122{bottom:26.531029pt;}
.y10c{bottom:29.053380pt;}
.y107{bottom:29.053384pt;}
.yf6{bottom:29.053405pt;}
.y10e{bottom:29.053410pt;}
.y10a{bottom:29.053413pt;}
.yf9{bottom:29.804695pt;}
.yfc{bottom:29.804721pt;}
.y100{bottom:29.804725pt;}
.y103{bottom:29.804751pt;}
.y11b{bottom:29.912591pt;}
.y114{bottom:29.912598pt;}
.y11d{bottom:29.912616pt;}
.y133{bottom:29.912621pt;}
.y117{bottom:29.912623pt;}
.y126{bottom:30.649187pt;}
.y129{bottom:30.649209pt;}
.y12d{bottom:30.649212pt;}
.y130{bottom:30.649235pt;}
.y3c{bottom:31.840000pt;}
.yc9{bottom:32.000000pt;}
.y2{bottom:32.640000pt;}
.y105{bottom:35.264987pt;}
.yc7{bottom:35.840000pt;}
.y119{bottom:35.993173pt;}
.yb4{bottom:36.000000pt;}
.yf2{bottom:39.191640pt;}
.y8{bottom:39.680000pt;}
.y121{bottom:39.838118pt;}
.yf0{bottom:44.847195pt;}
.y11f{bottom:45.400243pt;}
.ybb{bottom:66.560000pt;}
.ya7{bottom:66.720000pt;}
.y38{bottom:76.314667pt;}
.y39{bottom:88.192000pt;}
.ye4{bottom:90.592000pt;}
.y199{bottom:92.032000pt;}
.ya6{bottom:92.800000pt;}
.yba{bottom:92.840000pt;}
.y14d{bottom:98.112000pt;}
.y9e{bottom:99.552000pt;}
.ycd{bottom:106.112000pt;}
.y2f{bottom:108.032000pt;}
.y172{bottom:110.272000pt;}
.y36{bottom:112.832000pt;}
.y198{bottom:113.472000pt;}
.ya5{bottom:117.440000pt;}
.yb9{bottom:117.480000pt;}
.y4d{bottom:118.432000pt;}
.y14c{bottom:122.752000pt;}
.y9d{bottom:124.352000pt;}
.ycc{bottom:130.752000pt;}
.y171{bottom:131.712000pt;}
.y2e{bottom:132.832000pt;}
.y75{bottom:134.426667pt;}
.y197{bottom:134.906667pt;}
.y4c{bottom:139.226667pt;}
.yb8{bottom:142.120000pt;}
.ya4{bottom:142.240000pt;}
.y14b{bottom:147.546667pt;}
.y4b{bottom:148.666667pt;}
.y9c{bottom:149.466667pt;}
.y170{bottom:153.146667pt;}
.ycb{bottom:155.386667pt;}
.y196{bottom:156.346667pt;}
.y2d{bottom:157.466667pt;}
.y74{bottom:159.226667pt;}
.y14a{bottom:172.186667pt;}
.yc8{bottom:172.826667pt;}
.y16f{bottom:174.586667pt;}
.y9b{bottom:174.746667pt;}
.y195{bottom:177.786667pt;}
.y4a{bottom:178.906667pt;}
.y2c{bottom:182.106667pt;}
.y37{bottom:182.554667pt;}
.y73{bottom:182.586667pt;}
.y72{bottom:192.026667pt;}
.y16e{bottom:196.026667pt;}
.y149{bottom:196.826667pt;}
.y9a{bottom:199.386667pt;}
.y49{bottom:203.706667pt;}
.y2b{bottom:206.906667pt;}
.y70{bottom:208.986667pt;}
.y16d{bottom:217.626667pt;}
.y71{bottom:219.866667pt;}
.y194{bottom:220.826667pt;}
.y148{bottom:221.466667pt;}
.yb7{bottom:222.266667pt;}
.y99{bottom:224.186667pt;}
.y48{bottom:228.346667pt;}
.y2a{bottom:231.546667pt;}
.y16c{bottom:239.066667pt;}
.y193{bottom:242.266667pt;}
.y147{bottom:246.266667pt;}
.y98{bottom:248.826667pt;}
.yc3{bottom:250.146667pt;}
.yc0{bottom:251.413315pt;}
.y47{bottom:252.986667pt;}
.ye3{bottom:253.786667pt;}
.y34{bottom:254.106667pt;}
.y29{bottom:256.186667pt;}
.y6f{bottom:258.586667pt;}
.y16b{bottom:260.506667pt;}
.y192{bottom:263.706667pt;}
.y146{bottom:270.906667pt;}
.y97{bottom:272.186667pt;}
.ye1{bottom:274.479982pt;}
.y46{bottom:277.626667pt;}
.y28{bottom:280.826667pt;}
.ye0{bottom:281.146667pt;}
.y96{bottom:281.626667pt;}
.y16a{bottom:281.946667pt;}
.ybc{bottom:282.146649pt;}
.y191{bottom:285.146667pt;}
.y6e{bottom:285.626667pt;}
.y6d{bottom:295.386667pt;}
.y145{bottom:295.546667pt;}
.y94{bottom:298.906667pt;}
.y45{bottom:302.466667pt;}
.y169{bottom:303.426667pt;}
.y27{bottom:305.666667pt;}
.y190{bottom:306.626667pt;}
.ydc{bottom:307.279964pt;}
.y95{bottom:310.466667pt;}
.ydb{bottom:313.986667pt;}
.y144{bottom:320.386667pt;}
.y44{bottom:323.106667pt;}
.y168{bottom:324.866667pt;}
.y18f{bottom:328.226667pt;}
.y26{bottom:330.306667pt;}
.y6c{bottom:332.226667pt;}
.yda{bottom:341.666667pt;}
.y143{bottom:345.026667pt;}
.y167{bottom:346.466667pt;}
.y93{bottom:348.066667pt;}
.y18e{bottom:349.666667pt;}
.y25{bottom:354.946667pt;}
.y6b{bottom:356.866667pt;}
.y92{bottom:357.506667pt;}
.yd9{bottom:366.466667pt;}
.y166{bottom:367.906667pt;}
.y142{bottom:369.666667pt;}
.y18d{bottom:371.106667pt;}
.y90{bottom:374.306667pt;}
.y24{bottom:379.746667pt;}
.y6a{bottom:380.066667pt;}
.yb5{bottom:381.826667pt;}
.y91{bottom:385.346667pt;}
.y165{bottom:389.346667pt;}
.y69{bottom:389.506667pt;}
.yd8{bottom:391.106667pt;}
.y18c{bottom:392.546667pt;}
.y141{bottom:394.306667pt;}
.y23{bottom:404.386667pt;}
.y164{bottom:410.786667pt;}
.y18b{bottom:413.986667pt;}
.yd7{bottom:415.746667pt;}
.y68{bottom:418.786667pt;}
.y140{bottom:419.106667pt;}
.y8f{bottom:424.226667pt;}
.y22{bottom:429.026667pt;}
.y163{bottom:432.226667pt;}
.y18a{bottom:435.426667pt;}
.yd6{bottom:436.386667pt;}
.y67{bottom:443.586667pt;}
.y13f{bottom:443.746667pt;}
.y8e{bottom:448.866667pt;}
.y21{bottom:453.666667pt;}
.y189{bottom:456.866667pt;}
.y66{bottom:468.386667pt;}
.y8d{bottom:469.666667pt;}
.y162{bottom:475.266667pt;}
.y20{bottom:478.466667pt;}
.y8c{bottom:481.506667pt;}
.y13e{bottom:493.186667pt;}
.y65{bottom:493.346667pt;}
.y161{bottom:496.706667pt;}
.y188{bottom:499.906667pt;}
.y33{bottom:502.626667pt;}
.y1f{bottom:503.106667pt;}
.y8b{bottom:514.146667pt;}
.y13d{bottom:517.986667pt;}
.y64{bottom:518.146667pt;}
.y187{bottom:521.346667pt;}
.y32{bottom:527.266667pt;}
.y1e{bottom:527.746667pt;}
.y8a{bottom:538.973333pt;}
.y160{bottom:539.613333pt;}
.y186{bottom:542.813333pt;}
.y63{bottom:542.973333pt;}
.y13c{bottom:543.133333pt;}
.y31{bottom:551.933333pt;}
.y1d{bottom:552.413333pt;}
.y15f{bottom:561.053333pt;}
.y89{bottom:563.613333pt;}
.y185{bottom:564.253333pt;}
.y62{bottom:567.933333pt;}
.y13b{bottom:568.253333pt;}
.y30{bottom:576.893333pt;}
.y1c{bottom:577.213333pt;}
.y15e{bottom:582.493333pt;}
.y184{bottom:585.693333pt;}
.y88{bottom:588.253333pt;}
.y61{bottom:592.573333pt;}
.y13a{bottom:593.373333pt;}
.ya3{bottom:595.293333pt;}
.y43{bottom:597.053333pt;}
.y1b{bottom:601.853333pt;}
.y15d{bottom:603.933333pt;}
.y183{bottom:607.293333pt;}
.y87{bottom:612.893333pt;}
.y60{bottom:616.573333pt;}
.y139{bottom:618.973333pt;}
.y42{bottom:621.853333pt;}
.yb0{bottom:623.279928pt;}
.yac{bottom:624.546594pt;}
.y15c{bottom:625.533333pt;}
.y5f{bottom:626.013333pt;}
.y1a{bottom:626.493333pt;}
.y182{bottom:628.733333pt;}
.y86{bottom:636.413333pt;}
.y138{bottom:643.933333pt;}
.y85{bottom:645.853333pt;}
.y41{bottom:646.813333pt;}
.y15b{bottom:646.973333pt;}
.y181{bottom:650.173333pt;}
.y19{bottom:651.293333pt;}
.ya8{bottom:655.279928pt;}
.y5e{bottom:656.253333pt;}
.y15a{bottom:668.413333pt;}
.y137{bottom:668.573333pt;}
.y180{bottom:671.613333pt;}
.y40{bottom:671.773333pt;}
.y84{bottom:674.813333pt;}
.y18{bottom:675.933333pt;}
.y5d{bottom:681.053333pt;}
.y83{bottom:684.253333pt;}
.y159{bottom:689.853333pt;}
.y17f{bottom:693.053333pt;}
.y136{bottom:693.213333pt;}
.y3e{bottom:697.853333pt;}
.y3f{bottom:699.133333pt;}
.y17{bottom:700.573333pt;}
.y5c{bottom:704.413333pt;}
.y3d{bottom:710.813333pt;}
.y158{bottom:711.293333pt;}
.y5a{bottom:712.253333pt;}
.y82{bottom:713.533333pt;}
.y111{bottom:714.013261pt;}
.y17e{bottom:714.493333pt;}
.y5b{bottom:723.453333pt;}
.y16{bottom:725.213333pt;}
.y81{bottom:726.013333pt;}
.y157{bottom:732.733333pt;}
.y17d{bottom:735.933333pt;}
.y135{bottom:738.013333pt;}
.y59{bottom:740.093333pt;}
.yd5{bottom:747.773333pt;}
.y15{bottom:750.013333pt;}
.y156{bottom:754.333333pt;}
.ya0{bottom:754.973333pt;}
.y17c{bottom:757.533333pt;}
.y80{bottom:762.493333pt;}
.y58{bottom:764.733333pt;}
.yef{bottom:771.613261pt;}
.yd4{bottom:772.573333pt;}
.y14{bottom:774.693333pt;}
.y155{bottom:775.813333pt;}
.y17b{bottom:779.013333pt;}
.y57{bottom:785.573333pt;}
.y7f{bottom:786.053333pt;}
.y110{bottom:794.373333pt;}
.y56{bottom:795.013333pt;}
.y7e{bottom:795.493333pt;}
.y154{bottom:797.253333pt;}
.yd3{bottom:797.893333pt;}
.y13{bottom:799.333333pt;}
.y17a{bottom:800.453333pt;}
.y153{bottom:818.693333pt;}
.y179{bottom:821.893333pt;}
.yd2{bottom:822.533333pt;}
.y12{bottom:824.133333pt;}
.y55{bottom:824.773333pt;}
.y7d{bottom:825.093333pt;}
.yee{bottom:833.253333pt;}
.y152{bottom:840.133333pt;}
.y178{bottom:843.333333pt;}
.yd1{bottom:847.173333pt;}
.y11{bottom:848.773333pt;}
.y54{bottom:849.733333pt;}
.y7c{bottom:850.693333pt;}
.yed{bottom:857.893333pt;}
.y151{bottom:861.573333pt;}
.y177{bottom:864.773333pt;}
.y53{bottom:870.853333pt;}
.yd0{bottom:871.973333pt;}
.y7b{bottom:872.453333pt;}
.y10{bottom:873.413333pt;}
.y52{bottom:880.293333pt;}
.yec{bottom:882.693333pt;}
.y150{bottom:883.013333pt;}
.y7a{bottom:884.933333pt;}
.y176{bottom:886.373333pt;}
.ycf{bottom:897.413333pt;}
.yf{bottom:898.053333pt;}
.ye9{bottom:903.279928pt;}
.y14f{bottom:904.613333pt;}
.y175{bottom:907.813333pt;}
.ye8{bottom:910.053333pt;}
.y51{bottom:910.693333pt;}
.y79{bottom:920.933333pt;}
.yce{bottom:922.213333pt;}
.ye{bottom:922.853333pt;}
.y14e{bottom:926.053333pt;}
.y174{bottom:929.253333pt;}
.y78{bottom:930.373333pt;}
.ye6{bottom:935.279928pt;}
.y50{bottom:935.973333pt;}
.y3b{bottom:940.293333pt;}
.ye5{bottom:942.053333pt;}
.y76{bottom:947.173333pt;}
.yd{bottom:947.493333pt;}
.y173{bottom:950.693333pt;}
.y77{bottom:956.773333pt;}
.y4f{bottom:957.093333pt;}
.y4e{bottom:966.533333pt;}
.y9f{bottom:971.493333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.h11{height:24.640000pt;}
.h29{height:25.599611pt;}
.h36{height:25.600516pt;}
.h25{height:25.600571pt;}
.h41{height:27.199292pt;}
.h48{height:28.799623pt;}
.h3b{height:28.799826pt;}
.h2d{height:28.799898pt;}
.h5b{height:29.222730pt;}
.h45{height:29.599668pt;}
.h47{height:29.599722pt;}
.h50{height:29.852444pt;}
.h56{height:30.585682pt;}
.h58{height:30.963462pt;}
.h52{height:31.409886pt;}
.h4c{height:31.630686pt;}
.h7{height:35.232000pt;}
.h26{height:38.585054pt;}
.h2a{height:38.716281pt;}
.h38{height:38.717733pt;}
.h2e{height:41.264729pt;}
.h43{height:43.407685pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.h12{height:49.280000pt;}
.h40{height:49.440000pt;}
.h5a{height:50.083014pt;}
.h4f{height:51.162241pt;}
.h55{height:52.418891pt;}
.hc{height:52.503750pt;}
.h5c{height:53.039945pt;}
.h57{height:53.066346pt;}
.h51{height:53.831444pt;}
.h53{height:54.182890pt;}
.h4e{height:54.209860pt;}
.h54{height:54.399163pt;}
.h4b{height:54.400760pt;}
.h8{height:62.812500pt;}
.h59{height:63.604910pt;}
.h3{height:64.500000pt;}
.h31{height:65.669314pt;}
.h3d{height:65.669333pt;}
.h28{height:65.669448pt;}
.h37{height:65.669466pt;}
.h32{height:65.967457pt;}
.h2c{height:65.967478pt;}
.h3e{height:65.969699pt;}
.h3a{height:65.969720pt;}
.h4d{height:66.469946pt;}
.h30{height:70.024395pt;}
.h33{height:70.024408pt;}
.h3c{height:70.024418pt;}
.h3f{height:70.024430pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.h22{height:73.989375pt;}
.h42{height:74.396937pt;}
.h44{height:74.433968pt;}
.h6{height:75.465000pt;}
.h17{height:76.964840pt;}
.h49{height:78.429730pt;}
.h4a{height:78.813364pt;}
.h27{height:82.959983pt;}
.h2b{height:83.224191pt;}
.h39{height:83.227312pt;}
.h9{height:85.785000pt;}
.h46{height:86.020932pt;}
.h2f{height:88.986632pt;}
.h19{height:113.035625pt;}
.h10{height:141.280000pt;}
.hd{height:159.339375pt;}
.h35{height:159.546667pt;}
.h24{height:159.680000pt;}
.h18{height:161.899375pt;}
.h1a{height:193.259375pt;}
.h15{height:197.099375pt;}
.h16{height:199.659375pt;}
.h23{height:209.146667pt;}
.h13{height:209.259375pt;}
.h34{height:213.466667pt;}
.h1b{height:213.899375pt;}
.h1e{height:216.299375pt;}
.h1d{height:235.499375pt;}
.h1c{height:240.619375pt;}
.h20{height:241.259375pt;}
.he{height:241.306667pt;}
.h21{height:243.339375pt;}
.h14{height:265.579375pt;}
.h1f{height:266.219375pt;}
.hf{height:382.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:20.800592pt;}
.w15{width:20.800610pt;}
.w6{width:56.672000pt;}
.wf{width:56.800828pt;}
.wc{width:56.801752pt;}
.w3{width:60.992000pt;}
.w13{width:62.400403pt;}
.w11{width:64.001046pt;}
.wd{width:64.001055pt;}
.we{width:64.001064pt;}
.w10{width:64.001082pt;}
.w16{width:171.196156pt;}
.w8{width:238.906667pt;}
.wb{width:301.986667pt;}
.wa{width:302.106667pt;}
.w7{width:376.573333pt;}
.w17{width:521.803521pt;}
.w18{width:553.258232pt;}
.w12{width:604.093333pt;}
.w9{width:615.493333pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:1.220500pt;}
.x4b{left:2.822862pt;}
.x2{left:7.680000pt;}
.x3d{left:12.006736pt;}
.x41{left:13.951449pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4a{left:45.908757pt;}
.x3c{left:49.676625pt;}
.x4{left:53.306667pt;}
.x43{left:55.772167pt;}
.x40{left:56.923116pt;}
.x56{left:72.497840pt;}
.x5{left:75.519988pt;}
.x38{left:94.912000pt;}
.x3f{left:102.146658pt;}
.x5d{left:103.700940pt;}
.xd{left:113.311988pt;}
.x15{left:121.471988pt;}
.x52{left:127.006219pt;}
.x44{left:135.194667pt;}
.x73{left:140.959773pt;}
.x59{left:142.622765pt;}
.x51{left:152.431154pt;}
.xa{left:156.186655pt;}
.x63{left:161.581239pt;}
.x42{left:166.146649pt;}
.x5e{left:174.404430pt;}
.x8{left:180.026655pt;}
.x2c{left:192.986655pt;}
.x2e{left:198.906655pt;}
.x74{left:204.361436pt;}
.x36{left:216.186655pt;}
.x70{left:220.978050pt;}
.x32{left:224.346655pt;}
.xb{left:227.866655pt;}
.x13{left:230.120000pt;}
.x12{left:231.720000pt;}
.x62{left:234.347495pt;}
.x34{left:236.186655pt;}
.x30{left:246.426655pt;}
.x66{left:249.730810pt;}
.x6a{left:250.677382pt;}
.x31{left:255.746655pt;}
.x4d{left:257.346655pt;}
.x19{left:258.946655pt;}
.x1b{left:271.746655pt;}
.x18{left:272.706655pt;}
.x33{left:276.706655pt;}
.x35{left:277.986655pt;}
.x2a{left:285.506655pt;}
.x58{left:288.324443pt;}
.x27{left:290.626655pt;}
.x5c{left:294.324390pt;}
.x3a{left:297.666667pt;}
.x39{left:299.234667pt;}
.x16{left:301.026655pt;}
.x1f{left:303.586655pt;}
.x1a{left:308.066655pt;}
.x50{left:309.346630pt;}
.x72{left:313.828861pt;}
.x5a{left:320.455731pt;}
.xc{left:332.066655pt;}
.x3b{left:333.013297pt;}
.xf{left:336.386655pt;}
.x71{left:337.575818pt;}
.x20{left:344.546655pt;}
.xe{left:349.026655pt;}
.x76{left:358.247553pt;}
.x57{left:359.162144pt;}
.x22{left:363.266655pt;}
.x10{left:367.293333pt;}
.x14{left:369.213333pt;}
.x6e{left:371.486638pt;}
.x26{left:372.706655pt;}
.x23{left:377.186655pt;}
.x28{left:378.786655pt;}
.x2d{left:386.626655pt;}
.x69{left:387.800943pt;}
.x5b{left:389.252095pt;}
.x2f{left:390.466655pt;}
.x24{left:391.426655pt;}
.x9{left:396.866655pt;}
.x4f{left:398.466655pt;}
.x37{left:400.706655pt;}
.x49{left:402.813297pt;}
.x46{left:404.213297pt;}
.x55{left:407.364711pt;}
.x6f{left:415.832359pt;}
.x1e{left:418.173322pt;}
.x1d{left:422.013322pt;}
.x21{left:423.133322pt;}
.x1c{left:424.573322pt;}
.x25{left:433.213322pt;}
.x61{left:437.849395pt;}
.x68{left:443.769954pt;}
.x60{left:448.247800pt;}
.x11{left:452.093333pt;}
.x65{left:462.672477pt;}
.x4c{left:465.213322pt;}
.x47{left:468.213333pt;}
.x2b{left:473.373322pt;}
.x5f{left:475.134768pt;}
.x64{left:476.634754pt;}
.x75{left:477.722472pt;}
.x6b{left:479.213172pt;}
.x53{left:480.573322pt;}
.x6d{left:501.375609pt;}
.x29{left:506.493322pt;}
.x54{left:515.149439pt;}
.x4e{left:517.853322pt;}
.x6c{left:526.050346pt;}
.x67{left:542.364651pt;}
.x45{left:635.146594pt;}
.x17{left:659.333322pt;}
.x77{left:666.693322pt;}
.x48{left:675.333322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  