
    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_b85f7b17f3af8aff71636652.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_6ce3fada44b5da91ddae58bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_422149ae4e451960b99ebb7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_6d347883a0b093be37e6f898.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b50b8bb9da72f1a5be90801a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ac2d80e65e5ac31fac242e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.819824;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_480b17fdeff39f6f47472df3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_91ad27ec08285dcbe1b492ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_39fcb2a48188c0db910d0c22.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_33bb47e35674258123a019bb.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls13{letter-spacing:-0.360144px;}
.ls1b{letter-spacing:-0.295200px;}
.ls3b{letter-spacing:-0.122400px;}
.ls3a{letter-spacing:-0.115200px;}
.ls18{letter-spacing:-0.070848px;}
.ls36{letter-spacing:-0.057600px;}
.ls37{letter-spacing:-0.043200px;}
.ls11{letter-spacing:-0.036000px;}
.ls38{letter-spacing:-0.028800px;}
.ls2a{letter-spacing:-0.021600px;}
.lsc{letter-spacing:-0.014400px;}
.ls44{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.014400px;}
.ls50{letter-spacing:0.036000px;}
.ls2e{letter-spacing:0.060000px;}
.ls42{letter-spacing:0.073440px;}
.ls57{letter-spacing:0.093600px;}
.ls4{letter-spacing:0.116928px;}
.ls16{letter-spacing:0.147600px;}
.ls7{letter-spacing:0.158688px;}
.ls3d{letter-spacing:0.161040px;}
.ls4a{letter-spacing:0.177120px;}
.ls2{letter-spacing:0.200448px;}
.ls1{letter-spacing:0.208800px;}
.ls27{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.240060px;}
.ls24{letter-spacing:0.242064px;}
.lsa{letter-spacing:0.242208px;}
.ls4c{letter-spacing:0.253872px;}
.ls4d{letter-spacing:0.255600px;}
.ls4b{letter-spacing:0.259776px;}
.ls46{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.275616px;}
.ls10{letter-spacing:0.283968px;}
.ls1a{letter-spacing:0.293760px;}
.ls12{letter-spacing:0.295200px;}
.lsb{letter-spacing:0.317376px;}
.ls55{letter-spacing:0.318816px;}
.ls30{letter-spacing:0.320280px;}
.ls3{letter-spacing:0.359136px;}
.ls3f{letter-spacing:0.361800px;}
.ls58{letter-spacing:0.383760px;}
.ls25{letter-spacing:0.419184px;}
.ls45{letter-spacing:0.425088px;}
.ls4e{letter-spacing:0.438000px;}
.ls32{letter-spacing:0.448200px;}
.ls8{letter-spacing:0.478224px;}
.ls29{letter-spacing:0.480000px;}
.ls2f{letter-spacing:0.495936px;}
.ls20{letter-spacing:0.498600px;}
.lsf{letter-spacing:0.499680px;}
.ls14{letter-spacing:0.500280px;}
.ls3c{letter-spacing:0.501840px;}
.ls23{letter-spacing:0.543168px;}
.ls17{letter-spacing:0.572688px;}
.ls31{letter-spacing:0.578592px;}
.ls26{letter-spacing:0.604200px;}
.ls22{letter-spacing:0.637632px;}
.ls48{letter-spacing:0.643536px;}
.ls51{letter-spacing:0.702576px;}
.lse{letter-spacing:0.720288px;}
.ls53{letter-spacing:0.722304px;}
.ls49{letter-spacing:0.743904px;}
.ls1c{letter-spacing:0.791136px;}
.ls2d{letter-spacing:0.791400px;}
.ls47{letter-spacing:0.802944px;}
.ls52{letter-spacing:0.861984px;}
.ls19{letter-spacing:0.938736px;}
.ls1d{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.127400px;}
.ls33{letter-spacing:1.149600px;}
.ls4f{letter-spacing:1.170000px;}
.ls15{letter-spacing:1.222128px;}
.ls54{letter-spacing:1.781400px;}
.ls39{letter-spacing:2.150400px;}
.ls43{letter-spacing:3.480600px;}
.ls35{letter-spacing:5.443200px;}
.ls34{letter-spacing:5.500800px;}
.ls56{letter-spacing:8.740200px;}
.ls3e{letter-spacing:8.777400px;}
.ls2b{letter-spacing:8.920200px;}
.ls40{letter-spacing:20.416800px;}
.ls9{letter-spacing:21.781440px;}
.ls6{letter-spacing:23.187480px;}
.ls5a{letter-spacing:31.766340px;}
.ls5{letter-spacing:33.984000px;}
.ls59{letter-spacing:51.566640px;}
.ls1e{letter-spacing:191.819400px;}
.ls2c{letter-spacing:191.819820px;}
.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;}
}
.ws24{word-spacing:-21.239136px;}
.ws13{word-spacing:-21.197376px;}
.ws23{word-spacing:-21.155616px;}
.ws5{word-spacing:-21.122208px;}
.ws1{word-spacing:-21.038688px;}
.ws16{word-spacing:-18.036000px;}
.ws9{word-spacing:-18.014400px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws14{word-spacing:-17.978400px;}
.ws11{word-spacing:-17.971200px;}
.wse{word-spacing:-15.698736px;}
.ws7{word-spacing:-15.480288px;}
.ws20{word-spacing:-15.462576px;}
.ws1e{word-spacing:-15.397632px;}
.ws22{word-spacing:-15.338592px;}
.ws21{word-spacing:-15.303168px;}
.ws12{word-spacing:-15.261840px;}
.ws10{word-spacing:-15.255936px;}
.ws3{word-spacing:-15.238224px;}
.wsd{word-spacing:-15.179184px;}
.ws1f{word-spacing:-15.143760px;}
.ws18{word-spacing:-15.078816px;}
.wsa{word-spacing:-15.055200px;}
.ws8{word-spacing:-14.907600px;}
.wsb{word-spacing:-14.689152px;}
.ws17{word-spacing:-12.602304px;}
.ws15{word-spacing:-11.880000px;}
.ws1d{word-spacing:-4.401372px;}
.ws19{word-spacing:-4.292112px;}
.wsc{word-spacing:-0.086400px;}
.ws4{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.050400px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:1.818408px;}
.ws1a{word-spacing:5.455200px;}
.ws1b{word-spacing:10.765488px;}
._35{margin-left:-7.992120px;}
._4{margin-left:-4.993380px;}
._e{margin-left:-3.894276px;}
._2a{margin-left:-2.307888px;}
._3{margin-left:-1.212660px;}
._2{width:1.002240px;}
._15{width:2.541600px;}
._28{width:3.585600px;}
._1{width:4.593600px;}
._0{width:5.679360px;}
._1a{width:6.799680px;}
._1f{width:8.344740px;}
._1b{width:9.979200px;}
._19{width:10.999620px;}
._23{width:12.177408px;}
._1c{width:13.344096px;}
._b{width:14.837124px;}
._16{width:15.857700px;}
._29{width:16.986600px;}
._25{width:19.670400px;}
._26{width:20.916420px;}
._2f{width:22.393848px;}
._27{width:23.651076px;}
._a{width:25.409724px;}
._1e{width:27.207876px;}
._2e{width:28.281600px;}
._7{width:30.203220px;}
._21{width:31.673580px;}
._31{width:32.696820px;}
._1d{width:33.739200px;}
._f{width:34.781124px;}
._17{width:36.504000px;}
._22{width:38.260800px;}
._2d{width:39.427200px;}
._20{width:40.828020px;}
._3b{width:41.831820px;}
._33{width:42.850020px;}
._18{width:43.985220px;}
._2b{width:45.192000px;}
._24{width:46.324800px;}
._38{width:48.384000px;}
._36{width:49.924800px;}
._2c{width:51.228000px;}
._39{width:52.747200px;}
._c{width:57.689124px;}
._32{width:59.342400px;}
._37{width:60.582456px;}
._34{width:61.644744px;}
._30{width:62.824428px;}
._11{width:64.073724px;}
._3a{width:66.333600px;}
._3c{width:72.294600px;}
._9{width:95.969724px;}
._14{width:107.447220px;}
._10{width:148.097724px;}
._12{width:152.171220px;}
._d{width:155.722620px;}
._13{width:164.123220px;}
._6{width:175.487220px;}
._8{width:178.342020px;}
._3d{width:191.819820px;}
._5{width:194.700000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(79,129,189);}
.fc1{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs5{font-size:53.280000px;}
.fs4{font-size:59.040000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:0.360015px;}
.y106{bottom:3.239985px;}
.y32{bottom:3.960000px;}
.y7a{bottom:8.280000px;}
.yd1{bottom:9.360000px;}
.yc1{bottom:10.440000px;}
.yd8{bottom:10.799985px;}
.yb3{bottom:10.800000px;}
.yf3{bottom:11.159955px;}
.y66{bottom:11.160000px;}
.ye8{bottom:13.320000px;}
.y1{bottom:13.478669px;}
.yfc{bottom:14.040000px;}
.y7d{bottom:18.360000px;}
.y125{bottom:19.439955px;}
.y11c{bottom:19.440000px;}
.y139{bottom:19.799955px;}
.y12e{bottom:19.800000px;}
.y12b{bottom:22.320000px;}
.ya0{bottom:25.200015px;}
.y104{bottom:26.640000px;}
.yd7{bottom:28.079985px;}
.y117{bottom:28.080000px;}
.y113{bottom:35.640000px;}
.y124{bottom:36.719955px;}
.y114{bottom:36.720000px;}
.y138{bottom:40.319955px;}
.y130{bottom:40.320000px;}
.y12d{bottom:40.680000px;}
.y7c{bottom:41.760000px;}
.y93{bottom:42.840000px;}
.y17{bottom:43.242691px;}
.y116{bottom:45.360000px;}
.y9f{bottom:50.040000px;}
.y31{bottom:52.401345px;}
.y123{bottom:53.639955px;}
.y11b{bottom:53.640000px;}
.y127{bottom:66.599955px;}
.y11e{bottom:66.600000px;}
.y119{bottom:66.960000px;}
.y126{bottom:69.479955px;}
.y11d{bottom:69.480000px;}
.y118{bottom:69.840000px;}
.ye7{bottom:72.966345px;}
.y92{bottom:73.206375px;}
.y9e{bottom:77.466345px;}
.y103{bottom:92.121315px;}
.y105{bottom:92.121330px;}
.y181{bottom:101.226360px;}
.y17c{bottom:101.586360px;}
.yd6{bottom:112.566360px;}
.ya8{bottom:117.402677px;}
.y186{bottom:117.762677px;}
.y79{bottom:119.226345px;}
.y177{bottom:119.586360px;}
.y3f{bottom:119.922677px;}
.y4d{bottom:121.002691px;}
.y100{bottom:122.442677px;}
.ycc{bottom:124.602677px;}
.yd5{bottom:124.962692px;}
.yfb{bottom:126.246345px;}
.yde{bottom:127.122677px;}
.y10c{bottom:127.236345px;}
.yd0{bottom:127.596345px;}
.yf1{bottom:128.922677px;}
.ydc{bottom:129.846345px;}
.y73{bottom:130.002691px;}
.y4b{bottom:131.802676px;}
.y109{bottom:133.602677px;}
.ye1{bottom:133.962692px;}
.ye0{bottom:135.402677px;}
.yb1{bottom:137.922632px;}
.y64{bottom:139.362632px;}
.y122{bottom:141.681345px;}
.yf2{bottom:142.986345px;}
.y137{bottom:143.841345px;}
.y156{bottom:144.762632px;}
.y16b{bottom:145.482632px;}
.y10f{bottom:145.842632px;}
.yc5{bottom:146.562632px;}
.y8b{bottom:146.922632px;}
.yb7{bottom:147.282632px;}
.ydf{bottom:147.642632px;}
.ya7{bottom:148.362632px;}
.ydb{bottom:150.522632px;}
.y58{bottom:150.882632px;}
.y185{bottom:151.827632px;}
.y180{bottom:152.187632px;}
.y91{bottom:152.322632px;}
.y10e{bottom:154.122632px;}
.yc9{bottom:154.236300px;}
.yd3{bottom:155.922632px;}
.ycb{bottom:159.522632px;}
.yf0{bottom:159.882632px;}
.y72{bottom:161.322632px;}
.y1e{bottom:162.402632px;}
.y108{bottom:162.762632px;}
.ye6{bottom:164.922632px;}
.y78{bottom:166.362632px;}
.yb0{bottom:168.882632px;}
.y63{bottom:170.322632px;}
.y164{bottom:171.402632px;}
.yca{bottom:171.762632px;}
.y30{bottom:172.842632px;}
.y16{bottom:174.282632px;}
.y107{bottom:175.362632px;}
.yff{bottom:175.722632px;}
.y155{bottom:176.802632px;}
.y8a{bottom:177.882632px;}
.ydd{bottom:178.602632px;}
.y4c{bottom:179.322631px;}
.y111{bottom:180.042631px;}
.yc4{bottom:181.482631px;}
.y57{bottom:181.842631px;}
.y184{bottom:183.147632px;}
.ycf{bottom:183.282631px;}
.y17f{bottom:183.507632px;}
.yd4{bottom:186.882631px;}
.y178{bottom:188.639940px;}
.y10d{bottom:188.682631px;}
.y4a{bottom:189.762632px;}
.yef{bottom:190.842631px;}
.y71{bottom:192.282631px;}
.yc3{bottom:193.722632px;}
.yda{bottom:194.442631px;}
.y102{bottom:194.736300px;}
.ye5{bottom:196.242631px;}
.yaf{bottom:199.842631px;}
.y17b{bottom:200.787632px;}
.y62{bottom:201.282631px;}
.y136{bottom:201.441300px;}
.y2f{bottom:203.802632px;}
.y90{bottom:205.242631px;}
.y16a{bottom:207.762632px;}
.y89{bottom:208.842631px;}
.y154{bottom:209.202632px;}
.yf7{bottom:210.846300px;}
.y56{bottom:212.802632px;}
.y175{bottom:213.162632px;}
.y183{bottom:214.107631px;}
.y10b{bottom:214.242631px;}
.y17e{bottom:214.467632px;}
.y110{bottom:214.602632px;}
.y1d{bottom:218.202632px;}
.y77{bottom:219.642631px;}
.yee{bottom:221.802632px;}
.y70{bottom:223.242631px;}
.y163{bottom:224.682631px;}
.y121{bottom:225.561300px;}
.y3e{bottom:225.762632px;}
.y145{bottom:226.122631px;}
.y9d{bottom:227.202632px;}
.yfe{bottom:228.642631px;}
.yb{bottom:229.722632px;}
.yae{bottom:230.802632px;}
.ybf{bottom:231.162632px;}
.y61{bottom:232.242631px;}
.y17a{bottom:232.467632px;}
.y15{bottom:232.602632px;}
.y2e{bottom:234.762632px;}
.yce{bottom:236.202632px;}
.y88{bottom:240.162632px;}
.y153{bottom:241.602632px;}
.y55{bottom:244.122631px;}
.y182{bottom:245.067632px;}
.yfa{bottom:245.202632px;}
.y17d{bottom:245.427631px;}
.y49{bottom:248.082632px;}
.yb2{bottom:248.736300px;}
.yc2{bottom:249.162632px;}
.yed{bottom:253.122631px;}
.y6f{bottom:254.202632px;}
.y3d{bottom:257.082631px;}
.y8f{bottom:258.162631px;}
.y144{bottom:258.522631px;}
.y135{bottom:259.401300px;}
.yad{bottom:262.122631px;}
.y179{bottom:263.427631px;}
.y60{bottom:263.562631px;}
.y2d{bottom:266.082631px;}
.y10a{bottom:267.162631px;}
.y87{bottom:271.122631px;}
.ya{bottom:272.562631px;}
.y152{bottom:274.002632px;}
.y54{bottom:275.082631px;}
.y1c{bottom:276.522631px;}
.y162{bottom:277.962631px;}
.y9c{bottom:280.122631px;}
.yfd{bottom:281.562631px;}
.yec{bottom:284.082631px;}
.ya6{bottom:285.522631px;}
.y3c{bottom:288.042631px;}
.ycd{bottom:289.122631px;}
.y14{bottom:290.562631px;}
.y143{bottom:290.922631px;}
.y7b{bottom:291.321300px;}
.yac{bottom:293.082631px;}
.y5f{bottom:294.522631px;}
.y2c{bottom:297.042631px;}
.yf9{bottom:298.482631px;}
.y86{bottom:302.082631px;}
.y169{bottom:304.962631px;}
.y48{bottom:306.042631px;}
.y151{bottom:306.402631px;}
.yf6{bottom:307.482631px;}
.y120{bottom:309.801300px;}
.y161{bottom:310.002632px;}
.y8e{bottom:311.082631px;}
.yeb{bottom:315.042631px;}
.y134{bottom:317.001300px;}
.y3b{bottom:319.002632px;}
.ye4{bottom:320.442631px;}
.yb6{bottom:321.882631px;}
.y142{bottom:322.962631px;}
.yab{bottom:324.042631px;}
.y9{bottom:325.482631px;}
.y2b{bottom:328.002632px;}
.yc8{bottom:329.442631px;}
.y85{bottom:333.042631px;}
.y1b{bottom:334.482631px;}
.y53{bottom:337.002632px;}
.y168{bottom:337.362632px;}
.ya5{bottom:338.442631px;}
.y150{bottom:338.802632px;}
.y9b{bottom:342.402631px;}
.ybe{bottom:346.002632px;}
.y13{bottom:348.882631px;}
.y3a{bottom:349.962631px;}
.yf8{bottom:351.402631px;}
.yaa{bottom:355.002632px;}
.y141{bottom:355.362632px;}
.y5e{bottom:356.442631px;}
.y2a{bottom:358.962631px;}
.yf5{bottom:360.402631px;}
.y47{bottom:364.362632px;}
.y52{bottom:367.962631px;}
.y6e{bottom:369.402631px;}
.y167{bottom:369.762631px;}
.y174{bottom:371.922631px;}
.y9a{bottom:373.362632px;}
.y160{bottom:374.802632px;}
.y133{bottom:374.961300px;}
.ybd{bottom:377.322631px;}
.y8{bottom:378.402631px;}
.yb5{bottom:379.842631px;}
.y39{bottom:381.282632px;}
.yc7{bottom:382.362632px;}
.yc0{bottom:383.931300px;}
.ya9{bottom:386.322631px;}
.y5d{bottom:387.762631px;}
.y29{bottom:390.282632px;}
.ya4{bottom:391.362632px;}
.y1a{bottom:392.802632px;}
.y11f{bottom:394.041300px;}
.y84{bottom:395.322631px;}
.y51{bottom:399.282632px;}
.y166{bottom:401.802632px;}
.y99{bottom:404.322631px;}
.y12{bottom:407.202631px;}
.ybc{bottom:408.282632px;}
.y38{bottom:412.242632px;}
.yf4{bottom:413.322631px;}
.y8d{bottom:417.282632px;}
.y140{bottom:420.162631px;}
.y28{bottom:421.242632px;}
.y46{bottom:422.682631px;}
.y173{bottom:425.202631px;}
.y83{bottom:426.282632px;}
.y50{bottom:430.242632px;}
.y7{bottom:431.682631px;}
.y132{bottom:432.561300px;}
.y165{bottom:434.202631px;}
.yc6{bottom:435.282632px;}
.yb4{bottom:438.162631px;}
.ybb{bottom:439.242632px;}
.y15f{bottom:439.602632px;}
.y5c{bottom:440.682631px;}
.y37{bottom:443.202631px;}
.ya3{bottom:444.642631px;}
.y14f{bottom:445.722632px;}
.y8c{bottom:448.242632px;}
.y19{bottom:451.122631px;}
.y101{bottom:451.236300px;}
.y27{bottom:452.202631px;}
.y13f{bottom:452.562632px;}
.y97{bottom:457.242632px;}
.y4f{bottom:461.202631px;}
.y11{bottom:465.162631px;}
.yd9{bottom:466.602632px;}
.yba{bottom:470.202631px;}
.y15e{bottom:471.642631px;}
.y36{bottom:474.162631px;}
.y6d{bottom:475.602632px;}
.y11a{bottom:478.281300px;}
.y172{bottom:478.482631px;}
.y82{bottom:479.202631px;}
.y45{bottom:480.642631px;}
.y26{bottom:483.162631px;}
.y6{bottom:484.602632px;}
.y13e{bottom:484.962631px;}
.y18{bottom:487.122631px;}
.y96{bottom:488.562632px;}
.y131{bottom:490.161300px;}
.y4e{bottom:492.162631px;}
.y5b{bottom:493.602632px;}
.y65{bottom:494.346300px;}
.ya2{bottom:497.562632px;}
.y14e{bottom:499.002632px;}
.yb9{bottom:501.522631px;}
.y15d{bottom:504.042631px;}
.y35{bottom:505.122632px;}
.y81{bottom:510.522631px;}
.y25{bottom:514.482631px;}
.y13d{bottom:517.002632px;}
.y95{bottom:519.522631px;}
.y10{bottom:523.482631px;}
.y6c{bottom:528.522631px;}
.y14d{bottom:531.402631px;}
.y15c{bottom:536.442632px;}
.y76{bottom:537.522631px;}
.y44{bottom:538.962631px;}
.y80{bottom:541.482631px;}
.y171{bottom:542.922631px;}
.y5{bottom:544.362632px;}
.y24{bottom:545.442632px;}
.y5a{bottom:546.522631px;}
.y12f{bottom:548.121300px;}
.y13c{bottom:549.402631px;}
.y94{bottom:550.482631px;}
.yb8{bottom:554.442632px;}
.ye3{bottom:559.482631px;}
.y34{bottom:560.922631px;}
.y115{bottom:562.161300px;}
.y14c{bottom:563.802632px;}
.y15b{bottom:567.402631px;}
.y7f{bottom:572.442632px;}
.y170{bottom:575.322631px;}
.y23{bottom:576.402631px;}
.y6b{bottom:581.442632px;}
.yf{bottom:581.802632px;}
.yea{bottom:585.402631px;}
.y75{bottom:590.802632px;}
.y14b{bottom:595.842632px;}
.y43{bottom:597.282632px;}
.y59{bottom:599.802632px;}
.y7e{bottom:603.402631px;}
.y12c{bottom:605.721300px;}
.y4{bottom:606.282632px;}
.y22{bottom:607.362632px;}
.y16f{bottom:607.722632px;}
.y98{bottom:612.762631px;}
.y13b{bottom:614.202631px;}
.y33{bottom:616.362632px;}
.ye2{bottom:621.762631px;}
.y14a{bottom:628.242632px;}
.y15a{bottom:630.762631px;}
.y6a{bottom:634.722632px;}
.y21{bottom:638.322631px;}
.ye{bottom:639.762631px;}
.y16e{bottom:640.122632px;}
.y176{bottom:642.282632px;}
.y74{bottom:643.722632px;}
.y112{bottom:646.401300px;}
.y13a{bottom:646.602632px;}
.ye9{bottom:647.682631px;}
.y42{bottom:652.722632px;}
.y129{bottom:659.202631px;}
.y149{bottom:660.642631px;}
.y159{bottom:663.162631px;}
.y12a{bottom:663.681300px;}
.y69{bottom:665.682631px;}
.y3{bottom:666.042631px;}
.y20{bottom:669.642631px;}
.y16d{bottom:672.522631px;}
.yd2{bottom:674.682631px;}
.y128{bottom:679.722632px;}
.y148{bottom:693.042631px;}
.y158{bottom:694.482631px;}
.y68{bottom:696.642631px;}
.yd{bottom:698.082632px;}
.y1f{bottom:700.602632px;}
.y16c{bottom:704.562632px;}
.y41{bottom:705.642631px;}
.y147{bottom:725.442632px;}
.y157{bottom:726.522631px;}
.y67{bottom:727.602632px;}
.y2{bottom:742.002632px;}
.yc{bottom:756.402631px;}
.y146{bottom:757.842632px;}
.y40{bottom:758.922631px;}
.h9{height:20.880000px;}
.hc{height:21.960000px;}
.h16{height:23.040000px;}
.h13{height:24.120000px;}
.h12{height:24.479985px;}
.h19{height:24.480000px;}
.h1c{height:24.480015px;}
.ha{height:24.840000px;}
.h1b{height:27.000000px;}
.h1d{height:28.080000px;}
.h18{height:34.114922px;}
.h1f{height:35.511328px;}
.he{height:36.473906px;}
.h1e{height:40.320000px;}
.h15{height:41.696016px;}
.h17{height:41.760000px;}
.h1a{height:49.289063px;}
.h7{height:50.308594px;}
.h11{height:51.804141px;}
.hb{height:51.948281px;}
.hd{height:55.440015px;}
.hf{height:56.520000px;}
.h24{height:56.879970px;}
.h27{height:56.880000px;}
.h26{height:56.880015px;}
.h25{height:57.240000px;}
.h4{height:63.175781px;}
.h8{height:63.351563px;}
.h10{height:63.720000px;}
.h6{height:73.283906px;}
.h14{height:74.816016px;}
.h23{height:83.159985px;}
.h21{height:83.160000px;}
.h20{height:83.519985px;}
.h22{height:83.520015px;}
.h5{height:94.763672px;}
.h3{height:95.027344px;}
.h2{height:126.703125px;}
.h28{height:205.200000px;}
.h1{height:891.042600px;}
.h0{height:918.000000px;}
.w2{width:10.080002px;}
.wb{width:20.160000px;}
.w1a{width:101.879970px;}
.w18{width:102.599985px;}
.w17{width:102.600015px;}
.w19{width:102.600030px;}
.w7{width:135.000000px;}
.w1b{width:164.520000px;}
.w16{width:164.880000px;}
.wf{width:171.000000px;}
.w1d{width:176.400000px;}
.w13{width:272.520000px;}
.w10{width:274.680000px;}
.w3{width:306.360000px;}
.w8{width:319.320000px;}
.w15{width:364.320000px;}
.w14{width:378.000000px;}
.w9{width:391.320000px;}
.w11{width:405.000000px;}
.w4{width:429.120000px;}
.wa{width:432.000000px;}
.wc{width:445.680000px;}
.we{width:448.117950px;}
.w5{width:456.840000px;}
.w6{width:459.000000px;}
.wd{width:486.000000px;}
.w12{width:499.680000px;}
.w1e{width:594.000000px;}
.w20{width:607.680000px;}
.w1c{width:646.200000px;}
.w1f{width:702.000000px;}
.w1{width:1167.547950px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x1{left:7.738678px;}
.x29{left:10.245000px;}
.x2e{left:13.361145px;}
.x25{left:16.492500px;}
.x21{left:21.077550px;}
.x2f{left:23.783520px;}
.x2b{left:25.912500px;}
.x1e{left:29.469900px;}
.x23{left:32.115300px;}
.x27{left:33.371400px;}
.x2c{left:35.440020px;}
.x32{left:38.567460px;}
.x31{left:47.942460px;}
.x30{left:49.612380px;}
.x2d{left:51.135000px;}
.x35{left:56.389350px;}
.x40{left:68.144850px;}
.x38{left:72.644850px;}
.x1c{left:82.469985px;}
.x37{left:88.394850px;}
.x2{left:98.640017px;}
.x5{left:125.640017px;}
.x42{left:130.590092px;}
.xb{left:135.703680px;}
.xf{left:147.028665px;}
.x7{left:151.814972px;}
.x12{left:160.528650px;}
.x39{left:179.225235px;}
.x3c{left:200.292585px;}
.x44{left:209.160000px;}
.x49{left:213.840000px;}
.x3e{left:215.546085px;}
.x3a{left:229.551435px;}
.x3b{left:241.271685px;}
.xe{left:246.313650px;}
.x3f{left:259.522185px;}
.x1d{left:264.058650px;}
.x4e{left:271.080000px;}
.x33{left:275.505135px;}
.x3d{left:288.020685px;}
.x43{left:295.453650px;}
.x47{left:298.514972px;}
.x41{left:304.016835px;}
.x36{left:323.009985px;}
.x4f{left:337.034971px;}
.x48{left:349.453650px;}
.x4c{left:352.514972px;}
.x45{left:354.674971px;}
.x1f{left:367.378650px;}
.x20{left:470.698650px;}
.x4b{left:502.994971px;}
.x50{left:509.834972px;}
.x4a{left:512.354971px;}
.x46{left:566.714971px;}
.x22{left:574.018650px;}
.x11{left:584.098650px;}
.x6{left:589.138650px;}
.x3{left:613.079971px;}
.x13{left:619.168650px;}
.xa{left:633.028650px;}
.x15{left:640.079971px;}
.x19{left:646.168650px;}
.xc{left:660.028650px;}
.x8{left:666.254822px;}
.x18{left:673.168650px;}
.x24{left:677.338650px;}
.x10{left:687.028650px;}
.x1a{left:700.453650px;}
.x1b{left:714.028650px;}
.x4{left:726.016172px;}
.x14{left:727.168650px;}
.x9{left:741.028650px;}
.x17{left:749.728650px;}
.x16{left:768.028650px;}
.x26{left:780.658650px;}
.x34{left:794.338650px;}
.x28{left:883.978650px;}
.xd{left:943.168650px;}
.x2a{left:987.658650px;}
.x4d{left:1085.639971px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls13{letter-spacing:-0.320128pt;}
.ls1b{letter-spacing:-0.262400pt;}
.ls3b{letter-spacing:-0.108800pt;}
.ls3a{letter-spacing:-0.102400pt;}
.ls18{letter-spacing:-0.062976pt;}
.ls36{letter-spacing:-0.051200pt;}
.ls37{letter-spacing:-0.038400pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls38{letter-spacing:-0.025600pt;}
.ls2a{letter-spacing:-0.019200pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls44{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.012800pt;}
.ls50{letter-spacing:0.032000pt;}
.ls2e{letter-spacing:0.053333pt;}
.ls42{letter-spacing:0.065280pt;}
.ls57{letter-spacing:0.083200pt;}
.ls4{letter-spacing:0.103936pt;}
.ls16{letter-spacing:0.131200pt;}
.ls7{letter-spacing:0.141056pt;}
.ls3d{letter-spacing:0.143147pt;}
.ls4a{letter-spacing:0.157440pt;}
.ls2{letter-spacing:0.178176pt;}
.ls1{letter-spacing:0.185600pt;}
.ls27{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.213387pt;}
.ls24{letter-spacing:0.215168pt;}
.lsa{letter-spacing:0.215296pt;}
.ls4c{letter-spacing:0.225664pt;}
.ls4d{letter-spacing:0.227200pt;}
.ls4b{letter-spacing:0.230912pt;}
.ls46{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.244992pt;}
.ls10{letter-spacing:0.252416pt;}
.ls1a{letter-spacing:0.261120pt;}
.ls12{letter-spacing:0.262400pt;}
.lsb{letter-spacing:0.282112pt;}
.ls55{letter-spacing:0.283392pt;}
.ls30{letter-spacing:0.284693pt;}
.ls3{letter-spacing:0.319232pt;}
.ls3f{letter-spacing:0.321600pt;}
.ls58{letter-spacing:0.341120pt;}
.ls25{letter-spacing:0.372608pt;}
.ls45{letter-spacing:0.377856pt;}
.ls4e{letter-spacing:0.389333pt;}
.ls32{letter-spacing:0.398400pt;}
.ls8{letter-spacing:0.425088pt;}
.ls29{letter-spacing:0.426667pt;}
.ls2f{letter-spacing:0.440832pt;}
.ls20{letter-spacing:0.443200pt;}
.lsf{letter-spacing:0.444160pt;}
.ls14{letter-spacing:0.444693pt;}
.ls3c{letter-spacing:0.446080pt;}
.ls23{letter-spacing:0.482816pt;}
.ls17{letter-spacing:0.509056pt;}
.ls31{letter-spacing:0.514304pt;}
.ls26{letter-spacing:0.537067pt;}
.ls22{letter-spacing:0.566784pt;}
.ls48{letter-spacing:0.572032pt;}
.ls51{letter-spacing:0.624512pt;}
.lse{letter-spacing:0.640256pt;}
.ls53{letter-spacing:0.642048pt;}
.ls49{letter-spacing:0.661248pt;}
.ls1c{letter-spacing:0.703232pt;}
.ls2d{letter-spacing:0.703467pt;}
.ls47{letter-spacing:0.713728pt;}
.ls52{letter-spacing:0.766208pt;}
.ls19{letter-spacing:0.834432pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.002133pt;}
.ls33{letter-spacing:1.021867pt;}
.ls4f{letter-spacing:1.040000pt;}
.ls15{letter-spacing:1.086336pt;}
.ls54{letter-spacing:1.583467pt;}
.ls39{letter-spacing:1.911467pt;}
.ls43{letter-spacing:3.093867pt;}
.ls35{letter-spacing:4.838400pt;}
.ls34{letter-spacing:4.889600pt;}
.ls56{letter-spacing:7.769067pt;}
.ls3e{letter-spacing:7.802133pt;}
.ls2b{letter-spacing:7.929067pt;}
.ls40{letter-spacing:18.148267pt;}
.ls9{letter-spacing:19.361280pt;}
.ls6{letter-spacing:20.611093pt;}
.ls5a{letter-spacing:28.236747pt;}
.ls5{letter-spacing:30.208000pt;}
.ls59{letter-spacing:45.837013pt;}
.ls1e{letter-spacing:170.506133pt;}
.ls2c{letter-spacing:170.506507pt;}
.ws24{word-spacing:-18.879232pt;}
.ws13{word-spacing:-18.842112pt;}
.ws23{word-spacing:-18.804992pt;}
.ws5{word-spacing:-18.775296pt;}
.ws1{word-spacing:-18.701056pt;}
.ws16{word-spacing:-16.032000pt;}
.ws9{word-spacing:-16.012800pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws14{word-spacing:-15.980800pt;}
.ws11{word-spacing:-15.974400pt;}
.wse{word-spacing:-13.954432pt;}
.ws7{word-spacing:-13.760256pt;}
.ws20{word-spacing:-13.744512pt;}
.ws1e{word-spacing:-13.686784pt;}
.ws22{word-spacing:-13.634304pt;}
.ws21{word-spacing:-13.602816pt;}
.ws12{word-spacing:-13.566080pt;}
.ws10{word-spacing:-13.560832pt;}
.ws3{word-spacing:-13.545088pt;}
.wsd{word-spacing:-13.492608pt;}
.ws1f{word-spacing:-13.461120pt;}
.ws18{word-spacing:-13.403392pt;}
.wsa{word-spacing:-13.382400pt;}
.ws8{word-spacing:-13.251200pt;}
.wsb{word-spacing:-13.057024pt;}
.ws17{word-spacing:-11.202048pt;}
.ws15{word-spacing:-10.560000pt;}
.ws1d{word-spacing:-3.912331pt;}
.ws19{word-spacing:-3.815211pt;}
.wsc{word-spacing:-0.076800pt;}
.ws4{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.044800pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:1.616363pt;}
.ws1a{word-spacing:4.849067pt;}
.ws1b{word-spacing:9.569323pt;}
._35{margin-left:-7.104107pt;}
._4{margin-left:-4.438560pt;}
._e{margin-left:-3.461579pt;}
._2a{margin-left:-2.051456pt;}
._3{margin-left:-1.077920pt;}
._2{width:0.890880pt;}
._15{width:2.259200pt;}
._28{width:3.187200pt;}
._1{width:4.083200pt;}
._0{width:5.048320pt;}
._1a{width:6.044160pt;}
._1f{width:7.417547pt;}
._1b{width:8.870400pt;}
._19{width:9.777440pt;}
._23{width:10.824363pt;}
._1c{width:11.861419pt;}
._b{width:13.188555pt;}
._16{width:14.095733pt;}
._29{width:15.099200pt;}
._25{width:17.484800pt;}
._26{width:18.592373pt;}
._2f{width:19.905643pt;}
._27{width:21.023179pt;}
._a{width:22.586421pt;}
._1e{width:24.184779pt;}
._2e{width:25.139200pt;}
._7{width:26.847307pt;}
._21{width:28.154293pt;}
._31{width:29.063840pt;}
._1d{width:29.990400pt;}
._f{width:30.916555pt;}
._17{width:32.448000pt;}
._22{width:34.009600pt;}
._2d{width:35.046400pt;}
._20{width:36.291573pt;}
._3b{width:37.183840pt;}
._33{width:38.088907pt;}
._18{width:39.097973pt;}
._2b{width:40.170667pt;}
._24{width:41.177600pt;}
._38{width:43.008000pt;}
._36{width:44.377600pt;}
._2c{width:45.536000pt;}
._39{width:46.886400pt;}
._c{width:51.279221pt;}
._32{width:52.748800pt;}
._37{width:53.851072pt;}
._34{width:54.795328pt;}
._30{width:55.843936pt;}
._11{width:56.954421pt;}
._3a{width:58.963200pt;}
._3c{width:64.261867pt;}
._9{width:85.306421pt;}
._14{width:95.508640pt;}
._10{width:131.642421pt;}
._12{width:135.263307pt;}
._d{width:138.420107pt;}
._13{width:145.887307pt;}
._6{width:155.988640pt;}
._8{width:158.526240pt;}
._3d{width:170.506507pt;}
._5{width:173.066667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs5{font-size:47.360000pt;}
.fs4{font-size:52.480000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:0.320013pt;}
.y106{bottom:2.879987pt;}
.y32{bottom:3.520000pt;}
.y7a{bottom:7.360000pt;}
.yd1{bottom:8.320000pt;}
.yc1{bottom:9.280000pt;}
.yd8{bottom:9.599987pt;}
.yb3{bottom:9.600000pt;}
.yf3{bottom:9.919960pt;}
.y66{bottom:9.920000pt;}
.ye8{bottom:11.840000pt;}
.y1{bottom:11.981039pt;}
.yfc{bottom:12.480000pt;}
.y7d{bottom:16.320000pt;}
.y125{bottom:17.279960pt;}
.y11c{bottom:17.280000pt;}
.y139{bottom:17.599960pt;}
.y12e{bottom:17.600000pt;}
.y12b{bottom:19.840000pt;}
.ya0{bottom:22.400013pt;}
.y104{bottom:23.680000pt;}
.yd7{bottom:24.959987pt;}
.y117{bottom:24.960000pt;}
.y113{bottom:31.680000pt;}
.y124{bottom:32.639960pt;}
.y114{bottom:32.640000pt;}
.y138{bottom:35.839960pt;}
.y130{bottom:35.840000pt;}
.y12d{bottom:36.160000pt;}
.y7c{bottom:37.120000pt;}
.y93{bottom:38.080000pt;}
.y17{bottom:38.437948pt;}
.y116{bottom:40.320000pt;}
.y9f{bottom:44.480000pt;}
.y31{bottom:46.578973pt;}
.y123{bottom:47.679960pt;}
.y11b{bottom:47.680000pt;}
.y127{bottom:59.199960pt;}
.y11e{bottom:59.200000pt;}
.y119{bottom:59.520000pt;}
.y126{bottom:61.759960pt;}
.y11d{bottom:61.760000pt;}
.y118{bottom:62.080000pt;}
.ye7{bottom:64.858973pt;}
.y92{bottom:65.072333pt;}
.y9e{bottom:68.858973pt;}
.y103{bottom:81.885613pt;}
.y105{bottom:81.885627pt;}
.y181{bottom:89.978987pt;}
.y17c{bottom:90.298987pt;}
.yd6{bottom:100.058987pt;}
.ya8{bottom:104.357935pt;}
.y186{bottom:104.677935pt;}
.y79{bottom:105.978973pt;}
.y177{bottom:106.298987pt;}
.y3f{bottom:106.597935pt;}
.y4d{bottom:107.557948pt;}
.y100{bottom:108.837935pt;}
.ycc{bottom:110.757935pt;}
.yd5{bottom:111.077948pt;}
.yfb{bottom:112.218973pt;}
.yde{bottom:112.997935pt;}
.y10c{bottom:113.098973pt;}
.yd0{bottom:113.418973pt;}
.yf1{bottom:114.597935pt;}
.ydc{bottom:115.418973pt;}
.y73{bottom:115.557948pt;}
.y4b{bottom:117.157935pt;}
.y109{bottom:118.757935pt;}
.ye1{bottom:119.077948pt;}
.ye0{bottom:120.357935pt;}
.yb1{bottom:122.597895pt;}
.y64{bottom:123.877895pt;}
.y122{bottom:125.938973pt;}
.yf2{bottom:127.098973pt;}
.y137{bottom:127.858973pt;}
.y156{bottom:128.677895pt;}
.y16b{bottom:129.317895pt;}
.y10f{bottom:129.637895pt;}
.yc5{bottom:130.277895pt;}
.y8b{bottom:130.597895pt;}
.yb7{bottom:130.917895pt;}
.ydf{bottom:131.237895pt;}
.ya7{bottom:131.877895pt;}
.ydb{bottom:133.797895pt;}
.y58{bottom:134.117895pt;}
.y185{bottom:134.957895pt;}
.y180{bottom:135.277895pt;}
.y91{bottom:135.397895pt;}
.y10e{bottom:136.997895pt;}
.yc9{bottom:137.098933pt;}
.yd3{bottom:138.597895pt;}
.ycb{bottom:141.797895pt;}
.yf0{bottom:142.117895pt;}
.y72{bottom:143.397895pt;}
.y1e{bottom:144.357895pt;}
.y108{bottom:144.677895pt;}
.ye6{bottom:146.597895pt;}
.y78{bottom:147.877895pt;}
.yb0{bottom:150.117895pt;}
.y63{bottom:151.397895pt;}
.y164{bottom:152.357895pt;}
.yca{bottom:152.677895pt;}
.y30{bottom:153.637895pt;}
.y16{bottom:154.917895pt;}
.y107{bottom:155.877895pt;}
.yff{bottom:156.197895pt;}
.y155{bottom:157.157895pt;}
.y8a{bottom:158.117895pt;}
.ydd{bottom:158.757895pt;}
.y4c{bottom:159.397895pt;}
.y111{bottom:160.037895pt;}
.yc4{bottom:161.317895pt;}
.y57{bottom:161.637895pt;}
.y184{bottom:162.797895pt;}
.ycf{bottom:162.917895pt;}
.y17f{bottom:163.117895pt;}
.yd4{bottom:166.117895pt;}
.y178{bottom:167.679947pt;}
.y10d{bottom:167.717895pt;}
.y4a{bottom:168.677895pt;}
.yef{bottom:169.637895pt;}
.y71{bottom:170.917895pt;}
.yc3{bottom:172.197895pt;}
.yda{bottom:172.837895pt;}
.y102{bottom:173.098933pt;}
.ye5{bottom:174.437895pt;}
.yaf{bottom:177.637895pt;}
.y17b{bottom:178.477895pt;}
.y62{bottom:178.917895pt;}
.y136{bottom:179.058933pt;}
.y2f{bottom:181.157895pt;}
.y90{bottom:182.437895pt;}
.y16a{bottom:184.677895pt;}
.y89{bottom:185.637895pt;}
.y154{bottom:185.957895pt;}
.yf7{bottom:187.418933pt;}
.y56{bottom:189.157895pt;}
.y175{bottom:189.477895pt;}
.y183{bottom:190.317895pt;}
.y10b{bottom:190.437895pt;}
.y17e{bottom:190.637895pt;}
.y110{bottom:190.757895pt;}
.y1d{bottom:193.957895pt;}
.y77{bottom:195.237895pt;}
.yee{bottom:197.157895pt;}
.y70{bottom:198.437895pt;}
.y163{bottom:199.717895pt;}
.y121{bottom:200.498933pt;}
.y3e{bottom:200.677895pt;}
.y145{bottom:200.997895pt;}
.y9d{bottom:201.957895pt;}
.yfe{bottom:203.237895pt;}
.yb{bottom:204.197895pt;}
.yae{bottom:205.157895pt;}
.ybf{bottom:205.477895pt;}
.y61{bottom:206.437895pt;}
.y17a{bottom:206.637895pt;}
.y15{bottom:206.757895pt;}
.y2e{bottom:208.677895pt;}
.yce{bottom:209.957895pt;}
.y88{bottom:213.477895pt;}
.y153{bottom:214.757895pt;}
.y55{bottom:216.997895pt;}
.y182{bottom:217.837895pt;}
.yfa{bottom:217.957895pt;}
.y17d{bottom:218.157895pt;}
.y49{bottom:220.517895pt;}
.yb2{bottom:221.098933pt;}
.yc2{bottom:221.477895pt;}
.yed{bottom:224.997895pt;}
.y6f{bottom:225.957895pt;}
.y3d{bottom:228.517895pt;}
.y8f{bottom:229.477895pt;}
.y144{bottom:229.797895pt;}
.y135{bottom:230.578933pt;}
.yad{bottom:232.997895pt;}
.y179{bottom:234.157895pt;}
.y60{bottom:234.277895pt;}
.y2d{bottom:236.517895pt;}
.y10a{bottom:237.477895pt;}
.y87{bottom:240.997895pt;}
.ya{bottom:242.277895pt;}
.y152{bottom:243.557895pt;}
.y54{bottom:244.517895pt;}
.y1c{bottom:245.797895pt;}
.y162{bottom:247.077895pt;}
.y9c{bottom:248.997895pt;}
.yfd{bottom:250.277895pt;}
.yec{bottom:252.517895pt;}
.ya6{bottom:253.797895pt;}
.y3c{bottom:256.037895pt;}
.ycd{bottom:256.997895pt;}
.y14{bottom:258.277895pt;}
.y143{bottom:258.597895pt;}
.y7b{bottom:258.952267pt;}
.yac{bottom:260.517895pt;}
.y5f{bottom:261.797895pt;}
.y2c{bottom:264.037895pt;}
.yf9{bottom:265.317895pt;}
.y86{bottom:268.517895pt;}
.y169{bottom:271.077895pt;}
.y48{bottom:272.037895pt;}
.y151{bottom:272.357895pt;}
.yf6{bottom:273.317895pt;}
.y120{bottom:275.378933pt;}
.y161{bottom:275.557895pt;}
.y8e{bottom:276.517895pt;}
.yeb{bottom:280.037895pt;}
.y134{bottom:281.778933pt;}
.y3b{bottom:283.557895pt;}
.ye4{bottom:284.837895pt;}
.yb6{bottom:286.117895pt;}
.y142{bottom:287.077895pt;}
.yab{bottom:288.037895pt;}
.y9{bottom:289.317895pt;}
.y2b{bottom:291.557895pt;}
.yc8{bottom:292.837895pt;}
.y85{bottom:296.037895pt;}
.y1b{bottom:297.317895pt;}
.y53{bottom:299.557895pt;}
.y168{bottom:299.877895pt;}
.ya5{bottom:300.837895pt;}
.y150{bottom:301.157895pt;}
.y9b{bottom:304.357895pt;}
.ybe{bottom:307.557895pt;}
.y13{bottom:310.117895pt;}
.y3a{bottom:311.077895pt;}
.yf8{bottom:312.357895pt;}
.yaa{bottom:315.557895pt;}
.y141{bottom:315.877895pt;}
.y5e{bottom:316.837895pt;}
.y2a{bottom:319.077895pt;}
.yf5{bottom:320.357895pt;}
.y47{bottom:323.877895pt;}
.y52{bottom:327.077895pt;}
.y6e{bottom:328.357895pt;}
.y167{bottom:328.677895pt;}
.y174{bottom:330.597895pt;}
.y9a{bottom:331.877895pt;}
.y160{bottom:333.157895pt;}
.y133{bottom:333.298933pt;}
.ybd{bottom:335.397895pt;}
.y8{bottom:336.357895pt;}
.yb5{bottom:337.637895pt;}
.y39{bottom:338.917895pt;}
.yc7{bottom:339.877895pt;}
.yc0{bottom:341.272267pt;}
.ya9{bottom:343.397895pt;}
.y5d{bottom:344.677895pt;}
.y29{bottom:346.917895pt;}
.ya4{bottom:347.877895pt;}
.y1a{bottom:349.157895pt;}
.y11f{bottom:350.258933pt;}
.y84{bottom:351.397895pt;}
.y51{bottom:354.917895pt;}
.y166{bottom:357.157895pt;}
.y99{bottom:359.397895pt;}
.y12{bottom:361.957895pt;}
.ybc{bottom:362.917895pt;}
.y38{bottom:366.437895pt;}
.yf4{bottom:367.397895pt;}
.y8d{bottom:370.917895pt;}
.y140{bottom:373.477895pt;}
.y28{bottom:374.437895pt;}
.y46{bottom:375.717895pt;}
.y173{bottom:377.957895pt;}
.y83{bottom:378.917895pt;}
.y50{bottom:382.437895pt;}
.y7{bottom:383.717895pt;}
.y132{bottom:384.498933pt;}
.y165{bottom:385.957895pt;}
.yc6{bottom:386.917895pt;}
.yb4{bottom:389.477895pt;}
.ybb{bottom:390.437895pt;}
.y15f{bottom:390.757895pt;}
.y5c{bottom:391.717895pt;}
.y37{bottom:393.957895pt;}
.ya3{bottom:395.237895pt;}
.y14f{bottom:396.197895pt;}
.y8c{bottom:398.437895pt;}
.y19{bottom:400.997895pt;}
.y101{bottom:401.098933pt;}
.y27{bottom:401.957895pt;}
.y13f{bottom:402.277895pt;}
.y97{bottom:406.437895pt;}
.y4f{bottom:409.957895pt;}
.y11{bottom:413.477895pt;}
.yd9{bottom:414.757895pt;}
.yba{bottom:417.957895pt;}
.y15e{bottom:419.237895pt;}
.y36{bottom:421.477895pt;}
.y6d{bottom:422.757895pt;}
.y11a{bottom:425.138933pt;}
.y172{bottom:425.317895pt;}
.y82{bottom:425.957895pt;}
.y45{bottom:427.237895pt;}
.y26{bottom:429.477895pt;}
.y6{bottom:430.757895pt;}
.y13e{bottom:431.077895pt;}
.y18{bottom:432.997895pt;}
.y96{bottom:434.277895pt;}
.y131{bottom:435.698933pt;}
.y4e{bottom:437.477895pt;}
.y5b{bottom:438.757895pt;}
.y65{bottom:439.418933pt;}
.ya2{bottom:442.277895pt;}
.y14e{bottom:443.557895pt;}
.yb9{bottom:445.797895pt;}
.y15d{bottom:448.037895pt;}
.y35{bottom:448.997895pt;}
.y81{bottom:453.797895pt;}
.y25{bottom:457.317895pt;}
.y13d{bottom:459.557895pt;}
.y95{bottom:461.797895pt;}
.y10{bottom:465.317895pt;}
.y6c{bottom:469.797895pt;}
.y14d{bottom:472.357895pt;}
.y15c{bottom:476.837895pt;}
.y76{bottom:477.797895pt;}
.y44{bottom:479.077895pt;}
.y80{bottom:481.317895pt;}
.y171{bottom:482.597895pt;}
.y5{bottom:483.877895pt;}
.y24{bottom:484.837895pt;}
.y5a{bottom:485.797895pt;}
.y12f{bottom:487.218933pt;}
.y13c{bottom:488.357895pt;}
.y94{bottom:489.317895pt;}
.yb8{bottom:492.837895pt;}
.ye3{bottom:497.317895pt;}
.y34{bottom:498.597895pt;}
.y115{bottom:499.698933pt;}
.y14c{bottom:501.157895pt;}
.y15b{bottom:504.357895pt;}
.y7f{bottom:508.837895pt;}
.y170{bottom:511.397895pt;}
.y23{bottom:512.357895pt;}
.y6b{bottom:516.837895pt;}
.yf{bottom:517.157895pt;}
.yea{bottom:520.357895pt;}
.y75{bottom:525.157895pt;}
.y14b{bottom:529.637895pt;}
.y43{bottom:530.917895pt;}
.y59{bottom:533.157895pt;}
.y7e{bottom:536.357895pt;}
.y12c{bottom:538.418933pt;}
.y4{bottom:538.917895pt;}
.y22{bottom:539.877895pt;}
.y16f{bottom:540.197895pt;}
.y98{bottom:544.677895pt;}
.y13b{bottom:545.957895pt;}
.y33{bottom:547.877895pt;}
.ye2{bottom:552.677895pt;}
.y14a{bottom:558.437895pt;}
.y15a{bottom:560.677895pt;}
.y6a{bottom:564.197895pt;}
.y21{bottom:567.397895pt;}
.ye{bottom:568.677895pt;}
.y16e{bottom:568.997895pt;}
.y176{bottom:570.917895pt;}
.y74{bottom:572.197895pt;}
.y112{bottom:574.578933pt;}
.y13a{bottom:574.757895pt;}
.ye9{bottom:575.717895pt;}
.y42{bottom:580.197895pt;}
.y129{bottom:585.957895pt;}
.y149{bottom:587.237895pt;}
.y159{bottom:589.477895pt;}
.y12a{bottom:589.938933pt;}
.y69{bottom:591.717895pt;}
.y3{bottom:592.037895pt;}
.y20{bottom:595.237895pt;}
.y16d{bottom:597.797895pt;}
.yd2{bottom:599.717895pt;}
.y128{bottom:604.197895pt;}
.y148{bottom:616.037895pt;}
.y158{bottom:617.317895pt;}
.y68{bottom:619.237895pt;}
.yd{bottom:620.517895pt;}
.y1f{bottom:622.757895pt;}
.y16c{bottom:626.277895pt;}
.y41{bottom:627.237895pt;}
.y147{bottom:644.837895pt;}
.y157{bottom:645.797895pt;}
.y67{bottom:646.757895pt;}
.y2{bottom:659.557895pt;}
.yc{bottom:672.357895pt;}
.y146{bottom:673.637895pt;}
.y40{bottom:674.597895pt;}
.h9{height:18.560000pt;}
.hc{height:19.520000pt;}
.h16{height:20.480000pt;}
.h13{height:21.440000pt;}
.h12{height:21.759987pt;}
.h19{height:21.760000pt;}
.h1c{height:21.760013pt;}
.ha{height:22.080000pt;}
.h1b{height:24.000000pt;}
.h1d{height:24.960000pt;}
.h18{height:30.324375pt;}
.h1f{height:31.565625pt;}
.he{height:32.421250pt;}
.h1e{height:35.840000pt;}
.h15{height:37.063125pt;}
.h17{height:37.120000pt;}
.h1a{height:43.812500pt;}
.h7{height:44.718750pt;}
.h11{height:46.048125pt;}
.hb{height:46.176250pt;}
.hd{height:49.280013pt;}
.hf{height:50.240000pt;}
.h24{height:50.559973pt;}
.h27{height:50.560000pt;}
.h26{height:50.560013pt;}
.h25{height:50.880000pt;}
.h4{height:56.156250pt;}
.h8{height:56.312500pt;}
.h10{height:56.640000pt;}
.h6{height:65.141250pt;}
.h14{height:66.503125pt;}
.h23{height:73.919987pt;}
.h21{height:73.920000pt;}
.h20{height:74.239987pt;}
.h22{height:74.240013pt;}
.h5{height:84.234375pt;}
.h3{height:84.468750pt;}
.h2{height:112.625000pt;}
.h28{height:182.400000pt;}
.h1{height:792.037867pt;}
.h0{height:816.000000pt;}
.w2{width:8.960001pt;}
.wb{width:17.920000pt;}
.w1a{width:90.559973pt;}
.w18{width:91.199987pt;}
.w17{width:91.200013pt;}
.w19{width:91.200027pt;}
.w7{width:120.000000pt;}
.w1b{width:146.240000pt;}
.w16{width:146.560000pt;}
.wf{width:152.000000pt;}
.w1d{width:156.800000pt;}
.w13{width:242.240000pt;}
.w10{width:244.160000pt;}
.w3{width:272.320000pt;}
.w8{width:283.840000pt;}
.w15{width:323.840000pt;}
.w14{width:336.000000pt;}
.w9{width:347.840000pt;}
.w11{width:360.000000pt;}
.w4{width:381.440000pt;}
.wa{width:384.000000pt;}
.wc{width:396.160000pt;}
.we{width:398.327067pt;}
.w5{width:406.080000pt;}
.w6{width:408.000000pt;}
.wd{width:432.000000pt;}
.w12{width:444.160000pt;}
.w1e{width:528.000000pt;}
.w20{width:540.160000pt;}
.w1c{width:574.400000pt;}
.w1f{width:624.000000pt;}
.w1{width:1037.820400pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x1{left:6.878825pt;}
.x29{left:9.106667pt;}
.x2e{left:11.876573pt;}
.x25{left:14.660000pt;}
.x21{left:18.735600pt;}
.x2f{left:21.140907pt;}
.x2b{left:23.033333pt;}
.x1e{left:26.195467pt;}
.x23{left:28.546933pt;}
.x27{left:29.663467pt;}
.x2c{left:31.502240pt;}
.x32{left:34.282187pt;}
.x31{left:42.615520pt;}
.x30{left:44.099893pt;}
.x2d{left:45.453333pt;}
.x35{left:50.123867pt;}
.x40{left:60.573200pt;}
.x38{left:64.573200pt;}
.x1c{left:73.306653pt;}
.x37{left:78.573200pt;}
.x2{left:87.680015pt;}
.x5{left:111.680015pt;}
.x42{left:116.080081pt;}
.xb{left:120.625493pt;}
.xf{left:130.692147pt;}
.x7{left:134.946641pt;}
.x12{left:142.692133pt;}
.x39{left:159.311320pt;}
.x3c{left:178.037853pt;}
.x44{left:185.920000pt;}
.x49{left:190.080000pt;}
.x3e{left:191.596520pt;}
.x3a{left:204.045720pt;}
.x3b{left:214.463720pt;}
.xe{left:218.945467pt;}
.x3f{left:230.686387pt;}
.x1d{left:234.718800pt;}
.x4e{left:240.960000pt;}
.x33{left:244.893453pt;}
.x3d{left:256.018387pt;}
.x43{left:262.625467pt;}
.x47{left:265.346641pt;}
.x41{left:270.237187pt;}
.x36{left:287.119987pt;}
.x4f{left:299.586641pt;}
.x48{left:310.625467pt;}
.x4c{left:313.346641pt;}
.x45{left:315.266641pt;}
.x1f{left:326.558800pt;}
.x20{left:418.398800pt;}
.x4b{left:447.106641pt;}
.x50{left:453.186641pt;}
.x4a{left:455.426641pt;}
.x46{left:503.746641pt;}
.x22{left:510.238800pt;}
.x11{left:519.198800pt;}
.x6{left:523.678800pt;}
.x3{left:544.959975pt;}
.x13{left:550.372133pt;}
.xa{left:562.692133pt;}
.x15{left:568.959975pt;}
.x19{left:574.372133pt;}
.xc{left:586.692133pt;}
.x8{left:592.226508pt;}
.x18{left:598.372133pt;}
.x24{left:602.078800pt;}
.x10{left:610.692133pt;}
.x1a{left:622.625467pt;}
.x1b{left:634.692133pt;}
.x4{left:645.347708pt;}
.x14{left:646.372133pt;}
.x9{left:658.692133pt;}
.x17{left:666.425467pt;}
.x16{left:682.692133pt;}
.x26{left:693.918800pt;}
.x34{left:706.078800pt;}
.x28{left:785.758800pt;}
.xd{left:838.372133pt;}
.x2a{left:877.918800pt;}
.x4d{left:965.013308pt;}
}




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