
    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_d349f36738cacce5653723f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_1f8e33d806db0c682fcbbe38.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_de717bd3016c867a4097f34c.woff2')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_1a0aa7b7b53360a9626d0a80.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29873356aca3d52f4d667c68.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0053758f0fd57b996dc09637.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_262750efdd284817dd147f6c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_8c7eea33a1909c5c1631b5fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_9c38913f8e339ec573d7ddc2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_de7e9ed8ba4a88c27348f2ec.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_90cc37c4465811ef1b1bf7ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.066000;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_aa2836a5ad252a39b1af15a6.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v4{vertical-align:-24.480000px;}
.v3{vertical-align:-22.440000px;}
.vd{vertical-align:-19.440000px;}
.v1{vertical-align:-3.168000px;}
.v2{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:22.320000px;}
.v5{vertical-align:24.600000px;}
.v9{vertical-align:31.680000px;}
.v8{vertical-align:54.000000px;}
.vf{vertical-align:56.160000px;}
.v7{vertical-align:63.360000px;}
.vb{vertical-align:68.400000px;}
.ve{vertical-align:75.600000px;}
.v6{vertical-align:90.720000px;}
.vc{vertical-align:104.400000px;}
.ls7a{letter-spacing:-4.536000px;}
.ls13{letter-spacing:-2.304000px;}
.ls23{letter-spacing:-2.088000px;}
.ls29{letter-spacing:-1.506000px;}
.ls4d{letter-spacing:-1.434000px;}
.ls6e{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.580200px;}
.ls2d{letter-spacing:-0.550200px;}
.ls26{letter-spacing:-0.468000px;}
.ls24{letter-spacing:-0.396000px;}
.ls40{letter-spacing:-0.394800px;}
.ls51{letter-spacing:-0.393000px;}
.ls11{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.337200px;}
.lse{letter-spacing:-0.335400px;}
.ls28{letter-spacing:-0.328200px;}
.ls65{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.295200px;}
.ls73{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.282600px;}
.ls4c{letter-spacing:-0.267600px;}
.lsc{letter-spacing:-0.263400px;}
.ls30{letter-spacing:-0.253200px;}
.ls18{letter-spacing:-0.209400px;}
.ls22{letter-spacing:-0.208800px;}
.ls19{letter-spacing:-0.197400px;}
.ls77{letter-spacing:-0.191400px;}
.ls1a{letter-spacing:-0.172200px;}
.ls74{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.119400px;}
.lsd{letter-spacing:-0.067200px;}
.ls16{letter-spacing:-0.064200px;}
.ls78{letter-spacing:-0.060600px;}
.lsa{letter-spacing:-0.059040px;}
.ls12{letter-spacing:-0.053280px;}
.ls4f{letter-spacing:-0.043200px;}
.ls2e{letter-spacing:-0.038280px;}
.ls1e{letter-spacing:-0.036000px;}
.ls45{letter-spacing:-0.006480px;}
.ls79{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.005040px;}
.ls41{letter-spacing:0.007200px;}
.ls66{letter-spacing:0.043920px;}
.ls2c{letter-spacing:0.048960px;}
.ls52{letter-spacing:0.063120px;}
.ls72{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.074400px;}
.ls4e{letter-spacing:0.100800px;}
.ls25{letter-spacing:0.104400px;}
.ls1c{letter-spacing:0.108000px;}
.ls6c{letter-spacing:0.111000px;}
.ls5f{letter-spacing:0.139800px;}
.ls27{letter-spacing:0.144000px;}
.ls69{letter-spacing:0.175800px;}
.ls9{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.216000px;}
.ls61{letter-spacing:0.226800px;}
.ls50{letter-spacing:0.244800px;}
.ls6{letter-spacing:0.276600px;}
.ls21{letter-spacing:0.278352px;}
.ls15{letter-spacing:0.287280px;}
.ls8{letter-spacing:0.287400px;}
.ls1f{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.324000px;}
.ls76{letter-spacing:0.375000px;}
.ls75{letter-spacing:2.864880px;}
.ls32{letter-spacing:3.060000px;}
.ls58{letter-spacing:3.265200px;}
.ls34{letter-spacing:6.179184px;}
.ls3e{letter-spacing:6.271200px;}
.ls5e{letter-spacing:6.492240px;}
.ls43{letter-spacing:6.559200px;}
.ls37{letter-spacing:6.991200px;}
.ls5a{letter-spacing:7.212240px;}
.ls67{letter-spacing:7.950240px;}
.ls3a{letter-spacing:23.983200px;}
.ls6a{letter-spacing:24.447024px;}
.ls1b{letter-spacing:24.588000px;}
.ls62{letter-spacing:24.768000px;}
.ls14{letter-spacing:25.308000px;}
.ls6f{letter-spacing:25.347024px;}
.ls7{letter-spacing:26.493024px;}
.ls6b{letter-spacing:26.520480px;}
.ls1{letter-spacing:26.544000px;}
.ls6d{letter-spacing:26.568000px;}
.ls57{letter-spacing:27.107280px;}
.ls10{letter-spacing:27.359280px;}
.ls39{letter-spacing:30.204000px;}
.ls3d{letter-spacing:30.319200px;}
.ls5d{letter-spacing:30.466800px;}
.ls56{letter-spacing:30.623040px;}
.ls3b{letter-spacing:30.751200px;}
.ls53{letter-spacing:31.018320px;}
.ls3c{letter-spacing:31.039200px;}
.ls48{letter-spacing:33.341760px;}
.ls49{letter-spacing:33.750720px;}
.ls46{letter-spacing:34.043520px;}
.ls47{letter-spacing:34.378560px;}
.ls5{letter-spacing:34.928064px;}
.ls4{letter-spacing:34.979040px;}
.ls2b{letter-spacing:36.253152px;}
.ls64{letter-spacing:43.632000px;}
.ls54{letter-spacing:48.459600px;}
.ls5c{letter-spacing:49.179600px;}
.ls55{letter-spacing:49.605840px;}
.ls59{letter-spacing:49.692240px;}
.ls3f{letter-spacing:54.799200px;}
.ls33{letter-spacing:55.139184px;}
.ls42{letter-spacing:55.231200px;}
.ls36{letter-spacing:55.432944px;}
.ls44{letter-spacing:55.519200px;}
.ls5b{letter-spacing:71.925840px;}
.ls35{letter-spacing:79.192944px;}
.ls71{letter-spacing:79.279200px;}
.ls70{letter-spacing:79.999200px;}
.ls63{letter-spacing:80.179200px;}
.ls38{letter-spacing:85.039200px;}
.ls68{letter-spacing:88.503840px;}
.ls3{letter-spacing:97.509600px;}
.ls2{letter-spacing:97.560000px;}
.ls4a{letter-spacing:109.944000px;}
.ls4b{letter-spacing:110.064000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
}
.ws4b{word-spacing:-120.384000px;}
.wsc3{word-spacing:-120.340800px;}
.ws4f{word-spacing:-120.240000px;}
.ws2e{word-spacing:-108.144000px;}
.ws62{word-spacing:-108.000000px;}
.ws47{word-spacing:-100.249200px;}
.ws9a{word-spacing:-100.069200px;}
.ws86{word-spacing:-95.904000px;}
.ws81{word-spacing:-95.760000px;}
.ws6e{word-spacing:-93.667680px;}
.ws6f{word-spacing:-93.419280px;}
.ws67{word-spacing:-93.088800px;}
.ws72{word-spacing:-90.210960px;}
.ws5c{word-spacing:-89.820000px;}
.wscb{word-spacing:-89.640000px;}
.ws8b{word-spacing:-89.490960px;}
.ws5b{word-spacing:-89.100000px;}
.ws4e{word-spacing:-87.984000px;}
.ws4d{word-spacing:-87.945720px;}
.ws50{word-spacing:-87.888960px;}
.ws51{word-spacing:-87.840000px;}
.ws6d{word-spacing:-86.939280px;}
.ws7a{word-spacing:-84.276000px;}
.ws5f{word-spacing:-84.240000px;}
.ws5e{word-spacing:-83.736000px;}
.ws61{word-spacing:-83.700000px;}
.ws60{word-spacing:-83.556000px;}
.ws8d{word-spacing:-80.964000px;}
.ws11{word-spacing:-80.532000px;}
.wsc5{word-spacing:-80.136000px;}
.ws82{word-spacing:-80.110800px;}
.ws78{word-spacing:-79.444800px;}
.ws84{word-spacing:-79.390800px;}
.ws75{word-spacing:-79.300800px;}
.ws2f{word-spacing:-79.200000px;}
.ws7b{word-spacing:-79.156800px;}
.ws77{word-spacing:-77.796000px;}
.ws83{word-spacing:-74.412720px;}
.ws80{word-spacing:-68.652720px;}
.ws5d{word-spacing:-57.060000px;}
.ws79{word-spacing:-50.896800px;}
.ws2{word-spacing:-48.816000px;}
.ws6c{word-spacing:-47.074320px;}
.ws4c{word-spacing:-44.930520px;}
.ws76{word-spacing:-44.433600px;}
.ws87{word-spacing:-40.604040px;}
.ws89{word-spacing:-40.390560px;}
.ws85{word-spacing:-39.453696px;}
.ws88{word-spacing:-37.978560px;}
.ws0{word-spacing:-32.544000px;}
.ws9d{word-spacing:-27.461640px;}
.ws1a{word-spacing:-27.206784px;}
.ws4a{word-spacing:-27.179280px;}
.ws5{word-spacing:-27.174240px;}
.wsf{word-spacing:-26.594040px;}
.ws64{word-spacing:-24.681600px;}
.ws63{word-spacing:-24.595200px;}
.ws2c{word-spacing:-24.588000px;}
.wsb9{word-spacing:-24.480000px;}
.ws7e{word-spacing:-24.440544px;}
.ws3{word-spacing:-24.408000px;}
.ws2a{word-spacing:-24.372000px;}
.wsb8{word-spacing:-24.120000px;}
.wsc7{word-spacing:-24.012000px;}
.ws4{word-spacing:-19.038240px;}
.ws1b{word-spacing:-18.984960px;}
.ws21{word-spacing:-18.419904px;}
.ws22{word-spacing:-18.387360px;}
.wsd6{word-spacing:-14.970240px;}
.wsc{word-spacing:-10.599384px;}
.ws5a{word-spacing:-5.208000px;}
.ws54{word-spacing:-5.064000px;}
.wsd{word-spacing:-4.992000px;}
.ws35{word-spacing:-4.464000px;}
.ws3c{word-spacing:-3.948000px;}
.ws48{word-spacing:-3.826080px;}
.ws9c{word-spacing:-3.127680px;}
.wsad{word-spacing:-2.587680px;}
.ws65{word-spacing:-2.361984px;}
.ws96{word-spacing:-2.225520px;}
.ws3e{word-spacing:-2.124000px;}
.wsb1{word-spacing:-2.088000px;}
.wsb7{word-spacing:-2.075760px;}
.wsd4{word-spacing:-2.051640px;}
.ws8f{word-spacing:-2.048832px;}
.ws52{word-spacing:-1.921200px;}
.ws15{word-spacing:-1.872000px;}
.wscc{word-spacing:-1.829520px;}
.ws8e{word-spacing:-1.825440px;}
.wsb4{word-spacing:-1.802880px;}
.wsd0{word-spacing:-1.649520px;}
.ws99{word-spacing:-1.645920px;}
.ws94{word-spacing:-1.568160px;}
.ws43{word-spacing:-1.488960px;}
.wsd2{word-spacing:-1.351440px;}
.ws1f{word-spacing:-1.343040px;}
.ws7c{word-spacing:-1.168560px;}
.ws68{word-spacing:-1.167840px;}
.ws49{word-spacing:-1.158480px;}
.ws3b{word-spacing:-1.092240px;}
.ws37{word-spacing:-1.049280px;}
.ws32{word-spacing:-1.014624px;}
.ws8a{word-spacing:-0.976560px;}
.wsca{word-spacing:-0.974160px;}
.ws30{word-spacing:-0.940560px;}
.ws46{word-spacing:-0.882000px;}
.wsd3{word-spacing:-0.871920px;}
.ws26{word-spacing:-0.856080px;}
.wsa3{word-spacing:-0.792000px;}
.ws23{word-spacing:-0.787680px;}
.wsc6{word-spacing:-0.693360px;}
.ws41{word-spacing:-0.676800px;}
.wsc4{word-spacing:-0.643920px;}
.wsa9{word-spacing:-0.642960px;}
.wscd{word-spacing:-0.553920px;}
.wsa1{word-spacing:-0.553680px;}
.ws17{word-spacing:-0.540000px;}
.wsa0{word-spacing:-0.516480px;}
.ws6{word-spacing:-0.454560px;}
.ws7f{word-spacing:-0.454320px;}
.wsab{word-spacing:-0.432000px;}
.ws9e{word-spacing:-0.424080px;}
.ws74{word-spacing:-0.423600px;}
.ws71{word-spacing:-0.414720px;}
.wsa2{word-spacing:-0.404064px;}
.wsc9{word-spacing:-0.396000px;}
.ws1d{word-spacing:-0.343584px;}
.ws14{word-spacing:-0.324000px;}
.ws98{word-spacing:-0.288000px;}
.wsa4{word-spacing:-0.252000px;}
.ws16{word-spacing:-0.216000px;}
.wsb0{word-spacing:-0.146160px;}
.ws8c{word-spacing:-0.139536px;}
.wsbc{word-spacing:-0.108000px;}
.ws55{word-spacing:-0.077280px;}
.ws73{word-spacing:-0.038160px;}
.ws3f{word-spacing:-0.036000px;}
.wsa7{word-spacing:-0.005280px;}
.ws1{word-spacing:0.000000px;}
.wsbd{word-spacing:0.011280px;}
.ws20{word-spacing:0.011736px;}
.ws38{word-spacing:0.028560px;}
.ws33{word-spacing:0.036000px;}
.ws36{word-spacing:0.050400px;}
.ws10{word-spacing:0.051840px;}
.ws6a{word-spacing:0.052560px;}
.ws7{word-spacing:0.108000px;}
.ws44{word-spacing:0.180000px;}
.ws3d{word-spacing:0.184800px;}
.ws9f{word-spacing:0.244800px;}
.wsaf{word-spacing:0.252000px;}
.wsbb{word-spacing:0.262512px;}
.wsbe{word-spacing:0.288000px;}
.wsc2{word-spacing:0.316800px;}
.ws1c{word-spacing:0.324000px;}
.ws59{word-spacing:0.336000px;}
.ws18{word-spacing:0.360000px;}
.ws57{word-spacing:0.370080px;}
.wsc0{word-spacing:0.396000px;}
.ws31{word-spacing:0.447168px;}
.ws56{word-spacing:0.452160px;}
.wsae{word-spacing:0.468000px;}
.wsb6{word-spacing:0.504000px;}
.wse{word-spacing:0.562320px;}
.wsbf{word-spacing:0.567936px;}
.ws34{word-spacing:0.576000px;}
.ws42{word-spacing:0.612000px;}
.wsaa{word-spacing:0.648000px;}
.wsd1{word-spacing:0.681840px;}
.wsb5{word-spacing:0.750000px;}
.wsb2{word-spacing:0.752400px;}
.ws39{word-spacing:0.792000px;}
.ws13{word-spacing:0.815760px;}
.ws69{word-spacing:0.822960px;}
.ws8{word-spacing:0.858960px;}
.ws92{word-spacing:0.864000px;}
.ws58{word-spacing:0.912000px;}
.ws45{word-spacing:0.936000px;}
.ws97{word-spacing:0.943680px;}
.wsa6{word-spacing:1.008000px;}
.ws7d{word-spacing:1.021032px;}
.ws6b{word-spacing:1.037040px;}
.ws28{word-spacing:1.044000px;}
.ws3a{word-spacing:1.116000px;}
.wsb{word-spacing:1.163280px;}
.ws66{word-spacing:1.163520px;}
.ws9b{word-spacing:1.164720px;}
.wsba{word-spacing:1.188000px;}
.ws90{word-spacing:1.224000px;}
.ws40{word-spacing:1.259352px;}
.ws12{word-spacing:1.260000px;}
.ws9{word-spacing:1.282320px;}
.ws93{word-spacing:1.332000px;}
.ws91{word-spacing:1.404000px;}
.ws53{word-spacing:1.440000px;}
.wsc1{word-spacing:1.448640px;}
.ws27{word-spacing:1.462320px;}
.wsa{word-spacing:1.503720px;}
.ws1e{word-spacing:1.548000px;}
.wscf{word-spacing:1.627680px;}
.wsce{word-spacing:1.719120px;}
.wsa5{word-spacing:1.764000px;}
.wsc8{word-spacing:1.872000px;}
.ws19{word-spacing:1.908000px;}
.ws29{word-spacing:1.944000px;}
.wsac{word-spacing:2.160000px;}
.wsa8{word-spacing:2.412000px;}
.wsb3{word-spacing:3.092400px;}
.ws70{word-spacing:3.812400px;}
.wsd5{word-spacing:9.255600px;}
.ws95{word-spacing:49.644000px;}
.ws24{word-spacing:146.440560px;}
.ws25{word-spacing:152.920560px;}
.ws2d{word-spacing:259.644000px;}
.ws2b{word-spacing:862.224000px;}
._15{margin-left:-4376.764944px;}
._25{margin-left:-1663.116000px;}
._1c{margin-left:-20.703840px;}
._11{margin-left:-16.416000px;}
._2a{margin-left:-14.759568px;}
._28{margin-left:-12.932352px;}
._1d{margin-left:-10.938624px;}
._4{margin-left:-9.039888px;}
._1{margin-left:-7.197120px;}
._2{margin-left:-5.757696px;}
._0{margin-left:-3.838464px;}
._3{margin-left:-2.638944px;}
._e{margin-left:-1.555056px;}
._10{width:1.494000px;}
._d{width:3.600000px;}
._9{width:5.184000px;}
._5{width:7.056000px;}
._7{width:8.352000px;}
._6{width:9.360000px;}
._a{width:12.072000px;}
._1f{width:16.385472px;}
._1b{width:22.492944px;}
._26{width:24.545568px;}
._1a{width:25.606944px;}
._18{width:26.679456px;}
._33{width:27.721584px;}
._19{width:28.989264px;}
._2c{width:30.348000px;}
._2f{width:41.371104px;}
._2e{width:42.381984px;}
._32{width:43.638528px;}
._16{width:44.945184px;}
._24{width:46.357536px;}
._b{width:49.944000px;}
._2d{width:53.002560px;}
._31{width:54.716880px;}
._29{width:73.374432px;}
._2b{width:75.946464px;}
._30{width:80.773392px;}
._c{width:151.906464px;}
._22{width:463.757904px;}
._12{width:632.179008px;}
._13{width:637.056960px;}
._27{width:660.660000px;}
._14{width:669.630960px;}
._21{width:734.150448px;}
._23{width:887.106096px;}
._20{width:907.371360px;}
._1e{width:969.858432px;}
._8{width:1249.644000px;}
._34{width:2149.668000px;}
._17{width:2182.068000px;}
._f{width:2214.468000px;}
.fc11{color:rgb(21,96,130);}
.fc10{color:rgb(255,125,0);}
.fce{color:rgb(255,0,0);}
.fc0{color:rgb(38,38,38);}
.fc3{color:rgb(255,255,255);}
.fc12{color:rgb(60,72,88);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(52,64,104);}
.fcb{color:rgb(0,112,192);}
.fc5{color:rgb(28,173,228);}
.fcf{color:rgb(0,203,0);}
.fc8{color:rgb(0,0,0);}
.fc6{color:rgb(38,131,198);}
.fc7{color:rgb(217,217,217);}
.fc2{color:rgb(110,172,28);}
.fc9{color:rgb(57,108,163);}
.fca{color:rgb(241,135,0);}
.fcd{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fsb{font-size:48.240000px;}
.fsc{font-size:48.384000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:63.360000px;}
.fs18{font-size:66.240000px;}
.fs15{font-size:69.840000px;}
.fs16{font-size:69.984000px;}
.fs19{font-size:72.000000px;}
.fs10{font-size:79.200000px;}
.fs13{font-size:79.344000px;}
.fse{font-size:81.360000px;}
.fsf{font-size:81.504000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs11{font-size:87.840000px;}
.fs12{font-size:87.984000px;}
.fs14{font-size:95.760000px;}
.fs17{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:216.000000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y6{bottom:20.808000px;}
.y80{bottom:78.270000px;}
.y79{bottom:78.300000px;}
.y70{bottom:78.330000px;}
.y76{bottom:78.375000px;}
.y6d{bottom:78.405000px;}
.y73{bottom:78.450000px;}
.y13c{bottom:85.212000px;}
.yda{bottom:87.156000px;}
.yc9{bottom:88.200000px;}
.y133{bottom:91.548000px;}
.y25{bottom:100.440000px;}
.y5d{bottom:106.812000px;}
.y8a{bottom:112.500000px;}
.y13b{bottom:114.372000px;}
.y51{bottom:116.316000px;}
.y132{bottom:120.708000px;}
.yb1{bottom:121.716000px;}
.yd9{bottom:123.696000px;}
.y10d{bottom:124.236000px;}
.y117{bottom:127.116000px;}
.y60{bottom:131.328000px;}
.y24{bottom:132.876000px;}
.y17c{bottom:135.576000px;}
.y1b{bottom:142.812000px;}
.y30{bottom:143.028000px;}
.y179{bottom:148.428000px;}
.y5c{bottom:149.472000px;}
.y13a{bottom:151.095000px;}
.y50{bottom:153.075000px;}
.y16f{bottom:153.975000px;}
.y88{bottom:156.240000px;}
.y131{bottom:157.425000px;}
.yd8{bottom:159.735000px;}
.y2d{bottom:159.870000px;}
.y10c{bottom:160.995000px;}
.y100{bottom:163.875000px;}
.y23{bottom:165.270000px;}
.y1a{bottom:165.495000px;}
.yb0{bottom:171.255000px;}
.yc1{bottom:174.855000px;}
.yf8{bottom:175.215000px;}
.y2f{bottom:175.425000px;}
.ye9{bottom:176.475000px;}
.y139{bottom:180.255000px;}
.y16e{bottom:183.135000px;}
.y143{bottom:184.395000px;}
.ya0{bottom:184.755000px;}
.yc6{bottom:185.475000px;}
.y63{bottom:186.555000px;}
.y130{bottom:186.585000px;}
.y19{bottom:188.205000px;}
.y4f{bottom:189.795000px;}
.y8b{bottom:190.800000px;}
.y2c{bottom:192.270000px;}
.yff{bottom:193.035000px;}
.y5{bottom:193.425000px;}
.y153{bottom:196.275000px;}
.ye3{bottom:196.455000px;}
.y178{bottom:197.385000px;}
.y127{bottom:197.535000px;}
.y22{bottom:197.670000px;}
.y10b{bottom:197.715000px;}
.y5b{bottom:198.975000px;}
.y66{bottom:199.470000px;}
.y86{bottom:200.160000px;}
.yaf{bottom:200.415000px;}
.yf7{bottom:207.795000px;}
.yb9{bottom:207.975000px;}
.y12a{bottom:209.235000px;}
.yd7{bottom:209.415000px;}
.y18{bottom:210.885000px;}
.yc0{bottom:211.575000px;}
.y62{bottom:211.755000px;}
.y138{bottom:216.825000px;}
.y9f{bottom:217.155000px;}
.y16d{bottom:219.675000px;}
.y142{bottom:221.115000px;}
.y11e{bottom:221.295000px;}
.yc5{bottom:221.835000px;}
.y12f{bottom:223.125000px;}
.y2b{bottom:224.670000px;}
.y167{bottom:224.715000px;}
.y152{bottom:225.435000px;}
.y4e{bottom:225.615000px;}
.y126{bottom:226.695000px;}
.yfe{bottom:229.395000px;}
.y116{bottom:229.575000px;}
.y21{bottom:230.070000px;}
.ye2{bottom:233.175000px;}
.y10a{bottom:233.535000px;}
.y17{bottom:233.565000px;}
.y89{bottom:234.615000px;}
.y5a{bottom:235.695000px;}
.yeb{bottom:235.770000px;}
.y61{bottom:236.955000px;}
.yae{bottom:237.135000px;}
.y106{bottom:237.315000px;}
.y15a{bottom:239.655000px;}
.y84{bottom:243.900000px;}
.yb8{bottom:244.695000px;}
.y177{bottom:246.210000px;}
.yd6{bottom:247.215000px;}
.ybf{bottom:247.575000px;}
.y16c{bottom:248.835000px;}
.y4{bottom:248.910000px;}
.yf0{bottom:252.615000px;}
.y137{bottom:253.545000px;}
.yea{bottom:253.770000px;}
.yf6{bottom:255.315000px;}
.y125{bottom:255.855000px;}
.y16{bottom:256.245000px;}
.y166{bottom:257.115000px;}
.y11d{bottom:257.835000px;}
.yc4{bottom:258.735000px;}
.y12e{bottom:259.845000px;}
.y151{bottom:261.975000px;}
.yad{bottom:266.295000px;}
.y9e{bottom:266.835000px;}
.y105{bottom:269.535000px;}
.ye1{bottom:269.715000px;}
.yf5{bottom:271.335000px;}
.y59{bottom:272.415000px;}
.y20{bottom:273.525000px;}
.yb7{bottom:273.855000px;}
.y95{bottom:274.755000px;}
.y4d{bottom:275.295000px;}
.y16b{bottom:277.995000px;}
.y87{bottom:278.430000px;}
.y38{bottom:278.610000px;}
.yd5{bottom:278.895000px;}
.y15{bottom:278.925000px;}
.y93{bottom:279.615000px;}
.yef{bottom:281.775000px;}
.y6a{bottom:282.135000px;}
.y109{bottom:282.495000px;}
.y11c{bottom:286.995000px;}
.y82{bottom:287.640000px;}
.y159{bottom:289.335000px;}
.yec{bottom:289.770000px;}
.y136{bottom:290.265000px;}
.y150{bottom:291.135000px;}
.yd4{bottom:292.395000px;}
.y124{bottom:292.575000px;}
.y176{bottom:295.170000px;}
.yc3{bottom:295.455000px;}
.ybe{bottom:295.635000px;}
.y12d{bottom:296.610000px;}
.y104{bottom:298.695000px;}
.ye0{bottom:298.875000px;}
.y8f{bottom:301.575000px;}
.y14{bottom:301.605000px;}
.y115{bottom:302.295000px;}
.yfd{bottom:302.655000px;}
.yac{bottom:303.015000px;}
.y9d{bottom:303.375000px;}
.ya6{bottom:305.715000px;}
.y165{bottom:306.615000px;}
.y58{bottom:308.955000px;}
.yb6{bottom:309.675000px;}
.y4c{bottom:312.015000px;}
.yba{bottom:314.175000px;}
.y69{bottom:314.565000px;}
.y16a{bottom:314.745000px;}
.y108{bottom:314.925000px;}
.y37{bottom:315.330000px;}
.ybd{bottom:315.825000px;}
.yee{bottom:318.525000px;}
.yf4{bottom:319.605000px;}
.y123{bottom:321.765000px;}
.y85{bottom:322.200000px;}
.y141{bottom:322.845000px;}
.ye8{bottom:323.205000px;}
.y11b{bottom:323.745000px;}
.y13{bottom:324.285000px;}
.y14e{bottom:325.905000px;}
.y135{bottom:326.805000px;}
.y14f{bottom:327.165000px;}
.y175{bottom:327.570000px;}
.y161{bottom:327.705000px;}
.y8e{bottom:330.765000px;}
.y129{bottom:331.485000px;}
.y7f{bottom:331.560000px;}
.yab{bottom:332.205000px;}
.y12c{bottom:333.150000px;}
.y14a{bottom:334.725000px;}
.ya5{bottom:334.905000px;}
.y103{bottom:335.445000px;}
.yf3{bottom:335.625000px;}
.y164{bottom:335.805000px;}
.yd3{bottom:337.065000px;}
.y57{bottom:338.145000px;}
.yfc{bottom:338.865000px;}
.y9c{bottom:340.125000px;}
.yb5{bottom:342.105000px;}
.y45{bottom:343.470000px;}
.y169{bottom:343.905000px;}
.y12{bottom:346.965000px;}
.yc7{bottom:347.430000px;}
.y162{bottom:347.685000px;}
.y40{bottom:347.865000px;}
.y4b{bottom:348.585000px;}
.y36{bottom:350.250000px;}
.y114{bottom:351.825000px;}
.y156{bottom:352.365000px;}
.yed{bottom:354.345000px;}
.y14d{bottom:355.065000px;}
.y122{bottom:357.585000px;}
.y44{bottom:357.870000px;}
.y174{bottom:359.970000px;}
.y160{bottom:360.105000px;}
.y11a{bottom:360.465000px;}
.y158{bottom:361.905000px;}
.y134{bottom:362.805000px;}
.y107{bottom:363.885000px;}
.y102{bottom:364.605000px;}
.y149{bottom:365.145000px;}
.y83{bottom:366.015000px;}
.y8d{bottom:367.125000px;}
.ybc{bottom:367.305000px;}
.y17f{bottom:367.890000px;}
.yaa{bottom:368.025000px;}
.y12b{bottom:369.150000px;}
.y91{bottom:369.615000px;}
.y11{bottom:369.690000px;}
.ya4{bottom:371.625000px;}
.ye7{bottom:372.165000px;}
.y43{bottom:372.270000px;}
.y140{bottom:372.525000px;}
.y168{bottom:372.885000px;}
.y56{bottom:374.865000px;}
.y7d{bottom:375.300000px;}
.yd2{bottom:376.125000px;}
.y9b{bottom:376.845000px;}
.y3f{bottom:380.265000px;}
.y35{bottom:380.490000px;}
.y113{bottom:380.985000px;}
.y146{bottom:382.425000px;}
.y14c{bottom:384.225000px;}
.y4a{bottom:384.585000px;}
.ydf{bottom:385.845000px;}
.y42{bottom:386.715000px;}
.y3{bottom:387.690000px;}
.yfb{bottom:387.825000px;}
.y155{bottom:389.085000px;}
.y119{bottom:389.625000px;}
.yb4{bottom:391.785000px;}
.y10{bottom:392.370000px;}
.yc8{bottom:396.150000px;}
.y68{bottom:396.465000px;}
.y17e{bottom:399.855000px;}
.yc2{bottom:400.425000px;}
.ya3{bottom:400.785000px;}
.y41{bottom:401.115000px;}
.y55{bottom:404.025000px;}
.y148{bottom:404.745000px;}
.y121{bottom:407.265000px;}
.yd1{bottom:408.345000px;}
.y15f{bottom:409.065000px;}
.y13f{bottom:409.245000px;}
.y81{bottom:409.830000px;}
.y34{bottom:410.760000px;}
.y145{bottom:411.225000px;}
.y157{bottom:411.585000px;}
.y3e{bottom:412.665000px;}
.y9a{bottom:413.385000px;}
.yf{bottom:415.050000px;}
.y49{bottom:416.985000px;}
.ya9{bottom:417.705000px;}
.y7b{bottom:419.040000px;}
.yfa{bottom:420.225000px;}
.yf2{bottom:420.405000px;}
.yb3{bottom:420.945000px;}
.yd{bottom:423.000000px;}
.y67{bottom:425.445000px;}
.y154{bottom:425.625000px;}
.yde{bottom:426.705000px;}
.y111{bottom:432.645000px;}
.y8c{bottom:433.185000px;}
.y17d{bottom:433.260000px;}
.yf1{bottom:436.425000px;}
.ya2{bottom:437.505000px;}
.y54{bottom:440.745000px;}
.y33{bottom:440.820000px;}
.y173{bottom:441.360000px;}
.y15e{bottom:441.465000px;}
.y147{bottom:442.725000px;}
.y163{bottom:445.065000px;}
.y13e{bottom:445.785000px;}
.y2{bottom:448.890000px;}
.y99{bottom:450.105000px;}
.ye6{bottom:453.345000px;}
.y7e{bottom:453.630000px;}
.y112{bottom:453.705000px;}
.ya8{bottom:454.425000px;}
.yb2{bottom:457.665000px;}
.y118{bottom:457.845000px;}
.y94{bottom:457.950000px;}
.yd0{bottom:458.025000px;}
.yc{bottom:459.720000px;}
.y3d{bottom:462.345000px;}
.y78{bottom:462.960000px;}
.y1e{bottom:466.350000px;}
.y48{bottom:466.665000px;}
.ydd{bottom:467.745000px;}
.y110{bottom:469.185000px;}
.y15c{bottom:469.545000px;}
.yf9{bottom:469.725000px;}
.y53{bottom:469.905000px;}
.y32{bottom:471.060000px;}
.y120{bottom:473.145000px;}
.y172{bottom:473.760000px;}
.ya1{bottom:474.045000px;}
.ybb{bottom:477.285000px;}
.y13d{bottom:481.785000px;}
.ye5{bottom:485.745000px;}
.y14b{bottom:486.105000px;}
.y98{bottom:486.825000px;}
.ya7{bottom:490.245000px;}
.ycf{bottom:494.745000px;}
.yb{bottom:496.440000px;}
.y7c{bottom:497.445000px;}
.y10f{bottom:498.390000px;}
.y128{bottom:498.750000px;}
.y1d{bottom:498.780000px;}
.y3c{bottom:499.110000px;}
.y31{bottom:501.300000px;}
.y11f{bottom:502.350000px;}
.y47{bottom:503.250000px;}
.y144{bottom:506.310000px;}
.y52{bottom:506.490000px;}
.y75{bottom:506.700000px;}
.ydc{bottom:506.850000px;}
.y1{bottom:510.120000px;}
.y171{bottom:522.540000px;}
.y97{bottom:522.690000px;}
.yce{bottom:531.510000px;}
.ya{bottom:532.980000px;}
.ye4{bottom:534.390000px;}
.y15b{bottom:535.470000px;}
.y3b{bottom:535.650000px;}
.y46{bottom:539.250000px;}
.y7a{bottom:541.260000px;}
.y72{bottom:550.440000px;}
.y170{bottom:554.940000px;}
.y15d{bottom:555.090000px;}
.ycd{bottom:568.050000px;}
.y10e{bottom:568.230000px;}
.y9{bottom:569.700000px;}
.y101{bottom:571.470000px;}
.y5f{bottom:571.500000px;}
.y3a{bottom:571.650000px;}
.y77{bottom:585.075000px;}
.ycc{bottom:585.150000px;}
.y92{bottom:588.930000px;}
.y1f{bottom:589.890000px;}
.y6f{bottom:594.360000px;}
.ydb{bottom:603.870000px;}
.y5e{bottom:603.930000px;}
.y39{bottom:604.050000px;}
.y8{bottom:606.450000px;}
.y1c{bottom:612.210000px;}
.y96{bottom:614.160000px;}
.ycb{bottom:617.550000px;}
.y74{bottom:628.890000px;}
.y17b{bottom:630.255000px;}
.y29{bottom:631.905000px;}
.y6c{bottom:638.100000px;}
.yca{bottom:649.950000px;}
.y65{bottom:651.135000px;}
.y17a{bottom:662.685000px;}
.y28{bottom:664.305000px;}
.y90{bottom:665.535000px;}
.y71{bottom:672.690000px;}
.y64{bottom:681.375000px;}
.y2a{bottom:694.905000px;}
.y2e{bottom:695.160000px;}
.y27{bottom:696.750000px;}
.y6e{bottom:716.505000px;}
.ye{bottom:727.665000px;}
.y7{bottom:727.845000px;}
.y26{bottom:729.150000px;}
.y6b{bottom:760.290000px;}
.he{height:47.980898px;}
.hf{height:48.124125px;}
.h27{height:52.628906px;}
.h4{height:59.851687px;}
.h13{height:64.331719px;}
.h26{height:65.884219px;}
.h20{height:66.747656px;}
.h25{height:67.055040px;}
.h22{height:80.703984px;}
.h23{height:80.825344px;}
.h17{height:80.923008px;}
.h16{height:81.066234px;}
.hb{height:82.476562px;}
.h14{height:83.306602px;}
.h8{height:83.787539px;}
.h9{height:83.930766px;}
.h7{height:86.255508px;}
.h24{height:86.402953px;}
.h19{height:91.019531px;}
.h18{height:91.140891px;}
.h1b{height:101.335078px;}
.h6{height:107.419922px;}
.ha{height:107.563148px;}
.h10{height:110.583984px;}
.h1e{height:117.949219px;}
.hd{height:119.594180px;}
.h12{height:119.737406px;}
.hc{height:123.116836px;}
.h11{height:123.264281px;}
.h1c{height:130.107656px;}
.h3{height:137.109375px;}
.h1d{height:145.019531px;}
.h21{height:156.303984px;}
.h15{height:170.280000px;}
.h1f{height:173.099531px;}
.h1a{height:192.176437px;}
.h5{height:205.664062px;}
.h2{height:228.287109px;}
.h1{height:228.424219px;}
.h0{height:810.000000px;}
.w3{width:72.720000px;}
.w2{width:321.300000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2a{left:10.950000px;}
.x3f{left:44.711979px;}
.x39{left:62.495979px;}
.x20{left:74.951979px;}
.x47{left:91.835979px;}
.x1e{left:95.651979px;}
.x1f{left:115.091979px;}
.xf{left:116.999979px;}
.x24{left:122.039979px;}
.x4{left:137.663979px;}
.x45{left:138.743979px;}
.x1{left:140.435979px;}
.x3{left:147.455979px;}
.x5c{left:152.309979px;}
.x8{left:158.249979px;}
.x12{left:163.649979px;}
.x9{left:204.449979px;}
.x46{left:213.989979px;}
.x56{left:230.249979px;}
.x52{left:239.609979px;}
.x40{left:268.814979px;}
.x44{left:295.049979px;}
.x48{left:316.514979px;}
.x1a{left:327.059979px;}
.x36{left:332.744979px;}
.x3c{left:339.689979px;}
.x53{left:342.209979px;}
.x49{left:360.074979px;}
.x5b{left:362.549979px;}
.x19{left:365.759979px;}
.xa{left:369.539979px;}
.x6{left:372.269979px;}
.x4a{left:380.954979px;}
.x18{left:386.099979px;}
.x27{left:405.569979px;}
.x57{left:412.634979px;}
.x54{left:420.014979px;}
.x3d{left:423.794979px;}
.x4f{left:427.034979px;}
.x7{left:434.954979px;}
.x3a{left:463.469979px;}
.x4b{left:511.844979px;}
.x55{left:529.994979px;}
.x58{left:538.814979px;}
.x50{left:540.614979px;}
.x4c{left:555.584979px;}
.x4d{left:574.124979px;}
.x2{left:622.364979px;}
.x16{left:639.329979px;}
.x51{left:645.014979px;}
.x17{left:653.369979px;}
.x15{left:667.229979px;}
.x3b{left:690.149979px;}
.x4e{left:696.344979px;}
.x38{left:723.344979px;}
.x11{left:739.439979px;}
.x5{left:742.649979px;}
.x13{left:748.649979px;}
.x59{left:752.324979px;}
.x5a{left:768.524979px;}
.x26{left:777.419979px;}
.xb{left:801.899979px;}
.x37{left:802.949979px;}
.x25{left:834.299979px;}
.xe{left:841.964979px;}
.x34{left:858.749979px;}
.x29{left:873.180000px;}
.x22{left:909.824979px;}
.xc{left:919.154979px;}
.x21{left:922.604979px;}
.x2e{left:927.899979px;}
.x23{left:929.804979px;}
.x32{left:932.039979px;}
.x31{left:938.519979px;}
.x30{left:945.719979px;}
.xd{left:952.994979px;}
.x33{left:956.519979px;}
.x28{left:997.409979px;}
.x35{left:1012.349979px;}
.x5f{left:1050.269979px;}
.x5d{left:1051.304979px;}
.x5e{left:1092.599979px;}
.x10{left:1127.909979px;}
.x14{left:1142.849979px;}
.x41{left:1163.129979px;}
.x43{left:1182.929979px;}
.x2b{left:1194.300000px;}
.x1d{left:1205.849979px;}
.x2f{left:1211.504979px;}
.x1c{left:1214.489979px;}
.x1b{left:1233.389979px;}
.x3e{left:1273.169979px;}
.x42{left:1279.079979px;}
.x2d{left:1280.159979px;}
.x2c{left:1290.419979px;}
@media print{
.v4{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.946667pt;}
.vd{vertical-align:-17.280000pt;}
.v1{vertical-align:-2.816000pt;}
.v2{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:19.840000pt;}
.v5{vertical-align:21.866667pt;}
.v9{vertical-align:28.160000pt;}
.v8{vertical-align:48.000000pt;}
.vf{vertical-align:49.920000pt;}
.v7{vertical-align:56.320000pt;}
.vb{vertical-align:60.800000pt;}
.ve{vertical-align:67.200000pt;}
.v6{vertical-align:80.640000pt;}
.vc{vertical-align:92.800000pt;}
.ls7a{letter-spacing:-4.032000pt;}
.ls13{letter-spacing:-2.048000pt;}
.ls23{letter-spacing:-1.856000pt;}
.ls29{letter-spacing:-1.338667pt;}
.ls4d{letter-spacing:-1.274667pt;}
.ls6e{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.515733pt;}
.ls2d{letter-spacing:-0.489067pt;}
.ls26{letter-spacing:-0.416000pt;}
.ls24{letter-spacing:-0.352000pt;}
.ls40{letter-spacing:-0.350933pt;}
.ls51{letter-spacing:-0.349333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.299733pt;}
.lse{letter-spacing:-0.298133pt;}
.ls28{letter-spacing:-0.291733pt;}
.ls65{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.262400pt;}
.ls73{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.251200pt;}
.ls4c{letter-spacing:-0.237867pt;}
.lsc{letter-spacing:-0.234133pt;}
.ls30{letter-spacing:-0.225067pt;}
.ls18{letter-spacing:-0.186133pt;}
.ls22{letter-spacing:-0.185600pt;}
.ls19{letter-spacing:-0.175467pt;}
.ls77{letter-spacing:-0.170133pt;}
.ls1a{letter-spacing:-0.153067pt;}
.ls74{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.106133pt;}
.lsd{letter-spacing:-0.059733pt;}
.ls16{letter-spacing:-0.057067pt;}
.ls78{letter-spacing:-0.053867pt;}
.lsa{letter-spacing:-0.052480pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls4f{letter-spacing:-0.038400pt;}
.ls2e{letter-spacing:-0.034027pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls45{letter-spacing:-0.005760pt;}
.ls79{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.004480pt;}
.ls41{letter-spacing:0.006400pt;}
.ls66{letter-spacing:0.039040pt;}
.ls2c{letter-spacing:0.043520pt;}
.ls52{letter-spacing:0.056107pt;}
.ls72{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.066133pt;}
.ls4e{letter-spacing:0.089600pt;}
.ls25{letter-spacing:0.092800pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls6c{letter-spacing:0.098667pt;}
.ls5f{letter-spacing:0.124267pt;}
.ls27{letter-spacing:0.128000pt;}
.ls69{letter-spacing:0.156267pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls61{letter-spacing:0.201600pt;}
.ls50{letter-spacing:0.217600pt;}
.ls6{letter-spacing:0.245867pt;}
.ls21{letter-spacing:0.247424pt;}
.ls15{letter-spacing:0.255360pt;}
.ls8{letter-spacing:0.255467pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.288000pt;}
.ls76{letter-spacing:0.333333pt;}
.ls75{letter-spacing:2.546560pt;}
.ls32{letter-spacing:2.720000pt;}
.ls58{letter-spacing:2.902400pt;}
.ls34{letter-spacing:5.492608pt;}
.ls3e{letter-spacing:5.574400pt;}
.ls5e{letter-spacing:5.770880pt;}
.ls43{letter-spacing:5.830400pt;}
.ls37{letter-spacing:6.214400pt;}
.ls5a{letter-spacing:6.410880pt;}
.ls67{letter-spacing:7.066880pt;}
.ls3a{letter-spacing:21.318400pt;}
.ls6a{letter-spacing:21.730688pt;}
.ls1b{letter-spacing:21.856000pt;}
.ls62{letter-spacing:22.016000pt;}
.ls14{letter-spacing:22.496000pt;}
.ls6f{letter-spacing:22.530688pt;}
.ls7{letter-spacing:23.549355pt;}
.ls6b{letter-spacing:23.573760pt;}
.ls1{letter-spacing:23.594667pt;}
.ls6d{letter-spacing:23.616000pt;}
.ls57{letter-spacing:24.095360pt;}
.ls10{letter-spacing:24.319360pt;}
.ls39{letter-spacing:26.848000pt;}
.ls3d{letter-spacing:26.950400pt;}
.ls5d{letter-spacing:27.081600pt;}
.ls56{letter-spacing:27.220480pt;}
.ls3b{letter-spacing:27.334400pt;}
.ls53{letter-spacing:27.571840pt;}
.ls3c{letter-spacing:27.590400pt;}
.ls48{letter-spacing:29.637120pt;}
.ls49{letter-spacing:30.000640pt;}
.ls46{letter-spacing:30.260907pt;}
.ls47{letter-spacing:30.558720pt;}
.ls5{letter-spacing:31.047168pt;}
.ls4{letter-spacing:31.092480pt;}
.ls2b{letter-spacing:32.225024pt;}
.ls64{letter-spacing:38.784000pt;}
.ls54{letter-spacing:43.075200pt;}
.ls5c{letter-spacing:43.715200pt;}
.ls55{letter-spacing:44.094080pt;}
.ls59{letter-spacing:44.170880pt;}
.ls3f{letter-spacing:48.710400pt;}
.ls33{letter-spacing:49.012608pt;}
.ls42{letter-spacing:49.094400pt;}
.ls36{letter-spacing:49.273728pt;}
.ls44{letter-spacing:49.350400pt;}
.ls5b{letter-spacing:63.934080pt;}
.ls35{letter-spacing:70.393728pt;}
.ls71{letter-spacing:70.470400pt;}
.ls70{letter-spacing:71.110400pt;}
.ls63{letter-spacing:71.270400pt;}
.ls38{letter-spacing:75.590400pt;}
.ls68{letter-spacing:78.670080pt;}
.ls3{letter-spacing:86.675200pt;}
.ls2{letter-spacing:86.720000pt;}
.ls4a{letter-spacing:97.728000pt;}
.ls4b{letter-spacing:97.834667pt;}
.ws4b{word-spacing:-107.008000pt;}
.wsc3{word-spacing:-106.969600pt;}
.ws4f{word-spacing:-106.880000pt;}
.ws2e{word-spacing:-96.128000pt;}
.ws62{word-spacing:-96.000000pt;}
.ws47{word-spacing:-89.110400pt;}
.ws9a{word-spacing:-88.950400pt;}
.ws86{word-spacing:-85.248000pt;}
.ws81{word-spacing:-85.120000pt;}
.ws6e{word-spacing:-83.260160pt;}
.ws6f{word-spacing:-83.039360pt;}
.ws67{word-spacing:-82.745600pt;}
.ws72{word-spacing:-80.187520pt;}
.ws5c{word-spacing:-79.840000pt;}
.wscb{word-spacing:-79.680000pt;}
.ws8b{word-spacing:-79.547520pt;}
.ws5b{word-spacing:-79.200000pt;}
.ws4e{word-spacing:-78.208000pt;}
.ws4d{word-spacing:-78.173973pt;}
.ws50{word-spacing:-78.123520pt;}
.ws51{word-spacing:-78.080000pt;}
.ws6d{word-spacing:-77.279360pt;}
.ws7a{word-spacing:-74.912000pt;}
.ws5f{word-spacing:-74.880000pt;}
.ws5e{word-spacing:-74.432000pt;}
.ws61{word-spacing:-74.400000pt;}
.ws60{word-spacing:-74.272000pt;}
.ws8d{word-spacing:-71.968000pt;}
.ws11{word-spacing:-71.584000pt;}
.wsc5{word-spacing:-71.232000pt;}
.ws82{word-spacing:-71.209600pt;}
.ws78{word-spacing:-70.617600pt;}
.ws84{word-spacing:-70.569600pt;}
.ws75{word-spacing:-70.489600pt;}
.ws2f{word-spacing:-70.400000pt;}
.ws7b{word-spacing:-70.361600pt;}
.ws77{word-spacing:-69.152000pt;}
.ws83{word-spacing:-66.144640pt;}
.ws80{word-spacing:-61.024640pt;}
.ws5d{word-spacing:-50.720000pt;}
.ws79{word-spacing:-45.241600pt;}
.ws2{word-spacing:-43.392000pt;}
.ws6c{word-spacing:-41.843840pt;}
.ws4c{word-spacing:-39.938240pt;}
.ws76{word-spacing:-39.496533pt;}
.ws87{word-spacing:-36.092480pt;}
.ws89{word-spacing:-35.902720pt;}
.ws85{word-spacing:-35.069952pt;}
.ws88{word-spacing:-33.758720pt;}
.ws0{word-spacing:-28.928000pt;}
.ws9d{word-spacing:-24.410347pt;}
.ws1a{word-spacing:-24.183808pt;}
.ws4a{word-spacing:-24.159360pt;}
.ws5{word-spacing:-24.154880pt;}
.wsf{word-spacing:-23.639147pt;}
.ws64{word-spacing:-21.939200pt;}
.ws63{word-spacing:-21.862400pt;}
.ws2c{word-spacing:-21.856000pt;}
.wsb9{word-spacing:-21.760000pt;}
.ws7e{word-spacing:-21.724928pt;}
.ws3{word-spacing:-21.696000pt;}
.ws2a{word-spacing:-21.664000pt;}
.wsb8{word-spacing:-21.440000pt;}
.wsc7{word-spacing:-21.344000pt;}
.ws4{word-spacing:-16.922880pt;}
.ws1b{word-spacing:-16.875520pt;}
.ws21{word-spacing:-16.373248pt;}
.ws22{word-spacing:-16.344320pt;}
.wsd6{word-spacing:-13.306880pt;}
.wsc{word-spacing:-9.421675pt;}
.ws5a{word-spacing:-4.629333pt;}
.ws54{word-spacing:-4.501333pt;}
.wsd{word-spacing:-4.437333pt;}
.ws35{word-spacing:-3.968000pt;}
.ws3c{word-spacing:-3.509333pt;}
.ws48{word-spacing:-3.400960pt;}
.ws9c{word-spacing:-2.780160pt;}
.wsad{word-spacing:-2.300160pt;}
.ws65{word-spacing:-2.099541pt;}
.ws96{word-spacing:-1.978240pt;}
.ws3e{word-spacing:-1.888000pt;}
.wsb1{word-spacing:-1.856000pt;}
.wsb7{word-spacing:-1.845120pt;}
.wsd4{word-spacing:-1.823680pt;}
.ws8f{word-spacing:-1.821184pt;}
.ws52{word-spacing:-1.707733pt;}
.ws15{word-spacing:-1.664000pt;}
.wscc{word-spacing:-1.626240pt;}
.ws8e{word-spacing:-1.622613pt;}
.wsb4{word-spacing:-1.602560pt;}
.wsd0{word-spacing:-1.466240pt;}
.ws99{word-spacing:-1.463040pt;}
.ws94{word-spacing:-1.393920pt;}
.ws43{word-spacing:-1.323520pt;}
.wsd2{word-spacing:-1.201280pt;}
.ws1f{word-spacing:-1.193813pt;}
.ws7c{word-spacing:-1.038720pt;}
.ws68{word-spacing:-1.038080pt;}
.ws49{word-spacing:-1.029760pt;}
.ws3b{word-spacing:-0.970880pt;}
.ws37{word-spacing:-0.932693pt;}
.ws32{word-spacing:-0.901888pt;}
.ws8a{word-spacing:-0.868053pt;}
.wsca{word-spacing:-0.865920pt;}
.ws30{word-spacing:-0.836053pt;}
.ws46{word-spacing:-0.784000pt;}
.wsd3{word-spacing:-0.775040pt;}
.ws26{word-spacing:-0.760960pt;}
.wsa3{word-spacing:-0.704000pt;}
.ws23{word-spacing:-0.700160pt;}
.wsc6{word-spacing:-0.616320pt;}
.ws41{word-spacing:-0.601600pt;}
.wsc4{word-spacing:-0.572373pt;}
.wsa9{word-spacing:-0.571520pt;}
.wscd{word-spacing:-0.492373pt;}
.wsa1{word-spacing:-0.492160pt;}
.ws17{word-spacing:-0.480000pt;}
.wsa0{word-spacing:-0.459093pt;}
.ws6{word-spacing:-0.404053pt;}
.ws7f{word-spacing:-0.403840pt;}
.wsab{word-spacing:-0.384000pt;}
.ws9e{word-spacing:-0.376960pt;}
.ws74{word-spacing:-0.376533pt;}
.ws71{word-spacing:-0.368640pt;}
.wsa2{word-spacing:-0.359168pt;}
.wsc9{word-spacing:-0.352000pt;}
.ws1d{word-spacing:-0.305408pt;}
.ws14{word-spacing:-0.288000pt;}
.ws98{word-spacing:-0.256000pt;}
.wsa4{word-spacing:-0.224000pt;}
.ws16{word-spacing:-0.192000pt;}
.wsb0{word-spacing:-0.129920pt;}
.ws8c{word-spacing:-0.124032pt;}
.wsbc{word-spacing:-0.096000pt;}
.ws55{word-spacing:-0.068693pt;}
.ws73{word-spacing:-0.033920pt;}
.ws3f{word-spacing:-0.032000pt;}
.wsa7{word-spacing:-0.004693pt;}
.ws1{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.010027pt;}
.ws20{word-spacing:0.010432pt;}
.ws38{word-spacing:0.025387pt;}
.ws33{word-spacing:0.032000pt;}
.ws36{word-spacing:0.044800pt;}
.ws10{word-spacing:0.046080pt;}
.ws6a{word-spacing:0.046720pt;}
.ws7{word-spacing:0.096000pt;}
.ws44{word-spacing:0.160000pt;}
.ws3d{word-spacing:0.164267pt;}
.ws9f{word-spacing:0.217600pt;}
.wsaf{word-spacing:0.224000pt;}
.wsbb{word-spacing:0.233344pt;}
.wsbe{word-spacing:0.256000pt;}
.wsc2{word-spacing:0.281600pt;}
.ws1c{word-spacing:0.288000pt;}
.ws59{word-spacing:0.298667pt;}
.ws18{word-spacing:0.320000pt;}
.ws57{word-spacing:0.328960pt;}
.wsc0{word-spacing:0.352000pt;}
.ws31{word-spacing:0.397483pt;}
.ws56{word-spacing:0.401920pt;}
.wsae{word-spacing:0.416000pt;}
.wsb6{word-spacing:0.448000pt;}
.wse{word-spacing:0.499840pt;}
.wsbf{word-spacing:0.504832pt;}
.ws34{word-spacing:0.512000pt;}
.ws42{word-spacing:0.544000pt;}
.wsaa{word-spacing:0.576000pt;}
.wsd1{word-spacing:0.606080pt;}
.wsb5{word-spacing:0.666667pt;}
.wsb2{word-spacing:0.668800pt;}
.ws39{word-spacing:0.704000pt;}
.ws13{word-spacing:0.725120pt;}
.ws69{word-spacing:0.731520pt;}
.ws8{word-spacing:0.763520pt;}
.ws92{word-spacing:0.768000pt;}
.ws58{word-spacing:0.810667pt;}
.ws45{word-spacing:0.832000pt;}
.ws97{word-spacing:0.838827pt;}
.wsa6{word-spacing:0.896000pt;}
.ws7d{word-spacing:0.907584pt;}
.ws6b{word-spacing:0.921813pt;}
.ws28{word-spacing:0.928000pt;}
.ws3a{word-spacing:0.992000pt;}
.wsb{word-spacing:1.034027pt;}
.ws66{word-spacing:1.034240pt;}
.ws9b{word-spacing:1.035307pt;}
.wsba{word-spacing:1.056000pt;}
.ws90{word-spacing:1.088000pt;}
.ws40{word-spacing:1.119424pt;}
.ws12{word-spacing:1.120000pt;}
.ws9{word-spacing:1.139840pt;}
.ws93{word-spacing:1.184000pt;}
.ws91{word-spacing:1.248000pt;}
.ws53{word-spacing:1.280000pt;}
.wsc1{word-spacing:1.287680pt;}
.ws27{word-spacing:1.299840pt;}
.wsa{word-spacing:1.336640pt;}
.ws1e{word-spacing:1.376000pt;}
.wscf{word-spacing:1.446827pt;}
.wsce{word-spacing:1.528107pt;}
.wsa5{word-spacing:1.568000pt;}
.wsc8{word-spacing:1.664000pt;}
.ws19{word-spacing:1.696000pt;}
.ws29{word-spacing:1.728000pt;}
.wsac{word-spacing:1.920000pt;}
.wsa8{word-spacing:2.144000pt;}
.wsb3{word-spacing:2.748800pt;}
.ws70{word-spacing:3.388800pt;}
.wsd5{word-spacing:8.227200pt;}
.ws95{word-spacing:44.128000pt;}
.ws24{word-spacing:130.169387pt;}
.ws25{word-spacing:135.929387pt;}
.ws2d{word-spacing:230.794667pt;}
.ws2b{word-spacing:766.421333pt;}
._15{margin-left:-3890.457728pt;}
._25{margin-left:-1478.325333pt;}
._1c{margin-left:-18.403413pt;}
._11{margin-left:-14.592000pt;}
._2a{margin-left:-13.119616pt;}
._28{margin-left:-11.495424pt;}
._1d{margin-left:-9.723221pt;}
._4{margin-left:-8.035456pt;}
._1{margin-left:-6.397440pt;}
._2{margin-left:-5.117952pt;}
._0{margin-left:-3.411968pt;}
._3{margin-left:-2.345728pt;}
._e{margin-left:-1.382272pt;}
._10{width:1.328000pt;}
._d{width:3.200000pt;}
._9{width:4.608000pt;}
._5{width:6.272000pt;}
._7{width:7.424000pt;}
._6{width:8.320000pt;}
._a{width:10.730667pt;}
._1f{width:14.564864pt;}
._1b{width:19.993728pt;}
._26{width:21.818283pt;}
._1a{width:22.761728pt;}
._18{width:23.715072pt;}
._33{width:24.641408pt;}
._19{width:25.768235pt;}
._2c{width:26.976000pt;}
._2f{width:36.774315pt;}
._2e{width:37.672875pt;}
._32{width:38.789803pt;}
._16{width:39.951275pt;}
._24{width:41.206699pt;}
._b{width:44.394667pt;}
._2d{width:47.113387pt;}
._31{width:48.637227pt;}
._29{width:65.221717pt;}
._2b{width:67.507968pt;}
._30{width:71.798571pt;}
._c{width:135.027968pt;}
._22{width:412.229248pt;}
._12{width:561.936896pt;}
._13{width:566.272853pt;}
._27{width:587.253333pt;}
._14{width:595.227520pt;}
._21{width:652.578176pt;}
._23{width:788.538752pt;}
._20{width:806.552320pt;}
._1e{width:862.096384pt;}
._8{width:1110.794667pt;}
._34{width:1910.816000pt;}
._17{width:1939.616000pt;}
._f{width:1968.416000pt;}
.fsb{font-size:42.880000pt;}
.fsc{font-size:43.008000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:56.320000pt;}
.fs18{font-size:58.880000pt;}
.fs15{font-size:62.080000pt;}
.fs16{font-size:62.208000pt;}
.fs19{font-size:64.000000pt;}
.fs10{font-size:70.400000pt;}
.fs13{font-size:70.528000pt;}
.fse{font-size:72.320000pt;}
.fsf{font-size:72.448000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs11{font-size:78.080000pt;}
.fs12{font-size:78.208000pt;}
.fs14{font-size:85.120000pt;}
.fs17{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:192.000000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:18.496000pt;}
.y80{bottom:69.573333pt;}
.y79{bottom:69.600000pt;}
.y70{bottom:69.626667pt;}
.y76{bottom:69.666667pt;}
.y6d{bottom:69.693333pt;}
.y73{bottom:69.733333pt;}
.y13c{bottom:75.744000pt;}
.yda{bottom:77.472000pt;}
.yc9{bottom:78.400000pt;}
.y133{bottom:81.376000pt;}
.y25{bottom:89.280000pt;}
.y5d{bottom:94.944000pt;}
.y8a{bottom:100.000000pt;}
.y13b{bottom:101.664000pt;}
.y51{bottom:103.392000pt;}
.y132{bottom:107.296000pt;}
.yb1{bottom:108.192000pt;}
.yd9{bottom:109.952000pt;}
.y10d{bottom:110.432000pt;}
.y117{bottom:112.992000pt;}
.y60{bottom:116.736000pt;}
.y24{bottom:118.112000pt;}
.y17c{bottom:120.512000pt;}
.y1b{bottom:126.944000pt;}
.y30{bottom:127.136000pt;}
.y179{bottom:131.936000pt;}
.y5c{bottom:132.864000pt;}
.y13a{bottom:134.306667pt;}
.y50{bottom:136.066667pt;}
.y16f{bottom:136.866667pt;}
.y88{bottom:138.880000pt;}
.y131{bottom:139.933333pt;}
.yd8{bottom:141.986667pt;}
.y2d{bottom:142.106667pt;}
.y10c{bottom:143.106667pt;}
.y100{bottom:145.666667pt;}
.y23{bottom:146.906667pt;}
.y1a{bottom:147.106667pt;}
.yb0{bottom:152.226667pt;}
.yc1{bottom:155.426667pt;}
.yf8{bottom:155.746667pt;}
.y2f{bottom:155.933333pt;}
.ye9{bottom:156.866667pt;}
.y139{bottom:160.226667pt;}
.y16e{bottom:162.786667pt;}
.y143{bottom:163.906667pt;}
.ya0{bottom:164.226667pt;}
.yc6{bottom:164.866667pt;}
.y63{bottom:165.826667pt;}
.y130{bottom:165.853333pt;}
.y19{bottom:167.293333pt;}
.y4f{bottom:168.706667pt;}
.y8b{bottom:169.600000pt;}
.y2c{bottom:170.906667pt;}
.yff{bottom:171.586667pt;}
.y5{bottom:171.933333pt;}
.y153{bottom:174.466667pt;}
.ye3{bottom:174.626667pt;}
.y178{bottom:175.453333pt;}
.y127{bottom:175.586667pt;}
.y22{bottom:175.706667pt;}
.y10b{bottom:175.746667pt;}
.y5b{bottom:176.866667pt;}
.y66{bottom:177.306667pt;}
.y86{bottom:177.920000pt;}
.yaf{bottom:178.146667pt;}
.yf7{bottom:184.706667pt;}
.yb9{bottom:184.866667pt;}
.y12a{bottom:185.986667pt;}
.yd7{bottom:186.146667pt;}
.y18{bottom:187.453333pt;}
.yc0{bottom:188.066667pt;}
.y62{bottom:188.226667pt;}
.y138{bottom:192.733333pt;}
.y9f{bottom:193.026667pt;}
.y16d{bottom:195.266667pt;}
.y142{bottom:196.546667pt;}
.y11e{bottom:196.706667pt;}
.yc5{bottom:197.186667pt;}
.y12f{bottom:198.333333pt;}
.y2b{bottom:199.706667pt;}
.y167{bottom:199.746667pt;}
.y152{bottom:200.386667pt;}
.y4e{bottom:200.546667pt;}
.y126{bottom:201.506667pt;}
.yfe{bottom:203.906667pt;}
.y116{bottom:204.066667pt;}
.y21{bottom:204.506667pt;}
.ye2{bottom:207.266667pt;}
.y10a{bottom:207.586667pt;}
.y17{bottom:207.613333pt;}
.y89{bottom:208.546667pt;}
.y5a{bottom:209.506667pt;}
.yeb{bottom:209.573333pt;}
.y61{bottom:210.626667pt;}
.yae{bottom:210.786667pt;}
.y106{bottom:210.946667pt;}
.y15a{bottom:213.026667pt;}
.y84{bottom:216.800000pt;}
.yb8{bottom:217.506667pt;}
.y177{bottom:218.853333pt;}
.yd6{bottom:219.746667pt;}
.ybf{bottom:220.066667pt;}
.y16c{bottom:221.186667pt;}
.y4{bottom:221.253333pt;}
.yf0{bottom:224.546667pt;}
.y137{bottom:225.373333pt;}
.yea{bottom:225.573333pt;}
.yf6{bottom:226.946667pt;}
.y125{bottom:227.426667pt;}
.y16{bottom:227.773333pt;}
.y166{bottom:228.546667pt;}
.y11d{bottom:229.186667pt;}
.yc4{bottom:229.986667pt;}
.y12e{bottom:230.973333pt;}
.y151{bottom:232.866667pt;}
.yad{bottom:236.706667pt;}
.y9e{bottom:237.186667pt;}
.y105{bottom:239.586667pt;}
.ye1{bottom:239.746667pt;}
.yf5{bottom:241.186667pt;}
.y59{bottom:242.146667pt;}
.y20{bottom:243.133333pt;}
.yb7{bottom:243.426667pt;}
.y95{bottom:244.226667pt;}
.y4d{bottom:244.706667pt;}
.y16b{bottom:247.106667pt;}
.y87{bottom:247.493333pt;}
.y38{bottom:247.653333pt;}
.yd5{bottom:247.906667pt;}
.y15{bottom:247.933333pt;}
.y93{bottom:248.546667pt;}
.yef{bottom:250.466667pt;}
.y6a{bottom:250.786667pt;}
.y109{bottom:251.106667pt;}
.y11c{bottom:255.106667pt;}
.y82{bottom:255.680000pt;}
.y159{bottom:257.186667pt;}
.yec{bottom:257.573333pt;}
.y136{bottom:258.013333pt;}
.y150{bottom:258.786667pt;}
.yd4{bottom:259.906667pt;}
.y124{bottom:260.066667pt;}
.y176{bottom:262.373333pt;}
.yc3{bottom:262.626667pt;}
.ybe{bottom:262.786667pt;}
.y12d{bottom:263.653333pt;}
.y104{bottom:265.506667pt;}
.ye0{bottom:265.666667pt;}
.y8f{bottom:268.066667pt;}
.y14{bottom:268.093333pt;}
.y115{bottom:268.706667pt;}
.yfd{bottom:269.026667pt;}
.yac{bottom:269.346667pt;}
.y9d{bottom:269.666667pt;}
.ya6{bottom:271.746667pt;}
.y165{bottom:272.546667pt;}
.y58{bottom:274.626667pt;}
.yb6{bottom:275.266667pt;}
.y4c{bottom:277.346667pt;}
.yba{bottom:279.266667pt;}
.y69{bottom:279.613333pt;}
.y16a{bottom:279.773333pt;}
.y108{bottom:279.933333pt;}
.y37{bottom:280.293333pt;}
.ybd{bottom:280.733333pt;}
.yee{bottom:283.133333pt;}
.yf4{bottom:284.093333pt;}
.y123{bottom:286.013333pt;}
.y85{bottom:286.400000pt;}
.y141{bottom:286.973333pt;}
.ye8{bottom:287.293333pt;}
.y11b{bottom:287.773333pt;}
.y13{bottom:288.253333pt;}
.y14e{bottom:289.693333pt;}
.y135{bottom:290.493333pt;}
.y14f{bottom:290.813333pt;}
.y175{bottom:291.173333pt;}
.y161{bottom:291.293333pt;}
.y8e{bottom:294.013333pt;}
.y129{bottom:294.653333pt;}
.y7f{bottom:294.720000pt;}
.yab{bottom:295.293333pt;}
.y12c{bottom:296.133333pt;}
.y14a{bottom:297.533333pt;}
.ya5{bottom:297.693333pt;}
.y103{bottom:298.173333pt;}
.yf3{bottom:298.333333pt;}
.y164{bottom:298.493333pt;}
.yd3{bottom:299.613333pt;}
.y57{bottom:300.573333pt;}
.yfc{bottom:301.213333pt;}
.y9c{bottom:302.333333pt;}
.yb5{bottom:304.093333pt;}
.y45{bottom:305.306667pt;}
.y169{bottom:305.693333pt;}
.y12{bottom:308.413333pt;}
.yc7{bottom:308.826667pt;}
.y162{bottom:309.053333pt;}
.y40{bottom:309.213333pt;}
.y4b{bottom:309.853333pt;}
.y36{bottom:311.333333pt;}
.y114{bottom:312.733333pt;}
.y156{bottom:313.213333pt;}
.yed{bottom:314.973333pt;}
.y14d{bottom:315.613333pt;}
.y122{bottom:317.853333pt;}
.y44{bottom:318.106667pt;}
.y174{bottom:319.973333pt;}
.y160{bottom:320.093333pt;}
.y11a{bottom:320.413333pt;}
.y158{bottom:321.693333pt;}
.y134{bottom:322.493333pt;}
.y107{bottom:323.453333pt;}
.y102{bottom:324.093333pt;}
.y149{bottom:324.573333pt;}
.y83{bottom:325.346667pt;}
.y8d{bottom:326.333333pt;}
.ybc{bottom:326.493333pt;}
.y17f{bottom:327.013333pt;}
.yaa{bottom:327.133333pt;}
.y12b{bottom:328.133333pt;}
.y91{bottom:328.546667pt;}
.y11{bottom:328.613333pt;}
.ya4{bottom:330.333333pt;}
.ye7{bottom:330.813333pt;}
.y43{bottom:330.906667pt;}
.y140{bottom:331.133333pt;}
.y168{bottom:331.453333pt;}
.y56{bottom:333.213333pt;}
.y7d{bottom:333.600000pt;}
.yd2{bottom:334.333333pt;}
.y9b{bottom:334.973333pt;}
.y3f{bottom:338.013333pt;}
.y35{bottom:338.213333pt;}
.y113{bottom:338.653333pt;}
.y146{bottom:339.933333pt;}
.y14c{bottom:341.533333pt;}
.y4a{bottom:341.853333pt;}
.ydf{bottom:342.973333pt;}
.y42{bottom:343.746667pt;}
.y3{bottom:344.613333pt;}
.yfb{bottom:344.733333pt;}
.y155{bottom:345.853333pt;}
.y119{bottom:346.333333pt;}
.yb4{bottom:348.253333pt;}
.y10{bottom:348.773333pt;}
.yc8{bottom:352.133333pt;}
.y68{bottom:352.413333pt;}
.y17e{bottom:355.426667pt;}
.yc2{bottom:355.933333pt;}
.ya3{bottom:356.253333pt;}
.y41{bottom:356.546667pt;}
.y55{bottom:359.133333pt;}
.y148{bottom:359.773333pt;}
.y121{bottom:362.013333pt;}
.yd1{bottom:362.973333pt;}
.y15f{bottom:363.613333pt;}
.y13f{bottom:363.773333pt;}
.y81{bottom:364.293333pt;}
.y34{bottom:365.120000pt;}
.y145{bottom:365.533333pt;}
.y157{bottom:365.853333pt;}
.y3e{bottom:366.813333pt;}
.y9a{bottom:367.453333pt;}
.yf{bottom:368.933333pt;}
.y49{bottom:370.653333pt;}
.ya9{bottom:371.293333pt;}
.y7b{bottom:372.480000pt;}
.yfa{bottom:373.533333pt;}
.yf2{bottom:373.693333pt;}
.yb3{bottom:374.173333pt;}
.yd{bottom:376.000000pt;}
.y67{bottom:378.173333pt;}
.y154{bottom:378.333333pt;}
.yde{bottom:379.293333pt;}
.y111{bottom:384.573333pt;}
.y8c{bottom:385.053333pt;}
.y17d{bottom:385.120000pt;}
.yf1{bottom:387.933333pt;}
.ya2{bottom:388.893333pt;}
.y54{bottom:391.773333pt;}
.y33{bottom:391.840000pt;}
.y173{bottom:392.320000pt;}
.y15e{bottom:392.413333pt;}
.y147{bottom:393.533333pt;}
.y163{bottom:395.613333pt;}
.y13e{bottom:396.253333pt;}
.y2{bottom:399.013333pt;}
.y99{bottom:400.093333pt;}
.ye6{bottom:402.973333pt;}
.y7e{bottom:403.226667pt;}
.y112{bottom:403.293333pt;}
.ya8{bottom:403.933333pt;}
.yb2{bottom:406.813333pt;}
.y118{bottom:406.973333pt;}
.y94{bottom:407.066667pt;}
.yd0{bottom:407.133333pt;}
.yc{bottom:408.640000pt;}
.y3d{bottom:410.973333pt;}
.y78{bottom:411.520000pt;}
.y1e{bottom:414.533333pt;}
.y48{bottom:414.813333pt;}
.ydd{bottom:415.773333pt;}
.y110{bottom:417.053333pt;}
.y15c{bottom:417.373333pt;}
.yf9{bottom:417.533333pt;}
.y53{bottom:417.693333pt;}
.y32{bottom:418.720000pt;}
.y120{bottom:420.573333pt;}
.y172{bottom:421.120000pt;}
.ya1{bottom:421.373333pt;}
.ybb{bottom:424.253333pt;}
.y13d{bottom:428.253333pt;}
.ye5{bottom:431.773333pt;}
.y14b{bottom:432.093333pt;}
.y98{bottom:432.733333pt;}
.ya7{bottom:435.773333pt;}
.ycf{bottom:439.773333pt;}
.yb{bottom:441.280000pt;}
.y7c{bottom:442.173333pt;}
.y10f{bottom:443.013333pt;}
.y128{bottom:443.333333pt;}
.y1d{bottom:443.360000pt;}
.y3c{bottom:443.653333pt;}
.y31{bottom:445.600000pt;}
.y11f{bottom:446.533333pt;}
.y47{bottom:447.333333pt;}
.y144{bottom:450.053333pt;}
.y52{bottom:450.213333pt;}
.y75{bottom:450.400000pt;}
.ydc{bottom:450.533333pt;}
.y1{bottom:453.440000pt;}
.y171{bottom:464.480000pt;}
.y97{bottom:464.613333pt;}
.yce{bottom:472.453333pt;}
.ya{bottom:473.760000pt;}
.ye4{bottom:475.013333pt;}
.y15b{bottom:475.973333pt;}
.y3b{bottom:476.133333pt;}
.y46{bottom:479.333333pt;}
.y7a{bottom:481.120000pt;}
.y72{bottom:489.280000pt;}
.y170{bottom:493.280000pt;}
.y15d{bottom:493.413333pt;}
.ycd{bottom:504.933333pt;}
.y10e{bottom:505.093333pt;}
.y9{bottom:506.400000pt;}
.y101{bottom:507.973333pt;}
.y5f{bottom:508.000000pt;}
.y3a{bottom:508.133333pt;}
.y77{bottom:520.066667pt;}
.ycc{bottom:520.133333pt;}
.y92{bottom:523.493333pt;}
.y1f{bottom:524.346667pt;}
.y6f{bottom:528.320000pt;}
.ydb{bottom:536.773333pt;}
.y5e{bottom:536.826667pt;}
.y39{bottom:536.933333pt;}
.y8{bottom:539.066667pt;}
.y1c{bottom:544.186667pt;}
.y96{bottom:545.920000pt;}
.ycb{bottom:548.933333pt;}
.y74{bottom:559.013333pt;}
.y17b{bottom:560.226667pt;}
.y29{bottom:561.693333pt;}
.y6c{bottom:567.200000pt;}
.yca{bottom:577.733333pt;}
.y65{bottom:578.786667pt;}
.y17a{bottom:589.053333pt;}
.y28{bottom:590.493333pt;}
.y90{bottom:591.586667pt;}
.y71{bottom:597.946667pt;}
.y64{bottom:605.666667pt;}
.y2a{bottom:617.693333pt;}
.y2e{bottom:617.920000pt;}
.y27{bottom:619.333333pt;}
.y6e{bottom:636.893333pt;}
.ye{bottom:646.813333pt;}
.y7{bottom:646.973333pt;}
.y26{bottom:648.133333pt;}
.y6b{bottom:675.813333pt;}
.he{height:42.649687pt;}
.hf{height:42.777000pt;}
.h27{height:46.781250pt;}
.h4{height:53.201500pt;}
.h13{height:57.183750pt;}
.h26{height:58.563750pt;}
.h20{height:59.331250pt;}
.h25{height:59.604480pt;}
.h22{height:71.736875pt;}
.h23{height:71.844750pt;}
.h17{height:71.931562pt;}
.h16{height:72.058875pt;}
.hb{height:73.312500pt;}
.h14{height:74.050313pt;}
.h8{height:74.477812pt;}
.h9{height:74.605125pt;}
.h7{height:76.671562pt;}
.h24{height:76.802625pt;}
.h19{height:80.906250pt;}
.h18{height:81.014125pt;}
.h1b{height:90.075625pt;}
.h6{height:95.484375pt;}
.ha{height:95.611688pt;}
.h10{height:98.296875pt;}
.h1e{height:104.843750pt;}
.hd{height:106.305937pt;}
.h12{height:106.433250pt;}
.hc{height:109.437187pt;}
.h11{height:109.568250pt;}
.h1c{height:115.651250pt;}
.h3{height:121.875000pt;}
.h1d{height:128.906250pt;}
.h21{height:138.936875pt;}
.h15{height:151.360000pt;}
.h1f{height:153.866250pt;}
.h1a{height:170.823500pt;}
.h5{height:182.812500pt;}
.h2{height:202.921875pt;}
.h1{height:203.043750pt;}
.h0{height:720.000000pt;}
.w3{width:64.640000pt;}
.w2{width:285.600000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:9.733333pt;}
.x3f{left:39.743981pt;}
.x39{left:55.551981pt;}
.x20{left:66.623981pt;}
.x47{left:81.631981pt;}
.x1e{left:85.023981pt;}
.x1f{left:102.303981pt;}
.xf{left:103.999981pt;}
.x24{left:108.479981pt;}
.x4{left:122.367981pt;}
.x45{left:123.327981pt;}
.x1{left:124.831981pt;}
.x3{left:131.071981pt;}
.x5c{left:135.386648pt;}
.x8{left:140.666648pt;}
.x12{left:145.466648pt;}
.x9{left:181.733314pt;}
.x46{left:190.213314pt;}
.x56{left:204.666648pt;}
.x52{left:212.986648pt;}
.x40{left:238.946648pt;}
.x44{left:262.266648pt;}
.x48{left:281.346648pt;}
.x1a{left:290.719981pt;}
.x36{left:295.773314pt;}
.x3c{left:301.946648pt;}
.x53{left:304.186648pt;}
.x49{left:320.066648pt;}
.x5b{left:322.266648pt;}
.x19{left:325.119981pt;}
.xa{left:328.479981pt;}
.x6{left:330.906648pt;}
.x4a{left:338.626648pt;}
.x18{left:343.199981pt;}
.x27{left:360.506648pt;}
.x57{left:366.786648pt;}
.x54{left:373.346648pt;}
.x3d{left:376.706648pt;}
.x4f{left:379.586648pt;}
.x7{left:386.626648pt;}
.x3a{left:411.973314pt;}
.x4b{left:454.973314pt;}
.x55{left:471.106648pt;}
.x58{left:478.946648pt;}
.x50{left:480.546648pt;}
.x4c{left:493.853314pt;}
.x4d{left:510.333314pt;}
.x2{left:553.213314pt;}
.x16{left:568.293314pt;}
.x51{left:573.346648pt;}
.x17{left:580.773314pt;}
.x15{left:593.093314pt;}
.x3b{left:613.466648pt;}
.x4e{left:618.973314pt;}
.x38{left:642.973314pt;}
.x11{left:657.279981pt;}
.x5{left:660.133314pt;}
.x13{left:665.466648pt;}
.x59{left:668.733314pt;}
.x5a{left:683.133314pt;}
.x26{left:691.039981pt;}
.xb{left:712.799981pt;}
.x37{left:713.733314pt;}
.x25{left:741.599981pt;}
.xe{left:748.413314pt;}
.x34{left:763.333314pt;}
.x29{left:776.160000pt;}
.x22{left:808.733314pt;}
.xc{left:817.026648pt;}
.x21{left:820.093314pt;}
.x2e{left:824.799981pt;}
.x23{left:826.493314pt;}
.x32{left:828.479981pt;}
.x31{left:834.239981pt;}
.x30{left:840.639981pt;}
.xd{left:847.106648pt;}
.x33{left:850.239981pt;}
.x28{left:886.586648pt;}
.x35{left:899.866648pt;}
.x5f{left:933.573314pt;}
.x5d{left:934.493314pt;}
.x5e{left:971.199981pt;}
.x10{left:1002.586648pt;}
.x14{left:1015.866648pt;}
.x41{left:1033.893314pt;}
.x43{left:1051.493314pt;}
.x2b{left:1061.600000pt;}
.x1d{left:1071.866648pt;}
.x2f{left:1076.893314pt;}
.x1c{left:1079.546648pt;}
.x1b{left:1096.346648pt;}
.x3e{left:1131.706648pt;}
.x42{left:1136.959981pt;}
.x2d{left:1137.919981pt;}
.x2c{left:1147.039981pt;}
}




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