
    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_70491a4115865553d6334896.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_80b09021cd249dc3c5f38bc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_175f001496c4a8c09d8cc154.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.098633;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_dffc2f19649987a8a4267325.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974121;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_8d3b333ec69e2efa771d3628.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_47431c7778331fa11b54f81a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_999bcb188b768321c7d3e2a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909668;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_42acfb777f5cfa132719c6f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_81fcf453f5fce083b82a5019.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687988;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_b7795a9211670046478dc83d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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;}
.mc{transform:matrix(0.161848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161848,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.206962,0.000000,-0.055455,0.243772,0,0);-ms-transform:matrix(0.206962,0.000000,-0.055455,0.243772,0,0);-webkit-transform:matrix(0.206962,0.000000,-0.055455,0.243772,0,0);}
.md{transform:matrix(0.207194,0.000000,-0.055517,0.243758,0,0);-ms-transform:matrix(0.207194,0.000000,-0.055517,0.243758,0,0);-webkit-transform:matrix(0.207194,0.000000,-0.055517,0.243758,0,0);}
.me{transform:matrix(0.210769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210769,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.212629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212629,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.213273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213273,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.216941,0.124243,-0.124243,0.216941,0,0);-ms-transform:matrix(0.216941,0.124243,-0.124243,0.216941,0,0);-webkit-transform:matrix(0.216941,0.124243,-0.124243,0.216941,0,0);}
.m5{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.234320,-0.087143,0.087143,0.234320,0,0);-ms-transform:matrix(0.234320,-0.087143,0.087143,0.234320,0,0);-webkit-transform:matrix(0.234320,-0.087143,0.087143,0.234320,0,0);}
.mf{transform:matrix(0.238690,0.074344,-0.074344,0.238690,0,0);-ms-transform:matrix(0.238690,0.074344,-0.074344,0.238690,0,0);-webkit-transform:matrix(0.238690,0.074344,-0.074344,0.238690,0,0);}
.m3{transform:matrix(0.238841,0.000000,-0.063997,0.241670,0,0);-ms-transform:matrix(0.238841,0.000000,-0.063997,0.241670,0,0);-webkit-transform:matrix(0.238841,0.000000,-0.063997,0.241670,0,0);}
.m4{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m1{transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247556,0.000000,0.000000,0.250000,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);}
.ve{vertical-align:-121.776000px;}
.v9{vertical-align:-90.654000px;}
.vd{vertical-align:-86.400000px;}
.v2f{vertical-align:-77.382000px;}
.v10{vertical-align:-75.684000px;}
.v15{vertical-align:-72.624000px;}
.v1f{vertical-align:-63.612000px;}
.v7{vertical-align:-43.200000px;}
.v6{vertical-align:-39.630000px;}
.v14{vertical-align:-36.564000px;}
.v8{vertical-align:-35.376000px;}
.vf{vertical-align:-32.316000px;}
.v2b{vertical-align:-31.122000px;}
.v12{vertical-align:-28.746000px;}
.v1a{vertical-align:-26.532000px;}
.vc{vertical-align:-25.176000px;}
.v1d{vertical-align:-17.346000px;}
.v19{vertical-align:-16.326000px;}
.v1c{vertical-align:-14.970000px;}
.v2{vertical-align:-11.394000px;}
.v5{vertical-align:-10.206000px;}
.v4{vertical-align:-9.012000px;}
.v1b{vertical-align:-7.824000px;}
.v1{vertical-align:-6.636000px;}
.v24{vertical-align:-4.764000px;}
.v0{vertical-align:0.000000px;}
.v2e{vertical-align:5.952000px;}
.v28{vertical-align:7.314000px;}
.v26{vertical-align:8.502000px;}
.v2a{vertical-align:9.522000px;}
.v23{vertical-align:19.218000px;}
.v2d{vertical-align:25.680000px;}
.v20{vertical-align:31.806000px;}
.v21{vertical-align:35.376000px;}
.v1e{vertical-align:39.630000px;}
.v25{vertical-align:43.884000px;}
.v18{vertical-align:46.770000px;}
.v29{vertical-align:49.152000px;}
.v13{vertical-align:50.346000px;}
.vb{vertical-align:56.976000px;}
.v2c{vertical-align:64.800000px;}
.v17{vertical-align:71.940000px;}
.v22{vertical-align:77.388000px;}
.v16{vertical-align:82.830000px;}
.v3{vertical-align:100.854000px;}
.v11{vertical-align:108.000000px;}
.v27{vertical-align:109.872000px;}
.va{vertical-align:129.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.003276px;}
.ls63{letter-spacing:0.006000px;}
.lsb7{letter-spacing:0.012000px;}
.lsa0{letter-spacing:0.012695px;}
.lsa2{letter-spacing:0.015677px;}
.lsb6{letter-spacing:0.015780px;}
.lsa9{letter-spacing:0.016860px;}
.ls46{letter-spacing:0.018000px;}
.ls7a{letter-spacing:0.026640px;}
.lsb2{letter-spacing:0.026928px;}
.ls91{letter-spacing:0.029126px;}
.ls56{letter-spacing:0.033110px;}
.ls47{letter-spacing:0.043500px;}
.ls9f{letter-spacing:0.065817px;}
.ls4c{letter-spacing:0.073368px;}
.ls53{letter-spacing:0.081707px;}
.ls73{letter-spacing:0.084000px;}
.ls95{letter-spacing:0.118182px;}
.ls5d{letter-spacing:0.120078px;}
.lsa7{letter-spacing:0.126000px;}
.ls88{letter-spacing:0.132379px;}
.lsa3{letter-spacing:0.142046px;}
.ls83{letter-spacing:0.143136px;}
.ls4b{letter-spacing:0.156744px;}
.ls90{letter-spacing:0.158309px;}
.ls99{letter-spacing:0.163597px;}
.ls4f{letter-spacing:0.183780px;}
.ls8a{letter-spacing:0.186663px;}
.ls87{letter-spacing:0.189526px;}
.ls80{letter-spacing:0.192018px;}
.ls8e{letter-spacing:0.193095px;}
.ls92{letter-spacing:0.194176px;}
.ls8d{letter-spacing:0.198823px;}
.ls9b{letter-spacing:0.200608px;}
.lsab{letter-spacing:0.223116px;}
.lsb4{letter-spacing:0.234198px;}
.ls8c{letter-spacing:0.235161px;}
.ls8f{letter-spacing:0.236945px;}
.ls93{letter-spacing:0.239485px;}
.ls86{letter-spacing:0.242351px;}
.ls8b{letter-spacing:0.244135px;}
.ls61{letter-spacing:0.246000px;}
.ls64{letter-spacing:0.252000px;}
.ls77{letter-spacing:0.258000px;}
.lsa1{letter-spacing:0.262833px;}
.ls5a{letter-spacing:0.271980px;}
.ls37{letter-spacing:0.279042px;}
.lsb3{letter-spacing:0.289140px;}
.ls9a{letter-spacing:0.289769px;}
.ls4d{letter-spacing:0.303606px;}
.ls7f{letter-spacing:0.308718px;}
.ls4e{letter-spacing:0.348588px;}
.ls50{letter-spacing:0.353700px;}
.ls98{letter-spacing:0.359223px;}
.ls51{letter-spacing:0.359700px;}
.ls2d{letter-spacing:0.379428px;}
.lsac{letter-spacing:0.390720px;}
.ls62{letter-spacing:0.420000px;}
.ls58{letter-spacing:0.423650px;}
.lsaa{letter-spacing:0.429672px;}
.ls78{letter-spacing:0.473886px;}
.ls7c{letter-spacing:0.479886px;}
.ls89{letter-spacing:0.502359px;}
.ls49{letter-spacing:0.522588px;}
.ls7d{letter-spacing:0.546756px;}
.ls84{letter-spacing:0.549455px;}
.ls74{letter-spacing:0.570000px;}
.ls79{letter-spacing:0.594000px;}
.ls57{letter-spacing:0.601145px;}
.ls66{letter-spacing:0.618000px;}
.lsb0{letter-spacing:0.625818px;}
.lse{letter-spacing:0.678000px;}
.ls65{letter-spacing:0.684000px;}
.lsaf{letter-spacing:0.694860px;}
.ls5e{letter-spacing:0.703142px;}
.ls85{letter-spacing:0.747573px;}
.ls9c{letter-spacing:0.804000px;}
.ls54{letter-spacing:0.804515px;}
.ls5c{letter-spacing:0.810000px;}
.ls55{letter-spacing:0.810139px;}
.lsa8{letter-spacing:0.818718px;}
.ls52{letter-spacing:0.835137px;}
.ls23{letter-spacing:0.889428px;}
.lsae{letter-spacing:0.992718px;}
.ls96{letter-spacing:1.501730px;}
.ls26{letter-spacing:1.581816px;}
.ls31{letter-spacing:2.431524px;}
.ls1e{letter-spacing:3.023304px;}
.ls3e{letter-spacing:3.130464px;}
.ls38{letter-spacing:3.827388px;}
.ls3d{letter-spacing:4.365456px;}
.ls34{letter-spacing:4.506000px;}
.ls1d{letter-spacing:5.151816px;}
.ls6d{letter-spacing:5.169603px;}
.ls15{letter-spacing:6.371117px;}
.lsc{letter-spacing:6.580008px;}
.ls69{letter-spacing:6.859303px;}
.ls5f{letter-spacing:6.866370px;}
.ls9d{letter-spacing:7.064250px;}
.ls43{letter-spacing:7.285872px;}
.ls20{letter-spacing:7.401000px;}
.ls32{letter-spacing:7.413156px;}
.ls40{letter-spacing:7.479000px;}
.ls70{letter-spacing:7.682033px;}
.ls6b{letter-spacing:7.689091px;}
.ls24{letter-spacing:7.941192px;}
.ls2a{letter-spacing:8.115192px;}
.ls33{letter-spacing:8.678442px;}
.lsa{letter-spacing:10.032000px;}
.ls2{letter-spacing:10.297332px;}
.ls6e{letter-spacing:10.315099px;}
.lsf{letter-spacing:10.550012px;}
.ls2e{letter-spacing:10.702812px;}
.ls14{letter-spacing:10.821647px;}
.ls3f{letter-spacing:10.869648px;}
.ls9{letter-spacing:11.010804px;}
.ls17{letter-spacing:11.343758px;}
.ls2b{letter-spacing:11.693028px;}
.ls1f{letter-spacing:12.203028px;}
.ls6a{letter-spacing:14.858251px;}
.ls6f{letter-spacing:15.655898px;}
.ls6c{letter-spacing:18.284386px;}
.ls7{letter-spacing:18.342396px;}
.ls4{letter-spacing:19.026396px;}
.lsb{letter-spacing:20.070000px;}
.ls11{letter-spacing:22.255716px;}
.ls41{letter-spacing:23.015280px;}
.ls21{letter-spacing:23.413080px;}
.ls16{letter-spacing:23.922569px;}
.ls2c{letter-spacing:23.923080px;}
.ls9e{letter-spacing:24.193110px;}
.ls3c{letter-spacing:24.268416px;}
.ls28{letter-spacing:25.075212px;}
.ls48{letter-spacing:25.163286px;}
.ls35{letter-spacing:25.747620px;}
.ls5{letter-spacing:26.051604px;}
.ls3{letter-spacing:26.703000px;}
.ls12{letter-spacing:26.967553px;}
.ls6{letter-spacing:27.555000px;}
.ls2f{letter-spacing:29.508000px;}
.ls75{letter-spacing:29.514000px;}
.ls8{letter-spacing:30.131604px;}
.ls94{letter-spacing:30.192000px;}
.ls13{letter-spacing:30.409848px;}
.ls30{letter-spacing:31.500864px;}
.ls1c{letter-spacing:31.955376px;}
.ls67{letter-spacing:33.342714px;}
.ls27{letter-spacing:34.258638px;}
.ls10{letter-spacing:34.508756px;}
.ls42{letter-spacing:43.539000px;}
.ls36{letter-spacing:47.190000px;}
.ls68{letter-spacing:51.695286px;}
.ls22{letter-spacing:54.339000px;}
.ls18{letter-spacing:54.743748px;}
.ls1a{letter-spacing:58.931304px;}
.ls3b{letter-spacing:59.099304px;}
.ls45{letter-spacing:59.105304px;}
.ls60{letter-spacing:63.258252px;}
.ls5b{letter-spacing:63.420252px;}
.ls3a{letter-spacing:63.426252px;}
.lsad{letter-spacing:63.936252px;}
.lsd{letter-spacing:64.104252px;}
.ls97{letter-spacing:67.579200px;}
.ls76{letter-spacing:67.741200px;}
.ls4a{letter-spacing:67.747200px;}
.ls1{letter-spacing:72.062148px;}
.ls72{letter-spacing:74.196396px;}
.ls71{letter-spacing:74.364396px;}
.ls29{letter-spacing:79.509000px;}
.lsb5{letter-spacing:82.288758px;}
.ls39{letter-spacing:93.966000px;}
.ls1b{letter-spacing:99.846714px;}
.lsa4{letter-spacing:101.357286px;}
.lsa6{letter-spacing:101.525286px;}
.ls81{letter-spacing:102.816000px;}
.ls19{letter-spacing:108.180714px;}
.ls25{letter-spacing:108.423000px;}
.ls7b{letter-spacing:115.398000px;}
.ls7e{letter-spacing:115.404000px;}
.ls82{letter-spacing:115.908000px;}
.lsa5{letter-spacing:115.914000px;}
.lsb1{letter-spacing:128.586714px;}
.ls44{letter-spacing:259.539000px;}
.sc_{text-shadow:none;}
.sc10{text-shadow:-0.015em 0 rgb(0,132,209),0 0.015em rgb(0,132,209),0.015em 0 rgb(0,132,209),0 -0.015em  rgb(0,132,209);}
.scf{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.sce{text-shadow:-0.015em 0 rgb(220,20,60),0 0.015em rgb(220,20,60),0.015em 0 rgb(220,20,60),0 -0.015em  rgb(220,20,60);}
.scd{text-shadow:-0.015em 0 rgb(87,157,28),0 0.015em rgb(87,157,28),0.015em 0 rgb(87,157,28),0 -0.015em  rgb(87,157,28);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc4{text-shadow:-0.015em 0 rgb(255,69,0),0 0.015em rgb(255,69,0),0.015em 0 rgb(255,69,0),0 -0.015em  rgb(255,69,0);}
.sc0{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.sc5{text-shadow:-0.015em 0 rgb(255,127,80),0 0.015em rgb(255,127,80),0.015em 0 rgb(255,127,80),0 -0.015em  rgb(255,127,80);}
.sc6{text-shadow:-0.015em 0 rgb(255,99,71),0 0.015em rgb(255,99,71),0.015em 0 rgb(255,99,71),0 -0.015em  rgb(255,99,71);}
.sc8{text-shadow:-0.015em 0 rgb(0,139,139),0 0.015em rgb(0,139,139),0.015em 0 rgb(0,139,139),0 -0.015em  rgb(0,139,139);}
.sc9{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.scb{text-shadow:-0.015em 0 rgb(0,191,255),0 0.015em rgb(0,191,255),0.015em 0 rgb(0,191,255),0 -0.015em  rgb(0,191,255);}
.sc11{text-shadow:-0.015em 0 rgb(255,215,0),0 0.015em rgb(255,215,0),0.015em 0 rgb(255,215,0),0 -0.015em  rgb(255,215,0);}
.sc7{text-shadow:-0.015em 0 rgb(32,178,170),0 0.015em rgb(32,178,170),0.015em 0 rgb(32,178,170),0 -0.015em  rgb(32,178,170);}
.sca{text-shadow:-0.015em 0 rgb(0,255,0),0 0.015em rgb(0,255,0),0.015em 0 rgb(0,255,0),0 -0.015em  rgb(0,255,0);}
.scc{text-shadow:-0.015em 0 rgb(255,165,0),0 0.015em rgb(255,165,0),0.015em 0 rgb(255,165,0),0 -0.015em  rgb(255,165,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc10{-webkit-text-stroke:0.015em rgb(0,132,209);text-shadow:none;}
.scf{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sce{-webkit-text-stroke:0.015em rgb(220,20,60);text-shadow:none;}
.scd{-webkit-text-stroke:0.015em rgb(87,157,28);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(255,69,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(255,127,80);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(255,99,71);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(0,139,139);text-shadow:none;}
.sc9{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.scb{-webkit-text-stroke:0.015em rgb(0,191,255);text-shadow:none;}
.sc11{-webkit-text-stroke:0.015em rgb(255,215,0);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(32,178,170);text-shadow:none;}
.sca{-webkit-text-stroke:0.015em rgb(0,255,0);text-shadow:none;}
.scc{-webkit-text-stroke:0.015em rgb(255,165,0);text-shadow:none;}
}
.wse{word-spacing:-72.062172px;}
.ws23{word-spacing:-52.420914px;}
.wsd{word-spacing:-44.859000px;}
.ws21{word-spacing:-38.991000px;}
.ws16{word-spacing:-35.844000px;}
.ws2b{word-spacing:-34.406190px;}
.ws2a{word-spacing:-32.901372px;}
.ws29{word-spacing:-32.781294px;}
.ws37{word-spacing:-30.458610px;}
.ws13{word-spacing:-29.916000px;}
.ws1{word-spacing:-29.484000px;}
.ws35{word-spacing:-27.595500px;}
.ws41{word-spacing:-27.000000px;}
.ws9{word-spacing:-26.830500px;}
.ws1a{word-spacing:-26.186706px;}
.ws3b{word-spacing:-24.561810px;}
.wsf{word-spacing:-23.259000px;}
.ws2d{word-spacing:-22.960500px;}
.ws2{word-spacing:-22.936914px;}
.ws14{word-spacing:-21.430500px;}
.ws40{word-spacing:-21.312018px;}
.ws24{word-spacing:-18.990972px;}
.ws20{word-spacing:-17.986500px;}
.ws6{word-spacing:-17.040114px;}
.ws19{word-spacing:-15.230124px;}
.ws1f{word-spacing:-14.603994px;}
.ws33{word-spacing:-12.304656px;}
.ws39{word-spacing:-10.666228px;}
.ws3a{word-spacing:-10.463096px;}
.ws2c{word-spacing:-10.219448px;}
.ws27{word-spacing:-10.116887px;}
.ws3d{word-spacing:-9.667538px;}
.ws38{word-spacing:-0.384036px;}
.ws5{word-spacing:-0.203412px;}
.ws4{word-spacing:-0.192018px;}
.wsa{word-spacing:-0.179436px;}
.ws22{word-spacing:-0.155964px;}
.ws10{word-spacing:-0.155454px;}
.ws15{word-spacing:-0.143376px;}
.ws8{word-spacing:-0.120078px;}
.ws1c{word-spacing:-0.111570px;}
.wsb{word-spacing:-0.111108px;}
.ws28{word-spacing:-0.110382px;}
.ws1e{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.107322px;}
.ws11{word-spacing:-0.096318px;}
.ws1b{word-spacing:-0.095922px;}
.ws30{word-spacing:-0.091842px;}
.ws3{word-spacing:-0.084018px;}
.ws18{word-spacing:-0.071946px;}
.ws25{word-spacing:-0.069564px;}
.ws26{word-spacing:-0.065988px;}
.ws12{word-spacing:-0.062418px;}
.ws2f{word-spacing:-0.055278px;}
.ws1d{word-spacing:-0.052212px;}
.ws0{word-spacing:0.000000px;}
.ws31{word-spacing:30.239546px;}
.ws2e{word-spacing:31.037194px;}
.ws17{word-spacing:36.973824px;}
.ws34{word-spacing:73.482000px;}
.ws3c{word-spacing:74.766000px;}
.ws3e{word-spacing:82.542000px;}
.ws36{word-spacing:131.886000px;}
.ws32{word-spacing:474.428178px;}
.ws3f{word-spacing:752.094000px;}
.ws7{word-spacing:1212.907878px;}
._1e{margin-left:-2205.661218px;}
._16{margin-left:-2069.759874px;}
._51{margin-left:-1936.334694px;}
._30{margin-left:-1329.267120px;}
._39{margin-left:-989.336652px;}
._14{margin-left:-893.708370px;}
._25{margin-left:-866.233836px;}
._45{margin-left:-789.410688px;}
._43{margin-left:-782.676866px;}
._2c{margin-left:-703.038822px;}
._56{margin-left:-228.384360px;}
._1d{margin-left:-207.321744px;}
._49{margin-left:-205.657368px;}
._21{margin-left:-198.170658px;}
._4b{margin-left:-193.357380px;}
._50{margin-left:-181.723540px;}
._59{margin-left:-148.110264px;}
._32{margin-left:-133.635294px;}
._33{margin-left:-132.137412px;}
._26{margin-left:-119.944566px;}
._31{margin-left:-118.274838px;}
._35{margin-left:-104.592030px;}
._2a{margin-left:-101.577510px;}
._4d{margin-left:-100.077810px;}
._2e{margin-left:-40.088304px;}
._2f{margin-left:-35.715348px;}
._44{margin-left:-31.712382px;}
._20{margin-left:-28.698642px;}
._28{margin-left:-27.658548px;}
._5{margin-left:-26.568000px;}
._23{margin-left:-25.164000px;}
._12{margin-left:-23.811990px;}
._d{margin-left:-22.036944px;}
._11{margin-left:-20.436396px;}
._27{margin-left:-18.576000px;}
._1b{margin-left:-15.969822px;}
._1f{margin-left:-14.889672px;}
._4{margin-left:-13.462164px;}
._a{margin-left:-12.395856px;}
._6{margin-left:-11.159892px;}
._0{margin-left:-9.712710px;}
._9{margin-left:-8.424000px;}
._8{margin-left:-7.057836px;}
._2{margin-left:-5.683734px;}
._f{margin-left:-4.428000px;}
._15{margin-left:-3.203862px;}
._4c{margin-left:-2.193562px;}
._1{margin-left:-1.151136px;}
._3{width:1.055856px;}
._2b{width:2.200208px;}
._c{width:3.226308px;}
._b{width:4.752000px;}
._34{width:5.942754px;}
._19{width:7.064236px;}
._e{width:8.113692px;}
._36{width:9.125928px;}
._17{width:10.302288px;}
._1a{width:11.343758px;}
._18{width:14.343828px;}
._38{width:16.558853px;}
._37{width:17.581235px;}
._10{width:20.063856px;}
._2d{width:23.178419px;}
._58{width:64.854246px;}
._29{width:80.020188px;}
._24{width:91.012566px;}
._1c{width:101.656140px;}
._40{width:107.243136px;}
._42{width:110.040000px;}
._3f{width:112.446000px;}
._52{width:114.840000px;}
._53{width:117.299136px;}
._41{width:119.760000px;}
._54{width:121.884000px;}
._3e{width:138.432000px;}
._55{width:142.602000px;}
._3b{width:147.648000px;}
._3c{width:152.166000px;}
._13{width:154.728732px;}
._3a{width:157.476000px;}
._3d{width:160.002000px;}
._7{width:163.579086px;}
._5a{width:239.124594px;}
._4f{width:475.320000px;}
._47{width:491.742000px;}
._57{width:494.094000px;}
._4e{width:1012.950000px;}
._48{width:1243.158000px;}
._46{width:1266.072000px;}
._22{width:1389.327408px;}
._4a{width:1596.640854px;}
.fc12{color:rgb(220,20,60);}
.fc11{color:rgb(87,157,28);}
.fc10{color:rgb(255,165,0);}
.fcf{color:rgb(0,191,255);}
.fce{color:rgb(0,255,0);}
.fcd{color:rgb(0,128,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(255,69,0);}
.fc0{color:rgb(128,128,128);}
.fc4{color:rgb(255,127,80);}
.fcb{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc6{color:rgb(255,99,71);}
.fc9{color:rgb(0,139,139);}
.fcc{color:rgb(255,0,0);}
.fc7{color:rgb(0,128,128);}
.fc14{color:rgb(255,215,0);}
.fc8{color:rgb(32,178,170);}
.fc13{color:rgb(0,132,209);}
.fca{color:rgb(112,128,144);}
.fs2e{font-size:34.866000px;}
.fs8{font-size:37.758000px;}
.fs1e{font-size:43.200000px;}
.fs2f{font-size:45.072000px;}
.fsc{font-size:48.642000px;}
.fs21{font-size:52.212000px;}
.fs23{font-size:52.722000px;}
.fs11{font-size:54.084000px;}
.fs2c{font-size:55.278000px;}
.fs1d{font-size:55.788000px;}
.fsf{font-size:59.358000px;}
.fs1f{font-size:60.036000px;}
.fsd{font-size:62.418000px;}
.fs26{font-size:65.988000px;}
.fs24{font-size:69.564000px;}
.fs0{font-size:71.946000px;}
.fs2d{font-size:78.066000px;}
.fs9{font-size:84.018000px;}
.fs1b{font-size:85.722000px;}
.fs1c{font-size:88.745945px;}
.fs12{font-size:89.970000px;}
.fs29{font-size:91.842000px;}
.fs18{font-size:93.036000px;}
.fs22{font-size:93.143798px;}
.fs2b{font-size:94.193952px;}
.fs6{font-size:95.922000px;}
.fs19{font-size:96.317955px;}
.fs14{font-size:107.322000px;}
.fs1{font-size:108.000000px;}
.fs27{font-size:110.382000px;}
.fs15{font-size:111.107910px;}
.fs20{font-size:111.570000px;}
.fs25{font-size:113.202163px;}
.fs10{font-size:120.078000px;}
.fs2a{font-size:120.588000px;}
.fsb{font-size:121.776000px;}
.fs28{font-size:126.030000px;}
.fs5{font-size:131.982000px;}
.fs1a{font-size:143.376000px;}
.fs17{font-size:155.454000px;}
.fs4{font-size:155.964000px;}
.fs13{font-size:179.436000px;}
.fs7{font-size:192.018000px;}
.fsa{font-size:203.412000px;}
.fse{font-size:210.423372px;}
.fs3{font-size:216.000000px;}
.fs16{font-size:261.582000px;}
.fs2{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.042000px;}
.ya5{bottom:3.232500px;}
.y129{bottom:3.274500px;}
.y118{bottom:3.360000px;}
.yc7{bottom:4.677000px;}
.ycd{bottom:4.762500px;}
.yce{bottom:6.123000px;}
.yc8{bottom:6.165000px;}
.y22{bottom:6.379500px;}
.y37{bottom:7.144500px;}
.y1{bottom:8.248500px;}
.y107{bottom:8.760000px;}
.yf4{bottom:8.802000px;}
.y117{bottom:8.887500px;}
.ya4{bottom:8.929500px;}
.y59{bottom:13.479000px;}
.y44{bottom:13.819500px;}
.y1b{bottom:14.926500px;}
.y36{bottom:15.988500px;}
.y2e{bottom:16.074000px;}
.y20{bottom:17.179500px;}
.y2{bottom:18.751500px;}
.yca{bottom:19.984500px;}
.y17e{bottom:22.323000px;}
.ya2{bottom:23.641500px;}
.y16d{bottom:25.299000px;}
.yc9{bottom:25.512000px;}
.y17a{bottom:26.193000px;}
.y174{bottom:28.318500px;}
.y5a{bottom:31.338000px;}
.y45{bottom:33.633000px;}
.y5c{bottom:34.186500px;}
.y47{bottom:36.354000px;}
.y38{bottom:37.588500px;}
.ycc{bottom:37.927500px;}
.yc6{bottom:37.969500px;}
.y2f{bottom:38.566500px;}
.y31{bottom:42.010500px;}
.y21{bottom:42.393000px;}
.y12{bottom:42.988500px;}
.y5b{bottom:43.030500px;}
.y2b{bottom:43.923000px;}
.y66{bottom:45.241500px;}
.y10c{bottom:46.177500px;}
.y46{bottom:46.219500px;}
.y8e{bottom:49.876500px;}
.ya1{bottom:50.217000px;}
.y150{bottom:51.109500px;}
.y30{bottom:52.810500px;}
.ye2{bottom:55.318500px;}
.y122{bottom:58.465500px;}
.y173{bottom:60.718500px;}
.y17d{bottom:61.017000px;}
.y5d{bottom:61.186500px;}
.y58{bottom:63.738000px;}
.y40{bottom:63.865500px;}
.y179{bottom:65.055000px;}
.y48{bottom:65.140500px;}
.yef{bottom:65.821500px;}
.y49{bottom:66.033000px;}
.y43{bottom:67.819500px;}
.y7d{bottom:69.562500px;}
.y3c{bottom:72.114000px;}
.y11{bottom:72.837000px;}
.yba{bottom:73.006500px;}
.y32{bottom:75.474000px;}
.yc0{bottom:75.684000px;}
.y16c{bottom:75.855000px;}
.y33{bottom:76.366500px;}
.y2d{bottom:78.918000px;}
.yaf{bottom:82.744500px;}
.y10b{bottom:84.870000px;}
.yfa{bottom:85.167000px;}
.y15d{bottom:88.144500px;}
.y121{bottom:90.397500px;}
.y6c{bottom:90.865500px;}
.y4a{bottom:93.033000px;}
.y3f{bottom:93.544500px;}
.yee{bottom:93.841500px;}
.ye1{bottom:97.753500px;}
.y14f{bottom:98.518500px;}
.y13d{bottom:99.114000px;}
.yb9{bottom:99.241500px;}
.y17c{bottom:99.837000px;}
.y105{bottom:100.177500px;}
.y165{bottom:100.602000px;}
.y3b{bottom:101.793000px;}
.y178{bottom:103.918500px;}
.y172{bottom:104.811000px;}
.y7f{bottom:106.597500px;}
.y34{bottom:106.810500px;}
.y6b{bottom:110.806500px;}
.yae{bottom:112.593000px;}
.y15c{bottom:117.865500px;}
.y65{bottom:121.777500px;}
.yd2{bottom:123.265500px;}
.y3e{bottom:123.393000px;}
.y10a{bottom:123.690000px;}
.y16b{bottom:126.411000px;}
.y7e{bottom:126.538500px;}
.y166{bottom:129.684000px;}
.y13c{bottom:131.046000px;}
.y106{bottom:131.172000px;}
.y3a{bottom:131.514000px;}
.yed{bottom:132.874500px;}
.y17{bottom:137.041500px;}
.y8f{bottom:138.360000px;}
.y8b{bottom:139.167000px;}
.ye0{bottom:140.826000px;}
.y115{bottom:142.738500px;}
.y164{bottom:143.037000px;}
.y14e{bottom:145.758000px;}
.y15b{bottom:147.544500px;}
.y14a{bottom:149.074500px;}
.yd1{bottom:149.670000px;}
.y3d{bottom:153.114000px;}
.ya3{bottom:156.684000px;}
.y64{bottom:160.171500px;}
.yb8{bottom:160.597500px;}
.y8a{bottom:163.914000px;}
.yf2{bottom:164.338500px;}
.ye7{bottom:167.188500px;}
.y116{bottom:167.952000px;}
.y11d{bottom:169.441500px;}
.yec{bottom:170.206500px;}
.y8{bottom:171.567000px;}
.y16{bottom:171.993000px;}
.y6a{bottom:173.226000px;}
.y171{bottom:176.670000px;}
.y76{bottom:176.797500px;}
.y15a{bottom:177.393000px;}
.yad{bottom:180.114000px;}
.y114{bottom:182.070000px;}
.y13b{bottom:182.197500px;}
.y4f{bottom:184.621500px;}
.y104{bottom:185.046000px;}
.ydf{bottom:186.237000px;}
.yb7{bottom:187.470000px;}
.y89{bottom:188.788500px;}
.y149{bottom:192.870000px;}
.y69{bottom:193.167000px;}
.yeb{bottom:198.270000px;}
.y63{bottom:198.694500px;}
.y19{bottom:198.865500px;}
.y55{bottom:199.290000px;}
.y9e{bottom:201.544500px;}
.y15{bottom:203.670000px;}
.ye6{bottom:205.455000px;}
.y11c{bottom:206.817000px;}
.y75{bottom:207.241500px;}
.y12d{bottom:208.602000px;}
.yc4{bottom:211.026000px;}
.yac{bottom:212.046000px;}
.y68{bottom:213.109500px;}
.yb6{bottom:213.705000px;}
.y4e{bottom:214.299000px;}
.y7{bottom:214.470000px;}
.y8c{bottom:215.788500px;}
.y113{bottom:221.188500px;}
.yf3{bottom:224.163000px;}
.y90{bottom:226.716000px;}
.y103{bottom:227.821500px;}
.y18{bottom:228.544500px;}
.y13a{bottom:231.265500px;}
.y11b{bottom:234.837000px;}
.y14{bottom:235.474500px;}
.y7c{bottom:236.367000px;}
.y148{bottom:236.665500px;}
.y62{bottom:236.793000px;}
.y74{bottom:237.855000px;}
.y54{bottom:239.514000px;}
.yb5{bottom:239.938500px;}
.y163{bottom:243.426000px;}
.ye5{bottom:244.149000px;}
.y4d{bottom:246.274500px;}
.ycb{bottom:251.886000px;}
.y2a{bottom:252.099000px;}
.y8d{bottom:253.884000px;}
.y67{bottom:258.094500px;}
.y147{bottom:258.393000px;}
.y12c{bottom:260.817000px;}
.y6{bottom:262.899000px;}
.yab{bottom:263.070000px;}
.y181{bottom:263.494500px;}
.y159{bottom:266.514000px;}
.y13{bottom:267.109500px;}
.yde{bottom:268.171500px;}
.y53{bottom:272.338500px;}
.y93{bottom:273.274500px;}
.y11a{bottom:273.870000px;}
.y170{bottom:274.167000px;}
.y120{bottom:275.061000px;}
.y88{bottom:278.377500px;}
.y73{bottom:279.397500px;}
.y146{bottom:280.290000px;}
.y41{bottom:280.588500px;}
.ya0{bottom:282.118500px;}
.y139{bottom:282.246000px;}
.y61{bottom:282.417000px;}
.y4c{bottom:284.499000px;}
.y102{bottom:285.265500px;}
.y12b{bottom:285.562500px;}
.yd0{bottom:285.861000px;}
.yea{bottom:288.114000px;}
.y92{bottom:293.344500px;}
.ydd{bottom:296.065500px;}
.y7b{bottom:299.041500px;}
.y162{bottom:302.826000px;}
.yb4{bottom:303.123000px;}
.yfd{bottom:304.314000px;}
.yf1{bottom:304.611000px;}
.y11f{bottom:304.738500px;}
.y72{bottom:305.674500px;}
.y16f{bottom:307.290000px;}
.y52{bottom:307.588500px;}
.y180{bottom:307.927500px;}
.y12a{bottom:310.437000px;}
.y138{bottom:311.967000px;}
.yaa{bottom:314.050500px;}
.ye9{bottom:314.349000px;}
.y9b{bottom:316.474500px;}
.y101{bottom:317.197500px;}
.y60{bottom:317.962500px;}
.yc5{bottom:318.727500px;}
.ydc{bottom:319.153500px;}
.y4b{bottom:320.514000px;}
.y100{bottom:321.237000px;}
.y145{bottom:324.127500px;}
.y10{bottom:329.826000px;}
.ybf{bottom:331.144500px;}
.y86{bottom:331.738500px;}
.y119{bottom:338.499000px;}
.y17f{bottom:340.158000px;}
.y29{bottom:340.455000px;}
.ycf{bottom:341.817000px;}
.yfc{bottom:343.177500px;}
.y112{bottom:344.494500px;}
.y10f{bottom:347.514000px;}
.y137{bottom:348.874500px;}
.ybe{bottom:351.127500px;}
.yf0{bottom:351.255000px;}
.yda{bottom:353.041500px;}
.y5f{bottom:354.870000px;}
.y51{bottom:355.294500px;}
.yd7{bottom:356.188500px;}
.y127{bottom:358.017000px;}
.yf{bottom:359.505000px;}
.yff{bottom:359.971500px;}
.y9a{bottom:363.118500px;}
.y91{bottom:363.714000px;}
.y161{bottom:364.437000px;}
.ya9{bottom:365.074500px;}
.y144{bottom:368.050500px;}
.y85{bottom:368.944500px;}
.ye8{bottom:370.177500px;}
.y95{bottom:372.261000px;}
.yd9{bottom:374.514000px;}
.yd6{bottom:376.470000px;}
.y16e{bottom:376.767000px;}
.yfb{bottom:379.446000px;}
.y136{bottom:382.762500px;}
.y71{bottom:388.588500px;}
.y167{bottom:390.118500px;}
.y14b{bottom:393.265500px;}
.y5{bottom:393.562500px;}
.y160{bottom:394.158000px;}
.y10e{bottom:394.455000px;}
.yd8{bottom:394.626000px;}
.yc3{bottom:395.349000px;}
.y28{bottom:397.006500px;}
.y155{bottom:398.494500px;}
.y84{bottom:398.793000px;}
.y16a{bottom:401.811000px;}
.y130{bottom:403.171500px;}
.y17b{bottom:403.767000px;}
.y9d{bottom:404.788500px;}
.y5e{bottom:405.723000px;}
.y126{bottom:407.041500px;}
.ybd{bottom:407.338500px;}
.yf9{bottom:408.997500px;}
.y99{bottom:409.890000px;}
.y11e{bottom:410.826000px;}
.y158{bottom:412.738500px;}
.y94{bottom:414.270000px;}
.ye{bottom:418.905000px;}
.y70{bottom:421.327500px;}
.y15f{bottom:421.626000px;}
.y10d{bottom:422.944500px;}
.y87{bottom:424.474500px;}
.yb3{bottom:425.962500px;}
.ya8{bottom:428.514000px;}
.y135{bottom:431.490000px;}
.y133{bottom:441.865500px;}
.yc2{bottom:442.162500px;}
.y2c{bottom:443.521500px;}
.y154{bottom:445.309500px;}
.y128{bottom:446.881500px;}
.y42{bottom:447.859500px;}
.yd{bottom:448.626000px;}
.y83{bottom:450.837000px;}
.y27{bottom:451.177500px;}
.y1e{bottom:451.474500px;}
.y57{bottom:452.281500px;}
.y35{bottom:453.642000px;}
.y125{bottom:453.727500px;}
.y98{bottom:454.323000px;}
.y56{bottom:455.344500px;}
.y176{bottom:457.002000px;}
.y169{bottom:458.958000px;}
.y111{bottom:459.426000px;}
.yf8{bottom:460.021500px;}
.y50{bottom:460.149000px;}
.y185{bottom:460.744500px;}
.ye4{bottom:461.041500px;}
.y12f{bottom:461.637000px;}
.y6f{bottom:462.870000px;}
.yd5{bottom:463.294500px;}
.y14c{bottom:464.061000px;}
.y1f{bottom:465.207000px;}
.ybc{bottom:465.846000px;}
.y4{bottom:466.144500px;}
.y1a{bottom:467.460000px;}
.y109{bottom:467.971500px;}
.y175{bottom:471.118500px;}
.y157{bottom:471.841500px;}
.y82{bottom:475.327500px;}
.y168{bottom:475.455000px;}
.y24{bottom:475.753500px;}
.y141{bottom:476.518500px;}
.y183{bottom:477.709500px;}
.yb2{bottom:480.090000px;}
.y134{bottom:482.514000px;}
.y132{bottom:484.299000px;}
.y97{bottom:486.255000px;}
.y14d{bottom:486.553500px;}
.y177{bottom:487.318500px;}
.yc1{bottom:488.806500px;}
.y6e{bottom:489.105000px;}
.yf7{bottom:489.699000px;}
.yfe{bottom:489.870000px;}
.y184{bottom:490.593000px;}
.ye3{bottom:490.762500px;}
.y153{bottom:491.953500px;}
.yd4{bottom:493.144500px;}
.y1d{bottom:496.290000px;}
.y124{bottom:500.499000px;}
.ya7{bottom:502.327500px;}
.y182{bottom:507.727500px;}
.yc{bottom:508.026000px;}
.y80{bottom:509.514000px;}
.y15e{bottom:510.874500px;}
.y110{bottom:517.890000px;}
.y12e{bottom:520.144500px;}
.y9c{bottom:522.865500px;}
.y7a{bottom:522.993000px;}
.ybb{bottom:524.353500px;}
.y23{bottom:524.650500px;}
.y108{bottom:526.437000px;}
.y131{bottom:526.777500px;}
.y156{bottom:530.349000px;}
.y26{bottom:532.899000px;}
.y96{bottom:533.070000px;}
.yb1{bottom:534.388500px;}
.yf6{bottom:536.514000px;}
.y1c{bottom:538.767000px;}
.ydb{bottom:539.958000px;}
.y79{bottom:542.806500px;}
.ya6{bottom:544.762500px;}
.y123{bottom:544.890000px;}
.y13e{bottom:547.314000px;}
.y186{bottom:549.270000px;}
.yd3{bottom:551.055000px;}
.y39{bottom:552.544500px;}
.y78{bottom:562.621500px;}
.ya{bottom:577.461000px;}
.y77{bottom:582.393000px;}
.y9f{bottom:582.690000px;}
.y140{bottom:601.017000px;}
.y152{bottom:605.353500px;}
.y9{bottom:607.011000px;}
.y25{bottom:619.171500px;}
.yf5{bottom:620.065500px;}
.yb{bottom:620.193000px;}
.y6d{bottom:621.723000px;}
.y81{bottom:623.806500px;}
.y151{bottom:625.294500px;}
.y13f{bottom:626.358000px;}
.yb0{bottom:635.670000px;}
.y143{bottom:647.362500px;}
.y142{bottom:667.602000px;}
.h59{height:33.760500px;}
.h77{height:37.272656px;}
.h53{height:38.202855px;}
.h66{height:39.579048px;}
.h50{height:43.883736px;}
.h3a{height:46.663295px;}
.h5b{height:47.247408px;}
.h2{height:48.598500px;}
.h38{height:49.919563px;}
.h7c{height:50.315843px;}
.h7a{height:50.398428px;}
.h76{height:50.417682px;}
.h75{height:50.437489px;}
.h47{height:50.657291px;}
.h46{height:51.725812px;}
.h80{height:52.132746px;}
.h6a{height:52.163695px;}
.h6b{height:52.298892px;}
.h3{height:52.589435px;}
.he{height:54.099548px;}
.hf{height:54.267548px;}
.h69{height:57.062892px;}
.hd{height:57.731306px;}
.h88{height:58.625695px;}
.h8c{height:58.631695px;}
.h8b{height:58.793695px;}
.h89{height:58.799695px;}
.h61{height:58.804500px;}
.h8a{height:59.477695px;}
.h3e{height:59.478009px;}
.h7f{height:61.413548px;}
.h2b{height:61.993500px;}
.h48{height:62.074503px;}
.h4a{height:62.800860px;}
.h4f{height:62.968860px;}
.h4d{height:62.974860px;}
.h6e{height:63.484860px;}
.h4e{height:63.652860px;}
.h62{height:63.724356px;}
.h85{height:64.082631px;}
.h32{height:64.552811px;}
.h78{height:64.934631px;}
.h68{height:65.758872px;}
.h22{height:65.764204px;}
.h6c{height:66.851118px;}
.h12{height:67.180500px;}
.h10{height:67.549359px;}
.h4b{height:67.790827px;}
.h51{height:68.084114px;}
.h7b{height:68.927212px;}
.h16{height:69.433500px;}
.h58{height:69.505980px;}
.h45{height:69.925359px;}
.h15{height:69.931359px;}
.h6f{height:70.099359px;}
.ha{height:70.114860px;}
.h74{height:71.304876px;}
.h44{height:71.445858px;}
.h7e{height:71.478876px;}
.h81{height:72.416631px;}
.h5f{height:72.584631px;}
.h49{height:73.487118px;}
.h56{height:73.728234px;}
.h26{height:74.465118px;}
.h8d{height:74.935547px;}
.h6d{height:75.446827px;}
.h79{height:75.614827px;}
.h3f{height:76.569377px;}
.h43{height:78.075858px;}
.h4{height:78.257812px;}
.h1e{height:78.753858px;}
.h39{height:78.927858px;}
.hc{height:78.943359px;}
.h67{height:79.240632px;}
.h70{height:79.533812px;}
.h71{height:79.707812px;}
.h60{height:81.000876px;}
.h65{height:81.269880px;}
.h7d{height:81.510876px;}
.h82{height:81.678876px;}
.h87{height:81.684876px;}
.h2d{height:82.740234px;}
.h4c{height:82.760827px;}
.h33{height:83.102454px;}
.h14{height:84.169641px;}
.h84{height:84.337641px;}
.h18{height:84.493992px;}
.h1c{height:86.267171px;}
.h1b{height:86.951171px;}
.h1a{height:87.191616px;}
.h20{height:87.771858px;}
.h73{height:89.397812px;}
.h57{height:90.478295px;}
.h1d{height:91.993351px;}
.h5e{height:92.122515px;}
.h37{height:93.181641px;}
.h1f{height:94.590454px;}
.h5c{height:95.236813px;}
.h27{height:95.863124px;}
.h9{height:96.473171px;}
.h21{height:97.157171px;}
.h5a{height:97.670030px;}
.h3c{height:99.481102px;}
.h83{height:99.649330px;}
.h3b{height:100.686000px;}
.h5d{height:102.059780px;}
.h3d{height:102.657216px;}
.h63{height:104.042479px;}
.h30{height:107.861394px;}
.h54{height:108.215256px;}
.h31{height:111.305064px;}
.h2f{height:113.782500px;}
.h8{height:114.002982px;}
.h40{height:123.703805px;}
.h24{height:124.501248px;}
.h25{height:128.476176px;}
.h23{height:131.215500px;}
.h34{height:134.124618px;}
.h55{height:134.735888px;}
.hb{height:140.356907px;}
.h41{height:141.624009px;}
.h35{height:143.621064px;}
.h86{height:143.743359px;}
.h42{height:146.251102px;}
.h28{height:154.816119px;}
.h64{height:156.628632px;}
.h7{height:157.886719px;}
.h36{height:158.207394px;}
.h11{height:165.671780px;}
.h29{height:167.422176px;}
.h17{height:175.502443px;}
.h2a{height:181.477248px;}
.h19{height:181.551806px;}
.h13{height:185.347992px;}
.h72{height:188.815359px;}
.h6{height:192.946342px;}
.h2c{height:200.515110px;}
.h2e{height:211.792119px;}
.h52{height:238.620000px;}
.h5{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.wf{width:105.066000px;}
.w12{width:211.960500px;}
.w11{width:217.189500px;}
.w10{width:229.095000px;}
.w13{width:229.222500px;}
.w14{width:229.690500px;}
.wc{width:230.286000px;}
.wd{width:241.299000px;}
.we{width:295.383000px;}
.w7{width:300.486000px;}
.w9{width:429.576000px;}
.wa{width:484.554000px;}
.w6{width:493.143000px;}
.w4{width:500.455500px;}
.w8{width:557.688000px;}
.wb{width:590.598000px;}
.w5{width:609.433500px;}
.w3{width:1190.125500px;}
.w2{width:1190.167500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x0{left:0.000000px;}
.xc{left:4.551000px;}
.x59{left:6.505500px;}
.x2d{left:9.057000px;}
.x2{left:10.630500px;}
.x58{left:12.798000px;}
.x7d{left:14.839500px;}
.x74{left:16.498500px;}
.xbe{left:18.156000px;}
.x70{left:20.026500px;}
.x64{left:22.408500px;}
.x14{left:25.213500px;}
.xb{left:26.956500px;}
.x2c{left:28.828500px;}
.x6f{left:30.529500px;}
.x19{left:32.401500px;}
.xb6{left:34.483500px;}
.xc0{left:35.547000px;}
.x38{left:37.630500px;}
.x2b{left:39.712500px;}
.x7b{left:41.116500px;}
.xbf{left:43.668000px;}
.x1a{left:44.986500px;}
.x98{left:47.536500px;}
.x3b{left:51.364500px;}
.x65{left:52.980000px;}
.xa{left:54.000000px;}
.x6{left:59.569500px;}
.x1b{left:62.973000px;}
.x66{left:64.630500px;}
.x9{left:68.541000px;}
.x60{left:70.200000px;}
.x2e{left:73.857000px;}
.x61{left:76.195500px;}
.x5{left:79.639500px;}
.x47{left:82.488000px;}
.x1c{left:84.573000px;}
.x4b{left:88.483500px;}
.x17{left:91.630500px;}
.x15{left:93.288000px;}
.x45{left:96.903000px;}
.x4a{left:98.986500px;}
.x7e{left:104.088000px;}
.x36{left:105.619500px;}
.x4{left:106.639500px;}
.x46{left:109.063500px;}
.x3{left:111.613500px;}
.x85{left:117.141000px;}
.xc1{left:120.288000px;}
.x5d{left:122.541000px;}
.x54{left:125.688000px;}
.x49{left:129.004500px;}
.x68{left:130.791000px;}
.x67{left:132.619500px;}
.x69{left:134.235000px;}
.x7f{left:139.039500px;}
.x3c{left:141.208500px;}
.x80{left:143.419500px;}
.x28{left:145.503000px;}
.x3d{left:149.457000px;}
.x2f{left:152.901000px;}
.x26{left:158.343000px;}
.x30{left:161.151000px;}
.x71{left:165.826500px;}
.x16{left:172.503000px;}
.x1d{left:175.479000px;}
.x48{left:181.048500px;}
.x55{left:183.004500px;}
.x1e{left:184.494000px;}
.x3e{left:186.195000px;}
.x43{left:189.000000px;}
.x72{left:190.446000px;}
.xc5{left:199.503000px;}
.x31{left:201.501000px;}
.x53{left:207.283500px;}
.x27{left:212.301000px;}
.x44{left:214.512000px;}
.x7{left:221.400000px;}
.xc9{left:225.141000px;}
.x5e{left:226.503000px;}
.x1f{left:231.307500px;}
.xa4{left:234.453000px;}
.x77{left:235.644000px;}
.xb0{left:242.107500px;}
.x5f{left:252.013500px;}
.x40{left:255.502500px;}
.xa3{left:264.769500px;}
.x3f{left:269.874000px;}
.x8b{left:272.380500px;}
.x33{left:275.274000px;}
.xa5{left:280.503000px;}
.xb5{left:287.859000px;}
.x32{left:291.474000px;}
.x8c{left:300.316500px;}
.xa8{left:303.292500px;}
.xa9{left:310.180500px;}
.xa2{left:314.560500px;}
.x21{left:316.645500px;}
.x76{left:323.830500px;}
.x20{left:334.630500px;}
.x8f{left:350.871000px;}
.xaf{left:352.488000px;}
.x41{left:353.595000px;}
.xa0{left:354.741000px;}
.x34{left:356.274000px;}
.x95{left:361.503000px;}
.x35{left:370.687500px;}
.xb1{left:377.235000px;}
.x9f{left:381.613500px;}
.x8d{left:382.804500px;}
.x24{left:385.059000px;}
.x42{left:386.887500px;}
.xb3{left:398.835000px;}
.x78{left:403.213500px;}
.x8e{left:405.468000px;}
.x22{left:409.338000px;}
.x6a{left:413.716500px;}
.x8{left:415.503000px;}
.x25{left:426.430500px;}
.xb2{left:428.259000px;}
.x23{left:441.738000px;}
.x99{left:457.936500px;}
.xc2{left:459.000000px;}
.xb4{left:483.916500px;}
.xf{left:484.980000px;}
.x57{left:488.211000px;}
.x10{left:498.331500px;}
.x2a{left:523.503000px;}
.x79{left:526.521000px;}
.xca{left:527.712000px;}
.x7a{left:537.747000px;}
.x4c{left:540.000000px;}
.x4e{left:543.147000px;}
.x4d{left:545.230500px;}
.x96{left:551.991000px;}
.x11{left:563.302500px;}
.xbd{left:565.044000px;}
.xcb{left:566.235000px;}
.xd{left:577.332000px;}
.x88{left:580.819500px;}
.x18{left:584.857500px;}
.x12{left:590.896500px;}
.xb7{left:593.107500px;}
.x29{left:604.332000px;}
.xb8{left:606.586500px;}
.x4f{left:616.068000px;}
.x87{left:617.556000px;}
.x6d{left:622.402500px;}
.xa1{left:625.336500px;}
.xe{left:628.483500px;}
.x39{left:630.736500px;}
.x62{left:632.692500px;}
.x9c{left:635.712000px;}
.xbb{left:643.365000px;}
.x9b{left:654.591000px;}
.x92{left:656.716500px;}
.x91{left:666.156000px;}
.x5c{left:676.360500px;}
.x5b{left:682.186500px;}
.xa6{left:685.035000px;}
.xbc{left:690.009000px;}
.x13{left:699.619500px;}
.x7c{left:701.532000px;}
.x1{left:702.595500px;}
.x9e{left:712.332000px;}
.xa7{left:723.430500px;}
.xac{left:724.960500px;}
.x3a{left:734.697000px;}
.xc8{left:740.991000px;}
.xc3{left:750.430500px;}
.xaa{left:753.321000px;}
.x5a{left:768.288000px;}
.xc4{left:778.960500px;}
.x9a{left:782.743500px;}
.x6e{left:786.954000px;}
.x73{left:789.888000px;}
.x90{left:791.419500px;}
.xc6{left:799.200000px;}
.x83{left:800.688000px;}
.xb9{left:833.259000px;}
.xab{left:841.039500px;}
.x56{left:847.332000px;}
.xc7{left:848.565000px;}
.x52{left:858.769500px;}
.x84{left:861.916500px;}
.x8a{left:883.644000px;}
.xba{left:890.235000px;}
.x6c{left:897.463500px;}
.x6b{left:900.609000px;}
.x50{left:912.600000px;}
.x86{left:917.701500px;}
.x89{left:921.613500px;}
.x37{left:928.630500px;}
.x75{left:942.321000px;}
.x63{left:944.659500px;}
.xae{left:951.463500px;}
.x81{left:960.732000px;}
.x82{left:961.965000px;}
.xad{left:963.156000px;}
.x9d{left:974.721000px;}
.x93{left:990.453000px;}
.x97{left:1006.186500px;}
.x94{left:1015.200000px;}
.x51{left:1054.956000px;}
@media print{
.ve{vertical-align:-108.245333pt;}
.v9{vertical-align:-80.581333pt;}
.vd{vertical-align:-76.800000pt;}
.v2f{vertical-align:-68.784000pt;}
.v10{vertical-align:-67.274667pt;}
.v15{vertical-align:-64.554667pt;}
.v1f{vertical-align:-56.544000pt;}
.v7{vertical-align:-38.400000pt;}
.v6{vertical-align:-35.226667pt;}
.v14{vertical-align:-32.501333pt;}
.v8{vertical-align:-31.445333pt;}
.vf{vertical-align:-28.725333pt;}
.v2b{vertical-align:-27.664000pt;}
.v12{vertical-align:-25.552000pt;}
.v1a{vertical-align:-23.584000pt;}
.vc{vertical-align:-22.378667pt;}
.v1d{vertical-align:-15.418667pt;}
.v19{vertical-align:-14.512000pt;}
.v1c{vertical-align:-13.306667pt;}
.v2{vertical-align:-10.128000pt;}
.v5{vertical-align:-9.072000pt;}
.v4{vertical-align:-8.010667pt;}
.v1b{vertical-align:-6.954667pt;}
.v1{vertical-align:-5.898667pt;}
.v24{vertical-align:-4.234667pt;}
.v0{vertical-align:0.000000pt;}
.v2e{vertical-align:5.290667pt;}
.v28{vertical-align:6.501333pt;}
.v26{vertical-align:7.557333pt;}
.v2a{vertical-align:8.464000pt;}
.v23{vertical-align:17.082667pt;}
.v2d{vertical-align:22.826667pt;}
.v20{vertical-align:28.272000pt;}
.v21{vertical-align:31.445333pt;}
.v1e{vertical-align:35.226667pt;}
.v25{vertical-align:39.008000pt;}
.v18{vertical-align:41.573333pt;}
.v29{vertical-align:43.690667pt;}
.v13{vertical-align:44.752000pt;}
.vb{vertical-align:50.645333pt;}
.v2c{vertical-align:57.600000pt;}
.v17{vertical-align:63.946667pt;}
.v22{vertical-align:68.789333pt;}
.v16{vertical-align:73.626667pt;}
.v3{vertical-align:89.648000pt;}
.v11{vertical-align:96.000000pt;}
.v27{vertical-align:97.664000pt;}
.va{vertical-align:115.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.002912pt;}
.ls63{letter-spacing:0.005333pt;}
.lsb7{letter-spacing:0.010667pt;}
.lsa0{letter-spacing:0.011285pt;}
.lsa2{letter-spacing:0.013935pt;}
.lsb6{letter-spacing:0.014027pt;}
.lsa9{letter-spacing:0.014987pt;}
.ls46{letter-spacing:0.016000pt;}
.ls7a{letter-spacing:0.023680pt;}
.lsb2{letter-spacing:0.023936pt;}
.ls91{letter-spacing:0.025890pt;}
.ls56{letter-spacing:0.029431pt;}
.ls47{letter-spacing:0.038667pt;}
.ls9f{letter-spacing:0.058504pt;}
.ls4c{letter-spacing:0.065216pt;}
.ls53{letter-spacing:0.072629pt;}
.ls73{letter-spacing:0.074667pt;}
.ls95{letter-spacing:0.105051pt;}
.ls5d{letter-spacing:0.106736pt;}
.lsa7{letter-spacing:0.112000pt;}
.ls88{letter-spacing:0.117671pt;}
.lsa3{letter-spacing:0.126263pt;}
.ls83{letter-spacing:0.127232pt;}
.ls4b{letter-spacing:0.139328pt;}
.ls90{letter-spacing:0.140719pt;}
.ls99{letter-spacing:0.145420pt;}
.ls4f{letter-spacing:0.163360pt;}
.ls8a{letter-spacing:0.165923pt;}
.ls87{letter-spacing:0.168468pt;}
.ls80{letter-spacing:0.170683pt;}
.ls8e{letter-spacing:0.171640pt;}
.ls92{letter-spacing:0.172601pt;}
.ls8d{letter-spacing:0.176732pt;}
.ls9b{letter-spacing:0.178318pt;}
.lsab{letter-spacing:0.198325pt;}
.lsb4{letter-spacing:0.208176pt;}
.ls8c{letter-spacing:0.209032pt;}
.ls8f{letter-spacing:0.210618pt;}
.ls93{letter-spacing:0.212876pt;}
.ls86{letter-spacing:0.215423pt;}
.ls8b{letter-spacing:0.217009pt;}
.ls61{letter-spacing:0.218667pt;}
.ls64{letter-spacing:0.224000pt;}
.ls77{letter-spacing:0.229333pt;}
.lsa1{letter-spacing:0.233630pt;}
.ls5a{letter-spacing:0.241760pt;}
.ls37{letter-spacing:0.248037pt;}
.lsb3{letter-spacing:0.257013pt;}
.ls9a{letter-spacing:0.257573pt;}
.ls4d{letter-spacing:0.269872pt;}
.ls7f{letter-spacing:0.274416pt;}
.ls4e{letter-spacing:0.309856pt;}
.ls50{letter-spacing:0.314400pt;}
.ls98{letter-spacing:0.319310pt;}
.ls51{letter-spacing:0.319733pt;}
.ls2d{letter-spacing:0.337269pt;}
.lsac{letter-spacing:0.347307pt;}
.ls62{letter-spacing:0.373333pt;}
.ls58{letter-spacing:0.376578pt;}
.lsaa{letter-spacing:0.381931pt;}
.ls78{letter-spacing:0.421232pt;}
.ls7c{letter-spacing:0.426565pt;}
.ls89{letter-spacing:0.446541pt;}
.ls49{letter-spacing:0.464523pt;}
.ls7d{letter-spacing:0.486005pt;}
.ls84{letter-spacing:0.488404pt;}
.ls74{letter-spacing:0.506667pt;}
.ls79{letter-spacing:0.528000pt;}
.ls57{letter-spacing:0.534351pt;}
.ls66{letter-spacing:0.549333pt;}
.lsb0{letter-spacing:0.556283pt;}
.lse{letter-spacing:0.602667pt;}
.ls65{letter-spacing:0.608000pt;}
.lsaf{letter-spacing:0.617653pt;}
.ls5e{letter-spacing:0.625015pt;}
.ls85{letter-spacing:0.664509pt;}
.ls9c{letter-spacing:0.714667pt;}
.ls54{letter-spacing:0.715125pt;}
.ls5c{letter-spacing:0.720000pt;}
.ls55{letter-spacing:0.720124pt;}
.lsa8{letter-spacing:0.727749pt;}
.ls52{letter-spacing:0.742344pt;}
.ls23{letter-spacing:0.790603pt;}
.lsae{letter-spacing:0.882416pt;}
.ls96{letter-spacing:1.334871pt;}
.ls26{letter-spacing:1.406059pt;}
.ls31{letter-spacing:2.161355pt;}
.ls1e{letter-spacing:2.687381pt;}
.ls3e{letter-spacing:2.782635pt;}
.ls38{letter-spacing:3.402123pt;}
.ls3d{letter-spacing:3.880405pt;}
.ls34{letter-spacing:4.005333pt;}
.ls1d{letter-spacing:4.579392pt;}
.ls6d{letter-spacing:4.595203pt;}
.ls15{letter-spacing:5.663215pt;}
.lsc{letter-spacing:5.848896pt;}
.ls69{letter-spacing:6.097158pt;}
.ls5f{letter-spacing:6.103440pt;}
.ls9d{letter-spacing:6.279333pt;}
.ls43{letter-spacing:6.476331pt;}
.ls20{letter-spacing:6.578667pt;}
.ls32{letter-spacing:6.589472pt;}
.ls40{letter-spacing:6.648000pt;}
.ls70{letter-spacing:6.828473pt;}
.ls6b{letter-spacing:6.834748pt;}
.ls24{letter-spacing:7.058837pt;}
.ls2a{letter-spacing:7.213504pt;}
.ls33{letter-spacing:7.714171pt;}
.lsa{letter-spacing:8.917333pt;}
.ls2{letter-spacing:9.153184pt;}
.ls6e{letter-spacing:9.168977pt;}
.lsf{letter-spacing:9.377789pt;}
.ls2e{letter-spacing:9.513611pt;}
.ls14{letter-spacing:9.619241pt;}
.ls3f{letter-spacing:9.661909pt;}
.ls9{letter-spacing:9.787381pt;}
.ls17{letter-spacing:10.083341pt;}
.ls2b{letter-spacing:10.393803pt;}
.ls1f{letter-spacing:10.847136pt;}
.ls6a{letter-spacing:13.207334pt;}
.ls6f{letter-spacing:13.916354pt;}
.ls6c{letter-spacing:16.252787pt;}
.ls7{letter-spacing:16.304352pt;}
.ls4{letter-spacing:16.912352pt;}
.lsb{letter-spacing:17.840000pt;}
.ls11{letter-spacing:19.782858pt;}
.ls41{letter-spacing:20.458027pt;}
.ls21{letter-spacing:20.811627pt;}
.ls16{letter-spacing:21.264505pt;}
.ls2c{letter-spacing:21.264960pt;}
.ls9e{letter-spacing:21.504987pt;}
.ls3c{letter-spacing:21.571925pt;}
.ls28{letter-spacing:22.289077pt;}
.ls48{letter-spacing:22.367365pt;}
.ls35{letter-spacing:22.886773pt;}
.ls5{letter-spacing:23.156981pt;}
.ls3{letter-spacing:23.736000pt;}
.ls12{letter-spacing:23.971158pt;}
.ls6{letter-spacing:24.493333pt;}
.ls2f{letter-spacing:26.229333pt;}
.ls75{letter-spacing:26.234667pt;}
.ls8{letter-spacing:26.783648pt;}
.ls94{letter-spacing:26.837333pt;}
.ls13{letter-spacing:27.030976pt;}
.ls30{letter-spacing:28.000768pt;}
.ls1c{letter-spacing:28.404779pt;}
.ls67{letter-spacing:29.637968pt;}
.ls27{letter-spacing:30.452123pt;}
.ls10{letter-spacing:30.674450pt;}
.ls42{letter-spacing:38.701333pt;}
.ls36{letter-spacing:41.946667pt;}
.ls68{letter-spacing:45.951365pt;}
.ls22{letter-spacing:48.301333pt;}
.ls18{letter-spacing:48.661109pt;}
.ls1a{letter-spacing:52.383381pt;}
.ls3b{letter-spacing:52.532715pt;}
.ls45{letter-spacing:52.538048pt;}
.ls60{letter-spacing:56.229557pt;}
.ls5b{letter-spacing:56.373557pt;}
.ls3a{letter-spacing:56.378891pt;}
.lsad{letter-spacing:56.832224pt;}
.lsd{letter-spacing:56.981557pt;}
.ls97{letter-spacing:60.070400pt;}
.ls76{letter-spacing:60.214400pt;}
.ls4a{letter-spacing:60.219733pt;}
.ls1{letter-spacing:64.055243pt;}
.ls72{letter-spacing:65.952352pt;}
.ls71{letter-spacing:66.101685pt;}
.ls29{letter-spacing:70.674667pt;}
.lsb5{letter-spacing:73.145563pt;}
.ls39{letter-spacing:83.525333pt;}
.ls1b{letter-spacing:88.752635pt;}
.lsa4{letter-spacing:90.095365pt;}
.lsa6{letter-spacing:90.244699pt;}
.ls81{letter-spacing:91.392000pt;}
.ls19{letter-spacing:96.160635pt;}
.ls25{letter-spacing:96.376000pt;}
.ls7b{letter-spacing:102.576000pt;}
.ls7e{letter-spacing:102.581333pt;}
.ls82{letter-spacing:103.029333pt;}
.lsa5{letter-spacing:103.034667pt;}
.lsb1{letter-spacing:114.299301pt;}
.ls44{letter-spacing:230.701333pt;}
.wse{word-spacing:-64.055264pt;}
.ws23{word-spacing:-46.596368pt;}
.wsd{word-spacing:-39.874667pt;}
.ws21{word-spacing:-34.658667pt;}
.ws16{word-spacing:-31.861333pt;}
.ws2b{word-spacing:-30.583280pt;}
.ws2a{word-spacing:-29.245664pt;}
.ws29{word-spacing:-29.138928pt;}
.ws37{word-spacing:-27.074320pt;}
.ws13{word-spacing:-26.592000pt;}
.ws1{word-spacing:-26.208000pt;}
.ws35{word-spacing:-24.529333pt;}
.ws41{word-spacing:-24.000000pt;}
.ws9{word-spacing:-23.849333pt;}
.ws1a{word-spacing:-23.277072pt;}
.ws3b{word-spacing:-21.832720pt;}
.wsf{word-spacing:-20.674667pt;}
.ws2d{word-spacing:-20.409333pt;}
.ws2{word-spacing:-20.388368pt;}
.ws14{word-spacing:-19.049333pt;}
.ws40{word-spacing:-18.944016pt;}
.ws24{word-spacing:-16.880864pt;}
.ws20{word-spacing:-15.988000pt;}
.ws6{word-spacing:-15.146768pt;}
.ws19{word-spacing:-13.537888pt;}
.ws1f{word-spacing:-12.981328pt;}
.ws33{word-spacing:-10.937472pt;}
.ws39{word-spacing:-9.481091pt;}
.ws3a{word-spacing:-9.300530pt;}
.ws2c{word-spacing:-9.083954pt;}
.ws27{word-spacing:-8.992789pt;}
.ws3d{word-spacing:-8.593367pt;}
.ws38{word-spacing:-0.341365pt;}
.ws5{word-spacing:-0.180811pt;}
.ws4{word-spacing:-0.170683pt;}
.wsa{word-spacing:-0.159499pt;}
.ws22{word-spacing:-0.138635pt;}
.ws10{word-spacing:-0.138181pt;}
.ws15{word-spacing:-0.127445pt;}
.ws8{word-spacing:-0.106736pt;}
.ws1c{word-spacing:-0.099173pt;}
.wsb{word-spacing:-0.098763pt;}
.ws28{word-spacing:-0.098117pt;}
.ws1e{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.095397pt;}
.ws11{word-spacing:-0.085616pt;}
.ws1b{word-spacing:-0.085264pt;}
.ws30{word-spacing:-0.081637pt;}
.ws3{word-spacing:-0.074683pt;}
.ws18{word-spacing:-0.063952pt;}
.ws25{word-spacing:-0.061835pt;}
.ws26{word-spacing:-0.058656pt;}
.ws12{word-spacing:-0.055483pt;}
.ws2f{word-spacing:-0.049136pt;}
.ws1d{word-spacing:-0.046411pt;}
.ws0{word-spacing:0.000000pt;}
.ws31{word-spacing:26.879597pt;}
.ws2e{word-spacing:27.588616pt;}
.ws17{word-spacing:32.865621pt;}
.ws34{word-spacing:65.317333pt;}
.ws3c{word-spacing:66.458667pt;}
.ws3e{word-spacing:73.370667pt;}
.ws36{word-spacing:117.232000pt;}
.ws32{word-spacing:421.713936pt;}
.ws3f{word-spacing:668.528000pt;}
.ws7{word-spacing:1078.140336pt;}
._1e{margin-left:-1960.587749pt;}
._16{margin-left:-1839.786555pt;}
._51{margin-left:-1721.186395pt;}
._30{margin-left:-1181.570773pt;}
._39{margin-left:-879.410357pt;}
._14{margin-left:-794.407440pt;}
._25{margin-left:-769.985632pt;}
._45{margin-left:-701.698389pt;}
._43{margin-left:-695.712770pt;}
._2c{margin-left:-624.923397pt;}
._56{margin-left:-203.008320pt;}
._1d{margin-left:-184.285995pt;}
._49{margin-left:-182.806549pt;}
._21{margin-left:-176.151696pt;}
._4b{margin-left:-171.873227pt;}
._50{margin-left:-161.532036pt;}
._59{margin-left:-131.653568pt;}
._32{margin-left:-118.786928pt;}
._33{margin-left:-117.455477pt;}
._26{margin-left:-106.617392pt;}
._31{margin-left:-105.133189pt;}
._35{margin-left:-92.970693pt;}
._2a{margin-left:-90.291120pt;}
._4d{margin-left:-88.958053pt;}
._2e{margin-left:-35.634048pt;}
._2f{margin-left:-31.746976pt;}
._44{margin-left:-28.188784pt;}
._20{margin-left:-25.509904pt;}
._28{margin-left:-24.585376pt;}
._5{margin-left:-23.616000pt;}
._23{margin-left:-22.368000pt;}
._12{margin-left:-21.166213pt;}
._d{margin-left:-19.588395pt;}
._11{margin-left:-18.165685pt;}
._27{margin-left:-16.512000pt;}
._1b{margin-left:-14.195397pt;}
._1f{margin-left:-13.235264pt;}
._4{margin-left:-11.966368pt;}
._a{margin-left:-11.018539pt;}
._6{margin-left:-9.919904pt;}
._0{margin-left:-8.633520pt;}
._9{margin-left:-7.488000pt;}
._8{margin-left:-6.273632pt;}
._2{margin-left:-5.052208pt;}
._f{margin-left:-3.936000pt;}
._15{margin-left:-2.847877pt;}
._4c{margin-left:-1.949833pt;}
._1{margin-left:-1.023232pt;}
._3{width:0.938539pt;}
._2b{width:1.955741pt;}
._c{width:2.867829pt;}
._b{width:4.224000pt;}
._34{width:5.282448pt;}
._19{width:6.279321pt;}
._e{width:7.212171pt;}
._36{width:8.111936pt;}
._17{width:9.157589pt;}
._1a{width:10.083341pt;}
._18{width:12.750069pt;}
._38{width:14.718980pt;}
._37{width:15.627765pt;}
._10{width:17.834539pt;}
._2d{width:20.603039pt;}
._58{width:57.648219pt;}
._29{width:71.129056pt;}
._24{width:80.900059pt;}
._1c{width:90.361013pt;}
._40{width:95.327232pt;}
._42{width:97.813333pt;}
._3f{width:99.952000pt;}
._52{width:102.080000pt;}
._53{width:104.265899pt;}
._41{width:106.453333pt;}
._54{width:108.341333pt;}
._3e{width:123.050667pt;}
._55{width:126.757333pt;}
._3b{width:131.242667pt;}
._3c{width:135.258667pt;}
._13{width:137.536651pt;}
._3a{width:139.978667pt;}
._3d{width:142.224000pt;}
._7{width:145.403632pt;}
._5a{width:212.555195pt;}
._4f{width:422.506667pt;}
._47{width:437.104000pt;}
._57{width:439.194667pt;}
._4e{width:900.400000pt;}
._48{width:1105.029333pt;}
._46{width:1125.397333pt;}
._22{width:1234.957696pt;}
._4a{width:1419.236315pt;}
.fs2e{font-size:30.992000pt;}
.fs8{font-size:33.562667pt;}
.fs1e{font-size:38.400000pt;}
.fs2f{font-size:40.064000pt;}
.fsc{font-size:43.237333pt;}
.fs21{font-size:46.410667pt;}
.fs23{font-size:46.864000pt;}
.fs11{font-size:48.074667pt;}
.fs2c{font-size:49.136000pt;}
.fs1d{font-size:49.589333pt;}
.fsf{font-size:52.762667pt;}
.fs1f{font-size:53.365333pt;}
.fsd{font-size:55.482667pt;}
.fs26{font-size:58.656000pt;}
.fs24{font-size:61.834667pt;}
.fs0{font-size:63.952000pt;}
.fs2d{font-size:69.392000pt;}
.fs9{font-size:74.682667pt;}
.fs1b{font-size:76.197333pt;}
.fs1c{font-size:78.885284pt;}
.fs12{font-size:79.973333pt;}
.fs29{font-size:81.637333pt;}
.fs18{font-size:82.698667pt;}
.fs22{font-size:82.794487pt;}
.fs2b{font-size:83.727958pt;}
.fs6{font-size:85.264000pt;}
.fs19{font-size:85.615960pt;}
.fs14{font-size:95.397333pt;}
.fs1{font-size:96.000000pt;}
.fs27{font-size:98.117333pt;}
.fs15{font-size:98.762587pt;}
.fs20{font-size:99.173333pt;}
.fs25{font-size:100.624145pt;}
.fs10{font-size:106.736000pt;}
.fs2a{font-size:107.189333pt;}
.fsb{font-size:108.245333pt;}
.fs28{font-size:112.026667pt;}
.fs5{font-size:117.317333pt;}
.fs1a{font-size:127.445333pt;}
.fs17{font-size:138.181333pt;}
.fs4{font-size:138.634667pt;}
.fs13{font-size:159.498667pt;}
.fs7{font-size:170.682667pt;}
.fsa{font-size:180.810667pt;}
.fse{font-size:187.042998pt;}
.fs3{font-size:192.000000pt;}
.fs16{font-size:232.517333pt;}
.fs2{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.037333pt;}
.ya5{bottom:2.873333pt;}
.y129{bottom:2.910667pt;}
.y118{bottom:2.986667pt;}
.yc7{bottom:4.157333pt;}
.ycd{bottom:4.233333pt;}
.yce{bottom:5.442667pt;}
.yc8{bottom:5.480000pt;}
.y22{bottom:5.670667pt;}
.y37{bottom:6.350667pt;}
.y1{bottom:7.332000pt;}
.y107{bottom:7.786667pt;}
.yf4{bottom:7.824000pt;}
.y117{bottom:7.900000pt;}
.ya4{bottom:7.937333pt;}
.y59{bottom:11.981333pt;}
.y44{bottom:12.284000pt;}
.y1b{bottom:13.268000pt;}
.y36{bottom:14.212000pt;}
.y2e{bottom:14.288000pt;}
.y20{bottom:15.270667pt;}
.y2{bottom:16.668000pt;}
.yca{bottom:17.764000pt;}
.y17e{bottom:19.842667pt;}
.ya2{bottom:21.014667pt;}
.y16d{bottom:22.488000pt;}
.yc9{bottom:22.677333pt;}
.y17a{bottom:23.282667pt;}
.y174{bottom:25.172000pt;}
.y5a{bottom:27.856000pt;}
.y45{bottom:29.896000pt;}
.y5c{bottom:30.388000pt;}
.y47{bottom:32.314667pt;}
.y38{bottom:33.412000pt;}
.ycc{bottom:33.713333pt;}
.yc6{bottom:33.750667pt;}
.y2f{bottom:34.281333pt;}
.y31{bottom:37.342667pt;}
.y21{bottom:37.682667pt;}
.y12{bottom:38.212000pt;}
.y5b{bottom:38.249333pt;}
.y2b{bottom:39.042667pt;}
.y66{bottom:40.214667pt;}
.y10c{bottom:41.046667pt;}
.y46{bottom:41.084000pt;}
.y8e{bottom:44.334667pt;}
.ya1{bottom:44.637333pt;}
.y150{bottom:45.430667pt;}
.y30{bottom:46.942667pt;}
.ye2{bottom:49.172000pt;}
.y122{bottom:51.969333pt;}
.y173{bottom:53.972000pt;}
.y17d{bottom:54.237333pt;}
.y5d{bottom:54.388000pt;}
.y58{bottom:56.656000pt;}
.y40{bottom:56.769333pt;}
.y179{bottom:57.826667pt;}
.y48{bottom:57.902667pt;}
.yef{bottom:58.508000pt;}
.y49{bottom:58.696000pt;}
.y43{bottom:60.284000pt;}
.y7d{bottom:61.833333pt;}
.y3c{bottom:64.101333pt;}
.y11{bottom:64.744000pt;}
.yba{bottom:64.894667pt;}
.y32{bottom:67.088000pt;}
.yc0{bottom:67.274667pt;}
.y16c{bottom:67.426667pt;}
.y33{bottom:67.881333pt;}
.y2d{bottom:70.149333pt;}
.yaf{bottom:73.550667pt;}
.y10b{bottom:75.440000pt;}
.yfa{bottom:75.704000pt;}
.y15d{bottom:78.350667pt;}
.y121{bottom:80.353333pt;}
.y6c{bottom:80.769333pt;}
.y4a{bottom:82.696000pt;}
.y3f{bottom:83.150667pt;}
.yee{bottom:83.414667pt;}
.ye1{bottom:86.892000pt;}
.y14f{bottom:87.572000pt;}
.y13d{bottom:88.101333pt;}
.yb9{bottom:88.214667pt;}
.y17c{bottom:88.744000pt;}
.y105{bottom:89.046667pt;}
.y165{bottom:89.424000pt;}
.y3b{bottom:90.482667pt;}
.y178{bottom:92.372000pt;}
.y172{bottom:93.165333pt;}
.y7f{bottom:94.753333pt;}
.y34{bottom:94.942667pt;}
.y6b{bottom:98.494667pt;}
.yae{bottom:100.082667pt;}
.y15c{bottom:104.769333pt;}
.y65{bottom:108.246667pt;}
.yd2{bottom:109.569333pt;}
.y3e{bottom:109.682667pt;}
.y10a{bottom:109.946667pt;}
.y16b{bottom:112.365333pt;}
.y7e{bottom:112.478667pt;}
.y166{bottom:115.274667pt;}
.y13c{bottom:116.485333pt;}
.y106{bottom:116.597333pt;}
.y3a{bottom:116.901333pt;}
.yed{bottom:118.110667pt;}
.y17{bottom:121.814667pt;}
.y8f{bottom:122.986667pt;}
.y8b{bottom:123.704000pt;}
.ye0{bottom:125.178667pt;}
.y115{bottom:126.878667pt;}
.y164{bottom:127.144000pt;}
.y14e{bottom:129.562667pt;}
.y15b{bottom:131.150667pt;}
.y14a{bottom:132.510667pt;}
.yd1{bottom:133.040000pt;}
.y3d{bottom:136.101333pt;}
.ya3{bottom:139.274667pt;}
.y64{bottom:142.374667pt;}
.yb8{bottom:142.753333pt;}
.y8a{bottom:145.701333pt;}
.yf2{bottom:146.078667pt;}
.ye7{bottom:148.612000pt;}
.y116{bottom:149.290667pt;}
.y11d{bottom:150.614667pt;}
.yec{bottom:151.294667pt;}
.y8{bottom:152.504000pt;}
.y16{bottom:152.882667pt;}
.y6a{bottom:153.978667pt;}
.y171{bottom:157.040000pt;}
.y76{bottom:157.153333pt;}
.y15a{bottom:157.682667pt;}
.yad{bottom:160.101333pt;}
.y114{bottom:161.840000pt;}
.y13b{bottom:161.953333pt;}
.y4f{bottom:164.108000pt;}
.y104{bottom:164.485333pt;}
.ydf{bottom:165.544000pt;}
.yb7{bottom:166.640000pt;}
.y89{bottom:167.812000pt;}
.y149{bottom:171.440000pt;}
.y69{bottom:171.704000pt;}
.yeb{bottom:176.240000pt;}
.y63{bottom:176.617333pt;}
.y19{bottom:176.769333pt;}
.y55{bottom:177.146667pt;}
.y9e{bottom:179.150667pt;}
.y15{bottom:181.040000pt;}
.ye6{bottom:182.626667pt;}
.y11c{bottom:183.837333pt;}
.y75{bottom:184.214667pt;}
.y12d{bottom:185.424000pt;}
.yc4{bottom:187.578667pt;}
.yac{bottom:188.485333pt;}
.y68{bottom:189.430667pt;}
.yb6{bottom:189.960000pt;}
.y4e{bottom:190.488000pt;}
.y7{bottom:190.640000pt;}
.y8c{bottom:191.812000pt;}
.y113{bottom:196.612000pt;}
.yf3{bottom:199.256000pt;}
.y90{bottom:201.525333pt;}
.y103{bottom:202.508000pt;}
.y18{bottom:203.150667pt;}
.y13a{bottom:205.569333pt;}
.y11b{bottom:208.744000pt;}
.y14{bottom:209.310667pt;}
.y7c{bottom:210.104000pt;}
.y148{bottom:210.369333pt;}
.y62{bottom:210.482667pt;}
.y74{bottom:211.426667pt;}
.y54{bottom:212.901333pt;}
.yb5{bottom:213.278667pt;}
.y163{bottom:216.378667pt;}
.ye5{bottom:217.021333pt;}
.y4d{bottom:218.910667pt;}
.ycb{bottom:223.898667pt;}
.y2a{bottom:224.088000pt;}
.y8d{bottom:225.674667pt;}
.y67{bottom:229.417333pt;}
.y147{bottom:229.682667pt;}
.y12c{bottom:231.837333pt;}
.y6{bottom:233.688000pt;}
.yab{bottom:233.840000pt;}
.y181{bottom:234.217333pt;}
.y159{bottom:236.901333pt;}
.y13{bottom:237.430667pt;}
.yde{bottom:238.374667pt;}
.y53{bottom:242.078667pt;}
.y93{bottom:242.910667pt;}
.y11a{bottom:243.440000pt;}
.y170{bottom:243.704000pt;}
.y120{bottom:244.498667pt;}
.y88{bottom:247.446667pt;}
.y73{bottom:248.353333pt;}
.y146{bottom:249.146667pt;}
.y41{bottom:249.412000pt;}
.ya0{bottom:250.772000pt;}
.y139{bottom:250.885333pt;}
.y61{bottom:251.037333pt;}
.y4c{bottom:252.888000pt;}
.y102{bottom:253.569333pt;}
.y12b{bottom:253.833333pt;}
.yd0{bottom:254.098667pt;}
.yea{bottom:256.101333pt;}
.y92{bottom:260.750667pt;}
.ydd{bottom:263.169333pt;}
.y7b{bottom:265.814667pt;}
.y162{bottom:269.178667pt;}
.yb4{bottom:269.442667pt;}
.yfd{bottom:270.501333pt;}
.yf1{bottom:270.765333pt;}
.y11f{bottom:270.878667pt;}
.y72{bottom:271.710667pt;}
.y16f{bottom:273.146667pt;}
.y52{bottom:273.412000pt;}
.y180{bottom:273.713333pt;}
.y12a{bottom:275.944000pt;}
.y138{bottom:277.304000pt;}
.yaa{bottom:279.156000pt;}
.ye9{bottom:279.421333pt;}
.y9b{bottom:281.310667pt;}
.y101{bottom:281.953333pt;}
.y60{bottom:282.633333pt;}
.yc5{bottom:283.313333pt;}
.ydc{bottom:283.692000pt;}
.y4b{bottom:284.901333pt;}
.y100{bottom:285.544000pt;}
.y145{bottom:288.113333pt;}
.y10{bottom:293.178667pt;}
.ybf{bottom:294.350667pt;}
.y86{bottom:294.878667pt;}
.y119{bottom:300.888000pt;}
.y17f{bottom:302.362667pt;}
.y29{bottom:302.626667pt;}
.ycf{bottom:303.837333pt;}
.yfc{bottom:305.046667pt;}
.y112{bottom:306.217333pt;}
.y10f{bottom:308.901333pt;}
.y137{bottom:310.110667pt;}
.ybe{bottom:312.113333pt;}
.yf0{bottom:312.226667pt;}
.yda{bottom:313.814667pt;}
.y5f{bottom:315.440000pt;}
.y51{bottom:315.817333pt;}
.yd7{bottom:316.612000pt;}
.y127{bottom:318.237333pt;}
.yf{bottom:319.560000pt;}
.yff{bottom:319.974667pt;}
.y9a{bottom:322.772000pt;}
.y91{bottom:323.301333pt;}
.y161{bottom:323.944000pt;}
.ya9{bottom:324.510667pt;}
.y144{bottom:327.156000pt;}
.y85{bottom:327.950667pt;}
.ye8{bottom:329.046667pt;}
.y95{bottom:330.898667pt;}
.yd9{bottom:332.901333pt;}
.yd6{bottom:334.640000pt;}
.y16e{bottom:334.904000pt;}
.yfb{bottom:337.285333pt;}
.y136{bottom:340.233333pt;}
.y71{bottom:345.412000pt;}
.y167{bottom:346.772000pt;}
.y14b{bottom:349.569333pt;}
.y5{bottom:349.833333pt;}
.y160{bottom:350.362667pt;}
.y10e{bottom:350.626667pt;}
.yd8{bottom:350.778667pt;}
.yc3{bottom:351.421333pt;}
.y28{bottom:352.894667pt;}
.y155{bottom:354.217333pt;}
.y84{bottom:354.482667pt;}
.y16a{bottom:357.165333pt;}
.y130{bottom:358.374667pt;}
.y17b{bottom:358.904000pt;}
.y9d{bottom:359.812000pt;}
.y5e{bottom:360.642667pt;}
.y126{bottom:361.814667pt;}
.ybd{bottom:362.078667pt;}
.yf9{bottom:363.553333pt;}
.y99{bottom:364.346667pt;}
.y11e{bottom:365.178667pt;}
.y158{bottom:366.878667pt;}
.y94{bottom:368.240000pt;}
.ye{bottom:372.360000pt;}
.y70{bottom:374.513333pt;}
.y15f{bottom:374.778667pt;}
.y10d{bottom:375.950667pt;}
.y87{bottom:377.310667pt;}
.yb3{bottom:378.633333pt;}
.ya8{bottom:380.901333pt;}
.y135{bottom:383.546667pt;}
.y133{bottom:392.769333pt;}
.yc2{bottom:393.033333pt;}
.y2c{bottom:394.241333pt;}
.y154{bottom:395.830667pt;}
.y128{bottom:397.228000pt;}
.y42{bottom:398.097333pt;}
.yd{bottom:398.778667pt;}
.y83{bottom:400.744000pt;}
.y27{bottom:401.046667pt;}
.y1e{bottom:401.310667pt;}
.y57{bottom:402.028000pt;}
.y35{bottom:403.237333pt;}
.y125{bottom:403.313333pt;}
.y98{bottom:403.842667pt;}
.y56{bottom:404.750667pt;}
.y176{bottom:406.224000pt;}
.y169{bottom:407.962667pt;}
.y111{bottom:408.378667pt;}
.yf8{bottom:408.908000pt;}
.y50{bottom:409.021333pt;}
.y185{bottom:409.550667pt;}
.ye4{bottom:409.814667pt;}
.y12f{bottom:410.344000pt;}
.y6f{bottom:411.440000pt;}
.yd5{bottom:411.817333pt;}
.y14c{bottom:412.498667pt;}
.y1f{bottom:413.517333pt;}
.ybc{bottom:414.085333pt;}
.y4{bottom:414.350667pt;}
.y1a{bottom:415.520000pt;}
.y109{bottom:415.974667pt;}
.y175{bottom:418.772000pt;}
.y157{bottom:419.414667pt;}
.y82{bottom:422.513333pt;}
.y168{bottom:422.626667pt;}
.y24{bottom:422.892000pt;}
.y141{bottom:423.572000pt;}
.y183{bottom:424.630667pt;}
.yb2{bottom:426.746667pt;}
.y134{bottom:428.901333pt;}
.y132{bottom:430.488000pt;}
.y97{bottom:432.226667pt;}
.y14d{bottom:432.492000pt;}
.y177{bottom:433.172000pt;}
.yc1{bottom:434.494667pt;}
.y6e{bottom:434.760000pt;}
.yf7{bottom:435.288000pt;}
.yfe{bottom:435.440000pt;}
.y184{bottom:436.082667pt;}
.ye3{bottom:436.233333pt;}
.y153{bottom:437.292000pt;}
.yd4{bottom:438.350667pt;}
.y1d{bottom:441.146667pt;}
.y124{bottom:444.888000pt;}
.ya7{bottom:446.513333pt;}
.y182{bottom:451.313333pt;}
.yc{bottom:451.578667pt;}
.y80{bottom:452.901333pt;}
.y15e{bottom:454.110667pt;}
.y110{bottom:460.346667pt;}
.y12e{bottom:462.350667pt;}
.y9c{bottom:464.769333pt;}
.y7a{bottom:464.882667pt;}
.ybb{bottom:466.092000pt;}
.y23{bottom:466.356000pt;}
.y108{bottom:467.944000pt;}
.y131{bottom:468.246667pt;}
.y156{bottom:471.421333pt;}
.y26{bottom:473.688000pt;}
.y96{bottom:473.840000pt;}
.yb1{bottom:475.012000pt;}
.yf6{bottom:476.901333pt;}
.y1c{bottom:478.904000pt;}
.ydb{bottom:479.962667pt;}
.y79{bottom:482.494667pt;}
.ya6{bottom:484.233333pt;}
.y123{bottom:484.346667pt;}
.y13e{bottom:486.501333pt;}
.y186{bottom:488.240000pt;}
.yd3{bottom:489.826667pt;}
.y39{bottom:491.150667pt;}
.y78{bottom:500.108000pt;}
.ya{bottom:513.298667pt;}
.y77{bottom:517.682667pt;}
.y9f{bottom:517.946667pt;}
.y140{bottom:534.237333pt;}
.y152{bottom:538.092000pt;}
.y9{bottom:539.565333pt;}
.y25{bottom:550.374667pt;}
.yf5{bottom:551.169333pt;}
.yb{bottom:551.282667pt;}
.y6d{bottom:552.642667pt;}
.y81{bottom:554.494667pt;}
.y151{bottom:555.817333pt;}
.y13f{bottom:556.762667pt;}
.yb0{bottom:565.040000pt;}
.y143{bottom:575.433333pt;}
.y142{bottom:593.424000pt;}
.h59{height:30.009333pt;}
.h77{height:33.131250pt;}
.h53{height:33.958094pt;}
.h66{height:35.181376pt;}
.h50{height:39.007766pt;}
.h3a{height:41.478484pt;}
.h5b{height:41.997696pt;}
.h2{height:43.198667pt;}
.h38{height:44.372945pt;}
.h7c{height:44.725194pt;}
.h7a{height:44.798602pt;}
.h76{height:44.815717pt;}
.h75{height:44.833324pt;}
.h47{height:45.028703pt;}
.h46{height:45.978500pt;}
.h80{height:46.340219pt;}
.h6a{height:46.367729pt;}
.h6b{height:46.487904pt;}
.h3{height:46.746164pt;}
.he{height:48.088487pt;}
.hf{height:48.237820pt;}
.h69{height:50.722570pt;}
.hd{height:51.316716pt;}
.h88{height:52.111729pt;}
.h8c{height:52.117063pt;}
.h8b{height:52.261063pt;}
.h89{height:52.266396pt;}
.h61{height:52.270667pt;}
.h8a{height:52.869062pt;}
.h3e{height:52.869341pt;}
.h7f{height:54.589820pt;}
.h2b{height:55.105333pt;}
.h48{height:55.177336pt;}
.h4a{height:55.822987pt;}
.h4f{height:55.972320pt;}
.h4d{height:55.977654pt;}
.h6e{height:56.430987pt;}
.h4e{height:56.580320pt;}
.h62{height:56.643872pt;}
.h85{height:56.962339pt;}
.h32{height:57.380276pt;}
.h78{height:57.719672pt;}
.h68{height:58.452331pt;}
.h22{height:58.457070pt;}
.h6c{height:59.423216pt;}
.h12{height:59.716000pt;}
.h10{height:60.043875pt;}
.h4b{height:60.258513pt;}
.h51{height:60.519212pt;}
.h7b{height:61.268633pt;}
.h16{height:61.718667pt;}
.h58{height:61.783094pt;}
.h45{height:62.155875pt;}
.h15{height:62.161208pt;}
.h6f{height:62.310542pt;}
.ha{height:62.324320pt;}
.h74{height:63.382112pt;}
.h44{height:63.507430pt;}
.h7e{height:63.536779pt;}
.h81{height:64.370339pt;}
.h5f{height:64.519672pt;}
.h49{height:65.321883pt;}
.h56{height:65.536208pt;}
.h26{height:66.191216pt;}
.h8d{height:66.609375pt;}
.h6d{height:67.063846pt;}
.h79{height:67.213180pt;}
.h3f{height:68.061669pt;}
.h43{height:69.400763pt;}
.h4{height:69.562500pt;}
.h1e{height:70.003430pt;}
.h39{height:70.158096pt;}
.hc{height:70.171875pt;}
.h67{height:70.436117pt;}
.h70{height:70.696721pt;}
.h71{height:70.851388pt;}
.h60{height:72.000779pt;}
.h65{height:72.239893pt;}
.h7d{height:72.454112pt;}
.h82{height:72.603445pt;}
.h87{height:72.608779pt;}
.h2d{height:73.546875pt;}
.h4c{height:73.565180pt;}
.h33{height:73.868848pt;}
.h14{height:74.817458pt;}
.h84{height:74.966792pt;}
.h18{height:75.105771pt;}
.h1c{height:76.681930pt;}
.h1b{height:77.289930pt;}
.h1a{height:77.503659pt;}
.h20{height:78.019430pt;}
.h73{height:79.464721pt;}
.h57{height:80.425151pt;}
.h1d{height:81.771867pt;}
.h5e{height:81.886680pt;}
.h37{height:82.828125pt;}
.h1f{height:84.080404pt;}
.h5c{height:84.654945pt;}
.h27{height:85.211666pt;}
.h9{height:85.753930pt;}
.h21{height:86.361930pt;}
.h5a{height:86.817805pt;}
.h3c{height:88.427646pt;}
.h83{height:88.577182pt;}
.h3b{height:89.498667pt;}
.h5d{height:90.719805pt;}
.h3d{height:91.250859pt;}
.h63{height:92.482203pt;}
.h30{height:95.876794pt;}
.h54{height:96.191339pt;}
.h31{height:98.937835pt;}
.h2f{height:101.140000pt;}
.h8{height:101.335984pt;}
.h40{height:109.958938pt;}
.h24{height:110.667776pt;}
.h25{height:114.201045pt;}
.h23{height:116.636000pt;}
.h34{height:119.221883pt;}
.h55{height:119.765234pt;}
.hb{height:124.761695pt;}
.h41{height:125.888008pt;}
.h35{height:127.663168pt;}
.h86{height:127.771875pt;}
.h42{height:130.000979pt;}
.h28{height:137.614328pt;}
.h64{height:139.225451pt;}
.h7{height:140.343750pt;}
.h36{height:140.628794pt;}
.h11{height:147.263805pt;}
.h29{height:148.819712pt;}
.h17{height:156.002172pt;}
.h2a{height:161.313109pt;}
.h19{height:161.379383pt;}
.h13{height:164.753771pt;}
.h72{height:167.835875pt;}
.h6{height:171.507859pt;}
.h2c{height:178.235654pt;}
.h2e{height:188.259661pt;}
.h52{height:212.106667pt;}
.h5{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.wf{width:93.392000pt;}
.w12{width:188.409333pt;}
.w11{width:193.057333pt;}
.w10{width:203.640000pt;}
.w13{width:203.753333pt;}
.w14{width:204.169333pt;}
.wc{width:204.698667pt;}
.wd{width:214.488000pt;}
.we{width:262.562667pt;}
.w7{width:267.098667pt;}
.w9{width:381.845333pt;}
.wa{width:430.714667pt;}
.w6{width:438.349333pt;}
.w4{width:444.849333pt;}
.w8{width:495.722667pt;}
.wb{width:524.976000pt;}
.w5{width:541.718667pt;}
.w3{width:1057.889333pt;}
.w2{width:1057.926667pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.045333pt;}
.x59{left:5.782667pt;}
.x2d{left:8.050667pt;}
.x2{left:9.449333pt;}
.x58{left:11.376000pt;}
.x7d{left:13.190667pt;}
.x74{left:14.665333pt;}
.xbe{left:16.138667pt;}
.x70{left:17.801333pt;}
.x64{left:19.918667pt;}
.x14{left:22.412000pt;}
.xb{left:23.961333pt;}
.x2c{left:25.625333pt;}
.x6f{left:27.137333pt;}
.x19{left:28.801333pt;}
.xb6{left:30.652000pt;}
.xc0{left:31.597333pt;}
.x38{left:33.449333pt;}
.x2b{left:35.300000pt;}
.x7b{left:36.548000pt;}
.xbf{left:38.816000pt;}
.x1a{left:39.988000pt;}
.x98{left:42.254667pt;}
.x3b{left:45.657333pt;}
.x65{left:47.093333pt;}
.xa{left:48.000000pt;}
.x6{left:52.950667pt;}
.x1b{left:55.976000pt;}
.x66{left:57.449333pt;}
.x9{left:60.925333pt;}
.x60{left:62.400000pt;}
.x2e{left:65.650667pt;}
.x61{left:67.729333pt;}
.x5{left:70.790667pt;}
.x47{left:73.322667pt;}
.x1c{left:75.176000pt;}
.x4b{left:78.652000pt;}
.x17{left:81.449333pt;}
.x15{left:82.922667pt;}
.x45{left:86.136000pt;}
.x4a{left:87.988000pt;}
.x7e{left:92.522667pt;}
.x36{left:93.884000pt;}
.x4{left:94.790667pt;}
.x46{left:96.945333pt;}
.x3{left:99.212000pt;}
.x85{left:104.125333pt;}
.xc1{left:106.922667pt;}
.x5d{left:108.925333pt;}
.x54{left:111.722667pt;}
.x49{left:114.670667pt;}
.x68{left:116.258667pt;}
.x67{left:117.884000pt;}
.x69{left:119.320000pt;}
.x7f{left:123.590667pt;}
.x3c{left:125.518667pt;}
.x80{left:127.484000pt;}
.x28{left:129.336000pt;}
.x3d{left:132.850667pt;}
.x2f{left:135.912000pt;}
.x26{left:140.749333pt;}
.x30{left:143.245333pt;}
.x71{left:147.401333pt;}
.x16{left:153.336000pt;}
.x1d{left:155.981333pt;}
.x48{left:160.932000pt;}
.x55{left:162.670667pt;}
.x1e{left:163.994667pt;}
.x3e{left:165.506667pt;}
.x43{left:168.000000pt;}
.x72{left:169.285333pt;}
.xc5{left:177.336000pt;}
.x31{left:179.112000pt;}
.x53{left:184.252000pt;}
.x27{left:188.712000pt;}
.x44{left:190.677333pt;}
.x7{left:196.800000pt;}
.xc9{left:200.125333pt;}
.x5e{left:201.336000pt;}
.x1f{left:205.606667pt;}
.xa4{left:208.402667pt;}
.x77{left:209.461333pt;}
.xb0{left:215.206667pt;}
.x5f{left:224.012000pt;}
.x40{left:227.113333pt;}
.xa3{left:235.350667pt;}
.x3f{left:239.888000pt;}
.x8b{left:242.116000pt;}
.x33{left:244.688000pt;}
.xa5{left:249.336000pt;}
.xb5{left:255.874667pt;}
.x32{left:259.088000pt;}
.x8c{left:266.948000pt;}
.xa8{left:269.593333pt;}
.xa9{left:275.716000pt;}
.xa2{left:279.609333pt;}
.x21{left:281.462667pt;}
.x76{left:287.849333pt;}
.x20{left:297.449333pt;}
.x8f{left:311.885333pt;}
.xaf{left:313.322667pt;}
.x41{left:314.306667pt;}
.xa0{left:315.325333pt;}
.x34{left:316.688000pt;}
.x95{left:321.336000pt;}
.x35{left:329.500000pt;}
.xb1{left:335.320000pt;}
.x9f{left:339.212000pt;}
.x8d{left:340.270667pt;}
.x24{left:342.274667pt;}
.x42{left:343.900000pt;}
.xb3{left:354.520000pt;}
.x78{left:358.412000pt;}
.x8e{left:360.416000pt;}
.x22{left:363.856000pt;}
.x6a{left:367.748000pt;}
.x8{left:369.336000pt;}
.x25{left:379.049333pt;}
.xb2{left:380.674667pt;}
.x23{left:392.656000pt;}
.x99{left:407.054667pt;}
.xc2{left:408.000000pt;}
.xb4{left:430.148000pt;}
.xf{left:431.093333pt;}
.x57{left:433.965333pt;}
.x10{left:442.961333pt;}
.x2a{left:465.336000pt;}
.x79{left:468.018667pt;}
.xca{left:469.077333pt;}
.x7a{left:477.997333pt;}
.x4c{left:480.000000pt;}
.x4e{left:482.797333pt;}
.x4d{left:484.649333pt;}
.x96{left:490.658667pt;}
.x11{left:500.713333pt;}
.xbd{left:502.261333pt;}
.xcb{left:503.320000pt;}
.xd{left:513.184000pt;}
.x88{left:516.284000pt;}
.x18{left:519.873333pt;}
.x12{left:525.241333pt;}
.xb7{left:527.206667pt;}
.x29{left:537.184000pt;}
.xb8{left:539.188000pt;}
.x4f{left:547.616000pt;}
.x87{left:548.938667pt;}
.x6d{left:553.246667pt;}
.xa1{left:555.854667pt;}
.xe{left:558.652000pt;}
.x39{left:560.654667pt;}
.x62{left:562.393333pt;}
.x9c{left:565.077333pt;}
.xbb{left:571.880000pt;}
.x9b{left:581.858667pt;}
.x92{left:583.748000pt;}
.x91{left:592.138667pt;}
.x5c{left:601.209333pt;}
.x5b{left:606.388000pt;}
.xa6{left:608.920000pt;}
.xbc{left:613.341333pt;}
.x13{left:621.884000pt;}
.x7c{left:623.584000pt;}
.x1{left:624.529333pt;}
.x9e{left:633.184000pt;}
.xa7{left:643.049333pt;}
.xac{left:644.409333pt;}
.x3a{left:653.064000pt;}
.xc8{left:658.658667pt;}
.xc3{left:667.049333pt;}
.xaa{left:669.618667pt;}
.x5a{left:682.922667pt;}
.xc4{left:692.409333pt;}
.x9a{left:695.772000pt;}
.x6e{left:699.514667pt;}
.x73{left:702.122667pt;}
.x90{left:703.484000pt;}
.xc6{left:710.400000pt;}
.x83{left:711.722667pt;}
.xb9{left:740.674667pt;}
.xab{left:747.590667pt;}
.x56{left:753.184000pt;}
.xc7{left:754.280000pt;}
.x52{left:763.350667pt;}
.x84{left:766.148000pt;}
.x8a{left:785.461333pt;}
.xba{left:791.320000pt;}
.x6c{left:797.745333pt;}
.x6b{left:800.541333pt;}
.x50{left:811.200000pt;}
.x86{left:815.734667pt;}
.x89{left:819.212000pt;}
.x37{left:825.449333pt;}
.x75{left:837.618667pt;}
.x63{left:839.697333pt;}
.xae{left:845.745333pt;}
.x81{left:853.984000pt;}
.x82{left:855.080000pt;}
.xad{left:856.138667pt;}
.x9d{left:866.418667pt;}
.x93{left:880.402667pt;}
.x97{left:894.388000pt;}
.x94{left:902.400000pt;}
.x51{left:937.738667pt;}
}




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