
    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_63c08b969e4a255e5fd5edf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.146484;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_83479188a3bb547cf626b81d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_0ee8909572c09263bc4b7ba6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975586;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_7db63d5ac45f1f0b53633dcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_cbeaa1f909eaabe204b6dc67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e91312a0adec4e80ce4b3ab6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.146484;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_f547efa1c5d3d24fbc723501.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_414005ae35505599cf377dc9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0a203d4f307e963732cdc96a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.198154;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_a5f5377eb6628ce7a9a13869.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_0be666a97290c9dbb408c50f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_647104689f0bc5e729b0951a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_783c3fa5cd609a2567fab740.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.008000px;}
.v4{vertical-align:15.840000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:74.280000px;}
.v2{vertical-align:78.720000px;}
.ls1f{letter-spacing:-1.068000px;}
.ls20{letter-spacing:-1.026000px;}
.ls1c{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.346800px;}
.ls22{letter-spacing:-0.306600px;}
.ls1{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.280200px;}
.ls5{letter-spacing:-0.250800px;}
.ls27{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.211200px;}
.ls1a{letter-spacing:-0.181200px;}
.ls30{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.085200px;}
.lsa{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.037440px;}
.ls23{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.028080px;}
.ls10{letter-spacing:-0.018720px;}
.ls12{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.011940px;}
.ls19{letter-spacing:0.017280px;}
.ls2a{letter-spacing:0.018720px;}
.lse{letter-spacing:0.026460px;}
.ls4{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.037440px;}
.ls2d{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.100800px;}
.ls34{letter-spacing:0.103200px;}
.ls9{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.162000px;}
.ls2b{letter-spacing:0.181200px;}
.ls1e{letter-spacing:0.202800px;}
.ls17{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.219000px;}
.ls15{letter-spacing:0.244800px;}
.lsb{letter-spacing:0.250800px;}
.ls16{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.352200px;}
.lsd{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.432000px;}
.ls26{letter-spacing:29.871936px;}
.ls25{letter-spacing:29.952000px;}
.ls2e{letter-spacing:60.468480px;}
.ls29{letter-spacing:101.793600px;}
.ls28{letter-spacing:101.844000px;}
.ls24{letter-spacing:103.471920px;}
.ls2{letter-spacing:124.149600px;}
.ls3{letter-spacing:124.200000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(78,192,228),0 0.015em rgb(78,192,228),0.015em 0 rgb(78,192,228),0 -0.015em  rgb(78,192,228);}
.sc2{text-shadow:-0.015em 0 rgb(6,31,50),0 0.015em rgb(6,31,50),0.015em 0 rgb(6,31,50),0 -0.015em  rgb(6,31,50);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(78,192,228);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(6,31,50);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-71.747856px;}
.ws5c{word-spacing:-65.831616px;}
.ws4{word-spacing:-37.290240px;}
.ws87{word-spacing:-35.891856px;}
.ws68{word-spacing:-35.856000px;}
.ws2{word-spacing:-35.712000px;}
.ws3d{word-spacing:-33.466752px;}
.wse{word-spacing:-33.426720px;}
.ws5e{word-spacing:-30.024000px;}
.ws63{word-spacing:-29.808000px;}
.ws7{word-spacing:-26.927856px;}
.ws5{word-spacing:-26.892000px;}
.ws6{word-spacing:-26.784000px;}
.ws6a{word-spacing:-26.661312px;}
.ws6b{word-spacing:-26.621280px;}
.ws23{word-spacing:-23.458752px;}
.ws8{word-spacing:-23.418720px;}
.ws2c{word-spacing:-20.232000px;}
.ws2b{word-spacing:-20.176032px;}
.wsa{word-spacing:-20.056032px;}
.wsb{word-spacing:-20.016000px;}
.ws27{word-spacing:-17.614080px;}
.ws26{word-spacing:-15.174000px;}
.ws24{word-spacing:-15.012000px;}
.ws2e{word-spacing:-13.450752px;}
.ws29{word-spacing:-13.410720px;}
.ws25{word-spacing:-12.420000px;}
.ws31{word-spacing:-8.312149px;}
.ws30{word-spacing:-8.301081px;}
.ws67{word-spacing:-6.336000px;}
.ws66{word-spacing:-4.752000px;}
.ws9{word-spacing:-2.520000px;}
.ws46{word-spacing:-1.774800px;}
.ws44{word-spacing:-1.734240px;}
.ws69{word-spacing:-1.383120px;}
.ws5b{word-spacing:-1.214016px;}
.ws21{word-spacing:-1.134240px;}
.ws43{word-spacing:-1.001760px;}
.ws38{word-spacing:-0.713904px;}
.ws3b{word-spacing:-0.611712px;}
.ws5f{word-spacing:-0.492000px;}
.ws3{word-spacing:0.000000px;}
.ws39{word-spacing:0.234624px;}
.ws61{word-spacing:0.333552px;}
.ws5d{word-spacing:0.336000px;}
.ws37{word-spacing:0.346896px;}
.ws77{word-spacing:0.360000px;}
.ws3c{word-spacing:0.570096px;}
.ws45{word-spacing:0.667080px;}
.ws6c{word-spacing:1.205520px;}
.ws60{word-spacing:1.236000px;}
.ws6f{word-spacing:1.248000px;}
.ws1{word-spacing:1.296000px;}
.ws62{word-spacing:1.536000px;}
.ws22{word-spacing:1.612800px;}
.ws64{word-spacing:2.111136px;}
.ws6e{word-spacing:2.196000px;}
.ws12{word-spacing:2.215440px;}
.ws70{word-spacing:2.520000px;}
.ws3a{word-spacing:2.536992px;}
.ws65{word-spacing:3.624000px;}
.ws79{word-spacing:4.452000px;}
.ws7a{word-spacing:5.184000px;}
.ws18{word-spacing:5.466240px;}
.ws19{word-spacing:5.583840px;}
.ws14{word-spacing:5.733312px;}
.ws13{word-spacing:5.760144px;}
.ws1a{word-spacing:6.135120px;}
.ws71{word-spacing:6.336000px;}
.ws72{word-spacing:8.208000px;}
.ws56{word-spacing:9.574320px;}
.ws34{word-spacing:9.922320px;}
.ws32{word-spacing:10.026240px;}
.ws58{word-spacing:10.294560px;}
.ws36{word-spacing:10.419840px;}
.ws57{word-spacing:10.492920px;}
.ws5a{word-spacing:10.581120px;}
.ws35{word-spacing:10.635840px;}
.ws81{word-spacing:10.656000px;}
.ws59{word-spacing:10.706400px;}
.ws7f{word-spacing:10.836000px;}
.ws40{word-spacing:11.025840px;}
.ws3f{word-spacing:11.117760px;}
.ws3e{word-spacing:11.226240px;}
.ws42{word-spacing:11.320560px;}
.ws80{word-spacing:11.472000px;}
.ws33{word-spacing:11.682000px;}
.ws1d{word-spacing:12.103440px;}
.ws1f{word-spacing:14.227920px;}
.ws41{word-spacing:14.271120px;}
.ws1e{word-spacing:14.705760px;}
.ws86{word-spacing:18.260496px;}
.ws7d{word-spacing:18.288000px;}
.ws7b{word-spacing:18.636000px;}
.ws7c{word-spacing:19.368000px;}
.ws52{word-spacing:24.372480px;}
.ws2a{word-spacing:24.696000px;}
.ws50{word-spacing:25.092720px;}
.ws4f{word-spacing:25.797120px;}
.ws4a{word-spacing:25.825200px;}
.ws51{word-spacing:25.999920px;}
.ws55{word-spacing:26.026560px;}
.ws4b{word-spacing:26.461440px;}
.ws53{word-spacing:26.612640px;}
.wsc{word-spacing:28.414320px;}
.ws4c{word-spacing:28.491120px;}
.ws54{word-spacing:28.671120px;}
.wsd{word-spacing:28.959840px;}
.ws82{word-spacing:30.312000px;}
.ws83{word-spacing:32.292000px;}
.ws78{word-spacing:34.008000px;}
.ws84{word-spacing:39.984000px;}
.ws85{word-spacing:40.608000px;}
.ws6d{word-spacing:42.456000px;}
.ws47{word-spacing:54.842640px;}
.ws48{word-spacing:54.882000px;}
.ws73{word-spacing:81.048000px;}
.ws49{word-spacing:85.265760px;}
.ws16{word-spacing:88.398240px;}
.ws17{word-spacing:88.452720px;}
.ws20{word-spacing:94.813200px;}
.ws4e{word-spacing:97.280640px;}
.ws4d{word-spacing:97.679280px;}
.ws2d{word-spacing:104.364000px;}
.ws10{word-spacing:104.797680px;}
.ws11{word-spacing:105.012720px;}
.ws75{word-spacing:110.999304px;}
.ws76{word-spacing:111.935808px;}
.ws74{word-spacing:112.765200px;}
.ws2f{word-spacing:120.492000px;}
.ws7e{word-spacing:159.407808px;}
.ws1c{word-spacing:160.663488px;}
.ws1b{word-spacing:161.253612px;}
.wsf{word-spacing:283.531200px;}
.ws15{word-spacing:362.649120px;}
.ws28{word-spacing:688.663440px;}
._a{margin-left:-1554.360000px;}
._9{margin-left:-1101.420000px;}
._b{margin-left:-648.720000px;}
._13{margin-left:-4.332096px;}
._5{margin-left:-2.808000px;}
._1{margin-left:-1.172928px;}
._0{width:1.296000px;}
._3{width:2.504928px;}
._12{width:3.642528px;}
._7{width:21.338448px;}
._15{width:23.401728px;}
._6{width:25.540992px;}
._11{width:32.820000px;}
._d{width:33.892320px;}
._2{width:36.852000px;}
._18{width:49.372896px;}
._17{width:63.528000px;}
._10{width:117.534000px;}
._e{width:131.731440px;}
._f{width:132.830640px;}
._4{width:144.174000px;}
._16{width:191.300736px;}
._c{width:257.100000px;}
._14{width:2842.344000px;}
._8{width:4785.240000px;}
.fc8{color:rgb(255,192,0);}
.fc7{color:rgb(232,133,0);}
.fc6{color:rgb(0,176,240);}
.fc5{color:rgb(11,56,91);}
.fc3{color:rgb(78,192,228);}
.fc2{color:rgb(6,31,50);}
.fc1{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:29.860003px;}
.fs17{font-size:29.899816px;}
.fs15{font-size:48.240000px;}
.fs16{font-size:48.384000px;}
.fs0{font-size:54.000000px;}
.fs13{font-size:54.144000px;}
.fs14{font-size:63.360000px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fsb{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs11{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs5{font-size:149.760000px;}
.fs8{font-size:149.904000px;}
.fs1b{font-size:167.760000px;}
.fs1c{font-size:167.904000px;}
.fs9{font-size:239.760000px;}
.fsa{font-size:239.904000px;}
.fs1a{font-size:264.240000px;}
.fs19{font-size:264.384000px;}
.fs4{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:5.256000px;}
.yf2{bottom:7.236000px;}
.y132{bottom:9.172514px;}
.yee{bottom:9.252000px;}
.y71{bottom:11.952000px;}
.ye8{bottom:12.528000px;}
.y66{bottom:12.816000px;}
.yec{bottom:13.788000px;}
.ye6{bottom:14.544000px;}
.yea{bottom:15.912000px;}
.y131{bottom:23.117135px;}
.yef{bottom:26.856000px;}
.y62{bottom:28.692000px;}
.yf1{bottom:28.836000px;}
.y1{bottom:29.052000px;}
.yed{bottom:30.852000px;}
.ye7{bottom:34.128000px;}
.yeb{bottom:35.388000px;}
.ye5{bottom:36.144000px;}
.y70{bottom:36.792000px;}
.y130{bottom:37.051803px;}
.ye9{bottom:37.512000px;}
.y65{bottom:37.656000px;}
.y161{bottom:44.640000px;}
.ya0{bottom:45.432000px;}
.y1ac{bottom:48.168000px;}
.y58{bottom:53.352000px;}
.y61{bottom:57.708000px;}
.y1d4{bottom:60.912000px;}
.y6f{bottom:61.632000px;}
.y64{bottom:62.496000px;}
.y2a{bottom:68.976000px;}
.y1ab{bottom:69.804000px;}
.y1a3{bottom:71.856000px;}
.y1cb{bottom:75.528000px;}
.y94{bottom:75.636000px;}
.y160{bottom:77.040000px;}
.y60{bottom:86.688000px;}
.y1aa{bottom:91.404000px;}
.y1d3{bottom:93.312000px;}
.y12f{bottom:94.174403px;}
.y1a2{bottom:96.696000px;}
.y93{bottom:97.236000px;}
.y29{bottom:101.376000px;}
.y14f{bottom:103.464000px;}
.y12e{bottom:104.484399px;}
.y6e{bottom:105.552000px;}
.y63{bottom:106.416000px;}
.y15f{bottom:109.476000px;}
.y1a9{bottom:113.004000px;}
.y5f{bottom:115.668000px;}
.y55{bottom:120.564000px;}
.y1a1{bottom:121.536000px;}
.y19{bottom:122.652000px;}
.y39{bottom:124.920000px;}
.ycb{bottom:125.964000px;}
.y1c7{bottom:131.328000px;}
.y28{bottom:133.776000px;}
.y1a8{bottom:134.604000px;}
.y14e{bottom:135.864000px;}
.y4a{bottom:136.728000px;}
.y1b0{bottom:137.448000px;}
.y15e{bottom:141.876000px;}
.y5e{bottom:144.648000px;}
.y1e3{bottom:145.260000px;}
.y1a0{bottom:146.376000px;}
.y89{bottom:146.700000px;}
.y13c{bottom:152.895000px;}
.y54{bottom:152.970000px;}
.y1b6{bottom:154.470000px;}
.y18{bottom:155.055000px;}
.y1a7{bottom:156.210000px;}
.y76{bottom:156.600000px;}
.y38{bottom:157.320000px;}
.yca{bottom:158.370000px;}
.y1c6{bottom:160.125000px;}
.y1af{bottom:162.645000px;}
.y27{bottom:166.170000px;}
.y14d{bottom:168.270000px;}
.y49{bottom:169.170000px;}
.y18a{bottom:169.635000px;}
.y19f{bottom:171.210000px;}
.y5d{bottom:173.625000px;}
.y15d{bottom:174.270000px;}
.y1e2{bottom:177.690000px;}
.y1a6{bottom:177.810000px;}
.yb4{bottom:178.845000px;}
.y9f{bottom:179.610000px;}
.y1b5{bottom:179.670000px;}
.y75{bottom:181.440000px;}
.y88{bottom:182.700000px;}
.y53{bottom:185.370000px;}
.y1c0{bottom:186.765000px;}
.y1ae{bottom:187.890000px;}
.y59{bottom:188.355000px;}
.y13b{bottom:188.895000px;}
.y1c5{bottom:188.925000px;}
.y37{bottom:189.720000px;}
.y172{bottom:190.335000px;}
.yc9{bottom:190.770000px;}
.y17{bottom:191.985000px;}
.yb3{bottom:195.045000px;}
.y19e{bottom:196.095000px;}
.y26{bottom:198.570000px;}
.y5c{bottom:202.650000px;}
.y1b4{bottom:204.870000px;}
.y74{bottom:206.280000px;}
.y15c{bottom:206.670000px;}
.yb0{bottom:209.085000px;}
.y1e1{bottom:210.090000px;}
.y1d2{bottom:210.705000px;}
.yb2{bottom:211.245000px;}
.y163{bottom:212.220000px;}
.y1ad{bottom:213.090000px;}
.y171{bottom:215.535000px;}
.y1c4{bottom:217.725000px;}
.y52{bottom:217.800000px;}
.y87{bottom:218.700000px;}
.y189{bottom:220.035000px;}
.y19d{bottom:220.935000px;}
.y36{bottom:222.120000px;}
.yc8{bottom:223.170000px;}
.y16{bottom:224.385000px;}
.y13a{bottom:224.895000px;}
.yaf{bottom:225.285000px;}
.y113{bottom:226.050000px;}
.yb1{bottom:227.445000px;}
.y1a5{bottom:228.960000px;}
.y14c{bottom:229.470000px;}
.y1b3{bottom:230.070000px;}
.y25{bottom:231.015000px;}
.y73{bottom:231.120000px;}
.ydf{bottom:233.745000px;}
.y6d{bottom:233.895000px;}
.y15b{bottom:239.070000px;}
.y112{bottom:240.480000px;}
.y170{bottom:240.735000px;}
.yae{bottom:241.485000px;}
.y1e0{bottom:242.490000px;}
.y48{bottom:242.970000px;}
.y19c{bottom:245.775000px;}
.ya9{bottom:246.780000px;}
.y5b{bottom:249.630000px;}
.y51{bottom:250.200000px;}
.y1a4{bottom:254.160000px;}
.y35{bottom:254.550000px;}
.y86{bottom:254.700000px;}
.y111{bottom:254.880000px;}
.yde{bottom:255.345000px;}
.yc7{bottom:255.570000px;}
.y15{bottom:256.785000px;}
.y97{bottom:257.220000px;}
.y182{bottom:257.610000px;}
.yad{bottom:257.685000px;}
.y6c{bottom:258.735000px;}
.y139{bottom:260.895000px;}
.y14b{bottom:261.900000px;}
.y140{bottom:262.005000px;}
.y24{bottom:263.415000px;}
.y10b{bottom:266.070000px;}
.y179{bottom:267.270000px;}
.yb9{bottom:267.945000px;}
.y188{bottom:270.435000px;}
.y110{bottom:270.720000px;}
.y15a{bottom:271.515000px;}
.ya8{bottom:271.980000px;}
.y1df{bottom:274.890000px;}
.y72{bottom:275.040000px;}
.y47{bottom:275.370000px;}
.ydd{bottom:276.945000px;}
.y10a{bottom:280.470000px;}
.y96{bottom:282.420000px;}
.y50{bottom:282.600000px;}
.yb8{bottom:284.145000px;}
.y1c3{bottom:284.610000px;}
.y181{bottom:286.455000px;}
.yc6{bottom:288.000000px;}
.y105{bottom:288.750000px;}
.y11c{bottom:289.050000px;}
.y1d1{bottom:289.185000px;}
.y19b{bottom:289.695000px;}
.ydc{bottom:289.905000px;}
.y85{bottom:290.730000px;}
.y10f{bottom:292.320000px;}
.ybe{bottom:293.295000px;}
.y14{bottom:293.685000px;}
.y14a{bottom:294.300000px;}
.y120{bottom:294.450000px;}
.y178{bottom:296.070000px;}
.y109{bottom:296.310000px;}
.y138{bottom:296.895000px;}
.ya7{bottom:297.180000px;}
.y12c{bottom:298.440000px;}
.yd8{bottom:298.545000px;}
.y1bf{bottom:300.345000px;}
.y125{bottom:300.390000px;}
.y6b{bottom:302.685000px;}
.y104{bottom:303.150000px;}
.y11b{bottom:303.450000px;}
.y159{bottom:303.915000px;}
.ydb{bottom:304.305000px;}
.y1de{bottom:307.335000px;}
.y95{bottom:307.620000px;}
.yda{bottom:311.505000px;}
.y46{bottom:312.300000px;}
.y19a{bottom:312.735000px;}
.y1c2{bottom:313.455000px;}
.y10e{bottom:313.920000px;}
.y16f{bottom:314.970000px;}
.y4f{bottom:315.000000px;}
.y180{bottom:315.255000px;}
.yfd{bottom:315.690000px;}
.y11f{bottom:316.050000px;}
.y108{bottom:317.910000px;}
.y103{bottom:318.990000px;}
.y11a{bottom:319.290000px;}
.y12b{bottom:320.040000px;}
.yd7{bottom:320.190000px;}
.y128{bottom:320.505000px;}
.y117{bottom:320.865000px;}
.y1d0{bottom:321.585000px;}
.y124{bottom:321.990000px;}
.ya6{bottom:322.380000px;}
.yd3{bottom:324.105000px;}
.y177{bottom:324.900000px;}
.yd9{bottom:325.950000px;}
.y13{bottom:326.130000px;}
.y149{bottom:326.700000px;}
.y84{bottom:326.730000px;}
.y34{bottom:328.350000px;}
.y1be{bottom:329.145000px;}
.yfc{bottom:330.090000px;}
.y137{bottom:332.925000px;}
.y13f{bottom:333.285000px;}
.y10d{bottom:334.080000px;}
.y199{bottom:334.335000px;}
.y116{bottom:335.265000px;}
.y9e{bottom:335.730000px;}
.y158{bottom:336.315000px;}
.y164{bottom:336.885000px;}
.y23{bottom:337.215000px;}
.y11e{bottom:337.650000px;}
.y107{bottom:339.555000px;}
.y100{bottom:339.690000px;}
.y1dd{bottom:339.735000px;}
.ye3{bottom:339.870000px;}
.y16e{bottom:340.170000px;}
.y102{bottom:340.590000px;}
.y119{bottom:340.890000px;}
.y12a{bottom:341.640000px;}
.yd6{bottom:341.790000px;}
.y127{bottom:342.105000px;}
.y1c1{bottom:342.255000px;}
.yff{bottom:342.720000px;}
.ye4{bottom:343.290000px;}
.y123{bottom:343.590000px;}
.ybd{bottom:343.695000px;}
.y17f{bottom:344.055000px;}
.yd2{bottom:345.705000px;}
.yfb{bottom:345.930000px;}
.y4e{bottom:347.400000px;}
.y99{bottom:347.910000px;}
.y10c{bottom:348.480000px;}
.y45{bottom:349.200000px;}
.y115{bottom:349.665000px;}
.yc5{bottom:352.800000px;}
.y176{bottom:353.700000px;}
.y198{bottom:355.935000px;}
.y121{bottom:358.530000px;}
.y148{bottom:359.100000px;}
.y11d{bottom:359.250000px;}
.y33{bottom:360.750000px;}
.y9d{bottom:360.930000px;}
.y106{bottom:361.155000px;}
.ye2{bottom:361.470000px;}
.y101{bottom:362.235000px;}
.y118{bottom:362.490000px;}
.ycf{bottom:362.595000px;}
.y83{bottom:362.730000px;}
.y12{bottom:363.030000px;}
.y129{bottom:363.240000px;}
.yd5{bottom:363.390000px;}
.y126{bottom:363.750000px;}
.y3e{bottom:364.065000px;}
.yfe{bottom:364.320000px;}
.ye1{bottom:364.890000px;}
.y122{bottom:365.190000px;}
.y16d{bottom:365.370000px;}
.y114{bottom:365.505000px;}
.yd1{bottom:367.350000px;}
.yfa{bottom:367.530000px;}
.y157{bottom:368.715000px;}
.ybc{bottom:368.895000px;}
.y22{bottom:369.645000px;}
.y1dc{bottom:372.135000px;}
.y98{bottom:373.110000px;}
.yb7{bottom:373.650000px;}
.y1e5{bottom:377.460000px;}
.y197{bottom:377.565000px;}
.y44{bottom:381.600000px;}
.y175{bottom:382.500000px;}
.yce{bottom:384.195000px;}
.yd4{bottom:384.990000px;}
.yc4{bottom:385.200000px;}
.ye0{bottom:386.490000px;}
.yd0{bottom:388.950000px;}
.y147{bottom:391.500000px;}
.yb6{bottom:392.550000px;}
.ya{bottom:393.045000px;}
.y32{bottom:393.195000px;}
.ybb{bottom:394.095000px;}
.y7{bottom:397.410000px;}
.y82{bottom:398.730000px;}
.y196{bottom:399.165000px;}
.y8c{bottom:399.240000px;}
.y156{bottom:401.115000px;}
.y17e{bottom:401.655000px;}
.y21{bottom:402.045000px;}
.y9c{bottom:403.995000px;}
.y4d{bottom:404.250000px;}
.y1db{bottom:404.535000px;}
.y13e{bottom:404.565000px;}
.y136{bottom:404.925000px;}
.y174{bottom:411.300000px;}
.yb5{bottom:411.450000px;}
.y1ba{bottom:413.715000px;}
.y1e4{bottom:414.720000px;}
.yc3{bottom:417.600000px;}
.y43{bottom:418.500000px;}
.yba{bottom:419.325000px;}
.y9b{bottom:420.195000px;}
.y56{bottom:420.735000px;}
.y195{bottom:420.765000px;}
.yf5{bottom:423.180000px;}
.y146{bottom:423.930000px;}
.y8b{bottom:424.440000px;}
.yf9{bottom:424.830000px;}
.yf7{bottom:424.905000px;}
.y31{bottom:425.595000px;}
.y1ca{bottom:427.470000px;}
.y3d{bottom:428.910000px;}
.y17d{bottom:430.455000px;}
.y155{bottom:433.545000px;}
.y20{bottom:434.445000px;}
.y16c{bottom:434.625000px;}
.ya5{bottom:434.730000px;}
.y81{bottom:434.775000px;}
.y9a{bottom:436.425000px;}
.y11{bottom:436.830000px;}
.y1da{bottom:436.935000px;}
.y1b9{bottom:438.555000px;}
.y173{bottom:440.100000px;}
.y6{bottom:440.610000px;}
.y135{bottom:440.925000px;}
.y194{bottom:442.365000px;}
.y7b{bottom:444.525000px;}
.y1b2{bottom:445.965000px;}
.y1bd{bottom:446.145000px;}
.yf4{bottom:448.380000px;}
.y4c{bottom:449.250000px;}
.yc2{bottom:450.030000px;}
.yf8{bottom:450.075000px;}
.yf6{bottom:450.105000px;}
.y165{bottom:453.750000px;}
.y42{bottom:455.400000px;}
.y1c9{bottom:456.300000px;}
.y145{bottom:456.330000px;}
.y17c{bottom:459.285000px;}
.y16b{bottom:459.825000px;}
.ya4{bottom:459.930000px;}
.y1b8{bottom:463.395000px;}
.y193{bottom:463.965000px;}
.y154{bottom:465.945000px;}
.y1f{bottom:466.845000px;}
.y10{bottom:469.230000px;}
.y1d9{bottom:469.365000px;}
.y7a{bottom:469.410000px;}
.ycd{bottom:469.725000px;}
.y9{bottom:470.850000px;}
.yac{bottom:471.135000px;}
.y1b1{bottom:471.165000px;}
.y1bc{bottom:474.945000px;}
.y13d{bottom:475.890000px;}
.y134{bottom:476.970000px;}
.yc1{bottom:482.430000px;}
.y5{bottom:483.660000px;}
.y16a{bottom:485.025000px;}
.y1c8{bottom:485.100000px;}
.ya3{bottom:485.175000px;}
.y12d{bottom:486.846462px;}
.yab{bottom:487.335000px;}
.y41{bottom:487.830000px;}
.y187{bottom:491.040000px;}
.y17a{bottom:492.990000px;}
.y3c{bottom:493.710000px;}
.y79{bottom:494.250000px;}
.y4b{bottom:494.280000px;}
.y153{bottom:498.345000px;}
.y1cf{bottom:499.290000px;}
.y30{bottom:499.395000px;}
.yf{bottom:501.660000px;}
.y1d8{bottom:501.765000px;}
.y6a{bottom:502.125000px;}
.yaa{bottom:503.535000px;}
.y8a{bottom:506.550000px;}
.y80{bottom:506.775000px;}
.y1b7{bottom:507.345000px;}
.y192{bottom:507.885000px;}
.y133{bottom:512.970000px;}
.yc0{bottom:514.830000px;}
.y17b{bottom:516.885000px;}
.y78{bottom:519.090000px;}
.y144{bottom:521.130000px;}
.y40{bottom:524.730000px;}
.y69{bottom:527.010000px;}
.y1e8{bottom:527.865000px;}
.y152{bottom:530.745000px;}
.y1ce{bottom:531.690000px;}
.y2f{bottom:531.795000px;}
.y1d7{bottom:534.165000px;}
.y1e{bottom:540.690000px;}
.y186{bottom:541.470000px;}
.y7f{bottom:542.775000px;}
.y8{bottom:548.610000px;}
.y68{bottom:551.850000px;}
.y143{bottom:553.530000px;}
.y1e6{bottom:553.650000px;}
.y169{bottom:554.430000px;}
.y57{bottom:555.660000px;}
.y3b{bottom:558.510000px;}
.y1bb{bottom:560.880000px;}
.y77{bottom:563.010000px;}
.y18d{bottom:563.610000px;}
.y1cd{bottom:564.090000px;}
.y2e{bottom:564.225000px;}
.y1d6{bottom:566.565000px;}
.y4{bottom:570.240000px;}
.y1d{bottom:573.090000px;}
.ybf{bottom:574.815000px;}
.ye{bottom:575.460000px;}
.y166{bottom:576.330000px;}
.y7e{bottom:578.775000px;}
.y92{bottom:579.630000px;}
.y8e{bottom:580.395000px;}
.y90{bottom:581.325000px;}
.y1e7{bottom:584.745000px;}
.y185{bottom:591.870000px;}
.ya2{bottom:595.260000px;}
.y151{bottom:595.590000px;}
.y67{bottom:595.770000px;}
.y18c{bottom:596.010000px;}
.y2d{bottom:596.625000px;}
.y3f{bottom:598.530000px;}
.y168{bottom:604.830000px;}
.y1c{bottom:605.490000px;}
.y190{bottom:606.675000px;}
.yd{bottom:607.860000px;}
.y91{bottom:608.430000px;}
.y8d{bottom:609.195000px;}
.y8f{bottom:610.125000px;}
.y3{bottom:613.440000px;}
.y7d{bottom:614.805000px;}
.y167{bottom:615.705000px;}
.ycc{bottom:623.910000px;}
.y142{bottom:627.225000px;}
.ya1{bottom:627.660000px;}
.y150{bottom:627.990000px;}
.y18b{bottom:628.455000px;}
.y2c{bottom:629.025000px;}
.yc{bottom:640.290000px;}
.y184{bottom:642.270000px;}
.y18f{bottom:643.965000px;}
.y7c{bottom:650.805000px;}
.y2{bottom:665.670000px;}
.y162{bottom:677.595000px;}
.y1cc{bottom:683.175000px;}
.y5a{bottom:689.655000px;}
.y3a{bottom:690.990000px;}
.y2b{bottom:699.765000px;}
.y1d5{bottom:703.440000px;}
.y1e9{bottom:705.600000px;}
.yf3{bottom:705.885000px;}
.yb{bottom:709.305000px;}
.y1b{bottom:710.175000px;}
.y18e{bottom:712.515000px;}
.y141{bottom:736.020000px;}
.y1a{bottom:755.205000px;}
.y183{bottom:782.895000px;}
.y191{bottom:786.705000px;}
.h28{height:22.453322px;}
.h27{height:22.483260px;}
.h6{height:41.132812px;}
.h20{height:43.269961px;}
.h24{height:43.399125px;}
.h31{height:44.725902px;}
.h1b{height:48.436523px;}
.h1a{height:48.565687px;}
.h1{height:49.517578px;}
.h1c{height:56.832187px;}
.h10{height:63.344531px;}
.h15{height:63.452813px;}
.h1f{height:64.167187px;}
.h22{height:64.276875px;}
.h13{height:64.582031px;}
.h14{height:64.711195px;}
.h2f{height:72.007031px;}
.h19{height:72.115313px;}
.h35{height:72.942188px;}
.h36{height:73.051875px;}
.h12{height:75.560977px;}
.h11{height:75.690141px;}
.h25{height:80.422031px;}
.h37{height:81.210938px;}
.ha{height:82.265625px;}
.h18{height:85.894102px;}
.h30{height:86.023266px;}
.h34{height:87.104531px;}
.he{height:87.811172px;}
.hf{height:87.943219px;}
.h2e{height:91.589062px;}
.h1d{height:96.873047px;}
.h1e{height:97.002211px;}
.h9{height:99.035156px;}
.h8{height:99.167203px;}
.h16{height:107.851992px;}
.h17{height:107.981156px;}
.h2b{height:109.687500px;}
.h38{height:109.898438px;}
.h39{height:110.008336px;}
.h2c{height:110.259141px;}
.h2d{height:110.391188px;}
.h7{height:114.075000px;}
.hb{height:114.184687px;}
.h3{height:132.046875px;}
.h4{height:132.178922px;}
.h23{height:138.862031px;}
.h21{height:143.302031px;}
.h26{height:152.684188px;}
.h32{height:153.834609px;}
.h33{height:153.966656px;}
.hc{height:182.629687px;}
.hd{height:182.739375px;}
.h2a{height:201.276563px;}
.h29{height:201.386250px;}
.h5{height:219.375000px;}
.h2{height:219.484688px;}
.h0{height:810.000000px;}
.w2{width:255.067189px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1a{left:7.523979px;}
.xc4{left:9.391035px;}
.x1e{left:15.803979px;}
.x19{left:20.123979px;}
.x59{left:26.099979px;}
.x1b{left:28.259979px;}
.x5a{left:33.119979px;}
.x20{left:34.523979px;}
.x1c{left:37.259979px;}
.x2{left:38.411979px;}
.x26{left:41.003979px;}
.x1d{left:49.823979px;}
.x1f{left:51.803979px;}
.x22{left:54.503979px;}
.xc5{left:56.231979px;}
.xc{left:60.947979px;}
.xc8{left:62.387979px;}
.x3{left:65.519979px;}
.xda{left:67.175979px;}
.x5{left:71.963979px;}
.xc6{left:76.175979px;}
.x58{left:77.579979px;}
.x57{left:79.631979px;}
.x2d{left:81.503979px;}
.x2c{left:84.203979px;}
.x8e{left:86.003979px;}
.x21{left:91.043979px;}
.xc9{left:96.227979px;}
.xe8{left:99.467979px;}
.xdb{left:101.699979px;}
.xc7{left:110.015979px;}
.x6{left:112.463979px;}
.xe5{left:117.287979px;}
.x27{left:128.699979px;}
.x24{left:130.031979px;}
.x25{left:141.551979px;}
.xe7{left:145.907979px;}
.xca{left:150.149979px;}
.xeb{left:152.969979px;}
.xcb{left:159.689979px;}
.xe6{left:162.464979px;}
.xa8{left:170.894979px;}
.xa7{left:171.974979px;}
.x5b{left:173.669979px;}
.xea{left:175.649979px;}
.xa4{left:181.799979px;}
.x5d{left:183.029979px;}
.x5e{left:188.069979px;}
.x5c{left:191.669979px;}
.xec{left:224.129979px;}
.x34{left:230.069979px;}
.x32{left:231.869979px;}
.x33{left:252.929979px;}
.xe9{left:259.889979px;}
.xa9{left:263.729979px;}
.xa2{left:268.589979px;}
.xa3{left:277.589979px;}
.x5f{left:293.009979px;}
.x62{left:298.409979px;}
.x61{left:301.469979px;}
.x60{left:306.509979px;}
.x63{left:310.469979px;}
.xaa{left:338.429979px;}
.xab{left:348.329979px;}
.x39{left:350.714979px;}
.x37{left:354.494979px;}
.xa5{left:364.394979px;}
.x38{left:365.654979px;}
.xa6{left:373.394979px;}
.x67{left:399.524979px;}
.xe3{left:402.089979px;}
.x64{left:407.444979px;}
.x66{left:414.464979px;}
.x65{left:422.609979px;}
.xe2{left:424.079979px;}
.x8d{left:438.329979px;}
.xae{left:449.609979px;}
.xac{left:453.029979px;}
.xad{left:458.069979px;}
.x97{left:460.184979px;}
.xed{left:462.449979px;}
.x98{left:469.184979px;}
.x2f{left:495.149979px;}
.x2e{left:504.509979px;}
.x6b{left:507.164979px;}
.x6a{left:508.964979px;}
.x6c{left:511.844979px;}
.x28{left:513.179979px;}
.x68{left:524.984979px;}
.x69{left:529.844979px;}
.xaf{left:543.164979px;}
.xb0{left:544.244979px;}
.xb1{left:545.684979px;}
.x8c{left:551.984979px;}
.xdc{left:554.069979px;}
.x99{left:555.944979px;}
.xe1{left:557.249979px;}
.x29{left:562.859979px;}
.x9a{left:564.944979px;}
.xe4{left:567.284979px;}
.x8b{left:568.904979px;}
.x3b{left:589.679979px;}
.xcd{left:605.984979px;}
.x9{left:608.834979px;}
.xcc{left:613.259979px;}
.x71{left:626.219979px;}
.x6d{left:633.779979px;}
.x35{left:638.534979px;}
.x70{left:639.539979px;}
.x6f{left:643.139979px;}
.x6e{left:648.179979px;}
.xb3{left:649.184979px;}
.x95{left:651.749979px;}
.xb2{left:655.304979px;}
.x72{left:658.619979px;}
.x96{left:660.749979px;}
.x36{left:664.094979px;}
.x89{left:668.984979px;}
.x8a{left:680.324979px;}
.x8{left:691.094979px;}
.x17{left:692.279979px;}
.xb{left:699.014979px;}
.x16{left:710.639979px;}
.xb6{left:716.504979px;}
.xb4{left:721.004979px;}
.x15{left:723.599979px;}
.xd{left:730.874979px;}
.x73{left:733.529979px;}
.xb5{left:734.864979px;}
.x75{left:736.229979px;}
.x77{left:744.509979px;}
.x9b{left:747.539979px;}
.x74{left:756.929979px;}
.x78{left:761.429979px;}
.x76{left:772.409979px;}
.xdf{left:774.644979px;}
.x18{left:779.399979px;}
.x88{left:793.364979px;}
.xde{left:798.404979px;}
.xdd{left:816.404979px;}
.xe0{left:817.664979px;}
.xb8{left:823.754979px;}
.xb7{left:834.194979px;}
.x93{left:843.329979px;}
.xb9{left:847.694979px;}
.x94{left:852.329979px;}
.x79{left:857.009979px;}
.xa{left:859.289979px;}
.x7c{left:861.869979px;}
.xd9{left:864.794979px;}
.xd7{left:870.734979px;}
.x7a{left:877.889979px;}
.x7b{left:883.289979px;}
.xd8{left:896.834979px;}
.xd6{left:898.169979px;}
.x87{left:905.729979px;}
.x86{left:913.289979px;}
.xba{left:924.989979px;}
.xd4{left:936.149979px;}
.x9c{left:939.134979px;}
.xd5{left:943.709979px;}
.x41{left:946.694979px;}
.x9d{left:948.134979px;}
.x42{left:951.194979px;}
.xcf{left:955.544979px;}
.x56{left:959.324979px;}
.x43{left:968.834979px;}
.x7d{left:971.309979px;}
.x30{left:983.264979px;}
.x40{left:984.344979px;}
.x2b{left:985.529979px;}
.xd0{left:987.944979px;}
.x7e{left:990.209979px;}
.x3e{left:994.424979px;}
.x3f{left:1002.524979px;}
.x85{left:1004.294979px;}
.xd3{left:1013.039979px;}
.x2a{left:1023.689979px;}
.xd1{left:1029.884979px;}
.xce{left:1031.324979px;}
.x9e{left:1034.924979px;}
.xbc{left:1036.364979px;}
.xbb{left:1039.784979px;}
.x9f{left:1043.924979px;}
.x53{left:1049.249979px;}
.x31{left:1061.564979px;}
.x23{left:1067.249979px;}
.x4b{left:1070.564979px;}
.x49{left:1073.264979px;}
.x55{left:1077.689979px;}
.x4a{left:1079.924979px;}
.x4c{left:1085.144979px;}
.x7f{left:1089.359979px;}
.x52{left:1091.189979px;}
.x54{left:1095.149979px;}
.x3a{left:1108.514979px;}
.xbd{left:1111.169979px;}
.x11{left:1114.019979px;}
.x47{left:1127.804979px;}
.x45{left:1130.504979px;}
.xf{left:1133.999979px;}
.xbe{left:1135.649979px;}
.x46{left:1137.164979px;}
.x91{left:1139.864979px;}
.x10{left:1140.869979px;}
.x48{left:1142.384979px;}
.x92{left:1148.864979px;}
.x12{left:1151.849979px;}
.x44{left:1153.874979px;}
.xe{left:1165.424979px;}
.x14{left:1176.194979px;}
.x13{left:1191.674979px;}
.x80{left:1196.819979px;}
.x81{left:1198.259979px;}
.x4e{left:1203.089979px;}
.x4d{left:1207.049979px;}
.x51{left:1214.129979px;}
.x50{left:1215.569979px;}
.x4f{left:1227.029979px;}
.xc0{left:1230.374979px;}
.xbf{left:1231.454979px;}
.xa0{left:1233.974979px;}
.xa1{left:1242.974979px;}
.xd2{left:1244.264979px;}
.x7{left:1247.909979px;}
.x1{left:1263.134979px;}
.x4{left:1265.834979px;}
.x3c{left:1295.639979px;}
.xc2{left:1303.349979px;}
.x83{left:1308.344979px;}
.x3d{left:1310.039979px;}
.x84{left:1315.904979px;}
.xc3{left:1319.909979px;}
.x82{left:1324.724979px;}
.x8f{left:1327.709979px;}
.xc1{left:1331.789979px;}
.x90{left:1336.709979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.896000pt;}
.v4{vertical-align:14.080000pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:66.026667pt;}
.v2{vertical-align:69.973333pt;}
.ls1f{letter-spacing:-0.949333pt;}
.ls20{letter-spacing:-0.912000pt;}
.ls1c{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.308267pt;}
.ls22{letter-spacing:-0.272533pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.249067pt;}
.ls5{letter-spacing:-0.222933pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.187733pt;}
.ls1a{letter-spacing:-0.161067pt;}
.ls30{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.075733pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.033280pt;}
.ls23{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.024960pt;}
.ls10{letter-spacing:-0.016640pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.010613pt;}
.ls19{letter-spacing:0.015360pt;}
.ls2a{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.023520pt;}
.ls4{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.033280pt;}
.ls2d{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.089600pt;}
.ls34{letter-spacing:0.091733pt;}
.ls9{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.144000pt;}
.ls2b{letter-spacing:0.161067pt;}
.ls1e{letter-spacing:0.180267pt;}
.ls17{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.194667pt;}
.ls15{letter-spacing:0.217600pt;}
.lsb{letter-spacing:0.222933pt;}
.ls16{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.313067pt;}
.lsd{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.384000pt;}
.ls26{letter-spacing:26.552832pt;}
.ls25{letter-spacing:26.624000pt;}
.ls2e{letter-spacing:53.749760pt;}
.ls29{letter-spacing:90.483200pt;}
.ls28{letter-spacing:90.528000pt;}
.ls24{letter-spacing:91.975040pt;}
.ls2{letter-spacing:110.355200pt;}
.ls3{letter-spacing:110.400000pt;}
.ws0{word-spacing:-63.775872pt;}
.ws5c{word-spacing:-58.516992pt;}
.ws4{word-spacing:-33.146880pt;}
.ws87{word-spacing:-31.903872pt;}
.ws68{word-spacing:-31.872000pt;}
.ws2{word-spacing:-31.744000pt;}
.ws3d{word-spacing:-29.748224pt;}
.wse{word-spacing:-29.712640pt;}
.ws5e{word-spacing:-26.688000pt;}
.ws63{word-spacing:-26.496000pt;}
.ws7{word-spacing:-23.935872pt;}
.ws5{word-spacing:-23.904000pt;}
.ws6{word-spacing:-23.808000pt;}
.ws6a{word-spacing:-23.698944pt;}
.ws6b{word-spacing:-23.663360pt;}
.ws23{word-spacing:-20.852224pt;}
.ws8{word-spacing:-20.816640pt;}
.ws2c{word-spacing:-17.984000pt;}
.ws2b{word-spacing:-17.934251pt;}
.wsa{word-spacing:-17.827584pt;}
.wsb{word-spacing:-17.792000pt;}
.ws27{word-spacing:-15.656960pt;}
.ws26{word-spacing:-13.488000pt;}
.ws24{word-spacing:-13.344000pt;}
.ws2e{word-spacing:-11.956224pt;}
.ws29{word-spacing:-11.920640pt;}
.ws25{word-spacing:-11.040000pt;}
.ws31{word-spacing:-7.388577pt;}
.ws30{word-spacing:-7.378738pt;}
.ws67{word-spacing:-5.632000pt;}
.ws66{word-spacing:-4.224000pt;}
.ws9{word-spacing:-2.240000pt;}
.ws46{word-spacing:-1.577600pt;}
.ws44{word-spacing:-1.541547pt;}
.ws69{word-spacing:-1.229440pt;}
.ws5b{word-spacing:-1.079125pt;}
.ws21{word-spacing:-1.008213pt;}
.ws43{word-spacing:-0.890453pt;}
.ws38{word-spacing:-0.634581pt;}
.ws3b{word-spacing:-0.543744pt;}
.ws5f{word-spacing:-0.437333pt;}
.ws3{word-spacing:0.000000pt;}
.ws39{word-spacing:0.208555pt;}
.ws61{word-spacing:0.296491pt;}
.ws5d{word-spacing:0.298667pt;}
.ws37{word-spacing:0.308352pt;}
.ws77{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.506752pt;}
.ws45{word-spacing:0.592960pt;}
.ws6c{word-spacing:1.071573pt;}
.ws60{word-spacing:1.098667pt;}
.ws6f{word-spacing:1.109333pt;}
.ws1{word-spacing:1.152000pt;}
.ws62{word-spacing:1.365333pt;}
.ws22{word-spacing:1.433600pt;}
.ws64{word-spacing:1.876565pt;}
.ws6e{word-spacing:1.952000pt;}
.ws12{word-spacing:1.969280pt;}
.ws70{word-spacing:2.240000pt;}
.ws3a{word-spacing:2.255104pt;}
.ws65{word-spacing:3.221333pt;}
.ws79{word-spacing:3.957333pt;}
.ws7a{word-spacing:4.608000pt;}
.ws18{word-spacing:4.858880pt;}
.ws19{word-spacing:4.963413pt;}
.ws14{word-spacing:5.096277pt;}
.ws13{word-spacing:5.120128pt;}
.ws1a{word-spacing:5.453440pt;}
.ws71{word-spacing:5.632000pt;}
.ws72{word-spacing:7.296000pt;}
.ws56{word-spacing:8.510507pt;}
.ws34{word-spacing:8.819840pt;}
.ws32{word-spacing:8.912213pt;}
.ws58{word-spacing:9.150720pt;}
.ws36{word-spacing:9.262080pt;}
.ws57{word-spacing:9.327040pt;}
.ws5a{word-spacing:9.405440pt;}
.ws35{word-spacing:9.454080pt;}
.ws81{word-spacing:9.472000pt;}
.ws59{word-spacing:9.516800pt;}
.ws7f{word-spacing:9.632000pt;}
.ws40{word-spacing:9.800747pt;}
.ws3f{word-spacing:9.882453pt;}
.ws3e{word-spacing:9.978880pt;}
.ws42{word-spacing:10.062720pt;}
.ws80{word-spacing:10.197333pt;}
.ws33{word-spacing:10.384000pt;}
.ws1d{word-spacing:10.758613pt;}
.ws1f{word-spacing:12.647040pt;}
.ws41{word-spacing:12.685440pt;}
.ws1e{word-spacing:13.071787pt;}
.ws86{word-spacing:16.231552pt;}
.ws7d{word-spacing:16.256000pt;}
.ws7b{word-spacing:16.565333pt;}
.ws7c{word-spacing:17.216000pt;}
.ws52{word-spacing:21.664427pt;}
.ws2a{word-spacing:21.952000pt;}
.ws50{word-spacing:22.304640pt;}
.ws4f{word-spacing:22.930773pt;}
.ws4a{word-spacing:22.955733pt;}
.ws51{word-spacing:23.111040pt;}
.ws55{word-spacing:23.134720pt;}
.ws4b{word-spacing:23.521280pt;}
.ws53{word-spacing:23.655680pt;}
.wsc{word-spacing:25.257173pt;}
.ws4c{word-spacing:25.325440pt;}
.ws54{word-spacing:25.485440pt;}
.wsd{word-spacing:25.742080pt;}
.ws82{word-spacing:26.944000pt;}
.ws83{word-spacing:28.704000pt;}
.ws78{word-spacing:30.229333pt;}
.ws84{word-spacing:35.541333pt;}
.ws85{word-spacing:36.096000pt;}
.ws6d{word-spacing:37.738667pt;}
.ws47{word-spacing:48.749013pt;}
.ws48{word-spacing:48.784000pt;}
.ws73{word-spacing:72.042667pt;}
.ws49{word-spacing:75.791787pt;}
.ws16{word-spacing:78.576213pt;}
.ws17{word-spacing:78.624640pt;}
.ws20{word-spacing:84.278400pt;}
.ws4e{word-spacing:86.471680pt;}
.ws4d{word-spacing:86.826027pt;}
.ws2d{word-spacing:92.768000pt;}
.ws10{word-spacing:93.153493pt;}
.ws11{word-spacing:93.344640pt;}
.ws75{word-spacing:98.666048pt;}
.ws76{word-spacing:99.498496pt;}
.ws74{word-spacing:100.235733pt;}
.ws2f{word-spacing:107.104000pt;}
.ws7e{word-spacing:141.695829pt;}
.ws1c{word-spacing:142.811989pt;}
.ws1b{word-spacing:143.336544pt;}
.wsf{word-spacing:252.027733pt;}
.ws15{word-spacing:322.354773pt;}
.ws28{word-spacing:612.145280pt;}
._a{margin-left:-1381.653333pt;}
._9{margin-left:-979.040000pt;}
._b{margin-left:-576.640000pt;}
._13{margin-left:-3.850752pt;}
._5{margin-left:-2.496000pt;}
._1{margin-left:-1.042603pt;}
._0{width:1.152000pt;}
._3{width:2.226603pt;}
._12{width:3.237803pt;}
._7{width:18.967509pt;}
._15{width:20.801536pt;}
._6{width:22.703104pt;}
._11{width:29.173333pt;}
._d{width:30.126507pt;}
._2{width:32.757333pt;}
._18{width:43.887019pt;}
._17{width:56.469333pt;}
._10{width:104.474667pt;}
._e{width:117.094613pt;}
._f{width:118.071680pt;}
._4{width:128.154667pt;}
._16{width:170.045099pt;}
._c{width:228.533333pt;}
._14{width:2526.528000pt;}
._8{width:4253.546667pt;}
.fs18{font-size:26.542225pt;}
.fs17{font-size:26.577614pt;}
.fs15{font-size:42.880000pt;}
.fs16{font-size:43.008000pt;}
.fs0{font-size:48.000000pt;}
.fs13{font-size:48.128000pt;}
.fs14{font-size:56.320000pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fsb{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs11{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs5{font-size:133.120000pt;}
.fs8{font-size:133.248000pt;}
.fs1b{font-size:149.120000pt;}
.fs1c{font-size:149.248000pt;}
.fs9{font-size:213.120000pt;}
.fsa{font-size:213.248000pt;}
.fs1a{font-size:234.880000pt;}
.fs19{font-size:235.008000pt;}
.fs4{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:4.672000pt;}
.yf2{bottom:6.432000pt;}
.y132{bottom:8.153346pt;}
.yee{bottom:8.224000pt;}
.y71{bottom:10.624000pt;}
.ye8{bottom:11.136000pt;}
.y66{bottom:11.392000pt;}
.yec{bottom:12.256000pt;}
.ye6{bottom:12.928000pt;}
.yea{bottom:14.144000pt;}
.y131{bottom:20.548565pt;}
.yef{bottom:23.872000pt;}
.y62{bottom:25.504000pt;}
.yf1{bottom:25.632000pt;}
.y1{bottom:25.824000pt;}
.yed{bottom:27.424000pt;}
.ye7{bottom:30.336000pt;}
.yeb{bottom:31.456000pt;}
.ye5{bottom:32.128000pt;}
.y70{bottom:32.704000pt;}
.y130{bottom:32.934936pt;}
.ye9{bottom:33.344000pt;}
.y65{bottom:33.472000pt;}
.y161{bottom:39.680000pt;}
.ya0{bottom:40.384000pt;}
.y1ac{bottom:42.816000pt;}
.y58{bottom:47.424000pt;}
.y61{bottom:51.296000pt;}
.y1d4{bottom:54.144000pt;}
.y6f{bottom:54.784000pt;}
.y64{bottom:55.552000pt;}
.y2a{bottom:61.312000pt;}
.y1ab{bottom:62.048000pt;}
.y1a3{bottom:63.872000pt;}
.y1cb{bottom:67.136000pt;}
.y94{bottom:67.232000pt;}
.y160{bottom:68.480000pt;}
.y60{bottom:77.056000pt;}
.y1aa{bottom:81.248000pt;}
.y1d3{bottom:82.944000pt;}
.y12f{bottom:83.710581pt;}
.y1a2{bottom:85.952000pt;}
.y93{bottom:86.432000pt;}
.y29{bottom:90.112000pt;}
.y14f{bottom:91.968000pt;}
.y12e{bottom:92.875021pt;}
.y6e{bottom:93.824000pt;}
.y63{bottom:94.592000pt;}
.y15f{bottom:97.312000pt;}
.y1a9{bottom:100.448000pt;}
.y5f{bottom:102.816000pt;}
.y55{bottom:107.168000pt;}
.y1a1{bottom:108.032000pt;}
.y19{bottom:109.024000pt;}
.y39{bottom:111.040000pt;}
.ycb{bottom:111.968000pt;}
.y1c7{bottom:116.736000pt;}
.y28{bottom:118.912000pt;}
.y1a8{bottom:119.648000pt;}
.y14e{bottom:120.768000pt;}
.y4a{bottom:121.536000pt;}
.y1b0{bottom:122.176000pt;}
.y15e{bottom:126.112000pt;}
.y5e{bottom:128.576000pt;}
.y1e3{bottom:129.120000pt;}
.y1a0{bottom:130.112000pt;}
.y89{bottom:130.400000pt;}
.y13c{bottom:135.906667pt;}
.y54{bottom:135.973333pt;}
.y1b6{bottom:137.306667pt;}
.y18{bottom:137.826667pt;}
.y1a7{bottom:138.853333pt;}
.y76{bottom:139.200000pt;}
.y38{bottom:139.840000pt;}
.yca{bottom:140.773333pt;}
.y1c6{bottom:142.333333pt;}
.y1af{bottom:144.573333pt;}
.y27{bottom:147.706667pt;}
.y14d{bottom:149.573333pt;}
.y49{bottom:150.373333pt;}
.y18a{bottom:150.786667pt;}
.y19f{bottom:152.186667pt;}
.y5d{bottom:154.333333pt;}
.y15d{bottom:154.906667pt;}
.y1e2{bottom:157.946667pt;}
.y1a6{bottom:158.053333pt;}
.yb4{bottom:158.973333pt;}
.y9f{bottom:159.653333pt;}
.y1b5{bottom:159.706667pt;}
.y75{bottom:161.280000pt;}
.y88{bottom:162.400000pt;}
.y53{bottom:164.773333pt;}
.y1c0{bottom:166.013333pt;}
.y1ae{bottom:167.013333pt;}
.y59{bottom:167.426667pt;}
.y13b{bottom:167.906667pt;}
.y1c5{bottom:167.933333pt;}
.y37{bottom:168.640000pt;}
.y172{bottom:169.186667pt;}
.yc9{bottom:169.573333pt;}
.y17{bottom:170.653333pt;}
.yb3{bottom:173.373333pt;}
.y19e{bottom:174.306667pt;}
.y26{bottom:176.506667pt;}
.y5c{bottom:180.133333pt;}
.y1b4{bottom:182.106667pt;}
.y74{bottom:183.360000pt;}
.y15c{bottom:183.706667pt;}
.yb0{bottom:185.853333pt;}
.y1e1{bottom:186.746667pt;}
.y1d2{bottom:187.293333pt;}
.yb2{bottom:187.773333pt;}
.y163{bottom:188.640000pt;}
.y1ad{bottom:189.413333pt;}
.y171{bottom:191.586667pt;}
.y1c4{bottom:193.533333pt;}
.y52{bottom:193.600000pt;}
.y87{bottom:194.400000pt;}
.y189{bottom:195.586667pt;}
.y19d{bottom:196.386667pt;}
.y36{bottom:197.440000pt;}
.yc8{bottom:198.373333pt;}
.y16{bottom:199.453333pt;}
.y13a{bottom:199.906667pt;}
.yaf{bottom:200.253333pt;}
.y113{bottom:200.933333pt;}
.yb1{bottom:202.173333pt;}
.y1a5{bottom:203.520000pt;}
.y14c{bottom:203.973333pt;}
.y1b3{bottom:204.506667pt;}
.y25{bottom:205.346667pt;}
.y73{bottom:205.440000pt;}
.ydf{bottom:207.773333pt;}
.y6d{bottom:207.906667pt;}
.y15b{bottom:212.506667pt;}
.y112{bottom:213.760000pt;}
.y170{bottom:213.986667pt;}
.yae{bottom:214.653333pt;}
.y1e0{bottom:215.546667pt;}
.y48{bottom:215.973333pt;}
.y19c{bottom:218.466667pt;}
.ya9{bottom:219.360000pt;}
.y5b{bottom:221.893333pt;}
.y51{bottom:222.400000pt;}
.y1a4{bottom:225.920000pt;}
.y35{bottom:226.266667pt;}
.y86{bottom:226.400000pt;}
.y111{bottom:226.560000pt;}
.yde{bottom:226.973333pt;}
.yc7{bottom:227.173333pt;}
.y15{bottom:228.253333pt;}
.y97{bottom:228.640000pt;}
.y182{bottom:228.986667pt;}
.yad{bottom:229.053333pt;}
.y6c{bottom:229.986667pt;}
.y139{bottom:231.906667pt;}
.y14b{bottom:232.800000pt;}
.y140{bottom:232.893333pt;}
.y24{bottom:234.146667pt;}
.y10b{bottom:236.506667pt;}
.y179{bottom:237.573333pt;}
.yb9{bottom:238.173333pt;}
.y188{bottom:240.386667pt;}
.y110{bottom:240.640000pt;}
.y15a{bottom:241.346667pt;}
.ya8{bottom:241.760000pt;}
.y1df{bottom:244.346667pt;}
.y72{bottom:244.480000pt;}
.y47{bottom:244.773333pt;}
.ydd{bottom:246.173333pt;}
.y10a{bottom:249.306667pt;}
.y96{bottom:251.040000pt;}
.y50{bottom:251.200000pt;}
.yb8{bottom:252.573333pt;}
.y1c3{bottom:252.986667pt;}
.y181{bottom:254.626667pt;}
.yc6{bottom:256.000000pt;}
.y105{bottom:256.666667pt;}
.y11c{bottom:256.933333pt;}
.y1d1{bottom:257.053333pt;}
.y19b{bottom:257.506667pt;}
.ydc{bottom:257.693333pt;}
.y85{bottom:258.426667pt;}
.y10f{bottom:259.840000pt;}
.ybe{bottom:260.706667pt;}
.y14{bottom:261.053333pt;}
.y14a{bottom:261.600000pt;}
.y120{bottom:261.733333pt;}
.y178{bottom:263.173333pt;}
.y109{bottom:263.386667pt;}
.y138{bottom:263.906667pt;}
.ya7{bottom:264.160000pt;}
.y12c{bottom:265.280000pt;}
.yd8{bottom:265.373333pt;}
.y1bf{bottom:266.973333pt;}
.y125{bottom:267.013333pt;}
.y6b{bottom:269.053333pt;}
.y104{bottom:269.466667pt;}
.y11b{bottom:269.733333pt;}
.y159{bottom:270.146667pt;}
.ydb{bottom:270.493333pt;}
.y1de{bottom:273.186667pt;}
.y95{bottom:273.440000pt;}
.yda{bottom:276.893333pt;}
.y46{bottom:277.600000pt;}
.y19a{bottom:277.986667pt;}
.y1c2{bottom:278.626667pt;}
.y10e{bottom:279.040000pt;}
.y16f{bottom:279.973333pt;}
.y4f{bottom:280.000000pt;}
.y180{bottom:280.226667pt;}
.yfd{bottom:280.613333pt;}
.y11f{bottom:280.933333pt;}
.y108{bottom:282.586667pt;}
.y103{bottom:283.546667pt;}
.y11a{bottom:283.813333pt;}
.y12b{bottom:284.480000pt;}
.yd7{bottom:284.613333pt;}
.y128{bottom:284.893333pt;}
.y117{bottom:285.213333pt;}
.y1d0{bottom:285.853333pt;}
.y124{bottom:286.213333pt;}
.ya6{bottom:286.560000pt;}
.yd3{bottom:288.093333pt;}
.y177{bottom:288.800000pt;}
.yd9{bottom:289.733333pt;}
.y13{bottom:289.893333pt;}
.y149{bottom:290.400000pt;}
.y84{bottom:290.426667pt;}
.y34{bottom:291.866667pt;}
.y1be{bottom:292.573333pt;}
.yfc{bottom:293.413333pt;}
.y137{bottom:295.933333pt;}
.y13f{bottom:296.253333pt;}
.y10d{bottom:296.960000pt;}
.y199{bottom:297.186667pt;}
.y116{bottom:298.013333pt;}
.y9e{bottom:298.426667pt;}
.y158{bottom:298.946667pt;}
.y164{bottom:299.453333pt;}
.y23{bottom:299.746667pt;}
.y11e{bottom:300.133333pt;}
.y107{bottom:301.826667pt;}
.y100{bottom:301.946667pt;}
.y1dd{bottom:301.986667pt;}
.ye3{bottom:302.106667pt;}
.y16e{bottom:302.373333pt;}
.y102{bottom:302.746667pt;}
.y119{bottom:303.013333pt;}
.y12a{bottom:303.680000pt;}
.yd6{bottom:303.813333pt;}
.y127{bottom:304.093333pt;}
.y1c1{bottom:304.226667pt;}
.yff{bottom:304.640000pt;}
.ye4{bottom:305.146667pt;}
.y123{bottom:305.413333pt;}
.ybd{bottom:305.506667pt;}
.y17f{bottom:305.826667pt;}
.yd2{bottom:307.293333pt;}
.yfb{bottom:307.493333pt;}
.y4e{bottom:308.800000pt;}
.y99{bottom:309.253333pt;}
.y10c{bottom:309.760000pt;}
.y45{bottom:310.400000pt;}
.y115{bottom:310.813333pt;}
.yc5{bottom:313.600000pt;}
.y176{bottom:314.400000pt;}
.y198{bottom:316.386667pt;}
.y121{bottom:318.693333pt;}
.y148{bottom:319.200000pt;}
.y11d{bottom:319.333333pt;}
.y33{bottom:320.666667pt;}
.y9d{bottom:320.826667pt;}
.y106{bottom:321.026667pt;}
.ye2{bottom:321.306667pt;}
.y101{bottom:321.986667pt;}
.y118{bottom:322.213333pt;}
.ycf{bottom:322.306667pt;}
.y83{bottom:322.426667pt;}
.y12{bottom:322.693333pt;}
.y129{bottom:322.880000pt;}
.yd5{bottom:323.013333pt;}
.y126{bottom:323.333333pt;}
.y3e{bottom:323.613333pt;}
.yfe{bottom:323.840000pt;}
.ye1{bottom:324.346667pt;}
.y122{bottom:324.613333pt;}
.y16d{bottom:324.773333pt;}
.y114{bottom:324.893333pt;}
.yd1{bottom:326.533333pt;}
.yfa{bottom:326.693333pt;}
.y157{bottom:327.746667pt;}
.ybc{bottom:327.906667pt;}
.y22{bottom:328.573333pt;}
.y1dc{bottom:330.786667pt;}
.y98{bottom:331.653333pt;}
.yb7{bottom:332.133333pt;}
.y1e5{bottom:335.520000pt;}
.y197{bottom:335.613333pt;}
.y44{bottom:339.200000pt;}
.y175{bottom:340.000000pt;}
.yce{bottom:341.506667pt;}
.yd4{bottom:342.213333pt;}
.yc4{bottom:342.400000pt;}
.ye0{bottom:343.546667pt;}
.yd0{bottom:345.733333pt;}
.y147{bottom:348.000000pt;}
.yb6{bottom:348.933333pt;}
.ya{bottom:349.373333pt;}
.y32{bottom:349.506667pt;}
.ybb{bottom:350.306667pt;}
.y7{bottom:353.253333pt;}
.y82{bottom:354.426667pt;}
.y196{bottom:354.813333pt;}
.y8c{bottom:354.880000pt;}
.y156{bottom:356.546667pt;}
.y17e{bottom:357.026667pt;}
.y21{bottom:357.373333pt;}
.y9c{bottom:359.106667pt;}
.y4d{bottom:359.333333pt;}
.y1db{bottom:359.586667pt;}
.y13e{bottom:359.613333pt;}
.y136{bottom:359.933333pt;}
.y174{bottom:365.600000pt;}
.yb5{bottom:365.733333pt;}
.y1ba{bottom:367.746667pt;}
.y1e4{bottom:368.640000pt;}
.yc3{bottom:371.200000pt;}
.y43{bottom:372.000000pt;}
.yba{bottom:372.733333pt;}
.y9b{bottom:373.506667pt;}
.y56{bottom:373.986667pt;}
.y195{bottom:374.013333pt;}
.yf5{bottom:376.160000pt;}
.y146{bottom:376.826667pt;}
.y8b{bottom:377.280000pt;}
.yf9{bottom:377.626667pt;}
.yf7{bottom:377.693333pt;}
.y31{bottom:378.306667pt;}
.y1ca{bottom:379.973333pt;}
.y3d{bottom:381.253333pt;}
.y17d{bottom:382.626667pt;}
.y155{bottom:385.373333pt;}
.y20{bottom:386.173333pt;}
.y16c{bottom:386.333333pt;}
.ya5{bottom:386.426667pt;}
.y81{bottom:386.466667pt;}
.y9a{bottom:387.933333pt;}
.y11{bottom:388.293333pt;}
.y1da{bottom:388.386667pt;}
.y1b9{bottom:389.826667pt;}
.y173{bottom:391.200000pt;}
.y6{bottom:391.653333pt;}
.y135{bottom:391.933333pt;}
.y194{bottom:393.213333pt;}
.y7b{bottom:395.133333pt;}
.y1b2{bottom:396.413333pt;}
.y1bd{bottom:396.573333pt;}
.yf4{bottom:398.560000pt;}
.y4c{bottom:399.333333pt;}
.yc2{bottom:400.026667pt;}
.yf8{bottom:400.066667pt;}
.yf6{bottom:400.093333pt;}
.y165{bottom:403.333333pt;}
.y42{bottom:404.800000pt;}
.y1c9{bottom:405.600000pt;}
.y145{bottom:405.626667pt;}
.y17c{bottom:408.253333pt;}
.y16b{bottom:408.733333pt;}
.ya4{bottom:408.826667pt;}
.y1b8{bottom:411.906667pt;}
.y193{bottom:412.413333pt;}
.y154{bottom:414.173333pt;}
.y1f{bottom:414.973333pt;}
.y10{bottom:417.093333pt;}
.y1d9{bottom:417.213333pt;}
.y7a{bottom:417.253333pt;}
.ycd{bottom:417.533333pt;}
.y9{bottom:418.533333pt;}
.yac{bottom:418.786667pt;}
.y1b1{bottom:418.813333pt;}
.y1bc{bottom:422.173333pt;}
.y13d{bottom:423.013333pt;}
.y134{bottom:423.973333pt;}
.yc1{bottom:428.826667pt;}
.y5{bottom:429.920000pt;}
.y16a{bottom:431.133333pt;}
.y1c8{bottom:431.200000pt;}
.ya3{bottom:431.266667pt;}
.y12d{bottom:432.752411pt;}
.yab{bottom:433.186667pt;}
.y41{bottom:433.626667pt;}
.y187{bottom:436.480000pt;}
.y17a{bottom:438.213333pt;}
.y3c{bottom:438.853333pt;}
.y79{bottom:439.333333pt;}
.y4b{bottom:439.360000pt;}
.y153{bottom:442.973333pt;}
.y1cf{bottom:443.813333pt;}
.y30{bottom:443.906667pt;}
.yf{bottom:445.920000pt;}
.y1d8{bottom:446.013333pt;}
.y6a{bottom:446.333333pt;}
.yaa{bottom:447.586667pt;}
.y8a{bottom:450.266667pt;}
.y80{bottom:450.466667pt;}
.y1b7{bottom:450.973333pt;}
.y192{bottom:451.453333pt;}
.y133{bottom:455.973333pt;}
.yc0{bottom:457.626667pt;}
.y17b{bottom:459.453333pt;}
.y78{bottom:461.413333pt;}
.y144{bottom:463.226667pt;}
.y40{bottom:466.426667pt;}
.y69{bottom:468.453333pt;}
.y1e8{bottom:469.213333pt;}
.y152{bottom:471.773333pt;}
.y1ce{bottom:472.613333pt;}
.y2f{bottom:472.706667pt;}
.y1d7{bottom:474.813333pt;}
.y1e{bottom:480.613333pt;}
.y186{bottom:481.306667pt;}
.y7f{bottom:482.466667pt;}
.y8{bottom:487.653333pt;}
.y68{bottom:490.533333pt;}
.y143{bottom:492.026667pt;}
.y1e6{bottom:492.133333pt;}
.y169{bottom:492.826667pt;}
.y57{bottom:493.920000pt;}
.y3b{bottom:496.453333pt;}
.y1bb{bottom:498.560000pt;}
.y77{bottom:500.453333pt;}
.y18d{bottom:500.986667pt;}
.y1cd{bottom:501.413333pt;}
.y2e{bottom:501.533333pt;}
.y1d6{bottom:503.613333pt;}
.y4{bottom:506.880000pt;}
.y1d{bottom:509.413333pt;}
.ybf{bottom:510.946667pt;}
.ye{bottom:511.520000pt;}
.y166{bottom:512.293333pt;}
.y7e{bottom:514.466667pt;}
.y92{bottom:515.226667pt;}
.y8e{bottom:515.906667pt;}
.y90{bottom:516.733333pt;}
.y1e7{bottom:519.773333pt;}
.y185{bottom:526.106667pt;}
.ya2{bottom:529.120000pt;}
.y151{bottom:529.413333pt;}
.y67{bottom:529.573333pt;}
.y18c{bottom:529.786667pt;}
.y2d{bottom:530.333333pt;}
.y3f{bottom:532.026667pt;}
.y168{bottom:537.626667pt;}
.y1c{bottom:538.213333pt;}
.y190{bottom:539.266667pt;}
.yd{bottom:540.320000pt;}
.y91{bottom:540.826667pt;}
.y8d{bottom:541.506667pt;}
.y8f{bottom:542.333333pt;}
.y3{bottom:545.280000pt;}
.y7d{bottom:546.493333pt;}
.y167{bottom:547.293333pt;}
.ycc{bottom:554.586667pt;}
.y142{bottom:557.533333pt;}
.ya1{bottom:557.920000pt;}
.y150{bottom:558.213333pt;}
.y18b{bottom:558.626667pt;}
.y2c{bottom:559.133333pt;}
.yc{bottom:569.146667pt;}
.y184{bottom:570.906667pt;}
.y18f{bottom:572.413333pt;}
.y7c{bottom:578.493333pt;}
.y2{bottom:591.706667pt;}
.y162{bottom:602.306667pt;}
.y1cc{bottom:607.266667pt;}
.y5a{bottom:613.026667pt;}
.y3a{bottom:614.213333pt;}
.y2b{bottom:622.013333pt;}
.y1d5{bottom:625.280000pt;}
.y1e9{bottom:627.200000pt;}
.yf3{bottom:627.453333pt;}
.yb{bottom:630.493333pt;}
.y1b{bottom:631.266667pt;}
.y18e{bottom:633.346667pt;}
.y141{bottom:654.240000pt;}
.y1a{bottom:671.293333pt;}
.y183{bottom:695.906667pt;}
.y191{bottom:699.293333pt;}
.h28{height:19.958509pt;}
.h27{height:19.985120pt;}
.h6{height:36.562500pt;}
.h20{height:38.462187pt;}
.h24{height:38.577000pt;}
.h31{height:39.756357pt;}
.h1b{height:43.054688pt;}
.h1a{height:43.169500pt;}
.h1{height:44.015625pt;}
.h1c{height:50.517500pt;}
.h10{height:56.306250pt;}
.h15{height:56.402500pt;}
.h1f{height:57.037500pt;}
.h22{height:57.135000pt;}
.h13{height:57.406250pt;}
.h14{height:57.521062pt;}
.h2f{height:64.006250pt;}
.h19{height:64.102500pt;}
.h35{height:64.837500pt;}
.h36{height:64.935000pt;}
.h12{height:67.165312pt;}
.h11{height:67.280125pt;}
.h25{height:71.486250pt;}
.h37{height:72.187500pt;}
.ha{height:73.125000pt;}
.h18{height:76.350312pt;}
.h30{height:76.465125pt;}
.h34{height:77.426250pt;}
.he{height:78.054375pt;}
.hf{height:78.171750pt;}
.h2e{height:81.412500pt;}
.h1d{height:86.109375pt;}
.h1e{height:86.224187pt;}
.h9{height:88.031250pt;}
.h8{height:88.148625pt;}
.h16{height:95.868437pt;}
.h17{height:95.983250pt;}
.h2b{height:97.500000pt;}
.h38{height:97.687500pt;}
.h39{height:97.785188pt;}
.h2c{height:98.008125pt;}
.h2d{height:98.125500pt;}
.h7{height:101.400000pt;}
.hb{height:101.497500pt;}
.h3{height:117.375000pt;}
.h4{height:117.492375pt;}
.h23{height:123.432917pt;}
.h21{height:127.379583pt;}
.h26{height:135.719278pt;}
.h32{height:136.741875pt;}
.h33{height:136.859250pt;}
.hc{height:162.337500pt;}
.hd{height:162.435000pt;}
.h2a{height:178.912500pt;}
.h29{height:179.010000pt;}
.h5{height:195.000000pt;}
.h2{height:195.097500pt;}
.h0{height:720.000000pt;}
.w2{width:226.726391pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.687981pt;}
.xc4{left:8.347586pt;}
.x1e{left:14.047981pt;}
.x19{left:17.887981pt;}
.x59{left:23.199981pt;}
.x1b{left:25.119981pt;}
.x5a{left:29.439981pt;}
.x20{left:30.687981pt;}
.x1c{left:33.119981pt;}
.x2{left:34.143981pt;}
.x26{left:36.447981pt;}
.x1d{left:44.287981pt;}
.x1f{left:46.047981pt;}
.x22{left:48.447981pt;}
.xc5{left:49.983981pt;}
.xc{left:54.175981pt;}
.xc8{left:55.455981pt;}
.x3{left:58.239981pt;}
.xda{left:59.711981pt;}
.x5{left:63.967981pt;}
.xc6{left:67.711981pt;}
.x58{left:68.959981pt;}
.x57{left:70.783981pt;}
.x2d{left:72.447981pt;}
.x2c{left:74.847981pt;}
.x8e{left:76.447981pt;}
.x21{left:80.927981pt;}
.xc9{left:85.535981pt;}
.xe8{left:88.415981pt;}
.xdb{left:90.399981pt;}
.xc7{left:97.791981pt;}
.x6{left:99.967981pt;}
.xe5{left:104.255981pt;}
.x27{left:114.399981pt;}
.x24{left:115.583981pt;}
.x25{left:125.823981pt;}
.xe7{left:129.695981pt;}
.xca{left:133.466648pt;}
.xeb{left:135.973314pt;}
.xcb{left:141.946648pt;}
.xe6{left:144.413314pt;}
.xa8{left:151.906648pt;}
.xa7{left:152.866648pt;}
.x5b{left:154.373314pt;}
.xea{left:156.133314pt;}
.xa4{left:161.599981pt;}
.x5d{left:162.693314pt;}
.x5e{left:167.173314pt;}
.x5c{left:170.373314pt;}
.xec{left:199.226648pt;}
.x34{left:204.506648pt;}
.x32{left:206.106648pt;}
.x33{left:224.826648pt;}
.xe9{left:231.013314pt;}
.xa9{left:234.426648pt;}
.xa2{left:238.746648pt;}
.xa3{left:246.746648pt;}
.x5f{left:260.453314pt;}
.x62{left:265.253314pt;}
.x61{left:267.973314pt;}
.x60{left:272.453314pt;}
.x63{left:275.973314pt;}
.xaa{left:300.826648pt;}
.xab{left:309.626648pt;}
.x39{left:311.746648pt;}
.x37{left:315.106648pt;}
.xa5{left:323.906648pt;}
.x38{left:325.026648pt;}
.xa6{left:331.906648pt;}
.x67{left:355.133314pt;}
.xe3{left:357.413314pt;}
.x64{left:362.173314pt;}
.x66{left:368.413314pt;}
.x65{left:375.653314pt;}
.xe2{left:376.959981pt;}
.x8d{left:389.626648pt;}
.xae{left:399.653314pt;}
.xac{left:402.693314pt;}
.xad{left:407.173314pt;}
.x97{left:409.053314pt;}
.xed{left:411.066648pt;}
.x98{left:417.053314pt;}
.x2f{left:440.133314pt;}
.x2e{left:448.453314pt;}
.x6b{left:450.813314pt;}
.x6a{left:452.413314pt;}
.x6c{left:454.973314pt;}
.x28{left:456.159981pt;}
.x68{left:466.653314pt;}
.x69{left:470.973314pt;}
.xaf{left:482.813314pt;}
.xb0{left:483.773314pt;}
.xb1{left:485.053314pt;}
.x8c{left:490.653314pt;}
.xdc{left:492.506648pt;}
.x99{left:494.173314pt;}
.xe1{left:495.333314pt;}
.x29{left:500.319981pt;}
.x9a{left:502.173314pt;}
.xe4{left:504.253314pt;}
.x8b{left:505.693314pt;}
.x3b{left:524.159981pt;}
.xcd{left:538.653314pt;}
.x9{left:541.186648pt;}
.xcc{left:545.119981pt;}
.x71{left:556.639981pt;}
.x6d{left:563.359981pt;}
.x35{left:567.586648pt;}
.x70{left:568.479981pt;}
.x6f{left:571.679981pt;}
.x6e{left:576.159981pt;}
.xb3{left:577.053314pt;}
.x95{left:579.333314pt;}
.xb2{left:582.493314pt;}
.x72{left:585.439981pt;}
.x96{left:587.333314pt;}
.x36{left:590.306648pt;}
.x89{left:594.653314pt;}
.x8a{left:604.733314pt;}
.x8{left:614.306648pt;}
.x17{left:615.359981pt;}
.xb{left:621.346648pt;}
.x16{left:631.679981pt;}
.xb6{left:636.893314pt;}
.xb4{left:640.893314pt;}
.x15{left:643.199981pt;}
.xd{left:649.666648pt;}
.x73{left:652.026648pt;}
.xb5{left:653.213314pt;}
.x75{left:654.426648pt;}
.x77{left:661.786648pt;}
.x9b{left:664.479981pt;}
.x74{left:672.826648pt;}
.x78{left:676.826648pt;}
.x76{left:686.586648pt;}
.xdf{left:688.573314pt;}
.x18{left:692.799981pt;}
.x88{left:705.213314pt;}
.xde{left:709.693314pt;}
.xdd{left:725.693314pt;}
.xe0{left:726.813314pt;}
.xb8{left:732.226648pt;}
.xb7{left:741.506648pt;}
.x93{left:749.626648pt;}
.xb9{left:753.506648pt;}
.x94{left:757.626648pt;}
.x79{left:761.786648pt;}
.xa{left:763.813314pt;}
.x7c{left:766.106648pt;}
.xd9{left:768.706648pt;}
.xd7{left:773.986648pt;}
.x7a{left:780.346648pt;}
.x7b{left:785.146648pt;}
.xd8{left:797.186648pt;}
.xd6{left:798.373314pt;}
.x87{left:805.093314pt;}
.x86{left:811.813314pt;}
.xba{left:822.213314pt;}
.xd4{left:832.133314pt;}
.x9c{left:834.786648pt;}
.xd5{left:838.853314pt;}
.x41{left:841.506648pt;}
.x9d{left:842.786648pt;}
.x42{left:845.506648pt;}
.xcf{left:849.373314pt;}
.x56{left:852.733314pt;}
.x43{left:861.186648pt;}
.x7d{left:863.386648pt;}
.x30{left:874.013314pt;}
.x40{left:874.973314pt;}
.x2b{left:876.026648pt;}
.xd0{left:878.173314pt;}
.x7e{left:880.186648pt;}
.x3e{left:883.933314pt;}
.x3f{left:891.133314pt;}
.x85{left:892.706648pt;}
.xd3{left:900.479981pt;}
.x2a{left:909.946648pt;}
.xd1{left:915.453314pt;}
.xce{left:916.733314pt;}
.x9e{left:919.933314pt;}
.xbc{left:921.213314pt;}
.xbb{left:924.253314pt;}
.x9f{left:927.933314pt;}
.x53{left:932.666648pt;}
.x31{left:943.613314pt;}
.x23{left:948.666648pt;}
.x4b{left:951.613314pt;}
.x49{left:954.013314pt;}
.x55{left:957.946648pt;}
.x4a{left:959.933314pt;}
.x4c{left:964.573314pt;}
.x7f{left:968.319981pt;}
.x52{left:969.946648pt;}
.x54{left:973.466648pt;}
.x3a{left:985.346648pt;}
.xbd{left:987.706648pt;}
.x11{left:990.239981pt;}
.x47{left:1002.493314pt;}
.x45{left:1004.893314pt;}
.xf{left:1007.999981pt;}
.xbe{left:1009.466648pt;}
.x46{left:1010.813314pt;}
.x91{left:1013.213314pt;}
.x10{left:1014.106648pt;}
.x48{left:1015.453314pt;}
.x92{left:1021.213314pt;}
.x12{left:1023.866648pt;}
.x44{left:1025.666648pt;}
.xe{left:1035.933314pt;}
.x14{left:1045.506648pt;}
.x13{left:1059.266648pt;}
.x80{left:1063.839981pt;}
.x81{left:1065.119981pt;}
.x4e{left:1069.413314pt;}
.x4d{left:1072.933314pt;}
.x51{left:1079.226648pt;}
.x50{left:1080.506648pt;}
.x4f{left:1090.693314pt;}
.xc0{left:1093.666648pt;}
.xbf{left:1094.626648pt;}
.xa0{left:1096.866648pt;}
.xa1{left:1104.866648pt;}
.xd2{left:1106.013314pt;}
.x7{left:1109.253314pt;}
.x1{left:1122.786648pt;}
.x4{left:1125.186648pt;}
.x3c{left:1151.679981pt;}
.xc2{left:1158.533314pt;}
.x83{left:1162.973314pt;}
.x3d{left:1164.479981pt;}
.x84{left:1169.693314pt;}
.xc3{left:1173.253314pt;}
.x82{left:1177.533314pt;}
.x8f{left:1180.186648pt;}
.xc1{left:1183.813314pt;}
.x90{left:1188.186648pt;}
}




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