
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_78faaf9733eba012b52ac003.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_adab1ce40b63b80b24efa007.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_88c1f5ee1cf13084ddc8bf94.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_b63729e1f42aaa1293b0ee87.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_91d6df3074dd8d7b0d873dfc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_7f4517a33a2c189ef887943c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_5f89867b5456ff3bca90a17d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_2475b8a3dca57945db36d75d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_e4e29975ba474cd646025e9a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_c2ab755b828f7c973417229c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_87aa29de585a652367ee3ef6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d6efb269d5393dcde850b71f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_603fab50f67037303b938aa6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_80ad42b702beac34a08350da.woff')format("woff");}.fff{font-family:fff;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1970cc21ddd0208d218664d2.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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;}
.m14{transform:matrix(0.148234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148234,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.157305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157305,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.157905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157905,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.165928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165928,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.178666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178666,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.183960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183960,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.190323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190323,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.209626,0.000000,-0.069868,0.240038,0,0);-ms-transform:matrix(0.209626,0.000000,-0.069868,0.240038,0,0);-webkit-transform:matrix(0.209626,0.000000,-0.069868,0.240038,0,0);}
.ma{transform:matrix(0.210556,0.000000,-0.070178,0.239948,0,0);-ms-transform:matrix(0.210556,0.000000,-0.070178,0.239948,0,0);-webkit-transform:matrix(0.210556,0.000000,-0.070178,0.239948,0,0);}
.m8{transform:matrix(0.211768,0.000000,-0.070582,0.239829,0,0);-ms-transform:matrix(0.211768,0.000000,-0.070582,0.239829,0,0);-webkit-transform:matrix(0.211768,0.000000,-0.070582,0.239829,0,0);}
.m4{transform:matrix(0.218326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218326,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.219377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219377,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.220749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220749,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.226590,0.000000,-0.075522,0.238320,0,0);-ms-transform:matrix(0.226590,0.000000,-0.075522,0.238320,0,0);-webkit-transform:matrix(0.226590,0.000000,-0.075522,0.238320,0,0);}
.mb{transform:matrix(0.232761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232761,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.234809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234809,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.239084,0.000000,-0.079687,0.236960,0,0);-ms-transform:matrix(0.239084,0.000000,-0.079687,0.236960,0,0);-webkit-transform:matrix(0.239084,0.000000,-0.079687,0.236960,0,0);}
.m1c{transform:matrix(0.239903,0.000000,-0.079960,0.236868,0,0);-ms-transform:matrix(0.239903,0.000000,-0.079960,0.236868,0,0);-webkit-transform:matrix(0.239903,0.000000,-0.079960,0.236868,0,0);}
.m2{transform:matrix(0.239939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239939,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.244738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244738,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);}
.mf{transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254999,0.000000,-0.084991,0.235110,0,0);-ms-transform:matrix(0.254999,0.000000,-0.084991,0.235110,0,0);-webkit-transform:matrix(0.254999,0.000000,-0.084991,0.235110,0,0);}
.md{transform:matrix(0.256118,0.000000,-0.085364,0.234974,0,0);-ms-transform:matrix(0.256118,0.000000,-0.085364,0.234974,0,0);-webkit-transform:matrix(0.256118,0.000000,-0.085364,0.234974,0,0);}
.m17{transform:matrix(0.271149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271149,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272495,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);}
.ve{vertical-align:-64.756392px;}
.vc{vertical-align:-58.586877px;}
.v3{vertical-align:-53.621353px;}
.va{vertical-align:-50.832169px;}
.v10{vertical-align:-46.036302px;}
.v6{vertical-align:-38.880000px;}
.v5{vertical-align:-30.960000px;}
.v4{vertical-align:-17.280000px;}
.vf{vertical-align:-15.684615px;}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.240000px;}
.v9{vertical-align:17.256000px;}
.v8{vertical-align:19.632829px;}
.vb{vertical-align:20.689211px;}
.v2{vertical-align:38.880000px;}
.v11{vertical-align:51.120000px;}
.vd{vertical-align:58.586877px;}
.ls36{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.891927px;}
.ls7{letter-spacing:-0.738000px;}
.ls10{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.501212px;}
.ls35{letter-spacing:-0.378600px;}
.ls15{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.250606px;}
.lsb{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.008640px;}
.ls30{letter-spacing:0.018000px;}
.ls33{letter-spacing:0.028080px;}
.ls31{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.081600px;}
.ls3{letter-spacing:0.126000px;}
.ls28{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.341400px;}
.ls21{letter-spacing:0.350640px;}
.ls4{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.369360px;}
.ls1d{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.260000px;}
.lsf{letter-spacing:2.230560px;}
.ls1b{letter-spacing:4.523760px;}
.ls1c{letter-spacing:5.243760px;}
.ls22{letter-spacing:48.086910px;}
.ls6{letter-spacing:57.472560px;}
.ls16{letter-spacing:72.558314px;}
.lsc{letter-spacing:72.696389px;}
.ls20{letter-spacing:96.028673px;}
.ls9{letter-spacing:105.616432px;}
.ls13{letter-spacing:112.142931px;}
.ls12{letter-spacing:129.494366px;}
.ls8{letter-spacing:141.711268px;}
.ls11{letter-spacing:162.306807px;}
.ls1a{letter-spacing:167.922656px;}
.ls32{letter-spacing:168.101280px;}
.ls14{letter-spacing:177.902844px;}
.ls0{letter-spacing:197.429760px;}
.ls25{letter-spacing:198.900000px;}
.ls1e{letter-spacing:206.527497px;}
.ls23{letter-spacing:219.855064px;}
.ls27{letter-spacing:280.309060px;}
.ls2c{letter-spacing:303.396452px;}
.ls2a{letter-spacing:318.444029px;}
.ls29{letter-spacing:334.537633px;}
.ls2b{letter-spacing:434.460141px;}
.ls2e{letter-spacing:515.153810px;}
.ls24{letter-spacing:557.185226px;}
.ls26{letter-spacing:591.878757px;}
.ls1f{letter-spacing:666.698533px;}
.ls1{letter-spacing:1083.329760px;}
.ls2d{letter-spacing:1299.986665px;}
.ls2f{letter-spacing:1370.024579px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-141.794185px;}
.ws16{word-spacing:-22.140000px;}
.ws5{word-spacing:-21.420000px;}
.wsc{word-spacing:-21.401400px;}
.ws32{word-spacing:-21.097440px;}
.ws31{word-spacing:-21.078000px;}
.ws12{word-spacing:-21.068640px;}
.ws2{word-spacing:-21.060000px;}
.wsf{word-spacing:-20.700000px;}
.wsd{word-spacing:-20.376000px;}
.ws4{word-spacing:-20.322000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-13.500000px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws2d{word-spacing:20.842632px;}
.ws25{word-spacing:22.021684px;}
.ws1c{word-spacing:23.130365px;}
.ws2b{word-spacing:25.339502px;}
.ws23{word-spacing:26.585715px;}
.ws1b{word-spacing:27.979264px;}
.ws24{word-spacing:32.276303px;}
.ws13{word-spacing:32.349746px;}
.ws2c{word-spacing:37.458394px;}
.ws27{word-spacing:41.360651px;}
.wsb{word-spacing:46.618931px;}
.ws2e{word-spacing:47.042701px;}
.ws20{word-spacing:61.076685px;}
.ws19{word-spacing:66.953061px;}
.ws15{word-spacing:75.537768px;}
.ws28{word-spacing:84.353046px;}
.ws17{word-spacing:85.602087px;}
.ws9{word-spacing:97.183879px;}
.ws1f{word-spacing:98.973993px;}
.ws2f{word-spacing:103.699432px;}
.ws26{word-spacing:108.953436px;}
.ws18{word-spacing:109.392153px;}
.ws14{word-spacing:112.187266px;}
.ws1d{word-spacing:114.519571px;}
.ws8{word-spacing:119.091295px;}
.ws6{word-spacing:121.742241px;}
.wse{word-spacing:162.725054px;}
.ws29{word-spacing:210.042244px;}
.ws30{word-spacing:213.196639px;}
.ws21{word-spacing:220.615979px;}
.ws1e{word-spacing:222.844677px;}
.ws10{word-spacing:313.137181px;}
.wsa{word-spacing:316.147212px;}
.ws2a{word-spacing:627.018723px;}
.ws22{word-spacing:658.463683px;}
.ws1a{word-spacing:691.688070px;}
._14{margin-left:-246.080663px;}
._17{margin-left:-243.677940px;}
._0{margin-left:-196.973760px;}
._2e{margin-left:-4.470720px;}
._1d{margin-left:-2.294160px;}
._1{margin-left:-1.126080px;}
._4{width:1.040880px;}
._3{width:2.382960px;}
._1e{width:3.451200px;}
._44{width:4.795440px;}
._5{width:6.427920px;}
._6{width:8.518560px;}
._8{width:10.614240px;}
._b{width:11.878800px;}
._9{width:12.888720px;}
._a{width:14.000160px;}
._13{width:15.062640px;}
._1c{width:17.160240px;}
._18{width:18.540000px;}
._22{width:20.034720px;}
._7{width:22.270320px;}
._53{width:23.322240px;}
._e{width:26.194560px;}
._d{width:27.227040px;}
._21{width:29.736720px;}
._11{width:32.348160px;}
._12{width:33.811200px;}
._f{width:35.159040px;}
._10{width:36.338400px;}
._54{width:37.992240px;}
._55{width:39.458160px;}
._51{width:44.460000px;}
._52{width:52.411440px;}
._3f{width:54.720000px;}
._49{width:56.753978px;}
._3b{width:60.598130px;}
._c{width:62.000640px;}
._2d{width:68.099517px;}
._4e{width:76.398520px;}
._1b{width:86.940000px;}
._45{width:89.731561px;}
._3d{width:92.013679px;}
._3a{width:93.245661px;}
._37{width:94.257022px;}
._34{width:96.565232px;}
._38{width:97.940352px;}
._1f{width:100.329840px;}
._20{width:102.492960px;}
._16{width:103.846604px;}
._31{width:107.331824px;}
._4a{width:111.919062px;}
._25{width:114.321906px;}
._4b{width:116.249045px;}
._24{width:118.035001px;}
._3c{width:121.508560px;}
._23{width:124.897784px;}
._33{width:128.056558px;}
._15{width:132.023485px;}
._28{width:133.740000px;}
._2c{width:136.201401px;}
._2a{width:138.489580px;}
._46{width:139.960493px;}
._26{width:141.788785px;}
._39{width:147.114283px;}
._43{width:149.760000px;}
._30{width:154.213467px;}
._36{width:156.716300px;}
._1a{width:158.940000px;}
._47{width:168.817016px;}
._42{width:170.280000px;}
._27{width:184.242502px;}
._4c{width:187.363518px;}
._19{width:191.520000px;}
._40{width:254.948174px;}
._2b{width:260.149598px;}
._41{width:272.873611px;}
._29{width:281.416859px;}
._32{width:315.009697px;}
._2f{width:343.207039px;}
._35{width:344.286593px;}
._4f{width:372.745518px;}
._3e{width:391.231383px;}
._2{width:638.842080px;}
._50{width:956.632767px;}
._4d{width:1193.240672px;}
._48{width:1210.247579px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:42.373749px;}
.fs7{font-size:44.288321px;}
.fs1c{font-size:44.457718px;}
.fs18{font-size:44.865817px;}
.fs14{font-size:46.788066px;}
.fse{font-size:47.025089px;}
.fs4{font-size:47.854654px;}
.fs8{font-size:48.586455px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs23{font-size:73.389549px;}
.fs11{font-size:76.430434px;}
.fs6{font-size:76.583041px;}
.fs1d{font-size:76.998894px;}
.fs24{font-size:77.458275px;}
.fs19{font-size:77.705706px;}
.fs1e{font-size:80.772627px;}
.fs15{font-size:80.875403px;}
.fsd{font-size:81.315440px;}
.fs12{font-size:81.317813px;}
.fs3{font-size:82.917418px;}
.fs9{font-size:84.149694px;}
.fs2{font-size:84.240000px;}
.fsf{font-size:84.763846px;}
.fs16{font-size:85.326012px;}
.fs1f{font-size:85.997583px;}
.fsa{font-size:87.641935px;}
.fs10{font-size:87.674968px;}
.fs20{font-size:96.106652px;}
.fs1a{font-size:100.833239px;}
.fs17{font-size:101.758839px;}
.fsc{font-size:106.620179px;}
.fs21{font-size:115.765104px;}
.fs1b{font-size:121.458507px;}
.fs13{font-size:127.499259px;}
.y0{bottom:0.000000px;}
.y9f{bottom:4.066711px;}
.y8c{bottom:4.266714px;}
.y82{bottom:4.267311px;}
.y78{bottom:4.530419px;}
.y2e{bottom:4.607739px;}
.y6e{bottom:5.023298px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y34{bottom:6.557153px;}
.y4c{bottom:7.003026px;}
.y41{bottom:8.118454px;}
.y2d{bottom:9.924197px;}
.y6f{bottom:9.931505px;}
.y4a{bottom:10.748775px;}
.y33{bottom:11.503671px;}
.y4b{bottom:12.214532px;}
.ya1{bottom:13.615962px;}
.y8e{bottom:14.285604px;}
.y80{bottom:14.416739px;}
.y76{bottom:15.114692px;}
.y74{bottom:17.760677px;}
.ya2{bottom:18.336850px;}
.y6d{bottom:18.482876px;}
.y3f{bottom:19.109554px;}
.y8f{bottom:19.238669px;}
.y84{bottom:19.415270px;}
.y79{bottom:20.286995px;}
.y40{bottom:24.522087px;}
.y2{bottom:26.100000px;}
.y9d{bottom:26.505795px;}
.y4{bottom:28.980000px;}
.ya0{bottom:29.048148px;}
.y83{bottom:29.063936px;}
.y75{bottom:29.306946px;}
.y8d{bottom:30.476755px;}
.y9b{bottom:31.480618px;}
.y9a{bottom:32.424405px;}
.y3e{bottom:32.514892px;}
.y7f{bottom:32.678600px;}
.y77{bottom:32.995037px;}
.y89{bottom:33.028855px;}
.y9e{bottom:33.767080px;}
.y88{bottom:34.019058px;}
.y81{bottom:34.061989px;}
.y8b{bottom:35.427767px;}
.y3d{bottom:37.927425px;}
.y9c{bottom:41.937530px;}
.y8a{bottom:44.000045px;}
.y3c{bottom:47.337223px;}
.y42{bottom:79.740000px;}
.y43{bottom:87.480000px;}
.y72{bottom:101.340000px;}
.ya7{bottom:119.880000px;}
.y1d{bottom:126.000000px;}
.y3b{bottom:127.365000px;}
.y3a{bottom:148.356000px;}
.y71{bottom:153.390000px;}
.ya6{bottom:156.090000px;}
.y1c{bottom:162.210000px;}
.ya5{bottom:192.270000px;}
.y1b{bottom:198.570000px;}
.y6c{bottom:200.040000px;}
.y70{bottom:209.010000px;}
.y39{bottom:220.710000px;}
.ya4{bottom:228.450000px;}
.y1a{bottom:234.750000px;}
.y38{bottom:256.890000px;}
.y6b{bottom:262.830000px;}
.y19{bottom:270.930000px;}
.y99{bottom:274.740000px;}
.ya3{bottom:292.710000px;}
.yc4{bottom:297.570000px;}
.y6a{bottom:299.010000px;}
.y5b{bottom:302.790000px;}
.y37{bottom:308.190000px;}
.y18{bottom:322.230000px;}
.y5a{bottom:338.970000px;}
.yc3{bottom:348.870000px;}
.y69{bottom:350.130000px;}
.y36{bottom:359.310000px;}
.y98{bottom:361.650000px;}
.y17{bottom:373.350000px;}
.y59{bottom:375.150000px;}
.yc2{bottom:376.590000px;}
.y97{bottom:398.055000px;}
.y68{bottom:401.475000px;}
.yc1{bottom:404.355000px;}
.y32{bottom:405.615000px;}
.y16{bottom:409.755000px;}
.y58{bottom:411.375000px;}
.y35{bottom:416.055000px;}
.yc0{bottom:432.255000px;}
.y96{bottom:449.175000px;}
.y67{bottom:452.775000px;}
.ybf{bottom:459.975000px;}
.y15{bottom:460.515000px;}
.y57{bottom:462.675000px;}
.y31{bottom:468.255000px;}
.ybe{bottom:487.695000px;}
.y56{bottom:498.855000px;}
.y95{bottom:500.475000px;}
.y66{bottom:503.895000px;}
.y14{bottom:512.175000px;}
.ybd{bottom:515.595000px;}
.y30{bottom:519.555000px;}
.ybc{bottom:543.315000px;}
.y93{bottom:546.540000px;}
.y64{bottom:550.140000px;}
.y55{bottom:550.155000px;}
.y65{bottom:559.155000px;}
.y2c{bottom:561.315000px;}
.y13{bottom:563.295000px;}
.y94{bottom:564.555000px;}
.y2f{bottom:567.255000px;}
.ybb{bottom:571.035000px;}
.y92{bottom:574.275000px;}
.y54{bottom:586.335000px;}
.yba{bottom:598.755000px;}
.y12{bottom:599.475000px;}
.y63{bottom:612.795000px;}
.y52{bottom:622.695000px;}
.y2b{bottom:624.135000px;}
.yb9{bottom:626.655000px;}
.y53{bottom:630.435000px;}
.y91{bottom:630.975000px;}
.y11{bottom:650.445000px;}
.yb8{bottom:654.405000px;}
.y2a{bottom:660.345000px;}
.y62{bottom:664.125000px;}
.y50{bottom:670.440000px;}
.y87{bottom:677.040000px;}
.yb7{bottom:682.125000px;}
.y51{bottom:691.485000px;}
.y90{bottom:695.085000px;}
.y61{bottom:700.305000px;}
.y10{bottom:702.105000px;}
.yb6{bottom:709.845000px;}
.y29{bottom:711.645000px;}
.y60{bottom:736.485000px;}
.yb5{bottom:737.745000px;}
.y28{bottom:747.825000px;}
.yf{bottom:753.225000px;}
.y4f{bottom:763.665000px;}
.yb4{bottom:765.465000px;}
.y86{bottom:766.905000px;}
.y5f{bottom:787.425000px;}
.y27{bottom:787.785000px;}
.ye{bottom:789.405000px;}
.yb3{bottom:793.185000px;}
.y7e{bottom:812.940000px;}
.y4e{bottom:815.145000px;}
.yb2{bottom:821.085000px;}
.y26{bottom:826.665000px;}
.y85{bottom:830.985000px;}
.y5e{bottom:838.905000px;}
.yd{bottom:840.345000px;}
.yb1{bottom:848.805000px;}
.y49{bottom:861.765000px;}
.y25{bottom:865.545000px;}
.y4d{bottom:872.205000px;}
.yb0{bottom:876.525000px;}
.y5d{bottom:890.250000px;}
.yc{bottom:892.050000px;}
.y7d{bottom:900.150000px;}
.yaf{bottom:904.290000px;}
.y24{bottom:904.470000px;}
.y48{bottom:928.230000px;}
.yae{bottom:932.190000px;}
.y5c{bottom:936.330000px;}
.yb{bottom:943.170000px;}
.yad{bottom:959.910000px;}
.y47{bottom:964.410000px;}
.ya{bottom:979.350000px;}
.y23{bottom:982.050000px;}
.y7c{bottom:987.630000px;}
.yac{bottom:1015.530000px;}
.y46{bottom:1015.710000px;}
.y22{bottom:1020.930000px;}
.y9{bottom:1030.290000px;}
.y7b{bottom:1038.750000px;}
.yab{bottom:1043.250000px;}
.y21{bottom:1059.810000px;}
.y45{bottom:1066.830000px;}
.yaa{bottom:1070.970000px;}
.y8{bottom:1081.410000px;}
.y73{bottom:1084.965000px;}
.y20{bottom:1096.890000px;}
.ya9{bottom:1098.690000px;}
.y7a{bottom:1103.010000px;}
.y7{bottom:1117.770000px;}
.y44{bottom:1118.130000px;}
.ya8{bottom:1126.590000px;}
.y1f{bottom:1133.070000px;}
.y6{bottom:1168.920000px;}
.y1e{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.hd{height:30.599198px;}
.h8{height:30.600165px;}
.h45{height:30.868591px;}
.h25{height:33.227206px;}
.h18{height:33.735322px;}
.h1b{height:34.199881px;}
.h4f{height:41.566827px;}
.h4c{height:41.587517px;}
.hf{height:43.444940px;}
.h27{height:43.466565px;}
.h42{height:43.611111px;}
.h3f{height:43.632819px;}
.h39{height:44.011439px;}
.h36{height:44.033346px;}
.h30{height:45.897083px;}
.h2e{height:45.919928px;}
.h1e{height:46.129592px;}
.ha{height:46.943360px;}
.h15{height:47.661225px;}
.h13{height:47.684949px;}
.h52{height:50.957001px;}
.h1a{height:51.716953px;}
.h2c{height:52.200037px;}
.hc{height:52.971680px;}
.h46{height:52.998047px;}
.h2b{height:53.068397px;}
.h40{height:53.463100px;}
.h51{height:53.782064px;}
.h37{height:53.953864px;}
.h34{height:54.898900px;}
.h49{height:54.899164px;}
.h44{height:56.083338px;}
.h48{height:56.154699px;}
.h4d{height:56.343213px;}
.h21{height:56.460232px;}
.h2a{height:56.461880px;}
.h26{height:57.572543px;}
.h3c{height:57.599140px;}
.h19{height:58.428157px;}
.h20{height:58.854585px;}
.h32{height:59.244917px;}
.h47{height:59.711212px;}
.h17{height:60.852945px;}
.h22{height:60.875881px;}
.h23{height:61.038047px;}
.h12{height:61.199935px;}
.h2{height:65.884219px;}
.h4a{height:66.730302px;}
.h3d{height:70.012142px;}
.h3{height:70.628906px;}
.h35{height:70.654819px;}
.h50{height:71.991994px;}
.h4e{height:72.027829px;}
.h1c{height:74.030222px;}
.h7{height:74.244727px;}
.h29{height:74.974972px;}
.h10{height:75.124672px;}
.he{height:75.162067px;}
.h43{height:75.532607px;}
.h41{height:75.570204px;}
.h3a{height:76.225959px;}
.h38{height:76.263901px;}
.h33{height:76.843910px;}
.h31{height:79.335296px;}
.h2f{height:79.374786px;}
.h1f{height:79.766953px;}
.h1d{height:79.806658px;}
.h4b{height:80.379872px;}
.hb{height:81.338424px;}
.h9{height:81.378911px;}
.h16{height:82.547234px;}
.h14{height:82.588323px;}
.h6{height:82.676953px;}
.h3e{height:84.333006px;}
.h5{height:84.898125px;}
.h54{height:86.585445px;}
.h2d{height:88.527318px;}
.h11{height:91.851680px;}
.h24{height:91.878047px;}
.h53{height:91.995680px;}
.h28{height:94.645121px;}
.h3b{height:112.540741px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w3{width:75.600515px;}
.w4{width:96.302166px;}
.w6{width:114.296772px;}
.w7{width:132.299609px;}
.w5{width:133.197031px;}
.wb{width:145.801186px;}
.wd{width:159.300755px;}
.w8{width:173.694570px;}
.w9{width:197.994314px;}
.wa{width:253.806118px;}
.wc{width:299.692094px;}
.we{width:461.459378px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.061068px;}
.x43{left:2.829931px;}
.x40{left:10.150180px;}
.x16{left:11.595954px;}
.x27{left:12.759704px;}
.x4e{left:13.776442px;}
.x49{left:17.503436px;}
.x3d{left:19.548186px;}
.x4{left:20.550000px;}
.x23{left:24.532249px;}
.x36{left:25.603938px;}
.x4d{left:32.173813px;}
.x33{left:33.305520px;}
.x38{left:34.948327px;}
.x3f{left:36.563803px;}
.x1e{left:38.129289px;}
.x4f{left:41.852276px;}
.x42{left:44.940634px;}
.x57{left:46.677998px;}
.x41{left:55.467452px;}
.x22{left:56.683725px;}
.x48{left:59.481951px;}
.x1d{left:62.406811px;}
.x15{left:66.733343px;}
.x20{left:69.988355px;}
.x45{left:73.862187px;}
.x21{left:75.274334px;}
.x53{left:76.394098px;}
.x3c{left:79.205620px;}
.x1f{left:82.528802px;}
.x28{left:86.723006px;}
.x1a{left:89.260910px;}
.x47{left:92.056330px;}
.x1{left:95.796000px;}
.x32{left:100.431851px;}
.x4a{left:102.332860px;}
.x3a{left:109.987682px;}
.x2{left:111.636000px;}
.x37{left:117.625291px;}
.x56{left:121.671054px;}
.x3b{left:137.080458px;}
.x5{left:138.276000px;}
.x55{left:144.456650px;}
.x13{left:149.796000px;}
.x35{left:151.315686px;}
.x6{left:155.190000px;}
.x31{left:166.124789px;}
.x25{left:170.310000px;}
.x46{left:195.290114px;}
.x2f{left:198.750000px;}
.x2d{left:201.450000px;}
.x9{left:205.770000px;}
.x54{left:214.516334px;}
.x11{left:218.190000px;}
.x2b{left:219.450000px;}
.x51{left:234.868782px;}
.x50{left:237.165000px;}
.x2e{left:251.850000px;}
.x52{left:259.520400px;}
.x10{left:264.270000px;}
.xa{left:309.495000px;}
.x44{left:311.115000px;}
.xd{left:316.695000px;}
.xf{left:330.195000px;}
.x12{left:338.835000px;}
.x8{left:340.635000px;}
.xe{left:341.715000px;}
.x30{left:364.215000px;}
.xb{left:368.535000px;}
.xc{left:388.335000px;}
.x7{left:403.815000px;}
.x4c{left:407.415000px;}
.x26{left:417.315000px;}
.x3{left:438.915000px;}
.x14{left:451.740000px;}
.x19{left:470.415000px;}
.x1c{left:475.665000px;}
.x18{left:527.325000px;}
.x29{left:531.645000px;}
.x34{left:537.945000px;}
.x2a{left:549.645000px;}
.x39{left:562.245000px;}
.x1b{left:566.745000px;}
.x2c{left:591.945000px;}
.x24{left:608.865000px;}
.x4b{left:610.845000px;}
.x3e{left:618.045000px;}
.x58{left:698.730000px;}
@media print{
.ve{vertical-align:-57.561238pt;}
.vc{vertical-align:-52.077224pt;}
.v3{vertical-align:-47.663425pt;}
.va{vertical-align:-45.184150pt;}
.v10{vertical-align:-40.921158pt;}
.v6{vertical-align:-34.560000pt;}
.v5{vertical-align:-27.520000pt;}
.v4{vertical-align:-15.360000pt;}
.vf{vertical-align:-13.941880pt;}
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.880000pt;}
.v9{vertical-align:15.338667pt;}
.v8{vertical-align:17.451404pt;}
.vb{vertical-align:18.390410pt;}
.v2{vertical-align:34.560000pt;}
.v11{vertical-align:45.440000pt;}
.vd{vertical-align:52.077224pt;}
.ls36{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.792824pt;}
.ls7{letter-spacing:-0.656000pt;}
.ls10{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.445521pt;}
.ls35{letter-spacing:-0.336533pt;}
.ls15{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.222761pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.007680pt;}
.ls30{letter-spacing:0.016000pt;}
.ls33{letter-spacing:0.024960pt;}
.ls31{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.072533pt;}
.ls3{letter-spacing:0.112000pt;}
.ls28{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.303467pt;}
.ls21{letter-spacing:0.311680pt;}
.ls4{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.328320pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls34{letter-spacing:1.120000pt;}
.lsf{letter-spacing:1.982720pt;}
.ls1b{letter-spacing:4.021120pt;}
.ls1c{letter-spacing:4.661120pt;}
.ls22{letter-spacing:42.743920pt;}
.ls6{letter-spacing:51.086720pt;}
.ls16{letter-spacing:64.496279pt;}
.lsc{letter-spacing:64.619012pt;}
.ls20{letter-spacing:85.358821pt;}
.ls9{letter-spacing:93.881273pt;}
.ls13{letter-spacing:99.682605pt;}
.ls12{letter-spacing:115.106103pt;}
.ls8{letter-spacing:125.965571pt;}
.ls11{letter-spacing:144.272717pt;}
.ls1a{letter-spacing:149.264583pt;}
.ls32{letter-spacing:149.423360pt;}
.ls14{letter-spacing:158.135861pt;}
.ls0{letter-spacing:175.493120pt;}
.ls25{letter-spacing:176.800000pt;}
.ls1e{letter-spacing:183.579997pt;}
.ls23{letter-spacing:195.426724pt;}
.ls27{letter-spacing:249.163609pt;}
.ls2c{letter-spacing:269.685736pt;}
.ls2a{letter-spacing:283.061359pt;}
.ls29{letter-spacing:297.366785pt;}
.ls2b{letter-spacing:386.186792pt;}
.ls2e{letter-spacing:457.914498pt;}
.ls24{letter-spacing:495.275756pt;}
.ls26{letter-spacing:526.114450pt;}
.ls1f{letter-spacing:592.620918pt;}
.ls1{letter-spacing:962.959787pt;}
.ls2d{letter-spacing:1155.543702pt;}
.ls2f{letter-spacing:1217.799626pt;}
.ws7{word-spacing:-126.039276pt;}
.ws16{word-spacing:-19.680000pt;}
.ws5{word-spacing:-19.040000pt;}
.wsc{word-spacing:-19.023467pt;}
.ws32{word-spacing:-18.753280pt;}
.ws31{word-spacing:-18.736000pt;}
.ws12{word-spacing:-18.727680pt;}
.ws2{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.400000pt;}
.wsd{word-spacing:-18.112000pt;}
.ws4{word-spacing:-18.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-12.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws2d{word-spacing:18.526784pt;}
.ws25{word-spacing:19.574830pt;}
.ws1c{word-spacing:20.560325pt;}
.ws2b{word-spacing:22.524002pt;}
.ws23{word-spacing:23.631747pt;}
.ws1b{word-spacing:24.870457pt;}
.ws24{word-spacing:28.690047pt;}
.ws13{word-spacing:28.755330pt;}
.ws2c{word-spacing:33.296350pt;}
.ws27{word-spacing:36.765023pt;}
.wsb{word-spacing:41.439049pt;}
.ws2e{word-spacing:41.815734pt;}
.ws20{word-spacing:54.290387pt;}
.ws19{word-spacing:59.513832pt;}
.ws15{word-spacing:67.144682pt;}
.ws28{word-spacing:74.980485pt;}
.ws17{word-spacing:76.090744pt;}
.ws9{word-spacing:86.385670pt;}
.ws1f{word-spacing:87.976883pt;}
.ws2f{word-spacing:92.177273pt;}
.ws26{word-spacing:96.847498pt;}
.ws18{word-spacing:97.237469pt;}
.ws14{word-spacing:99.722015pt;}
.ws1d{word-spacing:101.795175pt;}
.ws8{word-spacing:105.858929pt;}
.ws6{word-spacing:108.215325pt;}
.wse{word-spacing:144.644493pt;}
.ws29{word-spacing:186.704217pt;}
.ws30{word-spacing:189.508124pt;}
.ws21{word-spacing:196.103093pt;}
.ws1e{word-spacing:198.084157pt;}
.ws10{word-spacing:278.344161pt;}
.wsa{word-spacing:281.019744pt;}
.ws2a{word-spacing:557.349976pt;}
.ws22{word-spacing:585.301052pt;}
.ws1a{word-spacing:614.833840pt;}
._14{margin-left:-218.738367pt;}
._17{margin-left:-216.602613pt;}
._0{margin-left:-175.087787pt;}
._2e{margin-left:-3.973973pt;}
._1d{margin-left:-2.039253pt;}
._1{margin-left:-1.000960pt;}
._4{width:0.925227pt;}
._3{width:2.118187pt;}
._1e{width:3.067733pt;}
._44{width:4.262613pt;}
._5{width:5.713707pt;}
._6{width:7.572053pt;}
._8{width:9.434880pt;}
._b{width:10.558933pt;}
._9{width:11.456640pt;}
._a{width:12.444587pt;}
._13{width:13.389013pt;}
._1c{width:15.253547pt;}
._18{width:16.480000pt;}
._22{width:17.808640pt;}
._7{width:19.795840pt;}
._53{width:20.730880pt;}
._e{width:23.284053pt;}
._d{width:24.201813pt;}
._21{width:26.432640pt;}
._11{width:28.753920pt;}
._12{width:30.054400pt;}
._f{width:31.252480pt;}
._10{width:32.300800pt;}
._54{width:33.770880pt;}
._55{width:35.073920pt;}
._51{width:39.520000pt;}
._52{width:46.587947pt;}
._3f{width:48.640000pt;}
._49{width:50.447980pt;}
._3b{width:53.865004pt;}
._c{width:55.111680pt;}
._2d{width:60.532904pt;}
._4e{width:67.909796pt;}
._1b{width:77.280000pt;}
._45{width:79.761388pt;}
._3d{width:81.789937pt;}
._3a{width:82.885032pt;}
._37{width:83.784019pt;}
._34{width:85.835762pt;}
._38{width:87.058090pt;}
._1f{width:89.182080pt;}
._20{width:91.104853pt;}
._16{width:92.308092pt;}
._31{width:95.406066pt;}
._4a{width:99.483610pt;}
._25{width:101.619472pt;}
._4b{width:103.332485pt;}
._24{width:104.920000pt;}
._3c{width:108.007609pt;}
._23{width:111.020253pt;}
._33{width:113.828052pt;}
._15{width:117.354209pt;}
._28{width:118.880000pt;}
._2c{width:121.067912pt;}
._2a{width:123.101849pt;}
._46{width:124.409327pt;}
._26{width:126.034475pt;}
._39{width:130.768251pt;}
._43{width:133.120000pt;}
._30{width:137.078637pt;}
._36{width:139.303378pt;}
._1a{width:141.280000pt;}
._47{width:150.059570pt;}
._42{width:151.360000pt;}
._27{width:163.771113pt;}
._4c{width:166.545349pt;}
._19{width:170.240000pt;}
._40{width:226.620599pt;}
._2b{width:231.244087pt;}
._41{width:242.554321pt;}
._29{width:250.148320pt;}
._32{width:280.008619pt;}
._2f{width:305.072923pt;}
._35{width:306.032527pt;}
._4f{width:331.329349pt;}
._3e{width:347.761229pt;}
._2{width:567.859627pt;}
._50{width:850.340238pt;}
._4d{width:1060.658375pt;}
._48{width:1075.775626pt;}
.fs22{font-size:37.665555pt;}
.fs7{font-size:39.367396pt;}
.fs1c{font-size:39.517971pt;}
.fs18{font-size:39.880727pt;}
.fs14{font-size:41.589392pt;}
.fse{font-size:41.800079pt;}
.fs4{font-size:42.537471pt;}
.fs8{font-size:43.187960pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs23{font-size:65.235154pt;}
.fs11{font-size:67.938164pt;}
.fs6{font-size:68.073814pt;}
.fs1d{font-size:68.443462pt;}
.fs24{font-size:68.851800pt;}
.fs19{font-size:69.071739pt;}
.fs1e{font-size:71.797891pt;}
.fs15{font-size:71.889248pt;}
.fsd{font-size:72.280391pt;}
.fs12{font-size:72.282500pt;}
.fs3{font-size:73.704371pt;}
.fs9{font-size:74.799728pt;}
.fs2{font-size:74.880000pt;}
.fsf{font-size:75.345641pt;}
.fs16{font-size:75.845344pt;}
.fs1f{font-size:76.442296pt;}
.fsa{font-size:77.903942pt;}
.fs10{font-size:77.933305pt;}
.fs20{font-size:85.428135pt;}
.fs1a{font-size:89.629546pt;}
.fs17{font-size:90.452301pt;}
.fsc{font-size:94.773492pt;}
.fs21{font-size:102.902315pt;}
.fs1b{font-size:107.963117pt;}
.fs13{font-size:113.332675pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:3.614854pt;}
.y8c{bottom:3.792635pt;}
.y82{bottom:3.793166pt;}
.y78{bottom:4.027039pt;}
.y2e{bottom:4.095768pt;}
.y6e{bottom:4.465154pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y34{bottom:5.828580pt;}
.y4c{bottom:6.224912pt;}
.y41{bottom:7.216403pt;}
.y2d{bottom:8.821508pt;}
.y6f{bottom:8.828005pt;}
.y4a{bottom:9.554467pt;}
.y33{bottom:10.225485pt;}
.y4b{bottom:10.857362pt;}
.ya1{bottom:12.103077pt;}
.y8e{bottom:12.698314pt;}
.y80{bottom:12.814879pt;}
.y76{bottom:13.435282pt;}
.y74{bottom:15.787269pt;}
.ya2{bottom:16.299423pt;}
.y6d{bottom:16.429223pt;}
.y3f{bottom:16.986270pt;}
.y8f{bottom:17.101039pt;}
.y84{bottom:17.258018pt;}
.y79{bottom:18.032884pt;}
.y40{bottom:21.797410pt;}
.y2{bottom:23.200000pt;}
.y9d{bottom:23.560707pt;}
.y4{bottom:25.760000pt;}
.ya0{bottom:25.820576pt;}
.y83{bottom:25.834610pt;}
.y75{bottom:26.050619pt;}
.y8d{bottom:27.090449pt;}
.y9b{bottom:27.982772pt;}
.y9a{bottom:28.821693pt;}
.y3e{bottom:28.902127pt;}
.y7f{bottom:29.047644pt;}
.y77{bottom:29.328922pt;}
.y89{bottom:29.358983pt;}
.y9e{bottom:30.015182pt;}
.y88{bottom:30.239163pt;}
.y81{bottom:30.277324pt;}
.y8b{bottom:31.491348pt;}
.y3d{bottom:33.713267pt;}
.y9c{bottom:37.277805pt;}
.y8a{bottom:39.111151pt;}
.y3c{bottom:42.077532pt;}
.y42{bottom:70.880000pt;}
.y43{bottom:77.760000pt;}
.y72{bottom:90.080000pt;}
.ya7{bottom:106.560000pt;}
.y1d{bottom:112.000000pt;}
.y3b{bottom:113.213333pt;}
.y3a{bottom:131.872000pt;}
.y71{bottom:136.346667pt;}
.ya6{bottom:138.746667pt;}
.y1c{bottom:144.186667pt;}
.ya5{bottom:170.906667pt;}
.y1b{bottom:176.506667pt;}
.y6c{bottom:177.813333pt;}
.y70{bottom:185.786667pt;}
.y39{bottom:196.186667pt;}
.ya4{bottom:203.066667pt;}
.y1a{bottom:208.666667pt;}
.y38{bottom:228.346667pt;}
.y6b{bottom:233.626667pt;}
.y19{bottom:240.826667pt;}
.y99{bottom:244.213333pt;}
.ya3{bottom:260.186667pt;}
.yc4{bottom:264.506667pt;}
.y6a{bottom:265.786667pt;}
.y5b{bottom:269.146667pt;}
.y37{bottom:273.946667pt;}
.y18{bottom:286.426667pt;}
.y5a{bottom:301.306667pt;}
.yc3{bottom:310.106667pt;}
.y69{bottom:311.226667pt;}
.y36{bottom:319.386667pt;}
.y98{bottom:321.466667pt;}
.y17{bottom:331.866667pt;}
.y59{bottom:333.466667pt;}
.yc2{bottom:334.746667pt;}
.y97{bottom:353.826667pt;}
.y68{bottom:356.866667pt;}
.yc1{bottom:359.426667pt;}
.y32{bottom:360.546667pt;}
.y16{bottom:364.226667pt;}
.y58{bottom:365.666667pt;}
.y35{bottom:369.826667pt;}
.yc0{bottom:384.226667pt;}
.y96{bottom:399.266667pt;}
.y67{bottom:402.466667pt;}
.ybf{bottom:408.866667pt;}
.y15{bottom:409.346667pt;}
.y57{bottom:411.266667pt;}
.y31{bottom:416.226667pt;}
.ybe{bottom:433.506667pt;}
.y56{bottom:443.426667pt;}
.y95{bottom:444.866667pt;}
.y66{bottom:447.906667pt;}
.y14{bottom:455.266667pt;}
.ybd{bottom:458.306667pt;}
.y30{bottom:461.826667pt;}
.ybc{bottom:482.946667pt;}
.y93{bottom:485.813333pt;}
.y64{bottom:489.013333pt;}
.y55{bottom:489.026667pt;}
.y65{bottom:497.026667pt;}
.y2c{bottom:498.946667pt;}
.y13{bottom:500.706667pt;}
.y94{bottom:501.826667pt;}
.y2f{bottom:504.226667pt;}
.ybb{bottom:507.586667pt;}
.y92{bottom:510.466667pt;}
.y54{bottom:521.186667pt;}
.yba{bottom:532.226667pt;}
.y12{bottom:532.866667pt;}
.y63{bottom:544.706667pt;}
.y52{bottom:553.506667pt;}
.y2b{bottom:554.786667pt;}
.yb9{bottom:557.026667pt;}
.y53{bottom:560.386667pt;}
.y91{bottom:560.866667pt;}
.y11{bottom:578.173333pt;}
.yb8{bottom:581.693333pt;}
.y2a{bottom:586.973333pt;}
.y62{bottom:590.333333pt;}
.y50{bottom:595.946667pt;}
.y87{bottom:601.813333pt;}
.yb7{bottom:606.333333pt;}
.y51{bottom:614.653333pt;}
.y90{bottom:617.853333pt;}
.y61{bottom:622.493333pt;}
.y10{bottom:624.093333pt;}
.yb6{bottom:630.973333pt;}
.y29{bottom:632.573333pt;}
.y60{bottom:654.653333pt;}
.yb5{bottom:655.773333pt;}
.y28{bottom:664.733333pt;}
.yf{bottom:669.533333pt;}
.y4f{bottom:678.813333pt;}
.yb4{bottom:680.413333pt;}
.y86{bottom:681.693333pt;}
.y5f{bottom:699.933333pt;}
.y27{bottom:700.253333pt;}
.ye{bottom:701.693333pt;}
.yb3{bottom:705.053333pt;}
.y7e{bottom:722.613333pt;}
.y4e{bottom:724.573333pt;}
.yb2{bottom:729.853333pt;}
.y26{bottom:734.813333pt;}
.y85{bottom:738.653333pt;}
.y5e{bottom:745.693333pt;}
.yd{bottom:746.973333pt;}
.yb1{bottom:754.493333pt;}
.y49{bottom:766.013333pt;}
.y25{bottom:769.373333pt;}
.y4d{bottom:775.293333pt;}
.yb0{bottom:779.133333pt;}
.y5d{bottom:791.333333pt;}
.yc{bottom:792.933333pt;}
.y7d{bottom:800.133333pt;}
.yaf{bottom:803.813333pt;}
.y24{bottom:803.973333pt;}
.y48{bottom:825.093333pt;}
.yae{bottom:828.613333pt;}
.y5c{bottom:832.293333pt;}
.yb{bottom:838.373333pt;}
.yad{bottom:853.253333pt;}
.y47{bottom:857.253333pt;}
.ya{bottom:870.533333pt;}
.y23{bottom:872.933333pt;}
.y7c{bottom:877.893333pt;}
.yac{bottom:902.693333pt;}
.y46{bottom:902.853333pt;}
.y22{bottom:907.493333pt;}
.y9{bottom:915.813333pt;}
.y7b{bottom:923.333333pt;}
.yab{bottom:927.333333pt;}
.y21{bottom:942.053333pt;}
.y45{bottom:948.293333pt;}
.yaa{bottom:951.973333pt;}
.y8{bottom:961.253333pt;}
.y73{bottom:964.413333pt;}
.y20{bottom:975.013333pt;}
.ya9{bottom:976.613333pt;}
.y7a{bottom:980.453333pt;}
.y7{bottom:993.573333pt;}
.y44{bottom:993.893333pt;}
.ya8{bottom:1001.413333pt;}
.y1f{bottom:1007.173333pt;}
.y6{bottom:1039.040000pt;}
.y1e{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.hd{height:27.199287pt;}
.h8{height:27.200146pt;}
.h45{height:27.438748pt;}
.h25{height:29.535294pt;}
.h18{height:29.986953pt;}
.h1b{height:30.399894pt;}
.h4f{height:36.948291pt;}
.h4c{height:36.966682pt;}
.hf{height:38.617724pt;}
.h27{height:38.636947pt;}
.h42{height:38.765432pt;}
.h3f{height:38.784728pt;}
.h39{height:39.121279pt;}
.h36{height:39.140752pt;}
.h30{height:40.797407pt;}
.h2e{height:40.817714pt;}
.h1e{height:41.004082pt;}
.ha{height:41.727431pt;}
.h15{height:42.365533pt;}
.h13{height:42.386621pt;}
.h52{height:45.295112pt;}
.h1a{height:45.970625pt;}
.h2c{height:46.400033pt;}
.hc{height:47.085938pt;}
.h46{height:47.109375pt;}
.h2b{height:47.171909pt;}
.h40{height:47.522755pt;}
.h51{height:47.806279pt;}
.h37{height:47.958991pt;}
.h34{height:48.799022pt;}
.h49{height:48.799257pt;}
.h44{height:49.851856pt;}
.h48{height:49.915288pt;}
.h4d{height:50.082856pt;}
.h21{height:50.186873pt;}
.h2a{height:50.188338pt;}
.h26{height:51.175594pt;}
.h3c{height:51.199236pt;}
.h19{height:51.936139pt;}
.h20{height:52.315186pt;}
.h32{height:52.662148pt;}
.h47{height:53.076633pt;}
.h17{height:54.091507pt;}
.h22{height:54.111894pt;}
.h23{height:54.256042pt;}
.h12{height:54.399942pt;}
.h2{height:58.563750pt;}
.h4a{height:59.315824pt;}
.h3d{height:62.233015pt;}
.h3{height:62.781250pt;}
.h35{height:62.804283pt;}
.h50{height:63.992883pt;}
.h4e{height:64.024736pt;}
.h1c{height:65.804641pt;}
.h7{height:65.995312pt;}
.h29{height:66.644420pt;}
.h10{height:66.777487pt;}
.he{height:66.810726pt;}
.h43{height:67.140095pt;}
.h41{height:67.173515pt;}
.h3a{height:67.756408pt;}
.h38{height:67.790134pt;}
.h33{height:68.305698pt;}
.h31{height:70.520263pt;}
.h2f{height:70.555365pt;}
.h1f{height:70.903958pt;}
.h1d{height:70.939251pt;}
.h4b{height:71.448775pt;}
.hb{height:72.300821pt;}
.h9{height:72.336810pt;}
.h16{height:73.375319pt;}
.h14{height:73.411843pt;}
.h6{height:73.490625pt;}
.h3e{height:74.962672pt;}
.h5{height:75.465000pt;}
.h54{height:76.964840pt;}
.h2d{height:78.690949pt;}
.h11{height:81.645938pt;}
.h24{height:81.669375pt;}
.h53{height:81.773938pt;}
.h28{height:84.128996pt;}
.h3b{height:100.036214pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w3{width:67.200458pt;}
.w4{width:85.601925pt;}
.w6{width:101.597131pt;}
.w7{width:117.599653pt;}
.w5{width:118.397361pt;}
.wb{width:129.601054pt;}
.wd{width:141.600671pt;}
.w8{width:154.395174pt;}
.w9{width:175.994946pt;}
.wa{width:225.605438pt;}
.wc{width:266.392973pt;}
.we{width:410.186113pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.943171pt;}
.x43{left:2.515494pt;}
.x40{left:9.022382pt;}
.x16{left:10.307515pt;}
.x27{left:11.341959pt;}
.x4e{left:12.245726pt;}
.x49{left:15.558610pt;}
.x3d{left:17.376165pt;}
.x4{left:18.266667pt;}
.x23{left:21.806444pt;}
.x36{left:22.759056pt;}
.x4d{left:28.598945pt;}
.x33{left:29.604906pt;}
.x38{left:31.065180pt;}
.x3f{left:32.501158pt;}
.x1e{left:33.892702pt;}
.x4f{left:37.202023pt;}
.x42{left:39.947231pt;}
.x57{left:41.491554pt;}
.x41{left:49.304402pt;}
.x22{left:50.385533pt;}
.x48{left:52.872845pt;}
.x1d{left:55.472721pt;}
.x15{left:59.318527pt;}
.x20{left:62.211871pt;}
.x45{left:65.655277pt;}
.x21{left:66.910520pt;}
.x53{left:67.905865pt;}
.x3c{left:70.404995pt;}
.x1f{left:73.358935pt;}
.x28{left:77.087116pt;}
.x1a{left:79.343031pt;}
.x47{left:81.827849pt;}
.x1{left:85.152000pt;}
.x32{left:89.272757pt;}
.x4a{left:90.962543pt;}
.x3a{left:97.766828pt;}
.x2{left:99.232000pt;}
.x37{left:104.555814pt;}
.x56{left:108.152048pt;}
.x3b{left:121.849296pt;}
.x5{left:122.912000pt;}
.x55{left:128.405911pt;}
.x13{left:133.152000pt;}
.x35{left:134.502832pt;}
.x6{left:137.946667pt;}
.x31{left:147.666479pt;}
.x25{left:151.386667pt;}
.x46{left:173.591212pt;}
.x2f{left:176.666667pt;}
.x2d{left:179.066667pt;}
.x9{left:182.906667pt;}
.x54{left:190.681185pt;}
.x11{left:193.946667pt;}
.x2b{left:195.066667pt;}
.x51{left:208.772251pt;}
.x50{left:210.813333pt;}
.x2e{left:223.866667pt;}
.x52{left:230.684800pt;}
.x10{left:234.906667pt;}
.xa{left:275.106667pt;}
.x44{left:276.546667pt;}
.xd{left:281.506667pt;}
.xf{left:293.506667pt;}
.x12{left:301.186667pt;}
.x8{left:302.786667pt;}
.xe{left:303.746667pt;}
.x30{left:323.746667pt;}
.xb{left:327.586667pt;}
.xc{left:345.186667pt;}
.x7{left:358.946667pt;}
.x4c{left:362.146667pt;}
.x26{left:370.946667pt;}
.x3{left:390.146667pt;}
.x14{left:401.546667pt;}
.x19{left:418.146667pt;}
.x1c{left:422.813333pt;}
.x18{left:468.733333pt;}
.x29{left:472.573333pt;}
.x34{left:478.173333pt;}
.x2a{left:488.573333pt;}
.x39{left:499.773333pt;}
.x1b{left:503.773333pt;}
.x2c{left:526.173333pt;}
.x24{left:541.213333pt;}
.x4b{left:542.973333pt;}
.x3e{left:549.373333pt;}
.x58{left:621.093333pt;}
}




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