
    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_0cb8f22e5b4aa5fa20b4dee1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f74b7577dcd71918d61b3c0b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_ca0a8c5d7ec85b29e69bbc67.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_dba7bc040addbfb10f5281a7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_05ec3d0bf521e56e9d278c51.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_864c08f3592c3e36e2279d2e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.674316;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_a8fc347d7d1b44d3f5a7521b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.674316;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_3898d688f61caa6676c1d9a1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_a14a542f55c078b10ff4a770.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_5a390dbc19cd27b8c1b5ca98.woff')format("woff");}.ffa{font-family:ffa;line-height:0.730957;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_b02bbdc3d80fcd4826a9ec4b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_d5d2c0683dea654a92804589.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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_725f7b0f9d0e4b1b3f088b5a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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:ffe;src:url('chunks/assets/font_8e481c827e4ce13f4b3a0840.woff')format("woff");}.ffe{font-family:ffe;line-height:1.075684;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:fff;src:url('chunks/assets/font_4572e6fd1e3c3edde41f644e.woff')format("woff");}.fff{font-family:fff;line-height:1.125000;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:ff10;src:url('chunks/assets/font_55a9f843abc57b07ff4f30e2.woff')format("woff");}.ff10{font-family:ff10;line-height:1.075684;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:ff11;src:url('chunks/assets/font_4ff514c42fee45ecc0a44e8e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.081000;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:ff12;src:url('chunks/assets/font_7d93d2c9ff47fef309c62fef.woff')format("woff");}.ff12{font-family:ff12;line-height:1.104000;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:ff13;src:url('chunks/assets/font_1520d019107a4add1fefcd86.woff')format("woff");}.ff13{font-family:ff13;line-height:1.069336;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:ff14;src:url('chunks/assets/font_cc621a425d9fd6946f72e171.woff')format("woff");}.ff14{font-family:ff14;line-height:0.789000;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:ff15;src:url('chunks/assets/font_15ebbd0b01d4a662fe46ad1d.woff')format("woff");}.ff15{font-family:ff15;line-height:1.081000;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:ff16;src:url('chunks/assets/font_99eb1a22b57cd8653f996ccf.woff')format("woff");}.ff16{font-family:ff16;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e170fa56114e76e17dd362f9.woff')format("woff");}.ff17{font-family:ff17;line-height:0.853027;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:ff18;src:url('chunks/assets/font_6f001cd7c959e50f8375d0d8.woff')format("woff");}.ff18{font-family:ff18;line-height:0.752441;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:ff19;src:url('chunks/assets/font_2cc813b967d507577e573bf7.woff')format("woff");}.ff19{font-family:ff19;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_bc55d42c76f75f7cbe9a4c61.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_0c6d7d95bd3f9e5f407dbf9a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.959961;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:ff1c;src:url('chunks/assets/font_1198a37fa7cae9d4086a4de2.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.928223;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;}
