
    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_af4696b45c8c73319e121d69.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9e0289f4f746dd84c643a60c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7bf37983a4d7996d8c549562.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8fbac7f1d3d5844dcf2f344.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_39aa31c48ddeae5a19640057.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_1978a81647314f2f4e15e3d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_64ae66b8e72d911c71faf603.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.me{transform:matrix(0.197777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197777,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.238078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238078,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.238877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238877,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243453,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243454,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,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);}
.m9{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-92.316240px;}
.v1{vertical-align:-76.289040px;}
.v8{vertical-align:-45.741955px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.872400px;}
.v4{vertical-align:29.880000px;}
.v6{vertical-align:34.569000px;}
.v5{vertical-align:37.800000px;}
.v9{vertical-align:56.645561px;}
.v7{vertical-align:69.138000px;}
.ls1c{letter-spacing:-0.889920px;}
.ls52{letter-spacing:-0.480960px;}
.ls7{letter-spacing:-0.461160px;}
.ls1b{letter-spacing:-0.444960px;}
.ls4a{letter-spacing:-0.420840px;}
.ls5b{letter-spacing:-0.398912px;}
.ls53{letter-spacing:-0.360720px;}
.lsc{letter-spacing:-0.329400px;}
.lsf{letter-spacing:-0.263520px;}
.ls51{letter-spacing:-0.240480px;}
.ls8{letter-spacing:-0.197640px;}
.ls4b{letter-spacing:-0.180360px;}
.ls2c{letter-spacing:-0.168480px;}
.lse{letter-spacing:-0.131760px;}
.ls33{letter-spacing:-0.120240px;}
.lsb{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.065880px;}
.ls2e{letter-spacing:-0.060120px;}
.ls3{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.021960px;}
.ls3c{letter-spacing:0.060120px;}
.ls5{letter-spacing:0.065880px;}
.ls0{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.090000px;}
.ls31{letter-spacing:0.120240px;}
.ls22{letter-spacing:0.131760px;}
.lsa{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.168480px;}
.ls2f{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.180360px;}
.ls6{letter-spacing:0.197640px;}
.ls10{letter-spacing:0.263520px;}
.lsd{letter-spacing:0.329400px;}
.ls4e{letter-spacing:0.360720px;}
.ls11{letter-spacing:0.395280px;}
.ls55{letter-spacing:0.450000px;}
.ls9{letter-spacing:0.461160px;}
.ls30{letter-spacing:0.540000px;}
.ls58{letter-spacing:22.272609px;}
.ls17{letter-spacing:32.720400px;}
.ls40{letter-spacing:39.318480px;}
.ls19{letter-spacing:40.552800px;}
.ls1a{letter-spacing:57.096000px;}
.ls25{letter-spacing:58.764960px;}
.ls5d{letter-spacing:68.014564px;}
.ls45{letter-spacing:68.115960px;}
.ls2b{letter-spacing:71.348040px;}
.ls16{letter-spacing:85.019163px;}
.ls18{letter-spacing:88.259438px;}
.ls15{letter-spacing:95.443920px;}
.ls27{letter-spacing:106.264440px;}
.ls14{letter-spacing:106.567920px;}
.ls23{letter-spacing:110.217240px;}
.ls48{letter-spacing:113.145840px;}
.ls1f{letter-spacing:118.459757px;}
.ls12{letter-spacing:123.004358px;}
.ls4f{letter-spacing:127.875240px;}
.ls2a{letter-spacing:135.421920px;}
.ls26{letter-spacing:143.354880px;}
.ls24{letter-spacing:176.163120px;}
.ls36{letter-spacing:178.796880px;}
.ls3d{letter-spacing:179.758800px;}
.ls35{letter-spacing:191.121480px;}
.ls37{letter-spacing:215.710560px;}
.ls57{letter-spacing:232.565929px;}
.ls4d{letter-spacing:233.926920px;}
.ls38{letter-spacing:277.994880px;}
.ls41{letter-spacing:289.537920px;}
.ls43{letter-spacing:302.103000px;}
.ls44{letter-spacing:302.463720px;}
.ls39{letter-spacing:305.710200px;}
.ls42{letter-spacing:332.343360px;}
.ls3a{letter-spacing:372.323160px;}
.ls3b{letter-spacing:372.683880px;}
.ls5c{letter-spacing:390.202813px;}
.ls59{letter-spacing:400.773991px;}
.ls5a{letter-spacing:417.834670px;}
.ls46{letter-spacing:422.703720px;}
.ls56{letter-spacing:462.206501px;}
.ls47{letter-spacing:483.545160px;}
.ls4c{letter-spacing:597.713040px;}
.ls50{letter-spacing:615.310920px;}
.ls49{letter-spacing:627.231960px;}
.ls21{letter-spacing:629.025120px;}
.ls3f{letter-spacing:633.664800px;}
.ls3e{letter-spacing:634.025520px;}
.ls34{letter-spacing:640.518480px;}
.ls20{letter-spacing:644.747040px;}
.ls1e{letter-spacing:657.428400px;}
.ls2{letter-spacing:667.824120px;}
.ls54{letter-spacing:805.383000px;}
.ls13{letter-spacing:843.237965px;}
.ls1{letter-spacing:987.541200px;}
.ls1d{letter-spacing:998.526144px;}
.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;}
}
.ws26{word-spacing:-998.526144px;}
.ws22{word-spacing:-718.907040px;}
.ws27{word-spacing:-657.428400px;}
.ws28{word-spacing:-629.025120px;}
.ws1e{word-spacing:-616.822483px;}
.ws47{word-spacing:-417.834670px;}
.ws46{word-spacing:-400.773991px;}
.ws48{word-spacing:-390.202813px;}
.wsc{word-spacing:-65.880000px;}
.ws23{word-spacing:-18.300000px;}
.ws1d{word-spacing:-17.650080px;}
.ws29{word-spacing:-16.865280px;}
.ws2{word-spacing:-16.667640px;}
.ws4{word-spacing:-16.535880px;}
.ws0{word-spacing:-16.470000px;}
.ws3{word-spacing:-16.404120px;}
.ws15{word-spacing:-16.338240px;}
.ws5{word-spacing:-16.272360px;}
.ws18{word-spacing:-16.206480px;}
.ws19{word-spacing:-16.140600px;}
.ws1{word-spacing:-16.008840px;}
.ws34{word-spacing:-15.210360px;}
.ws36{word-spacing:-15.150240px;}
.ws2e{word-spacing:-14.969880px;}
.ws3b{word-spacing:-14.909760px;}
.ws35{word-spacing:-14.849640px;}
.ws2c{word-spacing:-10.698480px;}
.ws2b{word-spacing:-10.530000px;}
.ws2a{word-spacing:-10.361520px;}
.wsf{word-spacing:-0.461160px;}
.ws32{word-spacing:-0.420840px;}
.ws37{word-spacing:-0.360720px;}
.ws14{word-spacing:-0.329400px;}
.ws12{word-spacing:-0.263520px;}
.ws3d{word-spacing:-0.240480px;}
.ws10{word-spacing:-0.197640px;}
.ws2d{word-spacing:-0.180360px;}
.wsd{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.131760px;}
.ws30{word-spacing:-0.120240px;}
.ws7{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.065880px;}
.ws2f{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws3a{word-spacing:0.060120px;}
.ws8{word-spacing:0.065880px;}
.wse{word-spacing:0.072000px;}
.ws33{word-spacing:0.120240px;}
.ws9{word-spacing:0.131760px;}
.ws31{word-spacing:0.180360px;}
.ws17{word-spacing:0.197640px;}
.ws38{word-spacing:0.240480px;}
.ws1b{word-spacing:0.263520px;}
.ws39{word-spacing:0.300600px;}
.ws13{word-spacing:0.329400px;}
.ws1a{word-spacing:0.395280px;}
.ws3e{word-spacing:0.420840px;}
.ws25{word-spacing:0.444960px;}
.ws16{word-spacing:0.461160px;}
.ws3c{word-spacing:0.480960px;}
.ws11{word-spacing:0.527040px;}
.ws3f{word-spacing:0.541080px;}
.ws44{word-spacing:53.853174px;}
.ws40{word-spacing:54.222468px;}
.ws24{word-spacing:150.792000px;}
.ws41{word-spacing:227.690858px;}
.ws45{word-spacing:277.842487px;}
.ws43{word-spacing:297.123253px;}
.ws1f{word-spacing:369.242640px;}
.ws20{word-spacing:375.768720px;}
.ws1c{word-spacing:425.005997px;}
.ws21{word-spacing:427.192550px;}
.ws42{word-spacing:910.425796px;}
._a{margin-left:-1433.216160px;}
._f{margin-left:-229.262400px;}
._e{margin-left:-188.343600px;}
._d{margin-left:-180.511200px;}
._9{margin-left:-3.458880px;}
._3{margin-left:-2.028960px;}
._0{margin-left:-1.008000px;}
._1{width:1.119960px;}
._b{width:33.203520px;}
._1e{width:51.477480px;}
._2b{width:53.208720px;}
._21{width:56.129760px;}
._2c{width:57.416400px;}
._12{width:58.678920px;}
._25{width:60.032880px;}
._32{width:62.635680px;}
._23{width:64.673640px;}
._2f{width:67.104720px;}
._2a{width:70.821000px;}
._31{width:75.555000px;}
._2d{width:76.684320px;}
._29{width:79.930440px;}
._7{width:84.791520px;}
._11{width:93.154320px;}
._1a{width:94.260960px;}
._20{width:100.335240px;}
._22{width:105.803280px;}
._30{width:107.016480px;}
._10{width:109.492560px;}
._1f{width:110.796840px;}
._28{width:115.817040px;}
._1b{width:121.285080px;}
._1d{width:125.962560px;}
._1c{width:139.322160px;}
._8{width:145.205280px;}
._26{width:159.403680px;}
._6{width:164.709360px;}
._5{width:166.664160px;}
._2e{width:179.588880px;}
._13{width:188.943840px;}
._18{width:194.873040px;}
._c{width:195.927120px;}
._17{width:198.430560px;}
._33{width:203.834520px;}
._24{width:208.510200px;}
._15{width:209.630160px;}
._16{width:228.669480px;}
._27{width:229.789440px;}
._14{width:238.222080px;}
._19{width:253.506240px;}
._37{width:299.660634px;}
._4{width:316.440720px;}
._38{width:387.809338px;}
._39{width:398.380517px;}
._34{width:835.292160px;}
._2{width:847.612080px;}
._35{width:878.473440px;}
._36{width:920.978280px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.887200px;}
.fs7{font-size:40.091400px;}
.fs9{font-size:42.120000px;}
.fs5{font-size:42.318600px;}
.fs3{font-size:42.873600px;}
.fsa{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fse{font-size:66.485400px;}
.fs8{font-size:69.347400px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:73.200000px;}
.fs4{font-size:74.160000px;}
.fs2{font-size:83.880000px;}
.fsb{font-size:85.373400px;}
.fsc{font-size:90.661800px;}
.fsf{font-size:102.750000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:3.227417px;}
.yb1{bottom:3.234300px;}
.yaf{bottom:3.234450px;}
.y1a0{bottom:3.240000px;}
.y195{bottom:3.420000px;}
.y191{bottom:3.510000px;}
.y132{bottom:3.690000px;}
.y135{bottom:3.690150px;}
.y12e{bottom:3.780000px;}
.y142{bottom:3.960000px;}
.y129{bottom:4.050000px;}
.y15f{bottom:4.140000px;}
.y1f2{bottom:4.202700px;}
.y1f9{bottom:4.202850px;}
.y1f6{bottom:4.209603px;}
.y1dc{bottom:4.230000px;}
.y14e{bottom:4.320000px;}
.yb7{bottom:4.432050px;}
.ybf{bottom:4.432200px;}
.y160{bottom:4.680000px;}
.ybb{bottom:5.643600px;}
.y1f8{bottom:6.993260px;}
.yb2{bottom:8.014050px;}
.yb0{bottom:8.014200px;}
.yab{bottom:8.023620px;}
.ya6{bottom:8.023920px;}
.yae{bottom:8.042160px;}
.yb8{bottom:9.150150px;}
.ybc{bottom:10.113150px;}
.y154{bottom:13.230000px;}
.y1fb{bottom:16.479900px;}
.y1f5{bottom:16.483025px;}
.y1fa{bottom:17.471550px;}
.y1f1{bottom:20.021250px;}
.y1f0{bottom:20.446200px;}
.y1ce{bottom:20.520000px;}
.y1d1{bottom:20.700000px;}
.y1d4{bottom:20.790000px;}
.y1f7{bottom:21.154650px;}
.y131{bottom:22.680000px;}
.y13a{bottom:22.680150px;}
.y12d{bottom:22.770000px;}
.y17d{bottom:26.280150px;}
.ya8{bottom:31.620308px;}
.ya1{bottom:31.620458px;}
.y1f3{bottom:32.581800px;}
.yaa{bottom:36.408360px;}
.ya5{bottom:36.408660px;}
.yad{bottom:36.426900px;}
.y19e{bottom:37.800000px;}
.y194{bottom:37.980000px;}
.y1f4{bottom:39.334200px;}
.y181{bottom:55.170000px;}
.y2{bottom:56.880090px;}
.y123{bottom:56.970090px;}
.ya7{bottom:60.013350px;}
.ya0{bottom:60.013500px;}
.ya9{bottom:64.793100px;}
.ya4{bottom:64.793400px;}
.yac{bottom:64.811640px;}
.y18d{bottom:72.450150px;}
.y1{bottom:75.870000px;}
.y122{bottom:75.960000px;}
.y1c8{bottom:89.730000px;}
.ya3{bottom:92.603400px;}
.y72{bottom:116.666190px;}
.y7d{bottom:116.682660px;}
.yf3{bottom:116.699130px;}
.y91{bottom:116.730000px;}
.y1d6{bottom:117.360000px;}
.y4e{bottom:121.018500px;}
.y14c{bottom:122.490000px;}
.y1fd{bottom:126.090000px;}
.y19a{bottom:130.305240px;}
.y1d3{bottom:133.380000px;}
.yd3{bottom:134.535060px;}
.y1d5{bottom:136.890000px;}
.y1ef{bottom:141.375000px;}
.y1a5{bottom:141.390000px;}
.y1b1{bottom:141.480000px;}
.yf4{bottom:145.109880px;}
.y71{bottom:145.192230px;}
.y7c{bottom:145.208700px;}
.yf2{bottom:145.225170px;}
.y90{bottom:145.260000px;}
.y1d2{bottom:145.530000px;}
.y4d{bottom:149.462190px;}
.y14b{bottom:149.850000px;}
.y199{bottom:158.748930px;}
.y1fc{bottom:162.360000px;}
.yd2{bottom:162.978750px;}
.y14a{bottom:164.430000px;}
.y1d0{bottom:168.660000px;}
.y118{bottom:173.092410px;}
.yf5{bottom:173.553570px;}
.y70{bottom:173.635920px;}
.y7b{bottom:173.652390px;}
.yf1{bottom:173.668860px;}
.y8f{bottom:173.700000px;}
.y4c{bottom:177.988230px;}
.y149{bottom:184.680000px;}
.y198{bottom:187.192620px;}
.yd1{bottom:191.422440px;}
.y1ee{bottom:196.200000px;}
.y117{bottom:201.536100px;}
.yf7{bottom:201.997260px;}
.y6f{bottom:202.079610px;}
.y7a{bottom:202.096080px;}
.yf0{bottom:202.112550px;}
.y8e{bottom:202.140000px;}
.y1cd{bottom:203.940000px;}
.y148{bottom:204.930000px;}
.y4b{bottom:206.431920px;}
.y1ed{bottom:210.780000px;}
.y197{bottom:215.636310px;}
.y1cf{bottom:216.000000px;}
.y147{bottom:218.160000px;}
.yd0{bottom:219.948480px;}
.y116{bottom:229.979790px;}
.y6e{bottom:230.523300px;}
.y79{bottom:230.539770px;}
.yef{bottom:230.556240px;}
.y8d{bottom:230.580000px;}
.y1ec{bottom:231.030000px;}
.y4a{bottom:234.875610px;}
.y1c7{bottom:239.130000px;}
.y146{bottom:243.630000px;}
.y196{bottom:244.080000px;}
.ycf{bottom:248.392170px;}
.y1eb{bottom:251.280000px;}
.y115{bottom:258.423480px;}
.y8c{bottom:258.868170px;}
.y6d{bottom:258.966990px;}
.y78{bottom:258.983460px;}
.yee{bottom:258.999930px;}
.y1cc{bottom:259.906860px;}
.y193{bottom:260.190000px;}
.y49{bottom:263.319300px;}
.y144{bottom:263.880000px;}
.y145{bottom:267.660000px;}
.y1ea{bottom:271.530000px;}
.yce{bottom:276.835860px;}
.y1cb{bottom:277.101180px;}
.y1c6{bottom:277.105500px;}
.y143{bottom:277.110000px;}
.y192{bottom:280.890000px;}
.y114{bottom:286.867170px;}
.y7e{bottom:287.410680px;}
.y6c{bottom:287.493030px;}
.y77{bottom:287.509500px;}
.yed{bottom:287.525970px;}
.y1e9{bottom:291.780000px;}
.y48{bottom:291.845340px;}
.y1ca{bottom:294.385680px;}
.y1c5{bottom:294.390000px;}
.y141{bottom:302.580000px;}
.y27{bottom:303.035670px;}
.ycd{bottom:305.279550px;}
.y1c9{bottom:311.580000px;}
.y176{bottom:311.662440px;}
.y1e8{bottom:312.030000px;}
.y18c{bottom:312.660000px;}
.y113{bottom:315.393210px;}
.y6b{bottom:315.936720px;}
.y76{bottom:315.953190px;}
.yec{bottom:315.969660px;}
.y47{bottom:320.289030px;}
.y140{bottom:322.830000px;}
.y175{bottom:330.570000px;}
.y26{bottom:331.479360px;}
.y1e7{bottom:332.280000px;}
.y190{bottom:333.351000px;}
.ycc{bottom:333.723240px;}
.y13f{bottom:336.060000px;}
.y1b0{bottom:343.350000px;}
.y112{bottom:343.836900px;}
.y75{bottom:344.298060px;}
.y6a{bottom:344.380410px;}
.y82{bottom:344.396880px;}
.yeb{bottom:344.413350px;}
.y1b9{bottom:346.833510px;}
.y46{bottom:348.732720px;}
.y174{bottom:349.285500px;}
.y18f{bottom:350.635500px;}
.y18b{bottom:350.640000px;}
.y1e6{bottom:352.530000px;}
.y25{bottom:360.005400px;}
.y13e{bottom:361.530000px;}
.ycb{bottom:362.249280px;}
.y1b8{bottom:364.118010px;}
.y1c1{bottom:364.122360px;}
.y173{bottom:366.570000px;}
.y18e{bottom:367.920000px;}
.y111{bottom:372.280590px;}
.y81{bottom:372.741750px;}
.y1e5{bottom:372.780000px;}
.y69{bottom:372.824100px;}
.y8b{bottom:372.840570px;}
.yea{bottom:372.857040px;}
.y13d{bottom:374.760000px;}
.y45{bottom:377.176410px;}
.y172{bottom:381.060000px;}
.y1b7{bottom:381.312330px;}
.y1c0{bottom:381.316680px;}
.y1c4{bottom:381.321000px;}
.y24{bottom:388.449090px;}
.yca{bottom:390.692970px;}
.y1e4{bottom:393.030000px;}
.y1b6{bottom:398.596830px;}
.y1bf{bottom:398.601180px;}
.y1c3{bottom:398.605500px;}
.y13c{bottom:400.230000px;}
.y110{bottom:400.724280px;}
.y80{bottom:401.267790px;}
.y171{bottom:401.310000px;}
.y68{bottom:401.350140px;}
.y8a{bottom:401.366610px;}
.ye9{bottom:401.383080px;}
.y18a{bottom:404.547900px;}
.y44{bottom:405.620100px;}
.y1af{bottom:407.245650px;}
.y189{bottom:413.190150px;}
.y1e3{bottom:413.280000px;}
.y13b{bottom:413.460000px;}
.yc8{bottom:415.425000px;}
.y1bc{bottom:415.876680px;}
.y1b5{bottom:415.881330px;}
.y1be{bottom:415.885680px;}
.y1c2{bottom:415.890000px;}
.y23{bottom:416.793960px;}
.y170{bottom:421.560000px;}
.yc7{bottom:424.434960px;}
.yc9{bottom:424.440000px;}
.y121{bottom:424.441080px;}
.y1ae{bottom:424.530150px;}
.y10f{bottom:429.250320px;}
.yf8{bottom:429.711480px;}
.y67{bottom:429.793830px;}
.y89{bottom:429.810300px;}
.ye8{bottom:429.826770px;}
.y1bb{bottom:433.071000px;}
.y1b4{bottom:433.075650px;}
.y1bd{bottom:433.080000px;}
.y1e2{bottom:433.530000px;}
.y43{bottom:434.146140px;}
.y139{bottom:438.930000px;}
.y16f{bottom:441.810000px;}
.y22{bottom:445.320000px;}
.y1ba{bottom:450.355500px;}
.y1b3{bottom:450.360150px;}
.y188{bottom:451.170000px;}
.y138{bottom:452.160000px;}
.y120{bottom:452.884770px;}
.y1e1{bottom:453.780000px;}
.yc6{bottom:456.106770px;}
.y10e{bottom:457.694010px;}
.yf6{bottom:458.155170px;}
.y66{bottom:458.237520px;}
.y88{bottom:458.253990px;}
.ye7{bottom:458.270460px;}
.y16e{bottom:462.060000px;}
.y42{bottom:462.589830px;}
.y1b2{bottom:467.640000px;}
.y1e0{bottom:474.030000px;}
.y137{bottom:477.630000px;}
.y11f{bottom:481.410810px;}
.y16d{bottom:482.310000px;}
.yc5{bottom:484.550460px;}
.y10d{bottom:486.137700px;}
.y65{bottom:486.681210px;}
.y87{bottom:486.697680px;}
.ye6{bottom:486.714150px;}
.y187{bottom:489.060000px;}
.y136{bottom:490.860150px;}
.y41{bottom:491.033520px;}
.y1df{bottom:494.280000px;}
.y1a4{bottom:499.410000px;}
.y21{bottom:500.619060px;}
.y16c{bottom:502.560000px;}
.y1ad{bottom:502.812330px;}
.y11e{bottom:509.854500px;}
.yc4{bottom:512.994150px;}
.y1de{bottom:514.530000px;}
.y10c{bottom:514.581390px;}
.y64{bottom:515.124900px;}
.y86{bottom:515.141370px;}
.ye5{bottom:515.157840px;}
.y134{bottom:516.330000px;}
.y186{bottom:518.575650px;}
.y40{bottom:519.477210px;}
.y20{bottom:519.526620px;}
.y1ac{bottom:520.096830px;}
.y16b{bottom:522.810000px;}
.y133{bottom:529.560000px;}
.y11d{bottom:534.608910px;}
.y1dd{bottom:534.780000px;}
.y185{bottom:535.860150px;}
.y1ab{bottom:537.381330px;}
.yc2{bottom:537.825000px;}
.y1f{bottom:538.516530px;}
.y10b{bottom:543.025080px;}
.y16a{bottom:543.060000px;}
.y63{bottom:543.650940px;}
.y85{bottom:543.667410px;}
.ye4{bottom:543.683880px;}
.yc3{bottom:546.840000px;}
.yc1{bottom:546.847200px;}
.y3f{bottom:548.003250px;}
.y180{bottom:551.790000px;}
.y1a3{bottom:554.571000px;}
.y1aa{bottom:554.575650px;}
.y130{bottom:555.030000px;}
.y184{bottom:555.201150px;}
.y1e{bottom:557.506440px;}
.y169{bottom:563.310000px;}
.y12f{bottom:568.260000px;}
.y10a{bottom:571.551120px;}
.y1a2{bottom:571.855500px;}
.y1a9{bottom:571.860150px;}
.y62{bottom:572.094630px;}
.y84{bottom:572.111100px;}
.ye3{bottom:572.127570px;}
.y183{bottom:572.485650px;}
.ybe{bottom:574.725000px;}
.y1db{bottom:575.280000px;}
.y3e{bottom:576.446940px;}
.y1d{bottom:576.496350px;}
.y17f{bottom:581.130000px;}
.y168{bottom:583.560000px;}
.yc0{bottom:583.740000px;}
.ybd{bottom:583.745490px;}
.y1a8{bottom:589.131330px;}
.y1a1{bottom:589.140000px;}
.y182{bottom:589.770150px;}
.y12c{bottom:593.640000px;}
.y1c{bottom:595.486260px;}
.y1da{bottom:595.530000px;}
.y109{bottom:599.994810px;}
.y83{bottom:600.455970px;}
.y61{bottom:600.538320px;}
.ye2{bottom:600.571260px;}
.y167{bottom:603.810000px;}
.y3d{bottom:604.791810px;}
.y1a7{bottom:606.325650px;}
.y12b{bottom:606.960000px;}
.y1d9{bottom:608.760000px;}
.yba{bottom:611.625000px;}
.yb6{bottom:613.125000px;}
.y1b{bottom:614.393820px;}
.yb9{bottom:622.170000px;}
.yb5{bottom:622.183140px;}
.y1a6{bottom:623.610150px;}
.y166{bottom:624.060000px;}
.y108{bottom:628.438500px;}
.y60{bottom:628.982010px;}
.ye1{bottom:629.014950px;}
.y17e{bottom:629.190150px;}
.y12a{bottom:632.340000px;}
.y3c{bottom:633.317850px;}
.y1d8{bottom:634.140000px;}
.y165{bottom:644.310000px;}
.y1d7{bottom:647.469000px;}
.y17c{bottom:647.910000px;}
.y1a{bottom:652.373640px;}
.y128{bottom:652.590000px;}
.yb4{bottom:653.854950px;}
.y17b{bottom:654.025500px;}
.y19d{bottom:655.380000px;}
.y107{bottom:656.882190px;}
.y5f{bottom:657.508050px;}
.ye0{bottom:657.540990px;}
.y3b{bottom:661.761540px;}
.y164{bottom:664.560000px;}
.y17a{bottom:671.310000px;}
.y19{bottom:671.363550px;}
.y19f{bottom:675.900000px;}
.y9f{bottom:678.525000px;}
.y3a{bottom:680.833800px;}
.y163{bottom:684.810000px;}
.y106{bottom:685.408230px;}
.y5e{bottom:685.951740px;}
.ydf{bottom:685.984680px;}
.y127{bottom:686.074680px;}
.y18{bottom:690.353460px;}
.y179{bottom:694.977750px;}
.y39{bottom:699.823710px;}
.y178{bottom:703.620000px;}
.y162{bottom:705.060000px;}
.y17{bottom:709.261020px;}
.y105{bottom:713.851920px;}
.y5d{bottom:714.395430px;}
.yde{bottom:714.428370px;}
.y126{bottom:714.518370px;}
.y19c{bottom:718.737390px;}
.y38{bottom:718.813620px;}
.y161{bottom:725.310000px;}
.yb3{bottom:726.570000px;}
.y19b{bottom:727.560000px;}
.y16{bottom:728.168580px;}
.y37{bottom:737.803530px;}
.y104{bottom:742.295610px;}
.y5c{bottom:742.839120px;}
.y125{bottom:742.863240px;}
.ydd{bottom:742.872060px;}
.y177{bottom:742.945590px;}
.y15e{bottom:745.560000px;}
.y15{bottom:747.240840px;}
.y36{bottom:756.793440px;}
.y14{bottom:766.230750px;}
.y15d{bottom:766.980000px;}
.y103{bottom:770.739300px;}
.y5b{bottom:771.282810px;}
.ydc{bottom:771.315750px;}
.y124{bottom:771.389280px;}
.y35{bottom:775.701000px;}
.y13{bottom:785.220660px;}
.y15c{bottom:787.230000px;}
.y34{bottom:794.690910px;}
.y102{bottom:799.182990px;}
.y5a{bottom:799.808850px;}
.y9e{bottom:799.811820px;}
.ydb{bottom:799.841790px;}
.y12{bottom:804.128220px;}
.y15b{bottom:807.480000px;}
.y33{bottom:813.680820px;}
.y15a{bottom:820.800000px;}
.y11{bottom:823.118130px;}
.y101{bottom:827.709030px;}
.yda{bottom:828.186660px;}
.y59{bottom:828.252540px;}
.y9d{bottom:828.255510px;}
.y32{bottom:832.670730px;}
.y10{bottom:842.108040px;}
.y159{bottom:846.180000px;}
.y31{bottom:851.660640px;}
.y100{bottom:856.152720px;}
.y58{bottom:856.696230px;}
.y9c{bottom:856.699200px;}
.yd9{bottom:856.712700px;}
.yf{bottom:861.097950px;}
.y158{bottom:866.430000px;}
.y30{bottom:870.568200px;}
.ye{bottom:880.087860px;}
.yff{bottom:884.596410px;}
.y57{bottom:885.139920px;}
.y9b{bottom:885.142890px;}
.yd8{bottom:885.156390px;}
.y2f{bottom:889.558110px;}
.yd{bottom:898.995420px;}
.y157{bottom:899.902620px;}
.y2e{bottom:908.548020px;}
.yfe{bottom:913.040100px;}
.y56{bottom:913.665960px;}
.y9a{bottom:913.668930px;}
.yd7{bottom:913.682430px;}
.yc{bottom:917.985330px;}
.y2d{bottom:927.537930px;}
.y156{bottom:928.346310px;}
.yb{bottom:936.975240px;}
.yfd{bottom:941.566140px;}
.y55{bottom:942.109650px;}
.y99{bottom:942.112620px;}
.yd6{bottom:942.126120px;}
.y2c{bottom:946.527840px;}
.ya{bottom:955.965150px;}
.y155{bottom:956.790000px;}
.y2b{bottom:965.517750px;}
.yfc{bottom:970.009830px;}
.y54{bottom:970.553340px;}
.y98{bottom:970.556310px;}
.yd5{bottom:970.569810px;}
.y153{bottom:972.810000px;}
.y9{bottom:974.955060px;}
.y2a{bottom:984.425310px;}
.y8{bottom:993.862620px;}
.yfb{bottom:998.453520px;}
.y74{bottom:998.898210px;}
.yd4{bottom:998.914680px;}
.y53{bottom:998.997030px;}
.y97{bottom:999.000000px;}
.y152{bottom:1002.060000px;}
.y29{bottom:1003.415220px;}
.y151{bottom:1015.290000px;}
.y7{bottom:1022.306310px;}
.y28{bottom:1022.405130px;}
.yfa{bottom:1026.897210px;}
.y73{bottom:1027.341900px;}
.y96{bottom:1027.440000px;}
.y52{bottom:1027.440720px;}
.y11c{bottom:1027.457190px;}
.y150{bottom:1040.760000px;}
.y6{bottom:1050.750000px;}
.y14f{bottom:1053.990000px;}
.yf9{bottom:1055.604420px;}
.y51{bottom:1055.966760px;}
.y95{bottom:1055.970000px;}
.y11b{bottom:1055.983230px;}
.y14d{bottom:1079.460000px;}
.y5{bottom:1080.360000px;}
.y94{bottom:1084.410000px;}
.y50{bottom:1084.410450px;}
.y11a{bottom:1084.426920px;}
.y4{bottom:1111.410000px;}
.y119{bottom:1112.771790px;}
.y93{bottom:1112.850000px;}
.y4f{bottom:1112.854140px;}
.y7f{bottom:1141.199010px;}
.y92{bottom:1141.290000px;}
.y3{bottom:1141.297830px;}
.h1d{height:19.440000px;}
.h24{height:19.528500px;}
.h17{height:19.530000px;}
.h22{height:20.700000px;}
.h40{height:26.915400px;}
.hc{height:27.450000px;}
.h21{height:28.530000px;}
.h34{height:34.470000px;}
.h35{height:34.471500px;}
.h36{height:34.560000px;}
.h3d{height:35.203801px;}
.h3b{height:35.221324px;}
.h43{height:36.167569px;}
.h1b{height:37.888500px;}
.h1a{height:37.890000px;}
.h20{height:37.980000px;}
.h18{height:37.981500px;}
.hf{height:39.327941px;}
.h28{height:40.230000px;}
.h11{height:41.512728px;}
.hd{height:41.533392px;}
.h9{height:42.057159px;}
.h7{height:42.078094px;}
.h10{height:48.959264px;}
.h41{height:49.864050px;}
.h38{height:51.375000px;}
.he{height:51.679200px;}
.h30{height:51.750000px;}
.h2e{height:51.751500px;}
.ha{height:52.356960px;}
.hb{height:55.620000px;}
.h1f{height:59.004492px;}
.h27{height:60.589687px;}
.h39{height:64.030650px;}
.h5{height:64.625449px;}
.h2{height:64.657617px;}
.h3e{height:65.219321px;}
.h3c{height:65.251784px;}
.h4{height:66.394687px;}
.h44{height:67.004817px;}
.h3a{height:67.996350px;}
.h29{height:68.940000px;}
.h23{height:70.664062px;}
.h19{height:71.218477px;}
.h1c{height:71.219077px;}
.h14{height:71.841797px;}
.h3{height:72.562500px;}
.h8{height:72.783984px;}
.h42{height:77.062500px;}
.h2d{height:86.220000px;}
.h13{height:90.713597px;}
.h12{height:90.714197px;}
.h2b{height:93.212772px;}
.h37{height:93.564492px;}
.h2a{height:93.573492px;}
.h2f{height:94.437248px;}
.h25{height:95.158687px;}
.h33{height:103.500000px;}
.h3f{height:103.584253px;}
.h6{height:108.150000px;}
.h1e{height:109.018477px;}
.h2c{height:127.781772px;}
.h26{height:129.727687px;}
.h31{height:155.161500px;}
.h32{height:155.250000px;}
.h15{height:893.070000px;}
.h16{height:893.250000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w5{width:15.975000px;}
.w4{width:20.325000px;}
.w3{width:20.400000px;}
.wb{width:33.661500px;}
.w6{width:50.475000px;}
.w11{width:50.490000px;}
.w7{width:51.450000px;}
.w1a{width:51.930000px;}
.w19{width:52.110000px;}
.w18{width:53.008500px;}
.w15{width:55.531500px;}
.w16{width:55.710000px;}
.w17{width:60.570000px;}
.w10{width:62.910000px;}
.w14{width:62.998500px;}
.w12{width:63.000000px;}
.w13{width:63.090000px;}
.w8{width:66.375000px;}
.wf{width:66.780000px;}
.wd{width:69.030000px;}
.we{width:83.610000px;}
.w1b{width:111.330000px;}
.wc{width:116.640000px;}
.w25{width:132.120000px;}
.w28{width:157.320000px;}
.w29{width:157.410000px;}
.w2a{width:159.840000px;}
.w2b{width:164.788500px;}
.w21{width:172.710000px;}
.w22{width:172.800000px;}
.w2c{width:204.750000px;}
.w23{width:211.861500px;}
.w24{width:211.950000px;}
.w1d{width:226.530000px;}
.w26{width:233.191500px;}
.w1e{width:250.378500px;}
.w1f{width:307.618500px;}
.w2d{width:324.000000px;}
.w20{width:346.320000px;}
.w1c{width:477.630000px;}
.w27{width:485.910000px;}
.w2{width:571.725000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.w9{width:1262.970000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x1b{left:2.726850px;}
.x6b{left:4.860000px;}
.x3d{left:7.740000px;}
.x2b{left:9.939000px;}
.x27{left:12.340200px;}
.x28{left:14.290950px;}
.x3f{left:15.750000px;}
.x32{left:17.607750px;}
.x52{left:19.080000px;}
.x45{left:21.150000px;}
.x4a{left:23.580000px;}
.x3b{left:25.920000px;}
.x43{left:27.270000px;}
.x41{left:29.160000px;}
.x66{left:32.760000px;}
.x7c{left:34.020000px;}
.x5c{left:38.340000px;}
.x7a{left:41.490000px;}
.x7b{left:43.380000px;}
.x7d{left:44.640000px;}
.x81{left:47.700000px;}
.x63{left:49.230000px;}
.x64{left:51.120000px;}
.x65{left:55.440000px;}
.x83{left:57.240000px;}
.x60{left:58.680000px;}
.x80{left:61.740000px;}
.x3a{left:64.170000px;}
.x88{left:66.665850px;}
.x86{left:68.297250px;}
.x84{left:70.380000px;}
.x85{left:71.640000px;}
.x55{left:73.620000px;}
.x67{left:78.120000px;}
.x82{left:79.920000px;}
.x53{left:81.810000px;}
.x89{left:83.156850px;}
.x5a{left:87.840000px;}
.x1c{left:89.143500px;}
.x87{left:90.562950px;}
.x21{left:96.370408px;}
.x20{left:97.507838px;}
.x3c{left:98.640000px;}
.x5b{left:99.810000px;}
.x73{left:101.430000px;}
.x2{left:106.384590px;}
.x1f{left:112.745794px;}
.x1e{left:115.002600px;}
.x3{left:116.640000px;}
.x5d{left:119.160000px;}
.x1a{left:122.053660px;}
.x19{left:125.299800px;}
.x36{left:127.675890px;}
.x77{left:135.441180px;}
.x16{left:138.249450px;}
.x8a{left:145.782000px;}
.xb{left:147.950280px;}
.x56{left:151.650000px;}
.x5f{left:153.810000px;}
.x58{left:159.390000px;}
.x6{left:169.114230px;}
.x4{left:212.220000px;}
.x3e{left:216.000000px;}
.xf{left:226.166310px;}
.x54{left:227.790000px;}
.x79{left:230.040000px;}
.xc{left:231.996690px;}
.x7{left:235.257750px;}
.x26{left:236.445000px;}
.x75{left:239.130000px;}
.x12{left:246.243240px;}
.x6a{left:255.600000px;}
.x14{left:256.767570px;}
.x6e{left:260.460000px;}
.x57{left:263.700000px;}
.x1d{left:264.936085px;}
.x62{left:272.970000px;}
.x2a{left:276.420000px;}
.x72{left:280.803150px;}
.x31{left:285.945000px;}
.x2c{left:292.320000px;}
.x23{left:294.606600px;}
.x15{left:315.730170px;}
.x24{left:318.491100px;}
.xd{left:323.718120px;}
.x35{left:325.085310px;}
.x22{left:328.929000px;}
.x8{left:332.908380px;}
.x10{left:334.703610px;}
.x34{left:345.590460px;}
.x18{left:348.373890px;}
.x74{left:350.820000px;}
.x33{left:352.260000px;}
.x13{left:363.608460px;}
.x11{left:366.111900px;}
.x40{left:370.170000px;}
.x5{left:384.393600px;}
.xe{left:388.082880px;}
.xa{left:393.567390px;}
.x37{left:397.536840px;}
.x29{left:414.090000px;}
.x5e{left:427.500000px;}
.x8b{left:430.380000px;}
.x42{left:437.670000px;}
.x9{left:446.485500px;}
.x2d{left:455.895000px;}
.x6c{left:468.180000px;}
.x6f{left:473.130000px;}
.x59{left:490.950000px;}
.x44{left:501.390000px;}
.x2e{left:506.340000px;}
.x2f{left:534.345000px;}
.x46{left:552.690000px;}
.x30{left:585.720000px;}
.x76{left:597.144690px;}
.x61{left:600.930000px;}
.x47{left:616.410000px;}
.x78{left:649.350000px;}
.x25{left:678.060000px;}
.x48{left:680.220000px;}
.x70{left:685.710000px;}
.x68{left:723.045870px;}
.x49{left:744.030000px;}
.x17{left:770.220000px;}
.x1{left:778.410000px;}
.x38{left:788.139360px;}
.x4b{left:800.280000px;}
.x7e{left:809.910000px;}
.x4c{left:856.710000px;}
.x6d{left:893.430000px;}
.x71{left:898.380000px;}
.x4d{left:918.090000px;}
.x69{left:932.744430px;}
.x7f{left:970.470000px;}
.x4e{left:971.820000px;}
.x4f{left:1024.650000px;}
.x50{left:1092.150000px;}
.x39{left:1140.210000px;}
.x51{left:1159.650000px;}
@media print{
.v2{vertical-align:-82.058880pt;}
.v1{vertical-align:-67.812480pt;}
.v8{vertical-align:-40.659516pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.775467pt;}
.v4{vertical-align:26.560000pt;}
.v6{vertical-align:30.728000pt;}
.v5{vertical-align:33.600000pt;}
.v9{vertical-align:50.351610pt;}
.v7{vertical-align:61.456000pt;}
.ls1c{letter-spacing:-0.791040pt;}
.ls52{letter-spacing:-0.427520pt;}
.ls7{letter-spacing:-0.409920pt;}
.ls1b{letter-spacing:-0.395520pt;}
.ls4a{letter-spacing:-0.374080pt;}
.ls5b{letter-spacing:-0.354589pt;}
.ls53{letter-spacing:-0.320640pt;}
.lsc{letter-spacing:-0.292800pt;}
.lsf{letter-spacing:-0.234240pt;}
.ls51{letter-spacing:-0.213760pt;}
.ls8{letter-spacing:-0.175680pt;}
.ls4b{letter-spacing:-0.160320pt;}
.ls2c{letter-spacing:-0.149760pt;}
.lse{letter-spacing:-0.117120pt;}
.ls33{letter-spacing:-0.106880pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.058560pt;}
.ls2e{letter-spacing:-0.053440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.019520pt;}
.ls3c{letter-spacing:0.053440pt;}
.ls5{letter-spacing:0.058560pt;}
.ls0{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.080000pt;}
.ls31{letter-spacing:0.106880pt;}
.ls22{letter-spacing:0.117120pt;}
.lsa{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.149760pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.160320pt;}
.ls6{letter-spacing:0.175680pt;}
.ls10{letter-spacing:0.234240pt;}
.lsd{letter-spacing:0.292800pt;}
.ls4e{letter-spacing:0.320640pt;}
.ls11{letter-spacing:0.351360pt;}
.ls55{letter-spacing:0.400000pt;}
.ls9{letter-spacing:0.409920pt;}
.ls30{letter-spacing:0.480000pt;}
.ls58{letter-spacing:19.797875pt;}
.ls17{letter-spacing:29.084800pt;}
.ls40{letter-spacing:34.949760pt;}
.ls19{letter-spacing:36.046933pt;}
.ls1a{letter-spacing:50.752000pt;}
.ls25{letter-spacing:52.235520pt;}
.ls5d{letter-spacing:60.457390pt;}
.ls45{letter-spacing:60.547520pt;}
.ls2b{letter-spacing:63.420480pt;}
.ls16{letter-spacing:75.572589pt;}
.ls18{letter-spacing:78.452834pt;}
.ls15{letter-spacing:84.839040pt;}
.ls27{letter-spacing:94.457280pt;}
.ls14{letter-spacing:94.727040pt;}
.ls23{letter-spacing:97.970880pt;}
.ls48{letter-spacing:100.574080pt;}
.ls1f{letter-spacing:105.297562pt;}
.ls12{letter-spacing:109.337207pt;}
.ls4f{letter-spacing:113.666880pt;}
.ls2a{letter-spacing:120.375040pt;}
.ls26{letter-spacing:127.426560pt;}
.ls24{letter-spacing:156.589440pt;}
.ls36{letter-spacing:158.930560pt;}
.ls3d{letter-spacing:159.785600pt;}
.ls35{letter-spacing:169.885760pt;}
.ls37{letter-spacing:191.742720pt;}
.ls57{letter-spacing:206.725270pt;}
.ls4d{letter-spacing:207.935040pt;}
.ls38{letter-spacing:247.106560pt;}
.ls41{letter-spacing:257.367040pt;}
.ls43{letter-spacing:268.536000pt;}
.ls44{letter-spacing:268.856640pt;}
.ls39{letter-spacing:271.742400pt;}
.ls42{letter-spacing:295.416320pt;}
.ls3a{letter-spacing:330.953920pt;}
.ls3b{letter-spacing:331.274560pt;}
.ls5c{letter-spacing:346.846945pt;}
.ls59{letter-spacing:356.243548pt;}
.ls5a{letter-spacing:371.408595pt;}
.ls46{letter-spacing:375.736640pt;}
.ls56{letter-spacing:410.850223pt;}
.ls47{letter-spacing:429.817920pt;}
.ls4c{letter-spacing:531.300480pt;}
.ls50{letter-spacing:546.943040pt;}
.ls49{letter-spacing:557.539520pt;}
.ls21{letter-spacing:559.133440pt;}
.ls3f{letter-spacing:563.257600pt;}
.ls3e{letter-spacing:563.578240pt;}
.ls34{letter-spacing:569.349760pt;}
.ls20{letter-spacing:573.108480pt;}
.ls1e{letter-spacing:584.380800pt;}
.ls2{letter-spacing:593.621440pt;}
.ls54{letter-spacing:715.896000pt;}
.ls13{letter-spacing:749.544858pt;}
.ls1{letter-spacing:877.814400pt;}
.ls1d{letter-spacing:887.578795pt;}
.ws26{word-spacing:-887.578795pt;}
.ws22{word-spacing:-639.028480pt;}
.ws27{word-spacing:-584.380800pt;}
.ws28{word-spacing:-559.133440pt;}
.ws1e{word-spacing:-548.286652pt;}
.ws47{word-spacing:-371.408595pt;}
.ws46{word-spacing:-356.243548pt;}
.ws48{word-spacing:-346.846945pt;}
.wsc{word-spacing:-58.560000pt;}
.ws23{word-spacing:-16.266667pt;}
.ws1d{word-spacing:-15.688960pt;}
.ws29{word-spacing:-14.991360pt;}
.ws2{word-spacing:-14.815680pt;}
.ws4{word-spacing:-14.698560pt;}
.ws0{word-spacing:-14.640000pt;}
.ws3{word-spacing:-14.581440pt;}
.ws15{word-spacing:-14.522880pt;}
.ws5{word-spacing:-14.464320pt;}
.ws18{word-spacing:-14.405760pt;}
.ws19{word-spacing:-14.347200pt;}
.ws1{word-spacing:-14.230080pt;}
.ws34{word-spacing:-13.520320pt;}
.ws36{word-spacing:-13.466880pt;}
.ws2e{word-spacing:-13.306560pt;}
.ws3b{word-spacing:-13.253120pt;}
.ws35{word-spacing:-13.199680pt;}
.ws2c{word-spacing:-9.509760pt;}
.ws2b{word-spacing:-9.360000pt;}
.ws2a{word-spacing:-9.210240pt;}
.wsf{word-spacing:-0.409920pt;}
.ws32{word-spacing:-0.374080pt;}
.ws37{word-spacing:-0.320640pt;}
.ws14{word-spacing:-0.292800pt;}
.ws12{word-spacing:-0.234240pt;}
.ws3d{word-spacing:-0.213760pt;}
.ws10{word-spacing:-0.175680pt;}
.ws2d{word-spacing:-0.160320pt;}
.wsd{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.117120pt;}
.ws30{word-spacing:-0.106880pt;}
.ws7{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.058560pt;}
.ws2f{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053440pt;}
.ws8{word-spacing:0.058560pt;}
.wse{word-spacing:0.064000pt;}
.ws33{word-spacing:0.106880pt;}
.ws9{word-spacing:0.117120pt;}
.ws31{word-spacing:0.160320pt;}
.ws17{word-spacing:0.175680pt;}
.ws38{word-spacing:0.213760pt;}
.ws1b{word-spacing:0.234240pt;}
.ws39{word-spacing:0.267200pt;}
.ws13{word-spacing:0.292800pt;}
.ws1a{word-spacing:0.351360pt;}
.ws3e{word-spacing:0.374080pt;}
.ws25{word-spacing:0.395520pt;}
.ws16{word-spacing:0.409920pt;}
.ws3c{word-spacing:0.427520pt;}
.ws11{word-spacing:0.468480pt;}
.ws3f{word-spacing:0.480960pt;}
.ws44{word-spacing:47.869488pt;}
.ws40{word-spacing:48.197749pt;}
.ws24{word-spacing:134.037333pt;}
.ws41{word-spacing:202.391874pt;}
.ws45{word-spacing:246.971099pt;}
.ws43{word-spacing:264.109558pt;}
.ws1f{word-spacing:328.215680pt;}
.ws20{word-spacing:334.016640pt;}
.ws1c{word-spacing:377.783108pt;}
.ws21{word-spacing:379.726711pt;}
.ws42{word-spacing:809.267374pt;}
._a{margin-left:-1273.969920pt;}
._f{margin-left:-203.788800pt;}
._e{margin-left:-167.416533pt;}
._d{margin-left:-160.454400pt;}
._9{margin-left:-3.074560pt;}
._3{margin-left:-1.803520pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.995520pt;}
._b{width:29.514240pt;}
._1e{width:45.757760pt;}
._2b{width:47.296640pt;}
._21{width:49.893120pt;}
._2c{width:51.036800pt;}
._12{width:52.159040pt;}
._25{width:53.362560pt;}
._32{width:55.676160pt;}
._23{width:57.487680pt;}
._2f{width:59.648640pt;}
._2a{width:62.952000pt;}
._31{width:67.160000pt;}
._2d{width:68.163840pt;}
._29{width:71.049280pt;}
._7{width:75.370240pt;}
._11{width:82.803840pt;}
._1a{width:83.787520pt;}
._20{width:89.186880pt;}
._22{width:94.047360pt;}
._30{width:95.125760pt;}
._10{width:97.326720pt;}
._1f{width:98.486080pt;}
._28{width:102.948480pt;}
._1b{width:107.808960pt;}
._1d{width:111.966720pt;}
._1c{width:123.841920pt;}
._8{width:129.071360pt;}
._26{width:141.692160pt;}
._6{width:146.408320pt;}
._5{width:148.145920pt;}
._2e{width:159.634560pt;}
._13{width:167.950080pt;}
._18{width:173.220480pt;}
._c{width:174.157440pt;}
._17{width:176.382720pt;}
._33{width:181.186240pt;}
._24{width:185.342400pt;}
._15{width:186.337920pt;}
._16{width:203.261760pt;}
._27{width:204.257280pt;}
._14{width:211.752960pt;}
._19{width:225.338880pt;}
._37{width:266.365008pt;}
._4{width:281.280640pt;}
._38{width:344.719412pt;}
._39{width:354.116015pt;}
._34{width:742.481920pt;}
._2{width:753.432960pt;}
._35{width:780.865280pt;}
._36{width:818.647360pt;}
.fsd{font-size:31.899733pt;}
.fs7{font-size:35.636800pt;}
.fs9{font-size:37.440000pt;}
.fs5{font-size:37.616533pt;}
.fs3{font-size:38.109867pt;}
.fsa{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fse{font-size:59.098133pt;}
.fs8{font-size:61.642133pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:65.066667pt;}
.fs4{font-size:65.920000pt;}
.fs2{font-size:74.560000pt;}
.fsb{font-size:75.887467pt;}
.fsc{font-size:80.588267pt;}
.fsf{font-size:91.333333pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:2.868815pt;}
.yb1{bottom:2.874933pt;}
.yaf{bottom:2.875067pt;}
.y1a0{bottom:2.880000pt;}
.y195{bottom:3.040000pt;}
.y191{bottom:3.120000pt;}
.y132{bottom:3.280000pt;}
.y135{bottom:3.280133pt;}
.y12e{bottom:3.360000pt;}
.y142{bottom:3.520000pt;}
.y129{bottom:3.600000pt;}
.y15f{bottom:3.680000pt;}
.y1f2{bottom:3.735733pt;}
.y1f9{bottom:3.735867pt;}
.y1f6{bottom:3.741869pt;}
.y1dc{bottom:3.760000pt;}
.y14e{bottom:3.840000pt;}
.yb7{bottom:3.939600pt;}
.ybf{bottom:3.939733pt;}
.y160{bottom:4.160000pt;}
.ybb{bottom:5.016533pt;}
.y1f8{bottom:6.216231pt;}
.yb2{bottom:7.123600pt;}
.yb0{bottom:7.123733pt;}
.yab{bottom:7.132107pt;}
.ya6{bottom:7.132373pt;}
.yae{bottom:7.148587pt;}
.yb8{bottom:8.133467pt;}
.ybc{bottom:8.989467pt;}
.y154{bottom:11.760000pt;}
.y1fb{bottom:14.648800pt;}
.y1f5{bottom:14.651578pt;}
.y1fa{bottom:15.530267pt;}
.y1f1{bottom:17.796667pt;}
.y1f0{bottom:18.174400pt;}
.y1ce{bottom:18.240000pt;}
.y1d1{bottom:18.400000pt;}
.y1d4{bottom:18.480000pt;}
.y1f7{bottom:18.804133pt;}
.y131{bottom:20.160000pt;}
.y13a{bottom:20.160133pt;}
.y12d{bottom:20.240000pt;}
.y17d{bottom:23.360133pt;}
.ya8{bottom:28.106941pt;}
.ya1{bottom:28.107074pt;}
.y1f3{bottom:28.961600pt;}
.yaa{bottom:32.362987pt;}
.ya5{bottom:32.363253pt;}
.yad{bottom:32.379467pt;}
.y19e{bottom:33.600000pt;}
.y194{bottom:33.760000pt;}
.y1f4{bottom:34.963733pt;}
.y181{bottom:49.040000pt;}
.y2{bottom:50.560080pt;}
.y123{bottom:50.640080pt;}
.ya7{bottom:53.345200pt;}
.ya0{bottom:53.345333pt;}
.ya9{bottom:57.593867pt;}
.ya4{bottom:57.594133pt;}
.yac{bottom:57.610347pt;}
.y18d{bottom:64.400133pt;}
.y1{bottom:67.440000pt;}
.y122{bottom:67.520000pt;}
.y1c8{bottom:79.760000pt;}
.ya3{bottom:82.314133pt;}
.y72{bottom:103.703280pt;}
.y7d{bottom:103.717920pt;}
.yf3{bottom:103.732560pt;}
.y91{bottom:103.760000pt;}
.y1d6{bottom:104.320000pt;}
.y4e{bottom:107.572000pt;}
.y14c{bottom:108.880000pt;}
.y1fd{bottom:112.080000pt;}
.y19a{bottom:115.826880pt;}
.y1d3{bottom:118.560000pt;}
.yd3{bottom:119.586720pt;}
.y1d5{bottom:121.680000pt;}
.y1ef{bottom:125.666667pt;}
.y1a5{bottom:125.680000pt;}
.y1b1{bottom:125.760000pt;}
.yf4{bottom:128.986560pt;}
.y71{bottom:129.059760pt;}
.y7c{bottom:129.074400pt;}
.yf2{bottom:129.089040pt;}
.y90{bottom:129.120000pt;}
.y1d2{bottom:129.360000pt;}
.y4d{bottom:132.855280pt;}
.y14b{bottom:133.200000pt;}
.y199{bottom:141.110160pt;}
.y1fc{bottom:144.320000pt;}
.yd2{bottom:144.870000pt;}
.y14a{bottom:146.160000pt;}
.y1d0{bottom:149.920000pt;}
.y118{bottom:153.859920pt;}
.yf5{bottom:154.269840pt;}
.y70{bottom:154.343040pt;}
.y7b{bottom:154.357680pt;}
.yf1{bottom:154.372320pt;}
.y8f{bottom:154.400000pt;}
.y4c{bottom:158.211760pt;}
.y149{bottom:164.160000pt;}
.y198{bottom:166.393440pt;}
.yd1{bottom:170.153280pt;}
.y1ee{bottom:174.400000pt;}
.y117{bottom:179.143200pt;}
.yf7{bottom:179.553120pt;}
.y6f{bottom:179.626320pt;}
.y7a{bottom:179.640960pt;}
.yf0{bottom:179.655600pt;}
.y8e{bottom:179.680000pt;}
.y1cd{bottom:181.280000pt;}
.y148{bottom:182.160000pt;}
.y4b{bottom:183.495040pt;}
.y1ed{bottom:187.360000pt;}
.y197{bottom:191.676720pt;}
.y1cf{bottom:192.000000pt;}
.y147{bottom:193.920000pt;}
.yd0{bottom:195.509760pt;}
.y116{bottom:204.426480pt;}
.y6e{bottom:204.909600pt;}
.y79{bottom:204.924240pt;}
.yef{bottom:204.938880pt;}
.y8d{bottom:204.960000pt;}
.y1ec{bottom:205.360000pt;}
.y4a{bottom:208.778320pt;}
.y1c7{bottom:212.560000pt;}
.y146{bottom:216.560000pt;}
.y196{bottom:216.960000pt;}
.ycf{bottom:220.793040pt;}
.y1eb{bottom:223.360000pt;}
.y115{bottom:229.709760pt;}
.y8c{bottom:230.105040pt;}
.y6d{bottom:230.192880pt;}
.y78{bottom:230.207520pt;}
.yee{bottom:230.222160pt;}
.y1cc{bottom:231.028320pt;}
.y193{bottom:231.280000pt;}
.y49{bottom:234.061600pt;}
.y144{bottom:234.560000pt;}
.y145{bottom:237.920000pt;}
.y1ea{bottom:241.360000pt;}
.yce{bottom:246.076320pt;}
.y1cb{bottom:246.312160pt;}
.y1c6{bottom:246.316000pt;}
.y143{bottom:246.320000pt;}
.y192{bottom:249.680000pt;}
.y114{bottom:254.993040pt;}
.y7e{bottom:255.476160pt;}
.y6c{bottom:255.549360pt;}
.y77{bottom:255.564000pt;}
.yed{bottom:255.578640pt;}
.y1e9{bottom:259.360000pt;}
.y48{bottom:259.418080pt;}
.y1ca{bottom:261.676160pt;}
.y1c5{bottom:261.680000pt;}
.y141{bottom:268.960000pt;}
.y27{bottom:269.365040pt;}
.ycd{bottom:271.359600pt;}
.y1c9{bottom:276.960000pt;}
.y176{bottom:277.033280pt;}
.y1e8{bottom:277.360000pt;}
.y18c{bottom:277.920000pt;}
.y113{bottom:280.349520pt;}
.y6b{bottom:280.832640pt;}
.y76{bottom:280.847280pt;}
.yec{bottom:280.861920pt;}
.y47{bottom:284.701360pt;}
.y140{bottom:286.960000pt;}
.y175{bottom:293.840000pt;}
.y26{bottom:294.648320pt;}
.y1e7{bottom:295.360000pt;}
.y190{bottom:296.312000pt;}
.ycc{bottom:296.642880pt;}
.y13f{bottom:298.720000pt;}
.y1b0{bottom:305.200000pt;}
.y112{bottom:305.632800pt;}
.y75{bottom:306.042720pt;}
.y6a{bottom:306.115920pt;}
.y82{bottom:306.130560pt;}
.yeb{bottom:306.145200pt;}
.y1b9{bottom:308.296453pt;}
.y46{bottom:309.984640pt;}
.y174{bottom:310.476000pt;}
.y18f{bottom:311.676000pt;}
.y18b{bottom:311.680000pt;}
.y1e6{bottom:313.360000pt;}
.y25{bottom:320.004800pt;}
.y13e{bottom:321.360000pt;}
.ycb{bottom:321.999360pt;}
.y1b8{bottom:323.660453pt;}
.y1c1{bottom:323.664320pt;}
.y173{bottom:325.840000pt;}
.y18e{bottom:327.040000pt;}
.y111{bottom:330.916080pt;}
.y81{bottom:331.326000pt;}
.y1e5{bottom:331.360000pt;}
.y69{bottom:331.399200pt;}
.y8b{bottom:331.413840pt;}
.yea{bottom:331.428480pt;}
.y13d{bottom:333.120000pt;}
.y45{bottom:335.267920pt;}
.y172{bottom:338.720000pt;}
.y1b7{bottom:338.944293pt;}
.y1c0{bottom:338.948160pt;}
.y1c4{bottom:338.952000pt;}
.y24{bottom:345.288080pt;}
.yca{bottom:347.282640pt;}
.y1e4{bottom:349.360000pt;}
.y1b6{bottom:354.308293pt;}
.y1bf{bottom:354.312160pt;}
.y1c3{bottom:354.316000pt;}
.y13c{bottom:355.760000pt;}
.y110{bottom:356.199360pt;}
.y80{bottom:356.682480pt;}
.y171{bottom:356.720000pt;}
.y68{bottom:356.755680pt;}
.y8a{bottom:356.770320pt;}
.ye9{bottom:356.784960pt;}
.y18a{bottom:359.598133pt;}
.y44{bottom:360.551200pt;}
.y1af{bottom:361.996133pt;}
.y189{bottom:367.280133pt;}
.y1e3{bottom:367.360000pt;}
.y13b{bottom:367.520000pt;}
.yc8{bottom:369.266667pt;}
.y1bc{bottom:369.668160pt;}
.y1b5{bottom:369.672293pt;}
.y1be{bottom:369.676160pt;}
.y1c2{bottom:369.680000pt;}
.y23{bottom:370.483520pt;}
.y170{bottom:374.720000pt;}
.yc7{bottom:377.275520pt;}
.yc9{bottom:377.280000pt;}
.y121{bottom:377.280960pt;}
.y1ae{bottom:377.360133pt;}
.y10f{bottom:381.555840pt;}
.yf8{bottom:381.965760pt;}
.y67{bottom:382.038960pt;}
.y89{bottom:382.053600pt;}
.ye8{bottom:382.068240pt;}
.y1bb{bottom:384.952000pt;}
.y1b4{bottom:384.956133pt;}
.y1bd{bottom:384.960000pt;}
.y1e2{bottom:385.360000pt;}
.y43{bottom:385.907680pt;}
.y139{bottom:390.160000pt;}
.y16f{bottom:392.720000pt;}
.y22{bottom:395.840000pt;}
.y1ba{bottom:400.316000pt;}
.y1b3{bottom:400.320133pt;}
.y188{bottom:401.040000pt;}
.y138{bottom:401.920000pt;}
.y120{bottom:402.564240pt;}
.y1e1{bottom:403.360000pt;}
.yc6{bottom:405.428240pt;}
.y10e{bottom:406.839120pt;}
.yf6{bottom:407.249040pt;}
.y66{bottom:407.322240pt;}
.y88{bottom:407.336880pt;}
.ye7{bottom:407.351520pt;}
.y16e{bottom:410.720000pt;}
.y42{bottom:411.190960pt;}
.y1b2{bottom:415.680000pt;}
.y1e0{bottom:421.360000pt;}
.y137{bottom:424.560000pt;}
.y11f{bottom:427.920720pt;}
.y16d{bottom:428.720000pt;}
.yc5{bottom:430.711520pt;}
.y10d{bottom:432.122400pt;}
.y65{bottom:432.605520pt;}
.y87{bottom:432.620160pt;}
.ye6{bottom:432.634800pt;}
.y187{bottom:434.720000pt;}
.y136{bottom:436.320133pt;}
.y41{bottom:436.474240pt;}
.y1df{bottom:439.360000pt;}
.y1a4{bottom:443.920000pt;}
.y21{bottom:444.994720pt;}
.y16c{bottom:446.720000pt;}
.y1ad{bottom:446.944293pt;}
.y11e{bottom:453.204000pt;}
.yc4{bottom:455.994800pt;}
.y1de{bottom:457.360000pt;}
.y10c{bottom:457.405680pt;}
.y64{bottom:457.888800pt;}
.y86{bottom:457.903440pt;}
.ye5{bottom:457.918080pt;}
.y134{bottom:458.960000pt;}
.y186{bottom:460.956133pt;}
.y40{bottom:461.757520pt;}
.y20{bottom:461.801440pt;}
.y1ac{bottom:462.308293pt;}
.y16b{bottom:464.720000pt;}
.y133{bottom:470.720000pt;}
.y11d{bottom:475.207920pt;}
.y1dd{bottom:475.360000pt;}
.y185{bottom:476.320133pt;}
.y1ab{bottom:477.672293pt;}
.yc2{bottom:478.066667pt;}
.y1f{bottom:478.681360pt;}
.y10b{bottom:482.688960pt;}
.y16a{bottom:482.720000pt;}
.y63{bottom:483.245280pt;}
.y85{bottom:483.259920pt;}
.ye4{bottom:483.274560pt;}
.yc3{bottom:486.080000pt;}
.yc1{bottom:486.086400pt;}
.y3f{bottom:487.114000pt;}
.y180{bottom:490.480000pt;}
.y1a3{bottom:492.952000pt;}
.y1aa{bottom:492.956133pt;}
.y130{bottom:493.360000pt;}
.y184{bottom:493.512133pt;}
.y1e{bottom:495.561280pt;}
.y169{bottom:500.720000pt;}
.y12f{bottom:505.120000pt;}
.y10a{bottom:508.045440pt;}
.y1a2{bottom:508.316000pt;}
.y1a9{bottom:508.320133pt;}
.y62{bottom:508.528560pt;}
.y84{bottom:508.543200pt;}
.ye3{bottom:508.557840pt;}
.y183{bottom:508.876133pt;}
.ybe{bottom:510.866667pt;}
.y1db{bottom:511.360000pt;}
.y3e{bottom:512.397280pt;}
.y1d{bottom:512.441200pt;}
.y17f{bottom:516.560000pt;}
.y168{bottom:518.720000pt;}
.yc0{bottom:518.880000pt;}
.ybd{bottom:518.884880pt;}
.y1a8{bottom:523.672293pt;}
.y1a1{bottom:523.680000pt;}
.y182{bottom:524.240133pt;}
.y12c{bottom:527.680000pt;}
.y1c{bottom:529.321120pt;}
.y1da{bottom:529.360000pt;}
.y109{bottom:533.328720pt;}
.y83{bottom:533.738640pt;}
.y61{bottom:533.811840pt;}
.ye2{bottom:533.841120pt;}
.y167{bottom:536.720000pt;}
.y3d{bottom:537.592720pt;}
.y1a7{bottom:538.956133pt;}
.y12b{bottom:539.520000pt;}
.y1d9{bottom:541.120000pt;}
.yba{bottom:543.666667pt;}
.yb6{bottom:545.000000pt;}
.y1b{bottom:546.127840pt;}
.yb9{bottom:553.040000pt;}
.yb5{bottom:553.051680pt;}
.y1a6{bottom:554.320133pt;}
.y166{bottom:554.720000pt;}
.y108{bottom:558.612000pt;}
.y60{bottom:559.095120pt;}
.ye1{bottom:559.124400pt;}
.y17e{bottom:559.280133pt;}
.y12a{bottom:562.080000pt;}
.y3c{bottom:562.949200pt;}
.y1d8{bottom:563.680000pt;}
.y165{bottom:572.720000pt;}
.y1d7{bottom:575.528000pt;}
.y17c{bottom:575.920000pt;}
.y1a{bottom:579.887680pt;}
.y128{bottom:580.080000pt;}
.yb4{bottom:581.204400pt;}
.y17b{bottom:581.356000pt;}
.y19d{bottom:582.560000pt;}
.y107{bottom:583.895280pt;}
.y5f{bottom:584.451600pt;}
.ye0{bottom:584.480880pt;}
.y3b{bottom:588.232480pt;}
.y164{bottom:590.720000pt;}
.y17a{bottom:596.720000pt;}
.y19{bottom:596.767600pt;}
.y19f{bottom:600.800000pt;}
.y9f{bottom:603.133333pt;}
.y3a{bottom:605.185600pt;}
.y163{bottom:608.720000pt;}
.y106{bottom:609.251760pt;}
.y5e{bottom:609.734880pt;}
.ydf{bottom:609.764160pt;}
.y127{bottom:609.844160pt;}
.y18{bottom:613.647520pt;}
.y179{bottom:617.758000pt;}
.y39{bottom:622.065520pt;}
.y178{bottom:625.440000pt;}
.y162{bottom:626.720000pt;}
.y17{bottom:630.454240pt;}
.y105{bottom:634.535040pt;}
.y5d{bottom:635.018160pt;}
.yde{bottom:635.047440pt;}
.y126{bottom:635.127440pt;}
.y19c{bottom:638.877680pt;}
.y38{bottom:638.945440pt;}
.y161{bottom:644.720000pt;}
.yb3{bottom:645.840000pt;}
.y19b{bottom:646.720000pt;}
.y16{bottom:647.260960pt;}
.y37{bottom:655.825360pt;}
.y104{bottom:659.818320pt;}
.y5c{bottom:660.301440pt;}
.y125{bottom:660.322880pt;}
.ydd{bottom:660.330720pt;}
.y177{bottom:660.396080pt;}
.y15e{bottom:662.720000pt;}
.y15{bottom:664.214080pt;}
.y36{bottom:672.705280pt;}
.y14{bottom:681.094000pt;}
.y15d{bottom:681.760000pt;}
.y103{bottom:685.101600pt;}
.y5b{bottom:685.584720pt;}
.ydc{bottom:685.614000pt;}
.y124{bottom:685.679360pt;}
.y35{bottom:689.512000pt;}
.y13{bottom:697.973920pt;}
.y15c{bottom:699.760000pt;}
.y34{bottom:706.391920pt;}
.y102{bottom:710.384880pt;}
.y5a{bottom:710.941200pt;}
.y9e{bottom:710.943840pt;}
.ydb{bottom:710.970480pt;}
.y12{bottom:714.780640pt;}
.y15b{bottom:717.760000pt;}
.y33{bottom:723.271840pt;}
.y15a{bottom:729.600000pt;}
.y11{bottom:731.660560pt;}
.y101{bottom:735.741360pt;}
.yda{bottom:736.165920pt;}
.y59{bottom:736.224480pt;}
.y9d{bottom:736.227120pt;}
.y32{bottom:740.151760pt;}
.y10{bottom:748.540480pt;}
.y159{bottom:752.160000pt;}
.y31{bottom:757.031680pt;}
.y100{bottom:761.024640pt;}
.y58{bottom:761.507760pt;}
.y9c{bottom:761.510400pt;}
.yd9{bottom:761.522400pt;}
.yf{bottom:765.420400pt;}
.y158{bottom:770.160000pt;}
.y30{bottom:773.838400pt;}
.ye{bottom:782.300320pt;}
.yff{bottom:786.307920pt;}
.y57{bottom:786.791040pt;}
.y9b{bottom:786.793680pt;}
.yd8{bottom:786.805680pt;}
.y2f{bottom:790.718320pt;}
.yd{bottom:799.107040pt;}
.y157{bottom:799.913440pt;}
.y2e{bottom:807.598240pt;}
.yfe{bottom:811.591200pt;}
.y56{bottom:812.147520pt;}
.y9a{bottom:812.150160pt;}
.yd7{bottom:812.162160pt;}
.yc{bottom:815.986960pt;}
.y2d{bottom:824.478160pt;}
.y156{bottom:825.196720pt;}
.yb{bottom:832.866880pt;}
.yfd{bottom:836.947680pt;}
.y55{bottom:837.430800pt;}
.y99{bottom:837.433440pt;}
.yd6{bottom:837.445440pt;}
.y2c{bottom:841.358080pt;}
.ya{bottom:849.746800pt;}
.y155{bottom:850.480000pt;}
.y2b{bottom:858.238000pt;}
.yfc{bottom:862.230960pt;}
.y54{bottom:862.714080pt;}
.y98{bottom:862.716720pt;}
.yd5{bottom:862.728720pt;}
.y153{bottom:864.720000pt;}
.y9{bottom:866.626720pt;}
.y2a{bottom:875.044720pt;}
.y8{bottom:883.433440pt;}
.yfb{bottom:887.514240pt;}
.y74{bottom:887.909520pt;}
.yd4{bottom:887.924160pt;}
.y53{bottom:887.997360pt;}
.y97{bottom:888.000000pt;}
.y152{bottom:890.720000pt;}
.y29{bottom:891.924640pt;}
.y151{bottom:902.480000pt;}
.y7{bottom:908.716720pt;}
.y28{bottom:908.804560pt;}
.yfa{bottom:912.797520pt;}
.y73{bottom:913.192800pt;}
.y96{bottom:913.280000pt;}
.y52{bottom:913.280640pt;}
.y11c{bottom:913.295280pt;}
.y150{bottom:925.120000pt;}
.y6{bottom:934.000000pt;}
.y14f{bottom:936.880000pt;}
.yf9{bottom:938.315040pt;}
.y51{bottom:938.637120pt;}
.y95{bottom:938.640000pt;}
.y11b{bottom:938.651760pt;}
.y14d{bottom:959.520000pt;}
.y5{bottom:960.320000pt;}
.y94{bottom:963.920000pt;}
.y50{bottom:963.920400pt;}
.y11a{bottom:963.935040pt;}
.y4{bottom:987.920000pt;}
.y119{bottom:989.130480pt;}
.y93{bottom:989.200000pt;}
.y4f{bottom:989.203680pt;}
.y7f{bottom:1014.399120pt;}
.y92{bottom:1014.480000pt;}
.y3{bottom:1014.486960pt;}
.h1d{height:17.280000pt;}
.h24{height:17.358667pt;}
.h17{height:17.360000pt;}
.h22{height:18.400000pt;}
.h40{height:23.924800pt;}
.hc{height:24.400000pt;}
.h21{height:25.360000pt;}
.h34{height:30.640000pt;}
.h35{height:30.641333pt;}
.h36{height:30.720000pt;}
.h3d{height:31.292268pt;}
.h3b{height:31.307844pt;}
.h43{height:32.148950pt;}
.h1b{height:33.678667pt;}
.h1a{height:33.680000pt;}
.h20{height:33.760000pt;}
.h18{height:33.761333pt;}
.hf{height:34.958170pt;}
.h28{height:35.760000pt;}
.h11{height:36.900203pt;}
.hd{height:36.918570pt;}
.h9{height:37.384142pt;}
.h7{height:37.402750pt;}
.h10{height:43.519346pt;}
.h41{height:44.323600pt;}
.h38{height:45.666667pt;}
.he{height:45.937067pt;}
.h30{height:46.000000pt;}
.h2e{height:46.001333pt;}
.ha{height:46.539520pt;}
.hb{height:49.440000pt;}
.h1f{height:52.448437pt;}
.h27{height:53.857500pt;}
.h39{height:56.916133pt;}
.h5{height:57.444844pt;}
.h2{height:57.473437pt;}
.h3e{height:57.972729pt;}
.h3c{height:58.001586pt;}
.h4{height:59.017500pt;}
.h44{height:59.559837pt;}
.h3a{height:60.441200pt;}
.h29{height:61.280000pt;}
.h23{height:62.812500pt;}
.h19{height:63.305313pt;}
.h1c{height:63.305846pt;}
.h14{height:63.859375pt;}
.h3{height:64.500000pt;}
.h8{height:64.696875pt;}
.h42{height:68.500000pt;}
.h2d{height:76.640000pt;}
.h13{height:80.634308pt;}
.h12{height:80.634842pt;}
.h2b{height:82.855798pt;}
.h37{height:83.168437pt;}
.h2a{height:83.176437pt;}
.h2f{height:83.944220pt;}
.h25{height:84.585500pt;}
.h33{height:92.000000pt;}
.h3f{height:92.074892pt;}
.h6{height:96.133333pt;}
.h1e{height:96.905313pt;}
.h2c{height:113.583798pt;}
.h26{height:115.313500pt;}
.h31{height:137.921333pt;}
.h32{height:138.000000pt;}
.h15{height:793.840000pt;}
.h16{height:794.000000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w5{width:14.200000pt;}
.w4{width:18.066667pt;}
.w3{width:18.133333pt;}
.wb{width:29.921333pt;}
.w6{width:44.866667pt;}
.w11{width:44.880000pt;}
.w7{width:45.733333pt;}
.w1a{width:46.160000pt;}
.w19{width:46.320000pt;}
.w18{width:47.118667pt;}
.w15{width:49.361333pt;}
.w16{width:49.520000pt;}
.w17{width:53.840000pt;}
.w10{width:55.920000pt;}
.w14{width:55.998667pt;}
.w12{width:56.000000pt;}
.w13{width:56.080000pt;}
.w8{width:59.000000pt;}
.wf{width:59.360000pt;}
.wd{width:61.360000pt;}
.we{width:74.320000pt;}
.w1b{width:98.960000pt;}
.wc{width:103.680000pt;}
.w25{width:117.440000pt;}
.w28{width:139.840000pt;}
.w29{width:139.920000pt;}
.w2a{width:142.080000pt;}
.w2b{width:146.478667pt;}
.w21{width:153.520000pt;}
.w22{width:153.600000pt;}
.w2c{width:182.000000pt;}
.w23{width:188.321333pt;}
.w24{width:188.400000pt;}
.w1d{width:201.360000pt;}
.w26{width:207.281333pt;}
.w1e{width:222.558667pt;}
.w1f{width:273.438667pt;}
.w2d{width:288.000000pt;}
.w20{width:307.840000pt;}
.w1c{width:424.560000pt;}
.w27{width:431.920000pt;}
.w2{width:508.200000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.w9{width:1122.640000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1b{left:2.423867pt;}
.x6b{left:4.320000pt;}
.x3d{left:6.880000pt;}
.x2b{left:8.834667pt;}
.x27{left:10.969067pt;}
.x28{left:12.703067pt;}
.x3f{left:14.000000pt;}
.x32{left:15.651333pt;}
.x52{left:16.960000pt;}
.x45{left:18.800000pt;}
.x4a{left:20.960000pt;}
.x3b{left:23.040000pt;}
.x43{left:24.240000pt;}
.x41{left:25.920000pt;}
.x66{left:29.120000pt;}
.x7c{left:30.240000pt;}
.x5c{left:34.080000pt;}
.x7a{left:36.880000pt;}
.x7b{left:38.560000pt;}
.x7d{left:39.680000pt;}
.x81{left:42.400000pt;}
.x63{left:43.760000pt;}
.x64{left:45.440000pt;}
.x65{left:49.280000pt;}
.x83{left:50.880000pt;}
.x60{left:52.160000pt;}
.x80{left:54.880000pt;}
.x3a{left:57.040000pt;}
.x88{left:59.258533pt;}
.x86{left:60.708667pt;}
.x84{left:62.560000pt;}
.x85{left:63.680000pt;}
.x55{left:65.440000pt;}
.x67{left:69.440000pt;}
.x82{left:71.040000pt;}
.x53{left:72.720000pt;}
.x89{left:73.917200pt;}
.x5a{left:78.080000pt;}
.x1c{left:79.238667pt;}
.x87{left:80.500400pt;}
.x21{left:85.662585pt;}
.x20{left:86.673634pt;}
.x3c{left:87.680000pt;}
.x5b{left:88.720000pt;}
.x73{left:90.160000pt;}
.x2{left:94.564080pt;}
.x1f{left:100.218483pt;}
.x1e{left:102.224533pt;}
.x3{left:103.680000pt;}
.x5d{left:105.920000pt;}
.x1a{left:108.492142pt;}
.x19{left:111.377600pt;}
.x36{left:113.489680pt;}
.x77{left:120.392160pt;}
.x16{left:122.888400pt;}
.x8a{left:129.584000pt;}
.xb{left:131.511360pt;}
.x56{left:134.800000pt;}
.x5f{left:136.720000pt;}
.x58{left:141.680000pt;}
.x6{left:150.323760pt;}
.x4{left:188.640000pt;}
.x3e{left:192.000000pt;}
.xf{left:201.036720pt;}
.x54{left:202.480000pt;}
.x79{left:204.480000pt;}
.xc{left:206.219280pt;}
.x7{left:209.118000pt;}
.x26{left:210.173333pt;}
.x75{left:212.560000pt;}
.x12{left:218.882880pt;}
.x6a{left:227.200000pt;}
.x14{left:228.237840pt;}
.x6e{left:231.520000pt;}
.x57{left:234.400000pt;}
.x1d{left:235.498743pt;}
.x62{left:242.640000pt;}
.x2a{left:245.706667pt;}
.x72{left:249.602800pt;}
.x31{left:254.173333pt;}
.x2c{left:259.840000pt;}
.x23{left:261.872533pt;}
.x15{left:280.649040pt;}
.x24{left:283.103200pt;}
.xd{left:287.749440pt;}
.x35{left:288.964720pt;}
.x22{left:292.381333pt;}
.x8{left:295.918560pt;}
.x10{left:297.514320pt;}
.x34{left:307.191520pt;}
.x18{left:309.665680pt;}
.x74{left:311.840000pt;}
.x33{left:313.120000pt;}
.x13{left:323.207520pt;}
.x11{left:325.432800pt;}
.x40{left:329.040000pt;}
.x5{left:341.683200pt;}
.xe{left:344.962560pt;}
.xa{left:349.837680pt;}
.x37{left:353.366080pt;}
.x29{left:368.080000pt;}
.x5e{left:380.000000pt;}
.x8b{left:382.560000pt;}
.x42{left:389.040000pt;}
.x9{left:396.876000pt;}
.x2d{left:405.240000pt;}
.x6c{left:416.160000pt;}
.x6f{left:420.560000pt;}
.x59{left:436.400000pt;}
.x44{left:445.680000pt;}
.x2e{left:450.080000pt;}
.x2f{left:474.973333pt;}
.x46{left:491.280000pt;}
.x30{left:520.640000pt;}
.x76{left:530.795280pt;}
.x61{left:534.160000pt;}
.x47{left:547.920000pt;}
.x78{left:577.200000pt;}
.x25{left:602.720000pt;}
.x48{left:604.640000pt;}
.x70{left:609.520000pt;}
.x68{left:642.707440pt;}
.x49{left:661.360000pt;}
.x17{left:684.640000pt;}
.x1{left:691.920000pt;}
.x38{left:700.568320pt;}
.x4b{left:711.360000pt;}
.x7e{left:719.920000pt;}
.x4c{left:761.520000pt;}
.x6d{left:794.160000pt;}
.x71{left:798.560000pt;}
.x4d{left:816.080000pt;}
.x69{left:829.106160pt;}
.x7f{left:862.640000pt;}
.x4e{left:863.840000pt;}
.x4f{left:910.800000pt;}
.x50{left:970.800000pt;}
.x39{left:1013.520000pt;}
.x51{left:1030.800000pt;}
}




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