
    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_35b3d94fc9d43d4d3f12f9f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_0c197b022deee608022e7463.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884000;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_04828a680b7911664aada6a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_11816ad1bdc0a3974b6666a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.679688;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_32616518c47cc5eda1b4af17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_2041e64e884db63f0b46e72a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928000;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_1e2d60886699c85cf443086d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.764000;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_6f9a33381448245b4a59bf65.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_09b12133637b336908bc5705.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.832000;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_74a5dc66d7032d8f62f58113.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053750;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_e5e366002ebffd11308d1407.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_9bb8f9d6a9e7827bae72d648.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_e233d2cb53f1c75d1aa1ac0b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690000;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_56bc1c78cda716e098f43a7c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.254000;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_0fb8fe2f004eacf7bbcc5c5e.woff2')format("woff");}.fff{font-family:fff;line-height:0.879000;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_3aff12fde1138c4e23f1cdf9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.823730;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_2a5a3e0ab2b0a60b734d44c3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.723633;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);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.227437,-0.103791,0.103791,0.227437,0,0);-ms-transform:matrix(0.227437,-0.103791,0.103791,0.227437,0,0);-webkit-transform:matrix(0.227437,-0.103791,0.103791,0.227437,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);}
.v4{vertical-align:-115.249592px;}
.v15{vertical-align:-99.000000px;}
.v2{vertical-align:-92.523240px;}
.v23{vertical-align:-88.500000px;}
.v9{vertical-align:-87.476160px;}
.v7{vertical-align:-80.747640px;}
.v24{vertical-align:-78.873323px;}
.vc{vertical-align:-72.000000px;}
.va{vertical-align:-70.654260px;}
.v11{vertical-align:-69.000000px;}
.v6{vertical-align:-63.925140px;}
.v22{vertical-align:-60.720000px;}
.v19{vertical-align:-57.000000px;}
.v26{vertical-align:-48.000000px;}
.v2e{vertical-align:-44.985600px;}
.v28{vertical-align:-42.240000px;}
.v30{vertical-align:-31.695600px;}
.v0{vertical-align:0.000000px;}
.v29{vertical-align:20.770200px;}
.v1{vertical-align:24.191520px;}
.v31{vertical-align:27.462600px;}
.v2f{vertical-align:44.985600px;}
.v27{vertical-align:48.000000px;}
.v1e{vertical-align:50.160000px;}
.v1a{vertical-align:57.000000px;}
.v1d{vertical-align:59.280060px;}
.v12{vertical-align:69.000000px;}
.v34{vertical-align:72.000000px;}
.v8{vertical-align:80.747640px;}
.v10{vertical-align:84.996840px;}
.v3{vertical-align:92.523240px;}
.v16{vertical-align:99.000000px;}
.vf{vertical-align:102.120000px;}
.v25{vertical-align:106.560000px;}
.v1f{vertical-align:109.440060px;}
.v5{vertical-align:115.249592px;}
.v2c{vertical-align:116.798400px;}
.v2b{vertical-align:119.506500px;}
.v2d{vertical-align:121.092720px;}
.v14{vertical-align:126.450600px;}
.v33{vertical-align:128.760000px;}
.v2a{vertical-align:133.987200px;}
.v21{vertical-align:136.327560px;}
.v13{vertical-align:146.520120px;}
.v1c{vertical-align:180.464520px;}
.v32{vertical-align:203.040000px;}
.v20{vertical-align:205.327560px;}
.vb{vertical-align:211.392000px;}
.vd{vertical-align:216.000000px;}
.v1b{vertical-align:237.464520px;}
.v17{vertical-align:330.307560px;}
.ve{vertical-align:419.040000px;}
.v18{vertical-align:575.827560px;}
.ls38{letter-spacing:-51.510000px;}
.lsf{letter-spacing:-25.500000px;}
.ls3b{letter-spacing:-20.655000px;}
.ls34{letter-spacing:-17.850000px;}
.ls1a{letter-spacing:-15.900000px;}
.ls41{letter-spacing:-15.300000px;}
.lsa{letter-spacing:-13.920000px;}
.ls50{letter-spacing:-13.650000px;}
.ls2{letter-spacing:-12.750000px;}
.ls1{letter-spacing:-12.720000px;}
.ls42{letter-spacing:-12.667200px;}
.lse{letter-spacing:-10.200000px;}
.ls45{letter-spacing:-10.098000px;}
.ls12{letter-spacing:-9.078000px;}
.lsb{letter-spacing:-8.250000px;}
.ls4f{letter-spacing:-7.800000px;}
.ls13{letter-spacing:-7.680000px;}
.ls44{letter-spacing:-6.732000px;}
.ls43{letter-spacing:-6.720000px;}
.ls51{letter-spacing:-5.400000px;}
.ls52{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000032px;}
.lsc{letter-spacing:0.000036px;}
.ls33{letter-spacing:0.000060px;}
.ls1c{letter-spacing:0.000120px;}
.ls7{letter-spacing:0.000150px;}
.ls47{letter-spacing:0.000180px;}
.ls28{letter-spacing:0.000240px;}
.ls4e{letter-spacing:0.076800px;}
.ls9{letter-spacing:0.469620px;}
.ls14{letter-spacing:3.590400px;}
.ls29{letter-spacing:4.560000px;}
.ls24{letter-spacing:8.331000px;}
.ls1f{letter-spacing:14.470200px;}
.ls4c{letter-spacing:16.000200px;}
.ls4b{letter-spacing:16.239780px;}
.ls2e{letter-spacing:16.240020px;}
.ls3c{letter-spacing:16.414920px;}
.ls3a{letter-spacing:16.795469px;}
.ls11{letter-spacing:17.943991px;}
.ls49{letter-spacing:18.095880px;}
.ls1e{letter-spacing:20.592000px;}
.ls1b{letter-spacing:20.592060px;}
.ls19{letter-spacing:48.309600px;}
.ls8{letter-spacing:49.999980px;}
.ls25{letter-spacing:50.667000px;}
.ls31{letter-spacing:64.000200px;}
.lsd{letter-spacing:71.028180px;}
.ls26{letter-spacing:76.666680px;}
.ls4d{letter-spacing:79.999800px;}
.ls30{letter-spacing:79.999980px;}
.ls4a{letter-spacing:80.000040px;}
.ls3e{letter-spacing:80.000400px;}
.ls2f{letter-spacing:85.784220px;}
.ls2c{letter-spacing:87.636957px;}
.ls2b{letter-spacing:87.636972px;}
.ls10{letter-spacing:89.719614px;}
.ls37{letter-spacing:89.719624px;}
.ls3d{letter-spacing:90.278760px;}
.ls17{letter-spacing:95.481360px;}
.ls48{letter-spacing:96.666660px;}
.ls2d{letter-spacing:97.196263px;}
.ls2a{letter-spacing:98.333400px;}
.ls4{letter-spacing:102.803554px;}
.ls3{letter-spacing:102.803730px;}
.ls27{letter-spacing:104.266680px;}
.ls3f{letter-spacing:109.994400px;}
.ls21{letter-spacing:109.999800px;}
.ls32{letter-spacing:112.307220px;}
.ls1d{letter-spacing:113.539800px;}
.ls20{letter-spacing:116.525760px;}
.ls46{letter-spacing:120.510240px;}
.ls15{letter-spacing:123.199800px;}
.ls6{letter-spacing:128.054577px;}
.ls22{letter-spacing:142.391400px;}
.ls35{letter-spacing:166.141440px;}
.ls40{letter-spacing:181.994400px;}
.ls39{letter-spacing:207.284340px;}
.ls36{letter-spacing:207.284640px;}
.ls18{letter-spacing:311.542440px;}
.ls16{letter-spacing:532.591800px;}
.ls23{letter-spacing:662.051400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-180.960000px;}
.ws0{word-spacing:-168.479995px;}
.ws3a{word-spacing:-142.800000px;}
.ws2c{word-spacing:-98.687400px;}
.ws2{word-spacing:-97.440000px;}
.ws6{word-spacing:-92.400000px;}
.wsa{word-spacing:-80.640000px;}
.wsf{word-spacing:-73.920000px;}
.ws3c{word-spacing:-70.200000px;}
.ws3d{word-spacing:-69.120000px;}
.wsb{word-spacing:-63.840000px;}
.ws14{word-spacing:-53.760000px;}
.ws16{word-spacing:-43.718400px;}
.ws15{word-spacing:-32.448000px;}
.ws8{word-spacing:-0.460998px;}
.ws24{word-spacing:-0.396000px;}
.ws4{word-spacing:-0.370093px;}
.ws29{word-spacing:-0.354000px;}
.ws17{word-spacing:-0.349907px;}
.ws11{word-spacing:-0.322991px;}
.ws2d{word-spacing:-0.315493px;}
.ws9{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.282617px;}
.ws23{word-spacing:-0.281160px;}
.ws1d{word-spacing:-0.276000px;}
.wsd{word-spacing:-0.255701px;}
.ws2a{word-spacing:-0.251340px;}
.ws18{word-spacing:-0.248434px;}
.ws12{word-spacing:-0.229323px;}
.ws25{word-spacing:-0.228000px;}
.ws31{word-spacing:-0.204480px;}
.ws1f{word-spacing:-0.195960px;}
.ws33{word-spacing:-0.192000px;}
.ws22{word-spacing:-0.181548px;}
.ws26{word-spacing:-0.161880px;}
.ws37{word-spacing:-0.145181px;}
.ws35{word-spacing:-0.136320px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:45.816000px;}
.ws30{word-spacing:47.712000px;}
.ws1c{word-spacing:47.808000px;}
.ws28{word-spacing:50.504400px;}
.ws2e{word-spacing:52.371964px;}
.ws34{word-spacing:53.197020px;}
.ws2f{word-spacing:58.084333px;}
.ws2b{word-spacing:58.764000px;}
.ws27{word-spacing:63.171480px;}
.ws3b{word-spacing:63.711600px;}
.ws32{word-spacing:63.711780px;}
.wse{word-spacing:70.772169px;}
.wsc{word-spacing:70.772307px;}
.ws1a{word-spacing:79.711980px;}
.ws38{word-spacing:79.795320px;}
.ws10{word-spacing:89.396574px;}
.ws36{word-spacing:89.396582px;}
.ws13{word-spacing:89.490769px;}
.ws5{word-spacing:102.515591px;}
.ws7{word-spacing:127.727697px;}
.ws21{word-spacing:150.504000px;}
.ws20{word-spacing:168.516000px;}
.ws39{word-spacing:1708.948200px;}
._43{margin-left:-3956.414400px;}
._2e{margin-left:-2762.651400px;}
._34{margin-left:-2629.547400px;}
._2c{margin-left:-1772.412000px;}
._32{margin-left:-1614.180000px;}
._42{margin-left:-1043.772000px;}
._22{margin-left:-164.312880px;}
._44{margin-left:-119.461320px;}
._23{margin-left:-114.483768px;}
._24{margin-left:-98.777400px;}
._29{margin-left:-30.924000px;}
._c{margin-left:-25.560000px;}
._14{margin-left:-24.552000px;}
._3a{margin-left:-21.516000px;}
._48{margin-left:-20.306400px;}
._8{margin-left:-19.080000px;}
._26{margin-left:-17.556000px;}
._3{margin-left:-16.200000px;}
._3c{margin-left:-15.048000px;}
._d{margin-left:-13.860000px;}
._7{margin-left:-12.720000px;}
._2{margin-left:-10.800000px;}
._1d{margin-left:-9.792000px;}
._11{margin-left:-8.784000px;}
._10{margin-left:-7.488000px;}
._4{margin-left:-6.480000px;}
._12{margin-left:-5.472000px;}
._5{margin-left:-4.320000px;}
._f{margin-left:-3.168000px;}
._1{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._15{width:1.368000px;}
._a{width:2.550000px;}
._6{width:4.320000px;}
._18{width:5.490000px;}
._25{width:6.966000px;}
._1a{width:8.334000px;}
._b{width:9.810000px;}
._13{width:10.818000px;}
._3f{width:11.952000px;}
._1b{width:12.960000px;}
._17{width:15.300000px;}
._19{width:21.805632px;}
._36{width:26.010000px;}
._37{width:31.110000px;}
._38{width:36.210000px;}
._35{width:41.310000px;}
._28{width:80.700360px;}
._27{width:97.196211px;}
._1c{width:120.394020px;}
._3b{width:135.021784px;}
._41{width:166.110000px;}
._2f{width:187.770000px;}
._1f{width:225.744000px;}
._21{width:228.708000px;}
._47{width:233.775000px;}
._1e{width:267.240000px;}
._9{width:292.441200px;}
._16{width:412.957200px;}
._20{width:459.401400px;}
._45{width:470.921220px;}
._3e{width:766.206000px;}
._2a{width:944.400000px;}
._46{width:972.618000px;}
._30{width:1129.584000px;}
._2b{width:1166.322000px;}
._31{width:1181.112000px;}
._40{width:1466.248603px;}
._39{width:1624.678800px;}
._2d{width:1652.364000px;}
._33{width:1743.060000px;}
._e{width:2243.469360px;}
._3d{width:3503.040600px;}
.fc0{color:rgb(0,52,98);}
.fcd{color:rgb(255,255,255);}
.fc1{color:rgb(255,255,255);}
.fc9{color:rgb(255,255,255);}
.fc3{color:transparent;}
.fc4{color:rgb(0,77,128);}
.fc2{color:rgb(222,69,74);}
.fc7{color:rgb(255,248,231);}
.fcc{color:rgb(88,27,173);}
.fc5{color:rgb(145,145,145);}
.fc6{color:rgb(0,0,0);}
.fc8{color:rgb(18,51,95);}
.fcb{color:rgb(1,52,98);}
.fca{color:rgb(205,80,80);}
.fs1a{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs33{font-size:136.320000px;}
.fs38{font-size:145.180800px;}
.fs2e{font-size:161.880000px;}
.fs1d{font-size:168.000000px;}
.fs6{font-size:180.000000px;}
.fs18{font-size:181.547640px;}
.fs20{font-size:192.000000px;}
.fs2a{font-size:195.960000px;}
.fs26{font-size:200.657940px;}
.fs28{font-size:204.480000px;}
.fs0{font-size:216.000000px;}
.fs32{font-size:224.000110px;}
.fs7{font-size:228.000000px;}
.fs1f{font-size:229.323360px;}
.fs2b{font-size:240.000000px;}
.fs3e{font-size:247.080000px;}
.fs24{font-size:248.433660px;}
.fs30{font-size:251.340000px;}
.fs19{font-size:252.000000px;}
.fs17{font-size:255.700920px;}
.fsf{font-size:262.766340px;}
.fs1b{font-size:264.000000px;}
.fs40{font-size:270.000000px;}
.fs29{font-size:276.000000px;}
.fs2d{font-size:281.160000px;}
.fs25{font-size:282.616800px;}
.fs4{font-size:287.999992px;}
.fs8{font-size:288.000000px;}
.fs15{font-size:300.000000px;}
.fs14{font-size:312.000000px;}
.fs31{font-size:315.493110px;}
.fs1c{font-size:322.990680px;}
.fs11{font-size:327.308302px;}
.fsd{font-size:330.000000px;}
.fs21{font-size:336.000000px;}
.fs3d{font-size:336.600000px;}
.fsa{font-size:348.000000px;}
.fs23{font-size:349.906560px;}
.fs2f{font-size:354.000000px;}
.fs34{font-size:354.240000px;}
.fs3a{font-size:360.000000px;}
.fse{font-size:370.093440px;}
.fs3f{font-size:390.000000px;}
.fs2c{font-size:396.000000px;}
.fs3b{font-size:403.738320px;}
.fs22{font-size:408.000000px;}
.fs37{font-size:413.100000px;}
.fs39{font-size:442.800000px;}
.fs1e{font-size:453.900000px;}
.fs36{font-size:457.570080px;}
.fs10{font-size:460.997573px;}
.fs9{font-size:468.000000px;}
.fs5{font-size:510.000000px;}
.fs35{font-size:528.000000px;}
.fs13{font-size:540.000000px;}
.fs16{font-size:571.962600px;}
.fs12{font-size:600.000000px;}
.fs3c{font-size:633.360000px;}
.fs1{font-size:636.000000px;}
.fsb{font-size:696.000000px;}
.fs2{font-size:713.271000px;}
.fs27{font-size:768.000000px;}
.fsc{font-size:780.561000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:0.000090px;}
.yad{bottom:0.056437px;}
.yb2{bottom:0.056467px;}
.yc0{bottom:0.326273px;}
.yf3{bottom:0.726675px;}
.yf5{bottom:0.726690px;}
.y54{bottom:1.937985px;}
.y82{bottom:2.508000px;}
.y6d{bottom:8.205210px;}
.yba{bottom:12.304180px;}
.y86{bottom:13.560555px;}
.y9b{bottom:16.435140px;}
.y3e{bottom:16.616640px;}
.y76{bottom:17.663610px;}
.y48{bottom:19.729290px;}
.y114{bottom:20.792550px;}
.y5e{bottom:20.989545px;}
.y6f{bottom:22.490160px;}
.ybc{bottom:22.490310px;}
.yd3{bottom:23.564850px;}
.y13f{bottom:24.196425px;}
.y135{bottom:24.290250px;}
.y71{bottom:24.415560px;}
.ybe{bottom:24.415590px;}
.y21{bottom:28.320555px;}
.y59{bottom:29.358000px;}
.yae{bottom:29.358053px;}
.ye7{bottom:29.358150px;}
.y79{bottom:30.626460px;}
.y124{bottom:33.552000px;}
.ye5{bottom:33.552150px;}
.y85{bottom:34.809765px;}
.y29{bottom:35.276670px;}
.y65{bottom:35.280300px;}
.y10d{bottom:36.064395px;}
.y102{bottom:36.064440px;}
.yc{bottom:36.459090px;}
.y61{bottom:36.552000px;}
.y7{bottom:36.733545px;}
.y139{bottom:38.102850px;}
.yb8{bottom:38.841600px;}
.y2a{bottom:40.165425px;}
.y1e{bottom:40.198800px;}
.y10f{bottom:41.439990px;}
.y8{bottom:41.940045px;}
.y136{bottom:42.153585px;}
.y32{bottom:42.506970px;}
.yac{bottom:44.037000px;}
.ye2{bottom:44.037030px;}
.ya{bottom:45.319200px;}
.y63{bottom:48.131850px;}
.y56{bottom:50.328150px;}
.y14a{bottom:50.849100px;}
.y8d{bottom:51.797400px;}
.y52{bottom:52.427550px;}
.y4e{bottom:52.687950px;}
.y8f{bottom:54.646590px;}
.y8b{bottom:54.646620px;}
.y12e{bottom:55.803405px;}
.y81{bottom:56.508000px;}
.y130{bottom:58.293285px;}
.ydf{bottom:60.560655px;}
.y2e{bottom:60.908700px;}
.y30{bottom:60.908745px;}
.yaa{bottom:63.314400px;}
.y5c{bottom:72.255075px;}
.y2{bottom:83.033220px;}
.y148{bottom:83.440305px;}
.y134{bottom:93.552000px;}
.ye4{bottom:93.552150px;}
.y60{bottom:96.552000px;}
.yd8{bottom:97.751160px;}
.y138{bottom:98.102850px;}
.yb7{bottom:98.841600px;}
.y13c{bottom:99.046950px;}
.y2f{bottom:104.183355px;}
.y5b{bottom:104.865075px;}
.y127{bottom:118.154550px;}
.y45{bottom:120.494535px;}
.ye1{bottom:125.699370px;}
.y8c{bottom:126.797430px;}
.y90{bottom:126.797460px;}
.yfa{bottom:131.842800px;}
.y77{bottom:136.560615px;}
.y12f{bottom:137.793345px;}
.yc5{bottom:139.145970px;}
.y4d{bottom:141.741750px;}
.yd2{bottom:143.716710px;}
.y92{bottom:147.547050px;}
.y4f{bottom:148.950300px;}
.y1{bottom:150.533250px;}
.y13a{bottom:151.044300px;}
.y5d{bottom:156.130650px;}
.y118{bottom:161.564400px;}
.y144{bottom:164.707350px;}
.yd1{bottom:167.281500px;}
.y12a{bottom:173.294700px;}
.y1b{bottom:175.319850px;}
.yd7{bottom:180.601500px;}
.yb3{bottom:181.116390px;}
.y51{bottom:181.751850px;}
.y101{bottom:183.072900px;}
.yb4{bottom:183.572850px;}
.y116{bottom:196.106700px;}
.y53{bottom:199.439850px;}
.y126{bottom:202.756950px;}
.y75{bottom:211.360650px;}
.y74{bottom:229.024200px;}
.y10c{bottom:230.135400px;}
.y4c{bottom:230.795550px;}
.yc4{bottom:244.514715px;}
.y129{bottom:257.897100px;}
.y147{bottom:273.068250px;}
.y115{bottom:274.930200px;}
.y143{bottom:274.970100px;}
.yc3{bottom:280.514700px;}
.y22{bottom:282.784350px;}
.y13d{bottom:283.226550px;}
.yf4{bottom:284.001450px;}
.yf1{bottom:284.728200px;}
.ye8{bottom:286.861200px;}
.ye6{bottom:287.388900px;}
.y142{bottom:290.912550px;}
.y1a{bottom:297.398250px;}
.y66{bottom:302.172450px;}
.y88{bottom:302.347950px;}
.y50{bottom:303.503850px;}
.y10b{bottom:312.985800px;}
.y44{bottom:317.569800px;}
.y125{bottom:318.183450px;}
.y4b{bottom:319.849350px;}
.y25{bottom:323.214450px;}
.y38{bottom:334.924350px;}
.ya0{bottom:335.348055px;}
.yb1{bottom:335.348070px;}
.y73{bottom:343.914600px;}
.ydb{bottom:344.222100px;}
.y128{bottom:347.928750px;}
.yf9{bottom:353.622900px;}
.y9f{bottom:362.041395px;}
.yb0{bottom:362.041425px;}
.y8e{bottom:368.612850px;}
.y87{bottom:368.613000px;}
.y141{bottom:373.762950px;}
.y43{bottom:383.834700px;}
.y145{bottom:385.658700px;}
.ya9{bottom:389.225700px;}
.y78{bottom:394.842600px;}
.y19{bottom:398.184150px;}
.y9d{bottom:404.678700px;}
.y4a{bottom:408.903150px;}
.y37{bottom:417.774750px;}
.y24{bottom:418.484700px;}
.yd6{bottom:426.343800px;}
.yd{bottom:429.550950px;}
.yd0{bottom:433.516800px;}
.y9c{bottom:436.291350px;}
.yf2{bottom:441.302100px;}
.yf0{bottom:442.028850px;}
.y72{bottom:452.929200px;}
.y68{bottom:459.871650px;}
.y12d{bottom:462.178500px;}
.y10a{bottom:470.987400px;}
.y9e{bottom:494.118240px;}
.yaf{bottom:494.118390px;}
.yda{bottom:494.572500px;}
.y34{bottom:507.028050px;}
.y11c{bottom:509.754000px;}
.y149{bottom:513.208800px;}
.ycf{bottom:518.686500px;}
.y113{bottom:530.533050px;}
.y109{bottom:531.668520px;}
.y55{bottom:534.759600px;}
.y112{bottom:536.533800px;}
.y13b{bottom:541.738350px;}
.y58{bottom:559.570650px;}
.y108{bottom:561.761700px;}
.y133{bottom:562.381800px;}
.y123{bottom:568.267200px;}
.y40{bottom:569.644950px;}
.y99{bottom:571.249650px;}
.y12{bottom:578.286750px;}
.y18{bottom:578.286900px;}
.y2b{bottom:588.814200px;}
.ybd{bottom:597.955200px;}
.y11b{bottom:598.079400px;}
.y12c{bottom:601.562550px;}
.yec{bottom:616.150500px;}
.y33{bottom:628.780050px;}
.y70{bottom:628.843350px;}
.y67{bottom:630.081000px;}
.y7a{bottom:635.988000px;}
.yd9{bottom:644.922900px;}
.ycb{bottom:651.739305px;}
.y11{bottom:661.137150px;}
.y17{bottom:661.137300px;}
.y3f{bottom:663.264150px;}
.y91{bottom:666.038400px;}
.yce{bottom:669.036900px;}
.y12b{bottom:677.764650px;}
.y100{bottom:683.937900px;}
.yca{bottom:684.971535px;}
.y11a{bottom:686.404650px;}
.y36{bottom:691.495650px;}
.y5f{bottom:701.984100px;}
.y6c{bottom:702.058200px;}
.y98{bottom:705.014550px;}
.ya4{bottom:712.963500px;}
.ya3{bottom:716.399550px;}
.ye3{bottom:722.077200px;}
.ya2{bottom:728.939550px;}
.yb6{bottom:732.062250px;}
.y13{bottom:752.925450px;}
.y5{bottom:759.928650px;}
.yff{bottom:766.788300px;}
.y42{bottom:769.353450px;}
.y2d{bottom:774.221700px;}
.y119{bottom:774.730050px;}
.ye{bottom:778.010250px;}
.y49{bottom:778.118850px;}
.y132{bottom:784.563090px;}
.ya1{bottom:794.804970px;}
.y23{bottom:805.691250px;}
.y35{bottom:808.033050px;}
.yef{bottom:822.151800px;}
.y14e{bottom:833.212050px;}
.y97{bottom:838.779450px;}
.y111{bottom:849.817050px;}
.ycd{bottom:853.706400px;}
.yd5{bottom:855.533400px;}
.yf8{bottom:866.701200px;}
.y10{bottom:875.041950px;}
.y2c{bottom:896.415300px;}
.y105{bottom:897.306150px;}
.yfe{bottom:897.306300px;}
.y14d{bottom:908.812050px;}
.y6{bottom:911.068800px;}
.yb9{bottom:918.171000px;}
.ya7{bottom:918.893550px;}
.yc8{bottom:923.185950px;}
.y131{bottom:924.621390px;}
.y64{bottom:944.104650px;}
.y4{bottom:947.802300px;}
.yee{bottom:951.053400px;}
.yf{bottom:957.892350px;}
.ydd{bottom:968.370150px;}
.y27{bottom:968.675700px;}
.y96{bottom:972.544350px;}
.y11d{bottom:978.949350px;}
.y104{bottom:980.156550px;}
.yfd{bottom:980.156700px;}
.y14c{bottom:984.412050px;}
.yf7{bottom:988.995900px;}
.y6a{bottom:990.505350px;}
.y8a{bottom:1010.420100px;}
.ycc{bottom:1013.512500px;}
.yd4{bottom:1015.339500px;}
.yab{bottom:1022.584950px;}
.y3d{bottom:1033.945500px;}
.y7b{bottom:1038.761850px;}
.yc9{bottom:1041.843750px;}
.yf6{bottom:1043.790600px;}
.y103{bottom:1063.006950px;}
.yfc{bottom:1063.007100px;}
.y26{bottom:1063.945950px;}
.y7d{bottom:1069.236750px;}
.y7f{bottom:1069.236900px;}
.yc7{bottom:1073.536350px;}
.y117{bottom:1073.950650px;}
.y89{bottom:1076.685000px;}
.ybb{bottom:1078.978800px;}
.yed{bottom:1079.955150px;}
.y16{bottom:1090.614450px;}
.y9a{bottom:1101.684600px;}
.y20{bottom:1105.173450px;}
.yde{bottom:1110.011850px;}
.y62{bottom:1117.940700px;}
.y95{bottom:1118.119800px;}
.y3{bottom:1131.547200px;}
.y7c{bottom:1135.501650px;}
.y7e{bottom:1135.501800px;}
.ydc{bottom:1137.075750px;}
.y3c{bottom:1149.426150px;}
.y137{bottom:1164.657450px;}
.y120{bottom:1170.949350px;}
.y14b{bottom:1171.240350px;}
.y15{bottom:1173.464850px;}
.y122{bottom:1174.556850px;}
.y69{bottom:1175.376750px;}
.y10e{bottom:1176.923100px;}
.y31{bottom:1181.292285px;}
.y28{bottom:1198.732650px;}
.ya6{bottom:1202.984250px;}
.y11f{bottom:1203.560400px;}
.ybf{bottom:1222.932900px;}
.y121{bottom:1228.556850px;}
.yc6{bottom:1229.079300px;}
.y1f{bottom:1229.622450px;}
.y57{bottom:1242.987450px;}
.yeb{bottom:1243.426950px;}
.y107{bottom:1246.530870px;}
.y6e{bottom:1249.866750px;}
.ya5{bottom:1254.734310px;}
.y14{bottom:1256.315250px;}
.y94{bottom:1257.129450px;}
.y84{bottom:1264.564500px;}
.y140{bottom:1268.691300px;}
.y106{bottom:1276.624050px;}
.y11e{bottom:1286.410800px;}
.y46{bottom:1293.468450px;}
.y80{bottom:1298.350200px;}
.ye9{bottom:1300.150650px;}
.y3a{bottom:1315.521300px;}
.y41{bottom:1334.546400px;}
.ya8{bottom:1385.508000px;}
.y9{bottom:1396.329150px;}
.yc2{bottom:1417.074300px;}
.y93{bottom:1418.985600px;}
.y1d{bottom:1419.640350px;}
.y110{bottom:1434.769200px;}
.y83{bottom:1435.360350px;}
.yb5{bottom:1445.871600px;}
.ye0{bottom:1449.269400px;}
.y39{bottom:1451.541150px;}
.y5a{bottom:1458.080850px;}
.y6b{bottom:1459.620450px;}
.y1c{bottom:1459.839150px;}
.y13e{bottom:1461.777900px;}
.yfb{bottom:1462.904550px;}
.yb{bottom:1463.024850px;}
.y47{bottom:1466.903100px;}
.yea{bottom:1471.045800px;}
.y146{bottom:1479.837750px;}
.yc1{bottom:1510.127550px;}
.h70{height:36.336450px;}
.h3b{height:48.680745px;}
.h8b{height:54.423930px;}
.h26{height:56.523360px;}
.h4c{height:58.178355px;}
.h20{height:59.702340px;}
.h78{height:64.699065px;}
.h5e{height:65.622570px;}
.h36{height:66.114840px;}
.h3e{height:69.028695px;}
.h6e{height:69.359010px;}
.h68{height:73.325610px;}
.h29{height:73.500045px;}
.h2d{height:75.574965px;}
.h18{height:78.948000px;}
.h38{height:79.612485px;}
.h5{height:81.000000px;}
.h3a{height:82.325130px;}
.h80{height:84.000045px;}
.h60{height:84.599535px;}
.h33{height:85.500015px;}
.h13{height:91.976550px;}
.h45{height:93.830220px;}
.h1e{height:96.375705px;}
.h85{height:101.296845px;}
.h76{height:103.012350px;}
.h73{height:103.012395px;}
.h59{height:111.000060px;}
.h56{height:111.373440px;}
.h16{height:114.107280px;}
.h3{height:114.301680px;}
.h31{height:114.900150px;}
.h10{height:125.084865px;}
.h28{height:126.000075px;}
.h63{height:130.176000px;}
.h2a{height:131.040000px;}
.h9{height:135.000000px;}
.h2f{height:139.763670px;}
.h4b{height:140.352000px;}
.h67{height:144.000000px;}
.h6d{height:144.000045px;}
.h2e{height:149.760000px;}
.h1b{height:150.000000px;}
.h86{height:154.375050px;}
.h6b{height:155.277750px;}
.h5d{height:155.875500px;}
.h41{height:157.944000px;}
.h2c{height:159.884850px;}
.h1{height:168.480000px;}
.h54{height:170.653500px;}
.h3d{height:171.000000px;}
.h4d{height:174.643728px;}
.h21{height:175.922233px;}
.ha{height:177.840000px;}
.h49{height:187.200000px;}
.h58{height:188.508000px;}
.h3c{height:191.614190px;}
.h7{height:191.953120px;}
.h32{height:192.000000px;}
.h50{height:193.438080px;}
.h7f{height:195.264000px;}
.h22{height:196.560000px;}
.h8d{height:198.105469px;}
.h44{height:198.144000px;}
.h48{height:199.290900px;}
.h24{height:205.920000px;}
.h1d{height:206.400000px;}
.h8e{height:206.718750px;}
.h8a{height:210.600000px;}
.h6{height:214.205850px;}
.hd{height:216.000000px;}
.h5f{height:217.059260px;}
.h8c{height:218.341700px;}
.h82{height:218.947650px;}
.h71{height:220.602634px;}
.h55{height:220.813500px;}
.h27{height:222.217588px;}
.h30{height:223.945312px;}
.hb{height:224.640000px;}
.h46{height:235.960680px;}
.h3f{height:237.236648px;}
.h83{height:237.684000px;}
.h39{height:238.986180px;}
.h37{height:240.735713px;}
.h1c{height:243.360000px;}
.h5c{height:243.552000px;}
.h61{height:247.242240px;}
.h15{height:247.500000px;}
.h81{height:253.204950px;}
.h14{height:254.624287px;}
.h74{height:255.435840px;}
.h12{height:257.400000px;}
.h7c{height:262.080000px;}
.h7d{height:262.548000px;}
.h62{height:267.456000px;}
.he{height:271.440000px;}
.h79{height:273.734581px;}
.h47{height:274.884840px;}
.h64{height:276.307200px;}
.h6f{height:277.280972px;}
.h7a{height:280.800000px;}
.h5b{height:296.397780px;}
.h51{height:296.397900px;}
.h84{height:298.751040px;}
.h89{height:304.200000px;}
.h69{height:310.232514px;}
.h17{height:317.166330px;}
.h35{height:318.240000px;}
.h75{height:319.812720px;}
.h72{height:322.218000px;}
.h4a{height:329.977350px;}
.h53{height:337.328520px;}
.h4e{height:338.552400px;}
.h77{height:345.384000px;}
.h87{height:351.093750px;}
.h2b{height:354.042000px;}
.h6a{height:358.627200px;}
.h66{height:360.624000px;}
.hc{height:365.040000px;}
.h25{height:379.175850px;}
.h1f{height:386.646718px;}
.h65{height:388.608000px;}
.h57{height:391.903560px;}
.h1a{height:394.740000px;}
.h8{height:397.800000px;}
.h52{height:398.898600px;}
.h7e{height:401.184000px;}
.h42{height:406.656000px;}
.h19{height:438.600000px;}
.h6c{height:456.063161px;}
.h23{height:478.269000px;}
.h4{height:483.597738px;}
.h7b{height:494.020800px;}
.h2{height:496.080000px;}
.h34{height:508.776000px;}
.h11{height:529.220358px;}
.hf{height:542.880000px;}
.h40{height:559.872000px;}
.h43{height:617.184000px;}
.h88{height:619.875000px;}
.h4f{height:796.716240px;}
.h5a{height:796.716840px;}
.h0{height:1620.000000px;}
.w32{width:42.291585px;}
.w29{width:47.930460px;}
.w39{width:50.628780px;}
.w1{width:74.715135px;}
.w18{width:79.544970px;}
.w3{width:81.763740px;}
.w8{width:89.655135px;}
.w15{width:95.429130px;}
.w17{width:96.360765px;}
.w20{width:114.755685px;}
.w30{width:131.277750px;}
.w16{width:157.034100px;}
.w2f{width:164.104950px;}
.w19{width:201.273600px;}
.w1a{width:220.465200px;}
.wc{width:251.493150px;}
.w2{width:279.964500px;}
.w9{width:376.718550px;}
.w2a{width:380.429100px;}
.w11{width:396.306600px;}
.w2c{width:400.305150px;}
.w26{width:415.768200px;}
.w24{width:425.069400px;}
.w10{width:449.503050px;}
.w14{width:451.037100px;}
.we{width:454.512000px;}
.w2e{width:473.700000px;}
.w34{width:488.403000px;}
.w38{width:507.656250px;}
.w13{width:528.503850px;}
.w7{width:528.592350px;}
.wd{width:567.276000px;}
.w25{width:576.398400px;}
.w1c{width:594.636000px;}
.w5{width:600.254100px;}
.w21{width:615.592350px;}
.w12{width:645.508500px;}
.w33{width:648.925800px;}
.w23{width:680.592000px;}
.w3a{width:681.426900px;}
.w28{width:681.693000px;}
.w2d{width:685.310250px;}
.w4{width:685.487550px;}
.w6{width:700.670400px;}
.w1d{width:704.565900px;}
.w22{width:743.718300px;}
.w1f{width:760.748700px;}
.w31{width:761.034000px;}
.w36{width:802.533300px;}
.w37{width:845.976300px;}
.w35{width:971.343750px;}
.w1b{width:975.439950px;}
.wa{width:984.817500px;}
.wb{width:1086.498750px;}
.w1e{width:1184.578200px;}
.w27{width:1236.475650px;}
.w2b{width:2326.066500px;}
.wf{width:2692.230000px;}
.w0{width:2880.000000px;}
.x27{left:-6.863550px;}
.x3{left:-3.388050px;}
.x3b{left:-2.181000px;}
.x0{left:0.000000px;}
.x14{left:1.665420px;}
.x41{left:10.500000px;}
.xbc{left:12.000000px;}
.x35{left:16.582500px;}
.x39{left:18.420000px;}
.x48{left:21.881835px;}
.x46{left:26.505000px;}
.x4c{left:28.119000px;}
.xc4{left:29.296500px;}
.x75{left:30.321000px;}
.x4a{left:34.361850px;}
.xc9{left:37.860300px;}
.x96{left:39.450000px;}
.x74{left:40.617000px;}
.x30{left:45.649245px;}
.x6{left:49.759500px;}
.x7{left:52.833195px;}
.x98{left:54.741210px;}
.x1f{left:56.152500px;}
.xa2{left:57.719415px;}
.x61{left:59.188500px;}
.x79{left:61.262700px;}
.x1d{left:62.671500px;}
.xc8{left:64.330350px;}
.xc6{left:66.082500px;}
.x21{left:67.408965px;}
.xa{left:71.029245px;}
.xcd{left:72.641325px;}
.xc0{left:74.470500px;}
.xe{left:84.288645px;}
.x16{left:88.076340px;}
.x13{left:89.324985px;}
.x12{left:90.990405px;}
.x8{left:93.153660px;}
.x25{left:101.415165px;}
.xac{left:104.382975px;}
.x47{left:108.225000px;}
.x93{left:110.224500px;}
.x60{left:113.584500px;}
.x4d{left:116.458950px;}
.xb1{left:120.238485px;}
.x37{left:121.591500px;}
.x34{left:130.432500px;}
.x44{left:141.741975px;}
.x2f{left:146.297310px;}
.x1{left:147.899865px;}
.x15{left:152.403000px;}
.x77{left:159.470700px;}
.xb2{left:160.600350px;}
.x59{left:173.116050px;}
.x9b{left:187.563600px;}
.xbd{left:193.829550px;}
.x3e{left:200.665200px;}
.x2c{left:204.996900px;}
.xb3{left:207.356550px;}
.x7e{left:212.902500px;}
.xcc{left:217.977150px;}
.x85{left:236.192400px;}
.x33{left:243.094500px;}
.xb4{left:245.981400px;}
.xb5{left:248.169300px;}
.x8f{left:267.867000px;}
.x36{left:274.444500px;}
.x91{left:276.966750px;}
.x49{left:280.963350px;}
.xb7{left:312.952950px;}
.x51{left:319.630050px;}
.x90{left:350.446800px;}
.x28{left:355.010850px;}
.x29{left:358.079250px;}
.x63{left:367.918500px;}
.x5a{left:370.003950px;}
.xaf{left:373.613700px;}
.xad{left:378.396750px;}
.xab{left:386.316600px;}
.x86{left:388.938240px;}
.xa9{left:397.674090px;}
.xcb{left:401.723100px;}
.x4e{left:414.478650px;}
.xbe{left:431.260950px;}
.x8b{left:440.875650px;}
.xb8{left:442.672950px;}
.xb0{left:463.613700px;}
.x26{left:471.016200px;}
.x84{left:484.814550px;}
.x43{left:497.359830px;}
.xa7{left:502.745250px;}
.x8d{left:509.162850px;}
.xd{left:514.692000px;}
.xa8{left:542.507940px;}
.x99{left:579.819900px;}
.xc7{left:601.410300px;}
.x97{left:611.656350px;}
.x9c{left:619.563600px;}
.x82{left:658.895400px;}
.xa1{left:676.549050px;}
.x72{left:747.627750px;}
.x83{left:788.382615px;}
.xf{left:799.168350px;}
.x50{left:821.996100px;}
.xa5{left:823.967700px;}
.x89{left:828.871650px;}
.x2{left:833.095950px;}
.x94{left:893.790600px;}
.x4f{left:904.641900px;}
.x78{left:943.926150px;}
.x5c{left:965.398200px;}
.xcf{left:978.471300px;}
.x9a{left:1011.819900px;}
.x3f{left:1013.409300px;}
.x38{left:1025.012100px;}
.x3c{left:1028.987250px;}
.x11{left:1035.868050px;}
.xc1{left:1078.502565px;}
.x24{left:1080.205500px;}
.xc2{left:1084.728315px;}
.x2d{left:1090.727250px;}
.xd4{left:1099.296750px;}
.x8e{left:1110.533100px;}
.x10{left:1112.167830px;}
.xbb{left:1183.584300px;}
.x22{left:1240.566000px;}
.x8a{left:1251.777000px;}
.xd2{left:1270.302000px;}
.xa3{left:1272.284400px;}
.xaa{left:1275.671700px;}
.x2b{left:1277.042850px;}
.xb{left:1291.550400px;}
.xd7{left:1293.539100px;}
.xd5{left:1298.036700px;}
.x87{left:1309.848000px;}
.xd6{left:1311.468750px;}
.x23{left:1339.242000px;}
.x76{left:1353.362250px;}
.x7d{left:1394.731500px;}
.x7a{left:1404.904350px;}
.x42{left:1424.250000px;}
.x1a{left:1432.494000px;}
.x4{left:1434.118500px;}
.xc{left:1440.355350px;}
.x64{left:1469.838000px;}
.x20{left:1473.369600px;}
.x3d{left:1498.156050px;}
.x5{left:1520.086500px;}
.x65{left:1525.884135px;}
.x52{left:1549.591500px;}
.xa4{left:1556.569500px;}
.x5f{left:1560.297000px;}
.x5e{left:1607.245500px;}
.x62{left:1692.133500px;}
.x70{left:1711.749000px;}
.x32{left:1720.938000px;}
.x6b{left:1730.857500px;}
.x53{left:1764.148500px;}
.x9d{left:1778.368500px;}
.x2e{left:1782.853500px;}
.x9e{left:1785.568500px;}
.x88{left:1799.088000px;}
.x3a{left:1837.756500px;}
.x58{left:1845.321000px;}
.x45{left:1853.715000px;}
.xc5{left:1856.779500px;}
.xbf{left:1860.568500px;}
.x7b{left:1883.814000px;}
.x1b{left:1910.713500px;}
.x67{left:1938.394800px;}
.x92{left:1960.842000px;}
.xd0{left:1962.342000px;}
.x68{left:1983.945300px;}
.xb6{left:1987.282500px;}
.x73{left:1992.664500px;}
.x66{left:1997.753250px;}
.x6c{left:2001.139050px;}
.x5b{left:2024.079000px;}
.x6d{left:2027.762550px;}
.x19{left:2060.098500px;}
.x31{left:2066.874000px;}
.xae{left:2092.744500px;}
.x2a{left:2102.827500px;}
.xa6{left:2118.966000px;}
.x56{left:2156.086500px;}
.x1c{left:2159.505000px;}
.x1e{left:2164.222500px;}
.x80{left:2169.312000px;}
.x18{left:2174.899500px;}
.x81{left:2176.027500px;}
.x17{left:2182.923000px;}
.xca{left:2184.076830px;}
.x7f{left:2198.307000px;}
.x69{left:2199.824700px;}
.x8c{left:2213.742000px;}
.x54{left:2216.323500px;}
.x4b{left:2220.823500px;}
.x71{left:2226.264000px;}
.x9f{left:2240.347500px;}
.x40{left:2255.641500px;}
.xd3{left:2259.354000px;}
.x6a{left:2266.859850px;}
.x95{left:2311.353000px;}
.x5d{left:2314.911000px;}
.x7c{left:2332.773000px;}
.xa0{left:2337.699000px;}
.x6e{left:2357.018442px;}
.xb9{left:2393.089500px;}
.xc3{left:2476.077000px;}
.x57{left:2484.076500px;}
.x6f{left:2500.595970px;}
.xba{left:2517.617505px;}
.xd1{left:2537.581500px;}
.x55{left:2540.496000px;}
.x9{left:2575.369500px;}
.xce{left:2842.015500px;}
@media print{
.v4{vertical-align:-102.444082pt;}
.v15{vertical-align:-88.000000pt;}
.v2{vertical-align:-82.242880pt;}
.v23{vertical-align:-78.666667pt;}
.v9{vertical-align:-77.756587pt;}
.v7{vertical-align:-71.775680pt;}
.v24{vertical-align:-70.109620pt;}
.vc{vertical-align:-64.000000pt;}
.va{vertical-align:-62.803787pt;}
.v11{vertical-align:-61.333333pt;}
.v6{vertical-align:-56.822347pt;}
.v22{vertical-align:-53.973333pt;}
.v19{vertical-align:-50.666667pt;}
.v26{vertical-align:-42.666667pt;}
.v2e{vertical-align:-39.987200pt;}
.v28{vertical-align:-37.546667pt;}
.v30{vertical-align:-28.173867pt;}
.v0{vertical-align:0.000000pt;}
.v29{vertical-align:18.462400pt;}
.v1{vertical-align:21.503573pt;}
.v31{vertical-align:24.411200pt;}
.v2f{vertical-align:39.987200pt;}
.v27{vertical-align:42.666667pt;}
.v1e{vertical-align:44.586667pt;}
.v1a{vertical-align:50.666667pt;}
.v1d{vertical-align:52.693387pt;}
.v12{vertical-align:61.333333pt;}
.v34{vertical-align:64.000000pt;}
.v8{vertical-align:71.775680pt;}
.v10{vertical-align:75.552747pt;}
.v3{vertical-align:82.242880pt;}
.v16{vertical-align:88.000000pt;}
.vf{vertical-align:90.773333pt;}
.v25{vertical-align:94.720000pt;}
.v1f{vertical-align:97.280053pt;}
.v5{vertical-align:102.444082pt;}
.v2c{vertical-align:103.820800pt;}
.v2b{vertical-align:106.228000pt;}
.v2d{vertical-align:107.637973pt;}
.v14{vertical-align:112.400533pt;}
.v33{vertical-align:114.453333pt;}
.v2a{vertical-align:119.099733pt;}
.v21{vertical-align:121.180053pt;}
.v13{vertical-align:130.240107pt;}
.v1c{vertical-align:160.412907pt;}
.v32{vertical-align:180.480000pt;}
.v20{vertical-align:182.513387pt;}
.vb{vertical-align:187.904000pt;}
.vd{vertical-align:192.000000pt;}
.v1b{vertical-align:211.079573pt;}
.v17{vertical-align:293.606720pt;}
.ve{vertical-align:372.480000pt;}
.v18{vertical-align:511.846720pt;}
.ls38{letter-spacing:-45.786667pt;}
.lsf{letter-spacing:-22.666667pt;}
.ls3b{letter-spacing:-18.360000pt;}
.ls34{letter-spacing:-15.866667pt;}
.ls1a{letter-spacing:-14.133333pt;}
.ls41{letter-spacing:-13.600000pt;}
.lsa{letter-spacing:-12.373333pt;}
.ls50{letter-spacing:-12.133333pt;}
.ls2{letter-spacing:-11.333333pt;}
.ls1{letter-spacing:-11.306667pt;}
.ls42{letter-spacing:-11.259733pt;}
.lse{letter-spacing:-9.066667pt;}
.ls45{letter-spacing:-8.976000pt;}
.ls12{letter-spacing:-8.069333pt;}
.lsb{letter-spacing:-7.333333pt;}
.ls4f{letter-spacing:-6.933333pt;}
.ls13{letter-spacing:-6.826667pt;}
.ls44{letter-spacing:-5.984000pt;}
.ls43{letter-spacing:-5.973333pt;}
.ls51{letter-spacing:-4.800000pt;}
.ls52{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000029pt;}
.lsc{letter-spacing:0.000032pt;}
.ls33{letter-spacing:0.000053pt;}
.ls1c{letter-spacing:0.000107pt;}
.ls7{letter-spacing:0.000133pt;}
.ls47{letter-spacing:0.000160pt;}
.ls28{letter-spacing:0.000213pt;}
.ls4e{letter-spacing:0.068267pt;}
.ls9{letter-spacing:0.417440pt;}
.ls14{letter-spacing:3.191467pt;}
.ls29{letter-spacing:4.053333pt;}
.ls24{letter-spacing:7.405333pt;}
.ls1f{letter-spacing:12.862400pt;}
.ls4c{letter-spacing:14.222400pt;}
.ls4b{letter-spacing:14.435360pt;}
.ls2e{letter-spacing:14.435573pt;}
.ls3c{letter-spacing:14.591040pt;}
.ls3a{letter-spacing:14.929306pt;}
.ls11{letter-spacing:15.950214pt;}
.ls49{letter-spacing:16.085227pt;}
.ls1e{letter-spacing:18.304000pt;}
.ls1b{letter-spacing:18.304053pt;}
.ls19{letter-spacing:42.941867pt;}
.ls8{letter-spacing:44.444427pt;}
.ls25{letter-spacing:45.037333pt;}
.ls31{letter-spacing:56.889067pt;}
.lsd{letter-spacing:63.136160pt;}
.ls26{letter-spacing:68.148160pt;}
.ls4d{letter-spacing:71.110933pt;}
.ls30{letter-spacing:71.111093pt;}
.ls4a{letter-spacing:71.111147pt;}
.ls3e{letter-spacing:71.111467pt;}
.ls2f{letter-spacing:76.252640pt;}
.ls2c{letter-spacing:77.899517pt;}
.ls2b{letter-spacing:77.899530pt;}
.ls10{letter-spacing:79.750768pt;}
.ls37{letter-spacing:79.750777pt;}
.ls3d{letter-spacing:80.247787pt;}
.ls17{letter-spacing:84.872320pt;}
.ls48{letter-spacing:85.925920pt;}
.ls2d{letter-spacing:86.396678pt;}
.ls2a{letter-spacing:87.407467pt;}
.ls4{letter-spacing:91.380937pt;}
.ls3{letter-spacing:91.381093pt;}
.ls27{letter-spacing:92.681493pt;}
.ls3f{letter-spacing:97.772800pt;}
.ls21{letter-spacing:97.777600pt;}
.ls32{letter-spacing:99.828640pt;}
.ls1d{letter-spacing:100.924267pt;}
.ls20{letter-spacing:103.578453pt;}
.ls46{letter-spacing:107.120213pt;}
.ls15{letter-spacing:109.510933pt;}
.ls6{letter-spacing:113.826291pt;}
.ls22{letter-spacing:126.570133pt;}
.ls35{letter-spacing:147.681280pt;}
.ls40{letter-spacing:161.772800pt;}
.ls39{letter-spacing:184.252747pt;}
.ls36{letter-spacing:184.253013pt;}
.ls18{letter-spacing:276.926613pt;}
.ls16{letter-spacing:473.414933pt;}
.ls23{letter-spacing:588.490133pt;}
.ws3{word-spacing:-160.853333pt;}
.ws0{word-spacing:-149.759996pt;}
.ws3a{word-spacing:-126.933333pt;}
.ws2c{word-spacing:-87.722133pt;}
.ws2{word-spacing:-86.613333pt;}
.ws6{word-spacing:-82.133333pt;}
.wsa{word-spacing:-71.680000pt;}
.wsf{word-spacing:-65.706667pt;}
.ws3c{word-spacing:-62.400000pt;}
.ws3d{word-spacing:-61.440000pt;}
.wsb{word-spacing:-56.746667pt;}
.ws14{word-spacing:-47.786667pt;}
.ws16{word-spacing:-38.860800pt;}
.ws15{word-spacing:-28.842667pt;}
.ws8{word-spacing:-0.409776pt;}
.ws24{word-spacing:-0.352000pt;}
.ws4{word-spacing:-0.328972pt;}
.ws29{word-spacing:-0.314667pt;}
.ws17{word-spacing:-0.311028pt;}
.ws11{word-spacing:-0.287103pt;}
.ws2d{word-spacing:-0.280438pt;}
.ws9{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.251215pt;}
.ws23{word-spacing:-0.249920pt;}
.ws1d{word-spacing:-0.245333pt;}
.wsd{word-spacing:-0.227290pt;}
.ws2a{word-spacing:-0.223413pt;}
.ws18{word-spacing:-0.220830pt;}
.ws12{word-spacing:-0.203843pt;}
.ws25{word-spacing:-0.202667pt;}
.ws31{word-spacing:-0.181760pt;}
.ws1f{word-spacing:-0.174187pt;}
.ws33{word-spacing:-0.170667pt;}
.ws22{word-spacing:-0.161376pt;}
.ws26{word-spacing:-0.143893pt;}
.ws37{word-spacing:-0.129050pt;}
.ws35{word-spacing:-0.121173pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:40.725333pt;}
.ws30{word-spacing:42.410667pt;}
.ws1c{word-spacing:42.496000pt;}
.ws28{word-spacing:44.892800pt;}
.ws2e{word-spacing:46.552857pt;}
.ws34{word-spacing:47.286240pt;}
.ws2f{word-spacing:51.630519pt;}
.ws2b{word-spacing:52.234667pt;}
.ws27{word-spacing:56.152427pt;}
.ws3b{word-spacing:56.632533pt;}
.ws32{word-spacing:56.632693pt;}
.wse{word-spacing:62.908595pt;}
.wsc{word-spacing:62.908717pt;}
.ws1a{word-spacing:70.855093pt;}
.ws38{word-spacing:70.929173pt;}
.ws10{word-spacing:79.463621pt;}
.ws36{word-spacing:79.463628pt;}
.ws13{word-spacing:79.547350pt;}
.ws5{word-spacing:91.124970pt;}
.ws7{word-spacing:113.535730pt;}
.ws21{word-spacing:133.781333pt;}
.ws20{word-spacing:149.792000pt;}
.ws39{word-spacing:1519.065067pt;}
._43{margin-left:-3516.812800pt;}
._2e{margin-left:-2455.690133pt;}
._34{margin-left:-2337.375467pt;}
._2c{margin-left:-1575.477333pt;}
._32{margin-left:-1434.826667pt;}
._42{margin-left:-927.797333pt;}
._22{margin-left:-146.055893pt;}
._44{margin-left:-106.187840pt;}
._23{margin-left:-101.763349pt;}
._24{margin-left:-87.802133pt;}
._29{margin-left:-27.488000pt;}
._c{margin-left:-22.720000pt;}
._14{margin-left:-21.824000pt;}
._3a{margin-left:-19.125333pt;}
._48{margin-left:-18.050133pt;}
._8{margin-left:-16.960000pt;}
._26{margin-left:-15.605333pt;}
._3{margin-left:-14.400000pt;}
._3c{margin-left:-13.376000pt;}
._d{margin-left:-12.320000pt;}
._7{margin-left:-11.306667pt;}
._2{margin-left:-9.600000pt;}
._1d{margin-left:-8.704000pt;}
._11{margin-left:-7.808000pt;}
._10{margin-left:-6.656000pt;}
._4{margin-left:-5.760000pt;}
._12{margin-left:-4.864000pt;}
._5{margin-left:-3.840000pt;}
._f{margin-left:-2.816000pt;}
._1{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._15{width:1.216000pt;}
._a{width:2.266667pt;}
._6{width:3.840000pt;}
._18{width:4.880000pt;}
._25{width:6.192000pt;}
._1a{width:7.408000pt;}
._b{width:8.720000pt;}
._13{width:9.616000pt;}
._3f{width:10.624000pt;}
._1b{width:11.520000pt;}
._17{width:13.600000pt;}
._19{width:19.382784pt;}
._36{width:23.120000pt;}
._37{width:27.653333pt;}
._38{width:32.186667pt;}
._35{width:36.720000pt;}
._28{width:71.733653pt;}
._27{width:86.396632pt;}
._1c{width:107.016907pt;}
._3b{width:120.019364pt;}
._41{width:147.653333pt;}
._2f{width:166.906667pt;}
._1f{width:200.661333pt;}
._21{width:203.296000pt;}
._47{width:207.800000pt;}
._1e{width:237.546667pt;}
._9{width:259.947733pt;}
._16{width:367.073067pt;}
._20{width:408.356800pt;}
._45{width:418.596640pt;}
._3e{width:681.072000pt;}
._2a{width:839.466667pt;}
._46{width:864.549333pt;}
._30{width:1004.074667pt;}
._2b{width:1036.730667pt;}
._31{width:1049.877333pt;}
._40{width:1303.332092pt;}
._39{width:1444.158933pt;}
._2d{width:1468.768000pt;}
._33{width:1549.386667pt;}
._e{width:1994.194987pt;}
._3d{width:3113.813867pt;}
.fs1a{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs33{font-size:121.173333pt;}
.fs38{font-size:129.049600pt;}
.fs2e{font-size:143.893333pt;}
.fs1d{font-size:149.333333pt;}
.fs6{font-size:160.000000pt;}
.fs18{font-size:161.375680pt;}
.fs20{font-size:170.666667pt;}
.fs2a{font-size:174.186667pt;}
.fs26{font-size:178.362613pt;}
.fs28{font-size:181.760000pt;}
.fs0{font-size:192.000000pt;}
.fs32{font-size:199.111209pt;}
.fs7{font-size:202.666667pt;}
.fs1f{font-size:203.842987pt;}
.fs2b{font-size:213.333333pt;}
.fs3e{font-size:219.626667pt;}
.fs24{font-size:220.829920pt;}
.fs30{font-size:223.413333pt;}
.fs19{font-size:224.000000pt;}
.fs17{font-size:227.289707pt;}
.fsf{font-size:233.570080pt;}
.fs1b{font-size:234.666667pt;}
.fs40{font-size:240.000000pt;}
.fs29{font-size:245.333333pt;}
.fs2d{font-size:249.920000pt;}
.fs25{font-size:251.214933pt;}
.fs4{font-size:255.999993pt;}
.fs8{font-size:256.000000pt;}
.fs15{font-size:266.666667pt;}
.fs14{font-size:277.333333pt;}
.fs31{font-size:280.438320pt;}
.fs1c{font-size:287.102827pt;}
.fs11{font-size:290.940713pt;}
.fsd{font-size:293.333333pt;}
.fs21{font-size:298.666667pt;}
.fs3d{font-size:299.200000pt;}
.fsa{font-size:309.333333pt;}
.fs23{font-size:311.028053pt;}
.fs2f{font-size:314.666667pt;}
.fs34{font-size:314.880000pt;}
.fs3a{font-size:320.000000pt;}
.fse{font-size:328.971947pt;}
.fs3f{font-size:346.666667pt;}
.fs2c{font-size:352.000000pt;}
.fs3b{font-size:358.878507pt;}
.fs22{font-size:362.666667pt;}
.fs37{font-size:367.200000pt;}
.fs39{font-size:393.600000pt;}
.fs1e{font-size:403.466667pt;}
.fs36{font-size:406.728960pt;}
.fs10{font-size:409.775620pt;}
.fs9{font-size:416.000000pt;}
.fs5{font-size:453.333333pt;}
.fs35{font-size:469.333333pt;}
.fs13{font-size:480.000000pt;}
.fs16{font-size:508.411200pt;}
.fs12{font-size:533.333333pt;}
.fs3c{font-size:562.986667pt;}
.fs1{font-size:565.333333pt;}
.fsb{font-size:618.666667pt;}
.fs2{font-size:634.018667pt;}
.fs27{font-size:682.666667pt;}
.fsc{font-size:693.832000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:0.000080pt;}
.yad{bottom:0.050166pt;}
.yb2{bottom:0.050193pt;}
.yc0{bottom:0.290020pt;}
.yf3{bottom:0.645933pt;}
.yf5{bottom:0.645947pt;}
.y54{bottom:1.722653pt;}
.y82{bottom:2.229333pt;}
.y6d{bottom:7.293520pt;}
.yba{bottom:10.937049pt;}
.y86{bottom:12.053827pt;}
.y9b{bottom:14.609013pt;}
.y3e{bottom:14.770347pt;}
.y76{bottom:15.700987pt;}
.y48{bottom:17.537147pt;}
.y114{bottom:18.482267pt;}
.y5e{bottom:18.657373pt;}
.y6f{bottom:19.991253pt;}
.ybc{bottom:19.991387pt;}
.yd3{bottom:20.946533pt;}
.y13f{bottom:21.507933pt;}
.y135{bottom:21.591333pt;}
.y71{bottom:21.702720pt;}
.ybe{bottom:21.702747pt;}
.y21{bottom:25.173827pt;}
.y59{bottom:26.096000pt;}
.yae{bottom:26.096047pt;}
.ye7{bottom:26.096133pt;}
.y79{bottom:27.223520pt;}
.y124{bottom:29.824000pt;}
.ye5{bottom:29.824133pt;}
.y85{bottom:30.942013pt;}
.y29{bottom:31.357040pt;}
.y65{bottom:31.360267pt;}
.y10d{bottom:32.057240pt;}
.y102{bottom:32.057280pt;}
.yc{bottom:32.408080pt;}
.y61{bottom:32.490667pt;}
.y7{bottom:32.652040pt;}
.y139{bottom:33.869200pt;}
.yb8{bottom:34.525867pt;}
.y2a{bottom:35.702600pt;}
.y1e{bottom:35.732267pt;}
.y10f{bottom:36.835547pt;}
.y8{bottom:37.280040pt;}
.y136{bottom:37.469853pt;}
.y32{bottom:37.783973pt;}
.yac{bottom:39.144000pt;}
.ye2{bottom:39.144027pt;}
.ya{bottom:40.283733pt;}
.y63{bottom:42.783867pt;}
.y56{bottom:44.736133pt;}
.y14a{bottom:45.199200pt;}
.y8d{bottom:46.042133pt;}
.y52{bottom:46.602267pt;}
.y4e{bottom:46.833733pt;}
.y8f{bottom:48.574747pt;}
.y8b{bottom:48.574773pt;}
.y12e{bottom:49.603027pt;}
.y81{bottom:50.229333pt;}
.y130{bottom:51.816253pt;}
.ydf{bottom:53.831693pt;}
.y2e{bottom:54.141067pt;}
.y30{bottom:54.141107pt;}
.yaa{bottom:56.279467pt;}
.y5c{bottom:64.226733pt;}
.y2{bottom:73.807307pt;}
.y148{bottom:74.169160pt;}
.y134{bottom:83.157333pt;}
.ye4{bottom:83.157467pt;}
.y60{bottom:85.824000pt;}
.yd8{bottom:86.889920pt;}
.y138{bottom:87.202533pt;}
.yb7{bottom:87.859200pt;}
.y13c{bottom:88.041733pt;}
.y2f{bottom:92.607427pt;}
.y5b{bottom:93.213400pt;}
.y127{bottom:105.026267pt;}
.y45{bottom:107.106253pt;}
.ye1{bottom:111.732773pt;}
.y8c{bottom:112.708827pt;}
.y90{bottom:112.708853pt;}
.yfa{bottom:117.193600pt;}
.y77{bottom:121.387213pt;}
.y12f{bottom:122.482973pt;}
.yc5{bottom:123.685307pt;}
.y4d{bottom:125.992667pt;}
.yd2{bottom:127.748187pt;}
.y92{bottom:131.152933pt;}
.y4f{bottom:132.400267pt;}
.y1{bottom:133.807333pt;}
.y13a{bottom:134.261600pt;}
.y5d{bottom:138.782800pt;}
.y118{bottom:143.612800pt;}
.y144{bottom:146.406533pt;}
.yd1{bottom:148.694667pt;}
.y12a{bottom:154.039733pt;}
.y1b{bottom:155.839867pt;}
.yd7{bottom:160.534667pt;}
.yb3{bottom:160.992347pt;}
.y51{bottom:161.557200pt;}
.y101{bottom:162.731467pt;}
.yb4{bottom:163.175867pt;}
.y116{bottom:174.317067pt;}
.y53{bottom:177.279867pt;}
.y126{bottom:180.228400pt;}
.y75{bottom:187.876133pt;}
.y74{bottom:203.577067pt;}
.y10c{bottom:204.564800pt;}
.y4c{bottom:205.151600pt;}
.yc4{bottom:217.346413pt;}
.y129{bottom:229.241867pt;}
.y147{bottom:242.727333pt;}
.y115{bottom:244.382400pt;}
.y143{bottom:244.417867pt;}
.yc3{bottom:249.346400pt;}
.y22{bottom:251.363867pt;}
.y13d{bottom:251.756933pt;}
.yf4{bottom:252.445733pt;}
.yf1{bottom:253.091733pt;}
.ye8{bottom:254.987733pt;}
.ye6{bottom:255.456800pt;}
.y142{bottom:258.588933pt;}
.y1a{bottom:264.354000pt;}
.y66{bottom:268.597733pt;}
.y88{bottom:268.753733pt;}
.y50{bottom:269.781200pt;}
.y10b{bottom:278.209600pt;}
.y44{bottom:282.284267pt;}
.y125{bottom:282.829733pt;}
.y4b{bottom:284.310533pt;}
.y25{bottom:287.301733pt;}
.y38{bottom:297.710533pt;}
.ya0{bottom:298.087160pt;}
.yb1{bottom:298.087173pt;}
.y73{bottom:305.701867pt;}
.ydb{bottom:305.975200pt;}
.y128{bottom:309.270000pt;}
.yf9{bottom:314.331467pt;}
.y9f{bottom:321.814573pt;}
.yb0{bottom:321.814600pt;}
.y8e{bottom:327.655867pt;}
.y87{bottom:327.656000pt;}
.y141{bottom:332.233733pt;}
.y43{bottom:341.186400pt;}
.y145{bottom:342.807733pt;}
.ya9{bottom:345.978400pt;}
.y78{bottom:350.971200pt;}
.y19{bottom:353.941467pt;}
.y9d{bottom:359.714400pt;}
.y4a{bottom:363.469467pt;}
.y37{bottom:371.355333pt;}
.y24{bottom:371.986400pt;}
.yd6{bottom:378.972267pt;}
.yd{bottom:381.823067pt;}
.yd0{bottom:385.348267pt;}
.y9c{bottom:387.814533pt;}
.yf2{bottom:392.268533pt;}
.yf0{bottom:392.914533pt;}
.y72{bottom:402.603733pt;}
.y68{bottom:408.774800pt;}
.y12d{bottom:410.825333pt;}
.y10a{bottom:418.655467pt;}
.y9e{bottom:439.216213pt;}
.yaf{bottom:439.216347pt;}
.yda{bottom:439.620000pt;}
.y34{bottom:450.691600pt;}
.y11c{bottom:453.114667pt;}
.y149{bottom:456.185600pt;}
.ycf{bottom:461.054667pt;}
.y113{bottom:471.584933pt;}
.y109{bottom:472.594240pt;}
.y55{bottom:475.341867pt;}
.y112{bottom:476.918933pt;}
.y13b{bottom:481.545200pt;}
.y58{bottom:497.396133pt;}
.y108{bottom:499.343733pt;}
.y133{bottom:499.894933pt;}
.y123{bottom:505.126400pt;}
.y40{bottom:506.351067pt;}
.y99{bottom:507.777467pt;}
.y12{bottom:514.032667pt;}
.y18{bottom:514.032800pt;}
.y2b{bottom:523.390400pt;}
.ybd{bottom:531.515733pt;}
.y11b{bottom:531.626133pt;}
.y12c{bottom:534.722267pt;}
.yec{bottom:547.689333pt;}
.y33{bottom:558.915600pt;}
.y70{bottom:558.971867pt;}
.y67{bottom:560.072000pt;}
.y7a{bottom:565.322667pt;}
.yd9{bottom:573.264800pt;}
.ycb{bottom:579.323827pt;}
.y11{bottom:587.677467pt;}
.y17{bottom:587.677600pt;}
.y3f{bottom:589.568133pt;}
.y91{bottom:592.034133pt;}
.yce{bottom:594.699467pt;}
.y12b{bottom:602.457467pt;}
.y100{bottom:607.944800pt;}
.yca{bottom:608.863587pt;}
.y11a{bottom:610.137467pt;}
.y36{bottom:614.662800pt;}
.y5f{bottom:623.985867pt;}
.y6c{bottom:624.051733pt;}
.y98{bottom:626.679600pt;}
.ya4{bottom:633.745333pt;}
.ya3{bottom:636.799600pt;}
.ye3{bottom:641.846400pt;}
.ya2{bottom:647.946267pt;}
.yb6{bottom:650.722000pt;}
.y13{bottom:669.267067pt;}
.y5{bottom:675.492133pt;}
.yff{bottom:681.589600pt;}
.y42{bottom:683.869733pt;}
.y2d{bottom:688.197067pt;}
.y119{bottom:688.648933pt;}
.ye{bottom:691.564667pt;}
.y49{bottom:691.661200pt;}
.y132{bottom:697.389413pt;}
.ya1{bottom:706.493307pt;}
.y23{bottom:716.170000pt;}
.y35{bottom:718.251600pt;}
.yef{bottom:730.801600pt;}
.y14e{bottom:740.632933pt;}
.y97{bottom:745.581733pt;}
.y111{bottom:755.392933pt;}
.ycd{bottom:758.850133pt;}
.yd5{bottom:760.474133pt;}
.yf8{bottom:770.401067pt;}
.y10{bottom:777.815067pt;}
.y2c{bottom:796.813600pt;}
.y105{bottom:797.605467pt;}
.yfe{bottom:797.605600pt;}
.y14d{bottom:807.832933pt;}
.y6{bottom:809.838933pt;}
.yb9{bottom:816.152000pt;}
.ya7{bottom:816.794267pt;}
.yc8{bottom:820.609733pt;}
.y131{bottom:821.885680pt;}
.y64{bottom:839.204133pt;}
.y4{bottom:842.490933pt;}
.yee{bottom:845.380800pt;}
.yf{bottom:851.459867pt;}
.ydd{bottom:860.773467pt;}
.y27{bottom:861.045067pt;}
.y96{bottom:864.483867pt;}
.y11d{bottom:870.177200pt;}
.y104{bottom:871.250267pt;}
.yfd{bottom:871.250400pt;}
.y14c{bottom:875.032933pt;}
.yf7{bottom:879.107467pt;}
.y6a{bottom:880.449200pt;}
.y8a{bottom:898.151200pt;}
.ycc{bottom:900.900000pt;}
.yd4{bottom:902.524000pt;}
.yab{bottom:908.964400pt;}
.y3d{bottom:919.062667pt;}
.y7b{bottom:923.343867pt;}
.yc9{bottom:926.083333pt;}
.yf6{bottom:927.813867pt;}
.y103{bottom:944.895067pt;}
.yfc{bottom:944.895200pt;}
.y26{bottom:945.729733pt;}
.y7d{bottom:950.432667pt;}
.y7f{bottom:950.432800pt;}
.yc7{bottom:954.254533pt;}
.y117{bottom:954.622800pt;}
.y89{bottom:957.053333pt;}
.ybb{bottom:959.092267pt;}
.yed{bottom:959.960133pt;}
.y16{bottom:969.435067pt;}
.y9a{bottom:979.275200pt;}
.y20{bottom:982.376400pt;}
.yde{bottom:986.677200pt;}
.y62{bottom:993.725067pt;}
.y95{bottom:993.884267pt;}
.y3{bottom:1005.819733pt;}
.y7c{bottom:1009.334800pt;}
.y7e{bottom:1009.334933pt;}
.ydc{bottom:1010.734000pt;}
.y3c{bottom:1021.712133pt;}
.y137{bottom:1035.251067pt;}
.y120{bottom:1040.843867pt;}
.y14b{bottom:1041.102533pt;}
.y15{bottom:1043.079867pt;}
.y122{bottom:1044.050533pt;}
.y69{bottom:1044.779333pt;}
.y10e{bottom:1046.153867pt;}
.y31{bottom:1050.037587pt;}
.y28{bottom:1065.540133pt;}
.ya6{bottom:1069.319333pt;}
.y11f{bottom:1069.831467pt;}
.ybf{bottom:1087.051467pt;}
.y121{bottom:1092.050533pt;}
.yc6{bottom:1092.514933pt;}
.y1f{bottom:1092.997733pt;}
.y57{bottom:1104.877733pt;}
.yeb{bottom:1105.268400pt;}
.y107{bottom:1108.027440pt;}
.y6e{bottom:1110.992667pt;}
.ya5{bottom:1115.319387pt;}
.y14{bottom:1116.724667pt;}
.y94{bottom:1117.448400pt;}
.y84{bottom:1124.057333pt;}
.y140{bottom:1127.725600pt;}
.y106{bottom:1134.776933pt;}
.y11e{bottom:1143.476267pt;}
.y46{bottom:1149.749733pt;}
.y80{bottom:1154.089067pt;}
.ye9{bottom:1155.689467pt;}
.y3a{bottom:1169.352267pt;}
.y41{bottom:1186.263467pt;}
.ya8{bottom:1231.562667pt;}
.y9{bottom:1241.181467pt;}
.yc2{bottom:1259.621600pt;}
.y93{bottom:1261.320533pt;}
.y1d{bottom:1261.902533pt;}
.y110{bottom:1275.350400pt;}
.y83{bottom:1275.875867pt;}
.yb5{bottom:1285.219200pt;}
.ye0{bottom:1288.239467pt;}
.y39{bottom:1290.258800pt;}
.y5a{bottom:1296.071867pt;}
.y6b{bottom:1297.440400pt;}
.y1c{bottom:1297.634800pt;}
.y13e{bottom:1299.358133pt;}
.yfb{bottom:1300.359600pt;}
.yb{bottom:1300.466533pt;}
.y47{bottom:1303.913867pt;}
.yea{bottom:1307.596267pt;}
.y146{bottom:1315.411333pt;}
.yc1{bottom:1342.335600pt;}
.h70{height:32.299067pt;}
.h3b{height:43.271773pt;}
.h8b{height:48.376827pt;}
.h26{height:50.242987pt;}
.h4c{height:51.714093pt;}
.h20{height:53.068747pt;}
.h78{height:57.510280pt;}
.h5e{height:58.331173pt;}
.h36{height:58.768747pt;}
.h3e{height:61.358840pt;}
.h6e{height:61.652453pt;}
.h68{height:65.178320pt;}
.h29{height:65.333373pt;}
.h2d{height:67.177747pt;}
.h18{height:70.176000pt;}
.h38{height:70.766653pt;}
.h5{height:72.000000pt;}
.h3a{height:73.177893pt;}
.h80{height:74.666707pt;}
.h60{height:75.199587pt;}
.h33{height:76.000013pt;}
.h13{height:81.756933pt;}
.h45{height:83.404640pt;}
.h1e{height:85.667293pt;}
.h85{height:90.041640pt;}
.h76{height:91.566533pt;}
.h73{height:91.566573pt;}
.h59{height:98.666720pt;}
.h56{height:98.998613pt;}
.h16{height:101.428693pt;}
.h3{height:101.601493pt;}
.h31{height:102.133467pt;}
.h10{height:111.186547pt;}
.h28{height:112.000067pt;}
.h63{height:115.712000pt;}
.h2a{height:116.480000pt;}
.h9{height:120.000000pt;}
.h2f{height:124.234373pt;}
.h4b{height:124.757333pt;}
.h67{height:128.000000pt;}
.h6d{height:128.000040pt;}
.h2e{height:133.120000pt;}
.h1b{height:133.333333pt;}
.h86{height:137.222267pt;}
.h6b{height:138.024667pt;}
.h5d{height:138.556000pt;}
.h41{height:140.394667pt;}
.h2c{height:142.119867pt;}
.h1{height:149.760000pt;}
.h54{height:151.692000pt;}
.h3d{height:152.000000pt;}
.h4d{height:155.238870pt;}
.h21{height:156.375318pt;}
.ha{height:158.080000pt;}
.h49{height:166.400000pt;}
.h58{height:167.562667pt;}
.h3c{height:170.323725pt;}
.h7{height:170.624995pt;}
.h32{height:170.666667pt;}
.h50{height:171.944960pt;}
.h7f{height:173.568000pt;}
.h22{height:174.720000pt;}
.h8d{height:176.093750pt;}
.h44{height:176.128000pt;}
.h48{height:177.147467pt;}
.h24{height:183.040000pt;}
.h1d{height:183.466667pt;}
.h8e{height:183.750000pt;}
.h8a{height:187.200000pt;}
.h6{height:190.405200pt;}
.hd{height:192.000000pt;}
.h5f{height:192.941564pt;}
.h8c{height:194.081511pt;}
.h82{height:194.620133pt;}
.h71{height:196.091231pt;}
.h55{height:196.278667pt;}
.h27{height:197.526745pt;}
.h30{height:199.062500pt;}
.hb{height:199.680000pt;}
.h46{height:209.742827pt;}
.h3f{height:210.877020pt;}
.h83{height:211.274667pt;}
.h39{height:212.432160pt;}
.h37{height:213.987301pt;}
.h1c{height:216.320000pt;}
.h5c{height:216.490667pt;}
.h61{height:219.770880pt;}
.h15{height:220.000000pt;}
.h81{height:225.071067pt;}
.h14{height:226.332699pt;}
.h74{height:227.054080pt;}
.h12{height:228.800000pt;}
.h7c{height:232.960000pt;}
.h7d{height:233.376000pt;}
.h62{height:237.738667pt;}
.he{height:241.280000pt;}
.h79{height:243.319628pt;}
.h47{height:244.342080pt;}
.h64{height:245.606400pt;}
.h6f{height:246.471975pt;}
.h7a{height:249.600000pt;}
.h5b{height:263.464693pt;}
.h51{height:263.464800pt;}
.h84{height:265.556480pt;}
.h89{height:270.400000pt;}
.h69{height:275.762235pt;}
.h17{height:281.925627pt;}
.h35{height:282.880000pt;}
.h75{height:284.277973pt;}
.h72{height:286.416000pt;}
.h4a{height:293.313200pt;}
.h53{height:299.847573pt;}
.h4e{height:300.935467pt;}
.h77{height:307.008000pt;}
.h87{height:312.083333pt;}
.h2b{height:314.704000pt;}
.h6a{height:318.779733pt;}
.h66{height:320.554667pt;}
.hc{height:324.480000pt;}
.h25{height:337.045200pt;}
.h1f{height:343.685971pt;}
.h65{height:345.429333pt;}
.h57{height:348.358720pt;}
.h1a{height:350.880000pt;}
.h8{height:353.600000pt;}
.h52{height:354.576533pt;}
.h7e{height:356.608000pt;}
.h42{height:361.472000pt;}
.h19{height:389.866667pt;}
.h6c{height:405.389476pt;}
.h23{height:425.128000pt;}
.h4{height:429.864656pt;}
.h7b{height:439.129600pt;}
.h2{height:440.960000pt;}
.h34{height:452.245333pt;}
.h11{height:470.418096pt;}
.hf{height:482.560000pt;}
.h40{height:497.664000pt;}
.h43{height:548.608000pt;}
.h88{height:551.000000pt;}
.h4f{height:708.192213pt;}
.h5a{height:708.192747pt;}
.h0{height:1440.000000pt;}
.w32{width:37.592520pt;}
.w29{width:42.604853pt;}
.w39{width:45.003360pt;}
.w1{width:66.413453pt;}
.w18{width:70.706640pt;}
.w3{width:72.678880pt;}
.w8{width:79.693453pt;}
.w15{width:84.825893pt;}
.w17{width:85.654013pt;}
.w20{width:102.005053pt;}
.w30{width:116.691333pt;}
.w16{width:139.585867pt;}
.w2f{width:145.871067pt;}
.w19{width:178.909867pt;}
.w1a{width:195.969067pt;}
.wc{width:223.549467pt;}
.w2{width:248.857333pt;}
.w9{width:334.860933pt;}
.w2a{width:338.159200pt;}
.w11{width:352.272533pt;}
.w2c{width:355.826800pt;}
.w26{width:369.571733pt;}
.w24{width:377.839467pt;}
.w10{width:399.558267pt;}
.w14{width:400.921867pt;}
.we{width:404.010667pt;}
.w2e{width:421.066667pt;}
.w34{width:434.136000pt;}
.w38{width:451.250000pt;}
.w13{width:469.781200pt;}
.w7{width:469.859867pt;}
.wd{width:504.245333pt;}
.w25{width:512.354133pt;}
.w1c{width:528.565333pt;}
.w5{width:533.559200pt;}
.w21{width:547.193200pt;}
.w12{width:573.785333pt;}
.w33{width:576.822933pt;}
.w23{width:604.970667pt;}
.w3a{width:605.712800pt;}
.w28{width:605.949333pt;}
.w2d{width:609.164667pt;}
.w4{width:609.322267pt;}
.w6{width:622.818133pt;}
.w1d{width:626.280800pt;}
.w22{width:661.082933pt;}
.w1f{width:676.221067pt;}
.w31{width:676.474667pt;}
.w36{width:713.362933pt;}
.w37{width:751.978933pt;}
.w35{width:863.416667pt;}
.w1b{width:867.057733pt;}
.wa{width:875.393333pt;}
.wb{width:965.776667pt;}
.w1e{width:1052.958400pt;}
.w27{width:1099.089467pt;}
.w2b{width:2067.614667pt;}
.wf{width:2393.093333pt;}
.w0{width:2560.000000pt;}
.x27{left:-6.100933pt;}
.x3{left:-3.011600pt;}
.x3b{left:-1.938667pt;}
.x0{left:0.000000pt;}
.x14{left:1.480373pt;}
.x41{left:9.333333pt;}
.xbc{left:10.666667pt;}
.x35{left:14.740000pt;}
.x39{left:16.373333pt;}
.x48{left:19.450520pt;}
.x46{left:23.560000pt;}
.x4c{left:24.994667pt;}
.xc4{left:26.041333pt;}
.x75{left:26.952000pt;}
.x4a{left:30.543867pt;}
.xc9{left:33.653600pt;}
.x96{left:35.066667pt;}
.x74{left:36.104000pt;}
.x30{left:40.577107pt;}
.x6{left:44.230667pt;}
.x7{left:46.962840pt;}
.x98{left:48.658853pt;}
.x1f{left:49.913333pt;}
.xa2{left:51.306147pt;}
.x61{left:52.612000pt;}
.x79{left:54.455733pt;}
.x1d{left:55.708000pt;}
.xc8{left:57.182533pt;}
.xc6{left:58.740000pt;}
.x21{left:59.919080pt;}
.xa{left:63.137107pt;}
.xcd{left:64.570067pt;}
.xc0{left:66.196000pt;}
.xe{left:74.923240pt;}
.x16{left:78.290080pt;}
.x13{left:79.399987pt;}
.x12{left:80.880360pt;}
.x8{left:82.803253pt;}
.x25{left:90.146813pt;}
.xac{left:92.784867pt;}
.x47{left:96.200000pt;}
.x93{left:97.977333pt;}
.x60{left:100.964000pt;}
.x4d{left:103.519067pt;}
.xb1{left:106.878653pt;}
.x37{left:108.081333pt;}
.x34{left:115.940000pt;}
.x44{left:125.992867pt;}
.x2f{left:130.042053pt;}
.x1{left:131.466547pt;}
.x15{left:135.469333pt;}
.x77{left:141.751733pt;}
.xb2{left:142.755867pt;}
.x59{left:153.880933pt;}
.x9b{left:166.723200pt;}
.xbd{left:172.292933pt;}
.x3e{left:178.369067pt;}
.x2c{left:182.219467pt;}
.xb3{left:184.316933pt;}
.x7e{left:189.246667pt;}
.xcc{left:193.757467pt;}
.x85{left:209.948800pt;}
.x33{left:216.084000pt;}
.xb4{left:218.650133pt;}
.xb5{left:220.594933pt;}
.x8f{left:238.104000pt;}
.x36{left:243.950667pt;}
.x91{left:246.192667pt;}
.x49{left:249.745200pt;}
.xb7{left:278.180400pt;}
.x51{left:284.115600pt;}
.x90{left:311.508267pt;}
.x28{left:315.565200pt;}
.x29{left:318.292667pt;}
.x63{left:327.038667pt;}
.x5a{left:328.892400pt;}
.xaf{left:332.101067pt;}
.xad{left:336.352667pt;}
.xab{left:343.392533pt;}
.x86{left:345.722880pt;}
.xa9{left:353.488080pt;}
.xcb{left:357.087200pt;}
.x4e{left:368.425467pt;}
.xbe{left:383.343067pt;}
.x8b{left:391.889467pt;}
.xb8{left:393.487067pt;}
.xb0{left:412.101067pt;}
.x26{left:418.681067pt;}
.x84{left:430.946267pt;}
.x43{left:442.097627pt;}
.xa7{left:446.884667pt;}
.x8d{left:452.589200pt;}
.xd{left:457.504000pt;}
.xa8{left:482.229280pt;}
.x99{left:515.395467pt;}
.xc7{left:534.586933pt;}
.x97{left:543.694533pt;}
.x9c{left:550.723200pt;}
.x82{left:585.684800pt;}
.xa1{left:601.376933pt;}
.x72{left:664.558000pt;}
.x83{left:700.784547pt;}
.xf{left:710.371867pt;}
.x50{left:730.663200pt;}
.xa5{left:732.415733pt;}
.x89{left:736.774800pt;}
.x2{left:740.529733pt;}
.x94{left:794.480533pt;}
.x4f{left:804.126133pt;}
.x78{left:839.045467pt;}
.x5c{left:858.131733pt;}
.xcf{left:869.752267pt;}
.x9a{left:899.395467pt;}
.x3f{left:900.808267pt;}
.x38{left:911.121867pt;}
.x3c{left:914.655333pt;}
.x11{left:920.771600pt;}
.xc1{left:958.668947pt;}
.x24{left:960.182667pt;}
.xc2{left:964.202947pt;}
.x2d{left:969.535333pt;}
.xd4{left:977.152667pt;}
.x8e{left:987.140533pt;}
.x10{left:988.593627pt;}
.xbb{left:1052.074933pt;}
.x22{left:1102.725333pt;}
.x8a{left:1112.690667pt;}
.xd2{left:1129.157333pt;}
.xa3{left:1130.919467pt;}
.xaa{left:1133.930400pt;}
.x2b{left:1135.149200pt;}
.xb{left:1148.044800pt;}
.xd7{left:1149.812533pt;}
.xd5{left:1153.810400pt;}
.x87{left:1164.309333pt;}
.xd6{left:1165.750000pt;}
.x23{left:1190.437333pt;}
.x76{left:1202.988667pt;}
.x7d{left:1239.761333pt;}
.x7a{left:1248.803867pt;}
.x42{left:1266.000000pt;}
.x1a{left:1273.328000pt;}
.x4{left:1274.772000pt;}
.xc{left:1280.315867pt;}
.x64{left:1306.522667pt;}
.x20{left:1309.661867pt;}
.x3d{left:1331.694267pt;}
.x5{left:1351.188000pt;}
.x65{left:1356.341453pt;}
.x52{left:1377.414667pt;}
.xa4{left:1383.617333pt;}
.x5f{left:1386.930667pt;}
.x5e{left:1428.662667pt;}
.x62{left:1504.118667pt;}
.x70{left:1521.554667pt;}
.x32{left:1529.722667pt;}
.x6b{left:1538.540000pt;}
.x53{left:1568.132000pt;}
.x9d{left:1580.772000pt;}
.x2e{left:1584.758667pt;}
.x9e{left:1587.172000pt;}
.x88{left:1599.189333pt;}
.x3a{left:1633.561333pt;}
.x58{left:1640.285333pt;}
.x45{left:1647.746667pt;}
.xc5{left:1650.470667pt;}
.xbf{left:1653.838667pt;}
.x7b{left:1674.501333pt;}
.x1b{left:1698.412000pt;}
.x67{left:1723.017600pt;}
.x92{left:1742.970667pt;}
.xd0{left:1744.304000pt;}
.x68{left:1763.506933pt;}
.xb6{left:1766.473333pt;}
.x73{left:1771.257333pt;}
.x66{left:1775.780667pt;}
.x6c{left:1778.790267pt;}
.x5b{left:1799.181333pt;}
.x6d{left:1802.455600pt;}
.x19{left:1831.198667pt;}
.x31{left:1837.221333pt;}
.xae{left:1860.217333pt;}
.x2a{left:1869.180000pt;}
.xa6{left:1883.525333pt;}
.x56{left:1916.521333pt;}
.x1c{left:1919.560000pt;}
.x1e{left:1923.753333pt;}
.x80{left:1928.277333pt;}
.x18{left:1933.244000pt;}
.x81{left:1934.246667pt;}
.x17{left:1940.376000pt;}
.xca{left:1941.401627pt;}
.x7f{left:1954.050667pt;}
.x69{left:1955.399733pt;}
.x8c{left:1967.770667pt;}
.x54{left:1970.065333pt;}
.x4b{left:1974.065333pt;}
.x71{left:1978.901333pt;}
.x9f{left:1991.420000pt;}
.x40{left:2005.014667pt;}
.xd3{left:2008.314667pt;}
.x6a{left:2014.986533pt;}
.x95{left:2054.536000pt;}
.x5d{left:2057.698667pt;}
.x7c{left:2073.576000pt;}
.xa0{left:2077.954667pt;}
.x6e{left:2095.127504pt;}
.xb9{left:2127.190667pt;}
.xc3{left:2200.957333pt;}
.x57{left:2208.068000pt;}
.x6f{left:2222.751973pt;}
.xba{left:2237.882227pt;}
.xd1{left:2255.628000pt;}
.x55{left:2258.218667pt;}
.x9{left:2289.217333pt;}
.xce{left:2526.236000pt;}
}




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