
    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_afc151ff540c83f4c751f2a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6b135436b4d717079fc0cdaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_19ea1633f06ec9c529d74c25.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_c56c15a161b5a5e27a0b3515.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123333;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_eb057b206a3f7b3c50b84656.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125533;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_0076dd9359ba0edf3454f9ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_e591c3f557bda56f969f3d3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_dcf607b90b38803196d83aa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.961000;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_e965007c09e3331087eb5576.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_75fe8a9ad87bfa63f26f85a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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_e8c65083b5e8f35a0b985849.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.764000;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_3bacd9872268e97d9757ba4b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3516e69f01f8e3a47032629a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d1b6245fc822a00e296e6822.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.561120px;}
.ls12{letter-spacing:-1.623240px;}
.lse{letter-spacing:-0.480960px;}
.ls13{letter-spacing:-0.420840px;}
.ls19{letter-spacing:-0.360720px;}
.ls18{letter-spacing:-0.300600px;}
.ls17{letter-spacing:-0.240480px;}
.ls1d{letter-spacing:-0.180360px;}
.lsa{letter-spacing:-0.131760px;}
.ls5{letter-spacing:-0.120240px;}
.ls8{letter-spacing:-0.065880px;}
.lsd{letter-spacing:-0.060120px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060120px;}
.ls1{letter-spacing:0.065880px;}
.lsb{letter-spacing:0.078120px;}
.lsf{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.131760px;}
.ls29{letter-spacing:0.156240px;}
.lsc{letter-spacing:0.180360px;}
.ls0{letter-spacing:0.197640px;}
.ls27{letter-spacing:1.635264px;}
.ls28{letter-spacing:1.923840px;}
.ls2{letter-spacing:2.284560px;}
.ls3{letter-spacing:4.088160px;}
.ls22{letter-spacing:6.252480px;}
.ls1c{letter-spacing:8.056080px;}
.ls16{letter-spacing:9.138240px;}
.ls4{letter-spacing:11.663280px;}
.ls1b{letter-spacing:17.795520px;}
.ls1a{letter-spacing:18.156240px;}
.ls23{letter-spacing:18.877680px;}
.ls24{letter-spacing:19.238400px;}
.ls10{letter-spacing:22.124160px;}
.ls25{letter-spacing:26.452800px;}
.ls1f{letter-spacing:29.699280px;}
.ls14{letter-spacing:41.182200px;}
.ls15{letter-spacing:41.542920px;}
.ls21{letter-spacing:47.314440px;}
.ls20{letter-spacing:62.103960px;}
.ls26{letter-spacing:86.572800px;}
.ls1e{letter-spacing:137.271600px;}
.ls11{letter-spacing:848.954520px;}
.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;}
}
.ws1b{word-spacing:-60.120000px;}
.ws5{word-spacing:-17.919360px;}
.ws4{word-spacing:-17.721720px;}
.ws6{word-spacing:-17.655840px;}
.ws19{word-spacing:-16.352640px;}
.wsb{word-spacing:-16.292520px;}
.ws17{word-spacing:-16.232400px;}
.ws25{word-spacing:-16.172280px;}
.ws18{word-spacing:-16.112160px;}
.wsa{word-spacing:-16.074720px;}
.ws7{word-spacing:-16.008840px;}
.ws9{word-spacing:-15.942960px;}
.ws8{word-spacing:-15.877080px;}
.ws1a{word-spacing:-14.789520px;}
.wse{word-spacing:-14.669280px;}
.ws3{word-spacing:-14.609160px;}
.wsc{word-spacing:-14.549040px;}
.wsd{word-spacing:-14.488920px;}
.ws1f{word-spacing:-14.428800px;}
.ws23{word-spacing:-14.368680px;}
.ws1c{word-spacing:-14.248440px;}
.ws15{word-spacing:-14.188320px;}
.ws21{word-spacing:-14.128200px;}
.ws13{word-spacing:-0.180360px;}
.ws28{word-spacing:-0.156240px;}
.ws26{word-spacing:-0.131760px;}
.ws0{word-spacing:-0.120240px;}
.ws12{word-spacing:-0.078120px;}
.ws11{word-spacing:-0.065880px;}
.ws1{word-spacing:-0.060120px;}
.ws10{word-spacing:0.000000px;}
.ws2{word-spacing:0.060120px;}
.ws27{word-spacing:0.065880px;}
.wsf{word-spacing:0.120240px;}
.ws24{word-spacing:0.180360px;}
.ws1d{word-spacing:0.240480px;}
.ws1e{word-spacing:0.300600px;}
.ws20{word-spacing:0.360720px;}
.ws22{word-spacing:0.420840px;}
.ws14{word-spacing:0.480960px;}
.ws2b{word-spacing:1.022040px;}
.ws16{word-spacing:1.623240px;}
.ws29{word-spacing:1.743480px;}
.ws2c{word-spacing:3.486960px;}
.ws2a{word-spacing:5.951880px;}
._27{margin-left:-8.969904px;}
._d{margin-left:-3.699576px;}
._5{margin-left:-2.611116px;}
._3{margin-left:-1.393200px;}
._0{width:1.052100px;}
._4{width:2.126664px;}
._8{width:4.110624px;}
._7{width:5.573124px;}
._6{width:6.919812px;}
._15{width:7.929828px;}
._1b{width:9.276516px;}
._1a{width:10.370700px;}
._14{width:11.470896px;}
._c{width:13.052052px;}
._9{width:16.364664px;}
._21{width:17.753436px;}
._20{width:19.653228px;}
._1f{width:20.747412px;}
._12{width:22.238388px;}
._17{width:24.144192px;}
._13{width:25.244388px;}
._23{width:26.445204px;}
._10{width:27.516924px;}
._1c{width:29.476836px;}
._1d{width:31.039956px;}
._19{width:33.084036px;}
._a{width:34.128540px;}
._22{width:35.819496px;}
._b{width:37.320912px;}
._1e{width:38.328084px;}
._24{width:39.621924px;}
._f{width:41.681196px;}
._2f{width:42.859548px;}
._31{width:44.230284px;}
._26{width:46.953720px;}
._2a{width:48.065940px;}
._28{width:49.075956px;}
._16{width:51.546888px;}
._e{width:52.653096px;}
._2d{width:64.647036px;}
._32{width:86.783220px;}
._11{width:110.428416px;}
._2b{width:145.171764px;}
._2e{width:251.938872px;}
._1{width:284.036940px;}
._33{width:306.281340px;}
._2c{width:500.619240px;}
._25{width:502.422840px;}
._2{width:503.505000px;}
._18{width:505.308600px;}
._29{width:507.472920px;}
._30{width:892.842120px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y140{bottom:4.319850px;}
.ya6{bottom:4.320000px;}
.yb6{bottom:63.900000px;}
.yac{bottom:63.990000px;}
.y138{bottom:83.880000px;}
.y186{bottom:91.574640px;}
.y36{bottom:91.888560px;}
.y163{bottom:112.255920px;}
.y185{bottom:112.361130px;}
.y35{bottom:112.765230px;}
.yde{bottom:121.500810px;}
.yef{bottom:121.590990px;}
.y162{bottom:133.132590px;}
.y184{bottom:133.237800px;}
.y34{bottom:133.641900px;}
.y4c{bottom:133.717050px;}
.ydd{bottom:141.295320px;}
.yee{bottom:141.385500px;}
.y161{bottom:154.009260px;}
.y183{bottom:154.114470px;}
.y33{bottom:154.518570px;}
.y4b{bottom:154.593720px;}
.ydc{bottom:161.180010px;}
.yed{bottom:161.270190px;}
.y160{bottom:174.885930px;}
.y182{bottom:174.991140px;}
.y32{bottom:175.305060px;}
.y4a{bottom:175.380210px;}
.ydb{bottom:181.064700px;}
.yec{bottom:181.154880px;}
.y127{bottom:183.716640px;}
.y15f{bottom:195.762600px;}
.y181{bottom:195.867810px;}
.y31{bottom:196.181730px;}
.y49{bottom:196.256880px;}
.yda{bottom:200.949390px;}
.yeb{bottom:201.039570px;}
.y112{bottom:204.533190px;}
.y126{bottom:204.593310px;}
.y15e{bottom:216.639270px;}
.y180{bottom:216.744480px;}
.y30{bottom:217.058400px;}
.y48{bottom:217.133550px;}
.yd9{bottom:220.834080px;}
.yea{bottom:220.924260px;}
.y111{bottom:225.409860px;}
.y125{bottom:225.469980px;}
.y15d{bottom:237.515940px;}
.y17f{bottom:237.621150px;}
.y2f{bottom:237.935070px;}
.y47{bottom:238.010220px;}
.yd8{bottom:240.718770px;}
.ye9{bottom:240.808950px;}
.y110{bottom:246.286530px;}
.y124{bottom:246.346650px;}
.y15c{bottom:258.392610px;}
.y17e{bottom:258.497820px;}
.y2e{bottom:258.811740px;}
.y46{bottom:258.886890px;}
.yd7{bottom:260.513280px;}
.ye8{bottom:260.603460px;}
.ya1{bottom:265.239360px;}
.y10f{bottom:267.163200px;}
.y123{bottom:267.223320px;}
.y15b{bottom:279.179100px;}
.y17d{bottom:279.284310px;}
.y2d{bottom:279.688410px;}
.y45{bottom:279.763560px;}
.yd6{bottom:280.397970px;}
.ye7{bottom:280.488150px;}
.y76{bottom:285.980760px;}
.y10e{bottom:288.039870px;}
.y122{bottom:288.099990px;}
.y15a{bottom:300.055770px;}
.y17c{bottom:300.160980px;}
.yd5{bottom:300.282660px;}
.ye6{bottom:300.372840px;}
.y2c{bottom:300.565080px;}
.y44{bottom:300.640230px;}
.y75{bottom:306.857430px;}
.ya0{bottom:306.992700px;}
.y1a8{bottom:307.984680px;}
.y10d{bottom:308.826360px;}
.y121{bottom:308.886480px;}
.yd4{bottom:320.167350px;}
.ye5{bottom:320.257530px;}
.y159{bottom:320.932440px;}
.y17b{bottom:321.037650px;}
.y2b{bottom:321.441750px;}
.y43{bottom:321.516900px;}
.y74{bottom:327.734100px;}
.y9f{bottom:327.869370px;}
.y10c{bottom:329.703030px;}
.y120{bottom:329.763150px;}
.yd3{bottom:340.052040px;}
.ye4{bottom:340.142220px;}
.y158{bottom:341.809110px;}
.y17a{bottom:341.914320px;}
.y2a{bottom:342.228240px;}
.y42{bottom:342.303390px;}
.y73{bottom:348.610770px;}
.y9e{bottom:348.746040px;}
.y1a7{bottom:349.738020px;}
.y10b{bottom:350.579700px;}
.y11f{bottom:350.639820px;}
.yd2{bottom:359.936730px;}
.ye3{bottom:360.026910px;}
.y157{bottom:362.685780px;}
.y179{bottom:362.790990px;}
.y29{bottom:363.104910px;}
.y41{bottom:363.180060px;}
.y72{bottom:369.487440px;}
.y9d{bottom:369.622710px;}
.y1a6{bottom:370.614690px;}
.y10a{bottom:371.456370px;}
.y11e{bottom:371.516490px;}
.yd1{bottom:379.731240px;}
.ye2{bottom:379.821420px;}
.y156{bottom:383.562450px;}
.y178{bottom:383.667660px;}
.y28{bottom:383.981580px;}
.y40{bottom:384.056730px;}
.y71{bottom:390.364110px;}
.y9c{bottom:390.499380px;}
.y1a5{bottom:391.491360px;}
.y109{bottom:392.333040px;}
.y11d{bottom:392.393160px;}
.yd0{bottom:399.615930px;}
.ye1{bottom:399.706110px;}
.y155{bottom:404.439120px;}
.y177{bottom:404.544330px;}
.y27{bottom:404.858250px;}
.y3f{bottom:404.933400px;}
.y70{bottom:411.150600px;}
.y9b{bottom:411.285870px;}
.y1a4{bottom:412.277850px;}
.y108{bottom:413.209710px;}
.y11c{bottom:413.269830px;}
.ycf{bottom:419.500620px;}
.ye0{bottom:419.590800px;}
.y154{bottom:425.315790px;}
.y176{bottom:425.421000px;}
.y26{bottom:425.734920px;}
.y3e{bottom:425.810070px;}
.y6f{bottom:432.027270px;}
.y9a{bottom:432.162540px;}
.y1a3{bottom:433.154520px;}
.y107{bottom:434.086380px;}
.y11b{bottom:434.146500px;}
.yce{bottom:439.385310px;}
.ydf{bottom:439.475490px;}
.y153{bottom:446.102280px;}
.y175{bottom:446.207490px;}
.y25{bottom:446.611590px;}
.y3d{bottom:446.686740px;}
.y6e{bottom:452.903940px;}
.y99{bottom:453.039210px;}
.y1a2{bottom:454.031190px;}
.y106{bottom:454.963050px;}
.y11a{bottom:455.023170px;}
.ycd{bottom:459.270000px;}
.y152{bottom:466.978950px;}
.y174{bottom:467.084160px;}
.y24{bottom:467.488260px;}
.y3c{bottom:467.563410px;}
.y6d{bottom:473.780610px;}
.y98{bottom:473.915880px;}
.y1a1{bottom:474.907860px;}
.ycc{bottom:475.560000px;}
.y105{bottom:475.749540px;}
.y119{bottom:475.809660px;}
.y151{bottom:487.855620px;}
.y173{bottom:487.960830px;}
.y23{bottom:488.364930px;}
.y3b{bottom:488.440080px;}
.y6c{bottom:494.657280px;}
.y97{bottom:494.792550px;}
.y1a0{bottom:495.784530px;}
.y104{bottom:496.626210px;}
.y118{bottom:496.686330px;}
.yc8{bottom:499.775310px;}
.ycb{bottom:499.780800px;}
.y150{bottom:508.732290px;}
.y172{bottom:508.837500px;}
.y22{bottom:509.151420px;}
.y3a{bottom:509.226570px;}
.y6b{bottom:515.533950px;}
.y96{bottom:515.669220px;}
.y19f{bottom:516.661200px;}
.y103{bottom:517.502880px;}
.y117{bottom:517.563000px;}
.yc7{bottom:519.660000px;}
.yca{bottom:519.665490px;}
.y14f{bottom:529.608960px;}
.y171{bottom:529.714170px;}
.y21{bottom:530.028090px;}
.y39{bottom:530.103240px;}
.y6a{bottom:536.410620px;}
.y95{bottom:536.545890px;}
.y19e{bottom:537.537870px;}
.y102{bottom:538.379550px;}
.y116{bottom:538.439670px;}
.yc9{bottom:539.460000px;}
.y14e{bottom:550.485630px;}
.y170{bottom:550.590840px;}
.y20{bottom:550.904760px;}
.y38{bottom:550.979910px;}
.yc6{bottom:555.840000px;}
.y69{bottom:557.287290px;}
.y94{bottom:557.422560px;}
.y19d{bottom:558.414540px;}
.y101{bottom:559.256220px;}
.y115{bottom:559.316340px;}
.y14d{bottom:571.362300px;}
.y16f{bottom:571.467510px;}
.y1f{bottom:571.781430px;}
.y37{bottom:571.856580px;}
.y68{bottom:578.073780px;}
.y93{bottom:578.209050px;}
.y19c{bottom:579.201030px;}
.yc5{bottom:579.965310px;}
.y100{bottom:580.132890px;}
.y114{bottom:580.193010px;}
.y1e{bottom:591.666120px;}
.y14c{bottom:592.238970px;}
.y16e{bottom:592.344180px;}
.y67{bottom:598.950450px;}
.y92{bottom:599.085720px;}
.yc4{bottom:599.850000px;}
.y19b{bottom:600.077700px;}
.yff{bottom:601.009560px;}
.y113{bottom:601.069680px;}
.y1d{bottom:611.550810px;}
.y14b{bottom:613.025460px;}
.y16d{bottom:613.130670px;}
.yc3{bottom:616.140000px;}
.y66{bottom:619.827120px;}
.y91{bottom:619.962390px;}
.yfe{bottom:620.894250px;}
.y19a{bottom:620.954370px;}
.y1c{bottom:631.435500px;}
.y14a{bottom:633.902130px;}
.y16c{bottom:634.007340px;}
.yc2{bottom:640.355310px;}
.yfd{bottom:640.688760px;}
.y65{bottom:640.703790px;}
.y90{bottom:640.839060px;}
.y199{bottom:641.831040px;}
.y1b{bottom:651.320190px;}
.y149{bottom:654.778800px;}
.y16b{bottom:654.884010px;}
.yfc{bottom:656.259840px;}
.yc1{bottom:660.240000px;}
.y64{bottom:661.580460px;}
.y8f{bottom:661.715730px;}
.y198{bottom:662.707710px;}
.y1a{bottom:671.114700px;}
.y148{bottom:675.655470px;}
.y16a{bottom:675.760680px;}
.y63{bottom:682.457130px;}
.y8e{bottom:682.592400px;}
.y197{bottom:683.584380px;}
.y1bf{bottom:687.420810px;}
.y19{bottom:690.999390px;}
.yc0{bottom:696.420000px;}
.y147{bottom:696.532140px;}
.y169{bottom:696.637350px;}
.y62{bottom:703.333800px;}
.y8d{bottom:703.469070px;}
.y196{bottom:704.461050px;}
.y1be{bottom:707.305500px;}
.ybd{bottom:710.645310px;}
.y18{bottom:710.884080px;}
.y146{bottom:717.408810px;}
.y168{bottom:717.514020px;}
.ybf{bottom:720.635310px;}
.y61{bottom:724.210470px;}
.y8c{bottom:724.345740px;}
.y195{bottom:725.337720px;}
.y1bd{bottom:727.190190px;}
.ybc{bottom:730.530000px;}
.y17{bottom:730.768770px;}
.y145{bottom:738.285480px;}
.y167{bottom:738.390690px;}
.ybe{bottom:740.520000px;}
.y60{bottom:744.996960px;}
.y8b{bottom:745.132230px;}
.y194{bottom:746.214390px;}
.y1bc{bottom:747.074880px;}
.y16{bottom:750.653460px;}
.ybb{bottom:756.810000px;}
.y144{bottom:759.162150px;}
.y166{bottom:759.267360px;}
.y5f{bottom:765.873630px;}
.y8a{bottom:766.008900px;}
.y1bb{bottom:766.959570px;}
.y193{bottom:767.000880px;}
.y15{bottom:770.538150px;}
.yb8{bottom:771.035310px;}
.y143{bottom:779.948640px;}
.y165{bottom:780.053850px;}
.yba{bottom:781.025310px;}
.y5e{bottom:786.750300px;}
.y1ba{bottom:786.754080px;}
.y89{bottom:786.885570px;}
.y192{bottom:787.877550px;}
.y14{bottom:790.332660px;}
.yb7{bottom:790.920000px;}
.y142{bottom:800.825310px;}
.yb9{bottom:800.910000px;}
.y164{bottom:800.930520px;}
.y1b9{bottom:806.638770px;}
.y5d{bottom:807.626970px;}
.y88{bottom:807.762240px;}
.y191{bottom:808.754220px;}
.y13{bottom:810.217350px;}
.yb5{bottom:817.200000px;}
.y141{bottom:820.710000px;}
.y1b8{bottom:826.523460px;}
.y5c{bottom:828.503640px;}
.y87{bottom:828.638910px;}
.y190{bottom:829.630890px;}
.y12{bottom:830.102040px;}
.y13f{bottom:837.090000px;}
.yb4{bottom:841.415490px;}
.y1b7{bottom:846.408150px;}
.y5b{bottom:849.380310px;}
.y86{bottom:849.515580px;}
.y11{bottom:849.986730px;}
.y18f{bottom:850.507560px;}
.yb3{bottom:861.210000px;}
.y13e{bottom:861.220620px;}
.y1b6{bottom:866.292840px;}
.y10{bottom:869.871420px;}
.y5a{bottom:870.256980px;}
.y85{bottom:870.392250px;}
.y18e{bottom:871.384230px;}
.y13d{bottom:881.105310px;}
.y1b5{bottom:886.177530px;}
.yf{bottom:889.756110px;}
.y59{bottom:891.133650px;}
.y84{bottom:891.268920px;}
.y18d{bottom:892.260900px;}
.yb2{bottom:897.390000px;}
.y13c{bottom:900.990000px;}
.y1b4{bottom:905.972040px;}
.ye{bottom:909.550620px;}
.y58{bottom:911.920140px;}
.y83{bottom:912.055410px;}
.y18c{bottom:913.137570px;}
.y137{bottom:917.280000px;}
.yae{bottom:921.605310px;}
.yb1{bottom:921.610620px;}
.y1b3{bottom:925.856730px;}
.yd{bottom:929.435310px;}
.y132{bottom:931.606110px;}
.y136{bottom:931.621140px;}
.y57{bottom:932.796810px;}
.y82{bottom:932.932080px;}
.y18b{bottom:933.924060px;}
.yad{bottom:941.490000px;}
.yb0{bottom:941.495310px;}
.y13b{bottom:941.500620px;}
.y1b2{bottom:945.741420px;}
.yc{bottom:949.320000px;}
.y131{bottom:951.400620px;}
.y135{bottom:951.415650px;}
.y56{bottom:953.673480px;}
.y81{bottom:953.808750px;}
.y18a{bottom:954.800730px;}
.yaf{bottom:961.380000px;}
.y13a{bottom:961.385310px;}
.y1b1{bottom:965.626110px;}
.yb{bottom:970.461810px;}
.y130{bottom:971.285310px;}
.y134{bottom:971.300340px;}
.y55{bottom:974.550150px;}
.y80{bottom:974.685420px;}
.y189{bottom:975.677400px;}
.yab{bottom:977.670000px;}
.y139{bottom:981.270000px;}
.y1b0{bottom:985.510800px;}
.y12f{bottom:991.170000px;}
.y133{bottom:991.185030px;}
.y54{bottom:995.426820px;}
.y7f{bottom:995.562090px;}
.ya{bottom:996.300000px;}
.y188{bottom:996.554070px;}
.yaa{bottom:1001.885310px;}
.y1af{bottom:1005.395490px;}
.y53{bottom:1016.303490px;}
.y7e{bottom:1016.438760px;}
.y187{bottom:1017.430740px;}
.y12e{bottom:1017.450000px;}
.y9{bottom:1021.225680px;}
.ya9{bottom:1021.770000px;}
.yfb{bottom:1023.277410px;}
.y1ae{bottom:1025.190000px;}
.y12b{bottom:1031.675310px;}
.y52{bottom:1037.180160px;}
.y7d{bottom:1037.315430px;}
.y12d{bottom:1041.665490px;}
.y8{bottom:1043.097840px;}
.yf3{bottom:1043.132040px;}
.yfa{bottom:1043.162100px;}
.y1ad{bottom:1046.331810px;}
.y12a{bottom:1051.560000px;}
.ya5{bottom:1057.950000px;}
.y51{bottom:1058.056830px;}
.y7c{bottom:1058.192100px;}
.y12c{bottom:1061.460000px;}
.yf2{bottom:1063.016730px;}
.yf9{bottom:1063.046790px;}
.y7{bottom:1064.970000px;}
.y1ac{bottom:1072.170000px;}
.ya8{bottom:1072.175310px;}
.y129{bottom:1077.840000px;}
.y50{bottom:1078.843320px;}
.y7b{bottom:1078.978590px;}
.ya4{bottom:1082.165490px;}
.yf1{bottom:1082.901420px;}
.yf8{bottom:1082.931480px;}
.y6{bottom:1086.480000px;}
.ya7{bottom:1092.060000px;}
.y128{bottom:1092.069720px;}
.y1ab{bottom:1097.095680px;}
.y4f{bottom:1099.719990px;}
.y7a{bottom:1099.855260px;}
.ya3{bottom:1101.960000px;}
.yf0{bottom:1102.786110px;}
.yf7{bottom:1102.816170px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y1aa{bottom:1118.967840px;}
.y4e{bottom:1120.596660px;}
.y79{bottom:1120.731930px;}
.ya2{bottom:1122.670800px;}
.yf6{bottom:1122.700860px;}
.y1a9{bottom:1140.840000px;}
.y4d{bottom:1141.473330px;}
.y78{bottom:1141.608600px;}
.y3{bottom:1142.465310px;}
.yf5{bottom:1142.495370px;}
.y2{bottom:1162.350000px;}
.yf4{bottom:1162.380060px;}
.y77{bottom:1162.485270px;}
.y1{bottom:1194.030000px;}
.h4{height:31.590000px;}
.h14{height:39.690000px;}
.h2{height:42.271875px;}
.h8{height:42.805440px;}
.ha{height:45.210240px;}
.h9{height:45.811440px;}
.h16{height:49.541760px;}
.h3{height:53.707200px;}
.hb{height:53.839464px;}
.h5{height:58.852800px;}
.h6{height:58.997736px;}
.hc{height:59.580000px;}
.h11{height:59.581500px;}
.hf{height:59.670000px;}
.h7{height:69.959064px;}
.h12{height:79.468500px;}
.hd{height:79.470000px;}
.h10{height:79.560000px;}
.he{height:79.561500px;}
.h13{height:93.400584px;}
.h15{height:99.360000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:50.310000px;}
.w8{width:137.070000px;}
.w3{width:168.930000px;}
.w7{width:253.980000px;}
.w4{width:265.051500px;}
.w5{width:285.840000px;}
.w6{width:328.860000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.550000px;}
.x2f{left:9.630000px;}
.x35{left:11.430000px;}
.x33{left:15.390000px;}
.x27{left:16.830000px;}
.x3a{left:19.260000px;}
.x54{left:20.430000px;}
.x2b{left:22.140000px;}
.x1a{left:23.670000px;}
.x18{left:26.010000px;}
.x2d{left:32.130000px;}
.x38{left:37.530000px;}
.x31{left:38.880000px;}
.x4{left:42.210000px;}
.x4b{left:47.700000px;}
.x57{left:54.540000px;}
.x30{left:57.150000px;}
.x45{left:59.940000px;}
.x13{left:66.960000px;}
.x10{left:68.940000px;}
.x25{left:70.290000px;}
.x48{left:75.420000px;}
.x1{left:85.050000px;}
.x17{left:93.685230px;}
.x37{left:95.400000px;}
.xf{left:97.738110px;}
.x34{left:99.360000px;}
.x53{left:102.510000px;}
.x16{left:103.590000px;}
.x52{left:105.120000px;}
.x9{left:106.384950px;}
.x36{left:107.460000px;}
.x29{left:109.350000px;}
.x1f{left:113.760000px;}
.x43{left:115.293690px;}
.x3d{left:119.430000px;}
.x32{left:121.320000px;}
.xd{left:122.763600px;}
.x41{left:129.872790px;}
.x26{left:131.036580px;}
.x7{left:138.600000px;}
.x2c{left:149.857290px;}
.x20{left:158.748030px;}
.x5b{left:177.840000px;}
.x6{left:212.407560px;}
.x44{left:223.650000px;}
.xe{left:230.393430px;}
.x49{left:231.930000px;}
.x4a{left:236.063250px;}
.x4f{left:237.407940px;}
.x4e{left:241.736580px;}
.x5a{left:250.648380px;}
.x12{left:255.600000px;}
.x8{left:259.021980px;}
.x50{left:260.358750px;}
.x19{left:263.790000px;}
.x39{left:267.030000px;}
.x11{left:268.740000px;}
.x28{left:270.184410px;}
.x3b{left:273.420000px;}
.x21{left:274.590000px;}
.x3c{left:282.693510px;}
.x22{left:291.513780px;}
.x59{left:320.580000px;}
.x3{left:326.160000px;}
.x42{left:370.352790px;}
.x5{left:384.570000px;}
.x3f{left:446.476410px;}
.x2{left:457.110000px;}
.xa{left:473.056830px;}
.xb{left:494.384400px;}
.x1b{left:521.370000px;}
.x1e{left:529.737570px;}
.x2e{left:532.164330px;}
.x15{left:533.788470px;}
.x24{left:534.879000px;}
.x2a{left:537.113340px;}
.x1d{left:538.470000px;}
.x23{left:539.733690px;}
.x14{left:542.070000px;}
.x3e{left:548.456490px;}
.x47{left:553.230000px;}
.x56{left:561.057300px;}
.x55{left:562.410000px;}
.x4d{left:566.096040px;}
.x4c{left:568.080000px;}
.x51{left:576.631530px;}
.x58{left:596.596050px;}
.x46{left:610.110000px;}
.xc{left:737.190000px;}
.x40{left:759.220650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.165440pt;}
.ls12{letter-spacing:-1.442880pt;}
.lse{letter-spacing:-0.427520pt;}
.ls13{letter-spacing:-0.374080pt;}
.ls19{letter-spacing:-0.320640pt;}
.ls18{letter-spacing:-0.267200pt;}
.ls17{letter-spacing:-0.213760pt;}
.ls1d{letter-spacing:-0.160320pt;}
.lsa{letter-spacing:-0.117120pt;}
.ls5{letter-spacing:-0.106880pt;}
.ls8{letter-spacing:-0.058560pt;}
.lsd{letter-spacing:-0.053440pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053440pt;}
.ls1{letter-spacing:0.058560pt;}
.lsb{letter-spacing:0.069440pt;}
.lsf{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.117120pt;}
.ls29{letter-spacing:0.138880pt;}
.lsc{letter-spacing:0.160320pt;}
.ls0{letter-spacing:0.175680pt;}
.ls27{letter-spacing:1.453568pt;}
.ls28{letter-spacing:1.710080pt;}
.ls2{letter-spacing:2.030720pt;}
.ls3{letter-spacing:3.633920pt;}
.ls22{letter-spacing:5.557760pt;}
.ls1c{letter-spacing:7.160960pt;}
.ls16{letter-spacing:8.122880pt;}
.ls4{letter-spacing:10.367360pt;}
.ls1b{letter-spacing:15.818240pt;}
.ls1a{letter-spacing:16.138880pt;}
.ls23{letter-spacing:16.780160pt;}
.ls24{letter-spacing:17.100800pt;}
.ls10{letter-spacing:19.665920pt;}
.ls25{letter-spacing:23.513600pt;}
.ls1f{letter-spacing:26.399360pt;}
.ls14{letter-spacing:36.606400pt;}
.ls15{letter-spacing:36.927040pt;}
.ls21{letter-spacing:42.057280pt;}
.ls20{letter-spacing:55.203520pt;}
.ls26{letter-spacing:76.953600pt;}
.ls1e{letter-spacing:122.019200pt;}
.ls11{letter-spacing:754.626240pt;}
.ws1b{word-spacing:-53.440000pt;}
.ws5{word-spacing:-15.928320pt;}
.ws4{word-spacing:-15.752640pt;}
.ws6{word-spacing:-15.694080pt;}
.ws19{word-spacing:-14.535680pt;}
.wsb{word-spacing:-14.482240pt;}
.ws17{word-spacing:-14.428800pt;}
.ws25{word-spacing:-14.375360pt;}
.ws18{word-spacing:-14.321920pt;}
.wsa{word-spacing:-14.288640pt;}
.ws7{word-spacing:-14.230080pt;}
.ws9{word-spacing:-14.171520pt;}
.ws8{word-spacing:-14.112960pt;}
.ws1a{word-spacing:-13.146240pt;}
.wse{word-spacing:-13.039360pt;}
.ws3{word-spacing:-12.985920pt;}
.wsc{word-spacing:-12.932480pt;}
.wsd{word-spacing:-12.879040pt;}
.ws1f{word-spacing:-12.825600pt;}
.ws23{word-spacing:-12.772160pt;}
.ws1c{word-spacing:-12.665280pt;}
.ws15{word-spacing:-12.611840pt;}
.ws21{word-spacing:-12.558400pt;}
.ws13{word-spacing:-0.160320pt;}
.ws28{word-spacing:-0.138880pt;}
.ws26{word-spacing:-0.117120pt;}
.ws0{word-spacing:-0.106880pt;}
.ws12{word-spacing:-0.069440pt;}
.ws11{word-spacing:-0.058560pt;}
.ws1{word-spacing:-0.053440pt;}
.ws10{word-spacing:0.000000pt;}
.ws2{word-spacing:0.053440pt;}
.ws27{word-spacing:0.058560pt;}
.wsf{word-spacing:0.106880pt;}
.ws24{word-spacing:0.160320pt;}
.ws1d{word-spacing:0.213760pt;}
.ws1e{word-spacing:0.267200pt;}
.ws20{word-spacing:0.320640pt;}
.ws22{word-spacing:0.374080pt;}
.ws14{word-spacing:0.427520pt;}
.ws2b{word-spacing:0.908480pt;}
.ws16{word-spacing:1.442880pt;}
.ws29{word-spacing:1.549760pt;}
.ws2c{word-spacing:3.099520pt;}
.ws2a{word-spacing:5.290560pt;}
._27{margin-left:-7.973248pt;}
._d{margin-left:-3.288512pt;}
._5{margin-left:-2.320992pt;}
._3{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._4{width:1.890368pt;}
._8{width:3.653888pt;}
._7{width:4.953888pt;}
._6{width:6.150944pt;}
._15{width:7.048736pt;}
._1b{width:8.245792pt;}
._1a{width:9.218400pt;}
._14{width:10.196352pt;}
._c{width:11.601824pt;}
._9{width:14.546368pt;}
._21{width:15.780832pt;}
._20{width:17.469536pt;}
._1f{width:18.442144pt;}
._12{width:19.767456pt;}
._17{width:21.461504pt;}
._13{width:22.439456pt;}
._23{width:23.506848pt;}
._10{width:24.459488pt;}
._1c{width:26.201632pt;}
._1d{width:27.591072pt;}
._19{width:29.408032pt;}
._a{width:30.336480pt;}
._22{width:31.839552pt;}
._b{width:33.174144pt;}
._1e{width:34.069408pt;}
._24{width:35.219488pt;}
._f{width:37.049952pt;}
._2f{width:38.097376pt;}
._31{width:39.315808pt;}
._26{width:41.736640pt;}
._2a{width:42.725280pt;}
._28{width:43.623072pt;}
._16{width:45.819456pt;}
._e{width:46.802752pt;}
._2d{width:57.464032pt;}
._32{width:77.140640pt;}
._11{width:98.158592pt;}
._2b{width:129.041568pt;}
._2e{width:223.945664pt;}
._1{width:252.477280pt;}
._33{width:272.250080pt;}
._2c{width:444.994880pt;}
._25{width:446.598080pt;}
._2{width:447.560000pt;}
._18{width:449.163200pt;}
._29{width:451.087040pt;}
._30{width:793.637440pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y140{bottom:3.839867pt;}
.ya6{bottom:3.840000pt;}
.yb6{bottom:56.800000pt;}
.yac{bottom:56.880000pt;}
.y138{bottom:74.560000pt;}
.y186{bottom:81.399680pt;}
.y36{bottom:81.678720pt;}
.y163{bottom:99.783040pt;}
.y185{bottom:99.876560pt;}
.y35{bottom:100.235760pt;}
.yde{bottom:108.000720pt;}
.yef{bottom:108.080880pt;}
.y162{bottom:118.340080pt;}
.y184{bottom:118.433600pt;}
.y34{bottom:118.792800pt;}
.y4c{bottom:118.859600pt;}
.ydd{bottom:125.595840pt;}
.yee{bottom:125.676000pt;}
.y161{bottom:136.897120pt;}
.y183{bottom:136.990640pt;}
.y33{bottom:137.349840pt;}
.y4b{bottom:137.416640pt;}
.ydc{bottom:143.271120pt;}
.yed{bottom:143.351280pt;}
.y160{bottom:155.454160pt;}
.y182{bottom:155.547680pt;}
.y32{bottom:155.826720pt;}
.y4a{bottom:155.893520pt;}
.ydb{bottom:160.946400pt;}
.yec{bottom:161.026560pt;}
.y127{bottom:163.303680pt;}
.y15f{bottom:174.011200pt;}
.y181{bottom:174.104720pt;}
.y31{bottom:174.383760pt;}
.y49{bottom:174.450560pt;}
.yda{bottom:178.621680pt;}
.yeb{bottom:178.701840pt;}
.y112{bottom:181.807280pt;}
.y126{bottom:181.860720pt;}
.y15e{bottom:192.568240pt;}
.y180{bottom:192.661760pt;}
.y30{bottom:192.940800pt;}
.y48{bottom:193.007600pt;}
.yd9{bottom:196.296960pt;}
.yea{bottom:196.377120pt;}
.y111{bottom:200.364320pt;}
.y125{bottom:200.417760pt;}
.y15d{bottom:211.125280pt;}
.y17f{bottom:211.218800pt;}
.y2f{bottom:211.497840pt;}
.y47{bottom:211.564640pt;}
.yd8{bottom:213.972240pt;}
.ye9{bottom:214.052400pt;}
.y110{bottom:218.921360pt;}
.y124{bottom:218.974800pt;}
.y15c{bottom:229.682320pt;}
.y17e{bottom:229.775840pt;}
.y2e{bottom:230.054880pt;}
.y46{bottom:230.121680pt;}
.yd7{bottom:231.567360pt;}
.ye8{bottom:231.647520pt;}
.ya1{bottom:235.768320pt;}
.y10f{bottom:237.478400pt;}
.y123{bottom:237.531840pt;}
.y15b{bottom:248.159200pt;}
.y17d{bottom:248.252720pt;}
.y2d{bottom:248.611920pt;}
.y45{bottom:248.678720pt;}
.yd6{bottom:249.242640pt;}
.ye7{bottom:249.322800pt;}
.y76{bottom:254.205120pt;}
.y10e{bottom:256.035440pt;}
.y122{bottom:256.088880pt;}
.y15a{bottom:266.716240pt;}
.y17c{bottom:266.809760pt;}
.yd5{bottom:266.917920pt;}
.ye6{bottom:266.998080pt;}
.y2c{bottom:267.168960pt;}
.y44{bottom:267.235760pt;}
.y75{bottom:272.762160pt;}
.ya0{bottom:272.882400pt;}
.y1a8{bottom:273.764160pt;}
.y10d{bottom:274.512320pt;}
.y121{bottom:274.565760pt;}
.yd4{bottom:284.593200pt;}
.ye5{bottom:284.673360pt;}
.y159{bottom:285.273280pt;}
.y17b{bottom:285.366800pt;}
.y2b{bottom:285.726000pt;}
.y43{bottom:285.792800pt;}
.y74{bottom:291.319200pt;}
.y9f{bottom:291.439440pt;}
.y10c{bottom:293.069360pt;}
.y120{bottom:293.122800pt;}
.yd3{bottom:302.268480pt;}
.ye4{bottom:302.348640pt;}
.y158{bottom:303.830320pt;}
.y17a{bottom:303.923840pt;}
.y2a{bottom:304.202880pt;}
.y42{bottom:304.269680pt;}
.y73{bottom:309.876240pt;}
.y9e{bottom:309.996480pt;}
.y1a7{bottom:310.878240pt;}
.y10b{bottom:311.626400pt;}
.y11f{bottom:311.679840pt;}
.yd2{bottom:319.943760pt;}
.ye3{bottom:320.023920pt;}
.y157{bottom:322.387360pt;}
.y179{bottom:322.480880pt;}
.y29{bottom:322.759920pt;}
.y41{bottom:322.826720pt;}
.y72{bottom:328.433280pt;}
.y9d{bottom:328.553520pt;}
.y1a6{bottom:329.435280pt;}
.y10a{bottom:330.183440pt;}
.y11e{bottom:330.236880pt;}
.yd1{bottom:337.538880pt;}
.ye2{bottom:337.619040pt;}
.y156{bottom:340.944400pt;}
.y178{bottom:341.037920pt;}
.y28{bottom:341.316960pt;}
.y40{bottom:341.383760pt;}
.y71{bottom:346.990320pt;}
.y9c{bottom:347.110560pt;}
.y1a5{bottom:347.992320pt;}
.y109{bottom:348.740480pt;}
.y11d{bottom:348.793920pt;}
.yd0{bottom:355.214160pt;}
.ye1{bottom:355.294320pt;}
.y155{bottom:359.501440pt;}
.y177{bottom:359.594960pt;}
.y27{bottom:359.874000pt;}
.y3f{bottom:359.940800pt;}
.y70{bottom:365.467200pt;}
.y9b{bottom:365.587440pt;}
.y1a4{bottom:366.469200pt;}
.y108{bottom:367.297520pt;}
.y11c{bottom:367.350960pt;}
.ycf{bottom:372.889440pt;}
.ye0{bottom:372.969600pt;}
.y154{bottom:378.058480pt;}
.y176{bottom:378.152000pt;}
.y26{bottom:378.431040pt;}
.y3e{bottom:378.497840pt;}
.y6f{bottom:384.024240pt;}
.y9a{bottom:384.144480pt;}
.y1a3{bottom:385.026240pt;}
.y107{bottom:385.854560pt;}
.y11b{bottom:385.908000pt;}
.yce{bottom:390.564720pt;}
.ydf{bottom:390.644880pt;}
.y153{bottom:396.535360pt;}
.y175{bottom:396.628880pt;}
.y25{bottom:396.988080pt;}
.y3d{bottom:397.054880pt;}
.y6e{bottom:402.581280pt;}
.y99{bottom:402.701520pt;}
.y1a2{bottom:403.583280pt;}
.y106{bottom:404.411600pt;}
.y11a{bottom:404.465040pt;}
.ycd{bottom:408.240000pt;}
.y152{bottom:415.092400pt;}
.y174{bottom:415.185920pt;}
.y24{bottom:415.545120pt;}
.y3c{bottom:415.611920pt;}
.y6d{bottom:421.138320pt;}
.y98{bottom:421.258560pt;}
.y1a1{bottom:422.140320pt;}
.ycc{bottom:422.720000pt;}
.y105{bottom:422.888480pt;}
.y119{bottom:422.941920pt;}
.y151{bottom:433.649440pt;}
.y173{bottom:433.742960pt;}
.y23{bottom:434.102160pt;}
.y3b{bottom:434.168960pt;}
.y6c{bottom:439.695360pt;}
.y97{bottom:439.815600pt;}
.y1a0{bottom:440.697360pt;}
.y104{bottom:441.445520pt;}
.y118{bottom:441.498960pt;}
.yc8{bottom:444.244720pt;}
.ycb{bottom:444.249600pt;}
.y150{bottom:452.206480pt;}
.y172{bottom:452.300000pt;}
.y22{bottom:452.579040pt;}
.y3a{bottom:452.645840pt;}
.y6b{bottom:458.252400pt;}
.y96{bottom:458.372640pt;}
.y19f{bottom:459.254400pt;}
.y103{bottom:460.002560pt;}
.y117{bottom:460.056000pt;}
.yc7{bottom:461.920000pt;}
.yca{bottom:461.924880pt;}
.y14f{bottom:470.763520pt;}
.y171{bottom:470.857040pt;}
.y21{bottom:471.136080pt;}
.y39{bottom:471.202880pt;}
.y6a{bottom:476.809440pt;}
.y95{bottom:476.929680pt;}
.y19e{bottom:477.811440pt;}
.y102{bottom:478.559600pt;}
.y116{bottom:478.613040pt;}
.yc9{bottom:479.520000pt;}
.y14e{bottom:489.320560pt;}
.y170{bottom:489.414080pt;}
.y20{bottom:489.693120pt;}
.y38{bottom:489.759920pt;}
.yc6{bottom:494.080000pt;}
.y69{bottom:495.366480pt;}
.y94{bottom:495.486720pt;}
.y19d{bottom:496.368480pt;}
.y101{bottom:497.116640pt;}
.y115{bottom:497.170080pt;}
.y14d{bottom:507.877600pt;}
.y16f{bottom:507.971120pt;}
.y1f{bottom:508.250160pt;}
.y37{bottom:508.316960pt;}
.y68{bottom:513.843360pt;}
.y93{bottom:513.963600pt;}
.y19c{bottom:514.845360pt;}
.yc5{bottom:515.524720pt;}
.y100{bottom:515.673680pt;}
.y114{bottom:515.727120pt;}
.y1e{bottom:525.925440pt;}
.y14c{bottom:526.434640pt;}
.y16e{bottom:526.528160pt;}
.y67{bottom:532.400400pt;}
.y92{bottom:532.520640pt;}
.yc4{bottom:533.200000pt;}
.y19b{bottom:533.402400pt;}
.yff{bottom:534.230720pt;}
.y113{bottom:534.284160pt;}
.y1d{bottom:543.600720pt;}
.y14b{bottom:544.911520pt;}
.y16d{bottom:545.005040pt;}
.yc3{bottom:547.680000pt;}
.y66{bottom:550.957440pt;}
.y91{bottom:551.077680pt;}
.yfe{bottom:551.906000pt;}
.y19a{bottom:551.959440pt;}
.y1c{bottom:561.276000pt;}
.y14a{bottom:563.468560pt;}
.y16c{bottom:563.562080pt;}
.yc2{bottom:569.204720pt;}
.yfd{bottom:569.501120pt;}
.y65{bottom:569.514480pt;}
.y90{bottom:569.634720pt;}
.y199{bottom:570.516480pt;}
.y1b{bottom:578.951280pt;}
.y149{bottom:582.025600pt;}
.y16b{bottom:582.119120pt;}
.yfc{bottom:583.342080pt;}
.yc1{bottom:586.880000pt;}
.y64{bottom:588.071520pt;}
.y8f{bottom:588.191760pt;}
.y198{bottom:589.073520pt;}
.y1a{bottom:596.546400pt;}
.y148{bottom:600.582640pt;}
.y16a{bottom:600.676160pt;}
.y63{bottom:606.628560pt;}
.y8e{bottom:606.748800pt;}
.y197{bottom:607.630560pt;}
.y1bf{bottom:611.040720pt;}
.y19{bottom:614.221680pt;}
.yc0{bottom:619.040000pt;}
.y147{bottom:619.139680pt;}
.y169{bottom:619.233200pt;}
.y62{bottom:625.185600pt;}
.y8d{bottom:625.305840pt;}
.y196{bottom:626.187600pt;}
.y1be{bottom:628.716000pt;}
.ybd{bottom:631.684720pt;}
.y18{bottom:631.896960pt;}
.y146{bottom:637.696720pt;}
.y168{bottom:637.790240pt;}
.ybf{bottom:640.564720pt;}
.y61{bottom:643.742640pt;}
.y8c{bottom:643.862880pt;}
.y195{bottom:644.744640pt;}
.y1bd{bottom:646.391280pt;}
.ybc{bottom:649.360000pt;}
.y17{bottom:649.572240pt;}
.y145{bottom:656.253760pt;}
.y167{bottom:656.347280pt;}
.ybe{bottom:658.240000pt;}
.y60{bottom:662.219520pt;}
.y8b{bottom:662.339760pt;}
.y194{bottom:663.301680pt;}
.y1bc{bottom:664.066560pt;}
.y16{bottom:667.247520pt;}
.ybb{bottom:672.720000pt;}
.y144{bottom:674.810800pt;}
.y166{bottom:674.904320pt;}
.y5f{bottom:680.776560pt;}
.y8a{bottom:680.896800pt;}
.y1bb{bottom:681.741840pt;}
.y193{bottom:681.778560pt;}
.y15{bottom:684.922800pt;}
.yb8{bottom:685.364720pt;}
.y143{bottom:693.287680pt;}
.y165{bottom:693.381200pt;}
.yba{bottom:694.244720pt;}
.y5e{bottom:699.333600pt;}
.y1ba{bottom:699.336960pt;}
.y89{bottom:699.453840pt;}
.y192{bottom:700.335600pt;}
.y14{bottom:702.517920pt;}
.yb7{bottom:703.040000pt;}
.y142{bottom:711.844720pt;}
.yb9{bottom:711.920000pt;}
.y164{bottom:711.938240pt;}
.y1b9{bottom:717.012240pt;}
.y5d{bottom:717.890640pt;}
.y88{bottom:718.010880pt;}
.y191{bottom:718.892640pt;}
.y13{bottom:720.193200pt;}
.yb5{bottom:726.400000pt;}
.y141{bottom:729.520000pt;}
.y1b8{bottom:734.687520pt;}
.y5c{bottom:736.447680pt;}
.y87{bottom:736.567920pt;}
.y190{bottom:737.449680pt;}
.y12{bottom:737.868480pt;}
.y13f{bottom:744.080000pt;}
.yb4{bottom:747.924880pt;}
.y1b7{bottom:752.362800pt;}
.y5b{bottom:755.004720pt;}
.y86{bottom:755.124960pt;}
.y11{bottom:755.543760pt;}
.y18f{bottom:756.006720pt;}
.yb3{bottom:765.520000pt;}
.y13e{bottom:765.529440pt;}
.y1b6{bottom:770.038080pt;}
.y10{bottom:773.219040pt;}
.y5a{bottom:773.561760pt;}
.y85{bottom:773.682000pt;}
.y18e{bottom:774.563760pt;}
.y13d{bottom:783.204720pt;}
.y1b5{bottom:787.713360pt;}
.yf{bottom:790.894320pt;}
.y59{bottom:792.118800pt;}
.y84{bottom:792.239040pt;}
.y18d{bottom:793.120800pt;}
.yb2{bottom:797.680000pt;}
.y13c{bottom:800.880000pt;}
.y1b4{bottom:805.308480pt;}
.ye{bottom:808.489440pt;}
.y58{bottom:810.595680pt;}
.y83{bottom:810.715920pt;}
.y18c{bottom:811.677840pt;}
.y137{bottom:815.360000pt;}
.yae{bottom:819.204720pt;}
.yb1{bottom:819.209440pt;}
.y1b3{bottom:822.983760pt;}
.yd{bottom:826.164720pt;}
.y132{bottom:828.094320pt;}
.y136{bottom:828.107680pt;}
.y57{bottom:829.152720pt;}
.y82{bottom:829.272960pt;}
.y18b{bottom:830.154720pt;}
.yad{bottom:836.880000pt;}
.yb0{bottom:836.884720pt;}
.y13b{bottom:836.889440pt;}
.y1b2{bottom:840.659040pt;}
.yc{bottom:843.840000pt;}
.y131{bottom:845.689440pt;}
.y135{bottom:845.702800pt;}
.y56{bottom:847.709760pt;}
.y81{bottom:847.830000pt;}
.y18a{bottom:848.711760pt;}
.yaf{bottom:854.560000pt;}
.y13a{bottom:854.564720pt;}
.y1b1{bottom:858.334320pt;}
.yb{bottom:862.632720pt;}
.y130{bottom:863.364720pt;}
.y134{bottom:863.378080pt;}
.y55{bottom:866.266800pt;}
.y80{bottom:866.387040pt;}
.y189{bottom:867.268800pt;}
.yab{bottom:869.040000pt;}
.y139{bottom:872.240000pt;}
.y1b0{bottom:876.009600pt;}
.y12f{bottom:881.040000pt;}
.y133{bottom:881.053360pt;}
.y54{bottom:884.823840pt;}
.y7f{bottom:884.944080pt;}
.ya{bottom:885.600000pt;}
.y188{bottom:885.825840pt;}
.yaa{bottom:890.564720pt;}
.y1af{bottom:893.684880pt;}
.y53{bottom:903.380880pt;}
.y7e{bottom:903.501120pt;}
.y187{bottom:904.382880pt;}
.y12e{bottom:904.400000pt;}
.y9{bottom:907.756160pt;}
.ya9{bottom:908.240000pt;}
.yfb{bottom:909.579920pt;}
.y1ae{bottom:911.280000pt;}
.y12b{bottom:917.044720pt;}
.y52{bottom:921.937920pt;}
.y7d{bottom:922.058160pt;}
.y12d{bottom:925.924880pt;}
.y8{bottom:927.198080pt;}
.yf3{bottom:927.228480pt;}
.yfa{bottom:927.255200pt;}
.y1ad{bottom:930.072720pt;}
.y12a{bottom:934.720000pt;}
.ya5{bottom:940.400000pt;}
.y51{bottom:940.494960pt;}
.y7c{bottom:940.615200pt;}
.y12c{bottom:943.520000pt;}
.yf2{bottom:944.903760pt;}
.yf9{bottom:944.930480pt;}
.y7{bottom:946.640000pt;}
.y1ac{bottom:953.040000pt;}
.ya8{bottom:953.044720pt;}
.y129{bottom:958.080000pt;}
.y50{bottom:958.971840pt;}
.y7b{bottom:959.092080pt;}
.ya4{bottom:961.924880pt;}
.yf1{bottom:962.579040pt;}
.yf8{bottom:962.605760pt;}
.y6{bottom:965.760000pt;}
.ya7{bottom:970.720000pt;}
.y128{bottom:970.728640pt;}
.y1ab{bottom:975.196160pt;}
.y4f{bottom:977.528880pt;}
.y7a{bottom:977.649120pt;}
.ya3{bottom:979.520000pt;}
.yf0{bottom:980.254320pt;}
.yf7{bottom:980.281040pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y1aa{bottom:994.638080pt;}
.y4e{bottom:996.085920pt;}
.y79{bottom:996.206160pt;}
.ya2{bottom:997.929600pt;}
.yf6{bottom:997.956320pt;}
.y1a9{bottom:1014.080000pt;}
.y4d{bottom:1014.642960pt;}
.y78{bottom:1014.763200pt;}
.y3{bottom:1015.524720pt;}
.yf5{bottom:1015.551440pt;}
.y2{bottom:1033.200000pt;}
.yf4{bottom:1033.226720pt;}
.y77{bottom:1033.320240pt;}
.y1{bottom:1061.360000pt;}
.h4{height:28.080000pt;}
.h14{height:35.280000pt;}
.h2{height:37.575000pt;}
.h8{height:38.049280pt;}
.ha{height:40.186880pt;}
.h9{height:40.721280pt;}
.h16{height:44.037120pt;}
.h3{height:47.739733pt;}
.hb{height:47.857301pt;}
.h5{height:52.313600pt;}
.h6{height:52.442432pt;}
.hc{height:52.960000pt;}
.h11{height:52.961333pt;}
.hf{height:53.040000pt;}
.h7{height:62.185835pt;}
.h12{height:70.638667pt;}
.hd{height:70.640000pt;}
.h10{height:70.720000pt;}
.he{height:70.721333pt;}
.h13{height:83.022741pt;}
.h15{height:88.320000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.720000pt;}
.w8{width:121.840000pt;}
.w3{width:150.160000pt;}
.w7{width:225.760000pt;}
.w4{width:235.601333pt;}
.w5{width:254.080000pt;}
.w6{width:292.320000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.600000pt;}
.x2f{left:8.560000pt;}
.x35{left:10.160000pt;}
.x33{left:13.680000pt;}
.x27{left:14.960000pt;}
.x3a{left:17.120000pt;}
.x54{left:18.160000pt;}
.x2b{left:19.680000pt;}
.x1a{left:21.040000pt;}
.x18{left:23.120000pt;}
.x2d{left:28.560000pt;}
.x38{left:33.360000pt;}
.x31{left:34.560000pt;}
.x4{left:37.520000pt;}
.x4b{left:42.400000pt;}
.x57{left:48.480000pt;}
.x30{left:50.800000pt;}
.x45{left:53.280000pt;}
.x13{left:59.520000pt;}
.x10{left:61.280000pt;}
.x25{left:62.480000pt;}
.x48{left:67.040000pt;}
.x1{left:75.600000pt;}
.x17{left:83.275760pt;}
.x37{left:84.800000pt;}
.xf{left:86.878320pt;}
.x34{left:88.320000pt;}
.x53{left:91.120000pt;}
.x16{left:92.080000pt;}
.x52{left:93.440000pt;}
.x9{left:94.564400pt;}
.x36{left:95.520000pt;}
.x29{left:97.200000pt;}
.x1f{left:101.120000pt;}
.x43{left:102.483280pt;}
.x3d{left:106.160000pt;}
.x32{left:107.840000pt;}
.xd{left:109.123200pt;}
.x41{left:115.442480pt;}
.x26{left:116.476960pt;}
.x7{left:123.200000pt;}
.x2c{left:133.206480pt;}
.x20{left:141.109360pt;}
.x5b{left:158.080000pt;}
.x6{left:188.806720pt;}
.x44{left:198.800000pt;}
.xe{left:204.794160pt;}
.x49{left:206.160000pt;}
.x4a{left:209.834000pt;}
.x4f{left:211.029280pt;}
.x4e{left:214.876960pt;}
.x5a{left:222.798560pt;}
.x12{left:227.200000pt;}
.x8{left:230.241760pt;}
.x50{left:231.430000pt;}
.x19{left:234.480000pt;}
.x39{left:237.360000pt;}
.x11{left:238.880000pt;}
.x28{left:240.163920pt;}
.x3b{left:243.040000pt;}
.x21{left:244.080000pt;}
.x3c{left:251.283120pt;}
.x22{left:259.123360pt;}
.x59{left:284.960000pt;}
.x3{left:289.920000pt;}
.x42{left:329.202480pt;}
.x5{left:341.840000pt;}
.x3f{left:396.867920pt;}
.x2{left:406.320000pt;}
.xa{left:420.494960pt;}
.xb{left:439.452800pt;}
.x1b{left:463.440000pt;}
.x1e{left:470.877840pt;}
.x2e{left:473.034960pt;}
.x15{left:474.478640pt;}
.x24{left:475.448000pt;}
.x2a{left:477.434080pt;}
.x1d{left:478.640000pt;}
.x23{left:479.763280pt;}
.x14{left:481.840000pt;}
.x3e{left:487.516880pt;}
.x47{left:491.760000pt;}
.x56{left:498.717600pt;}
.x55{left:499.920000pt;}
.x4d{left:503.196480pt;}
.x4c{left:504.960000pt;}
.x51{left:512.561360pt;}
.x58{left:530.307600pt;}
.x46{left:542.320000pt;}
.xc{left:655.280000pt;}
.x40{left:674.862800pt;}
}




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