.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);}
.v6{vertical-align:-157.380000px;}
.v5{vertical-align:-88.680000px;}
.v7{vertical-align:-68.760000px;}
.v3{vertical-align:-53.640000px;}
.v2{vertical-align:-34.440000px;}
.v1{vertical-align:-26.100000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:43.080000px;}
.ls54{letter-spacing:-5.250000px;}
.ls32{letter-spacing:-2.538000px;}
.ls34{letter-spacing:-2.454000px;}
.ls29{letter-spacing:-2.106000px;}
.ls2a{letter-spacing:-2.028000px;}
.ls28{letter-spacing:-1.956000px;}
.ls2b{letter-spacing:-1.878000px;}
.ls23{letter-spacing:-1.638000px;}
.ls33{letter-spacing:-1.596000px;}
.ls22{letter-spacing:-1.548000px;}
.ls35{letter-spacing:-1.512000px;}
.ls25{letter-spacing:-1.488000px;}
.ls24{letter-spacing:-1.476000px;}
.ls26{letter-spacing:-1.398000px;}
.lsd{letter-spacing:-1.086000px;}
.ls4a{letter-spacing:-0.978000px;}
.lse{letter-spacing:-0.936000px;}
.ls41{letter-spacing:-0.684000px;}
.ls55{letter-spacing:-0.440400px;}
.ls42{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.012000px;}
.ls1e{letter-spacing:0.044400px;}
.ls49{letter-spacing:0.074400px;}
.ls3f{letter-spacing:0.141300px;}
.ls1c{letter-spacing:0.162300px;}
.ls17{letter-spacing:0.192300px;}
.ls16{letter-spacing:0.204000px;}
.ls39{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.222300px;}
.ls14{letter-spacing:0.234000px;}
.ls15{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.376800px;}
.ls1a{letter-spacing:0.384600px;}
.ls6{letter-spacing:0.388800px;}
.ls18{letter-spacing:0.468000px;}
.ls3b{letter-spacing:0.532800px;}
.ls1d{letter-spacing:0.618000px;}
.ls19{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.954000px;}
.ls1{letter-spacing:1.116000px;}
.ls31{letter-spacing:1.278000px;}
.ls40{letter-spacing:1.380000px;}
.ls2c{letter-spacing:1.506000px;}
.ls44{letter-spacing:1.656000px;}
.ls43{letter-spacing:1.872000px;}
.ls2d{letter-spacing:2.196000px;}
.ls21{letter-spacing:2.442000px;}
.ls20{letter-spacing:2.484000px;}
.ls37{letter-spacing:26.418300px;}
.ls3e{letter-spacing:30.936300px;}
.lsa{letter-spacing:32.433300px;}
.ls2f{letter-spacing:32.493300px;}
.ls52{letter-spacing:39.681750px;}
.ls4d{letter-spacing:39.750000px;}
.ls51{letter-spacing:39.801750px;}
.ls27{letter-spacing:45.892500px;}
.ls9{letter-spacing:47.664900px;}
.ls53{letter-spacing:48.818100px;}
.ls48{letter-spacing:64.172400px;}
.ls3a{letter-spacing:84.547500px;}
.lsc{letter-spacing:84.675000px;}
.lsb{letter-spacing:84.727500px;}
.ls13{letter-spacing:90.333300px;}
.ls46{letter-spacing:94.170000px;}
.ls47{letter-spacing:94.222500px;}
.ls45{letter-spacing:94.290000px;}
.ls4b{letter-spacing:103.620000px;}
.ls4c{letter-spacing:103.672500px;}
.ls4f{letter-spacing:103.770000px;}
.ls36{letter-spacing:103.792500px;}
.ls4e{letter-spacing:103.822500px;}
.ls4{letter-spacing:111.495000px;}
.ls38{letter-spacing:111.517500px;}
.ls3{letter-spacing:111.547500px;}
.ls30{letter-spacing:111.615000px;}
.ls2e{letter-spacing:111.667500px;}
.ls3c{letter-spacing:111.697500px;}
.ls7{letter-spacing:111.727500px;}
.ls10{letter-spacing:157.740000px;}
.lsf{letter-spacing:157.792500px;}
.ls12{letter-spacing:157.800000px;}
.ls50{letter-spacing:157.822500px;}
.ls11{letter-spacing:157.852500px;}
.ls3d{letter-spacing:433.121400px;}
.ls5{letter-spacing:433.197450px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(70,70,70),0 0.015em rgb(70,70,70),0.015em 0 rgb(70,70,70),0 -0.015em  rgb(70,70,70);}
.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(70,70,70);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d{word-spacing:-133.982100px;}
.ws24{word-spacing:-85.650000px;}
.ws3a{word-spacing:-73.325700px;}
.ws18{word-spacing:-65.189700px;}
.ws2c{word-spacing:-65.155800px;}
.ws1d{word-spacing:-47.107500px;}
.ws1e{word-spacing:-47.025000px;}
.ws1a{word-spacing:-45.151500px;}
.ws29{word-spacing:-45.147000px;}
.ws1c{word-spacing:-45.001500px;}
.ws1f{word-spacing:-44.997000px;}
.ws2{word-spacing:-43.798800px;}
.ws1{word-spacing:-43.764900px;}
.wsf{word-spacing:-42.048000px;}
.ws12{word-spacing:-40.392000px;}
.ws2d{word-spacing:-37.696800px;}
.ws9{word-spacing:-37.662900px;}
.ws41{word-spacing:-33.110700px;}
.ws17{word-spacing:-32.611800px;}
.ws5{word-spacing:-32.577900px;}
.ws42{word-spacing:-30.906900px;}
.ws43{word-spacing:-29.526900px;}
.ws3f{word-spacing:-27.492900px;}
.ws4a{word-spacing:-26.514900px;}
.ws3b{word-spacing:-26.475900px;}
.ws44{word-spacing:-26.313900px;}
.ws45{word-spacing:-26.097900px;}
.ws46{word-spacing:-25.947900px;}
.ws2e{word-spacing:-24.441900px;}
.ws4c{word-spacing:-23.662500px;}
.ws3{word-spacing:-23.391000px;}
.ws4b{word-spacing:-23.222100px;}
.wsb{word-spacing:-22.500000px;}
.wsd{word-spacing:-20.634000px;}
.ws11{word-spacing:-20.484000px;}
.ws13{word-spacing:-20.442300px;}
.wsc{word-spacing:-20.057700px;}
.wsa{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.356900px;}
.ws16{word-spacing:-18.618000px;}
.ws15{word-spacing:-18.569700px;}
.ws14{word-spacing:-18.540000px;}
.wse{word-spacing:-18.468000px;}
.ws10{word-spacing:-18.419700px;}
.ws3e{word-spacing:-18.189150px;}
.ws3d{word-spacing:-17.296500px;}
.ws3c{word-spacing:-17.247150px;}
.ws34{word-spacing:-6.112500px;}
.ws33{word-spacing:-4.100700px;}
.ws31{word-spacing:-3.980700px;}
.ws21{word-spacing:-3.240000px;}
.ws28{word-spacing:-2.481300px;}
.ws2a{word-spacing:-2.421300px;}
.ws36{word-spacing:-2.316900px;}
.ws26{word-spacing:-2.262000px;}
.ws2f{word-spacing:-1.290000px;}
.ws22{word-spacing:-1.050000px;}
.ws6{word-spacing:-1.005600px;}
.ws7{word-spacing:-0.905850px;}
.ws23{word-spacing:-0.887550px;}
.ws30{word-spacing:-0.842400px;}
.ws38{word-spacing:-0.821100px;}
.ws47{word-spacing:-0.596700px;}
.ws39{word-spacing:-0.392400px;}
.ws8{word-spacing:-0.144600px;}
.ws19{word-spacing:-0.108150px;}
.ws0{word-spacing:0.000000px;}
.ws49{word-spacing:0.164100px;}
.ws25{word-spacing:0.228000px;}
.ws20{word-spacing:0.586200px;}
.ws1b{word-spacing:0.646200px;}
.ws35{word-spacing:1.049400px;}
.ws37{word-spacing:1.109400px;}
.ws32{word-spacing:1.887450px;}
.ws48{word-spacing:1.909350px;}
.ws2b{word-spacing:2.433300px;}
.ws40{word-spacing:2.475000px;}
.ws27{word-spacing:4.675500px;}
._17{margin-left:-31.469550px;}
._14{margin-left:-25.983150px;}
._18{margin-left:-18.066750px;}
._f{margin-left:-15.856500px;}
._16{margin-left:-14.170500px;}
._1c{margin-left:-12.829350px;}
._15{margin-left:-11.676150px;}
._9{margin-left:-10.192200px;}
._a{margin-left:-8.743950px;}
._6{margin-left:-7.137900px;}
._7{margin-left:-6.038850px;}
._3{margin-left:-4.866750px;}
._8{margin-left:-3.809700px;}
._4{margin-left:-2.595600px;}
._1{margin-left:-1.297800px;}
._0{width:1.297800px;}
._2{width:2.920050px;}
._5{width:4.542300px;}
._11{width:6.334200px;}
._e{width:7.343400px;}
._1f{width:14.408850px;}
._1b{width:17.419800px;}
._19{width:23.118900px;}
._b{width:24.910950px;}
._c{width:25.950300px;}
._1a{width:27.483900px;}
._d{width:28.799850px;}
._13{width:31.079850px;}
._12{width:402.486150px;}
._1d{width:436.251000px;}
._1e{width:439.053600px;}
._10{width:1615.806300px;}
.fc18{color:rgb(68,114,196);}
.fc15{color:rgb(197,90,17);}
.fc14{color:rgb(0,176,240);}
.fc13{color:rgb(192,0,0);}
.fc17{color:rgb(193,0,82);}
.fc12{color:rgb(139,38,201);}
.fc11{color:rgb(176,87,72);}
.fc10{color:rgb(153,51,0);}
.fc1{color:rgb(89,89,89);}
.fcf{color:rgb(255,128,64);}
.fc3{color:rgb(127,127,127);}
.fc4{color:rgb(70,70,70);}
.fce{color:rgb(0,153,204);}
.fc6{color:rgb(255,255,255);}
.fc7{color:rgb(0,0,0);}
.fcb{color:rgb(0,176,80);}
.fc2{color:rgb(118,113,113);}
.fc9{color:transparent;}
.fcd{color:rgb(245,132,76);}
.fc5{color:rgb(47,85,151);}
.fc16{color:rgb(84,130,53);}
.fc8{color:rgb(255,0,0);}
.fca{color:rgb(132,60,12);}
.fc0{color:rgb(3,3,3);}
.fcc{color:rgb(0,0,150);}
.fs18{font-size:40.500000px;}
.fs11{font-size:72.000000px;}
.fs7{font-size:72.150000px;}
.fsd{font-size:85.500000px;}
.fsc{font-size:85.650000px;}
.fs1e{font-size:94.500000px;}
.fs1d{font-size:94.650000px;}
.fsb{font-size:103.500000px;}
.fs19{font-size:108.000000px;}
.fs15{font-size:108.150000px;}
.fs16{font-size:117.150000px;}
.fs20{font-size:121.500000px;}
.fs3{font-size:121.650000px;}
.fs1a{font-size:130.650000px;}
.fse{font-size:139.650000px;}
.fs1b{font-size:139.800000px;}
.fs8{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fs5{font-size:166.650000px;}
.fs2{font-size:166.800000px;}
.fs4{font-size:193.650000px;}
.fs6{font-size:193.800000px;}
.fs14{font-size:216.150000px;}
.fs13{font-size:234.300000px;}
.fsf{font-size:238.800000px;}
.fs12{font-size:265.950000px;}
.fsa{font-size:288.300000px;}
.fs10{font-size:288.450000px;}
.fs1c{font-size:310.800000px;}
.fs1{font-size:324.300000px;}
.fs0{font-size:324.450000px;}
.fs17{font-size:396.450000px;}
.fs1f{font-size:481.950000px;}
.y1d5{bottom:-65.812500px;}
.y4b{bottom:-53.287500px;}
.y1d4{bottom:-23.025000px;}
.y0{bottom:0.000000px;}
.y27{bottom:6.787500px;}
.y12c{bottom:7.275000px;}
.y13f{bottom:8.700000px;}
.y10{bottom:11.287500px;}
.y2f{bottom:17.812500px;}
.y1d3{bottom:20.887500px;}
.y1d8{bottom:22.237500px;}
.y94{bottom:27.075000px;}
.y104{bottom:29.212500px;}
.y77{bottom:44.925000px;}
.y49{bottom:45.262500px;}
.y93{bottom:48.487500px;}
.y2e{bottom:54.975000px;}
.ydb{bottom:58.087500px;}
.y1d2{bottom:63.712500px;}
.y103{bottom:65.250000px;}
.y9e{bottom:66.037500px;}
.y1d7{bottom:67.312500px;}
.ycf{bottom:68.287500px;}
.y13e{bottom:69.637500px;}
.y92{bottom:69.900000px;}
.y1ba{bottom:71.250000px;}
.ye7{bottom:80.250000px;}
.y16c{bottom:80.587500px;}
.y1b1{bottom:82.537500px;}
.ya1{bottom:82.950000px;}
.y195{bottom:85.612500px;}
.y48{bottom:86.925000px;}
.y91{bottom:91.275000px;}
.y2d{bottom:93.262500px;}
.y76{bottom:93.337500px;}
.yba{bottom:96.712500px;}
.y1d1{bottom:106.500000px;}
.y13d{bottom:106.800000px;}
.y9d{bottom:108.862500px;}
.y15f{bottom:110.062500px;}
.y90{bottom:112.687500px;}
.y101{bottom:115.912500px;}
.yce{bottom:117.862500px;}
.ya0{bottom:120.112500px;}
.yda{bottom:121.087500px;}
.yb9{bottom:121.500000px;}
.y60{bottom:129.562500px;}
.y47{bottom:130.875000px;}
.y151{bottom:131.137500px;}
.y1b0{bottom:132.075000px;}
.y4c{bottom:133.950000px;}
.y8f{bottom:135.225000px;}
.y148{bottom:135.450000px;}
.y16b{bottom:136.912500px;}
.yf{bottom:141.600000px;}
.y25{bottom:142.200000px;}
.y13c{bottom:143.962500px;}
.y75{bottom:144.037500px;}
.y18d{bottom:145.237500px;}
.yb8{bottom:146.287500px;}
.y1b9{bottom:146.737500px;}
.y15e{bottom:148.350000px;}
.yfe{bottom:150.000000px;}
.y1d0{bottom:150.420000px;}
.y9c{bottom:151.650000px;}
.y1db{bottom:152.805000px;}
.y100{bottom:153.075000px;}
.y8e{bottom:156.600000px;}
.y9f{bottom:157.275000px;}
.y7d{bottom:160.275000px;}
.y194{bottom:161.055000px;}
.y2c{bottom:167.580000px;}
.y150{bottom:168.300000px;}
.ycd{bottom:169.755000px;}
.yb7{bottom:172.200000px;}
.y46{bottom:173.655000px;}
.y12b{bottom:173.925000px;}
.y112{bottom:177.975000px;}
.y8d{bottom:178.005000px;}
.y147{bottom:178.275000px;}
.y69{bottom:178.620000px;}
.y13b{bottom:182.250000px;}
.y5f{bottom:182.505000px;}
.y1a5{bottom:182.550000px;}
.y1af{bottom:182.775000px;}
.y1da{bottom:187.725000px;}
.y15d{bottom:187.800000px;}
.ye{bottom:191.130000px;}
.y1cf{bottom:193.245000px;}
.yd9{bottom:193.995000px;}
.y74{bottom:194.745000px;}
.y177{bottom:195.150000px;}
.y18c{bottom:195.975000px;}
.yb6{bottom:196.995000px;}
.y8c{bottom:199.425000px;}
.y11b{bottom:199.620000px;}
.yfd{bottom:201.870000px;}
.y3d{bottom:203.250000px;}
.y119{bottom:203.295000px;}
.y111{bottom:203.880000px;}
.y16a{bottom:204.480000px;}
.y8{bottom:204.705000px;}
.yff{bottom:204.975000px;}
.y2b{bottom:205.905000px;}
.y9b{bottom:210.300000px;}
.y185{bottom:211.230000px;}
.y24{bottom:214.275000px;}
.ye6{bottom:214.950000px;}
.y12a{bottom:216.750000px;}
.y45{bottom:217.620000px;}
.y13a{bottom:219.405000px;}
.y8b{bottom:220.800000px;}
.y146{bottom:221.070000px;}
.y6d{bottom:221.400000px;}
.y1b8{bottom:222.195000px;}
.y68{bottom:222.525000px;}
.yb5{bottom:222.870000px;}
.y1d9{bottom:223.770000px;}
.y17e{bottom:224.220000px;}
.y110{bottom:227.550000px;}
.y15c{bottom:228.330000px;}
.yeb{bottom:229.800000px;}
.y1a4{bottom:232.080000px;}
.y176{bottom:233.445000px;}
.y5e{bottom:234.345000px;}
.y193{bottom:236.550000px;}
.y1ce{bottom:237.150000px;}
.y3c{bottom:239.280000px;}
.y7{bottom:240.750000px;}
.y7c{bottom:241.380000px;}
.yd{bottom:241.830000px;}
.y11a{bottom:242.400000px;}
.y8a{bottom:243.345000px;}
.yd8{bottom:243.450000px;}
.y73{bottom:245.400000px;}
.y118{bottom:246.075000px;}
.yb4{bottom:247.650000px;}
.y82{bottom:252.525000px;}
.ycc{bottom:253.050000px;}
.y1a2{bottom:253.245000px;}
.ye5{bottom:257.775000px;}
.y129{bottom:259.530000px;}
.y44{bottom:260.400000px;}
.y169{bottom:261.945000px;}
.y184{bottom:262.350000px;}
.y6c{bottom:264.225000px;}
.y89{bottom:264.750000px;}
.y67{bottom:265.350000px;}
.y178{bottom:269.475000px;}
.y14f{bottom:269.745000px;}
.y175{bottom:270.600000px;}
.y159{bottom:270.870000px;}
.yc3{bottom:271.350000px;}
.yb3{bottom:272.445000px;}
.y17d{bottom:276.075000px;}
.y6{bottom:276.825000px;}
.y3b{bottom:277.575000px;}
.yfc{bottom:278.145000px;}
.y1cd{bottom:279.945000px;}
.yea{bottom:281.700000px;}
.y15b{bottom:283.845000px;}
.y1ae{bottom:284.130000px;}
.y7b{bottom:284.175000px;}
.y7e{bottom:285.300000px;}
.y137{bottom:285.975000px;}
.y5d{bottom:286.125000px;}
.y23{bottom:286.350000px;}
.yec{bottom:291.120000px;}
.y72{bottom:296.100000px;}
.yb2{bottom:298.350000px;}
.yd7{bottom:298.620000px;}
.y1b7{bottom:298.755000px;}
.y15a{bottom:301.005000px;}
.y1a3{bottom:301.170000px;}
.ycb{bottom:302.580000px;}
.y1a1{bottom:302.775000px;}
.y117{bottom:304.725000px;}
.yc2{bottom:307.380000px;}
.y88{bottom:307.530000px;}
.y6b{bottom:308.145000px;}
.y66{bottom:309.255000px;}
.y183{bottom:309.480000px;}
.y158{bottom:310.275000px;}
.y192{bottom:312.000000px;}
.y1d6{bottom:312.975000px;}
.y3a{bottom:314.745000px;}
.yfb{bottom:315.300000px;}
.yc{bottom:315.495000px;}
.y81{bottom:317.850000px;}
.y14c{bottom:319.275000px;}
.y145{bottom:320.850000px;}
.y174{bottom:322.500000px;}
.y1cc{bottom:322.755000px;}
.yb1{bottom:323.100000px;}
.y168{bottom:328.395000px;}
.y136{bottom:328.770000px;}
.y87{bottom:328.950000px;}
.y1ad{bottom:333.675000px;}
.y18b{bottom:333.750000px;}
.y5c{bottom:339.075000px;}
.y5{bottom:341.025000px;}
.ye4{bottom:344.475000px;}
.yb0{bottom:349.020000px;}
.y128{bottom:349.800000px;}
.yf8{bottom:350.520000px;}
.y157{bottom:350.820000px;}
.y6a{bottom:350.925000px;}
.y86{bottom:351.480000px;}
.y65{bottom:352.050000px;}
.yfa{bottom:352.470000px;}
.y1a0{bottom:353.475000px;}
.yca{bottom:354.495000px;}
.y43{bottom:354.570000px;}
.yd6{bottom:355.425000px;}
.ye9{bottom:356.925000px;}
.y22{bottom:358.425000px;}
.yc1{bottom:360.420000px;}
.y37{bottom:361.755000px;}
.y144{bottom:364.755000px;}
.y139{bottom:365.100000px;}
.y1cb{bottom:366.675000px;}
.y17c{bottom:367.500000px;}
.y39{bottom:367.755000px;}
.y14b{bottom:368.850000px;}
.y14e{bottom:369.975000px;}
.y38{bottom:372.525000px;}
.y7a{bottom:372.870000px;}
.y9a{bottom:373.200000px;}
.yaf{bottom:373.800000px;}
.y19d{bottom:374.595000px;}
.y1a{bottom:374.880000px;}
.ya4{bottom:376.800000px;}
.y135{bottom:380.670000px;}
.y1ac{bottom:384.375000px;}
.y18a{bottom:384.495000px;}
.y167{bottom:385.845000px;}
.ye3{bottom:387.300000px;}
.y191{bottom:387.450000px;}
.y1c1{bottom:388.380000px;}
.y5b{bottom:390.900000px;}
.y127{bottom:393.705000px;}
.y85{bottom:394.275000px;}
.y42{bottom:396.225000px;}
.y71{bottom:396.345000px;}
.yae{bottom:398.595000px;}
.y36{bottom:400.050000px;}
.yf7{bottom:402.375000px;}
.y19f{bottom:405.345000px;}
.yf9{bottom:405.480000px;}
.y143{bottom:407.580000px;}
.y1ca{bottom:409.470000px;}
.y156{bottom:411.630000px;}
.y99{bottom:414.870000px;}
.y84{bottom:415.650000px;}
.y138{bottom:415.830000px;}
.y4{bottom:417.675000px;}
.yd5{bottom:418.905000px;}
.y17b{bottom:419.370000px;}
.y14a{bottom:419.520000px;}
.y14d{bottom:420.675000px;}
.y19e{bottom:422.550000px;}
.y19{bottom:424.455000px;}
.yad{bottom:424.500000px;}
.y19c{bottom:425.280000px;}
.yf1{bottom:426.120000px;}
.y122{bottom:429.570000px;}
.y64{bottom:430.425000px;}
.ye2{bottom:431.205000px;}
.y26{bottom:432.195000px;}
.y171{bottom:434.670000px;}
.y1ab{bottom:435.075000px;}
.y126{bottom:436.500000px;}
.y83{bottom:437.070000px;}
.y35{bottom:437.220000px;}
.y41{bottom:440.175000px;}
.y5a{bottom:443.820000px;}
.y70{bottom:447.000000px;}
.yac{bottom:449.250000px;}
.y1b6{bottom:449.700000px;}
.y155{bottom:451.050000px;}
.y166{bottom:452.280000px;}
.y1c0{bottom:452.595000px;}
.y79{bottom:453.270000px;}
.y21{bottom:456.330000px;}
.y1f{bottom:458.520000px;}
.y98{bottom:458.775000px;}
.y190{bottom:464.070000px;}
.y121{bottom:466.770000px;}
.yc9{bottom:471.405000px;}
.y173{bottom:471.870000px;}
.ybf{bottom:472.245000px;}
.y170{bottom:472.980000px;}
.ye1{bottom:474.000000px;}
.y18{bottom:475.170000px;}
.y19b{bottom:475.950000px;}
.y142{bottom:478.155000px;}
.y125{bottom:480.450000px;}
.y40{bottom:482.970000px;}
.y3{bottom:490.875000px;}
.y154{bottom:491.580000px;}
.y59{bottom:495.645000px;}
.yd4{bottom:495.720000px;}
.y63{bottom:495.975000px;}
.y10f{bottom:497.250000px;}
.y6f{bottom:497.700000px;}
.y182{bottom:498.825000px;}
.yab{bottom:499.950000px;}
.y97{bottom:501.600000px;}
.y34{bottom:502.530000px;}
.y1e{bottom:508.830000px;}
.y172{bottom:509.025000px;}
.y16f{bottom:510.150000px;}
.y20{bottom:510.255000px;}
.ybe{bottom:510.525000px;}
.y165{bottom:510.870000px;}
.y116{bottom:513.450000px;}
.ye0{bottom:516.825000px;}
.y1bf{bottom:517.905000px;}
.yf0{bottom:518.580000px;}
.yc8{bottom:520.995000px;}
.y10e{bottom:523.125000px;}
.y124{bottom:523.245000px;}
.yaa{bottom:524.745000px;}
.y1b5{bottom:525.150000px;}
.y17{bottom:525.825000px;}
.y80{bottom:529.080000px;}
.y189{bottom:532.620000px;}
.y1aa{bottom:536.445000px;}
.yd3{bottom:539.400000px;}
.y33{bottom:539.700000px;}
.y131{bottom:544.980000px;}
.y153{bottom:546.000000px;}
.yc0{bottom:546.570000px;}
.y14{bottom:546.900000px;}
.y58{bottom:547.425000px;}
.ybd{bottom:547.695000px;}
.y10d{bottom:547.905000px;}
.y181{bottom:548.400000px;}
.y120{bottom:548.655000px;}
.y17a{bottom:548.970000px;}
.ya9{bottom:550.650000px;}
.yf4{bottom:551.025000px;}
.yb{bottom:551.475000px;}
.y10a{bottom:551.850000px;}
.yf6{bottom:554.130000px;}
.y107{bottom:554.445000px;}
.yef{bottom:555.750000px;}
.y96{bottom:560.220000px;}
.y16e{bottom:562.020000px;}
.y152{bottom:563.175000px;}
.y141{bottom:563.775000px;}
.y115{bottom:564.150000px;}
.y2{bottom:565.200000px;}
.y19a{bottom:566.070000px;}
.y188{bottom:569.820000px;}
.y10c{bottom:572.700000px;}
.yc7{bottom:572.850000px;}
.y18f{bottom:573.825000px;}
.ya8{bottom:575.400000px;}
.y32{bottom:576.900000px;}
.y109{bottom:577.755000px;}
.y106{bottom:579.225000px;}
.y164{bottom:583.050000px;}
.y1be{bottom:583.245000px;}
.y11f{bottom:585.825000px;}
.y1a9{bottom:585.975000px;}
.y130{bottom:587.775000px;}
.y3f{bottom:588.945000px;}
.y16{bottom:588.975000px;}
.y13{bottom:590.820000px;}
.y6e{bottom:591.570000px;}
.yee{bottom:592.920000px;}
.yd2{bottom:594.030000px;}
.y10b{bottom:597.495000px;}
.y180{bottom:599.070000px;}
.ybc{bottom:599.595000px;}
.y57{bottom:600.375000px;}
.y1b4{bottom:600.630000px;}
.ya7{bottom:601.320000px;}
.y108{bottom:601.380000px;}
.ya{bottom:602.130000px;}
.yf3{bottom:602.925000px;}
.ydf{bottom:603.525000px;}
.y105{bottom:604.005000px;}
.yf5{bottom:606.000000px;}
.y1c9{bottom:608.325000px;}
.y53{bottom:609.195000px;}
.y123{bottom:610.350000px;}
.y163{bottom:615.720000px;}
.y199{bottom:616.755000px;}
.y187{bottom:620.550000px;}
.y134{bottom:624.120000px;}
.y1d{bottom:624.345000px;}
.ya6{bottom:626.100000px;}
.y31{bottom:629.880000px;}
.yed{bottom:630.075000px;}
.y12f{bottom:630.570000px;}
.y78{bottom:632.775000px;}
.y30{bottom:634.695000px;}
.y11e{bottom:636.600000px;}
.y1{bottom:638.445000px;}
.y114{bottom:640.725000px;}
.y179{bottom:642.195000px;}
.y12{bottom:642.630000px;}
.y18e{bottom:644.775000px;}
.y1bd{bottom:647.445000px;}
.yde{bottom:647.475000px;}
.y7f{bottom:647.625000px;}
.y162{bottom:648.375000px;}
.y17f{bottom:649.755000px;}
.y52{bottom:650.850000px;}
.ya5{bottom:650.880000px;}
.y56{bottom:652.200000px;}
.y1c8{bottom:652.245000px;}
.y2a{bottom:656.445000px;}
.y62{bottom:658.755000px;}
.yd1{bottom:661.050000px;}
.y3e{bottom:662.175000px;}
.y133{bottom:666.900000px;}
.y198{bottom:667.500000px;}
.y9{bottom:674.670000px;}
.y140{bottom:676.725000px;}
.y1b3{bottom:677.220000px;}
.y16d{bottom:680.280000px;}
.y161{bottom:681.030000px;}
.y12e{bottom:682.470000px;}
.y197{bottom:684.675000px;}
.y1c{bottom:686.130000px;}
.y1a8{bottom:687.345000px;}
.ydd{bottom:690.255000px;}
.y29{bottom:693.600000px;}
.y51{bottom:693.630000px;}
.y149{bottom:694.095000px;}
.y11{bottom:694.425000px;}
.y1c7{bottom:695.070000px;}
.ye8{bottom:695.250000px;}
.y55{bottom:705.120000px;}
.y1bc{bottom:712.755000px;}
.y132{bottom:717.630000px;}
.ybb{bottom:717.825000px;}
.yf2{bottom:719.370000px;}
.y160{bottom:722.220000px;}
.y113{bottom:725.550000px;}
.y50{bottom:737.580000px;}
.y1a7{bottom:738.045000px;}
.y186{bottom:738.120000px;}
.y1c6{bottom:738.975000px;}
.y1b{bottom:744.720000px;}
.yc6{bottom:749.505000px;}
.y196{bottom:767.655000px;}
.y95{bottom:770.505000px;}
.y28{bottom:776.700000px;}
.y4f{bottom:780.375000px;}
.y1c5{bottom:781.755000px;}
.ya3{bottom:782.850000px;}
.y1b2{bottom:786.870000px;}
.y15{bottom:788.325000px;}
.y11c{bottom:799.650000px;}
.y1bb{bottom:814.545000px;}
.y4e{bottom:824.295000px;}
.y1c4{bottom:824.580000px;}
.y54{bottom:826.755000px;}
.yc5{bottom:834.045000px;}
.yd0{bottom:838.125000px;}
.ydc{bottom:843.045000px;}
.yc4{bottom:847.920000px;}
.y11d{bottom:848.070000px;}
.y1a6{bottom:849.075000px;}
.ya2{bottom:853.800000px;}
.y12d{bottom:855.375000px;}
.y4d{bottom:867.120000px;}
.y1c3{bottom:868.500000px;}
.y102{bottom:870.195000px;}
.y61{bottom:880.755000px;}
.y4a{bottom:881.700000px;}
.y1c2{bottom:911.295000px;}
.h29{height:40.282471px;}
.h1b{height:52.628906px;}
.h8{height:52.738550px;}
.h20{height:64.546875px;}
.h21{height:64.681348px;}
.h2c{height:74.023682px;}
.h24{height:74.436768px;}
.h23{height:74.567358px;}
.h2e{height:76.266000px;}
.h2b{height:76.399800px;}
.h39{height:76.642822px;}
.h37{height:76.688965px;}
.h38{height:76.764478px;}
.h3a{height:76.810693px;}
.h2d{height:78.318000px;}
.h2a{height:78.455400px;}
.h12{height:85.040771px;}
.h11{height:85.189966px;}
.h3e{height:86.675537px;}
.h40{height:88.920923px;}
.h3f{height:91.475098px;}
.h36{height:94.141626px;}
.h22{height:95.496450px;}
.h9{height:96.076538px;}
.ha{height:96.176514px;}
.hf{height:102.944092px;}
.h26{height:107.569116px;}
.h3d{height:108.112500px;}
.h18{height:108.886743px;}
.h1d{height:110.364844px;}
.h30{height:110.583984px;}
.h31{height:110.737573px;}
.h27{height:119.952905px;}
.h4{height:120.996606px;}
.h2f{height:124.560571px;}
.h33{height:129.948267px;}
.h16{height:142.991235px;}
.h15{height:143.375757px;}
.h14{height:143.524951px;}
.h17{height:144.796816px;}
.h13{height:147.598901px;}
.h25{height:147.752490px;}
.h1f{height:165.067676px;}
.h6{height:165.754907px;}
.h3{height:165.904102px;}
.hc{height:170.637231px;}
.hd{height:170.790820px;}
.h3b{height:179.566406px;}
.h34{height:186.224824px;}
.h1c{height:191.151563px;}
.h10{height:192.609888px;}
.he{height:192.759082px;}
.h5{height:198.283228px;}
.h7{height:198.436816px;}
.h32{height:233.962207px;}
.h1e{height:239.905811px;}
.h19{height:244.513477px;}
.hb{height:295.197803px;}
.h1a{height:295.351392px;}
.h35{height:318.236133px;}
.h2{height:332.059131px;}
.h1{height:332.212720px;}
.h3c{height:362.403809px;}
.h28{height:405.935376px;}
.h0{height:972.000000px;}
.w1{width:1727.999974px;}
.w0{width:1728.000000px;}
.x0{left:0.000000px;}
.x5d{left:37.762474px;}
.x38{left:49.649974px;}
.x91{left:59.849974px;}
.x3b{left:64.837474px;}
.x43{left:70.312474px;}
.x2d{left:82.012474px;}
.x26{left:87.074974px;}
.x6e{left:88.612474px;}
.x6{left:93.824974px;}
.x5e{left:103.724974px;}
.x72{left:105.637474px;}
.x7c{left:108.112474px;}
.x79{left:109.687474px;}
.x33{left:110.699974px;}
.x7{left:118.162474px;}
.x41{left:119.962474px;}
.x8e{left:124.387474px;}
.xd{left:127.312474px;}
.x73{left:130.762474px;}
.x18{left:134.324974px;}
.x8d{left:138.824974px;}
.x7d{left:141.637474px;}
.x6f{left:147.862474px;}
.x34{left:151.229974px;}
.x5a{left:156.779974px;}
.x4f{left:163.994974px;}
.x84{left:170.024974px;}
.x5f{left:182.324974px;}
.x70{left:188.354974px;}
.x78{left:190.154974px;}
.x5b{left:197.324974px;}
.x28{left:200.399974px;}
.x3d{left:203.849974px;}
.xe{left:205.919974px;}
.x52{left:227.819974px;}
.x1{left:234.224974px;}
.x1b{left:238.544974px;}
.x53{left:248.024974px;}
.x3e{left:250.394974px;}
.x68{left:256.994974px;}
.x1f{left:261.869974px;}
.x69{left:263.174974px;}
.x8c{left:276.779974px;}
.x8b{left:278.069974px;}
.x1d{left:281.519974px;}
.x3f{left:296.924974px;}
.x21{left:319.994974px;}
.x6a{left:326.594974px;}
.x15{left:333.119974px;}
.x40{left:343.469974px;}
.x7a{left:354.344974px;}
.x7b{left:402.344974px;}
.x77{left:425.999974px;}
.x1c{left:427.199974px;}
.x44{left:431.699974px;}
.x3a{left:445.379974px;}
.x90{left:456.029974px;}
.x4e{left:459.224974px;}
.x4b{left:466.544974px;}
.x46{left:489.974974px;}
.x20{left:497.519974px;}
.x51{left:510.074974px;}
.x49{left:512.594974px;}
.x22{left:514.649974px;}
.x48{left:525.704974px;}
.x5c{left:544.274974px;}
.x16{left:551.144974px;}
.x92{left:561.719974px;}
.x75{left:565.424974px;}
.x59{left:574.499974px;}
.x7e{left:586.424974px;}
.x45{left:592.154974px;}
.x4d{left:596.069974px;}
.x93{left:599.879974px;}
.x4a{left:606.794974px;}
.x2f{left:615.449974px;}
.x4c{left:624.854974px;}
.x6b{left:631.094974px;}
.x6c{left:632.474974px;}
.x61{left:639.449974px;}
.x60{left:643.949974px;}
.x2b{left:645.299974px;}
.x1a{left:649.574974px;}
.x47{left:655.229974px;}
.x39{left:673.349974px;}
.x8f{left:688.874974px;}
.x55{left:695.174974px;}
.x2c{left:699.329974px;}
.x23{left:718.319974px;}
.x62{left:726.524974px;}
.x54{left:731.249974px;}
.xa{left:732.749974px;}
.x27{left:736.454974px;}
.x31{left:742.244974px;}
.x50{left:747.074974px;}
.x5{left:755.924974px;}
.x17{left:757.049974px;}
.x71{left:764.924974px;}
.xb{left:770.369974px;}
.x24{left:772.949974px;}
.x86{left:777.419974px;}
.x81{left:782.774974px;}
.xf{left:790.874974px;}
.x29{left:795.794974px;}
.x2a{left:836.324974px;}
.x32{left:850.319974px;}
.x19{left:855.824974px;}
.x36{left:873.449974px;}
.x10{left:876.749974px;}
.x9{left:884.894974px;}
.x4{left:886.004974px;}
.x2{left:899.549974px;}
.x8{left:900.629974px;}
.x42{left:902.444974px;}
.x35{left:910.949974px;}
.x74{left:913.244974px;}
.x37{left:918.224974px;}
.x7f{left:942.719974px;}
.x80{left:945.824974px;}
.x85{left:955.424974px;}
.x1e{left:981.824974px;}
.xc{left:1021.274974px;}
.x83{left:1076.579974px;}
.x3{left:1080.104974px;}
.x25{left:1105.454974px;}
.x11{left:1128.824974px;}
.x30{left:1137.074974px;}
.x12{left:1143.599974px;}
.x6d{left:1144.919974px;}
.x76{left:1161.449974px;}
.x58{left:1195.394974px;}
.x89{left:1220.024974px;}
.x3c{left:1227.149974px;}
.x8a{left:1229.099974px;}
.x88{left:1235.519974px;}
.x63{left:1247.474974px;}
.x56{left:1254.449974px;}
.x67{left:1257.704974px;}
.x66{left:1263.794974px;}
.x65{left:1290.899974px;}
.x82{left:1319.819974px;}
.x87{left:1335.149974px;}
.x57{left:1355.579974px;}
.x64{left:1388.669974px;}
.x14{left:1497.194974px;}
.x2e{left:1500.899974px;}
.x13{left:1538.354974px;}
@media print{
.v6{vertical-align:-139.893333pt;}
.v5{vertical-align:-78.826667pt;}
.v7{vertical-align:-61.120000pt;}
.v3{vertical-align:-47.680000pt;}
.v2{vertical-align:-30.613333pt;}
.v1{vertical-align:-23.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:38.293333pt;}
.ls54{letter-spacing:-4.666667pt;}
.ls32{letter-spacing:-2.256000pt;}
.ls34{letter-spacing:-2.181333pt;}
.ls29{letter-spacing:-1.872000pt;}
.ls2a{letter-spacing:-1.802667pt;}
.ls28{letter-spacing:-1.738667pt;}
.ls2b{letter-spacing:-1.669333pt;}
.ls23{letter-spacing:-1.456000pt;}
.ls33{letter-spacing:-1.418667pt;}
.ls22{letter-spacing:-1.376000pt;}
.ls35{letter-spacing:-1.344000pt;}
.ls25{letter-spacing:-1.322667pt;}
.ls24{letter-spacing:-1.312000pt;}
.ls26{letter-spacing:-1.242667pt;}
.lsd{letter-spacing:-0.965333pt;}
.ls4a{letter-spacing:-0.869333pt;}
.lse{letter-spacing:-0.832000pt;}
.ls41{letter-spacing:-0.608000pt;}
.ls55{letter-spacing:-0.391467pt;}
.ls42{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.010667pt;}
.ls1e{letter-spacing:0.039467pt;}
.ls49{letter-spacing:0.066133pt;}
.ls3f{letter-spacing:0.125600pt;}
.ls1c{letter-spacing:0.144267pt;}
.ls17{letter-spacing:0.170933pt;}
.ls16{letter-spacing:0.181333pt;}
.ls39{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.197600pt;}
.ls14{letter-spacing:0.208000pt;}
.ls15{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.334933pt;}
.ls1a{letter-spacing:0.341867pt;}
.ls6{letter-spacing:0.345600pt;}
.ls18{letter-spacing:0.416000pt;}
.ls3b{letter-spacing:0.473600pt;}
.ls1d{letter-spacing:0.549333pt;}
.ls19{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.848000pt;}
.ls1{letter-spacing:0.992000pt;}
.ls31{letter-spacing:1.136000pt;}
.ls40{letter-spacing:1.226667pt;}
.ls2c{letter-spacing:1.338667pt;}
.ls44{letter-spacing:1.472000pt;}
.ls43{letter-spacing:1.664000pt;}
.ls2d{letter-spacing:1.952000pt;}
.ls21{letter-spacing:2.170667pt;}
.ls20{letter-spacing:2.208000pt;}
.ls37{letter-spacing:23.482933pt;}
.ls3e{letter-spacing:27.498933pt;}
.lsa{letter-spacing:28.829600pt;}
.ls2f{letter-spacing:28.882933pt;}
.ls52{letter-spacing:35.272667pt;}
.ls4d{letter-spacing:35.333333pt;}
.ls51{letter-spacing:35.379333pt;}
.ls27{letter-spacing:40.793333pt;}
.ls9{letter-spacing:42.368800pt;}
.ls53{letter-spacing:43.393867pt;}
.ls48{letter-spacing:57.042133pt;}
.ls3a{letter-spacing:75.153333pt;}
.lsc{letter-spacing:75.266667pt;}
.lsb{letter-spacing:75.313333pt;}
.ls13{letter-spacing:80.296267pt;}
.ls46{letter-spacing:83.706667pt;}
.ls47{letter-spacing:83.753333pt;}
.ls45{letter-spacing:83.813333pt;}
.ls4b{letter-spacing:92.106667pt;}
.ls4c{letter-spacing:92.153333pt;}
.ls4f{letter-spacing:92.240000pt;}
.ls36{letter-spacing:92.260000pt;}
.ls4e{letter-spacing:92.286667pt;}
.ls4{letter-spacing:99.106667pt;}
.ls38{letter-spacing:99.126667pt;}
.ls3{letter-spacing:99.153333pt;}
.ls30{letter-spacing:99.213333pt;}
.ls2e{letter-spacing:99.260000pt;}
.ls3c{letter-spacing:99.286667pt;}
.ls7{letter-spacing:99.313333pt;}
.ls10{letter-spacing:140.213333pt;}
.lsf{letter-spacing:140.260000pt;}
.ls12{letter-spacing:140.266667pt;}
.ls50{letter-spacing:140.286667pt;}
.ls11{letter-spacing:140.313333pt;}
.ls3d{letter-spacing:384.996800pt;}
.ls5{letter-spacing:385.064400pt;}
.ws4d{word-spacing:-119.095200pt;}
.ws24{word-spacing:-76.133333pt;}
.ws3a{word-spacing:-65.178400pt;}
.ws18{word-spacing:-57.946400pt;}
.ws2c{word-spacing:-57.916267pt;}
.ws1d{word-spacing:-41.873333pt;}
.ws1e{word-spacing:-41.800000pt;}
.ws1a{word-spacing:-40.134667pt;}
.ws29{word-spacing:-40.130667pt;}
.ws1c{word-spacing:-40.001333pt;}
.ws1f{word-spacing:-39.997333pt;}
.ws2{word-spacing:-38.932267pt;}
.ws1{word-spacing:-38.902133pt;}
.wsf{word-spacing:-37.376000pt;}
.ws12{word-spacing:-35.904000pt;}
.ws2d{word-spacing:-33.508267pt;}
.ws9{word-spacing:-33.478133pt;}
.ws41{word-spacing:-29.431733pt;}
.ws17{word-spacing:-28.988267pt;}
.ws5{word-spacing:-28.958133pt;}
.ws42{word-spacing:-27.472800pt;}
.ws43{word-spacing:-26.246133pt;}
.ws3f{word-spacing:-24.438133pt;}
.ws4a{word-spacing:-23.568800pt;}
.ws3b{word-spacing:-23.534133pt;}
.ws44{word-spacing:-23.390133pt;}
.ws45{word-spacing:-23.198133pt;}
.ws46{word-spacing:-23.064800pt;}
.ws2e{word-spacing:-21.726133pt;}
.ws4c{word-spacing:-21.033333pt;}
.ws3{word-spacing:-20.792000pt;}
.ws4b{word-spacing:-20.641867pt;}
.wsb{word-spacing:-20.000000pt;}
.wsd{word-spacing:-18.341333pt;}
.ws11{word-spacing:-18.208000pt;}
.ws13{word-spacing:-18.170933pt;}
.wsc{word-spacing:-17.829067pt;}
.wsa{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.206133pt;}
.ws16{word-spacing:-16.549333pt;}
.ws15{word-spacing:-16.506400pt;}
.ws14{word-spacing:-16.480000pt;}
.wse{word-spacing:-16.416000pt;}
.ws10{word-spacing:-16.373067pt;}
.ws3e{word-spacing:-16.168133pt;}
.ws3d{word-spacing:-15.374667pt;}
.ws3c{word-spacing:-15.330800pt;}
.ws34{word-spacing:-5.433333pt;}
.ws33{word-spacing:-3.645067pt;}
.ws31{word-spacing:-3.538400pt;}
.ws21{word-spacing:-2.880000pt;}
.ws28{word-spacing:-2.205600pt;}
.ws2a{word-spacing:-2.152267pt;}
.ws36{word-spacing:-2.059467pt;}
.ws26{word-spacing:-2.010667pt;}
.ws2f{word-spacing:-1.146667pt;}
.ws22{word-spacing:-0.933333pt;}
.ws6{word-spacing:-0.893867pt;}
.ws7{word-spacing:-0.805200pt;}
.ws23{word-spacing:-0.788933pt;}
.ws30{word-spacing:-0.748800pt;}
.ws38{word-spacing:-0.729867pt;}
.ws47{word-spacing:-0.530400pt;}
.ws39{word-spacing:-0.348800pt;}
.ws8{word-spacing:-0.128533pt;}
.ws19{word-spacing:-0.096133pt;}
.ws0{word-spacing:0.000000pt;}
.ws49{word-spacing:0.145867pt;}
.ws25{word-spacing:0.202667pt;}
.ws20{word-spacing:0.521067pt;}
.ws1b{word-spacing:0.574400pt;}
.ws35{word-spacing:0.932800pt;}
.ws37{word-spacing:0.986133pt;}
.ws32{word-spacing:1.677733pt;}
.ws48{word-spacing:1.697200pt;}
.ws2b{word-spacing:2.162933pt;}
.ws40{word-spacing:2.200000pt;}
.ws27{word-spacing:4.156000pt;}
._17{margin-left:-27.972933pt;}
._14{margin-left:-23.096133pt;}
._18{margin-left:-16.059333pt;}
._f{margin-left:-14.094667pt;}
._16{margin-left:-12.596000pt;}
._1c{margin-left:-11.403867pt;}
._15{margin-left:-10.378800pt;}
._9{margin-left:-9.059733pt;}
._a{margin-left:-7.772400pt;}
._6{margin-left:-6.344800pt;}
._7{margin-left:-5.367867pt;}
._3{margin-left:-4.326000pt;}
._8{margin-left:-3.386400pt;}
._4{margin-left:-2.307200pt;}
._1{margin-left:-1.153600pt;}
._0{width:1.153600pt;}
._2{width:2.595600pt;}
._5{width:4.037600pt;}
._11{width:5.630400pt;}
._e{width:6.527467pt;}
._1f{width:12.807867pt;}
._1b{width:15.484267pt;}
._19{width:20.550133pt;}
._b{width:22.143067pt;}
._c{width:23.066933pt;}
._1a{width:24.430133pt;}
._d{width:25.599867pt;}
._13{width:27.626533pt;}
._12{width:357.765467pt;}
._1d{width:387.778667pt;}
._1e{width:390.269867pt;}
._10{width:1436.272267pt;}
.fs18{font-size:36.000000pt;}
.fs11{font-size:64.000000pt;}
.fs7{font-size:64.133333pt;}
.fsd{font-size:76.000000pt;}
.fsc{font-size:76.133333pt;}
.fs1e{font-size:84.000000pt;}
.fs1d{font-size:84.133333pt;}
.fsb{font-size:92.000000pt;}
.fs19{font-size:96.000000pt;}
.fs15{font-size:96.133333pt;}
.fs16{font-size:104.133333pt;}
.fs20{font-size:108.000000pt;}
.fs3{font-size:108.133333pt;}
.fs1a{font-size:116.133333pt;}
.fse{font-size:124.133333pt;}
.fs1b{font-size:124.266667pt;}
.fs8{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fs5{font-size:148.133333pt;}
.fs2{font-size:148.266667pt;}
.fs4{font-size:172.133333pt;}
.fs6{font-size:172.266667pt;}
.fs14{font-size:192.133333pt;}
.fs13{font-size:208.266667pt;}
.fsf{font-size:212.266667pt;}
.fs12{font-size:236.400000pt;}
.fsa{font-size:256.266667pt;}
.fs10{font-size:256.400000pt;}
.fs1c{font-size:276.266667pt;}
.fs1{font-size:288.266667pt;}
.fs0{font-size:288.400000pt;}
.fs17{font-size:352.400000pt;}
.fs1f{font-size:428.400000pt;}
.y1d5{bottom:-58.500000pt;}
.y4b{bottom:-47.366667pt;}
.y1d4{bottom:-20.466667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:6.033333pt;}
.y12c{bottom:6.466667pt;}
.y13f{bottom:7.733333pt;}
.y10{bottom:10.033333pt;}
.y2f{bottom:15.833333pt;}
.y1d3{bottom:18.566667pt;}
.y1d8{bottom:19.766667pt;}
.y94{bottom:24.066667pt;}
.y104{bottom:25.966667pt;}
.y77{bottom:39.933333pt;}
.y49{bottom:40.233333pt;}
.y93{bottom:43.100000pt;}
.y2e{bottom:48.866667pt;}
.ydb{bottom:51.633333pt;}
.y1d2{bottom:56.633333pt;}
.y103{bottom:58.000000pt;}
.y9e{bottom:58.700000pt;}
.y1d7{bottom:59.833333pt;}
.ycf{bottom:60.700000pt;}
.y13e{bottom:61.900000pt;}
.y92{bottom:62.133333pt;}
.y1ba{bottom:63.333333pt;}
.ye7{bottom:71.333333pt;}
.y16c{bottom:71.633333pt;}
.y1b1{bottom:73.366667pt;}
.ya1{bottom:73.733333pt;}
.y195{bottom:76.100000pt;}
.y48{bottom:77.266667pt;}
.y91{bottom:81.133333pt;}
.y2d{bottom:82.900000pt;}
.y76{bottom:82.966667pt;}
.yba{bottom:85.966667pt;}
.y1d1{bottom:94.666667pt;}
.y13d{bottom:94.933333pt;}
.y9d{bottom:96.766667pt;}
.y15f{bottom:97.833333pt;}
.y90{bottom:100.166667pt;}
.y101{bottom:103.033333pt;}
.yce{bottom:104.766667pt;}
.ya0{bottom:106.766667pt;}
.yda{bottom:107.633333pt;}
.yb9{bottom:108.000000pt;}
.y60{bottom:115.166667pt;}
.y47{bottom:116.333333pt;}
.y151{bottom:116.566667pt;}
.y1b0{bottom:117.400000pt;}
.y4c{bottom:119.066667pt;}
.y8f{bottom:120.200000pt;}
.y148{bottom:120.400000pt;}
.y16b{bottom:121.700000pt;}
.yf{bottom:125.866667pt;}
.y25{bottom:126.400000pt;}
.y13c{bottom:127.966667pt;}
.y75{bottom:128.033333pt;}
.y18d{bottom:129.100000pt;}
.yb8{bottom:130.033333pt;}
.y1b9{bottom:130.433333pt;}
.y15e{bottom:131.866667pt;}
.yfe{bottom:133.333333pt;}
.y1d0{bottom:133.706667pt;}
.y9c{bottom:134.800000pt;}
.y1db{bottom:135.826667pt;}
.y100{bottom:136.066667pt;}
.y8e{bottom:139.200000pt;}
.y9f{bottom:139.800000pt;}
.y7d{bottom:142.466667pt;}
.y194{bottom:143.160000pt;}
.y2c{bottom:148.960000pt;}
.y150{bottom:149.600000pt;}
.ycd{bottom:150.893333pt;}
.yb7{bottom:153.066667pt;}
.y46{bottom:154.360000pt;}
.y12b{bottom:154.600000pt;}
.y112{bottom:158.200000pt;}
.y8d{bottom:158.226667pt;}
.y147{bottom:158.466667pt;}
.y69{bottom:158.773333pt;}
.y13b{bottom:162.000000pt;}
.y5f{bottom:162.226667pt;}
.y1a5{bottom:162.266667pt;}
.y1af{bottom:162.466667pt;}
.y1da{bottom:166.866667pt;}
.y15d{bottom:166.933333pt;}
.ye{bottom:169.893333pt;}
.y1cf{bottom:171.773333pt;}
.yd9{bottom:172.440000pt;}
.y74{bottom:173.106667pt;}
.y177{bottom:173.466667pt;}
.y18c{bottom:174.200000pt;}
.yb6{bottom:175.106667pt;}
.y8c{bottom:177.266667pt;}
.y11b{bottom:177.440000pt;}
.yfd{bottom:179.440000pt;}
.y3d{bottom:180.666667pt;}
.y119{bottom:180.706667pt;}
.y111{bottom:181.226667pt;}
.y16a{bottom:181.760000pt;}
.y8{bottom:181.960000pt;}
.yff{bottom:182.200000pt;}
.y2b{bottom:183.026667pt;}
.y9b{bottom:186.933333pt;}
.y185{bottom:187.760000pt;}
.y24{bottom:190.466667pt;}
.ye6{bottom:191.066667pt;}
.y12a{bottom:192.666667pt;}
.y45{bottom:193.440000pt;}
.y13a{bottom:195.026667pt;}
.y8b{bottom:196.266667pt;}
.y146{bottom:196.506667pt;}
.y6d{bottom:196.800000pt;}
.y1b8{bottom:197.506667pt;}
.y68{bottom:197.800000pt;}
.yb5{bottom:198.106667pt;}
.y1d9{bottom:198.906667pt;}
.y17e{bottom:199.306667pt;}
.y110{bottom:202.266667pt;}
.y15c{bottom:202.960000pt;}
.yeb{bottom:204.266667pt;}
.y1a4{bottom:206.293333pt;}
.y176{bottom:207.506667pt;}
.y5e{bottom:208.306667pt;}
.y193{bottom:210.266667pt;}
.y1ce{bottom:210.800000pt;}
.y3c{bottom:212.693333pt;}
.y7{bottom:214.000000pt;}
.y7c{bottom:214.560000pt;}
.yd{bottom:214.960000pt;}
.y11a{bottom:215.466667pt;}
.y8a{bottom:216.306667pt;}
.yd8{bottom:216.400000pt;}
.y73{bottom:218.133333pt;}
.y118{bottom:218.733333pt;}
.yb4{bottom:220.133333pt;}
.y82{bottom:224.466667pt;}
.ycc{bottom:224.933333pt;}
.y1a2{bottom:225.106667pt;}
.ye5{bottom:229.133333pt;}
.y129{bottom:230.693333pt;}
.y44{bottom:231.466667pt;}
.y169{bottom:232.840000pt;}
.y184{bottom:233.200000pt;}
.y6c{bottom:234.866667pt;}
.y89{bottom:235.333333pt;}
.y67{bottom:235.866667pt;}
.y178{bottom:239.533333pt;}
.y14f{bottom:239.773333pt;}
.y175{bottom:240.533333pt;}
.y159{bottom:240.773333pt;}
.yc3{bottom:241.200000pt;}
.yb3{bottom:242.173333pt;}
.y17d{bottom:245.400000pt;}
.y6{bottom:246.066667pt;}
.y3b{bottom:246.733333pt;}
.yfc{bottom:247.240000pt;}
.y1cd{bottom:248.840000pt;}
.yea{bottom:250.400000pt;}
.y15b{bottom:252.306667pt;}
.y1ae{bottom:252.560000pt;}
.y7b{bottom:252.600000pt;}
.y7e{bottom:253.600000pt;}
.y137{bottom:254.200000pt;}
.y5d{bottom:254.333333pt;}
.y23{bottom:254.533333pt;}
.yec{bottom:258.773333pt;}
.y72{bottom:263.200000pt;}
.yb2{bottom:265.200000pt;}
.yd7{bottom:265.440000pt;}
.y1b7{bottom:265.560000pt;}
.y15a{bottom:267.560000pt;}
.y1a3{bottom:267.706667pt;}
.ycb{bottom:268.960000pt;}
.y1a1{bottom:269.133333pt;}
.y117{bottom:270.866667pt;}
.yc2{bottom:273.226667pt;}
.y88{bottom:273.360000pt;}
.y6b{bottom:273.906667pt;}
.y66{bottom:274.893333pt;}
.y183{bottom:275.093333pt;}
.y158{bottom:275.800000pt;}
.y192{bottom:277.333333pt;}
.y1d6{bottom:278.200000pt;}
.y3a{bottom:279.773333pt;}
.yfb{bottom:280.266667pt;}
.yc{bottom:280.440000pt;}
.y81{bottom:282.533333pt;}
.y14c{bottom:283.800000pt;}
.y145{bottom:285.200000pt;}
.y174{bottom:286.666667pt;}
.y1cc{bottom:286.893333pt;}
.yb1{bottom:287.200000pt;}
.y168{bottom:291.906667pt;}
.y136{bottom:292.240000pt;}
.y87{bottom:292.400000pt;}
.y1ad{bottom:296.600000pt;}
.y18b{bottom:296.666667pt;}
.y5c{bottom:301.400000pt;}
.y5{bottom:303.133333pt;}
.ye4{bottom:306.200000pt;}
.yb0{bottom:310.240000pt;}
.y128{bottom:310.933333pt;}
.yf8{bottom:311.573333pt;}
.y157{bottom:311.840000pt;}
.y6a{bottom:311.933333pt;}
.y86{bottom:312.426667pt;}
.y65{bottom:312.933333pt;}
.yfa{bottom:313.306667pt;}
.y1a0{bottom:314.200000pt;}
.yca{bottom:315.106667pt;}
.y43{bottom:315.173333pt;}
.yd6{bottom:315.933333pt;}
.ye9{bottom:317.266667pt;}
.y22{bottom:318.600000pt;}
.yc1{bottom:320.373333pt;}
.y37{bottom:321.560000pt;}
.y144{bottom:324.226667pt;}
.y139{bottom:324.533333pt;}
.y1cb{bottom:325.933333pt;}
.y17c{bottom:326.666667pt;}
.y39{bottom:326.893333pt;}
.y14b{bottom:327.866667pt;}
.y14e{bottom:328.866667pt;}
.y38{bottom:331.133333pt;}
.y7a{bottom:331.440000pt;}
.y9a{bottom:331.733333pt;}
.yaf{bottom:332.266667pt;}
.y19d{bottom:332.973333pt;}
.y1a{bottom:333.226667pt;}
.ya4{bottom:334.933333pt;}
.y135{bottom:338.373333pt;}
.y1ac{bottom:341.666667pt;}
.y18a{bottom:341.773333pt;}
.y167{bottom:342.973333pt;}
.ye3{bottom:344.266667pt;}
.y191{bottom:344.400000pt;}
.y1c1{bottom:345.226667pt;}
.y5b{bottom:347.466667pt;}
.y127{bottom:349.960000pt;}
.y85{bottom:350.466667pt;}
.y42{bottom:352.200000pt;}
.y71{bottom:352.306667pt;}
.yae{bottom:354.306667pt;}
.y36{bottom:355.600000pt;}
.yf7{bottom:357.666667pt;}
.y19f{bottom:360.306667pt;}
.yf9{bottom:360.426667pt;}
.y143{bottom:362.293333pt;}
.y1ca{bottom:363.973333pt;}
.y156{bottom:365.893333pt;}
.y99{bottom:368.773333pt;}
.y84{bottom:369.466667pt;}
.y138{bottom:369.626667pt;}
.y4{bottom:371.266667pt;}
.yd5{bottom:372.360000pt;}
.y17b{bottom:372.773333pt;}
.y14a{bottom:372.906667pt;}
.y14d{bottom:373.933333pt;}
.y19e{bottom:375.600000pt;}
.y19{bottom:377.293333pt;}
.yad{bottom:377.333333pt;}
.y19c{bottom:378.026667pt;}
.yf1{bottom:378.773333pt;}
.y122{bottom:381.840000pt;}
.y64{bottom:382.600000pt;}
.ye2{bottom:383.293333pt;}
.y26{bottom:384.173333pt;}
.y171{bottom:386.373333pt;}
.y1ab{bottom:386.733333pt;}
.y126{bottom:388.000000pt;}
.y83{bottom:388.506667pt;}
.y35{bottom:388.640000pt;}
.y41{bottom:391.266667pt;}
.y5a{bottom:394.506667pt;}
.y70{bottom:397.333333pt;}
.yac{bottom:399.333333pt;}
.y1b6{bottom:399.733333pt;}
.y155{bottom:400.933333pt;}
.y166{bottom:402.026667pt;}
.y1c0{bottom:402.306667pt;}
.y79{bottom:402.906667pt;}
.y21{bottom:405.626667pt;}
.y1f{bottom:407.573333pt;}
.y98{bottom:407.800000pt;}
.y190{bottom:412.506667pt;}
.y121{bottom:414.906667pt;}
.yc9{bottom:419.026667pt;}
.y173{bottom:419.440000pt;}
.ybf{bottom:419.773333pt;}
.y170{bottom:420.426667pt;}
.ye1{bottom:421.333333pt;}
.y18{bottom:422.373333pt;}
.y19b{bottom:423.066667pt;}
.y142{bottom:425.026667pt;}
.y125{bottom:427.066667pt;}
.y40{bottom:429.306667pt;}
.y3{bottom:436.333333pt;}
.y154{bottom:436.960000pt;}
.y59{bottom:440.573333pt;}
.yd4{bottom:440.640000pt;}
.y63{bottom:440.866667pt;}
.y10f{bottom:442.000000pt;}
.y6f{bottom:442.400000pt;}
.y182{bottom:443.400000pt;}
.yab{bottom:444.400000pt;}
.y97{bottom:445.866667pt;}
.y34{bottom:446.693333pt;}
.y1e{bottom:452.293333pt;}
.y172{bottom:452.466667pt;}
.y16f{bottom:453.466667pt;}
.y20{bottom:453.560000pt;}
.ybe{bottom:453.800000pt;}
.y165{bottom:454.106667pt;}
.y116{bottom:456.400000pt;}
.ye0{bottom:459.400000pt;}
.y1bf{bottom:460.360000pt;}
.yf0{bottom:460.960000pt;}
.yc8{bottom:463.106667pt;}
.y10e{bottom:465.000000pt;}
.y124{bottom:465.106667pt;}
.yaa{bottom:466.440000pt;}
.y1b5{bottom:466.800000pt;}
.y17{bottom:467.400000pt;}
.y80{bottom:470.293333pt;}
.y189{bottom:473.440000pt;}
.y1aa{bottom:476.840000pt;}
.yd3{bottom:479.466667pt;}
.y33{bottom:479.733333pt;}
.y131{bottom:484.426667pt;}
.y153{bottom:485.333333pt;}
.yc0{bottom:485.840000pt;}
.y14{bottom:486.133333pt;}
.y58{bottom:486.600000pt;}
.ybd{bottom:486.840000pt;}
.y10d{bottom:487.026667pt;}
.y181{bottom:487.466667pt;}
.y120{bottom:487.693333pt;}
.y17a{bottom:487.973333pt;}
.ya9{bottom:489.466667pt;}
.yf4{bottom:489.800000pt;}
.yb{bottom:490.200000pt;}
.y10a{bottom:490.533333pt;}
.yf6{bottom:492.560000pt;}
.y107{bottom:492.840000pt;}
.yef{bottom:494.000000pt;}
.y96{bottom:497.973333pt;}
.y16e{bottom:499.573333pt;}
.y152{bottom:500.600000pt;}
.y141{bottom:501.133333pt;}
.y115{bottom:501.466667pt;}
.y2{bottom:502.400000pt;}
.y19a{bottom:503.173333pt;}
.y188{bottom:506.506667pt;}
.y10c{bottom:509.066667pt;}
.yc7{bottom:509.200000pt;}
.y18f{bottom:510.066667pt;}
.ya8{bottom:511.466667pt;}
.y32{bottom:512.800000pt;}
.y109{bottom:513.560000pt;}
.y106{bottom:514.866667pt;}
.y164{bottom:518.266667pt;}
.y1be{bottom:518.440000pt;}
.y11f{bottom:520.733333pt;}
.y1a9{bottom:520.866667pt;}
.y130{bottom:522.466667pt;}
.y3f{bottom:523.506667pt;}
.y16{bottom:523.533333pt;}
.y13{bottom:525.173333pt;}
.y6e{bottom:525.840000pt;}
.yee{bottom:527.040000pt;}
.yd2{bottom:528.026667pt;}
.y10b{bottom:531.106667pt;}
.y180{bottom:532.506667pt;}
.ybc{bottom:532.973333pt;}
.y57{bottom:533.666667pt;}
.y1b4{bottom:533.893333pt;}
.ya7{bottom:534.506667pt;}
.y108{bottom:534.560000pt;}
.ya{bottom:535.226667pt;}
.yf3{bottom:535.933333pt;}
.ydf{bottom:536.466667pt;}
.y105{bottom:536.893333pt;}
.yf5{bottom:538.666667pt;}
.y1c9{bottom:540.733333pt;}
.y53{bottom:541.506667pt;}
.y123{bottom:542.533333pt;}
.y163{bottom:547.306667pt;}
.y199{bottom:548.226667pt;}
.y187{bottom:551.600000pt;}
.y134{bottom:554.773333pt;}
.y1d{bottom:554.973333pt;}
.ya6{bottom:556.533333pt;}
.y31{bottom:559.893333pt;}
.yed{bottom:560.066667pt;}
.y12f{bottom:560.506667pt;}
.y78{bottom:562.466667pt;}
.y30{bottom:564.173333pt;}
.y11e{bottom:565.866667pt;}
.y1{bottom:567.506667pt;}
.y114{bottom:569.533333pt;}
.y179{bottom:570.840000pt;}
.y12{bottom:571.226667pt;}
.y18e{bottom:573.133333pt;}
.y1bd{bottom:575.506667pt;}
.yde{bottom:575.533333pt;}
.y7f{bottom:575.666667pt;}
.y162{bottom:576.333333pt;}
.y17f{bottom:577.560000pt;}
.y52{bottom:578.533333pt;}
.ya5{bottom:578.560000pt;}
.y56{bottom:579.733333pt;}
.y1c8{bottom:579.773333pt;}
.y2a{bottom:583.506667pt;}
.y62{bottom:585.560000pt;}
.yd1{bottom:587.600000pt;}
.y3e{bottom:588.600000pt;}
.y133{bottom:592.800000pt;}
.y198{bottom:593.333333pt;}
.y9{bottom:599.706667pt;}
.y140{bottom:601.533333pt;}
.y1b3{bottom:601.973333pt;}
.y16d{bottom:604.693333pt;}
.y161{bottom:605.360000pt;}
.y12e{bottom:606.640000pt;}
.y197{bottom:608.600000pt;}
.y1c{bottom:609.893333pt;}
.y1a8{bottom:610.973333pt;}
.ydd{bottom:613.560000pt;}
.y29{bottom:616.533333pt;}
.y51{bottom:616.560000pt;}
.y149{bottom:616.973333pt;}
.y11{bottom:617.266667pt;}
.y1c7{bottom:617.840000pt;}
.ye8{bottom:618.000000pt;}
.y55{bottom:626.773333pt;}
.y1bc{bottom:633.560000pt;}
.y132{bottom:637.893333pt;}
.ybb{bottom:638.066667pt;}
.yf2{bottom:639.440000pt;}
.y160{bottom:641.973333pt;}
.y113{bottom:644.933333pt;}
.y50{bottom:655.626667pt;}
.y1a7{bottom:656.040000pt;}
.y186{bottom:656.106667pt;}
.y1c6{bottom:656.866667pt;}
.y1b{bottom:661.973333pt;}
.yc6{bottom:666.226667pt;}
.y196{bottom:682.360000pt;}
.y95{bottom:684.893333pt;}
.y28{bottom:690.400000pt;}
.y4f{bottom:693.666667pt;}
.y1c5{bottom:694.893333pt;}
.ya3{bottom:695.866667pt;}
.y1b2{bottom:699.440000pt;}
.y15{bottom:700.733333pt;}
.y11c{bottom:710.800000pt;}
.y1bb{bottom:724.040000pt;}
.y4e{bottom:732.706667pt;}
.y1c4{bottom:732.960000pt;}
.y54{bottom:734.893333pt;}
.yc5{bottom:741.373333pt;}
.yd0{bottom:745.000000pt;}
.ydc{bottom:749.373333pt;}
.yc4{bottom:753.706667pt;}
.y11d{bottom:753.840000pt;}
.y1a6{bottom:754.733333pt;}
.ya2{bottom:758.933333pt;}
.y12d{bottom:760.333333pt;}
.y4d{bottom:770.773333pt;}
.y1c3{bottom:772.000000pt;}
.y102{bottom:773.506667pt;}
.y61{bottom:782.893333pt;}
.y4a{bottom:783.733333pt;}
.y1c2{bottom:810.040000pt;}
.h29{height:35.806641pt;}
.h1b{height:46.781250pt;}
.h8{height:46.878711pt;}
.h20{height:57.375000pt;}
.h21{height:57.494531pt;}
.h2c{height:65.798828pt;}
.h24{height:66.166016pt;}
.h23{height:66.282096pt;}
.h2e{height:67.792000pt;}
.h2b{height:67.910933pt;}
.h39{height:68.126953pt;}
.h37{height:68.167969pt;}
.h38{height:68.235091pt;}
.h3a{height:68.276172pt;}
.h2d{height:69.616000pt;}
.h2a{height:69.738133pt;}
.h12{height:75.591797pt;}
.h11{height:75.724414pt;}
.h3e{height:77.044922pt;}
.h40{height:79.040820pt;}
.h3f{height:81.311198pt;}
.h36{height:83.681445pt;}
.h22{height:84.885733pt;}
.h9{height:85.401367pt;}
.ha{height:85.490234pt;}
.hf{height:91.505859pt;}
.h26{height:95.616992pt;}
.h3d{height:96.100000pt;}
.h18{height:96.788216pt;}
.h1d{height:98.102083pt;}
.h30{height:98.296875pt;}
.h31{height:98.433398pt;}
.h27{height:106.624805pt;}
.h4{height:107.552539pt;}
.h2f{height:110.720508pt;}
.h33{height:115.509570pt;}
.h16{height:127.103320pt;}
.h15{height:127.445117pt;}
.h14{height:127.577734pt;}
.h17{height:128.708281pt;}
.h13{height:131.199023pt;}
.h25{height:131.335547pt;}
.h1f{height:146.726823pt;}
.h6{height:147.337695pt;}
.h3{height:147.470313pt;}
.hc{height:151.677539pt;}
.hd{height:151.814063pt;}
.h3b{height:159.614583pt;}
.h34{height:165.533177pt;}
.h1c{height:169.912500pt;}
.h10{height:171.208789pt;}
.he{height:171.341406pt;}
.h5{height:176.251758pt;}
.h7{height:176.388281pt;}
.h32{height:207.966406pt;}
.h1e{height:213.249609pt;}
.h19{height:217.345312pt;}
.hb{height:262.398047pt;}
.h1a{height:262.534570pt;}
.h35{height:282.876562pt;}
.h2{height:295.163672pt;}
.h1{height:295.300195pt;}
.h3c{height:322.136719pt;}
.h28{height:360.831445pt;}
.h0{height:864.000000pt;}
.w1{width:1535.999977pt;}
.w0{width:1536.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:33.566644pt;}
.x38{left:44.133310pt;}
.x91{left:53.199977pt;}
.x3b{left:57.633310pt;}
.x43{left:62.499977pt;}
.x2d{left:72.899977pt;}
.x26{left:77.399977pt;}
.x6e{left:78.766644pt;}
.x6{left:83.399977pt;}
.x5e{left:92.199977pt;}
.x72{left:93.899977pt;}
.x7c{left:96.099977pt;}
.x79{left:97.499977pt;}
.x33{left:98.399977pt;}
.x7{left:105.033310pt;}
.x41{left:106.633310pt;}
.x8e{left:110.566644pt;}
.xd{left:113.166644pt;}
.x73{left:116.233310pt;}
.x18{left:119.399977pt;}
.x8d{left:123.399977pt;}
.x7d{left:125.899977pt;}
.x6f{left:131.433310pt;}
.x34{left:134.426644pt;}
.x5a{left:139.359977pt;}
.x4f{left:145.773310pt;}
.x84{left:151.133310pt;}
.x5f{left:162.066644pt;}
.x70{left:167.426644pt;}
.x78{left:169.026644pt;}
.x5b{left:175.399977pt;}
.x28{left:178.133310pt;}
.x3d{left:181.199977pt;}
.xe{left:183.039977pt;}
.x52{left:202.506644pt;}
.x1{left:208.199977pt;}
.x1b{left:212.039977pt;}
.x53{left:220.466644pt;}
.x3e{left:222.573310pt;}
.x68{left:228.439977pt;}
.x1f{left:232.773310pt;}
.x69{left:233.933310pt;}
.x8c{left:246.026644pt;}
.x8b{left:247.173310pt;}
.x1d{left:250.239977pt;}
.x3f{left:263.933310pt;}
.x21{left:284.439977pt;}
.x6a{left:290.306644pt;}
.x15{left:296.106644pt;}
.x40{left:305.306644pt;}
.x7a{left:314.973310pt;}
.x7b{left:357.639977pt;}
.x77{left:378.666644pt;}
.x1c{left:379.733310pt;}
.x44{left:383.733310pt;}
.x3a{left:395.893310pt;}
.x90{left:405.359977pt;}
.x4e{left:408.199977pt;}
.x4b{left:414.706644pt;}
.x46{left:435.533310pt;}
.x20{left:442.239977pt;}
.x51{left:453.399977pt;}
.x49{left:455.639977pt;}
.x22{left:457.466644pt;}
.x48{left:467.293310pt;}
.x5c{left:483.799977pt;}
.x16{left:489.906644pt;}
.x92{left:499.306644pt;}
.x75{left:502.599977pt;}
.x59{left:510.666644pt;}
.x7e{left:521.266644pt;}
.x45{left:526.359977pt;}
.x4d{left:529.839977pt;}
.x93{left:533.226644pt;}
.x4a{left:539.373310pt;}
.x2f{left:547.066644pt;}
.x4c{left:555.426644pt;}
.x6b{left:560.973310pt;}
.x6c{left:562.199977pt;}
.x61{left:568.399977pt;}
.x60{left:572.399977pt;}
.x2b{left:573.599977pt;}
.x1a{left:577.399977pt;}
.x47{left:582.426644pt;}
.x39{left:598.533310pt;}
.x8f{left:612.333310pt;}
.x55{left:617.933310pt;}
.x2c{left:621.626644pt;}
.x23{left:638.506644pt;}
.x62{left:645.799977pt;}
.x54{left:649.999977pt;}
.xa{left:651.333310pt;}
.x27{left:654.626644pt;}
.x31{left:659.773310pt;}
.x50{left:664.066644pt;}
.x5{left:671.933310pt;}
.x17{left:672.933310pt;}
.x71{left:679.933310pt;}
.xb{left:684.773310pt;}
.x24{left:687.066644pt;}
.x86{left:691.039977pt;}
.x81{left:695.799977pt;}
.xf{left:702.999977pt;}
.x29{left:707.373310pt;}
.x2a{left:743.399977pt;}
.x32{left:755.839977pt;}
.x19{left:760.733310pt;}
.x36{left:776.399977pt;}
.x10{left:779.333310pt;}
.x9{left:786.573310pt;}
.x4{left:787.559977pt;}
.x2{left:799.599977pt;}
.x8{left:800.559977pt;}
.x42{left:802.173310pt;}
.x35{left:809.733310pt;}
.x74{left:811.773310pt;}
.x37{left:816.199977pt;}
.x7f{left:837.973310pt;}
.x80{left:840.733310pt;}
.x85{left:849.266644pt;}
.x1e{left:872.733310pt;}
.xc{left:907.799977pt;}
.x83{left:956.959977pt;}
.x3{left:960.093310pt;}
.x25{left:982.626644pt;}
.x11{left:1003.399977pt;}
.x30{left:1010.733310pt;}
.x12{left:1016.533310pt;}
.x6d{left:1017.706644pt;}
.x76{left:1032.399977pt;}
.x58{left:1062.573310pt;}
.x89{left:1084.466644pt;}
.x3c{left:1090.799977pt;}
.x8a{left:1092.533310pt;}
.x88{left:1098.239977pt;}
.x63{left:1108.866644pt;}
.x56{left:1115.066644pt;}
.x67{left:1117.959977pt;}
.x66{left:1123.373310pt;}
.x65{left:1147.466644pt;}
.x82{left:1173.173310pt;}
.x87{left:1186.799977pt;}
.x57{left:1204.959977pt;}
.x64{left:1234.373310pt;}
.x14{left:1330.839977pt;}
.x2e{left:1334.133310pt;}
.x13{left:1367.426644pt;}
}




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