
    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_ab2003afd03f2fa2090781a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0521c6c66ce3eba3c10fb119.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_14efcc215aa2c4ef8801b400.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_955e7db3467d32c1b5dccfd5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1c516057222ac0b2bf4a8467.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ab0ec590956a08ee291df195.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a7d4fc8536a2ccca922a50ef.woff2')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_a3f1ba69ef51f0f85ee36714.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_6a52338575b96e04e6888815.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.181152;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_9c362d72e489532adeb0a175.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_25cb89da6d0b9e694d9a06d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{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);}
.v11{vertical-align:-197.460000px;}
.v15{vertical-align:-172.920000px;}
.v14{vertical-align:-161.460000px;}
.v10{vertical-align:-158.400000px;}
.ve{vertical-align:-115.200000px;}
.v5{vertical-align:-87.120000px;}
.v13{vertical-align:-62.208000px;}
.v12{vertical-align:-38.880000px;}
.v7{vertical-align:-29.088000px;}
.vf{vertical-align:-27.336000px;}
.v9{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:19.440000px;}
.v4{vertical-align:27.120000px;}
.v1{vertical-align:33.840000px;}
.v6{vertical-align:35.160000px;}
.v8{vertical-align:46.656060px;}
.vd{vertical-align:73.296000px;}
.v2{vertical-align:86.400000px;}
.va{vertical-align:93.024000px;}
.v3{vertical-align:137.220000px;}
.vb{vertical-align:144.000000px;}
.ls4e{letter-spacing:-2.526000px;}
.ls24{letter-spacing:-1.884000px;}
.ls43{letter-spacing:-1.800000px;}
.ls32{letter-spacing:-1.740000px;}
.ls54{letter-spacing:-1.656000px;}
.ls4c{letter-spacing:-1.260000px;}
.ls4d{letter-spacing:-0.990000px;}
.ls5f{letter-spacing:-0.774000px;}
.ls1e{letter-spacing:-0.642000px;}
.ls3d{letter-spacing:-0.618000px;}
.ls33{letter-spacing:-0.612000px;}
.ls6a{letter-spacing:-0.570600px;}
.ls64{letter-spacing:-0.498600px;}
.ls66{letter-spacing:-0.476400px;}
.ls59{letter-spacing:-0.466800px;}
.ls21{letter-spacing:-0.442800px;}
.ls2e{letter-spacing:-0.391800px;}
.ls65{letter-spacing:-0.380400px;}
.ls22{letter-spacing:-0.363000px;}
.ls29{letter-spacing:-0.319800px;}
.ls31{letter-spacing:-0.298800px;}
.ls2d{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.219000px;}
.ls63{letter-spacing:-0.154800px;}
.ls69{letter-spacing:-0.088200px;}
.ls61{letter-spacing:-0.075000px;}
.ls2a{letter-spacing:-0.072000px;}
.ls3a{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.034560px;}
.ls51{letter-spacing:0.040896px;}
.ls50{letter-spacing:0.120960px;}
.ls52{letter-spacing:0.121200px;}
.ls60{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.149400px;}
.ls44{letter-spacing:0.181200px;}
.ls2c{letter-spacing:0.247968px;}
.ls37{letter-spacing:0.288000px;}
.lse{letter-spacing:0.288288px;}
.ls12{letter-spacing:0.319800px;}
.ls38{letter-spacing:0.320400px;}
.ls2b{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.351600px;}
.ls48{letter-spacing:0.386496px;}
.ls4b{letter-spacing:0.447600px;}
.ls26{letter-spacing:0.496200px;}
.ls49{letter-spacing:0.498528px;}
.ls13{letter-spacing:0.509400px;}
.ls3e{letter-spacing:0.524400px;}
.ls3c{letter-spacing:0.570528px;}
.ls27{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.597600px;}
.ls5b{letter-spacing:0.610560px;}
.ls57{letter-spacing:0.618000px;}
.ls3{letter-spacing:0.642000px;}
.ls1f{letter-spacing:0.648000px;}
.ls58{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.730560px;}
.ls39{letter-spacing:1.440000px;}
.ls46{letter-spacing:1.978560px;}
.ls5d{letter-spacing:4.930560px;}
.ls5c{letter-spacing:5.050560px;}
.ls18{letter-spacing:6.258528px;}
.ls19{letter-spacing:6.282528px;}
.ls1a{letter-spacing:7.698528px;}
.ls5a{letter-spacing:7.770528px;}
.ls62{letter-spacing:7.920000px;}
.ls41{letter-spacing:9.178560px;}
.ls67{letter-spacing:9.210528px;}
.ls4a{letter-spacing:10.618560px;}
.ls4f{letter-spacing:13.570560px;}
.ls5e{letter-spacing:16.590528px;}
.ls45{letter-spacing:17.818560px;}
.ls6b{letter-spacing:23.650560px;}
.ls2f{letter-spacing:25.050528px;}
.ls25{letter-spacing:33.367968px;}
.ls53{letter-spacing:48.130560px;}
.ls47{letter-spacing:58.138560px;}
.ls6{letter-spacing:69.318048px;}
.ls7{letter-spacing:69.384000px;}
.ls11{letter-spacing:74.594208px;}
.ls15{letter-spacing:74.618208px;}
.ls10{letter-spacing:74.660160px;}
.ls14{letter-spacing:74.684160px;}
.ls17{letter-spacing:74.786208px;}
.ls16{letter-spacing:74.852160px;}
.ls28{letter-spacing:84.876000px;}
.lsc{letter-spacing:85.830048px;}
.lsd{letter-spacing:85.896000px;}
.ls8{letter-spacing:92.109600px;}
.ls5{letter-spacing:92.160000px;}
.lsf{letter-spacing:102.189600px;}
.lsa{letter-spacing:102.240000px;}
.ls2{letter-spacing:102.333600px;}
.ls1{letter-spacing:102.384000px;}
.lsb{letter-spacing:112.320000px;}
.ls36{letter-spacing:118.045440px;}
.ls68{letter-spacing:176.071968px;}
.ls55{letter-spacing:176.112000px;}
.ls1c{letter-spacing:912.081408px;}
.ls40{letter-spacing:926.361408px;}
.ls3f{letter-spacing:1164.081408px;}
.ls1b{letter-spacing:1391.781408px;}
.ls9{letter-spacing:2700.658560px;}
.ls42{letter-spacing:2711.821440px;}
.ls1d{letter-spacing:2783.101440px;}
.ls30{letter-spacing:2844.261408px;}
.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;}
}
.ws9{word-spacing:-67.402872px;}
.ws8{word-spacing:-60.407832px;}
.ws21{word-spacing:-53.602992px;}
.ws22{word-spacing:-44.674560px;}
.ws24{word-spacing:-43.269120px;}
.ws23{word-spacing:-43.165560px;}
.ws2{word-spacing:-40.752000px;}
.ws1{word-spacing:-40.714032px;}
.ws17{word-spacing:-40.608000px;}
.ws14{word-spacing:-40.568232px;}
.ws15{word-spacing:-40.408032px;}
.ws11{word-spacing:-40.072032px;}
.ws16{word-spacing:-40.032000px;}
.ws13{word-spacing:-40.000032px;}
.ws3b{word-spacing:-39.983832px;}
.ws12{word-spacing:-39.752232px;}
.ws19{word-spacing:-39.744000px;}
.ws1a{word-spacing:-39.680232px;}
.ws32{word-spacing:-37.495440px;}
.ws31{word-spacing:-37.487472px;}
.ws27{word-spacing:-37.353840px;}
.ws35{word-spacing:-36.973440px;}
.ws1b{word-spacing:-36.869472px;}
.ws1f{word-spacing:-36.829440px;}
.ws25{word-spacing:-36.797472px;}
.ws36{word-spacing:-36.754440px;}
.ws37{word-spacing:-36.714672px;}
.ws20{word-spacing:-36.610440px;}
.ws1c{word-spacing:-36.570672px;}
.ws39{word-spacing:-36.449040px;}
.ws3a{word-spacing:-36.393072px;}
.ws38{word-spacing:-36.370872px;}
.ws33{word-spacing:-36.362640px;}
.ws3c{word-spacing:-36.298872px;}
.ws26{word-spacing:-36.251472px;}
.ws1e{word-spacing:-36.217440px;}
.ws34{word-spacing:-36.055440px;}
.ws30{word-spacing:-35.173440px;}
.ws1d{word-spacing:-35.129472px;}
.ws6{word-spacing:-33.226560px;}
.ws7{word-spacing:-30.064032px;}
.ws18{word-spacing:-30.024000px;}
.ws4{word-spacing:-29.449728px;}
.ws5{word-spacing:-29.399040px;}
.wsb{word-spacing:-27.509472px;}
.ws2a{word-spacing:-27.269040px;}
.wsf{word-spacing:-27.213072px;}
.wsc{word-spacing:-27.010872px;}
.ws29{word-spacing:-27.002640px;}
.ws2f{word-spacing:-26.821440px;}
.wse{word-spacing:-26.458440px;}
.wsd{word-spacing:-26.418672px;}
.wsa{word-spacing:-26.219472px;}
.ws2c{word-spacing:-25.831440px;}
.ws2b{word-spacing:-25.561440px;}
.ws28{word-spacing:-25.021440px;}
.ws10{word-spacing:-24.977472px;}
.ws2e{word-spacing:-24.335472px;}
.ws2d{word-spacing:-17.614080px;}
.ws3{word-spacing:-0.083520px;}
.ws0{word-spacing:0.000000px;}
._30{margin-left:-19.339104px;}
._10{margin-left:-15.822144px;}
._f{margin-left:-14.481648px;}
._3d{margin-left:-13.285200px;}
._e{margin-left:-11.940192px;}
._3c{margin-left:-10.936320px;}
._c{margin-left:-9.890352px;}
._19{margin-left:-7.761984px;}
._2{margin-left:-5.564592px;}
._1{margin-left:-3.541104px;}
._4{margin-left:-2.491632px;}
._0{margin-left:-1.011744px;}
._3{width:1.149984px;}
._5{width:3.102432px;}
._a{width:4.162032px;}
._6{width:5.162112px;}
._7{width:6.506064px;}
._13{width:8.365872px;}
._14{width:9.682224px;}
._33{width:11.120256px;}
._1f{width:13.237248px;}
._1e{width:14.542416px;}
._2d{width:16.445664px;}
._2f{width:18.157824px;}
._20{width:19.837440px;}
._21{width:20.863344px;}
._3f{width:22.105824px;}
._3e{width:23.217888px;}
._1c{width:24.622416px;}
._1d{width:26.029344px;}
._2a{width:28.301520px;}
._29{width:30.637632px;}
._16{width:33.165216px;}
._15{width:34.215312px;}
._2e{width:35.908224px;}
._24{width:40.080768px;}
._23{width:41.423808px;}
._22{width:42.474240px;}
._3a{width:46.632576px;}
._39{width:48.115008px;}
._1b{width:50.976000px;}
._1a{width:52.248000px;}
._44{width:53.753784px;}
._43{width:54.901824px;}
._45{width:56.112432px;}
._32{width:57.365184px;}
._31{width:58.477824px;}
._38{width:62.275056px;}
._2c{width:63.701664px;}
._2b{width:65.546784px;}
._47{width:66.731088px;}
._46{width:68.231760px;}
._42{width:79.540368px;}
._3b{width:81.259104px;}
._4c{width:86.574048px;}
._40{width:100.609152px;}
._41{width:102.509712px;}
._4b{width:103.751328px;}
._4a{width:105.073920px;}
._27{width:118.309824px;}
._28{width:120.063888px;}
._49{width:126.826944px;}
._48{width:127.915248px;}
._18{width:166.851984px;}
._17{width:168.009456px;}
._35{width:184.170816px;}
._34{width:186.849648px;}
._b{width:326.493600px;}
._8{width:425.560848px;}
._9{width:642.658464px;}
._36{width:1253.263584px;}
._12{width:1282.648704px;}
._25{width:1962.292032px;}
._26{width:2135.243040px;}
._d{width:2338.584672px;}
._11{width:2364.785712px;}
._37{width:2777.085120px;}
.fc8{color:rgb(0,0,153);}
.fc7{color:rgb(93,163,30);}
.fc6{color:rgb(192,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(186,212,26);}
.fc4{color:rgb(85,85,85);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:60.480000px;}
.fs16{font-size:60.624000px;}
.fs1e{font-size:63.360000px;}
.fsc{font-size:72.000000px;}
.fsd{font-size:72.144000px;}
.fs2{font-size:83.520000px;}
.fsf{font-size:83.664000px;}
.fs1f{font-size:87.840000px;}
.fs20{font-size:87.984000px;}
.fs19{font-size:96.480000px;}
.fse{font-size:96.624000px;}
.fs13{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs10{font-size:119.520000px;}
.fs11{font-size:119.664000px;}
.fs17{font-size:132.480000px;}
.fs18{font-size:132.624000px;}
.fs5{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs1c{font-size:155.520000px;}
.fs1d{font-size:155.664000px;}
.fs8{font-size:168.480000px;}
.fs0{font-size:168.624000px;}
.fs4{font-size:172.800000px;}
.fs6{font-size:172.944000px;}
.fs1b{font-size:191.520000px;}
.fs1{font-size:191.664000px;}
.fs9{font-size:201.600000px;}
.fsa{font-size:201.744000px;}
.fs1a{font-size:216.000000px;}
.fsb{font-size:216.144000px;}
.fs14{font-size:240.624000px;}
.fs3{font-size:263.664000px;}
.yd6{bottom:-12.240000px;}
.yf6{bottom:-7.308000px;}
.y129{bottom:-6.984000px;}
.ybb{bottom:-0.648015px;}
.y0{bottom:0.000000px;}
.y1a{bottom:2.556000px;}
.y4{bottom:11.016000px;}
.yc4{bottom:15.696000px;}
.y10b{bottom:26.568000px;}
.y41{bottom:26.856000px;}
.y128{bottom:30.492000px;}
.yab{bottom:32.796000px;}
.y49{bottom:40.716000px;}
.yd5{bottom:42.156000px;}
.y8b{bottom:43.560000px;}
.yf5{bottom:44.892000px;}
.ye{bottom:46.836000px;}
.yc3{bottom:50.256000px;}
.yba{bottom:51.552000px;}
.y9c{bottom:55.008000px;}
.y10a{bottom:55.368000px;}
.y40{bottom:55.656000px;}
.ye0{bottom:56.880000px;}
.y19{bottom:57.996000px;}
.y98{bottom:60.696000px;}
.y11e{bottom:62.172000px;}
.ycc{bottom:62.352000px;}
.y78{bottom:64.620000px;}
.y101{bottom:66.960000px;}
.y127{bottom:70.092000px;}
.y28{bottom:71.280000px;}
.yf4{bottom:73.728000px;}
.ye9{bottom:75.060000px;}
.y34{bottom:77.760000px;}
.y65{bottom:79.632000px;}
.yb9{bottom:80.388000px;}
.y12e{bottom:80.892000px;}
.yd4{bottom:81.756000px;}
.y77{bottom:82.656000px;}
.y48{bottom:83.232000px;}
.yb8{bottom:84.384000px;}
.y11d{bottom:84.492000px;}
.y3f{bottom:84.852000px;}
.y109{bottom:86.364000px;}
.y8a{bottom:86.760000px;}
.y89{bottom:86.832000px;}
.y52{bottom:87.552000px;}
.yc2{bottom:93.492000px;}
.y5a{bottom:94.032000px;}
.y2a{bottom:94.035000px;}
.y39{bottom:94.110000px;}
.y2d{bottom:94.215000px;}
.yd{bottom:94.392000px;}
.y100{bottom:95.796000px;}
.ya6{bottom:99.792000px;}
.ya0{bottom:100.332000px;}
.y95{bottom:100.512000px;}
.y76{bottom:100.656000px;}
.yf3{bottom:102.528000px;}
.y20{bottom:103.212000px;}
.ydf{bottom:105.480000px;}
.ycb{bottom:105.552000px;}
.y6e{bottom:107.208000px;}
.y80{bottom:107.388000px;}
.y25{bottom:108.612000px;}
.yf2{bottom:109.620000px;}
.y126{bottom:109.728000px;}
.y115{bottom:112.392000px;}
.y61{bottom:112.752000px;}
.y18{bottom:113.472000px;}
.y3e{bottom:113.832000px;}
.ye8{bottom:114.660000px;}
.yaa{bottom:118.332000px;}
.y12d{bottom:120.528000px;}
.yd3{bottom:121.392000px;}
.y51{bottom:123.192000px;}
.y11c{bottom:124.128000px;}
.yff{bottom:124.596000px;}
.y88{bottom:125.712000px;}
.y108{bottom:125.964000px;}
.y1e{bottom:130.248000px;}
.yae{bottom:131.508000px;}
.y92{bottom:133.344000px;}
.y38{bottom:135.720000px;}
.yc1{bottom:136.692000px;}
.y59{bottom:137.268000px;}
.y64{bottom:138.708000px;}
.ya5{bottom:139.428000px;}
.yc{bottom:141.912000px;}
.y47{bottom:141.948000px;}
.y3d{bottom:142.668000px;}
.yb7{bottom:143.856000px;}
.yca{bottom:148.788000px;}
.y94{bottom:149.148000px;}
.y125{bottom:149.328000px;}
.y131{bottom:150.045000px;}
.y6d{bottom:150.450000px;}
.y114{bottom:151.995000px;}
.y9b{bottom:152.280000px;}
.yfe{bottom:153.390000px;}
.ye7{bottom:154.290000px;}
.ya9{bottom:154.365000px;}
.y60{bottom:155.985000px;}
.yf1{bottom:156.990000px;}
.y97{bottom:157.935000px;}
.y17{bottom:158.865000px;}
.y12c{bottom:160.170000px;}
.yd2{bottom:161.025000px;}
.yde{bottom:163.110000px;}
.y75{bottom:163.695000px;}
.y11b{bottom:163.770000px;}
.y87{bottom:164.625000px;}
.y107{bottom:165.600000px;}
.y3c{bottom:171.825000px;}
.yad{bottom:179.025000px;}
.yc0{bottom:179.925000px;}
.y58{bottom:180.465000px;}
.y91{bottom:181.980000px;}
.yfd{bottom:182.235000px;}
.y124{bottom:184.650000px;}
.ya4{bottom:186.945000px;}
.yb{bottom:189.465000px;}
.y133{bottom:189.690000px;}
.y63{bottom:190.545000px;}
.y113{bottom:191.625000px;}
.yc9{bottom:192.030000px;}
.y130{bottom:193.290000px;}
.y6c{bottom:193.680000px;}
.y46{bottom:193.830000px;}
.ye6{bottom:193.935000px;}
.y50{bottom:194.550000px;}
.y24{bottom:195.090000px;}
.yb6{bottom:196.095000px;}
.y93{bottom:197.790000px;}
.y5f{bottom:199.230000px;}
.y12b{bottom:199.770000px;}
.y3b{bottom:200.625000px;}
.y11a{bottom:203.370000px;}
.y106{bottom:205.200000px;}
.y123{bottom:206.970000px;}
.yf0{bottom:209.235000px;}
.yfc{bottom:211.035000px;}
.y86{bottom:211.470000px;}
.y16{bottom:212.910000px;}
.y23{bottom:216.690000px;}
.ydd{bottom:220.755000px;}
.ya8{bottom:221.910000px;}
.ybf{bottom:223.170000px;}
.y1d{bottom:224.790000px;}
.yb5{bottom:224.895000px;}
.ya3{bottom:226.590000px;}
.yb4{bottom:228.885000px;}
.y3a{bottom:229.830000px;}
.y4f{bottom:230.190000px;}
.y90{bottom:230.610000px;}
.y112{bottom:231.270000px;}
.y57{bottom:232.350000px;}
.y132{bottom:232.920000px;}
.y3{bottom:233.280000px;}
.ye5{bottom:233.535000px;}
.yc8{bottom:235.230000px;}
.y12f{bottom:236.520000px;}
.y6b{bottom:236.880000px;}
.ya{bottom:237.030000px;}
.yef{bottom:238.065000px;}
.y22{bottom:238.290000px;}
.y12a{bottom:239.400000px;}
.yfb{bottom:239.865000px;}
.yd1{bottom:240.270000px;}
.y62{bottom:242.430000px;}
.y119{bottom:243.000000px;}
.y105{bottom:244.830000px;}
.yee{bottom:245.130000px;}
.y45{bottom:245.670000px;}
.y122{bottom:246.600000px;}
.y9e{bottom:246.675000px;}
.y85{bottom:247.110000px;}
.yd7{bottom:248.910000px;}
.y8c{bottom:249.090000px;}
.y9a{bottom:250.950000px;}
.y5e{bottom:251.070000px;}
.y96{bottom:255.210000px;}
.y33{bottom:258.630000px;}
.y15{bottom:260.460000px;}
.y7f{bottom:262.440000px;}
.y7d{bottom:264.570000px;}
.yac{bottom:266.220000px;}
.ybe{bottom:266.370000px;}
.y4e{bottom:268.020000px;}
.y37{bottom:268.050000px;}
.yfa{bottom:268.665000px;}
.y111{bottom:270.870000px;}
.yb3{bottom:272.340000px;}
.ye4{bottom:273.165000px;}
.ya2{bottom:274.140000px;}
.y56{bottom:275.580000px;}
.yc7{bottom:278.460000px;}
.yd0{bottom:279.870000px;}
.y118{bottom:282.630000px;}
.y9d{bottom:282.675000px;}
.y9{bottom:284.580000px;}
.y121{bottom:286.230000px;}
.y32{bottom:287.820000px;}
.y84{bottom:290.700000px;}
.y2{bottom:290.910000px;}
.y5d{bottom:294.300000px;}
.y8f{bottom:295.455000px;}
.y36{bottom:296.850000px;}
.y11{bottom:296.970000px;}
.y44{bottom:297.540000px;}
.y21{bottom:297.720000px;}
.ydc{bottom:298.365000px;}
.y6a{bottom:301.710000px;}
.yed{bottom:304.410000px;}
.y14{bottom:307.980000px;}
.y2c{bottom:309.600000px;}
.y110{bottom:310.500000px;}
.ye3{bottom:312.810000px;}
.y4d{bottom:313.380000px;}
.ya1{bottom:313.740000px;}
.y31{bottom:316.620000px;}
.y74{bottom:316.770000px;}
.y55{bottom:318.780000px;}
.y1c{bottom:319.350000px;}
.ycf{bottom:319.500000px;}
.yc6{bottom:321.690000px;}
.y104{bottom:324.075000px;}
.yb2{bottom:324.570000px;}
.y120{bottom:325.830000px;}
.y35{bottom:326.055000px;}
.yf9{bottom:326.310000px;}
.y83{bottom:326.370000px;}
.ya7{bottom:329.970000px;}
.y8{bottom:332.100000px;}
.y73{bottom:334.800000px;}
.y29{bottom:338.760000px;}
.y4c{bottom:342.570000px;}
.y8e{bottom:344.055000px;}
.y69{bottom:344.955000px;}
.y30{bottom:345.810000px;}
.y5c{bottom:346.170000px;}
.y1f{bottom:346.350000px;}
.ydb{bottom:346.965000px;}
.y43{bottom:349.410000px;}
.y10f{bottom:350.130000px;}
.y10{bottom:352.440000px;}
.y72{bottom:352.800000px;}
.ybd{bottom:352.830000px;}
.yb1{bottom:353.370000px;}
.ye2{bottom:353.850000px;}
.y68{bottom:353.880000px;}
.yf8{bottom:355.140000px;}
.y13{bottom:355.530000px;}
.yec{bottom:356.655000px;}
.y9f{bottom:356.970000px;}
.yb0{bottom:357.375000px;}
.y99{bottom:357.585000px;}
.yce{bottom:359.130000px;}
.y54{bottom:362.010000px;}
.y117{bottom:362.595000px;}
.yeb{bottom:363.705000px;}
.yc5{bottom:364.890000px;}
.y11f{bottom:365.475000px;}
.yd9{bottom:368.250000px;}
.y82{bottom:370.650000px;}
.y2f{bottom:374.610000px;}
.y4b{bottom:378.210000px;}
.y10d{bottom:378.870000px;}
.y7{bottom:379.650000px;}
.yf7{bottom:383.940000px;}
.y67{bottom:386.310000px;}
.y10e{bottom:389.730000px;}
.y7e{bottom:390.750000px;}
.y27{bottom:392.295000px;}
.y8d{bottom:392.685000px;}
.ybc{bottom:396.030000px;}
.ycd{bottom:398.730000px;}
.y5b{bottom:399.495000px;}
.ye1{bottom:400.680000px;}
.y42{bottom:401.295000px;}
.y103{bottom:403.305000px;}
.y2e{bottom:403.815000px;}
.yd8{bottom:404.250000px;}
.y12{bottom:404.535000px;}
.yda{bottom:404.610000px;}
.y53{bottom:405.255000px;}
.y116{bottom:405.795000px;}
.yf{bottom:407.910000px;}
.y81{bottom:409.575000px;}
.yaf{bottom:409.605000px;}
.y10c{bottom:412.020000px;}
.y26{bottom:413.895000px;}
.y4a{bottom:414.615000px;}
.yea{bottom:415.950000px;}
.y6{bottom:427.215000px;}
.y7c{bottom:428.475000px;}
.y2b{bottom:432.795000px;}
.y102{bottom:440.790000px;}
.y70{bottom:476.610000px;}
.y7b{bottom:477.105000px;}
.y6f{bottom:494.640000px;}
.y5{bottom:500.835000px;}
.y66{bottom:502.995000px;}
.y1b{bottom:505.155000px;}
.y7a{bottom:509.550000px;}
.y1{bottom:515.235000px;}
.y79{bottom:558.150000px;}
.y71{bottom:573.405000px;}
.h20{height:59.357813px;}
.h21{height:59.499141px;}
.h2c{height:63.078750px;}
.h11{height:68.349375px;}
.h4{height:68.471719px;}
.hb{height:70.628906px;}
.hc{height:70.664062px;}
.hd{height:70.805391px;}
.ha{height:72.562500px;}
.h12{height:81.399375px;}
.h14{height:81.539719px;}
.h2b{height:88.659070px;}
.h24{height:100.625625px;}
.hf{height:100.775813px;}
.h1c{height:112.640625px;}
.h1b{height:112.790813px;}
.h1a{height:124.655625px;}
.h19{height:124.805812px;}
.h1f{height:129.093750px;}
.h22{height:138.172500px;}
.h23{height:138.322688px;}
.h6{height:150.187500px;}
.h7{height:150.337688px;}
.h26{height:151.775625px;}
.he{height:157.064062px;}
.h29{height:162.202500px;}
.h2a{height:162.352687px;}
.h8{height:175.719375px;}
.h2{height:175.869563px;}
.h17{height:193.680000px;}
.h27{height:199.749375px;}
.h3{height:199.899562px;}
.h10{height:202.680000px;}
.h13{height:203.040000px;}
.h25{height:225.281250px;}
.h9{height:225.431438px;}
.h1d{height:250.963313px;}
.h28{height:268.805813px;}
.h5{height:274.993313px;}
.h1e{height:287.407500px;}
.h18{height:367.560000px;}
.h16{height:512.640000px;}
.h15{height:529.920000px;}
.h1{height:607.500000px;}
.h0{height:607.680000px;}
.w1{width:319.320000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:8.244000px;}
.x40{left:30.744000px;}
.x58{left:45.756000px;}
.x42{left:48.312000px;}
.x30{left:52.308000px;}
.x41{left:53.784000px;}
.x54{left:57.924000px;}
.x66{left:63.324000px;}
.xb{left:64.836000px;}
.x2f{left:66.348000px;}
.x16{left:67.464000px;}
.x69{left:69.336000px;}
.x6f{left:71.568000px;}
.x67{left:75.924000px;}
.x6{left:77.184000px;}
.x6b{left:79.524000px;}
.x6a{left:81.936000px;}
.x64{left:83.304000px;}
.x56{left:85.356000px;}
.x3f{left:87.264000px;}
.x61{left:89.208000px;}
.x74{left:90.324000px;}
.x17{left:97.200000px;}
.x5d{left:100.908000px;}
.xd{left:105.516000px;}
.x68{left:107.316000px;}
.x5a{left:108.468000px;}
.x46{left:109.836000px;}
.xc{left:118.836000px;}
.x45{left:120.348000px;}
.x6e{left:122.868000px;}
.x52{left:123.912000px;}
.x2a{left:129.672000px;}
.x2d{left:131.472000px;}
.x53{left:134.280000px;}
.x2e{left:135.432000px;}
.xe{left:141.552000px;}
.x7{left:144.072000px;}
.x60{left:148.464000px;}
.x2c{left:152.670000px;}
.x65{left:162.435000px;}
.x5c{left:163.590000px;}
.x13{left:173.850000px;}
.x12{left:177.375000px;}
.x2{left:182.310000px;}
.x19{left:186.120000px;}
.x15{left:187.350000px;}
.x1{left:199.335000px;}
.x31{left:208.725000px;}
.xa{left:212.115000px;}
.x34{left:215.565000px;}
.x24{left:218.520000px;}
.x1e{left:223.200000px;}
.x47{left:228.060000px;}
.x21{left:248.760000px;}
.x49{left:254.730000px;}
.x33{left:269.250000px;}
.x5e{left:276.300000px;}
.x43{left:278.385000px;}
.x48{left:296.850000px;}
.x5f{left:327.420000px;}
.x3{left:328.500000px;}
.x72{left:331.740000px;}
.x10{left:344.160000px;}
.x11{left:351.720000px;}
.x3d{left:352.875000px;}
.xf{left:353.880000px;}
.x9{left:371.310000px;}
.x62{left:392.325000px;}
.x70{left:397.185000px;}
.x73{left:408.750000px;}
.x1a{left:416.520000px;}
.x3e{left:420.915000px;}
.x4f{left:426.135000px;}
.x6c{left:449.490000px;}
.x51{left:452.775000px;}
.x5{left:458.100000px;}
.x59{left:459.570000px;}
.x44{left:463.170000px;}
.x5b{left:475.410000px;}
.x35{left:481.320000px;}
.x57{left:492.660000px;}
.x50{left:494.925000px;}
.x32{left:497.190000px;}
.x1b{left:516.600000px;}
.x8{left:525.450000px;}
.x38{left:528.090000px;}
.x63{left:530.970000px;}
.x1f{left:533.520000px;}
.x55{left:537.945000px;}
.x71{left:540.150000px;}
.x25{left:546.120000px;}
.x36{left:549.435000px;}
.x4b{left:551.805000px;}
.x27{left:559.980000px;}
.x37{left:574.275000px;}
.x4a{left:593.970000px;}
.x2b{left:600.660000px;}
.x28{left:614.010000px;}
.x22{left:618.150000px;}
.x3c{left:630.075000px;}
.x29{left:647.850000px;}
.x14{left:677.010000px;}
.x4c{left:710.490000px;}
.x39{left:724.830000px;}
.x3a{left:725.910000px;}
.x1c{left:735.840000px;}
.x4e{left:740.730000px;}
.x6d{left:763.530000px;}
.x4d{left:783.210000px;}
.x4{left:792.390000px;}
.x75{left:810.390000px;}
.x3b{left:811.620000px;}
.x1d{left:839.160000px;}
.x26{left:846.720000px;}
.x23{left:887.040000px;}
.x20{left:925.920000px;}
@media print{
.v11{vertical-align:-175.520000pt;}
.v15{vertical-align:-153.706667pt;}
.v14{vertical-align:-143.520000pt;}
.v10{vertical-align:-140.800000pt;}
.ve{vertical-align:-102.400000pt;}
.v5{vertical-align:-77.440000pt;}
.v13{vertical-align:-55.296000pt;}
.v12{vertical-align:-34.560000pt;}
.v7{vertical-align:-25.856000pt;}
.vf{vertical-align:-24.298667pt;}
.v9{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:17.280000pt;}
.v4{vertical-align:24.106667pt;}
.v1{vertical-align:30.080000pt;}
.v6{vertical-align:31.253333pt;}
.v8{vertical-align:41.472053pt;}
.vd{vertical-align:65.152000pt;}
.v2{vertical-align:76.800000pt;}
.va{vertical-align:82.688000pt;}
.v3{vertical-align:121.973333pt;}
.vb{vertical-align:128.000000pt;}
.ls4e{letter-spacing:-2.245333pt;}
.ls24{letter-spacing:-1.674667pt;}
.ls43{letter-spacing:-1.600000pt;}
.ls32{letter-spacing:-1.546667pt;}
.ls54{letter-spacing:-1.472000pt;}
.ls4c{letter-spacing:-1.120000pt;}
.ls4d{letter-spacing:-0.880000pt;}
.ls5f{letter-spacing:-0.688000pt;}
.ls1e{letter-spacing:-0.570667pt;}
.ls3d{letter-spacing:-0.549333pt;}
.ls33{letter-spacing:-0.544000pt;}
.ls6a{letter-spacing:-0.507200pt;}
.ls64{letter-spacing:-0.443200pt;}
.ls66{letter-spacing:-0.423467pt;}
.ls59{letter-spacing:-0.414933pt;}
.ls21{letter-spacing:-0.393600pt;}
.ls2e{letter-spacing:-0.348267pt;}
.ls65{letter-spacing:-0.338133pt;}
.ls22{letter-spacing:-0.322667pt;}
.ls29{letter-spacing:-0.284267pt;}
.ls31{letter-spacing:-0.265600pt;}
.ls2d{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.194667pt;}
.ls63{letter-spacing:-0.137600pt;}
.ls69{letter-spacing:-0.078400pt;}
.ls61{letter-spacing:-0.066667pt;}
.ls2a{letter-spacing:-0.064000pt;}
.ls3a{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.030720pt;}
.ls51{letter-spacing:0.036352pt;}
.ls50{letter-spacing:0.107520pt;}
.ls52{letter-spacing:0.107733pt;}
.ls60{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.132800pt;}
.ls44{letter-spacing:0.161067pt;}
.ls2c{letter-spacing:0.220416pt;}
.ls37{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.256256pt;}
.ls12{letter-spacing:0.284267pt;}
.ls38{letter-spacing:0.284800pt;}
.ls2b{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.312533pt;}
.ls48{letter-spacing:0.343552pt;}
.ls4b{letter-spacing:0.397867pt;}
.ls26{letter-spacing:0.441067pt;}
.ls49{letter-spacing:0.443136pt;}
.ls13{letter-spacing:0.452800pt;}
.ls3e{letter-spacing:0.466133pt;}
.ls3c{letter-spacing:0.507136pt;}
.ls27{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.531200pt;}
.ls5b{letter-spacing:0.542720pt;}
.ls57{letter-spacing:0.549333pt;}
.ls3{letter-spacing:0.570667pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls58{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.649387pt;}
.ls39{letter-spacing:1.280000pt;}
.ls46{letter-spacing:1.758720pt;}
.ls5d{letter-spacing:4.382720pt;}
.ls5c{letter-spacing:4.489387pt;}
.ls18{letter-spacing:5.563136pt;}
.ls19{letter-spacing:5.584469pt;}
.ls1a{letter-spacing:6.843136pt;}
.ls5a{letter-spacing:6.907136pt;}
.ls62{letter-spacing:7.040000pt;}
.ls41{letter-spacing:8.158720pt;}
.ls67{letter-spacing:8.187136pt;}
.ls4a{letter-spacing:9.438720pt;}
.ls4f{letter-spacing:12.062720pt;}
.ls5e{letter-spacing:14.747136pt;}
.ls45{letter-spacing:15.838720pt;}
.ls6b{letter-spacing:21.022720pt;}
.ls2f{letter-spacing:22.267136pt;}
.ls25{letter-spacing:29.660416pt;}
.ls53{letter-spacing:42.782720pt;}
.ls47{letter-spacing:51.678720pt;}
.ls6{letter-spacing:61.616043pt;}
.ls7{letter-spacing:61.674667pt;}
.ls11{letter-spacing:66.305963pt;}
.ls15{letter-spacing:66.327296pt;}
.ls10{letter-spacing:66.364587pt;}
.ls14{letter-spacing:66.385920pt;}
.ls17{letter-spacing:66.476629pt;}
.ls16{letter-spacing:66.535253pt;}
.ls28{letter-spacing:75.445333pt;}
.lsc{letter-spacing:76.293376pt;}
.lsd{letter-spacing:76.352000pt;}
.ls8{letter-spacing:81.875200pt;}
.ls5{letter-spacing:81.920000pt;}
.lsf{letter-spacing:90.835200pt;}
.lsa{letter-spacing:90.880000pt;}
.ls2{letter-spacing:90.963200pt;}
.ls1{letter-spacing:91.008000pt;}
.lsb{letter-spacing:99.840000pt;}
.ls36{letter-spacing:104.929280pt;}
.ls68{letter-spacing:156.508416pt;}
.ls55{letter-spacing:156.544000pt;}
.ls1c{letter-spacing:810.739029pt;}
.ls40{letter-spacing:823.432363pt;}
.ls3f{letter-spacing:1034.739029pt;}
.ls1b{letter-spacing:1237.139029pt;}
.ls9{letter-spacing:2400.585387pt;}
.ls42{letter-spacing:2410.507947pt;}
.ls1d{letter-spacing:2473.867947pt;}
.ls30{letter-spacing:2528.232363pt;}
.ws9{word-spacing:-59.913664pt;}
.ws8{word-spacing:-53.695851pt;}
.ws21{word-spacing:-47.647104pt;}
.ws22{word-spacing:-39.710720pt;}
.ws24{word-spacing:-38.461440pt;}
.ws23{word-spacing:-38.369387pt;}
.ws2{word-spacing:-36.224000pt;}
.ws1{word-spacing:-36.190251pt;}
.ws17{word-spacing:-36.096000pt;}
.ws14{word-spacing:-36.060651pt;}
.ws15{word-spacing:-35.918251pt;}
.ws11{word-spacing:-35.619584pt;}
.ws16{word-spacing:-35.584000pt;}
.ws13{word-spacing:-35.555584pt;}
.ws3b{word-spacing:-35.541184pt;}
.ws12{word-spacing:-35.335317pt;}
.ws19{word-spacing:-35.328000pt;}
.ws1a{word-spacing:-35.271317pt;}
.ws32{word-spacing:-33.329280pt;}
.ws31{word-spacing:-33.322197pt;}
.ws27{word-spacing:-33.203413pt;}
.ws35{word-spacing:-32.865280pt;}
.ws1b{word-spacing:-32.772864pt;}
.ws1f{word-spacing:-32.737280pt;}
.ws25{word-spacing:-32.708864pt;}
.ws36{word-spacing:-32.670613pt;}
.ws37{word-spacing:-32.635264pt;}
.ws20{word-spacing:-32.542613pt;}
.ws1c{word-spacing:-32.507264pt;}
.ws39{word-spacing:-32.399147pt;}
.ws3a{word-spacing:-32.349397pt;}
.ws38{word-spacing:-32.329664pt;}
.ws33{word-spacing:-32.322347pt;}
.ws3c{word-spacing:-32.265664pt;}
.ws26{word-spacing:-32.223531pt;}
.ws1e{word-spacing:-32.193280pt;}
.ws34{word-spacing:-32.049280pt;}
.ws30{word-spacing:-31.265280pt;}
.ws1d{word-spacing:-31.226197pt;}
.ws6{word-spacing:-29.534720pt;}
.ws7{word-spacing:-26.723584pt;}
.ws18{word-spacing:-26.688000pt;}
.ws4{word-spacing:-26.177536pt;}
.ws5{word-spacing:-26.132480pt;}
.wsb{word-spacing:-24.452864pt;}
.ws2a{word-spacing:-24.239147pt;}
.wsf{word-spacing:-24.189397pt;}
.wsc{word-spacing:-24.009664pt;}
.ws29{word-spacing:-24.002347pt;}
.ws2f{word-spacing:-23.841280pt;}
.wse{word-spacing:-23.518613pt;}
.wsd{word-spacing:-23.483264pt;}
.wsa{word-spacing:-23.306197pt;}
.ws2c{word-spacing:-22.961280pt;}
.ws2b{word-spacing:-22.721280pt;}
.ws28{word-spacing:-22.241280pt;}
.ws10{word-spacing:-22.202197pt;}
.ws2e{word-spacing:-21.631531pt;}
.ws2d{word-spacing:-15.656960pt;}
.ws3{word-spacing:-0.074240pt;}
.ws0{word-spacing:0.000000pt;}
._30{margin-left:-17.190315pt;}
._10{margin-left:-14.064128pt;}
._f{margin-left:-12.872576pt;}
._3d{margin-left:-11.809067pt;}
._e{margin-left:-10.613504pt;}
._3c{margin-left:-9.721173pt;}
._c{margin-left:-8.791424pt;}
._19{margin-left:-6.899541pt;}
._2{margin-left:-4.946304pt;}
._1{margin-left:-3.147648pt;}
._4{margin-left:-2.214784pt;}
._0{margin-left:-0.899328pt;}
._3{width:1.022208pt;}
._5{width:2.757717pt;}
._a{width:3.699584pt;}
._6{width:4.588544pt;}
._7{width:5.783168pt;}
._13{width:7.436331pt;}
._14{width:8.606421pt;}
._33{width:9.884672pt;}
._1f{width:11.766443pt;}
._1e{width:12.926592pt;}
._2d{width:14.618368pt;}
._2f{width:16.140288pt;}
._20{width:17.633280pt;}
._21{width:18.545195pt;}
._3f{width:19.649621pt;}
._3e{width:20.638123pt;}
._1c{width:21.886592pt;}
._1d{width:23.137195pt;}
._2a{width:25.156907pt;}
._29{width:27.233451pt;}
._16{width:29.480192pt;}
._15{width:30.413611pt;}
._2e{width:31.918421pt;}
._24{width:35.627349pt;}
._23{width:36.821163pt;}
._22{width:37.754880pt;}
._3a{width:41.451179pt;}
._39{width:42.768896pt;}
._1b{width:45.312000pt;}
._1a{width:46.442667pt;}
._44{width:47.781141pt;}
._43{width:48.801621pt;}
._45{width:49.877717pt;}
._32{width:50.991275pt;}
._31{width:51.980288pt;}
._38{width:55.355605pt;}
._2c{width:56.623701pt;}
._2b{width:58.263808pt;}
._47{width:59.316523pt;}
._46{width:60.650453pt;}
._42{width:70.702549pt;}
._3b{width:72.230315pt;}
._4c{width:76.954709pt;}
._40{width:89.430357pt;}
._41{width:91.119744pt;}
._4b{width:92.223403pt;}
._4a{width:93.399040pt;}
._27{width:105.164288pt;}
._28{width:106.723456pt;}
._49{width:112.735061pt;}
._48{width:113.702443pt;}
._18{width:148.312875pt;}
._17{width:149.341739pt;}
._35{width:163.707392pt;}
._34{width:166.088576pt;}
._b{width:290.216533pt;}
._8{width:378.276309pt;}
._9{width:571.251968pt;}
._36{width:1114.012075pt;}
._12{width:1140.132181pt;}
._25{width:1744.259584pt;}
._26{width:1897.993813pt;}
._d{width:2078.741931pt;}
._11{width:2102.031744pt;}
._37{width:2468.520107pt;}
.fs15{font-size:53.760000pt;}
.fs16{font-size:53.888000pt;}
.fs1e{font-size:56.320000pt;}
.fsc{font-size:64.000000pt;}
.fsd{font-size:64.128000pt;}
.fs2{font-size:74.240000pt;}
.fsf{font-size:74.368000pt;}
.fs1f{font-size:78.080000pt;}
.fs20{font-size:78.208000pt;}
.fs19{font-size:85.760000pt;}
.fse{font-size:85.888000pt;}
.fs13{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs10{font-size:106.240000pt;}
.fs11{font-size:106.368000pt;}
.fs17{font-size:117.760000pt;}
.fs18{font-size:117.888000pt;}
.fs5{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs1c{font-size:138.240000pt;}
.fs1d{font-size:138.368000pt;}
.fs8{font-size:149.760000pt;}
.fs0{font-size:149.888000pt;}
.fs4{font-size:153.600000pt;}
.fs6{font-size:153.728000pt;}
.fs1b{font-size:170.240000pt;}
.fs1{font-size:170.368000pt;}
.fs9{font-size:179.200000pt;}
.fsa{font-size:179.328000pt;}
.fs1a{font-size:192.000000pt;}
.fsb{font-size:192.128000pt;}
.fs14{font-size:213.888000pt;}
.fs3{font-size:234.368000pt;}
.yd6{bottom:-10.880000pt;}
.yf6{bottom:-6.496000pt;}
.y129{bottom:-6.208000pt;}
.ybb{bottom:-0.576013pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.272000pt;}
.y4{bottom:9.792000pt;}
.yc4{bottom:13.952000pt;}
.y10b{bottom:23.616000pt;}
.y41{bottom:23.872000pt;}
.y128{bottom:27.104000pt;}
.yab{bottom:29.152000pt;}
.y49{bottom:36.192000pt;}
.yd5{bottom:37.472000pt;}
.y8b{bottom:38.720000pt;}
.yf5{bottom:39.904000pt;}
.ye{bottom:41.632000pt;}
.yc3{bottom:44.672000pt;}
.yba{bottom:45.824000pt;}
.y9c{bottom:48.896000pt;}
.y10a{bottom:49.216000pt;}
.y40{bottom:49.472000pt;}
.ye0{bottom:50.560000pt;}
.y19{bottom:51.552000pt;}
.y98{bottom:53.952000pt;}
.y11e{bottom:55.264000pt;}
.ycc{bottom:55.424000pt;}
.y78{bottom:57.440000pt;}
.y101{bottom:59.520000pt;}
.y127{bottom:62.304000pt;}
.y28{bottom:63.360000pt;}
.yf4{bottom:65.536000pt;}
.ye9{bottom:66.720000pt;}
.y34{bottom:69.120000pt;}
.y65{bottom:70.784000pt;}
.yb9{bottom:71.456000pt;}
.y12e{bottom:71.904000pt;}
.yd4{bottom:72.672000pt;}
.y77{bottom:73.472000pt;}
.y48{bottom:73.984000pt;}
.yb8{bottom:75.008000pt;}
.y11d{bottom:75.104000pt;}
.y3f{bottom:75.424000pt;}
.y109{bottom:76.768000pt;}
.y8a{bottom:77.120000pt;}
.y89{bottom:77.184000pt;}
.y52{bottom:77.824000pt;}
.yc2{bottom:83.104000pt;}
.y5a{bottom:83.584000pt;}
.y2a{bottom:83.586667pt;}
.y39{bottom:83.653333pt;}
.y2d{bottom:83.746667pt;}
.yd{bottom:83.904000pt;}
.y100{bottom:85.152000pt;}
.ya6{bottom:88.704000pt;}
.ya0{bottom:89.184000pt;}
.y95{bottom:89.344000pt;}
.y76{bottom:89.472000pt;}
.yf3{bottom:91.136000pt;}
.y20{bottom:91.744000pt;}
.ydf{bottom:93.760000pt;}
.ycb{bottom:93.824000pt;}
.y6e{bottom:95.296000pt;}
.y80{bottom:95.456000pt;}
.y25{bottom:96.544000pt;}
.yf2{bottom:97.440000pt;}
.y126{bottom:97.536000pt;}
.y115{bottom:99.904000pt;}
.y61{bottom:100.224000pt;}
.y18{bottom:100.864000pt;}
.y3e{bottom:101.184000pt;}
.ye8{bottom:101.920000pt;}
.yaa{bottom:105.184000pt;}
.y12d{bottom:107.136000pt;}
.yd3{bottom:107.904000pt;}
.y51{bottom:109.504000pt;}
.y11c{bottom:110.336000pt;}
.yff{bottom:110.752000pt;}
.y88{bottom:111.744000pt;}
.y108{bottom:111.968000pt;}
.y1e{bottom:115.776000pt;}
.yae{bottom:116.896000pt;}
.y92{bottom:118.528000pt;}
.y38{bottom:120.640000pt;}
.yc1{bottom:121.504000pt;}
.y59{bottom:122.016000pt;}
.y64{bottom:123.296000pt;}
.ya5{bottom:123.936000pt;}
.yc{bottom:126.144000pt;}
.y47{bottom:126.176000pt;}
.y3d{bottom:126.816000pt;}
.yb7{bottom:127.872000pt;}
.yca{bottom:132.256000pt;}
.y94{bottom:132.576000pt;}
.y125{bottom:132.736000pt;}
.y131{bottom:133.373333pt;}
.y6d{bottom:133.733333pt;}
.y114{bottom:135.106667pt;}
.y9b{bottom:135.360000pt;}
.yfe{bottom:136.346667pt;}
.ye7{bottom:137.146667pt;}
.ya9{bottom:137.213333pt;}
.y60{bottom:138.653333pt;}
.yf1{bottom:139.546667pt;}
.y97{bottom:140.386667pt;}
.y17{bottom:141.213333pt;}
.y12c{bottom:142.373333pt;}
.yd2{bottom:143.133333pt;}
.yde{bottom:144.986667pt;}
.y75{bottom:145.506667pt;}
.y11b{bottom:145.573333pt;}
.y87{bottom:146.333333pt;}
.y107{bottom:147.200000pt;}
.y3c{bottom:152.733333pt;}
.yad{bottom:159.133333pt;}
.yc0{bottom:159.933333pt;}
.y58{bottom:160.413333pt;}
.y91{bottom:161.760000pt;}
.yfd{bottom:161.986667pt;}
.y124{bottom:164.133333pt;}
.ya4{bottom:166.173333pt;}
.yb{bottom:168.413333pt;}
.y133{bottom:168.613333pt;}
.y63{bottom:169.373333pt;}
.y113{bottom:170.333333pt;}
.yc9{bottom:170.693333pt;}
.y130{bottom:171.813333pt;}
.y6c{bottom:172.160000pt;}
.y46{bottom:172.293333pt;}
.ye6{bottom:172.386667pt;}
.y50{bottom:172.933333pt;}
.y24{bottom:173.413333pt;}
.yb6{bottom:174.306667pt;}
.y93{bottom:175.813333pt;}
.y5f{bottom:177.093333pt;}
.y12b{bottom:177.573333pt;}
.y3b{bottom:178.333333pt;}
.y11a{bottom:180.773333pt;}
.y106{bottom:182.400000pt;}
.y123{bottom:183.973333pt;}
.yf0{bottom:185.986667pt;}
.yfc{bottom:187.586667pt;}
.y86{bottom:187.973333pt;}
.y16{bottom:189.253333pt;}
.y23{bottom:192.613333pt;}
.ydd{bottom:196.226667pt;}
.ya8{bottom:197.253333pt;}
.ybf{bottom:198.373333pt;}
.y1d{bottom:199.813333pt;}
.yb5{bottom:199.906667pt;}
.ya3{bottom:201.413333pt;}
.yb4{bottom:203.453333pt;}
.y3a{bottom:204.293333pt;}
.y4f{bottom:204.613333pt;}
.y90{bottom:204.986667pt;}
.y112{bottom:205.573333pt;}
.y57{bottom:206.533333pt;}
.y132{bottom:207.040000pt;}
.y3{bottom:207.360000pt;}
.ye5{bottom:207.586667pt;}
.yc8{bottom:209.093333pt;}
.y12f{bottom:210.240000pt;}
.y6b{bottom:210.560000pt;}
.ya{bottom:210.693333pt;}
.yef{bottom:211.613333pt;}
.y22{bottom:211.813333pt;}
.y12a{bottom:212.800000pt;}
.yfb{bottom:213.213333pt;}
.yd1{bottom:213.573333pt;}
.y62{bottom:215.493333pt;}
.y119{bottom:216.000000pt;}
.y105{bottom:217.626667pt;}
.yee{bottom:217.893333pt;}
.y45{bottom:218.373333pt;}
.y122{bottom:219.200000pt;}
.y9e{bottom:219.266667pt;}
.y85{bottom:219.653333pt;}
.yd7{bottom:221.253333pt;}
.y8c{bottom:221.413333pt;}
.y9a{bottom:223.066667pt;}
.y5e{bottom:223.173333pt;}
.y96{bottom:226.853333pt;}
.y33{bottom:229.893333pt;}
.y15{bottom:231.520000pt;}
.y7f{bottom:233.280000pt;}
.y7d{bottom:235.173333pt;}
.yac{bottom:236.640000pt;}
.ybe{bottom:236.773333pt;}
.y4e{bottom:238.240000pt;}
.y37{bottom:238.266667pt;}
.yfa{bottom:238.813333pt;}
.y111{bottom:240.773333pt;}
.yb3{bottom:242.080000pt;}
.ye4{bottom:242.813333pt;}
.ya2{bottom:243.680000pt;}
.y56{bottom:244.960000pt;}
.yc7{bottom:247.520000pt;}
.yd0{bottom:248.773333pt;}
.y118{bottom:251.226667pt;}
.y9d{bottom:251.266667pt;}
.y9{bottom:252.960000pt;}
.y121{bottom:254.426667pt;}
.y32{bottom:255.840000pt;}
.y84{bottom:258.400000pt;}
.y2{bottom:258.586667pt;}
.y5d{bottom:261.600000pt;}
.y8f{bottom:262.626667pt;}
.y36{bottom:263.866667pt;}
.y11{bottom:263.973333pt;}
.y44{bottom:264.480000pt;}
.y21{bottom:264.640000pt;}
.ydc{bottom:265.213333pt;}
.y6a{bottom:268.186667pt;}
.yed{bottom:270.586667pt;}
.y14{bottom:273.760000pt;}
.y2c{bottom:275.200000pt;}
.y110{bottom:276.000000pt;}
.ye3{bottom:278.053333pt;}
.y4d{bottom:278.560000pt;}
.ya1{bottom:278.880000pt;}
.y31{bottom:281.440000pt;}
.y74{bottom:281.573333pt;}
.y55{bottom:283.360000pt;}
.y1c{bottom:283.866667pt;}
.ycf{bottom:284.000000pt;}
.yc6{bottom:285.946667pt;}
.y104{bottom:288.066667pt;}
.yb2{bottom:288.506667pt;}
.y120{bottom:289.626667pt;}
.y35{bottom:289.826667pt;}
.yf9{bottom:290.053333pt;}
.y83{bottom:290.106667pt;}
.ya7{bottom:293.306667pt;}
.y8{bottom:295.200000pt;}
.y73{bottom:297.600000pt;}
.y29{bottom:301.120000pt;}
.y4c{bottom:304.506667pt;}
.y8e{bottom:305.826667pt;}
.y69{bottom:306.626667pt;}
.y30{bottom:307.386667pt;}
.y5c{bottom:307.706667pt;}
.y1f{bottom:307.866667pt;}
.ydb{bottom:308.413333pt;}
.y43{bottom:310.586667pt;}
.y10f{bottom:311.226667pt;}
.y10{bottom:313.280000pt;}
.y72{bottom:313.600000pt;}
.ybd{bottom:313.626667pt;}
.yb1{bottom:314.106667pt;}
.ye2{bottom:314.533333pt;}
.y68{bottom:314.560000pt;}
.yf8{bottom:315.680000pt;}
.y13{bottom:316.026667pt;}
.yec{bottom:317.026667pt;}
.y9f{bottom:317.306667pt;}
.yb0{bottom:317.666667pt;}
.y99{bottom:317.853333pt;}
.yce{bottom:319.226667pt;}
.y54{bottom:321.786667pt;}
.y117{bottom:322.306667pt;}
.yeb{bottom:323.293333pt;}
.yc5{bottom:324.346667pt;}
.y11f{bottom:324.866667pt;}
.yd9{bottom:327.333333pt;}
.y82{bottom:329.466667pt;}
.y2f{bottom:332.986667pt;}
.y4b{bottom:336.186667pt;}
.y10d{bottom:336.773333pt;}
.y7{bottom:337.466667pt;}
.yf7{bottom:341.280000pt;}
.y67{bottom:343.386667pt;}
.y10e{bottom:346.426667pt;}
.y7e{bottom:347.333333pt;}
.y27{bottom:348.706667pt;}
.y8d{bottom:349.053333pt;}
.ybc{bottom:352.026667pt;}
.ycd{bottom:354.426667pt;}
.y5b{bottom:355.106667pt;}
.ye1{bottom:356.160000pt;}
.y42{bottom:356.706667pt;}
.y103{bottom:358.493333pt;}
.y2e{bottom:358.946667pt;}
.yd8{bottom:359.333333pt;}
.y12{bottom:359.586667pt;}
.yda{bottom:359.653333pt;}
.y53{bottom:360.226667pt;}
.y116{bottom:360.706667pt;}
.yf{bottom:362.586667pt;}
.y81{bottom:364.066667pt;}
.yaf{bottom:364.093333pt;}
.y10c{bottom:366.240000pt;}
.y26{bottom:367.906667pt;}
.y4a{bottom:368.546667pt;}
.yea{bottom:369.733333pt;}
.y6{bottom:379.746667pt;}
.y7c{bottom:380.866667pt;}
.y2b{bottom:384.706667pt;}
.y102{bottom:391.813333pt;}
.y70{bottom:423.653333pt;}
.y7b{bottom:424.093333pt;}
.y6f{bottom:439.680000pt;}
.y5{bottom:445.186667pt;}
.y66{bottom:447.106667pt;}
.y1b{bottom:449.026667pt;}
.y7a{bottom:452.933333pt;}
.y1{bottom:457.986667pt;}
.y79{bottom:496.133333pt;}
.y71{bottom:509.693333pt;}
.h20{height:52.762500pt;}
.h21{height:52.888125pt;}
.h2c{height:56.070000pt;}
.h11{height:60.755000pt;}
.h4{height:60.863750pt;}
.hb{height:62.781250pt;}
.hc{height:62.812500pt;}
.hd{height:62.938125pt;}
.ha{height:64.500000pt;}
.h12{height:72.355000pt;}
.h14{height:72.479750pt;}
.h2b{height:78.808063pt;}
.h24{height:89.445000pt;}
.hf{height:89.578500pt;}
.h1c{height:100.125000pt;}
.h1b{height:100.258500pt;}
.h1a{height:110.805000pt;}
.h19{height:110.938500pt;}
.h1f{height:114.750000pt;}
.h22{height:122.820000pt;}
.h23{height:122.953500pt;}
.h6{height:133.500000pt;}
.h7{height:133.633500pt;}
.h26{height:134.911667pt;}
.he{height:139.612500pt;}
.h29{height:144.180000pt;}
.h2a{height:144.313500pt;}
.h8{height:156.195000pt;}
.h2{height:156.328500pt;}
.h17{height:172.160000pt;}
.h27{height:177.555000pt;}
.h3{height:177.688500pt;}
.h10{height:180.160000pt;}
.h13{height:180.480000pt;}
.h25{height:200.250000pt;}
.h9{height:200.383500pt;}
.h1d{height:223.078500pt;}
.h28{height:238.938500pt;}
.h5{height:244.438500pt;}
.h1e{height:255.473333pt;}
.h18{height:326.720000pt;}
.h16{height:455.680000pt;}
.h15{height:471.040000pt;}
.h1{height:540.000000pt;}
.h0{height:540.160000pt;}
.w1{width:283.840000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.328000pt;}
.x40{left:27.328000pt;}
.x58{left:40.672000pt;}
.x42{left:42.944000pt;}
.x30{left:46.496000pt;}
.x41{left:47.808000pt;}
.x54{left:51.488000pt;}
.x66{left:56.288000pt;}
.xb{left:57.632000pt;}
.x2f{left:58.976000pt;}
.x16{left:59.968000pt;}
.x69{left:61.632000pt;}
.x6f{left:63.616000pt;}
.x67{left:67.488000pt;}
.x6{left:68.608000pt;}
.x6b{left:70.688000pt;}
.x6a{left:72.832000pt;}
.x64{left:74.048000pt;}
.x56{left:75.872000pt;}
.x3f{left:77.568000pt;}
.x61{left:79.296000pt;}
.x74{left:80.288000pt;}
.x17{left:86.400000pt;}
.x5d{left:89.696000pt;}
.xd{left:93.792000pt;}
.x68{left:95.392000pt;}
.x5a{left:96.416000pt;}
.x46{left:97.632000pt;}
.xc{left:105.632000pt;}
.x45{left:106.976000pt;}
.x6e{left:109.216000pt;}
.x52{left:110.144000pt;}
.x2a{left:115.264000pt;}
.x2d{left:116.864000pt;}
.x53{left:119.360000pt;}
.x2e{left:120.384000pt;}
.xe{left:125.824000pt;}
.x7{left:128.064000pt;}
.x60{left:131.968000pt;}
.x2c{left:135.706667pt;}
.x65{left:144.386667pt;}
.x5c{left:145.413333pt;}
.x13{left:154.533333pt;}
.x12{left:157.666667pt;}
.x2{left:162.053333pt;}
.x19{left:165.440000pt;}
.x15{left:166.533333pt;}
.x1{left:177.186667pt;}
.x31{left:185.533333pt;}
.xa{left:188.546667pt;}
.x34{left:191.613333pt;}
.x24{left:194.240000pt;}
.x1e{left:198.400000pt;}
.x47{left:202.720000pt;}
.x21{left:221.120000pt;}
.x49{left:226.426667pt;}
.x33{left:239.333333pt;}
.x5e{left:245.600000pt;}
.x43{left:247.453333pt;}
.x48{left:263.866667pt;}
.x5f{left:291.040000pt;}
.x3{left:292.000000pt;}
.x72{left:294.880000pt;}
.x10{left:305.920000pt;}
.x11{left:312.640000pt;}
.x3d{left:313.666667pt;}
.xf{left:314.560000pt;}
.x9{left:330.053333pt;}
.x62{left:348.733333pt;}
.x70{left:353.053333pt;}
.x73{left:363.333333pt;}
.x1a{left:370.240000pt;}
.x3e{left:374.146667pt;}
.x4f{left:378.786667pt;}
.x6c{left:399.546667pt;}
.x51{left:402.466667pt;}
.x5{left:407.200000pt;}
.x59{left:408.506667pt;}
.x44{left:411.706667pt;}
.x5b{left:422.586667pt;}
.x35{left:427.840000pt;}
.x57{left:437.920000pt;}
.x50{left:439.933333pt;}
.x32{left:441.946667pt;}
.x1b{left:459.200000pt;}
.x8{left:467.066667pt;}
.x38{left:469.413333pt;}
.x63{left:471.973333pt;}
.x1f{left:474.240000pt;}
.x55{left:478.173333pt;}
.x71{left:480.133333pt;}
.x25{left:485.440000pt;}
.x36{left:488.386667pt;}
.x4b{left:490.493333pt;}
.x27{left:497.760000pt;}
.x37{left:510.466667pt;}
.x4a{left:527.973333pt;}
.x2b{left:533.920000pt;}
.x28{left:545.786667pt;}
.x22{left:549.466667pt;}
.x3c{left:560.066667pt;}
.x29{left:575.866667pt;}
.x14{left:601.786667pt;}
.x4c{left:631.546667pt;}
.x39{left:644.293333pt;}
.x3a{left:645.253333pt;}
.x1c{left:654.080000pt;}
.x4e{left:658.426667pt;}
.x6d{left:678.693333pt;}
.x4d{left:696.186667pt;}
.x4{left:704.346667pt;}
.x75{left:720.346667pt;}
.x3b{left:721.440000pt;}
.x1d{left:745.920000pt;}
.x26{left:752.640000pt;}
.x23{left:788.480000pt;}
.x20{left:823.040000pt;}
}




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