
    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_c4e5c98700f64ddc6e2091b9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.286621;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_5f223be70f9b28bd7553e90b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_c57a4884c8d1d60139668071.woff')format("woff");}.ff3{font-family:ff3;line-height:1.286621;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_21a9815c878d4850ca33b7bc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_399eaac4c257953ed8bfacb7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.343262;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_22484c131f40e514a09f2e2a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.343262;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_16408d9abadc9c14c79a7d82.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683594;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_02bb0b95bebb671062dfa287.woff')format("woff");}.ffa{font-family:ffa;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:30.240000px;}
.ls2f{letter-spacing:-15.360000px;}
.ls5d{letter-spacing:-11.040000px;}
.ls42{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.984000px;}
.ls6c{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.328800px;}
.lsf{letter-spacing:-0.325200px;}
.ls36{letter-spacing:-0.312000px;}
.ls9{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.295200px;}
.ls17{letter-spacing:-0.288000px;}
.ls4c{letter-spacing:-0.269400px;}
.ls30{letter-spacing:-0.240600px;}
.ls2d{letter-spacing:-0.232800px;}
.ls63{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.207600px;}
.ls11{letter-spacing:-0.144000px;}
.ls41{letter-spacing:-0.142800px;}
.ls20{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.012960px;}
.ls37{letter-spacing:-0.000720px;}
.ls7{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.015840px;}
.ls50{letter-spacing:0.037440px;}
.ls62{letter-spacing:0.048000px;}
.ls61{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.063360px;}
.lsa{letter-spacing:0.063600px;}
.ls5{letter-spacing:0.066000px;}
.ls67{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.087120px;}
.ls2c{letter-spacing:0.097800px;}
.ls28{letter-spacing:0.107280px;}
.ls68{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.115200px;}
.ls44{letter-spacing:0.120000px;}
.ls4b{letter-spacing:0.120240px;}
.ls31{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.154800px;}
.ls10{letter-spacing:0.172200px;}
.ls35{letter-spacing:0.183360px;}
.ls3b{letter-spacing:0.192000px;}
.ls38{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls64{letter-spacing:0.264000px;}
.ls69{letter-spacing:0.265200px;}
.ls12{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.292200px;}
.ls2e{letter-spacing:0.297600px;}
.ls33{letter-spacing:0.298800px;}
.ls60{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.346320px;}
.ls2{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.408000px;}
.ls6b{letter-spacing:0.432000px;}
.ls49{letter-spacing:0.451920px;}
.ls66{letter-spacing:0.468000px;}
.ls3d{letter-spacing:0.479520px;}
.ls45{letter-spacing:0.487440px;}
.ls52{letter-spacing:0.577440px;}
.ls4a{letter-spacing:0.612000px;}
.ls5f{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.783360px;}
.ls16{letter-spacing:0.786000px;}
.ls2b{letter-spacing:0.807120px;}
.ls21{letter-spacing:0.828000px;}
.ls3f{letter-spacing:0.829440px;}
.ls1c{letter-spacing:0.874800px;}
.ls39{letter-spacing:0.936000px;}
.ls1f{letter-spacing:0.978000px;}
.ls65{letter-spacing:1.008000px;}
.ls4d{letter-spacing:1.014000px;}
.ls3e{letter-spacing:1.207440px;}
.ls53{letter-spacing:1.368000px;}
.ls47{letter-spacing:2.088000px;}
.ls56{letter-spacing:3.096000px;}
.ls3a{letter-spacing:3.528000px;}
.ls40{letter-spacing:4.087440px;}
.ls1a{letter-spacing:4.248000px;}
.ls51{letter-spacing:4.968000px;}
.ls32{letter-spacing:5.688000px;}
.ls34{letter-spacing:6.247440px;}
.ls15{letter-spacing:6.264000px;}
.ls19{letter-spacing:6.408000px;}
.ls55{letter-spacing:7.416000px;}
.ls5a{letter-spacing:7.848000px;}
.ls25{letter-spacing:8.028000px;}
.ls1{letter-spacing:8.407440px;}
.ls24{letter-spacing:8.568000px;}
.ls6a{letter-spacing:9.060000px;}
.ls5c{letter-spacing:9.127440px;}
.ls18{letter-spacing:9.288000px;}
.ls3c{letter-spacing:10.188000px;}
.ls6{letter-spacing:10.567440px;}
.ls14{letter-spacing:11.016000px;}
.ls13{letter-spacing:11.196000px;}
.ls46{letter-spacing:11.448000px;}
.ls1b{letter-spacing:12.168000px;}
.ls4e{letter-spacing:12.888000px;}
.ls5e{letter-spacing:13.608000px;}
.ls54{letter-spacing:15.048000px;}
.ls5b{letter-spacing:15.768000px;}
.ls4f{letter-spacing:18.648000px;}
.ls57{letter-spacing:20.808000px;}
.ls59{letter-spacing:23.976000px;}
.ls26{letter-spacing:30.168000px;}
.ls48{letter-spacing:31.896000px;}
.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;}
}
.ws3e{word-spacing:-20.304000px;}
.ws35{word-spacing:-20.232001px;}
.wsb{word-spacing:-20.232000px;}
.ws37{word-spacing:-20.016000px;}
.ws3f{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.728640px;}
.ws8{word-spacing:-18.679440px;}
.ws5{word-spacing:-18.613440px;}
.ws7{word-spacing:-18.405840px;}
.wsa{word-spacing:-18.288240px;}
.ws2d{word-spacing:-18.072000px;}
.ws21{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.629440px;}
.ws34{word-spacing:-17.496000px;}
.ws40{word-spacing:-17.208000px;}
.ws0{word-spacing:-17.152560px;}
.ws1c{word-spacing:-17.090160px;}
.ws18{word-spacing:-17.052360px;}
.wsc{word-spacing:-16.947360px;}
.ws30{word-spacing:-16.912560px;}
.ws1{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.497360px;}
.ws3{word-spacing:-16.492560px;}
.ws29{word-spacing:-16.480560px;}
.ws4{word-spacing:-16.432560px;}
.ws11{word-spacing:-16.135200px;}
.ws17{word-spacing:-15.588720px;}
.wse{word-spacing:-14.932920px;}
.wsd{word-spacing:-14.760720px;}
.ws2f{word-spacing:-14.747760px;}
.ws1e{word-spacing:-14.520120px;}
.ws33{word-spacing:-14.491320px;}
.ws19{word-spacing:-14.431920px;}
.ws36{word-spacing:-14.328000px;}
.ws38{word-spacing:-11.999760px;}
.ws22{word-spacing:-11.734560px;}
.ws2e{word-spacing:-11.591760px;}
.ws32{word-spacing:-10.116000px;}
.wsf{word-spacing:-9.972000px;}
.ws23{word-spacing:-0.570960px;}
.ws24{word-spacing:-0.399600px;}
.ws31{word-spacing:-0.318960px;}
.ws2a{word-spacing:-0.153360px;}
.ws20{word-spacing:-0.144000px;}
.ws25{word-spacing:-0.105840px;}
.ws13{word-spacing:-0.072000px;}
.ws10{word-spacing:0.000000px;}
.ws14{word-spacing:0.036000px;}
.ws27{word-spacing:0.126000px;}
.ws16{word-spacing:0.127440px;}
.ws26{word-spacing:0.164160px;}
.ws1f{word-spacing:0.188640px;}
.ws1b{word-spacing:0.211680px;}
.ws3c{word-spacing:0.252000px;}
.ws28{word-spacing:0.368640px;}
.ws2b{word-spacing:0.408000px;}
.ws2c{word-spacing:0.480000px;}
.ws3b{word-spacing:0.684000px;}
.ws3a{word-spacing:0.720000px;}
.ws15{word-spacing:0.762240px;}
.ws3d{word-spacing:0.768000px;}
.ws1a{word-spacing:0.846000px;}
.ws39{word-spacing:0.972000px;}
.ws1d{word-spacing:1.335600px;}
._24{margin-left:-6.517920px;}
._13{margin-left:-5.116320px;}
._d{margin-left:-3.811680px;}
._e{margin-left:-2.596320px;}
._8{margin-left:-1.516320px;}
._0{width:1.314720px;}
._9{width:3.112320px;}
._a{width:4.189680px;}
._5{width:5.213520px;}
._3{width:6.243120px;}
._1{width:7.649280px;}
._2{width:8.663520px;}
._6{width:9.740880px;}
._7{width:10.858320px;}
._b{width:12.705120px;}
._4{width:13.983840px;}
._c{width:15.154320px;}
._11{width:16.552320px;}
._14{width:17.640000px;}
._15{width:18.826560px;}
._1c{width:21.869280px;}
._f{width:23.160000px;}
._10{width:24.276000px;}
._1f{width:25.336320px;}
._1e{width:26.645280px;}
._17{width:27.864000px;}
._18{width:29.304000px;}
._1b{width:30.356160px;}
._1a{width:31.392000px;}
._20{width:32.409120px;}
._21{width:33.480000px;}
._12{width:34.560000px;}
._1d{width:35.904000px;}
._22{width:37.152000px;}
._23{width:38.422560px;}
._16{width:43.848000px;}
._19{width:44.928000px;}
._25{width:46.656000px;}
.fc5{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y112{bottom:-30.060000px;}
.y10e{bottom:-24.480000px;}
.ybd{bottom:-1.260000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:0.900000px;}
.yec{bottom:1.800000px;}
.yea{bottom:2.880000px;}
.y5{bottom:4.170000px;}
.ya5{bottom:4.680000px;}
.yc6{bottom:7.200000px;}
.y111{bottom:7.560000px;}
.yc1{bottom:9.180000px;}
.yc3{bottom:9.360000px;}
.ye8{bottom:9.540000px;}
.ya7{bottom:16.380000px;}
.y4{bottom:25.590000px;}
.y10d{bottom:35.100000px;}
.y110{bottom:37.620000px;}
.yc0{bottom:39.240000px;}
.y3{bottom:47.190000px;}
.y2{bottom:68.610000px;}
.y36{bottom:76.176000px;}
.y11{bottom:93.456000px;}
.y35{bottom:95.256000px;}
.y10{bottom:113.616000px;}
.y63{bottom:116.136000px;}
.ya3{bottom:122.076000px;}
.yf1{bottom:128.196000px;}
.y156{bottom:130.356000px;}
.yf{bottom:132.696000px;}
.y62{bottom:137.736000px;}
.y61{bottom:143.676000px;}
.ye{bottom:153.570000px;}
.yf0{bottom:154.110000px;}
.y155{bottom:156.270000px;}
.y60{bottom:159.150000px;}
.y12a{bottom:160.230000px;}
.y90{bottom:165.090000px;}
.yd{bottom:175.170000px;}
.yef{bottom:179.850000px;}
.y5f{bottom:180.750000px;}
.y14b{bottom:182.010000px;}
.y8a{bottom:186.690000px;}
.yc{bottom:196.590000px;}
.y5e{bottom:202.350000px;}
.ye6{bottom:203.430000px;}
.yee{bottom:205.770000px;}
.y14a{bottom:207.930000px;}
.y89{bottom:208.290000px;}
.yb{bottom:218.190000px;}
.y129{bottom:221.430000px;}
.y5d{bottom:223.770000px;}
.y8f{bottom:224.850000px;}
.y88{bottom:229.710000px;}
.yed{bottom:231.510000px;}
.y149{bottom:233.670000px;}
.ya{bottom:239.790000px;}
.ye5{bottom:241.590000px;}
.y10b{bottom:243.030000px;}
.y5c{bottom:245.370000px;}
.y87{bottom:246.450000px;}
.y127{bottom:247.170000px;}
.y5b{bottom:251.310000px;}
.y128{bottom:254.730000px;}
.y8e{bottom:257.430000px;}
.y148{bottom:259.590000px;}
.y9{bottom:261.210000px;}
.y154{bottom:264.090000px;}
.ybb{bottom:266.790000px;}
.ye4{bottom:267.330000px;}
.y5a{bottom:267.870000px;}
.y10a{bottom:268.770000px;}
.yce{bottom:272.730000px;}
.y126{bottom:277.590000px;}
.ya2{bottom:278.670000px;}
.y8{bottom:282.810000px;}
.y8d{bottom:283.170000px;}
.yba{bottom:288.390000px;}
.y147{bottom:289.830000px;}
.ye3{bottom:293.250000px;}
.y109{bottom:294.510000px;}
.y125{bottom:303.330000px;}
.ya1{bottom:304.410000px;}
.y58{bottom:307.470000px;}
.y86{bottom:309.090000px;}
.yb9{bottom:309.810000px;}
.y59{bottom:315.030000px;}
.y146{bottom:315.570000px;}
.ye2{bottom:318.990000px;}
.y107{bottom:320.430000px;}
.y7{bottom:321.510000px;}
.y108{bottom:327.990000px;}
.y9f{bottom:330.330000px;}
.yb8{bottom:331.410000px;}
.y57{bottom:333.210000px;}
.y124{bottom:333.570000px;}
.y85{bottom:334.830000px;}
.ycd{bottom:337.395000px;}
.ya0{bottom:337.935000px;}
.y145{bottom:341.535000px;}
.ye1{bottom:344.775000px;}
.y153{bottom:346.035000px;}
.y106{bottom:346.215000px;}
.y33{bottom:350.715000px;}
.yb7{bottom:352.875000px;}
.ycc{bottom:353.955000px;}
.y9e{bottom:356.115000px;}
.y56{bottom:359.175000px;}
.y123{bottom:359.535000px;}
.y84{bottom:360.615000px;}
.y165{bottom:362.775000px;}
.y144{bottom:367.275000px;}
.y8c{bottom:368.175000px;}
.ye0{bottom:370.695000px;}
.y152{bottom:371.775000px;}
.y32{bottom:372.135000px;}
.yb6{bottom:374.475000px;}
.yb5{bottom:380.415000px;}
.y9c{bottom:382.035000px;}
.y55{bottom:384.915000px;}
.y122{bottom:385.275000px;}
.y83{bottom:386.535000px;}
.y164{bottom:388.695000px;}
.y9d{bottom:389.595000px;}
.y31{bottom:393.735000px;}
.ycb{bottom:394.095000px;}
.ydf{bottom:396.435000px;}
.yb4{bottom:397.155000px;}
.y143{bottom:397.695000px;}
.y105{bottom:397.875000px;}
.y9a{bottom:407.775000px;}
.y54{bottom:410.655000px;}
.y82{bottom:412.275000px;}
.y30{bottom:415.155000px;}
.y9b{bottom:415.335000px;}
.y121{bottom:415.695000px;}
.y163{bottom:418.935000px;}
.y8b{bottom:419.835000px;}
.yde{bottom:422.355000px;}
.y142{bottom:423.435000px;}
.y104{bottom:423.795000px;}
.y99{bottom:433.695000px;}
.y53{bottom:436.575000px;}
.y2f{bottom:436.755000px;}
.y81{bottom:438.195000px;}
.y120{bottom:441.435000px;}
.yb3{bottom:443.415000px;}
.y162{bottom:444.855000px;}
.ydd{bottom:448.095000px;}
.y141{bottom:449.355000px;}
.y102{bottom:449.535000px;}
.y151{bottom:453.855000px;}
.y103{bottom:457.095000px;}
.y2e{bottom:458.175000px;}
.y98{bottom:459.435000px;}
.y52{bottom:462.315000px;}
.y80{bottom:463.935000px;}
.y11f{bottom:467.355000px;}
.yb2{bottom:469.155000px;}
.ydc{bottom:474.015000px;}
.y161{bottom:475.095000px;}
.y101{bottom:475.455000px;}
.y140{bottom:479.595000px;}
.y2d{bottom:479.775000px;}
.y97{bottom:485.175000px;}
.y51{bottom:488.235000px;}
.y7f{bottom:489.855000px;}
.yb0{bottom:495.075000px;}
.y11e{bottom:497.595000px;}
.ydb{bottom:499.755000px;}
.y160{bottom:501.015000px;}
.y2c{bottom:501.195000px;}
.yb1{bottom:502.635000px;}
.y13f{bottom:505.515000px;}
.y150{bottom:510.015000px;}
.y96{bottom:511.095000px;}
.y50{bottom:513.975000px;}
.y7e{bottom:515.595000px;}
.yaf{bottom:520.815000px;}
.y2b{bottom:522.795000px;}
.y11d{bottom:523.515000px;}
.yd9{bottom:525.675000px;}
.y100{bottom:527.115000px;}
.y15f{bottom:531.255000px;}
.yda{bottom:533.235000px;}
.y13e{bottom:535.755000px;}
.y4f{bottom:539.895000px;}
.y7d{bottom:541.515000px;}
.y2a{bottom:544.395000px;}
.y95{bottom:545.115000px;}
.yae{bottom:546.555000px;}
.y11c{bottom:549.255000px;}
.yd8{bottom:551.415000px;}
.yff{bottom:552.855000px;}
.y15e{bottom:557.175000px;}
.y13d{bottom:561.675000px;}
.y4e{bottom:565.635000px;}
.y29{bottom:565.815000px;}
.y14f{bottom:566.175000px;}
.y94{bottom:566.715000px;}
.y7c{bottom:567.255000px;}
.yad{bottom:572.475000px;}
.y11b{bottom:575.175000px;}
.yd7{bottom:577.335000px;}
.yfe{bottom:578.595000px;}
.y28{bottom:587.415000px;}
.y93{bottom:588.135000px;}
.y4d{bottom:591.555000px;}
.y14e{bottom:591.915000px;}
.y7a{bottom:593.175000px;}
.yac{bottom:597.495000px;}
.y7b{bottom:600.735000px;}
.yd6{bottom:603.075000px;}
.yfd{bottom:604.545000px;}
.y11a{bottom:605.445000px;}
.y27{bottom:608.865000px;}
.y15d{bottom:613.185000px;}
.y92{bottom:614.805000px;}
.y4c{bottom:617.325000px;}
.y13c{bottom:617.685000px;}
.y79{bottom:618.945000px;}
.yd4{bottom:628.845000px;}
.yfc{bottom:630.285000px;}
.y26{bottom:630.465000px;}
.y119{bottom:631.185000px;}
.yd5{bottom:636.405000px;}
.y15c{bottom:639.105000px;}
.yab{bottom:640.545000px;}
.y4b{bottom:643.245000px;}
.y13b{bottom:643.605000px;}
.y77{bottom:644.685000px;}
.y25{bottom:651.885000px;}
.y78{bottom:652.245000px;}
.yd3{bottom:654.765000px;}
.yfb{bottom:656.205000px;}
.y118{bottom:657.105000px;}
.yaa{bottom:662.145000px;}
.y15b{bottom:664.845000px;}
.y4a{bottom:668.985000px;}
.y13a{bottom:669.345000px;}
.y76{bottom:670.605000px;}
.ya6{bottom:670.965000px;}
.y24{bottom:673.485000px;}
.y14d{bottom:673.845000px;}
.yca{bottom:678.165000px;}
.ya9{bottom:679.605000px;}
.yd2{bottom:679.785000px;}
.yfa{bottom:681.945000px;}
.y117{bottom:682.845000px;}
.y23{bottom:694.905000px;}
.y15a{bottom:695.265000px;}
.y75{bottom:696.345000px;}
.y139{bottom:699.765000px;}
.yd1{bottom:701.205000px;}
.yc9{bottom:703.905000px;}
.yf9{bottom:707.865000px;}
.y116{bottom:713.265000px;}
.y22{bottom:716.505000px;}
.y49{bottom:720.645000px;}
.y159{bottom:721.005000px;}
.y74{bottom:722.265000px;}
.yd0{bottom:722.805000px;}
.y138{bottom:725.505000px;}
.yf8{bottom:733.605000px;}
.y21{bottom:738.105000px;}
.y115{bottom:739.005000px;}
.y48{bottom:746.385000px;}
.y73{bottom:748.005000px;}
.ycf{bottom:749.445000px;}
.y14c{bottom:751.425000px;}
.ya4{bottom:751.965000px;}
.y137{bottom:755.925000px;}
.y20{bottom:759.525000px;}
.yc5{bottom:763.665000px;}
.y114{bottom:769.425000px;}
.y47{bottom:772.305000px;}
.y72{bottom:773.925000px;}
.y158{bottom:777.165000px;}
.y1f{bottom:781.125000px;}
.y136{bottom:781.665000px;}
.yf7{bottom:785.265000px;}
.y113{bottom:795.165000px;}
.y46{bottom:798.045000px;}
.y71{bottom:799.665000px;}
.y1e{bottom:802.545000px;}
.y135{bottom:807.585000px;}
.ybf{bottom:810.465000px;}
.yf6{bottom:811.185000px;}
.yc4{bottom:820.905000px;}
.y45{bottom:823.965000px;}
.y1d{bottom:824.145000px;}
.y70{bottom:825.585000px;}
.y157{bottom:833.325000px;}
.yf5{bottom:836.205000px;}
.y134{bottom:837.825000px;}
.y1c{bottom:846.465000px;}
.y43{bottom:849.705000px;}
.y6f{bottom:851.325000px;}
.y44{bottom:857.265000px;}
.yf4{bottom:857.625000px;}
.y133{bottom:863.745000px;}
.yeb{bottom:864.105000px;}
.y1b{bottom:871.890000px;}
.yf3{bottom:875.310000px;}
.y42{bottom:875.670000px;}
.y6e{bottom:877.290000px;}
.yc8{bottom:884.850000px;}
.y132{bottom:889.530000px;}
.y1a{bottom:895.470000px;}
.y41{bottom:901.410000px;}
.y6d{bottom:903.030000px;}
.y19{bottom:919.230000px;}
.y131{bottom:919.950000px;}
.yc2{bottom:920.130000px;}
.y10f{bottom:923.370000px;}
.ye9{bottom:927.870000px;}
.y6c{bottom:928.950000px;}
.y91{bottom:936.510000px;}
.y40{bottom:941.730000px;}
.y18{bottom:942.810000px;}
.ybc{bottom:943.530000px;}
.y130{bottom:945.690000px;}
.y6b{bottom:954.690000px;}
.y17{bottom:966.570000px;}
.y3f{bottom:966.750000px;}
.y12f{bottom:971.430000px;}
.y6a{bottom:980.430000px;}
.yc7{bottom:987.990000px;}
.y3e{bottom:988.350000px;}
.y16{bottom:990.150000px;}
.ye7{bottom:997.350000px;}
.y12e{bottom:1001.850000px;}
.y69{bottom:1006.350000px;}
.y3d{bottom:1009.770000px;}
.y15{bottom:1013.550000px;}
.y12d{bottom:1027.590000px;}
.y3c{bottom:1031.370000px;}
.y68{bottom:1032.090000px;}
.y14{bottom:1035.870000px;}
.y3b{bottom:1052.790000px;}
.y12c{bottom:1053.510000px;}
.y67{bottom:1058.010000px;}
.y10c{bottom:1058.550000px;}
.y13{bottom:1062.330000px;}
.yf2{bottom:1065.570000px;}
.y3a{bottom:1074.390000px;}
.y12b{bottom:1079.250000px;}
.y66{bottom:1083.750000px;}
.y12{bottom:1091.310000px;}
.y39{bottom:1095.990000px;}
.y65{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.y38{bottom:1117.410000px;}
.y1{bottom:1134.150000px;}
.y64{bottom:1135.410000px;}
.y37{bottom:1139.040000px;}
.ya8{bottom:1143.000000px;}
.y34{bottom:1203.480000px;}
.h12{height:19.980000px;}
.h13{height:22.140000px;}
.h19{height:23.076000px;}
.h18{height:24.120000px;}
.h10{height:25.920000px;}
.h16{height:28.440000px;}
.h15{height:30.600000px;}
.h17{height:30.780000px;}
.h11{height:37.620000px;}
.hf{height:37.933594px;}
.h7{height:43.506914px;}
.hd{height:44.002969px;}
.h4{height:51.618867px;}
.h1a{height:56.160000px;}
.h6{height:56.900391px;}
.h1b{height:58.680000px;}
.h14{height:60.336000px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3{height:62.969766px;}
.hc{height:65.858555px;}
.h8{height:69.797812px;}
.h9{height:72.763945px;}
.hb{height:75.867188px;}
.he{height:79.347656px;}
.h2{height:86.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.wd{width:79.560000px;}
.wc{width:84.780000px;}
.wf{width:96.120000px;}
.w10{width:108.720000px;}
.wa{width:116.460000px;}
.w8{width:117.180000px;}
.w11{width:118.980000px;}
.w7{width:122.040000px;}
.we{width:129.960000px;}
.w13{width:131.436000px;}
.wb{width:133.596000px;}
.w12{width:136.260000px;}
.w9{width:156.270000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x3e{left:11.340000px;}
.x2a{left:12.600000px;}
.x3f{left:13.860000px;}
.x3c{left:16.020000px;}
.x48{left:27.900000px;}
.x38{left:30.060000px;}
.x3a{left:32.616000px;}
.x28{left:34.560000px;}
.x39{left:37.116000px;}
.x56{left:65.700000px;}
.x54{left:68.034000px;}
.x36{left:78.150000px;}
.x35{left:82.800000px;}
.x53{left:90.936000px;}
.x37{left:92.736000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.xf{left:110.915987px;}
.x26{left:115.415987px;}
.x46{left:126.755987px;}
.x16{left:138.455987px;}
.x44{left:149.435987px;}
.x9{left:159.509987px;}
.x30{left:162.029987px;}
.x1e{left:163.289987px;}
.xc{left:174.269973px;}
.xd{left:179.489987px;}
.x1b{left:182.729973px;}
.x40{left:184.169987px;}
.x2{left:185.799000px;}
.x1c{left:187.949987px;}
.x31{left:197.489987px;}
.x2b{left:204.689973px;}
.x2c{left:215.129987px;}
.x47{left:227.189987px;}
.x12{left:242.849973px;}
.x13{left:250.409987px;}
.x57{left:265.889987px;}
.x17{left:305.894973px;}
.x18{left:311.114987px;}
.x1f{left:317.414987px;}
.xe{left:322.454987px;}
.x33{left:335.414973px;}
.x34{left:345.854987px;}
.x22{left:375.914973px;}
.x23{left:386.354987px;}
.x4b{left:400.934973px;}
.x4c{left:411.374987px;}
.x24{left:422.714973px;}
.x32{left:423.794987px;}
.x25{left:433.154987px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.x51{left:492.944973px;}
.x41{left:496.544973px;}
.x52{left:503.384987px;}
.x42{left:506.984987px;}
.x58{left:513.104973px;}
.x59{left:523.544987px;}
.x19{left:548.744973px;}
.x1a{left:553.964987px;}
.x14{left:626.504973px;}
.x15{left:631.724987px;}
.x1d{left:637.844987px;}
.x4d{left:645.224987px;}
.x45{left:654.224987px;}
.x10{left:658.409973px;}
.x11{left:664.709987px;}
.x27{left:669.570000px;}
.xa{left:675.869973px;}
.x2f{left:680.009987px;}
.xb{left:681.089987px;}
.x49{left:686.490000px;}
.x29{left:691.350000px;}
.x3b{left:693.330000px;}
.x20{left:695.849973px;}
.x3d{left:698.370000px;}
.x4f{left:699.809973px;}
.x21{left:702.329987px;}
.x2d{left:703.769973px;}
.x50{left:710.249987px;}
.x2e{left:714.209987px;}
.x4e{left:717.629987px;}
.x55{left:740.310000px;}
.x4a{left:767.489987px;}
.x6{left:777.209987px;}
.x43{left:786.749987px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:26.880000pt;}
.ls2f{letter-spacing:-13.653333pt;}
.ls5d{letter-spacing:-9.813333pt;}
.ls42{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.874667pt;}
.ls6c{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.292267pt;}
.lsf{letter-spacing:-0.289067pt;}
.ls36{letter-spacing:-0.277333pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.262400pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls4c{letter-spacing:-0.239467pt;}
.ls30{letter-spacing:-0.213867pt;}
.ls2d{letter-spacing:-0.206933pt;}
.ls63{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.184533pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls41{letter-spacing:-0.126933pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.011520pt;}
.ls37{letter-spacing:-0.000640pt;}
.ls7{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.014080pt;}
.ls50{letter-spacing:0.033280pt;}
.ls62{letter-spacing:0.042667pt;}
.ls61{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.056320pt;}
.lsa{letter-spacing:0.056533pt;}
.ls5{letter-spacing:0.058667pt;}
.ls67{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.077440pt;}
.ls2c{letter-spacing:0.086933pt;}
.ls28{letter-spacing:0.095360pt;}
.ls68{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.102400pt;}
.ls44{letter-spacing:0.106667pt;}
.ls4b{letter-spacing:0.106880pt;}
.ls31{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.137600pt;}
.ls10{letter-spacing:0.153067pt;}
.ls35{letter-spacing:0.162987pt;}
.ls3b{letter-spacing:0.170667pt;}
.ls38{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls64{letter-spacing:0.234667pt;}
.ls69{letter-spacing:0.235733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.259733pt;}
.ls2e{letter-spacing:0.264533pt;}
.ls33{letter-spacing:0.265600pt;}
.ls60{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.307840pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.362667pt;}
.ls6b{letter-spacing:0.384000pt;}
.ls49{letter-spacing:0.401707pt;}
.ls66{letter-spacing:0.416000pt;}
.ls3d{letter-spacing:0.426240pt;}
.ls45{letter-spacing:0.433280pt;}
.ls52{letter-spacing:0.513280pt;}
.ls4a{letter-spacing:0.544000pt;}
.ls5f{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.696320pt;}
.ls16{letter-spacing:0.698667pt;}
.ls2b{letter-spacing:0.717440pt;}
.ls21{letter-spacing:0.736000pt;}
.ls3f{letter-spacing:0.737280pt;}
.ls1c{letter-spacing:0.777600pt;}
.ls39{letter-spacing:0.832000pt;}
.ls1f{letter-spacing:0.869333pt;}
.ls65{letter-spacing:0.896000pt;}
.ls4d{letter-spacing:0.901333pt;}
.ls3e{letter-spacing:1.073280pt;}
.ls53{letter-spacing:1.216000pt;}
.ls47{letter-spacing:1.856000pt;}
.ls56{letter-spacing:2.752000pt;}
.ls3a{letter-spacing:3.136000pt;}
.ls40{letter-spacing:3.633280pt;}
.ls1a{letter-spacing:3.776000pt;}
.ls51{letter-spacing:4.416000pt;}
.ls32{letter-spacing:5.056000pt;}
.ls34{letter-spacing:5.553280pt;}
.ls15{letter-spacing:5.568000pt;}
.ls19{letter-spacing:5.696000pt;}
.ls55{letter-spacing:6.592000pt;}
.ls5a{letter-spacing:6.976000pt;}
.ls25{letter-spacing:7.136000pt;}
.ls1{letter-spacing:7.473280pt;}
.ls24{letter-spacing:7.616000pt;}
.ls6a{letter-spacing:8.053333pt;}
.ls5c{letter-spacing:8.113280pt;}
.ls18{letter-spacing:8.256000pt;}
.ls3c{letter-spacing:9.056000pt;}
.ls6{letter-spacing:9.393280pt;}
.ls14{letter-spacing:9.792000pt;}
.ls13{letter-spacing:9.952000pt;}
.ls46{letter-spacing:10.176000pt;}
.ls1b{letter-spacing:10.816000pt;}
.ls4e{letter-spacing:11.456000pt;}
.ls5e{letter-spacing:12.096000pt;}
.ls54{letter-spacing:13.376000pt;}
.ls5b{letter-spacing:14.016000pt;}
.ls4f{letter-spacing:16.576000pt;}
.ls57{letter-spacing:18.496000pt;}
.ls59{letter-spacing:21.312000pt;}
.ls26{letter-spacing:26.816000pt;}
.ls48{letter-spacing:28.352000pt;}
.ws3e{word-spacing:-18.048000pt;}
.ws35{word-spacing:-17.984001pt;}
.wsb{word-spacing:-17.984000pt;}
.ws37{word-spacing:-17.792000pt;}
.ws3f{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.647680pt;}
.ws8{word-spacing:-16.603947pt;}
.ws5{word-spacing:-16.545280pt;}
.ws7{word-spacing:-16.360747pt;}
.wsa{word-spacing:-16.256213pt;}
.ws2d{word-spacing:-16.064000pt;}
.ws21{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.670613pt;}
.ws34{word-spacing:-15.552000pt;}
.ws40{word-spacing:-15.296000pt;}
.ws0{word-spacing:-15.246720pt;}
.ws1c{word-spacing:-15.191253pt;}
.ws18{word-spacing:-15.157653pt;}
.wsc{word-spacing:-15.064320pt;}
.ws30{word-spacing:-15.033387pt;}
.ws1{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.664320pt;}
.ws3{word-spacing:-14.660053pt;}
.ws29{word-spacing:-14.649387pt;}
.ws4{word-spacing:-14.606720pt;}
.ws11{word-spacing:-14.342400pt;}
.ws17{word-spacing:-13.856640pt;}
.wse{word-spacing:-13.273707pt;}
.wsd{word-spacing:-13.120640pt;}
.ws2f{word-spacing:-13.109120pt;}
.ws1e{word-spacing:-12.906773pt;}
.ws33{word-spacing:-12.881173pt;}
.ws19{word-spacing:-12.828373pt;}
.ws36{word-spacing:-12.736000pt;}
.ws38{word-spacing:-10.666453pt;}
.ws22{word-spacing:-10.430720pt;}
.ws2e{word-spacing:-10.303787pt;}
.ws32{word-spacing:-8.992000pt;}
.wsf{word-spacing:-8.864000pt;}
.ws23{word-spacing:-0.507520pt;}
.ws24{word-spacing:-0.355200pt;}
.ws31{word-spacing:-0.283520pt;}
.ws2a{word-spacing:-0.136320pt;}
.ws20{word-spacing:-0.128000pt;}
.ws25{word-spacing:-0.094080pt;}
.ws13{word-spacing:-0.064000pt;}
.ws10{word-spacing:0.000000pt;}
.ws14{word-spacing:0.032000pt;}
.ws27{word-spacing:0.112000pt;}
.ws16{word-spacing:0.113280pt;}
.ws26{word-spacing:0.145920pt;}
.ws1f{word-spacing:0.167680pt;}
.ws1b{word-spacing:0.188160pt;}
.ws3c{word-spacing:0.224000pt;}
.ws28{word-spacing:0.327680pt;}
.ws2b{word-spacing:0.362667pt;}
.ws2c{word-spacing:0.426667pt;}
.ws3b{word-spacing:0.608000pt;}
.ws3a{word-spacing:0.640000pt;}
.ws15{word-spacing:0.677547pt;}
.ws3d{word-spacing:0.682667pt;}
.ws1a{word-spacing:0.752000pt;}
.ws39{word-spacing:0.864000pt;}
.ws1d{word-spacing:1.187200pt;}
._24{margin-left:-5.793707pt;}
._13{margin-left:-4.547840pt;}
._d{margin-left:-3.388160pt;}
._e{margin-left:-2.307840pt;}
._8{margin-left:-1.347840pt;}
._0{width:1.168640pt;}
._9{width:2.766507pt;}
._a{width:3.724160pt;}
._5{width:4.634240pt;}
._3{width:5.549440pt;}
._1{width:6.799360pt;}
._2{width:7.700907pt;}
._6{width:8.658560pt;}
._7{width:9.651840pt;}
._b{width:11.293440pt;}
._4{width:12.430080pt;}
._c{width:13.470507pt;}
._11{width:14.713173pt;}
._14{width:15.680000pt;}
._15{width:16.734720pt;}
._1c{width:19.439360pt;}
._f{width:20.586667pt;}
._10{width:21.578667pt;}
._1f{width:22.521173pt;}
._1e{width:23.684693pt;}
._17{width:24.768000pt;}
._18{width:26.048000pt;}
._1b{width:26.983253pt;}
._1a{width:27.904000pt;}
._20{width:28.808107pt;}
._21{width:29.760000pt;}
._12{width:30.720000pt;}
._1d{width:31.914667pt;}
._22{width:33.024000pt;}
._23{width:34.153387pt;}
._16{width:38.976000pt;}
._19{width:39.936000pt;}
._25{width:41.472000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y112{bottom:-26.720000pt;}
.y10e{bottom:-21.760000pt;}
.ybd{bottom:-1.120000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:0.800000pt;}
.yec{bottom:1.600000pt;}
.yea{bottom:2.560000pt;}
.y5{bottom:3.706667pt;}
.ya5{bottom:4.160000pt;}
.yc6{bottom:6.400000pt;}
.y111{bottom:6.720000pt;}
.yc1{bottom:8.160000pt;}
.yc3{bottom:8.320000pt;}
.ye8{bottom:8.480000pt;}
.ya7{bottom:14.560000pt;}
.y4{bottom:22.746667pt;}
.y10d{bottom:31.200000pt;}
.y110{bottom:33.440000pt;}
.yc0{bottom:34.880000pt;}
.y3{bottom:41.946667pt;}
.y2{bottom:60.986667pt;}
.y36{bottom:67.712000pt;}
.y11{bottom:83.072000pt;}
.y35{bottom:84.672000pt;}
.y10{bottom:100.992000pt;}
.y63{bottom:103.232000pt;}
.ya3{bottom:108.512000pt;}
.yf1{bottom:113.952000pt;}
.y156{bottom:115.872000pt;}
.yf{bottom:117.952000pt;}
.y62{bottom:122.432000pt;}
.y61{bottom:127.712000pt;}
.ye{bottom:136.506667pt;}
.yf0{bottom:136.986667pt;}
.y155{bottom:138.906667pt;}
.y60{bottom:141.466667pt;}
.y12a{bottom:142.426667pt;}
.y90{bottom:146.746667pt;}
.yd{bottom:155.706667pt;}
.yef{bottom:159.866667pt;}
.y5f{bottom:160.666667pt;}
.y14b{bottom:161.786667pt;}
.y8a{bottom:165.946667pt;}
.yc{bottom:174.746667pt;}
.y5e{bottom:179.866667pt;}
.ye6{bottom:180.826667pt;}
.yee{bottom:182.906667pt;}
.y14a{bottom:184.826667pt;}
.y89{bottom:185.146667pt;}
.yb{bottom:193.946667pt;}
.y129{bottom:196.826667pt;}
.y5d{bottom:198.906667pt;}
.y8f{bottom:199.866667pt;}
.y88{bottom:204.186667pt;}
.yed{bottom:205.786667pt;}
.y149{bottom:207.706667pt;}
.ya{bottom:213.146667pt;}
.ye5{bottom:214.746667pt;}
.y10b{bottom:216.026667pt;}
.y5c{bottom:218.106667pt;}
.y87{bottom:219.066667pt;}
.y127{bottom:219.706667pt;}
.y5b{bottom:223.386667pt;}
.y128{bottom:226.426667pt;}
.y8e{bottom:228.826667pt;}
.y148{bottom:230.746667pt;}
.y9{bottom:232.186667pt;}
.y154{bottom:234.746667pt;}
.ybb{bottom:237.146667pt;}
.ye4{bottom:237.626667pt;}
.y5a{bottom:238.106667pt;}
.y10a{bottom:238.906667pt;}
.yce{bottom:242.426667pt;}
.y126{bottom:246.746667pt;}
.ya2{bottom:247.706667pt;}
.y8{bottom:251.386667pt;}
.y8d{bottom:251.706667pt;}
.yba{bottom:256.346667pt;}
.y147{bottom:257.626667pt;}
.ye3{bottom:260.666667pt;}
.y109{bottom:261.786667pt;}
.y125{bottom:269.626667pt;}
.ya1{bottom:270.586667pt;}
.y58{bottom:273.306667pt;}
.y86{bottom:274.746667pt;}
.yb9{bottom:275.386667pt;}
.y59{bottom:280.026667pt;}
.y146{bottom:280.506667pt;}
.ye2{bottom:283.546667pt;}
.y107{bottom:284.826667pt;}
.y7{bottom:285.786667pt;}
.y108{bottom:291.546667pt;}
.y9f{bottom:293.626667pt;}
.yb8{bottom:294.586667pt;}
.y57{bottom:296.186667pt;}
.y124{bottom:296.506667pt;}
.y85{bottom:297.626667pt;}
.ycd{bottom:299.906667pt;}
.ya0{bottom:300.386667pt;}
.y145{bottom:303.586667pt;}
.ye1{bottom:306.466667pt;}
.y153{bottom:307.586667pt;}
.y106{bottom:307.746667pt;}
.y33{bottom:311.746667pt;}
.yb7{bottom:313.666667pt;}
.ycc{bottom:314.626667pt;}
.y9e{bottom:316.546667pt;}
.y56{bottom:319.266667pt;}
.y123{bottom:319.586667pt;}
.y84{bottom:320.546667pt;}
.y165{bottom:322.466667pt;}
.y144{bottom:326.466667pt;}
.y8c{bottom:327.266667pt;}
.ye0{bottom:329.506667pt;}
.y152{bottom:330.466667pt;}
.y32{bottom:330.786667pt;}
.yb6{bottom:332.866667pt;}
.yb5{bottom:338.146667pt;}
.y9c{bottom:339.586667pt;}
.y55{bottom:342.146667pt;}
.y122{bottom:342.466667pt;}
.y83{bottom:343.586667pt;}
.y164{bottom:345.506667pt;}
.y9d{bottom:346.306667pt;}
.y31{bottom:349.986667pt;}
.ycb{bottom:350.306667pt;}
.ydf{bottom:352.386667pt;}
.yb4{bottom:353.026667pt;}
.y143{bottom:353.506667pt;}
.y105{bottom:353.666667pt;}
.y9a{bottom:362.466667pt;}
.y54{bottom:365.026667pt;}
.y82{bottom:366.466667pt;}
.y30{bottom:369.026667pt;}
.y9b{bottom:369.186667pt;}
.y121{bottom:369.506667pt;}
.y163{bottom:372.386667pt;}
.y8b{bottom:373.186667pt;}
.yde{bottom:375.426667pt;}
.y142{bottom:376.386667pt;}
.y104{bottom:376.706667pt;}
.y99{bottom:385.506667pt;}
.y53{bottom:388.066667pt;}
.y2f{bottom:388.226667pt;}
.y81{bottom:389.506667pt;}
.y120{bottom:392.386667pt;}
.yb3{bottom:394.146667pt;}
.y162{bottom:395.426667pt;}
.ydd{bottom:398.306667pt;}
.y141{bottom:399.426667pt;}
.y102{bottom:399.586667pt;}
.y151{bottom:403.426667pt;}
.y103{bottom:406.306667pt;}
.y2e{bottom:407.266667pt;}
.y98{bottom:408.386667pt;}
.y52{bottom:410.946667pt;}
.y80{bottom:412.386667pt;}
.y11f{bottom:415.426667pt;}
.yb2{bottom:417.026667pt;}
.ydc{bottom:421.346667pt;}
.y161{bottom:422.306667pt;}
.y101{bottom:422.626667pt;}
.y140{bottom:426.306667pt;}
.y2d{bottom:426.466667pt;}
.y97{bottom:431.266667pt;}
.y51{bottom:433.986667pt;}
.y7f{bottom:435.426667pt;}
.yb0{bottom:440.066667pt;}
.y11e{bottom:442.306667pt;}
.ydb{bottom:444.226667pt;}
.y160{bottom:445.346667pt;}
.y2c{bottom:445.506667pt;}
.yb1{bottom:446.786667pt;}
.y13f{bottom:449.346667pt;}
.y150{bottom:453.346667pt;}
.y96{bottom:454.306667pt;}
.y50{bottom:456.866667pt;}
.y7e{bottom:458.306667pt;}
.yaf{bottom:462.946667pt;}
.y2b{bottom:464.706667pt;}
.y11d{bottom:465.346667pt;}
.yd9{bottom:467.266667pt;}
.y100{bottom:468.546667pt;}
.y15f{bottom:472.226667pt;}
.yda{bottom:473.986667pt;}
.y13e{bottom:476.226667pt;}
.y4f{bottom:479.906667pt;}
.y7d{bottom:481.346667pt;}
.y2a{bottom:483.906667pt;}
.y95{bottom:484.546667pt;}
.yae{bottom:485.826667pt;}
.y11c{bottom:488.226667pt;}
.yd8{bottom:490.146667pt;}
.yff{bottom:491.426667pt;}
.y15e{bottom:495.266667pt;}
.y13d{bottom:499.266667pt;}
.y4e{bottom:502.786667pt;}
.y29{bottom:502.946667pt;}
.y14f{bottom:503.266667pt;}
.y94{bottom:503.746667pt;}
.y7c{bottom:504.226667pt;}
.yad{bottom:508.866667pt;}
.y11b{bottom:511.266667pt;}
.yd7{bottom:513.186667pt;}
.yfe{bottom:514.306667pt;}
.y28{bottom:522.146667pt;}
.y93{bottom:522.786667pt;}
.y4d{bottom:525.826667pt;}
.y14e{bottom:526.146667pt;}
.y7a{bottom:527.266667pt;}
.yac{bottom:531.106667pt;}
.y7b{bottom:533.986667pt;}
.yd6{bottom:536.066667pt;}
.yfd{bottom:537.373333pt;}
.y11a{bottom:538.173333pt;}
.y27{bottom:541.213333pt;}
.y15d{bottom:545.053333pt;}
.y92{bottom:546.493333pt;}
.y4c{bottom:548.733333pt;}
.y13c{bottom:549.053333pt;}
.y79{bottom:550.173333pt;}
.yd4{bottom:558.973333pt;}
.yfc{bottom:560.253333pt;}
.y26{bottom:560.413333pt;}
.y119{bottom:561.053333pt;}
.yd5{bottom:565.693333pt;}
.y15c{bottom:568.093333pt;}
.yab{bottom:569.373333pt;}
.y4b{bottom:571.773333pt;}
.y13b{bottom:572.093333pt;}
.y77{bottom:573.053333pt;}
.y25{bottom:579.453333pt;}
.y78{bottom:579.773333pt;}
.yd3{bottom:582.013333pt;}
.yfb{bottom:583.293333pt;}
.y118{bottom:584.093333pt;}
.yaa{bottom:588.573333pt;}
.y15b{bottom:590.973333pt;}
.y4a{bottom:594.653333pt;}
.y13a{bottom:594.973333pt;}
.y76{bottom:596.093333pt;}
.ya6{bottom:596.413333pt;}
.y24{bottom:598.653333pt;}
.y14d{bottom:598.973333pt;}
.yca{bottom:602.813333pt;}
.ya9{bottom:604.093333pt;}
.yd2{bottom:604.253333pt;}
.yfa{bottom:606.173333pt;}
.y117{bottom:606.973333pt;}
.y23{bottom:617.693333pt;}
.y15a{bottom:618.013333pt;}
.y75{bottom:618.973333pt;}
.y139{bottom:622.013333pt;}
.yd1{bottom:623.293333pt;}
.yc9{bottom:625.693333pt;}
.yf9{bottom:629.213333pt;}
.y116{bottom:634.013333pt;}
.y22{bottom:636.893333pt;}
.y49{bottom:640.573333pt;}
.y159{bottom:640.893333pt;}
.y74{bottom:642.013333pt;}
.yd0{bottom:642.493333pt;}
.y138{bottom:644.893333pt;}
.yf8{bottom:652.093333pt;}
.y21{bottom:656.093333pt;}
.y115{bottom:656.893333pt;}
.y48{bottom:663.453333pt;}
.y73{bottom:664.893333pt;}
.ycf{bottom:666.173333pt;}
.y14c{bottom:667.933333pt;}
.ya4{bottom:668.413333pt;}
.y137{bottom:671.933333pt;}
.y20{bottom:675.133333pt;}
.yc5{bottom:678.813333pt;}
.y114{bottom:683.933333pt;}
.y47{bottom:686.493333pt;}
.y72{bottom:687.933333pt;}
.y158{bottom:690.813333pt;}
.y1f{bottom:694.333333pt;}
.y136{bottom:694.813333pt;}
.yf7{bottom:698.013333pt;}
.y113{bottom:706.813333pt;}
.y46{bottom:709.373333pt;}
.y71{bottom:710.813333pt;}
.y1e{bottom:713.373333pt;}
.y135{bottom:717.853333pt;}
.ybf{bottom:720.413333pt;}
.yf6{bottom:721.053333pt;}
.yc4{bottom:729.693333pt;}
.y45{bottom:732.413333pt;}
.y1d{bottom:732.573333pt;}
.y70{bottom:733.853333pt;}
.y157{bottom:740.733333pt;}
.yf5{bottom:743.293333pt;}
.y134{bottom:744.733333pt;}
.y1c{bottom:752.413333pt;}
.y43{bottom:755.293333pt;}
.y6f{bottom:756.733333pt;}
.y44{bottom:762.013333pt;}
.yf4{bottom:762.333333pt;}
.y133{bottom:767.773333pt;}
.yeb{bottom:768.093333pt;}
.y1b{bottom:775.013333pt;}
.yf3{bottom:778.053333pt;}
.y42{bottom:778.373333pt;}
.y6e{bottom:779.813333pt;}
.yc8{bottom:786.533333pt;}
.y132{bottom:790.693333pt;}
.y1a{bottom:795.973333pt;}
.y41{bottom:801.253333pt;}
.y6d{bottom:802.693333pt;}
.y19{bottom:817.093333pt;}
.y131{bottom:817.733333pt;}
.yc2{bottom:817.893333pt;}
.y10f{bottom:820.773333pt;}
.ye9{bottom:824.773333pt;}
.y6c{bottom:825.733333pt;}
.y91{bottom:832.453333pt;}
.y40{bottom:837.093333pt;}
.y18{bottom:838.053333pt;}
.ybc{bottom:838.693333pt;}
.y130{bottom:840.613333pt;}
.y6b{bottom:848.613333pt;}
.y17{bottom:859.173333pt;}
.y3f{bottom:859.333333pt;}
.y12f{bottom:863.493333pt;}
.y6a{bottom:871.493333pt;}
.yc7{bottom:878.213333pt;}
.y3e{bottom:878.533333pt;}
.y16{bottom:880.133333pt;}
.ye7{bottom:886.533333pt;}
.y12e{bottom:890.533333pt;}
.y69{bottom:894.533333pt;}
.y3d{bottom:897.573333pt;}
.y15{bottom:900.933333pt;}
.y12d{bottom:913.413333pt;}
.y3c{bottom:916.773333pt;}
.y68{bottom:917.413333pt;}
.y14{bottom:920.773333pt;}
.y3b{bottom:935.813333pt;}
.y12c{bottom:936.453333pt;}
.y67{bottom:940.453333pt;}
.y10c{bottom:940.933333pt;}
.y13{bottom:944.293333pt;}
.yf2{bottom:947.173333pt;}
.y3a{bottom:955.013333pt;}
.y12b{bottom:959.333333pt;}
.y66{bottom:963.333333pt;}
.y12{bottom:970.053333pt;}
.y39{bottom:974.213333pt;}
.y65{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.y38{bottom:993.253333pt;}
.y1{bottom:1008.133333pt;}
.y64{bottom:1009.253333pt;}
.y37{bottom:1012.480000pt;}
.ya8{bottom:1016.000000pt;}
.y34{bottom:1069.760000pt;}
.h12{height:17.760000pt;}
.h13{height:19.680000pt;}
.h19{height:20.512000pt;}
.h18{height:21.440000pt;}
.h10{height:23.040000pt;}
.h16{height:25.280000pt;}
.h15{height:27.200000pt;}
.h17{height:27.360000pt;}
.h11{height:33.440000pt;}
.hf{height:33.718750pt;}
.h7{height:38.672812pt;}
.hd{height:39.113750pt;}
.h4{height:45.883437pt;}
.h1a{height:49.920000pt;}
.h6{height:50.578125pt;}
.h1b{height:52.160000pt;}
.h14{height:53.632000pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3{height:55.973125pt;}
.hc{height:58.540937pt;}
.h8{height:62.042500pt;}
.h9{height:64.679063pt;}
.hb{height:67.437500pt;}
.he{height:70.531250pt;}
.h2{height:76.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.wd{width:70.720000pt;}
.wc{width:75.360000pt;}
.wf{width:85.440000pt;}
.w10{width:96.640000pt;}
.wa{width:103.520000pt;}
.w8{width:104.160000pt;}
.w11{width:105.760000pt;}
.w7{width:108.480000pt;}
.we{width:115.520000pt;}
.w13{width:116.832000pt;}
.wb{width:118.752000pt;}
.w12{width:121.120000pt;}
.w9{width:138.906667pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x3e{left:10.080000pt;}
.x2a{left:11.200000pt;}
.x3f{left:12.320000pt;}
.x3c{left:14.240000pt;}
.x48{left:24.800000pt;}
.x38{left:26.720000pt;}
.x3a{left:28.992000pt;}
.x28{left:30.720000pt;}
.x39{left:32.992000pt;}
.x56{left:58.400000pt;}
.x54{left:60.474667pt;}
.x36{left:69.466667pt;}
.x35{left:73.600000pt;}
.x53{left:80.832000pt;}
.x37{left:82.432000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.xf{left:98.591988pt;}
.x26{left:102.591988pt;}
.x46{left:112.671988pt;}
.x16{left:123.071988pt;}
.x44{left:132.831988pt;}
.x9{left:141.786655pt;}
.x30{left:144.026655pt;}
.x1e{left:145.146655pt;}
.xc{left:154.906643pt;}
.xd{left:159.546655pt;}
.x1b{left:162.426643pt;}
.x40{left:163.706655pt;}
.x2{left:165.154667pt;}
.x1c{left:167.066655pt;}
.x31{left:175.546655pt;}
.x2b{left:181.946643pt;}
.x2c{left:191.226655pt;}
.x47{left:201.946655pt;}
.x12{left:215.866643pt;}
.x13{left:222.586655pt;}
.x57{left:236.346655pt;}
.x17{left:271.906643pt;}
.x18{left:276.546655pt;}
.x1f{left:282.146655pt;}
.xe{left:286.626655pt;}
.x33{left:298.146643pt;}
.x34{left:307.426655pt;}
.x22{left:334.146643pt;}
.x23{left:343.426655pt;}
.x4b{left:356.386643pt;}
.x4c{left:365.666655pt;}
.x24{left:375.746643pt;}
.x32{left:376.706655pt;}
.x25{left:385.026655pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.x51{left:438.173310pt;}
.x41{left:441.373310pt;}
.x52{left:447.453322pt;}
.x42{left:450.653322pt;}
.x58{left:456.093310pt;}
.x59{left:465.373322pt;}
.x19{left:487.773310pt;}
.x1a{left:492.413322pt;}
.x14{left:556.893310pt;}
.x15{left:561.533322pt;}
.x1d{left:566.973322pt;}
.x4d{left:573.533322pt;}
.x45{left:581.533322pt;}
.x10{left:585.253310pt;}
.x11{left:590.853322pt;}
.x27{left:595.173333pt;}
.xa{left:600.773310pt;}
.x2f{left:604.453322pt;}
.xb{left:605.413322pt;}
.x49{left:610.213333pt;}
.x29{left:614.533333pt;}
.x3b{left:616.293333pt;}
.x20{left:618.533310pt;}
.x3d{left:620.773333pt;}
.x4f{left:622.053310pt;}
.x21{left:624.293322pt;}
.x2d{left:625.573310pt;}
.x50{left:631.333322pt;}
.x2e{left:634.853322pt;}
.x4e{left:637.893322pt;}
.x55{left:658.053333pt;}
.x4a{left:682.213322pt;}
.x6{left:690.853322pt;}
.x43{left:699.333322pt;}
}




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