
    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_533146d8595f83650a6681cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c0121222a7f9390f24814528.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_a9c1badbfe00c633394d4a07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_bb926d30cfe52430aa70c601.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.874023;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_2de8c8d0a764894980a82b0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_4c3c67af0237e631f0316452.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae9356433b030c0e11a802d4.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c9d315b7d0d664c552d19b82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_ce072f635bc51c8e6dbcddde.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fb51e9f4f2a034fcf819cb0d.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8b3341381a09bed302afafd8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_a8ad5beee151b2826cd5da4c.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls44{letter-spacing:-1.885223px;}
.ls57{letter-spacing:-1.391040px;}
.ls64{letter-spacing:-0.993600px;}
.ls59{letter-spacing:-0.927360px;}
.ls3b{letter-spacing:-0.861120px;}
.ls26{letter-spacing:-0.794880px;}
.ls24{letter-spacing:-0.728640px;}
.ls60{letter-spacing:-0.662400px;}
.ls56{letter-spacing:-0.628408px;}
.ls45{letter-spacing:-0.596160px;}
.ls1b{letter-spacing:-0.529920px;}
.ls46{letter-spacing:-0.463680px;}
.ls4d{letter-spacing:-0.397440px;}
.ls43{letter-spacing:-0.349115px;}
.ls3a{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.287280px;}
.ls14{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.264960px;}
.ls3e{letter-spacing:-0.252720px;}
.lsf{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.198720px;}
.ls3f{letter-spacing:-0.168480px;}
.ls42{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.131760px;}
.ls71{letter-spacing:-0.095760px;}
.ls1a{letter-spacing:-0.066240px;}
.ls8{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.013248px;}
.ls5a{letter-spacing:0.018000px;}
.ls70{letter-spacing:0.019872px;}
.ls12{letter-spacing:0.054000px;}
.ls47{letter-spacing:0.059616px;}
.ls28{letter-spacing:0.066240px;}
.ls11{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.083520px;}
.ls16{letter-spacing:0.108000px;}
.ls5e{letter-spacing:0.119520px;}
.ls1e{letter-spacing:0.132480px;}
.ls18{letter-spacing:0.144000px;}
.ls76{letter-spacing:0.149760px;}
.ls77{letter-spacing:0.155520px;}
.ls52{letter-spacing:0.168480px;}
.ls51{letter-spacing:0.198720px;}
.ls5{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.264960px;}
.ls36{letter-spacing:0.287280px;}
.ls29{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.324000px;}
.ls55{letter-spacing:0.331200px;}
.ls10{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.375840px;}
.ls54{letter-spacing:0.397440px;}
.ls58{letter-spacing:0.421200px;}
.ls13{letter-spacing:0.756000px;}
.ls22{letter-spacing:0.861120px;}
.ls0{letter-spacing:1.190880px;}
.lse{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.404000px;}
.ls48{letter-spacing:1.589760px;}
.lsd{letter-spacing:1.620000px;}
.ls40{letter-spacing:2.205792px;}
.ls3d{letter-spacing:2.318400px;}
.ls32{letter-spacing:3.047040px;}
.ls4c{letter-spacing:3.775680px;}
.ls4a{letter-spacing:4.438080px;}
.ls4b{letter-spacing:5.166720px;}
.ls53{letter-spacing:5.259456px;}
.ls5c{letter-spacing:5.466240px;}
.ls4e{letter-spacing:7.352640px;}
.ls61{letter-spacing:8.809920px;}
.ls4f{letter-spacing:9.538560px;}
.ls50{letter-spacing:10.200960px;}
.ls41{letter-spacing:10.909728px;}
.ls34{letter-spacing:10.929600px;}
.ls62{letter-spacing:11.658240px;}
.ls2f{letter-spacing:13.115520px;}
.ls72{letter-spacing:13.844160px;}
.ls37{letter-spacing:15.963840px;}
.ls5d{letter-spacing:16.692480px;}
.ls30{letter-spacing:17.421120px;}
.ls39{letter-spacing:18.878400px;}
.ls33{letter-spacing:19.607040px;}
.ls75{letter-spacing:21.726720px;}
.ls3c{letter-spacing:22.660560px;}
.ls31{letter-spacing:23.078160px;}
.ls74{letter-spacing:26.760960px;}
.ls5b{letter-spacing:30.404160px;}
.ls73{letter-spacing:32.523840px;}
.ls38{letter-spacing:35.438400px;}
.ls2a{letter-spacing:44.820000px;}
.ls49{letter-spacing:52.130880px;}
.ls5f{letter-spacing:55.411200px;}
.ls63{letter-spacing:59.345280px;}
.ls2e{letter-spacing:59.351040px;}
.ls21{letter-spacing:61.488000px;}
.ls2d{letter-spacing:64.016640px;}
.ls23{letter-spacing:65.088000px;}
.ls20{letter-spacing:82.368000px;}
.ls27{letter-spacing:98.928000px;}
.ls6d{letter-spacing:221.328000px;}
.ls6e{letter-spacing:222.048000px;}
.ls69{letter-spacing:252.288000px;}
.ls6c{letter-spacing:289.728000px;}
.ls68{letter-spacing:312.768000px;}
.ls66{letter-spacing:322.848000px;}
.ls6f{letter-spacing:327.888000px;}
.ls65{letter-spacing:340.848000px;}
.ls67{letter-spacing:344.448000px;}
.ls6a{letter-spacing:345.888000px;}
.ls6b{letter-spacing:350.928000px;}
.ls2c{letter-spacing:375.249600px;}
.ls4{letter-spacing:438.768000px;}
.ls2{letter-spacing:486.288000px;}
.ls3{letter-spacing:491.328000px;}
.ls7{letter-spacing:848.998080px;}
.ls1f{letter-spacing:849.029760px;}
.ls6{letter-spacing:962.208000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(88,156,48),0 0.015em rgb(88,156,48),0.015em 0 rgb(88,156,48),0 -0.015em  rgb(88,156,48);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(88,156,48);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3f{word-spacing:-66.240000px;}
.ws3e{word-spacing:-59.760000px;}
.wsf{word-spacing:-54.000000px;}
.ws0{word-spacing:-26.028000px;}
.ws2{word-spacing:-25.812000px;}
.ws1{word-spacing:-25.704000px;}
.wse5{word-spacing:-24.624000px;}
.ws1f{word-spacing:-24.516000px;}
.ws58{word-spacing:-21.354480px;}
.ws80{word-spacing:-18.785520px;}
.ws3b{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws11{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.056000px;}
.ws16{word-spacing:-15.984000px;}
.ws87{word-spacing:-15.430903px;}
.wsa5{word-spacing:-15.301440px;}
.ws34{word-spacing:-15.235200px;}
.ws35{word-spacing:-15.102720px;}
.ws3c{word-spacing:-15.036480px;}
.ws25{word-spacing:-14.970240px;}
.ws26{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.837760px;}
.ws15{word-spacing:-14.771520px;}
.ws14{word-spacing:-14.705280px;}
.ws6b{word-spacing:-14.639040px;}
.ws8f{word-spacing:-14.572800px;}
.wse6{word-spacing:-14.506560px;}
.ws13{word-spacing:-14.440320px;}
.wsa6{word-spacing:-14.374080px;}
.wsc7{word-spacing:-14.307840px;}
.wsb1{word-spacing:-14.175360px;}
.ws98{word-spacing:-14.109120px;}
.wse7{word-spacing:-14.042880px;}
.wsc8{word-spacing:-13.976640px;}
.wsb0{word-spacing:-12.204000px;}
.ws10{word-spacing:-11.880000px;}
.wsa7{word-spacing:-0.993600px;}
.wsc2{word-spacing:-0.927360px;}
.ws92{word-spacing:-0.861120px;}
.wsac{word-spacing:-0.758160px;}
.ws38{word-spacing:-0.728640px;}
.wsbc{word-spacing:-0.662400px;}
.ws39{word-spacing:-0.596160px;}
.ws1e{word-spacing:-0.529920px;}
.wsea{word-spacing:-0.463680px;}
.ws7{word-spacing:-0.459360px;}
.ws91{word-spacing:-0.397440px;}
.ws6e{word-spacing:-0.331200px;}
.ws5a{word-spacing:-0.287280px;}
.wse9{word-spacing:-0.264960px;}
.wsb{word-spacing:-0.263520px;}
.ws9{word-spacing:-0.216000px;}
.wseb{word-spacing:-0.198720px;}
.ws85{word-spacing:-0.168480px;}
.ws8{word-spacing:-0.167040px;}
.ws5c{word-spacing:-0.132480px;}
.wsa{word-spacing:-0.131760px;}
.ws1a{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.072000px;}
.ws4a{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
.ws18{word-spacing:0.054000px;}
.ws3d{word-spacing:0.066240px;}
.wse{word-spacing:0.072000px;}
.wsd4{word-spacing:0.095760px;}
.ws59{word-spacing:0.108000px;}
.ws36{word-spacing:0.132480px;}
.ws1c{word-spacing:0.198720px;}
.ws19{word-spacing:0.216000px;}
.ws24{word-spacing:0.264960px;}
.ws17{word-spacing:0.270000px;}
.ws67{word-spacing:0.287280px;}
.ws7f{word-spacing:0.324000px;}
.ws3a{word-spacing:0.331200px;}
.ws90{word-spacing:0.378000px;}
.ws1b{word-spacing:0.397440px;}
.ws8b{word-spacing:0.463680px;}
.wsc{word-spacing:0.504000px;}
.wse8{word-spacing:0.596160px;}
.ws1d{word-spacing:0.662400px;}
.ws47{word-spacing:0.728640px;}
.wsa9{word-spacing:0.768054px;}
.ws94{word-spacing:0.794880px;}
.ws37{word-spacing:0.861120px;}
.ws2d{word-spacing:0.927360px;}
.ws33{word-spacing:1.126080px;}
.wsb2{word-spacing:1.256816px;}
.wsa3{word-spacing:1.324800px;}
.wsaa{word-spacing:1.391040px;}
.ws27{word-spacing:1.457280px;}
.wsb5{word-spacing:1.523520px;}
.ws28{word-spacing:1.656000px;}
.ws93{word-spacing:1.854720px;}
.wsa2{word-spacing:1.920960px;}
.ws88{word-spacing:2.024870px;}
.wsbb{word-spacing:2.119680px;}
.ws86{word-spacing:2.185920px;}
.ws4e{word-spacing:2.384640px;}
.ws89{word-spacing:2.517120px;}
.ws65{word-spacing:2.583360px;}
.ws54{word-spacing:2.914560px;}
.ws2e{word-spacing:3.113280px;}
.wsae{word-spacing:3.245760px;}
.ws45{word-spacing:3.312000px;}
.ws9c{word-spacing:3.576960px;}
.ws9e{word-spacing:3.643200px;}
.wsa4{word-spacing:3.775680px;}
.ws30{word-spacing:3.841920px;}
.ws72{word-spacing:4.040640px;}
.wsa1{word-spacing:4.173120px;}
.ws82{word-spacing:4.305600px;}
.ws96{word-spacing:4.504320px;}
.ws79{word-spacing:4.636800px;}
.ws95{word-spacing:4.703040px;}
.ws84{word-spacing:5.034240px;}
.ws31{word-spacing:5.232960px;}
.wsad{word-spacing:5.365440px;}
.ws23{word-spacing:5.431680px;}
.wsbd{word-spacing:5.497920px;}
.wscd{word-spacing:5.762880px;}
.ws43{word-spacing:5.961600px;}
.wsab{word-spacing:6.160320px;}
.wsb4{word-spacing:6.226560px;}
.ws73{word-spacing:6.359040px;}
.ws6a{word-spacing:6.491520px;}
.wsb9{word-spacing:6.624000px;}
.ws66{word-spacing:6.690240px;}
.ws7a{word-spacing:6.822720px;}
.ws22{word-spacing:6.888960px;}
.ws9f{word-spacing:7.220160px;}
.wscc{word-spacing:7.286400px;}
.ws74{word-spacing:7.418880px;}
.ws78{word-spacing:7.551360px;}
.ws50{word-spacing:7.617600px;}
.wsbe{word-spacing:7.816320px;}
.wsa8{word-spacing:7.948800px;}
.ws2a{word-spacing:8.147520px;}
.ws77{word-spacing:8.280000px;}
.ws68{word-spacing:8.346240px;}
.wsce{word-spacing:8.677440px;}
.ws4c{word-spacing:8.876160px;}
.ws97{word-spacing:9.074880px;}
.ws9d{word-spacing:9.273600px;}
.ws83{word-spacing:9.406080px;}
.ws5b{word-spacing:9.604800px;}
.ws42{word-spacing:9.803520px;}
.ws63{word-spacing:9.936000px;}
.wsa0{word-spacing:10.068480px;}
.wsb8{word-spacing:10.200960px;}
.ws8e{word-spacing:10.267200px;}
.ws44{word-spacing:10.465920px;}
.wsda{word-spacing:10.797120px;}
.ws4f{word-spacing:10.995840px;}
.ws64{word-spacing:11.194560px;}
.ws99{word-spacing:11.459520px;}
.wsc0{word-spacing:11.525760px;}
.ws4d{word-spacing:11.724480px;}
.ws69{word-spacing:11.923200px;}
.wscf{word-spacing:12.254400px;}
.ws6c{word-spacing:12.453120px;}
.ws55{word-spacing:12.651840px;}
.wsd5{word-spacing:12.983040px;}
.wsd8{word-spacing:13.049280px;}
.ws9b{word-spacing:13.181760px;}
.ws56{word-spacing:13.380480px;}
.ws7c{word-spacing:13.711680px;}
.wsdb{word-spacing:13.844160px;}
.ws2c{word-spacing:13.910400px;}
.ws9a{word-spacing:14.109120px;}
.wse4{word-spacing:14.440320px;}
.ws7d{word-spacing:14.639040px;}
.ws4b{word-spacing:14.837760px;}
.wsd3{word-spacing:15.168960px;}
.wsd2{word-spacing:15.367680px;}
.ws32{word-spacing:15.566400px;}
.ws29{word-spacing:16.030080px;}
.ws6f{word-spacing:16.228800px;}
.wsba{word-spacing:16.758720px;}
.ws7b{word-spacing:17.288640px;}
.ws21{word-spacing:17.487360px;}
.ws57{word-spacing:17.686080px;}
.ws8a{word-spacing:18.017280px;}
.wse3{word-spacing:18.216000px;}
.wsb7{word-spacing:18.348480px;}
.wsb6{word-spacing:18.414720px;}
.wscb{word-spacing:18.480960px;}
.ws2b{word-spacing:18.944640px;}
.wse2{word-spacing:19.077120px;}
.ws20{word-spacing:19.143360px;}
.ws5d{word-spacing:19.673280px;}
.wsd1{word-spacing:19.872000px;}
.wsc1{word-spacing:20.865600px;}
.ws62{word-spacing:21.064320px;}
.wsd7{word-spacing:21.792960px;}
.wse1{word-spacing:21.991680px;}
.wsd0{word-spacing:22.521600px;}
.wsd9{word-spacing:22.720320px;}
.wsc3{word-spacing:23.051520px;}
.wsbf{word-spacing:23.250240px;}
.wsc4{word-spacing:23.780160px;}
.wsc5{word-spacing:23.846400px;}
.ws53{word-spacing:23.978880px;}
.wsc6{word-spacing:24.111360px;}
.wsc9{word-spacing:24.508800px;}
.ws81{word-spacing:24.707520px;}
.wsca{word-spacing:25.237440px;}
.ws6d{word-spacing:25.436160px;}
.wsdf{word-spacing:26.496000px;}
.ws75{word-spacing:26.628480px;}
.ws76{word-spacing:26.827200px;}
.wse0{word-spacing:27.025920px;}
.ws8c{word-spacing:28.085760px;}
.ws7e{word-spacing:28.284480px;}
.ws2f{word-spacing:29.013120px;}
.ws8d{word-spacing:29.211840px;}
.wsaf{word-spacing:29.741760px;}
.ws60{word-spacing:30.139200px;}
.ws61{word-spacing:30.470400px;}
.wsb3{word-spacing:30.669120px;}
.wsde{word-spacing:31.927680px;}
.wsdd{word-spacing:32.258880px;}
.ws40{word-spacing:32.391360px;}
.ws41{word-spacing:32.590080px;}
.wsdc{word-spacing:32.788800px;}
.wsd6{word-spacing:33.318720px;}
.ws5f{word-spacing:34.776000px;}
.ws5e{word-spacing:34.974720px;}
.ws70{word-spacing:35.504640px;}
.ws71{word-spacing:35.703360px;}
.ws46{word-spacing:36.233280px;}
.ws51{word-spacing:37.160640px;}
.ws52{word-spacing:37.624320px;}
.ws48{word-spacing:72.400320px;}
.ws49{word-spacing:375.514560px;}
._1a{margin-left:-31.089312px;}
._1b{margin-left:-16.582752px;}
._b{margin-left:-13.900320px;}
._6{margin-left:-12.702816px;}
._a{margin-left:-11.431008px;}
._9{margin-left:-9.505440px;}
._18{margin-left:-8.404704px;}
._7{margin-left:-7.153056px;}
._c{margin-left:-5.812560px;}
._8{margin-left:-3.886272px;}
._16{margin-left:-2.511792px;}
._0{margin-left:-1.482480px;}
._1{width:1.110816px;}
._10{width:2.596320px;}
._15{width:4.448160px;}
._14{width:6.366816px;}
._19{width:7.610112px;}
._13{width:8.962416px;}
._f{width:10.478880px;}
._17{width:12.985632px;}
._11{width:16.043040px;}
._12{width:19.487520px;}
._e{width:29.953440px;}
._d{width:34.259040px;}
._3{width:146.340288px;}
._4{width:200.178000px;}
._2{width:322.827552px;}
._5{width:848.998080px;}
.fca{color:rgb(31,77,120);}
.fc8{color:rgb(0,162,200);}
.fc5{color:rgb(16,57,74);}
.fc4{color:rgb(41,78,50);}
.fc2{color:rgb(14,33,48);}
.fc9{color:rgb(112,173,71);}
.fc1{color:rgb(121,184,127);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(13,13,13);}
.fc3{color:rgb(88,156,48);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:2.880000px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:69.823091px;}
.fs6{font-size:72.000000px;}
.fsc{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs4{font-size:87.120000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y218{bottom:3.960000px;}
.y1f{bottom:4.500000px;}
.y1d{bottom:4.860000px;}
.y2f{bottom:5.040000px;}
.y83{bottom:5.220000px;}
.y1f9{bottom:10.980000px;}
.y126{bottom:18.180000px;}
.y22{bottom:24.660000px;}
.y20a{bottom:29.520000px;}
.y128{bottom:39.780000px;}
.y12b{bottom:39.960000px;}
.y2b9{bottom:44.820000px;}
.y7{bottom:55.983960px;}
.y12e{bottom:61.560000px;}
.y2b2{bottom:64.800000px;}
.y2c5{bottom:64.980000px;}
.y6{bottom:68.940000px;}
.y1fd{bottom:69.660000px;}
.y204{bottom:69.840000px;}
.y1a{bottom:71.280000px;}
.y214{bottom:72.360000px;}
.y5{bottom:78.845040px;}
.y19{bottom:90.535500px;}
.y18{bottom:107.640000px;}
.y4{bottom:131.770800px;}
.yb5{bottom:138.959280px;}
.y170{bottom:138.966480px;}
.y18e{bottom:139.322160px;}
.y212{bottom:140.222160px;}
.y3{bottom:151.924320px;}
.yd8{bottom:155.019600px;}
.y292{bottom:156.291840px;}
.y123{bottom:158.593680px;}
.y16f{bottom:159.120000px;}
.y149{bottom:159.486480px;}
.yb4{bottom:160.735680px;}
.y26f{bottom:161.287200px;}
.y1b6{bottom:164.886480px;}
.y24d{bottom:166.343040px;}
.yfb{bottom:167.940000px;}
.y2{bottom:172.077840px;}
.y211{bottom:173.888640px;}
.yd7{bottom:175.173120px;}
.y291{bottom:178.068240px;}
.y119{bottom:178.393680px;}
.y16e{bottom:179.106480px;}
.y148{bottom:179.640000px;}
.y122{bottom:180.370080px;}
.y18d{bottom:180.540000px;}
.y26e{bottom:183.063600px;}
.y1b5{bottom:185.040000px;}
.y24c{bottom:187.937280px;}
.yfa{bottom:194.412960px;}
.yb3{bottom:195.296400px;}
.yd6{bottom:195.326640px;}
.y16d{bottom:199.260000px;}
.y121{bottom:202.146480px;}
.y26d{bottom:204.840000px;}
.y1b4{bottom:205.020000px;}
.y210{bottom:207.720720px;}
.y24b{bottom:209.713680px;}
.y290{bottom:211.734720px;}
.y118{bottom:212.225760px;}
.y18c{bottom:214.560000px;}
.yd5{bottom:215.480160px;}
.y16c{bottom:219.426480px;}
.y147{bottom:222.490800px;}
.y190{bottom:225.180000px;}
.yb2{bottom:230.039280px;}
.y24a{bottom:231.490080px;}
.y28f{bottom:233.511120px;}
.y117{bottom:233.820000px;}
.y2cf{bottom:234.360000px;}
.y120{bottom:235.812960px;}
.y1e9{bottom:237.263760px;}
.y26c{bottom:238.140000px;}
.y16b{bottom:239.580000px;}
.y20f{bottom:241.387200px;}
.y1cb{bottom:243.004500px;}
.y1b3{bottom:245.340000px;}
.y18b{bottom:248.580000px;}
.y2cd{bottom:251.280000px;}
.yb1{bottom:251.633520px;}
.y2cc{bottom:252.360000px;}
.y249{bottom:253.266480px;}
.y28e{bottom:255.287520px;}
.yd4{bottom:256.698000px;}
.y11f{bottom:257.589360px;}
.y18f{bottom:259.020000px;}
.y1e8{bottom:259.040160px;}
.y16a{bottom:259.746480px;}
.y20e{bottom:263.163600px;}
.yf5{bottom:263.190960px;}
.y146{bottom:263.526480px;}
.y1b2{bottom:265.506480px;}
.y116{bottom:266.040000px;}
.y1ca{bottom:274.500000px;}
.y2ca{bottom:274.680000px;}
.y15{bottom:276.480000px;}
.yd3{bottom:276.851520px;}
.y28d{bottom:276.881760px;}
.y26b{bottom:279.261360px;}
.y11e{bottom:279.365760px;}
.y169{bottom:279.900000px;}
.y1e7{bottom:280.816560px;}
.y145{bottom:283.680000px;}
.y20d{bottom:284.940000px;}
.yf4{bottom:284.967360px;}
.y1b1{bottom:285.660000px;}
.yb0{bottom:286.376400px;}
.y248{bottom:286.932960px;}
.yd2{bottom:297.005040px;}
.y2cb{bottom:299.340000px;}
.y11d{bottom:300.960000px;}
.y26a{bottom:301.037760px;}
.y1c9{bottom:301.140000px;}
.y1e6{bottom:302.592960px;}
.y144{bottom:303.846480px;}
.y1b0{bottom:305.826480px;}
.yf3{bottom:306.743760px;}
.y247{bottom:308.709360px;}
.y28c{bottom:310.713840px;}
.y115{bottom:311.770800px;}
.yd1{bottom:317.158560px;}
.y20c{bottom:318.600000px;}
.y14{bottom:320.040000px;}
.yaf{bottom:320.937120px;}
.y168{bottom:322.568640px;}
.y269{bottom:322.632000px;}
.y6d{bottom:323.634960px;}
.y143{bottom:324.000000px;}
.y1e5{bottom:324.187200px;}
.y1af{bottom:325.980000px;}
.yf2{bottom:328.520160px;}
.y246{bottom:330.485760px;}
.y114{bottom:331.924320px;}
.y28b{bottom:332.490240px;}
.y209{bottom:334.980000px;}
.yd0{bottom:337.146480px;}
.y2c9{bottom:337.320000px;}
.y11c{bottom:340.740000px;}
.y20b{bottom:343.440000px;}
.y1eb{bottom:343.620000px;}
.y142{bottom:344.166480px;}
.y268{bottom:344.408400px;}
.y1e4{bottom:345.963600px;}
.y1ae{bottom:346.146480px;}
.yf1{bottom:350.114400px;}
.y245{bottom:352.080000px;}
.y13{bottom:352.980000px;}
.y6c{bottom:353.873520px;}
.y28a{bottom:354.084480px;}
.yae{bottom:354.603600px;}
.y208{bottom:355.140000px;}
.ycf{bottom:357.300000px;}
.y2c8{bottom:359.820000px;}
.y167{bottom:363.786480px;}
.y141{bottom:364.320000px;}
.y267{bottom:366.184800px;}
.y1ad{bottom:366.300000px;}
.y1e3{bottom:367.740000px;}
.y1ea{bottom:370.080000px;}
.y113{bottom:372.960000px;}
.y22a{bottom:373.318560px;}
.y11b{bottom:374.940000px;}
.y289{bottom:375.860880px;}
.yad{bottom:376.380000px;}
.y203{bottom:381.780000px;}
.y166{bottom:383.940000px;}
.yf0{bottom:383.946480px;}
.y244{bottom:385.560000px;}
.y12{bottom:385.920000px;}
.y1ac{bottom:386.286480px;}
.y6b{bottom:387.540000px;}
.y207{bottom:390.240000px;}
.y112{bottom:393.120000px;}
.y288{bottom:397.637280px;}
.y266{bottom:399.851280px;}
.y1e2{bottom:399.960000px;}
.y11a{bottom:401.580000px;}
.y2c4{bottom:402.300000px;}
.yce{bottom:402.840000px;}
.y165{bottom:404.106480px;}
.yef{bottom:405.722880px;}
.y1ab{bottom:406.446480px;}
.y229{bottom:406.985040px;}
.y140{bottom:406.988640px;}
.y202{bottom:409.320000px;}
.yac{bottom:410.220000px;}
.y206{bottom:410.400000px;}
.y111{bottom:413.280000px;}
.y6a{bottom:416.880000px;}
.y11{bottom:418.860000px;}
.y287{bottom:419.413680px;}
.y265{bottom:421.627680px;}
.y164{bottom:424.260000px;}
.y243{bottom:426.487680px;}
.y1aa{bottom:426.600000px;}
.y2c7{bottom:426.960000px;}
.yee{bottom:427.317120px;}
.y205{bottom:431.460000px;}
.y201{bottom:435.060000px;}
.y1e1{bottom:438.140880px;}
.y228{bottom:440.651520px;}
.y286{bottom:441.007920px;}
.y264{bottom:443.404080px;}
.ycd{bottom:443.714400px;}
.yab{bottom:443.883600px;}
.y163{bottom:444.412080px;}
.y69{bottom:446.040000px;}
.y1a9{bottom:446.779440px;}
.y2c6{bottom:447.120000px;}
.y13f{bottom:448.206480px;}
.y242{bottom:448.264080px;}
.yed{bottom:449.093520px;}
.y10{bottom:451.800000px;}
.y110{bottom:454.320000px;}
.y188{bottom:455.276160px;}
.y1e0{bottom:459.917280px;}
.y227{bottom:462.427920px;}
.y285{bottom:462.784320px;}
.y162{bottom:464.400000px;}
.y263{bottom:465.180480px;}
.yaa{bottom:465.660000px;}
.y1a8{bottom:466.932960px;}
.y13e{bottom:468.360000px;}
.y1fc{bottom:468.900000px;}
.y241{bottom:470.040480px;}
.y68{bottom:475.200000px;}
.y187{bottom:475.429680px;}
.y200{bottom:477.360000px;}
.ycc{bottom:477.380880px;}
.y2b0{bottom:478.508400px;}
.y1df{bottom:481.693680px;}
.yec{bottom:482.760000px;}
.y226{bottom:484.204320px;}
.y161{bottom:484.566480px;}
.y2c2{bottom:485.100000px;}
.y262{bottom:486.774720px;}
.y1a7{bottom:487.086480px;}
.y13d{bottom:488.346480px;}
.y240{bottom:491.816880px;}
.y186{bottom:495.583200px;}
.y1fb{bottom:496.260000px;}
.y284{bottom:496.450800px;}
.yf{bottom:496.800000px;}
.y1ff{bottom:497.520000px;}
.y10f{bottom:498.600000px;}
.y2af{bottom:498.661920px;}
.ycb{bottom:499.157280px;}
.ya9{bottom:499.320000px;}
.y1de{bottom:503.287920px;}
.y67{bottom:504.540000px;}
.y160{bottom:504.720000px;}
.y1a6{bottom:507.240000px;}
.y13c{bottom:508.500000px;}
.y261{bottom:508.551120px;}
.y2c3{bottom:509.760000px;}
.y35{bottom:510.833520px;}
.y23f{bottom:513.411120px;}
.y185{bottom:515.736720px;}
.yeb{bottom:516.600000px;}
.y225{bottom:517.870800px;}
.y283{bottom:518.227200px;}
.y1fe{bottom:518.400000px;}
.y1fa{bottom:522.000000px;}
.y15f{bottom:524.886480px;}
.y95{bottom:526.673520px;}
.y1a5{bottom:527.406480px;}
.y13b{bottom:528.666480px;}
.ya8{bottom:531.568800px;}
.y2ae{bottom:532.328400px;}
.yca{bottom:532.989360px;}
.y1c8{bottom:532.994400px;}
.y66{bottom:533.700000px;}
.y23e{bottom:535.187520px;}
.y1dd{bottom:537.120000px;}
.y224{bottom:539.647200px;}
.y282{bottom:540.003600px;}
.ye{bottom:541.800000px;}
.y260{bottom:542.383200px;}
.y10e{bottom:544.174560px;}
.y34{bottom:544.500000px;}
.y15e{bottom:545.040000px;}
.y1a4{bottom:547.560000px;}
.y2c0{bottom:547.740000px;}
.y13a{bottom:548.820000px;}
.yea{bottom:550.260000px;}
.y2ad{bottom:554.104800px;}
.yc9{bottom:554.583600px;}
.y1f8{bottom:555.840000px;}
.y184{bottom:556.772400px;}
.y94{bottom:560.340000px;}
.y33{bottom:560.880000px;}
.y223{bottom:561.423600px;}
.y281{bottom:561.780000px;}
.y65{bottom:563.040000px;}
.ya7{bottom:563.612400px;}
.y25f{bottom:563.977440px;}
.y7e{bottom:564.662880px;}
.y1c7{bottom:566.660880px;}
.y55{bottom:567.552960px;}
.y1a3{bottom:567.712080px;}
.y139{bottom:568.986480px;}
.y23d{bottom:569.019600px;}
.y1dc{bottom:570.780000px;}
.y2c1{bottom:572.400000px;}
.y2ac{bottom:575.881200px;}
.yc8{bottom:576.360000px;}
.y93{bottom:576.900000px;}
.y183{bottom:576.925920px;}
.y32{bottom:581.760000px;}
.y222{bottom:583.200000px;}
.ya6{bottom:583.765920px;}
.ye9{bottom:584.100000px;}
.y10d{bottom:585.392400px;}
.y25e{bottom:585.753840px;}
.yd{bottom:586.800000px;}
.y1a2{bottom:587.700000px;}
.y54{bottom:587.706480px;}
.y15d{bottom:587.708640px;}
.y138{bottom:589.140000px;}
.y23c{bottom:590.613840px;}
.y64{bottom:592.200000px;}
.y280{bottom:595.080000px;}
.y182{bottom:597.079440px;}
.y2ab{bottom:597.657600px;}
.y92{bottom:599.400000px;}
.y1c6{bottom:600.327360px;}
.y31{bottom:602.640000px;}
.ya5{bottom:603.919440px;}
.y1f7{bottom:604.264500px;}
.y1db{bottom:604.620000px;}
.y10c{bottom:605.545920px;}
.y25d{bottom:607.530240px;}
.y53{bottom:607.860000px;}
.y1a1{bottom:607.866480px;}
.y7d{bottom:608.580000px;}
.y137{bottom:609.312960px;}
.yc7{bottom:610.023600px;}
.y2bf{bottom:610.560000px;}
.y23b{bottom:612.390240px;}
.y181{bottom:617.232960px;}
.ye8{bottom:617.760000px;}
.y2aa{bottom:619.251840px;}
.y63{bottom:621.540000px;}
.y91{bottom:621.900000px;}
.y2ce{bottom:622.080000px;}
.y1c5{bottom:622.103760px;}
.yc{bottom:622.431000px;}
.y221{bottom:622.800000px;}
.y30{bottom:623.520000px;}
.ya4{bottom:624.072960px;}
.y10b{bottom:625.699440px;}
.y52{bottom:628.020000px;}
.y15c{bottom:628.926480px;}
.y25c{bottom:629.306640px;}
.y136{bottom:629.466480px;}
.y7c{bottom:630.900000px;}
.yc6{bottom:631.800000px;}
.y23a{bottom:634.166640px;}
.y1f6{bottom:635.760000px;}
.y27f{bottom:636.181920px;}
.y180{bottom:637.386480px;}
.y1da{bottom:638.283600px;}
.y1c4{bottom:643.880160px;}
.ya3{bottom:644.226480px;}
.y2e{bottom:644.400000px;}
.y1a0{bottom:648.192960px;}
.y51{bottom:648.274320px;}
.y15b{bottom:649.080000px;}
.y135{bottom:649.620000px;}
.y62{bottom:650.700000px;}
.y25b{bottom:650.900880px;}
.ye7{bottom:651.600000px;}
.y2bd{bottom:653.040000px;}
.y2a9{bottom:653.083920px;}
.y7b{bottom:654.480000px;}
.y239{bottom:655.943040px;}
.y17f{bottom:657.540000px;}
.y27e{bottom:657.958320px;}
.y220{bottom:659.700000px;}
.y1d9{bottom:660.060000px;}
.ya2{bottom:664.380000px;}
.yc5{bottom:665.649360px;}
.y1c3{bottom:665.656560px;}
.y1f5{bottom:666.723600px;}
.y10a{bottom:666.735120px;}
.y90{bottom:666.900000px;}
.y50{bottom:668.262240px;}
.y19f{bottom:668.346480px;}
.y15a{bottom:669.246480px;}
.y25a{bottom:672.677280px;}
.y2a8{bottom:674.678160px;}
.yb{bottom:676.080000px;}
.y2be{bottom:677.700000px;}
.y7a{bottom:678.240000px;}
.y27d{bottom:679.552560px;}
.y61{bottom:679.860000px;}
.ye6{bottom:684.900000px;}
.y2d{bottom:685.267920px;}
.y109{bottom:686.888640px;}
.yc4{bottom:687.243600px;}
.y1c2{bottom:687.250800px;}
.y4f{bottom:688.415760px;}
.y19e{bottom:688.500000px;}
.y8f{bottom:689.400000px;}
.y238{bottom:689.609520px;}
.y134{bottom:692.283600px;}
.y21f{bottom:693.360000px;}
.y2a7{bottom:696.454560px;}
.ya1{bottom:696.458880px;}
.y1d8{bottom:699.660000px;}
.y79{bottom:701.460000px;}
.y17e{bottom:701.640000px;}
.y259{bottom:706.509360px;}
.y108{bottom:707.042160px;}
.y4e{bottom:708.569280px;}
.y19d{bottom:708.666480px;}
.yc3{bottom:709.020000px;}
.y1c1{bottom:709.027200px;}
.y60{bottom:709.200000px;}
.y159{bottom:709.566480px;}
.y237{bottom:711.385920px;}
.y8e{bottom:711.900000px;}
.y27c{bottom:713.384640px;}
.y2bb{bottom:715.680000px;}
.ya0{bottom:716.612400px;}
.y2a6{bottom:718.230960px;}
.y2c{bottom:719.100000px;}
.y29e{bottom:720.743040px;}
.y1f4{bottom:722.160000px;}
.y78{bottom:723.240000px;}
.ye5{bottom:725.945760px;}
.y21e{bottom:727.020000px;}
.y258{bottom:728.103600px;}
.y4d{bottom:728.722800px;}
.y19c{bottom:728.820000px;}
.y133{bottom:728.997120px;}
.y158{bottom:729.720000px;}
.y1c0{bottom:730.803600px;}
.ya{bottom:731.880000px;}
.y236{bottom:733.162320px;}
.y8d{bottom:734.400000px;}
.y27b{bottom:734.978880px;}
.y2b{bottom:735.480000px;}
.y1d7{bottom:736.569360px;}
.y9f{bottom:736.765920px;}
.y5f{bottom:738.360000px;}
.y18a{bottom:739.254240px;}
.y2a5{bottom:740.007360px;}
.y2bc{bottom:740.340000px;}
.yc2{bottom:742.869360px;}
.y77{bottom:744.840000px;}
.y17d{bottom:747.365040px;}
.ye4{bottom:747.540000px;}
.y107{bottom:748.260000px;}
.y4c{bottom:748.876320px;}
.y19b{bottom:748.986480px;}
.y157{bottom:749.706480px;}
.y257{bottom:749.880000px;}
.y132{bottom:750.773520px;}
.y1bf{bottom:752.580000px;}
.y29d{bottom:754.575120px;}
.y235{bottom:754.756560px;}
.y189{bottom:754.920000px;}
.y1f3{bottom:756.003600px;}
.y2a{bottom:756.360000px;}
.y27a{bottom:756.755280px;}
.y8c{bottom:756.900000px;}
.y9e{bottom:756.919440px;}
.y1d6{bottom:758.163600px;}
.y21d{bottom:760.860000px;}
.yc1{bottom:764.463600px;}
.y17c{bottom:767.518560px;}
.y5e{bottom:767.700000px;}
.y106{bottom:768.420000px;}
.y4b{bottom:769.029840px;}
.y19a{bottom:769.140000px;}
.y156{bottom:769.860000px;}
.y2a4{bottom:773.673840px;}
.y234{bottom:776.532960px;}
.y9d{bottom:777.072960px;}
.y29{bottom:777.240000px;}
.y1f2{bottom:777.780000px;}
.y2b8{bottom:778.320000px;}
.y279{bottom:778.531680px;}
.y76{bottom:779.220000px;}
.y8b{bottom:779.400000px;}
.y1d5{bottom:779.940000px;}
.ye3{bottom:781.383600px;}
.y256{bottom:783.360000px;}
.y131{bottom:784.440000px;}
.y1be{bottom:784.620000px;}
.yc0{bottom:786.240000px;}
.y17b{bottom:787.672080px;}
.y29c{bottom:788.241600px;}
.y105{bottom:788.400000px;}
.y199{bottom:789.120000px;}
.y4a{bottom:789.183360px;}
.y155{bottom:790.026480px;}
.y9{bottom:791.100000px;}
.y21c{bottom:794.520000px;}
.y2a3{bottom:795.450240px;}
.y5d{bottom:796.860000px;}
.y9c{bottom:797.226480px;}
.y28{bottom:798.120000px;}
.y233{bottom:798.309360px;}
.y278{bottom:800.308080px;}
.y12d{bottom:800.820000px;}
.y8a{bottom:801.900000px;}
.y2ba{bottom:802.979850px;}
.ye2{bottom:803.160000px;}
.y17a{bottom:807.660000px;}
.y198{bottom:809.286480px;}
.y49{bottom:809.336880px;}
.y154{bottom:810.180000px;}
.y217{bottom:810.900000px;}
.y1f1{bottom:811.440000px;}
.y1d4{bottom:813.785760px;}
.y2a2{bottom:817.226640px;}
.y9b{bottom:817.380000px;}
.y27{bottom:819.000000px;}
.y130{bottom:819.003600px;}
.y232{bottom:820.085760px;}
.ybf{bottom:820.092960px;}
.yf9{bottom:820.099440px;}
.y29b{bottom:822.073680px;}
.y255{bottom:824.253840px;}
.y89{bottom:824.400000px;}
.y5c{bottom:826.200000px;}
.y75{bottom:829.260000px;}
.y197{bottom:829.440000px;}
.y48{bottom:829.490400px;}
.y104{bottom:829.639440px;}
.y1bd{bottom:830.365920px;}
.y21b{bottom:830.880000px;}
.y277{bottom:833.974560px;}
.y1d3{bottom:835.380000px;}
.ye1{bottom:836.823600px;}
.y9a{bottom:837.571680px;}
.y2a1{bottom:838.820880px;}
.y12f{bottom:840.780000px;}
.y2b5{bottom:841.140000px;}
.y231{bottom:841.680000px;}
.ybe{bottom:841.687200px;}
.yf8{bottom:841.693680px;}
.y29a{bottom:843.667920px;}
.y8{bottom:844.560000px;}
.y1f0{bottom:845.100000px;}
.y254{bottom:846.030240px;}
.y88{bottom:846.900000px;}
.y47{bottom:849.478320px;}
.y196{bottom:849.606480px;}
.y103{bottom:849.792960px;}
.y179{bottom:850.500000px;}
.y1bc{bottom:850.519440px;}
.y74{bottom:851.400000px;}
.y153{bottom:852.848640px;}
.y5b{bottom:855.360000px;}
.y276{bottom:855.750960px;}
.y99{bottom:857.725200px;}
.ye0{bottom:858.600000px;}
.y26{bottom:859.853520px;}
.y2a0{bottom:860.597280px;}
.ybd{bottom:863.463600px;}
.yf7{bottom:863.470080px;}
.y299{bottom:865.444320px;}
.y2b7{bottom:865.626480px;}
.y3d{bottom:866.355120px;}
.y253{bottom:867.806640px;}
.y1d2{bottom:869.223600px;}
.y87{bottom:869.400000px;}
.y46{bottom:869.631840px;}
.y195{bottom:869.760000px;}
.y102{bottom:869.946480px;}
.y1bb{bottom:870.672960px;}
.y73{bottom:875.160000px;}
.y275{bottom:877.527360px;}
.y98{bottom:877.878720px;}
.y12a{bottom:878.760000px;}
.y1ef{bottom:878.940000px;}
.y29f{bottom:882.373680px;}
.y21a{bottom:883.800000px;}
.y5a{bottom:884.520000px;}
.ybc{bottom:885.240000px;}
.yf6{bottom:885.246480px;}
.y2b6{bottom:885.780000px;}
.y298{bottom:887.220720px;}
.y1{bottom:888.480000px;}
.y252{bottom:889.400880px;}
.y45{bottom:889.785360px;}
.y194{bottom:889.920000px;}
.y101{bottom:890.100000px;}
.y1ba{bottom:890.826480px;}
.y1d1{bottom:891.000000px;}
.y178{bottom:891.546480px;}
.y86{bottom:891.900000px;}
.ydf{bottom:892.260000px;}
.y25{bottom:893.520000px;}
.y152{bottom:894.066480px;}
.y12c{bottom:896.940000px;}
.y97{bottom:898.032240px;}
.y72{bottom:898.920000px;}
.y274{bottom:899.121600px;}
.y297{bottom:908.997120px;}
.y24{bottom:909.900000px;}
.y44{bottom:909.938880px;}
.y3c{bottom:910.090080px;}
.y1b9{bottom:910.980000px;}
.y251{bottom:911.177280px;}
.y177{bottom:911.700000px;}
.y1ee{bottom:912.600000px;}
.y59{bottom:913.860000px;}
.y151{bottom:914.220000px;}
.y85{bottom:914.400000px;}
.y230{bottom:916.040160px;}
.y96{bottom:918.020160px;}
.ybb{bottom:918.912960px;}
.y71{bottom:922.140000px;}
.y2b1{bottom:923.940000px;}
.y1d0{bottom:924.663600px;}
.yde{bottom:926.100000px;}
.y43{bottom:930.092400px;}
.y23{bottom:930.780000px;}
.y193{bottom:930.981600px;}
.y176{bottom:931.866480px;}
.y250{bottom:932.953680px;}
.y150{bottom:934.386480px;}
.y127{bottom:935.100000px;}
.y100{bottom:935.460000px;}
.y219{bottom:936.720000px;}
.y84{bottom:936.900000px;}
.y22f{bottom:937.816560px;}
.yba{bottom:940.689360px;}
.y296{bottom:942.663600px;}
.y58{bottom:943.020000px;}
.y70{bottom:943.740000px;}
.y3b{bottom:943.756560px;}
.y1cf{bottom:946.440000px;}
.y2b4{bottom:948.592080px;}
.y42{bottom:950.245920px;}
.y21{bottom:951.660000px;}
.y175{bottom:952.020000px;}
.y129{bottom:953.100000px;}
.y1b8{bottom:953.640000px;}
.y14f{bottom:954.540000px;}
.y273{bottom:954.730080px;}
.y82{bottom:959.400000px;}
.y22e{bottom:959.592960px;}
.ydd{bottom:959.767200px;}
.yb9{bottom:962.465760px;}
.y295{bottom:964.440000px;}
.y6f{bottom:965.520000px;}
.y3a{bottom:965.532960px;}
.y24f{bottom:966.620160px;}
.y2b3{bottom:968.580000px;}
.y213{bottom:969.660000px;}
.y41{bottom:970.399440px;}
.y174{bottom:972.186480px;}
.y192{bottom:972.199440px;}
.y57{bottom:972.360000px;}
.y14e{bottom:974.706480px;}
.y272{bottom:976.324320px;}
.yff{bottom:976.340880px;}
.y1ed{bottom:980.100000px;}
.y1ce{bottom:980.103600px;}
.y22d{bottom:981.369360px;}
.ydc{bottom:981.543600px;}
.y81{bottom:981.900000px;}
.yb8{bottom:984.060000px;}
.y6e{bottom:987.300000px;}
.y39{bottom:987.309360px;}
.y216{bottom:988.200000px;}
.y24e{bottom:988.396560px;}
.y40{bottom:990.552960px;}
.y125{bottom:991.260000px;}
.y173{bottom:992.340000px;}
.y191{bottom:992.352960px;}
.y20{bottom:992.700000px;}
.y1b7{bottom:994.692960px;}
.y14d{bottom:994.860000px;}
.y271{bottom:998.100720px;}
.y294{bottom:998.103600px;}
.y56{bottom:1001.520000px;}
.y1cd{bottom:1001.880000px;}
.y22c{bottom:1002.963600px;}
.ydb{bottom:1003.320000px;}
.y38{bottom:1009.085760px;}
.yfe{bottom:1010.172960px;}
.y3f{bottom:1010.706480px;}
.y172{bottom:1012.506480px;}
.y1e{bottom:1013.580000px;}
.y1ec{bottom:1013.945760px;}
.y14c{bottom:1014.846480px;}
.y80{bottom:1016.640000px;}
.yb7{bottom:1017.540000px;}
.y270{bottom:1019.877120px;}
.y293{bottom:1019.880000px;}
.y22b{bottom:1024.740000px;}
.y37{bottom:1030.680000px;}
.y3e{bottom:1030.860000px;}
.yfd{bottom:1031.949360px;}
.y171{bottom:1032.660000px;}
.y215{bottom:1033.200000px;}
.y1c{bottom:1034.460000px;}
.y14b{bottom:1035.000000px;}
.y1cc{bottom:1035.540000px;}
.yda{bottom:1036.620000px;}
.y124{bottom:1044.360000px;}
.yfc{bottom:1053.543600px;}
.y14a{bottom:1055.166480px;}
.yb6{bottom:1059.120000px;}
.y36{bottom:1065.060000px;}
.y7f{bottom:1065.240000px;}
.y1b{bottom:1075.320000px;}
.yd9{bottom:1078.020000px;}
.y17{bottom:1109.154240px;}
.y16{bottom:1124.820000px;}
.h2f{height:1.919531px;}
.h14{height:19.980000px;}
.hb{height:20.160000px;}
.hc{height:20.161500px;}
.h15{height:21.600000px;}
.ha{height:21.958500px;}
.he{height:22.140000px;}
.h24{height:29.160000px;}
.h3{height:29.974219px;}
.h1b{height:33.838500px;}
.h9{height:38.759766px;}
.h17{height:39.208008px;}
.h2c{height:40.140000px;}
.hd{height:40.320000px;}
.h1a{height:44.149219px;}
.h1f{height:45.281250px;}
.h26{height:46.081500px;}
.h2{height:47.545312px;}
.h2a{height:47.576992px;}
.h19{height:47.730628px;}
.h22{height:47.988281px;}
.h8{height:48.095156px;}
.h12{height:51.656647px;}
.h10{height:51.679688px;}
.h7{height:52.277344px;}
.h1c{height:55.438500px;}
.h1d{height:55.620000px;}
.h23{height:55.788142px;}
.h18{height:60.465234px;}
.h2b{height:60.480000px;}
.h16{height:69.528867px;}
.h1e{height:77.220000px;}
.hf{height:78.355536px;}
.h13{height:78.404496px;}
.h4{height:78.416016px;}
.h11{height:78.436176px;}
.h29{height:80.460000px;}
.h2d{height:80.640000px;}
.h25{height:86.220000px;}
.h27{height:88.020000px;}
.h5{height:95.667539px;}
.h6{height:121.842211px;}
.h28{height:156.780000px;}
.h2e{height:754.200000px;}
.h20{height:892.980000px;}
.h21{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:35.821500px;}
.w12{width:41.760000px;}
.wf{width:78.660000px;}
.w2{width:84.058500px;}
.w9{width:126.360000px;}
.w11{width:169.560000px;}
.w4{width:229.320000px;}
.w5{width:233.820000px;}
.w7{width:236.160000px;}
.wb{width:334.981500px;}
.wc{width:337.140000px;}
.w3{width:381.780000px;}
.w10{width:397.980000px;}
.w6{width:455.040000px;}
.w8{width:459.720000px;}
.wa{width:552.240000px;}
.w14{width:634.318500px;}
.w15{width:671.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wd{width:1262.880000px;}
.we{width:1263.000000px;}
.x0{left:0.000000px;}
.x39{left:1.080000px;}
.xb{left:8.100000px;}
.x2a{left:21.600000px;}
.x34{left:30.420000px;}
.x2{left:106.374960px;}
.x4{left:109.260000px;}
.x38{left:111.960000px;}
.x12{left:115.200000px;}
.x7{left:116.460000px;}
.x10{left:122.940000px;}
.x1f{left:127.612800px;}
.x14{left:133.380000px;}
.x11{left:139.320000px;}
.x2c{left:148.140000px;}
.x17{left:152.460000px;}
.x15{left:160.380000px;}
.x31{left:165.780000px;}
.x1a{left:171.180000px;}
.x6{left:181.080000px;}
.x24{left:187.380000px;}
.xc{left:191.160000px;}
.x9{left:208.251000px;}
.x5{left:217.439280px;}
.x2e{left:231.660000px;}
.x13{left:234.000000px;}
.x36{left:243.720000px;}
.x2d{left:247.140000px;}
.x35{left:256.860000px;}
.x37{left:258.300000px;}
.x29{left:269.095500px;}
.x2b{left:287.280000px;}
.x30{left:295.020000px;}
.x19{left:302.040000px;}
.x2f{left:322.020000px;}
.x1b{left:334.080000px;}
.xe{left:341.280000px;}
.xf{left:343.260000px;}
.x33{left:389.340000px;}
.x1c{left:442.080000px;}
.x8{left:446.580000px;}
.x1d{left:450.180000px;}
.x32{left:478.800000px;}
.xa{left:488.880000px;}
.x28{left:515.880000px;}
.x21{left:529.920000px;}
.x26{left:532.260000px;}
.xd{left:573.660000px;}
.x22{left:642.064500px;}
.x1{left:662.940000px;}
.x1e{left:684.360000px;}
.x3{left:733.667760px;}
.x16{left:778.318560px;}
.x3a{left:781.920000px;}
.x18{left:786.780000px;}
.x25{left:1157.040000px;}
.x20{left:1158.120000px;}
.x23{left:1160.100000px;}
.x27{left:1172.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls44{letter-spacing:-1.675754pt;}
.ls57{letter-spacing:-1.236480pt;}
.ls64{letter-spacing:-0.883200pt;}
.ls59{letter-spacing:-0.824320pt;}
.ls3b{letter-spacing:-0.765440pt;}
.ls26{letter-spacing:-0.706560pt;}
.ls24{letter-spacing:-0.647680pt;}
.ls60{letter-spacing:-0.588800pt;}
.ls56{letter-spacing:-0.558585pt;}
.ls45{letter-spacing:-0.529920pt;}
.ls1b{letter-spacing:-0.471040pt;}
.ls46{letter-spacing:-0.412160pt;}
.ls4d{letter-spacing:-0.353280pt;}
.ls43{letter-spacing:-0.310325pt;}
.ls3a{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.255360pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.235520pt;}
.ls3e{letter-spacing:-0.224640pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.176640pt;}
.ls3f{letter-spacing:-0.149760pt;}
.ls42{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.117120pt;}
.ls71{letter-spacing:-0.085120pt;}
.ls1a{letter-spacing:-0.058880pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011776pt;}
.ls5a{letter-spacing:0.016000pt;}
.ls70{letter-spacing:0.017664pt;}
.ls12{letter-spacing:0.048000pt;}
.ls47{letter-spacing:0.052992pt;}
.ls28{letter-spacing:0.058880pt;}
.ls11{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.074240pt;}
.ls16{letter-spacing:0.096000pt;}
.ls5e{letter-spacing:0.106240pt;}
.ls1e{letter-spacing:0.117760pt;}
.ls18{letter-spacing:0.128000pt;}
.ls76{letter-spacing:0.133120pt;}
.ls77{letter-spacing:0.138240pt;}
.ls52{letter-spacing:0.149760pt;}
.ls51{letter-spacing:0.176640pt;}
.ls5{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.235520pt;}
.ls36{letter-spacing:0.255360pt;}
.ls29{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.288000pt;}
.ls55{letter-spacing:0.294400pt;}
.ls10{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.334080pt;}
.ls54{letter-spacing:0.353280pt;}
.ls58{letter-spacing:0.374400pt;}
.ls13{letter-spacing:0.672000pt;}
.ls22{letter-spacing:0.765440pt;}
.ls0{letter-spacing:1.058560pt;}
.lse{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.248000pt;}
.ls48{letter-spacing:1.413120pt;}
.lsd{letter-spacing:1.440000pt;}
.ls40{letter-spacing:1.960704pt;}
.ls3d{letter-spacing:2.060800pt;}
.ls32{letter-spacing:2.708480pt;}
.ls4c{letter-spacing:3.356160pt;}
.ls4a{letter-spacing:3.944960pt;}
.ls4b{letter-spacing:4.592640pt;}
.ls53{letter-spacing:4.675072pt;}
.ls5c{letter-spacing:4.858880pt;}
.ls4e{letter-spacing:6.535680pt;}
.ls61{letter-spacing:7.831040pt;}
.ls4f{letter-spacing:8.478720pt;}
.ls50{letter-spacing:9.067520pt;}
.ls41{letter-spacing:9.697536pt;}
.ls34{letter-spacing:9.715200pt;}
.ls62{letter-spacing:10.362880pt;}
.ls2f{letter-spacing:11.658240pt;}
.ls72{letter-spacing:12.305920pt;}
.ls37{letter-spacing:14.190080pt;}
.ls5d{letter-spacing:14.837760pt;}
.ls30{letter-spacing:15.485440pt;}
.ls39{letter-spacing:16.780800pt;}
.ls33{letter-spacing:17.428480pt;}
.ls75{letter-spacing:19.312640pt;}
.ls3c{letter-spacing:20.142720pt;}
.ls31{letter-spacing:20.513920pt;}
.ls74{letter-spacing:23.787520pt;}
.ls5b{letter-spacing:27.025920pt;}
.ls73{letter-spacing:28.910080pt;}
.ls38{letter-spacing:31.500800pt;}
.ls2a{letter-spacing:39.840000pt;}
.ls49{letter-spacing:46.338560pt;}
.ls5f{letter-spacing:49.254400pt;}
.ls63{letter-spacing:52.751360pt;}
.ls2e{letter-spacing:52.756480pt;}
.ls21{letter-spacing:54.656000pt;}
.ls2d{letter-spacing:56.903680pt;}
.ls23{letter-spacing:57.856000pt;}
.ls20{letter-spacing:73.216000pt;}
.ls27{letter-spacing:87.936000pt;}
.ls6d{letter-spacing:196.736000pt;}
.ls6e{letter-spacing:197.376000pt;}
.ls69{letter-spacing:224.256000pt;}
.ls6c{letter-spacing:257.536000pt;}
.ls68{letter-spacing:278.016000pt;}
.ls66{letter-spacing:286.976000pt;}
.ls6f{letter-spacing:291.456000pt;}
.ls65{letter-spacing:302.976000pt;}
.ls67{letter-spacing:306.176000pt;}
.ls6a{letter-spacing:307.456000pt;}
.ls6b{letter-spacing:311.936000pt;}
.ls2c{letter-spacing:333.555200pt;}
.ls4{letter-spacing:390.016000pt;}
.ls2{letter-spacing:432.256000pt;}
.ls3{letter-spacing:436.736000pt;}
.ls7{letter-spacing:754.664960pt;}
.ls1f{letter-spacing:754.693120pt;}
.ls6{letter-spacing:855.296000pt;}
.ws3f{word-spacing:-58.880000pt;}
.ws3e{word-spacing:-53.120000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws0{word-spacing:-23.136000pt;}
.ws2{word-spacing:-22.944000pt;}
.ws1{word-spacing:-22.848000pt;}
.wse5{word-spacing:-21.888000pt;}
.ws1f{word-spacing:-21.792000pt;}
.ws58{word-spacing:-18.981760pt;}
.ws80{word-spacing:-16.698240pt;}
.ws3b{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws11{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.272000pt;}
.ws16{word-spacing:-14.208000pt;}
.ws87{word-spacing:-13.716358pt;}
.wsa5{word-spacing:-13.601280pt;}
.ws34{word-spacing:-13.542400pt;}
.ws35{word-spacing:-13.424640pt;}
.ws3c{word-spacing:-13.365760pt;}
.ws25{word-spacing:-13.306880pt;}
.ws26{word-spacing:-13.248000pt;}
.ws12{word-spacing:-13.189120pt;}
.ws15{word-spacing:-13.130240pt;}
.ws14{word-spacing:-13.071360pt;}
.ws6b{word-spacing:-13.012480pt;}
.ws8f{word-spacing:-12.953600pt;}
.wse6{word-spacing:-12.894720pt;}
.ws13{word-spacing:-12.835840pt;}
.wsa6{word-spacing:-12.776960pt;}
.wsc7{word-spacing:-12.718080pt;}
.wsb1{word-spacing:-12.600320pt;}
.ws98{word-spacing:-12.541440pt;}
.wse7{word-spacing:-12.482560pt;}
.wsc8{word-spacing:-12.423680pt;}
.wsb0{word-spacing:-10.848000pt;}
.ws10{word-spacing:-10.560000pt;}
.wsa7{word-spacing:-0.883200pt;}
.wsc2{word-spacing:-0.824320pt;}
.ws92{word-spacing:-0.765440pt;}
.wsac{word-spacing:-0.673920pt;}
.ws38{word-spacing:-0.647680pt;}
.wsbc{word-spacing:-0.588800pt;}
.ws39{word-spacing:-0.529920pt;}
.ws1e{word-spacing:-0.471040pt;}
.wsea{word-spacing:-0.412160pt;}
.ws7{word-spacing:-0.408320pt;}
.ws91{word-spacing:-0.353280pt;}
.ws6e{word-spacing:-0.294400pt;}
.ws5a{word-spacing:-0.255360pt;}
.wse9{word-spacing:-0.235520pt;}
.wsb{word-spacing:-0.234240pt;}
.ws9{word-spacing:-0.192000pt;}
.wseb{word-spacing:-0.176640pt;}
.ws85{word-spacing:-0.149760pt;}
.ws8{word-spacing:-0.148480pt;}
.ws5c{word-spacing:-0.117760pt;}
.wsa{word-spacing:-0.117120pt;}
.ws1a{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.064000pt;}
.ws4a{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
.ws18{word-spacing:0.048000pt;}
.ws3d{word-spacing:0.058880pt;}
.wse{word-spacing:0.064000pt;}
.wsd4{word-spacing:0.085120pt;}
.ws59{word-spacing:0.096000pt;}
.ws36{word-spacing:0.117760pt;}
.ws1c{word-spacing:0.176640pt;}
.ws19{word-spacing:0.192000pt;}
.ws24{word-spacing:0.235520pt;}
.ws17{word-spacing:0.240000pt;}
.ws67{word-spacing:0.255360pt;}
.ws7f{word-spacing:0.288000pt;}
.ws3a{word-spacing:0.294400pt;}
.ws90{word-spacing:0.336000pt;}
.ws1b{word-spacing:0.353280pt;}
.ws8b{word-spacing:0.412160pt;}
.wsc{word-spacing:0.448000pt;}
.wse8{word-spacing:0.529920pt;}
.ws1d{word-spacing:0.588800pt;}
.ws47{word-spacing:0.647680pt;}
.wsa9{word-spacing:0.682715pt;}
.ws94{word-spacing:0.706560pt;}
.ws37{word-spacing:0.765440pt;}
.ws2d{word-spacing:0.824320pt;}
.ws33{word-spacing:1.000960pt;}
.wsb2{word-spacing:1.117169pt;}
.wsa3{word-spacing:1.177600pt;}
.wsaa{word-spacing:1.236480pt;}
.ws27{word-spacing:1.295360pt;}
.wsb5{word-spacing:1.354240pt;}
.ws28{word-spacing:1.472000pt;}
.ws93{word-spacing:1.648640pt;}
.wsa2{word-spacing:1.707520pt;}
.ws88{word-spacing:1.799884pt;}
.wsbb{word-spacing:1.884160pt;}
.ws86{word-spacing:1.943040pt;}
.ws4e{word-spacing:2.119680pt;}
.ws89{word-spacing:2.237440pt;}
.ws65{word-spacing:2.296320pt;}
.ws54{word-spacing:2.590720pt;}
.ws2e{word-spacing:2.767360pt;}
.wsae{word-spacing:2.885120pt;}
.ws45{word-spacing:2.944000pt;}
.ws9c{word-spacing:3.179520pt;}
.ws9e{word-spacing:3.238400pt;}
.wsa4{word-spacing:3.356160pt;}
.ws30{word-spacing:3.415040pt;}
.ws72{word-spacing:3.591680pt;}
.wsa1{word-spacing:3.709440pt;}
.ws82{word-spacing:3.827200pt;}
.ws96{word-spacing:4.003840pt;}
.ws79{word-spacing:4.121600pt;}
.ws95{word-spacing:4.180480pt;}
.ws84{word-spacing:4.474880pt;}
.ws31{word-spacing:4.651520pt;}
.wsad{word-spacing:4.769280pt;}
.ws23{word-spacing:4.828160pt;}
.wsbd{word-spacing:4.887040pt;}
.wscd{word-spacing:5.122560pt;}
.ws43{word-spacing:5.299200pt;}
.wsab{word-spacing:5.475840pt;}
.wsb4{word-spacing:5.534720pt;}
.ws73{word-spacing:5.652480pt;}
.ws6a{word-spacing:5.770240pt;}
.wsb9{word-spacing:5.888000pt;}
.ws66{word-spacing:5.946880pt;}
.ws7a{word-spacing:6.064640pt;}
.ws22{word-spacing:6.123520pt;}
.ws9f{word-spacing:6.417920pt;}
.wscc{word-spacing:6.476800pt;}
.ws74{word-spacing:6.594560pt;}
.ws78{word-spacing:6.712320pt;}
.ws50{word-spacing:6.771200pt;}
.wsbe{word-spacing:6.947840pt;}
.wsa8{word-spacing:7.065600pt;}
.ws2a{word-spacing:7.242240pt;}
.ws77{word-spacing:7.360000pt;}
.ws68{word-spacing:7.418880pt;}
.wsce{word-spacing:7.713280pt;}
.ws4c{word-spacing:7.889920pt;}
.ws97{word-spacing:8.066560pt;}
.ws9d{word-spacing:8.243200pt;}
.ws83{word-spacing:8.360960pt;}
.ws5b{word-spacing:8.537600pt;}
.ws42{word-spacing:8.714240pt;}
.ws63{word-spacing:8.832000pt;}
.wsa0{word-spacing:8.949760pt;}
.wsb8{word-spacing:9.067520pt;}
.ws8e{word-spacing:9.126400pt;}
.ws44{word-spacing:9.303040pt;}
.wsda{word-spacing:9.597440pt;}
.ws4f{word-spacing:9.774080pt;}
.ws64{word-spacing:9.950720pt;}
.ws99{word-spacing:10.186240pt;}
.wsc0{word-spacing:10.245120pt;}
.ws4d{word-spacing:10.421760pt;}
.ws69{word-spacing:10.598400pt;}
.wscf{word-spacing:10.892800pt;}
.ws6c{word-spacing:11.069440pt;}
.ws55{word-spacing:11.246080pt;}
.wsd5{word-spacing:11.540480pt;}
.wsd8{word-spacing:11.599360pt;}
.ws9b{word-spacing:11.717120pt;}
.ws56{word-spacing:11.893760pt;}
.ws7c{word-spacing:12.188160pt;}
.wsdb{word-spacing:12.305920pt;}
.ws2c{word-spacing:12.364800pt;}
.ws9a{word-spacing:12.541440pt;}
.wse4{word-spacing:12.835840pt;}
.ws7d{word-spacing:13.012480pt;}
.ws4b{word-spacing:13.189120pt;}
.wsd3{word-spacing:13.483520pt;}
.wsd2{word-spacing:13.660160pt;}
.ws32{word-spacing:13.836800pt;}
.ws29{word-spacing:14.248960pt;}
.ws6f{word-spacing:14.425600pt;}
.wsba{word-spacing:14.896640pt;}
.ws7b{word-spacing:15.367680pt;}
.ws21{word-spacing:15.544320pt;}
.ws57{word-spacing:15.720960pt;}
.ws8a{word-spacing:16.015360pt;}
.wse3{word-spacing:16.192000pt;}
.wsb7{word-spacing:16.309760pt;}
.wsb6{word-spacing:16.368640pt;}
.wscb{word-spacing:16.427520pt;}
.ws2b{word-spacing:16.839680pt;}
.wse2{word-spacing:16.957440pt;}
.ws20{word-spacing:17.016320pt;}
.ws5d{word-spacing:17.487360pt;}
.wsd1{word-spacing:17.664000pt;}
.wsc1{word-spacing:18.547200pt;}
.ws62{word-spacing:18.723840pt;}
.wsd7{word-spacing:19.371520pt;}
.wse1{word-spacing:19.548160pt;}
.wsd0{word-spacing:20.019200pt;}
.wsd9{word-spacing:20.195840pt;}
.wsc3{word-spacing:20.490240pt;}
.wsbf{word-spacing:20.666880pt;}
.wsc4{word-spacing:21.137920pt;}
.wsc5{word-spacing:21.196800pt;}
.ws53{word-spacing:21.314560pt;}
.wsc6{word-spacing:21.432320pt;}
.wsc9{word-spacing:21.785600pt;}
.ws81{word-spacing:21.962240pt;}
.wsca{word-spacing:22.433280pt;}
.ws6d{word-spacing:22.609920pt;}
.wsdf{word-spacing:23.552000pt;}
.ws75{word-spacing:23.669760pt;}
.ws76{word-spacing:23.846400pt;}
.wse0{word-spacing:24.023040pt;}
.ws8c{word-spacing:24.965120pt;}
.ws7e{word-spacing:25.141760pt;}
.ws2f{word-spacing:25.789440pt;}
.ws8d{word-spacing:25.966080pt;}
.wsaf{word-spacing:26.437120pt;}
.ws60{word-spacing:26.790400pt;}
.ws61{word-spacing:27.084800pt;}
.wsb3{word-spacing:27.261440pt;}
.wsde{word-spacing:28.380160pt;}
.wsdd{word-spacing:28.674560pt;}
.ws40{word-spacing:28.792320pt;}
.ws41{word-spacing:28.968960pt;}
.wsdc{word-spacing:29.145600pt;}
.wsd6{word-spacing:29.616640pt;}
.ws5f{word-spacing:30.912000pt;}
.ws5e{word-spacing:31.088640pt;}
.ws70{word-spacing:31.559680pt;}
.ws71{word-spacing:31.736320pt;}
.ws46{word-spacing:32.207360pt;}
.ws51{word-spacing:33.031680pt;}
.ws52{word-spacing:33.443840pt;}
.ws48{word-spacing:64.355840pt;}
.ws49{word-spacing:333.790720pt;}
._1a{margin-left:-27.634944pt;}
._1b{margin-left:-14.740224pt;}
._b{margin-left:-12.355840pt;}
._6{margin-left:-11.291392pt;}
._a{margin-left:-10.160896pt;}
._9{margin-left:-8.449280pt;}
._18{margin-left:-7.470848pt;}
._7{margin-left:-6.358272pt;}
._c{margin-left:-5.166720pt;}
._8{margin-left:-3.454464pt;}
._16{margin-left:-2.232704pt;}
._0{margin-left:-1.317760pt;}
._1{width:0.987392pt;}
._10{width:2.307840pt;}
._15{width:3.953920pt;}
._14{width:5.659392pt;}
._19{width:6.764544pt;}
._13{width:7.966592pt;}
._f{width:9.314560pt;}
._17{width:11.542784pt;}
._11{width:14.260480pt;}
._12{width:17.322240pt;}
._e{width:26.625280pt;}
._d{width:30.452480pt;}
._3{width:130.080256pt;}
._4{width:177.936000pt;}
._2{width:286.957824pt;}
._5{width:754.664960pt;}
.fsd{font-size:2.560000pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:62.064970pt;}
.fs6{font-size:64.000000pt;}
.fsc{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs4{font-size:77.440000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y218{bottom:3.520000pt;}
.y1f{bottom:4.000000pt;}
.y1d{bottom:4.320000pt;}
.y2f{bottom:4.480000pt;}
.y83{bottom:4.640000pt;}
.y1f9{bottom:9.760000pt;}
.y126{bottom:16.160000pt;}
.y22{bottom:21.920000pt;}
.y20a{bottom:26.240000pt;}
.y128{bottom:35.360000pt;}
.y12b{bottom:35.520000pt;}
.y2b9{bottom:39.840000pt;}
.y7{bottom:49.763520pt;}
.y12e{bottom:54.720000pt;}
.y2b2{bottom:57.600000pt;}
.y2c5{bottom:57.760000pt;}
.y6{bottom:61.280000pt;}
.y1fd{bottom:61.920000pt;}
.y204{bottom:62.080000pt;}
.y1a{bottom:63.360000pt;}
.y214{bottom:64.320000pt;}
.y5{bottom:70.084480pt;}
.y19{bottom:80.476000pt;}
.y18{bottom:95.680000pt;}
.y4{bottom:117.129600pt;}
.yb5{bottom:123.519360pt;}
.y170{bottom:123.525760pt;}
.y18e{bottom:123.841920pt;}
.y212{bottom:124.641920pt;}
.y3{bottom:135.043840pt;}
.yd8{bottom:137.795200pt;}
.y292{bottom:138.926080pt;}
.y123{bottom:140.972160pt;}
.y16f{bottom:141.440000pt;}
.y149{bottom:141.765760pt;}
.yb4{bottom:142.876160pt;}
.y26f{bottom:143.366400pt;}
.y1b6{bottom:146.565760pt;}
.y24d{bottom:147.860480pt;}
.yfb{bottom:149.280000pt;}
.y2{bottom:152.958080pt;}
.y211{bottom:154.567680pt;}
.yd7{bottom:155.709440pt;}
.y291{bottom:158.282880pt;}
.y119{bottom:158.572160pt;}
.y16e{bottom:159.205760pt;}
.y148{bottom:159.680000pt;}
.y122{bottom:160.328960pt;}
.y18d{bottom:160.480000pt;}
.y26e{bottom:162.723200pt;}
.y1b5{bottom:164.480000pt;}
.y24c{bottom:167.055360pt;}
.yfa{bottom:172.811520pt;}
.yb3{bottom:173.596800pt;}
.yd6{bottom:173.623680pt;}
.y16d{bottom:177.120000pt;}
.y121{bottom:179.685760pt;}
.y26d{bottom:182.080000pt;}
.y1b4{bottom:182.240000pt;}
.y210{bottom:184.640640pt;}
.y24b{bottom:186.412160pt;}
.y290{bottom:188.208640pt;}
.y118{bottom:188.645120pt;}
.y18c{bottom:190.720000pt;}
.yd5{bottom:191.537920pt;}
.y16c{bottom:195.045760pt;}
.y147{bottom:197.769600pt;}
.y190{bottom:200.160000pt;}
.yb2{bottom:204.479360pt;}
.y24a{bottom:205.768960pt;}
.y28f{bottom:207.565440pt;}
.y117{bottom:207.840000pt;}
.y2cf{bottom:208.320000pt;}
.y120{bottom:209.611520pt;}
.y1e9{bottom:210.901120pt;}
.y26c{bottom:211.680000pt;}
.y16b{bottom:212.960000pt;}
.y20f{bottom:214.566400pt;}
.y1cb{bottom:216.004000pt;}
.y1b3{bottom:218.080000pt;}
.y18b{bottom:220.960000pt;}
.y2cd{bottom:223.360000pt;}
.yb1{bottom:223.674240pt;}
.y2cc{bottom:224.320000pt;}
.y249{bottom:225.125760pt;}
.y28e{bottom:226.922240pt;}
.yd4{bottom:228.176000pt;}
.y11f{bottom:228.968320pt;}
.y18f{bottom:230.240000pt;}
.y1e8{bottom:230.257920pt;}
.y16a{bottom:230.885760pt;}
.y20e{bottom:233.923200pt;}
.yf5{bottom:233.947520pt;}
.y146{bottom:234.245760pt;}
.y1b2{bottom:236.005760pt;}
.y116{bottom:236.480000pt;}
.y1ca{bottom:244.000000pt;}
.y2ca{bottom:244.160000pt;}
.y15{bottom:245.760000pt;}
.yd3{bottom:246.090240pt;}
.y28d{bottom:246.117120pt;}
.y26b{bottom:248.232320pt;}
.y11e{bottom:248.325120pt;}
.y169{bottom:248.800000pt;}
.y1e7{bottom:249.614720pt;}
.y145{bottom:252.160000pt;}
.y20d{bottom:253.280000pt;}
.yf4{bottom:253.304320pt;}
.y1b1{bottom:253.920000pt;}
.yb0{bottom:254.556800pt;}
.y248{bottom:255.051520pt;}
.yd2{bottom:264.004480pt;}
.y2cb{bottom:266.080000pt;}
.y11d{bottom:267.520000pt;}
.y26a{bottom:267.589120pt;}
.y1c9{bottom:267.680000pt;}
.y1e6{bottom:268.971520pt;}
.y144{bottom:270.085760pt;}
.y1b0{bottom:271.845760pt;}
.yf3{bottom:272.661120pt;}
.y247{bottom:274.408320pt;}
.y28c{bottom:276.190080pt;}
.y115{bottom:277.129600pt;}
.yd1{bottom:281.918720pt;}
.y20c{bottom:283.200000pt;}
.y14{bottom:284.480000pt;}
.yaf{bottom:285.277440pt;}
.y168{bottom:286.727680pt;}
.y269{bottom:286.784000pt;}
.y6d{bottom:287.675520pt;}
.y143{bottom:288.000000pt;}
.y1e5{bottom:288.166400pt;}
.y1af{bottom:289.760000pt;}
.yf2{bottom:292.017920pt;}
.y246{bottom:293.765120pt;}
.y114{bottom:295.043840pt;}
.y28b{bottom:295.546880pt;}
.y209{bottom:297.760000pt;}
.yd0{bottom:299.685760pt;}
.y2c9{bottom:299.840000pt;}
.y11c{bottom:302.880000pt;}
.y20b{bottom:305.280000pt;}
.y1eb{bottom:305.440000pt;}
.y142{bottom:305.925760pt;}
.y268{bottom:306.140800pt;}
.y1e4{bottom:307.523200pt;}
.y1ae{bottom:307.685760pt;}
.yf1{bottom:311.212800pt;}
.y245{bottom:312.960000pt;}
.y13{bottom:313.760000pt;}
.y6c{bottom:314.554240pt;}
.y28a{bottom:314.741760pt;}
.yae{bottom:315.203200pt;}
.y208{bottom:315.680000pt;}
.ycf{bottom:317.600000pt;}
.y2c8{bottom:319.840000pt;}
.y167{bottom:323.365760pt;}
.y141{bottom:323.840000pt;}
.y267{bottom:325.497600pt;}
.y1ad{bottom:325.600000pt;}
.y1e3{bottom:326.880000pt;}
.y1ea{bottom:328.960000pt;}
.y113{bottom:331.520000pt;}
.y22a{bottom:331.838720pt;}
.y11b{bottom:333.280000pt;}
.y289{bottom:334.098560pt;}
.yad{bottom:334.560000pt;}
.y203{bottom:339.360000pt;}
.y166{bottom:341.280000pt;}
.yf0{bottom:341.285760pt;}
.y244{bottom:342.720000pt;}
.y12{bottom:343.040000pt;}
.y1ac{bottom:343.365760pt;}
.y6b{bottom:344.480000pt;}
.y207{bottom:346.880000pt;}
.y112{bottom:349.440000pt;}
.y288{bottom:353.455360pt;}
.y266{bottom:355.423360pt;}
.y1e2{bottom:355.520000pt;}
.y11a{bottom:356.960000pt;}
.y2c4{bottom:357.600000pt;}
.yce{bottom:358.080000pt;}
.y165{bottom:359.205760pt;}
.yef{bottom:360.642560pt;}
.y1ab{bottom:361.285760pt;}
.y229{bottom:361.764480pt;}
.y140{bottom:361.767680pt;}
.y202{bottom:363.840000pt;}
.yac{bottom:364.640000pt;}
.y206{bottom:364.800000pt;}
.y111{bottom:367.360000pt;}
.y6a{bottom:370.560000pt;}
.y11{bottom:372.320000pt;}
.y287{bottom:372.812160pt;}
.y265{bottom:374.780160pt;}
.y164{bottom:377.120000pt;}
.y243{bottom:379.100160pt;}
.y1aa{bottom:379.200000pt;}
.y2c7{bottom:379.520000pt;}
.yee{bottom:379.837440pt;}
.y205{bottom:383.520000pt;}
.y201{bottom:386.720000pt;}
.y1e1{bottom:389.458560pt;}
.y228{bottom:391.690240pt;}
.y286{bottom:392.007040pt;}
.y264{bottom:394.136960pt;}
.ycd{bottom:394.412800pt;}
.yab{bottom:394.563200pt;}
.y163{bottom:395.032960pt;}
.y69{bottom:396.480000pt;}
.y1a9{bottom:397.137280pt;}
.y2c6{bottom:397.440000pt;}
.y13f{bottom:398.405760pt;}
.y242{bottom:398.456960pt;}
.yed{bottom:399.194240pt;}
.y10{bottom:401.600000pt;}
.y110{bottom:403.840000pt;}
.y188{bottom:404.689920pt;}
.y1e0{bottom:408.815360pt;}
.y227{bottom:411.047040pt;}
.y285{bottom:411.363840pt;}
.y162{bottom:412.800000pt;}
.y263{bottom:413.493760pt;}
.yaa{bottom:413.920000pt;}
.y1a8{bottom:415.051520pt;}
.y13e{bottom:416.320000pt;}
.y1fc{bottom:416.800000pt;}
.y241{bottom:417.813760pt;}
.y68{bottom:422.400000pt;}
.y187{bottom:422.604160pt;}
.y200{bottom:424.320000pt;}
.ycc{bottom:424.338560pt;}
.y2b0{bottom:425.340800pt;}
.y1df{bottom:428.172160pt;}
.yec{bottom:429.120000pt;}
.y226{bottom:430.403840pt;}
.y161{bottom:430.725760pt;}
.y2c2{bottom:431.200000pt;}
.y262{bottom:432.688640pt;}
.y1a7{bottom:432.965760pt;}
.y13d{bottom:434.085760pt;}
.y240{bottom:437.170560pt;}
.y186{bottom:440.518400pt;}
.y1fb{bottom:441.120000pt;}
.y284{bottom:441.289600pt;}
.yf{bottom:441.600000pt;}
.y1ff{bottom:442.240000pt;}
.y10f{bottom:443.200000pt;}
.y2af{bottom:443.255040pt;}
.ycb{bottom:443.695360pt;}
.ya9{bottom:443.840000pt;}
.y1de{bottom:447.367040pt;}
.y67{bottom:448.480000pt;}
.y160{bottom:448.640000pt;}
.y1a6{bottom:450.880000pt;}
.y13c{bottom:452.000000pt;}
.y261{bottom:452.045440pt;}
.y2c3{bottom:453.120000pt;}
.y35{bottom:454.074240pt;}
.y23f{bottom:456.365440pt;}
.y185{bottom:458.432640pt;}
.yeb{bottom:459.200000pt;}
.y225{bottom:460.329600pt;}
.y283{bottom:460.646400pt;}
.y1fe{bottom:460.800000pt;}
.y1fa{bottom:464.000000pt;}
.y15f{bottom:466.565760pt;}
.y95{bottom:468.154240pt;}
.y1a5{bottom:468.805760pt;}
.y13b{bottom:469.925760pt;}
.ya8{bottom:472.505600pt;}
.y2ae{bottom:473.180800pt;}
.yca{bottom:473.768320pt;}
.y1c8{bottom:473.772800pt;}
.y66{bottom:474.400000pt;}
.y23e{bottom:475.722240pt;}
.y1dd{bottom:477.440000pt;}
.y224{bottom:479.686400pt;}
.y282{bottom:480.003200pt;}
.ye{bottom:481.600000pt;}
.y260{bottom:482.118400pt;}
.y10e{bottom:483.710720pt;}
.y34{bottom:484.000000pt;}
.y15e{bottom:484.480000pt;}
.y1a4{bottom:486.720000pt;}
.y2c0{bottom:486.880000pt;}
.y13a{bottom:487.840000pt;}
.yea{bottom:489.120000pt;}
.y2ad{bottom:492.537600pt;}
.yc9{bottom:492.963200pt;}
.y1f8{bottom:494.080000pt;}
.y184{bottom:494.908800pt;}
.y94{bottom:498.080000pt;}
.y33{bottom:498.560000pt;}
.y223{bottom:499.043200pt;}
.y281{bottom:499.360000pt;}
.y65{bottom:500.480000pt;}
.ya7{bottom:500.988800pt;}
.y25f{bottom:501.313280pt;}
.y7e{bottom:501.922560pt;}
.y1c7{bottom:503.698560pt;}
.y55{bottom:504.491520pt;}
.y1a3{bottom:504.632960pt;}
.y139{bottom:505.765760pt;}
.y23d{bottom:505.795200pt;}
.y1dc{bottom:507.360000pt;}
.y2c1{bottom:508.800000pt;}
.y2ac{bottom:511.894400pt;}
.yc8{bottom:512.320000pt;}
.y93{bottom:512.800000pt;}
.y183{bottom:512.823040pt;}
.y32{bottom:517.120000pt;}
.y222{bottom:518.400000pt;}
.ya6{bottom:518.903040pt;}
.ye9{bottom:519.200000pt;}
.y10d{bottom:520.348800pt;}
.y25e{bottom:520.670080pt;}
.yd{bottom:521.600000pt;}
.y1a2{bottom:522.400000pt;}
.y54{bottom:522.405760pt;}
.y15d{bottom:522.407680pt;}
.y138{bottom:523.680000pt;}
.y23c{bottom:524.990080pt;}
.y64{bottom:526.400000pt;}
.y280{bottom:528.960000pt;}
.y182{bottom:530.737280pt;}
.y2ab{bottom:531.251200pt;}
.y92{bottom:532.800000pt;}
.y1c6{bottom:533.624320pt;}
.y31{bottom:535.680000pt;}
.ya5{bottom:536.817280pt;}
.y1f7{bottom:537.124000pt;}
.y1db{bottom:537.440000pt;}
.y10c{bottom:538.263040pt;}
.y25d{bottom:540.026880pt;}
.y53{bottom:540.320000pt;}
.y1a1{bottom:540.325760pt;}
.y7d{bottom:540.960000pt;}
.y137{bottom:541.611520pt;}
.yc7{bottom:542.243200pt;}
.y2bf{bottom:542.720000pt;}
.y23b{bottom:544.346880pt;}
.y181{bottom:548.651520pt;}
.ye8{bottom:549.120000pt;}
.y2aa{bottom:550.446080pt;}
.y63{bottom:552.480000pt;}
.y91{bottom:552.800000pt;}
.y2ce{bottom:552.960000pt;}
.y1c5{bottom:552.981120pt;}
.yc{bottom:553.272000pt;}
.y221{bottom:553.600000pt;}
.y30{bottom:554.240000pt;}
.ya4{bottom:554.731520pt;}
.y10b{bottom:556.177280pt;}
.y52{bottom:558.240000pt;}
.y15c{bottom:559.045760pt;}
.y25c{bottom:559.383680pt;}
.y136{bottom:559.525760pt;}
.y7c{bottom:560.800000pt;}
.yc6{bottom:561.600000pt;}
.y23a{bottom:563.703680pt;}
.y1f6{bottom:565.120000pt;}
.y27f{bottom:565.495040pt;}
.y180{bottom:566.565760pt;}
.y1da{bottom:567.363200pt;}
.y1c4{bottom:572.337920pt;}
.ya3{bottom:572.645760pt;}
.y2e{bottom:572.800000pt;}
.y1a0{bottom:576.171520pt;}
.y51{bottom:576.243840pt;}
.y15b{bottom:576.960000pt;}
.y135{bottom:577.440000pt;}
.y62{bottom:578.400000pt;}
.y25b{bottom:578.578560pt;}
.ye7{bottom:579.200000pt;}
.y2bd{bottom:580.480000pt;}
.y2a9{bottom:580.519040pt;}
.y7b{bottom:581.760000pt;}
.y239{bottom:583.060480pt;}
.y17f{bottom:584.480000pt;}
.y27e{bottom:584.851840pt;}
.y220{bottom:586.400000pt;}
.y1d9{bottom:586.720000pt;}
.ya2{bottom:590.560000pt;}
.yc5{bottom:591.688320pt;}
.y1c3{bottom:591.694720pt;}
.y1f5{bottom:592.643200pt;}
.y10a{bottom:592.653440pt;}
.y90{bottom:592.800000pt;}
.y50{bottom:594.010880pt;}
.y19f{bottom:594.085760pt;}
.y15a{bottom:594.885760pt;}
.y25a{bottom:597.935360pt;}
.y2a8{bottom:599.713920pt;}
.yb{bottom:600.960000pt;}
.y2be{bottom:602.400000pt;}
.y7a{bottom:602.880000pt;}
.y27d{bottom:604.046720pt;}
.y61{bottom:604.320000pt;}
.ye6{bottom:608.800000pt;}
.y2d{bottom:609.127040pt;}
.y109{bottom:610.567680pt;}
.yc4{bottom:610.883200pt;}
.y1c2{bottom:610.889600pt;}
.y4f{bottom:611.925120pt;}
.y19e{bottom:612.000000pt;}
.y8f{bottom:612.800000pt;}
.y238{bottom:612.986240pt;}
.y134{bottom:615.363200pt;}
.y21f{bottom:616.320000pt;}
.y2a7{bottom:619.070720pt;}
.ya1{bottom:619.074560pt;}
.y1d8{bottom:621.920000pt;}
.y79{bottom:623.520000pt;}
.y17e{bottom:623.680000pt;}
.y259{bottom:628.008320pt;}
.y108{bottom:628.481920pt;}
.y4e{bottom:629.839360pt;}
.y19d{bottom:629.925760pt;}
.yc3{bottom:630.240000pt;}
.y1c1{bottom:630.246400pt;}
.y60{bottom:630.400000pt;}
.y159{bottom:630.725760pt;}
.y237{bottom:632.343040pt;}
.y8e{bottom:632.800000pt;}
.y27c{bottom:634.119680pt;}
.y2bb{bottom:636.160000pt;}
.ya0{bottom:636.988800pt;}
.y2a6{bottom:638.427520pt;}
.y2c{bottom:639.200000pt;}
.y29e{bottom:640.660480pt;}
.y1f4{bottom:641.920000pt;}
.y78{bottom:642.880000pt;}
.ye5{bottom:645.285120pt;}
.y21e{bottom:646.240000pt;}
.y258{bottom:647.203200pt;}
.y4d{bottom:647.753600pt;}
.y19c{bottom:647.840000pt;}
.y133{bottom:647.997440pt;}
.y158{bottom:648.640000pt;}
.y1c0{bottom:649.603200pt;}
.ya{bottom:650.560000pt;}
.y236{bottom:651.699840pt;}
.y8d{bottom:652.800000pt;}
.y27b{bottom:653.314560pt;}
.y2b{bottom:653.760000pt;}
.y1d7{bottom:654.728320pt;}
.y9f{bottom:654.903040pt;}
.y5f{bottom:656.320000pt;}
.y18a{bottom:657.114880pt;}
.y2a5{bottom:657.784320pt;}
.y2bc{bottom:658.080000pt;}
.yc2{bottom:660.328320pt;}
.y77{bottom:662.080000pt;}
.y17d{bottom:664.324480pt;}
.ye4{bottom:664.480000pt;}
.y107{bottom:665.120000pt;}
.y4c{bottom:665.667840pt;}
.y19b{bottom:665.765760pt;}
.y157{bottom:666.405760pt;}
.y257{bottom:666.560000pt;}
.y132{bottom:667.354240pt;}
.y1bf{bottom:668.960000pt;}
.y29d{bottom:670.733440pt;}
.y235{bottom:670.894720pt;}
.y189{bottom:671.040000pt;}
.y1f3{bottom:672.003200pt;}
.y2a{bottom:672.320000pt;}
.y27a{bottom:672.671360pt;}
.y8c{bottom:672.800000pt;}
.y9e{bottom:672.817280pt;}
.y1d6{bottom:673.923200pt;}
.y21d{bottom:676.320000pt;}
.yc1{bottom:679.523200pt;}
.y17c{bottom:682.238720pt;}
.y5e{bottom:682.400000pt;}
.y106{bottom:683.040000pt;}
.y4b{bottom:683.582080pt;}
.y19a{bottom:683.680000pt;}
.y156{bottom:684.320000pt;}
.y2a4{bottom:687.710080pt;}
.y234{bottom:690.251520pt;}
.y9d{bottom:690.731520pt;}
.y29{bottom:690.880000pt;}
.y1f2{bottom:691.360000pt;}
.y2b8{bottom:691.840000pt;}
.y279{bottom:692.028160pt;}
.y76{bottom:692.640000pt;}
.y8b{bottom:692.800000pt;}
.y1d5{bottom:693.280000pt;}
.ye3{bottom:694.563200pt;}
.y256{bottom:696.320000pt;}
.y131{bottom:697.280000pt;}
.y1be{bottom:697.440000pt;}
.yc0{bottom:698.880000pt;}
.y17b{bottom:700.152960pt;}
.y29c{bottom:700.659200pt;}
.y105{bottom:700.800000pt;}
.y199{bottom:701.440000pt;}
.y4a{bottom:701.496320pt;}
.y155{bottom:702.245760pt;}
.y9{bottom:703.200000pt;}
.y21c{bottom:706.240000pt;}
.y2a3{bottom:707.066880pt;}
.y5d{bottom:708.320000pt;}
.y9c{bottom:708.645760pt;}
.y28{bottom:709.440000pt;}
.y233{bottom:709.608320pt;}
.y278{bottom:711.384960pt;}
.y12d{bottom:711.840000pt;}
.y8a{bottom:712.800000pt;}
.y2ba{bottom:713.759867pt;}
.ye2{bottom:713.920000pt;}
.y17a{bottom:717.920000pt;}
.y198{bottom:719.365760pt;}
.y49{bottom:719.410560pt;}
.y154{bottom:720.160000pt;}
.y217{bottom:720.800000pt;}
.y1f1{bottom:721.280000pt;}
.y1d4{bottom:723.365120pt;}
.y2a2{bottom:726.423680pt;}
.y9b{bottom:726.560000pt;}
.y27{bottom:728.000000pt;}
.y130{bottom:728.003200pt;}
.y232{bottom:728.965120pt;}
.ybf{bottom:728.971520pt;}
.yf9{bottom:728.977280pt;}
.y29b{bottom:730.732160pt;}
.y255{bottom:732.670080pt;}
.y89{bottom:732.800000pt;}
.y5c{bottom:734.400000pt;}
.y75{bottom:737.120000pt;}
.y197{bottom:737.280000pt;}
.y48{bottom:737.324800pt;}
.y104{bottom:737.457280pt;}
.y1bd{bottom:738.103040pt;}
.y21b{bottom:738.560000pt;}
.y277{bottom:741.310720pt;}
.y1d3{bottom:742.560000pt;}
.ye1{bottom:743.843200pt;}
.y9a{bottom:744.508160pt;}
.y2a1{bottom:745.618560pt;}
.y12f{bottom:747.360000pt;}
.y2b5{bottom:747.680000pt;}
.y231{bottom:748.160000pt;}
.ybe{bottom:748.166400pt;}
.yf8{bottom:748.172160pt;}
.y29a{bottom:749.927040pt;}
.y8{bottom:750.720000pt;}
.y1f0{bottom:751.200000pt;}
.y254{bottom:752.026880pt;}
.y88{bottom:752.800000pt;}
.y47{bottom:755.091840pt;}
.y196{bottom:755.205760pt;}
.y103{bottom:755.371520pt;}
.y179{bottom:756.000000pt;}
.y1bc{bottom:756.017280pt;}
.y74{bottom:756.800000pt;}
.y153{bottom:758.087680pt;}
.y5b{bottom:760.320000pt;}
.y276{bottom:760.667520pt;}
.y99{bottom:762.422400pt;}
.ye0{bottom:763.200000pt;}
.y26{bottom:764.314240pt;}
.y2a0{bottom:764.975360pt;}
.ybd{bottom:767.523200pt;}
.yf7{bottom:767.528960pt;}
.y299{bottom:769.283840pt;}
.y2b7{bottom:769.445760pt;}
.y3d{bottom:770.093440pt;}
.y253{bottom:771.383680pt;}
.y1d2{bottom:772.643200pt;}
.y87{bottom:772.800000pt;}
.y46{bottom:773.006080pt;}
.y195{bottom:773.120000pt;}
.y102{bottom:773.285760pt;}
.y1bb{bottom:773.931520pt;}
.y73{bottom:777.920000pt;}
.y275{bottom:780.024320pt;}
.y98{bottom:780.336640pt;}
.y12a{bottom:781.120000pt;}
.y1ef{bottom:781.280000pt;}
.y29f{bottom:784.332160pt;}
.y21a{bottom:785.600000pt;}
.y5a{bottom:786.240000pt;}
.ybc{bottom:786.880000pt;}
.yf6{bottom:786.885760pt;}
.y2b6{bottom:787.360000pt;}
.y298{bottom:788.640640pt;}
.y1{bottom:789.760000pt;}
.y252{bottom:790.578560pt;}
.y45{bottom:790.920320pt;}
.y194{bottom:791.040000pt;}
.y101{bottom:791.200000pt;}
.y1ba{bottom:791.845760pt;}
.y1d1{bottom:792.000000pt;}
.y178{bottom:792.485760pt;}
.y86{bottom:792.800000pt;}
.ydf{bottom:793.120000pt;}
.y25{bottom:794.240000pt;}
.y152{bottom:794.725760pt;}
.y12c{bottom:797.280000pt;}
.y97{bottom:798.250880pt;}
.y72{bottom:799.040000pt;}
.y274{bottom:799.219200pt;}
.y297{bottom:807.997440pt;}
.y24{bottom:808.800000pt;}
.y44{bottom:808.834560pt;}
.y3c{bottom:808.968960pt;}
.y1b9{bottom:809.760000pt;}
.y251{bottom:809.935360pt;}
.y177{bottom:810.400000pt;}
.y1ee{bottom:811.200000pt;}
.y59{bottom:812.320000pt;}
.y151{bottom:812.640000pt;}
.y85{bottom:812.800000pt;}
.y230{bottom:814.257920pt;}
.y96{bottom:816.017920pt;}
.ybb{bottom:816.811520pt;}
.y71{bottom:819.680000pt;}
.y2b1{bottom:821.280000pt;}
.y1d0{bottom:821.923200pt;}
.yde{bottom:823.200000pt;}
.y43{bottom:826.748800pt;}
.y23{bottom:827.360000pt;}
.y193{bottom:827.539200pt;}
.y176{bottom:828.325760pt;}
.y250{bottom:829.292160pt;}
.y150{bottom:830.565760pt;}
.y127{bottom:831.200000pt;}
.y100{bottom:831.520000pt;}
.y219{bottom:832.640000pt;}
.y84{bottom:832.800000pt;}
.y22f{bottom:833.614720pt;}
.yba{bottom:836.168320pt;}
.y296{bottom:837.923200pt;}
.y58{bottom:838.240000pt;}
.y70{bottom:838.880000pt;}
.y3b{bottom:838.894720pt;}
.y1cf{bottom:841.280000pt;}
.y2b4{bottom:843.192960pt;}
.y42{bottom:844.663040pt;}
.y21{bottom:845.920000pt;}
.y175{bottom:846.240000pt;}
.y129{bottom:847.200000pt;}
.y1b8{bottom:847.680000pt;}
.y14f{bottom:848.480000pt;}
.y273{bottom:848.648960pt;}
.y82{bottom:852.800000pt;}
.y22e{bottom:852.971520pt;}
.ydd{bottom:853.126400pt;}
.yb9{bottom:855.525120pt;}
.y295{bottom:857.280000pt;}
.y6f{bottom:858.240000pt;}
.y3a{bottom:858.251520pt;}
.y24f{bottom:859.217920pt;}
.y2b3{bottom:860.960000pt;}
.y213{bottom:861.920000pt;}
.y41{bottom:862.577280pt;}
.y174{bottom:864.165760pt;}
.y192{bottom:864.177280pt;}
.y57{bottom:864.320000pt;}
.y14e{bottom:866.405760pt;}
.y272{bottom:867.843840pt;}
.yff{bottom:867.858560pt;}
.y1ed{bottom:871.200000pt;}
.y1ce{bottom:871.203200pt;}
.y22d{bottom:872.328320pt;}
.ydc{bottom:872.483200pt;}
.y81{bottom:872.800000pt;}
.yb8{bottom:874.720000pt;}
.y6e{bottom:877.600000pt;}
.y39{bottom:877.608320pt;}
.y216{bottom:878.400000pt;}
.y24e{bottom:878.574720pt;}
.y40{bottom:880.491520pt;}
.y125{bottom:881.120000pt;}
.y173{bottom:882.080000pt;}
.y191{bottom:882.091520pt;}
.y20{bottom:882.400000pt;}
.y1b7{bottom:884.171520pt;}
.y14d{bottom:884.320000pt;}
.y271{bottom:887.200640pt;}
.y294{bottom:887.203200pt;}
.y56{bottom:890.240000pt;}
.y1cd{bottom:890.560000pt;}
.y22c{bottom:891.523200pt;}
.ydb{bottom:891.840000pt;}
.y38{bottom:896.965120pt;}
.yfe{bottom:897.931520pt;}
.y3f{bottom:898.405760pt;}
.y172{bottom:900.005760pt;}
.y1e{bottom:900.960000pt;}
.y1ec{bottom:901.285120pt;}
.y14c{bottom:902.085760pt;}
.y80{bottom:903.680000pt;}
.yb7{bottom:904.480000pt;}
.y270{bottom:906.557440pt;}
.y293{bottom:906.560000pt;}
.y22b{bottom:910.880000pt;}
.y37{bottom:916.160000pt;}
.y3e{bottom:916.320000pt;}
.yfd{bottom:917.288320pt;}
.y171{bottom:917.920000pt;}
.y215{bottom:918.400000pt;}
.y1c{bottom:919.520000pt;}
.y14b{bottom:920.000000pt;}
.y1cc{bottom:920.480000pt;}
.yda{bottom:921.440000pt;}
.y124{bottom:928.320000pt;}
.yfc{bottom:936.483200pt;}
.y14a{bottom:937.925760pt;}
.yb6{bottom:941.440000pt;}
.y36{bottom:946.720000pt;}
.y7f{bottom:946.880000pt;}
.y1b{bottom:955.840000pt;}
.yd9{bottom:958.240000pt;}
.y17{bottom:985.914880pt;}
.y16{bottom:999.840000pt;}
.h2f{height:1.706250pt;}
.h14{height:17.760000pt;}
.hb{height:17.920000pt;}
.hc{height:17.921333pt;}
.h15{height:19.200000pt;}
.ha{height:19.518667pt;}
.he{height:19.680000pt;}
.h24{height:25.920000pt;}
.h3{height:26.643750pt;}
.h1b{height:30.078667pt;}
.h9{height:34.453125pt;}
.h17{height:34.851562pt;}
.h2c{height:35.680000pt;}
.hd{height:35.840000pt;}
.h1a{height:39.243750pt;}
.h1f{height:40.250000pt;}
.h26{height:40.961333pt;}
.h2{height:42.262500pt;}
.h2a{height:42.290660pt;}
.h19{height:42.427225pt;}
.h22{height:42.656250pt;}
.h8{height:42.751250pt;}
.h12{height:45.917020pt;}
.h10{height:45.937500pt;}
.h7{height:46.468750pt;}
.h1c{height:49.278667pt;}
.h1d{height:49.440000pt;}
.h23{height:49.589460pt;}
.h18{height:53.746875pt;}
.h2b{height:53.760000pt;}
.h16{height:61.803437pt;}
.h1e{height:68.640000pt;}
.hf{height:69.649365pt;}
.h13{height:69.692885pt;}
.h4{height:69.703125pt;}
.h11{height:69.721045pt;}
.h29{height:71.520000pt;}
.h2d{height:71.680000pt;}
.h25{height:76.640000pt;}
.h27{height:78.240000pt;}
.h5{height:85.037812pt;}
.h6{height:108.304188pt;}
.h28{height:139.360000pt;}
.h2e{height:670.400000pt;}
.h20{height:793.760000pt;}
.h21{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:31.841333pt;}
.w12{width:37.120000pt;}
.wf{width:69.920000pt;}
.w2{width:74.718667pt;}
.w9{width:112.320000pt;}
.w11{width:150.720000pt;}
.w4{width:203.840000pt;}
.w5{width:207.840000pt;}
.w7{width:209.920000pt;}
.wb{width:297.761333pt;}
.wc{width:299.680000pt;}
.w3{width:339.360000pt;}
.w10{width:353.760000pt;}
.w6{width:404.480000pt;}
.w8{width:408.640000pt;}
.wa{width:490.880000pt;}
.w14{width:563.838667pt;}
.w15{width:596.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wd{width:1122.560000pt;}
.we{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x39{left:0.960000pt;}
.xb{left:7.200000pt;}
.x2a{left:19.200000pt;}
.x34{left:27.040000pt;}
.x2{left:94.555520pt;}
.x4{left:97.120000pt;}
.x38{left:99.520000pt;}
.x12{left:102.400000pt;}
.x7{left:103.520000pt;}
.x10{left:109.280000pt;}
.x1f{left:113.433600pt;}
.x14{left:118.560000pt;}
.x11{left:123.840000pt;}
.x2c{left:131.680000pt;}
.x17{left:135.520000pt;}
.x15{left:142.560000pt;}
.x31{left:147.360000pt;}
.x1a{left:152.160000pt;}
.x6{left:160.960000pt;}
.x24{left:166.560000pt;}
.xc{left:169.920000pt;}
.x9{left:185.112000pt;}
.x5{left:193.279360pt;}
.x2e{left:205.920000pt;}
.x13{left:208.000000pt;}
.x36{left:216.640000pt;}
.x2d{left:219.680000pt;}
.x35{left:228.320000pt;}
.x37{left:229.600000pt;}
.x29{left:239.196000pt;}
.x2b{left:255.360000pt;}
.x30{left:262.240000pt;}
.x19{left:268.480000pt;}
.x2f{left:286.240000pt;}
.x1b{left:296.960000pt;}
.xe{left:303.360000pt;}
.xf{left:305.120000pt;}
.x33{left:346.080000pt;}
.x1c{left:392.960000pt;}
.x8{left:396.960000pt;}
.x1d{left:400.160000pt;}
.x32{left:425.600000pt;}
.xa{left:434.560000pt;}
.x28{left:458.560000pt;}
.x21{left:471.040000pt;}
.x26{left:473.120000pt;}
.xd{left:509.920000pt;}
.x22{left:570.724000pt;}
.x1{left:589.280000pt;}
.x1e{left:608.320000pt;}
.x3{left:652.149120pt;}
.x16{left:691.838720pt;}
.x3a{left:695.040000pt;}
.x18{left:699.360000pt;}
.x25{left:1028.480000pt;}
.x20{left:1029.440000pt;}
.x23{left:1031.200000pt;}
.x27{left:1042.560000pt;}
}




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