
    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_92e5924c53c60065fd85ff63.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fafa12c141bd004b73f48f52.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_fb447a862027103f3c28a4c8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01651e30c2a1ee53e3ef0cf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.045000;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_c19e7571d76b0592203d3b8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_01acd7f58e9ce8515f089773.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3d71d9a8d45f466465277c61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_a91844872d201848635b4da8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_91da3e7d44e4a83081aad21b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_766f134eefd69fa034e44d38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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_766f134eefd69fa034e44d38.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_00b1c340cce41dc4b9d74d10.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948242;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_2c8655979feb5ed9f15120a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;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_7f12d7d22360fb38b123973c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a37a6e42b80c31cc8190633c.woff2')format("woff");}.fff{font-family:fff;line-height:0.785645;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.761037px;}
.v3{vertical-align:-2.880518px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.003240px;}
.ls20{letter-spacing:-7.981436px;}
.ls21{letter-spacing:-7.261307px;}
.ls17{letter-spacing:-4.752855px;}
.ls11{letter-spacing:-3.744674px;}
.ls10{letter-spacing:-3.024544px;}
.ls1b{letter-spacing:-1.584285px;}
.ls1a{letter-spacing:-0.864156px;}
.ls7{letter-spacing:-0.684123px;}
.lsd{letter-spacing:-0.576104px;}
.ls1e{letter-spacing:-0.504091px;}
.ls15{letter-spacing:-0.460283px;}
.lse{letter-spacing:-0.432078px;}
.ls12{letter-spacing:-0.288052px;}
.lsb{letter-spacing:-0.216039px;}
.lsf{letter-spacing:-0.144026px;}
.ls16{letter-spacing:-0.106819px;}
.ls9{letter-spacing:-0.053290px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053290px;}
.ls18{letter-spacing:0.072013px;}
.ls4{letter-spacing:0.102738px;}
.ls6{letter-spacing:0.144026px;}
.lsa{letter-spacing:0.216039px;}
.ls13{letter-spacing:0.259847px;}
.ls2{letter-spacing:0.288052px;}
.ls19{letter-spacing:0.504091px;}
.ls8{letter-spacing:0.666120px;}
.ls5{letter-spacing:0.702846px;}
.ls1d{letter-spacing:0.774139px;}
.ls14{letter-spacing:0.978176px;}
.ls0{letter-spacing:18.281123px;}
.lsc{letter-spacing:28.229080px;}
.ls1f{letter-spacing:48.915523px;}
.ls3{letter-spacing:54.873876px;}
.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;}
}
.wsa{word-spacing:-72.012960px;}
.ws22{word-spacing:-66.251923px;}
.wsd{word-spacing:-25.941949px;}
.wsc{word-spacing:-20.307655px;}
.ws10{word-spacing:-20.235642px;}
.ws12{word-spacing:-20.163629px;}
.ws18{word-spacing:-20.091616px;}
.wsb{word-spacing:-20.019603px;}
.ws14{word-spacing:-19.875577px;}
.ws15{word-spacing:-19.803564px;}
.ws11{word-spacing:-19.587525px;}
.ws1f{word-spacing:-19.515512px;}
.ws13{word-spacing:-19.443499px;}
.ws19{word-spacing:-19.155447px;}
.ws1a{word-spacing:-18.435318px;}
.ws1d{word-spacing:-17.390410px;}
.ws1e{word-spacing:-16.876117px;}
.ws1c{word-spacing:-16.669560px;}
.wsf{word-spacing:-16.616270px;}
.ws1b{word-spacing:-16.509451px;}
.ws17{word-spacing:-15.266748px;}
.ws16{word-spacing:-13.413134px;}
.ws21{word-spacing:-12.758296px;}
.ws20{word-spacing:-12.038166px;}
.wse{word-spacing:-10.810586px;}
.ws5{word-spacing:-3.945204px;}
.ws4{word-spacing:-1.775342px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:1.117808px;}
.ws9{word-spacing:2.235616px;}
.ws7{word-spacing:3.024656px;}
.ws6{word-spacing:3.221917px;}
.ws3{word-spacing:18.213692px;}
.ws2{word-spacing:492.427213px;}
.ws1{word-spacing:528.920350px;}
._35{margin-left:-12.098177px;}
._42{margin-left:-9.929349px;}
._2f{margin-left:-8.353503px;}
._1{margin-left:-7.298627px;}
._2d{margin-left:-6.274160px;}
._b{margin-left:-5.260272px;}
._15{margin-left:-4.119381px;}
._2{margin-left:-2.432876px;}
._f{margin-left:-1.008181px;}
._e{width:1.080194px;}
._10{width:2.340421px;}
._16{width:3.349197px;}
._23{width:4.475618px;}
._18{width:6.049089px;}
._d{width:7.129283px;}
._c{width:8.353503px;}
._21{width:9.373687px;}
._19{width:10.441879px;}
._1a{width:11.678102px;}
._1b{width:12.806305px;}
._1c{width:14.138544px;}
._1f{width:15.398771px;}
._22{width:16.514972px;}
._17{width:18.075253px;}
._11{width:21.315836px;}
._a{width:23.145197px;}
._25{width:24.228798px;}
._20{width:25.508153px;}
._1e{width:26.773256px;}
._1d{width:27.797003px;}
._33{width:28.892762px;}
._27{width:30.245443px;}
._26{width:31.253625px;}
._32{width:32.321817px;}
._28{width:33.342000px;}
._2e{width:34.494208px;}
._34{width:35.513458px;}
._0{width:36.558890px;}
._31{width:37.734791px;}
._30{width:38.742972px;}
._29{width:40.401066px;}
._7{width:41.490395px;}
._13{width:42.559659px;}
._12{width:43.567841px;}
._24{width:45.200135px;}
._39{width:46.736411px;}
._2a{width:48.464722px;}
._2b{width:49.544916px;}
._2c{width:50.697124px;}
._43{width:52.813459px;}
._3e{width:55.521992px;}
._38{width:58.511728px;}
._8{width:59.638334px;}
._36{width:61.283029px;}
._37{width:62.378551px;}
._40{width:66.684001px;}
._3f{width:67.764195px;}
._41{width:74.029323px;}
._9{width:81.402709px;}
._45{width:91.672498px;}
._44{width:93.976913px;}
._3a{width:114.764654px;}
._47{width:119.109436px;}
._46{width:120.117617px;}
._3c{width:130.067408px;}
._3b{width:134.304170px;}
._3d{width:135.537423px;}
._48{width:139.849168px;}
._49{width:141.205412px;}
._5{width:207.320470px;}
._6{width:243.879361px;}
._4{width:265.803595px;}
._3{width:324.295769px;}
._14{width:837.685476px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:8.400000px;}
.fs7{font-size:38.886998px;}
.fs9{font-size:48.248683px;}
.fsa{font-size:54.009720px;}
.fs6{font-size:59.770757px;}
.fs2{font-size:65.753400px;}
.fs8{font-size:66.251923px;}
.fs3{font-size:72.012960px;}
.fsb{font-size:75.907566px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:89.664000px;}
.fs4{font-size:95.777237px;}
.y0{bottom:0.000000px;}
.ydd{bottom:3.960713px;}
.y20{bottom:8.913000px;}
.yc5{bottom:18.363305px;}
.yc4{bottom:35.646415px;}
.y2c{bottom:50.740500px;}
.yc3{bottom:52.929526px;}
.y22{bottom:56.890238px;}
.yc2{bottom:70.032604px;}
.y21{bottom:77.629971px;}
.yc1{bottom:87.315714px;}
.y1b4{bottom:94.012919px;}
.yc0{bottom:104.598824px;}
.y1ea{bottom:108.955608px;}
.ybc{bottom:111.115997px;}
.y2{bottom:115.350000px;}
.y1b3{bottom:117.957228px;}
.y190{bottom:118.497326px;}
.ya5{bottom:119.757552px;}
.y180{bottom:120.477682px;}
.y168{bottom:120.837747px;}
.yd9{bottom:121.737909px;}
.ybf{bottom:121.881935px;}
.y152{bottom:124.078330px;}
.y55{bottom:130.559496px;}
.y1d1{bottom:131.099594px;}
.y7e{bottom:132.719885px;}
.yf6{bottom:134.160144px;}
.ybb{bottom:135.060306px;}
.ybe{bottom:139.165045px;}
.y18f{bottom:142.441635px;}
.y17f{bottom:144.421991px;}
.yac{bottom:144.782056px;}
.y1e9{bottom:144.962088px;}
.yd8{bottom:145.682218px;}
.y151{bottom:148.022639px;}
.y1b2{bottom:150.897157px;}
.y1d0{bottom:155.037902px;}
.ya4{bottom:155.758031px;}
.y7d{bottom:156.658193px;}
.y95{bottom:156.838226px;}
.yf5{bottom:158.098453px;}
.yba{bottom:158.998615px;}
.y158{bottom:159.178647px;}
.y54{bottom:166.559975px;}
.y17e{bottom:168.540332px;}
.y167{bottom:168.720364px;}
.yd7{bottom:169.620526px;}
.y150{bottom:171.960947px;}
.y1b1{bottom:174.841466px;}
.y18e{bottom:178.442114px;}
.y1cf{bottom:178.982211px;}
.ya3{bottom:179.702341px;}
.y7c{bottom:180.602503px;}
.y94{bottom:180.782535px;}
.y1e8{bottom:180.962567px;}
.yf4{bottom:182.042762px;}
.yb9{bottom:183.122956px;}
.y10f{bottom:187.983831px;}
.y17d{bottom:192.484641px;}
.y166{bottom:192.664673px;}
.yd6{bottom:193.564835px;}
.y14f{bottom:196.085289px;}
.y1b0{bottom:198.965807px;}
.y18d{bottom:202.386423px;}
.y53{bottom:202.566455px;}
.ya2{bottom:203.646650px;}
.yab{bottom:204.546812px;}
.y7b{bottom:204.726844px;}
.yf3{bottom:205.987071px;}
.yb8{bottom:207.067265px;}
.y1ce{bottom:208.687557px;}
.y10e{bottom:211.928140px;}
.yc8{bottom:216.608983px;}
.y1e7{bottom:216.969047px;}
.yd5{bottom:217.509145px;}
.y201{bottom:218.229274px;}
.y14e{bottom:220.029598px;}
.y18c{bottom:226.510765px;}
.y17c{bottom:228.491121px;}
.y7a{bottom:228.671153px;}
.y1cd{bottom:229.391283px;}
.yf2{bottom:229.931380px;}
.yb7{bottom:231.011575px;}
.y1af{bottom:231.911737px;}
.y12b{bottom:232.271801px;}
.y10d{bottom:235.872449px;}
.y52{bottom:238.572935px;}
.ya1{bottom:239.653130px;}
.y165{bottom:240.733324px;}
.y1e6{bottom:240.913357px;}
.yd4{bottom:241.633486px;}
.y14d{bottom:243.973907px;}
.y1cc{bottom:250.095009px;}
.y79{bottom:252.615463px;}
.yf1{bottom:254.055722px;}
.y200{bottom:254.235754px;}
.yb6{bottom:254.955884px;}
.y1ae{bottom:255.856046px;}
.y12a{bottom:256.396143px;}
.y10c{bottom:259.816759px;}
.y18b{bottom:262.337212px;}
.y51{bottom:262.517245px;}
.y164{bottom:264.677633px;}
.y1e5{bottom:264.857666px;}
.yd3{bottom:265.577795px;}
.y17b{bottom:267.198087px;}
.y14c{bottom:267.918217px;}
.y1cb{bottom:270.798735px;}
.ya0{bottom:275.659610px;}
.y78{bottom:276.559772px;}
.yf0{bottom:278.000031px;}
.yb5{bottom:278.900193px;}
.y157{bottom:279.080225px;}
.y1ad{bottom:279.800355px;}
.y129{bottom:280.340452px;}
.y118{bottom:280.520485px;}
.y10b{bottom:283.761068px;}
.y50{bottom:286.461554px;}
.y163{bottom:288.621943px;}
.yd2{bottom:289.522105px;}
.y1ff{bottom:290.062202px;}
.y17a{bottom:291.322429px;}
.y14b{bottom:291.862526px;}
.y1f{bottom:292.015500px;}
.y1e4{bottom:297.803595px;}
.y9f{bottom:299.603919px;}
.y77{bottom:300.504081px;}
.y93{bottom:300.684113px;}
.yef{bottom:301.944340px;}
.yb4{bottom:303.024535px;}
.y1ac{bottom:303.744664px;}
.y128{bottom:304.284761px;}
.y10a{bottom:307.885409px;}
.y4f{bottom:310.405863px;}
.y1e{bottom:311.443500px;}
.yc7{bottom:312.566252px;}
.yd1{bottom:313.466414px;}
.y179{bottom:315.446770px;}
.y14a{bottom:315.986867px;}
.y117{bottom:316.526965px;}
.y1e3{bottom:321.747904px;}
.y9e{bottom:323.548228px;}
.y1fe{bottom:324.088325px;}
.yaa{bottom:324.448390px;}
.y76{bottom:324.628423px;}
.yee{bottom:325.888649px;}
.yb3{bottom:326.968844px;}
.y1ab{bottom:327.869006px;}
.y127{bottom:328.229071px;}
.y1d{bottom:330.870000px;}
.y109{bottom:331.829719px;}
.y18a{bottom:334.350172px;}
.y4e{bottom:334.530205px;}
.y162{bottom:336.555569px;}
.yd0{bottom:337.455731px;}
.y178{bottom:339.436087px;}
.y149{bottom:339.976185px;}
.y1fd{bottom:343.036736px;}
.y1e2{bottom:345.917254px;}
.y9d{bottom:347.537546px;}
.y75{bottom:348.617740px;}
.yed{bottom:349.877967px;}
.yb2{bottom:350.958161px;}
.y116{bottom:351.678291px;}
.y1ca{bottom:351.858323px;}
.y126{bottom:352.218388px;}
.y108{bottom:355.819036px;}
.y189{bottom:358.339490px;}
.y4d{bottom:358.519522px;}
.y161{bottom:360.679911px;}
.y1aa{bottom:360.859943px;}
.ycf{bottom:361.580073px;}
.y1fc{bottom:362.120170px;}
.y177{bottom:363.380397px;}
.y148{bottom:363.920494px;}
.y115{bottom:368.961401px;}
.y9c{bottom:371.661887px;}
.y74{bottom:372.562049px;}
.yec{bottom:374.002308px;}
.y1c{bottom:374.208000px;}
.yb1{bottom:374.902470px;}
.y125{bottom:376.162697px;}
.y1e1{bottom:378.863183px;}
.y107{bottom:379.763345px;}
.y1fb{bottom:381.023572px;}
.y188{bottom:382.283799px;}
.y4c{bottom:382.463831px;}
.y160{bottom:384.624220px;}
.y1a9{bottom:384.804252px;}
.yce{bottom:385.524382px;}
.y156{bottom:385.704414px;}
.y176{bottom:387.324706px;}
.y1b{bottom:393.634500px;}
.y73{bottom:396.506358px;}
.yeb{bottom:397.946618px;}
.y114{bottom:398.126650px;}
.y147{bottom:399.926974px;}
.y124{bottom:400.287039px;}
.y1e0{bottom:402.807492px;}
.y106{bottom:403.887687px;}
.y4b{bottom:406.408140px;}
.y9b{bottom:407.668367px;}
.y15f{bottom:408.568529px;}
.y1a8{bottom:408.748561px;}
.ycd{bottom:409.468691px;}
.yb0{bottom:409.648724px;}
.y175{bottom:411.269015px;}
.y1a{bottom:413.062500px;}
.y187{bottom:415.409760px;}
.y155{bottom:416.669987px;}
.y72{bottom:420.450668px;}
.y92{bottom:420.630700px;}
.yea{bottom:421.890927px;}
.y1df{bottom:426.751801px;}
.y105{bottom:429.452288px;}
.y4a{bottom:430.352450px;}
.ybd{bottom:432.064154px;}
.y19{bottom:432.489000px;}
.y15e{bottom:432.512838px;}
.y1a7{bottom:432.692871px;}
.ycc{bottom:433.413000px;}
.y154{bottom:433.953098px;}
.y174{bottom:435.393357px;}
.y146{bottom:435.933454px;}
.y123{bottom:436.293519px;}
.y186{bottom:439.354070px;}
.y9a{bottom:443.494815px;}
.ya9{bottom:444.394977px;}
.y71{bottom:444.575009px;}
.ye9{bottom:445.835236px;}
.y1fa{bottom:451.416240px;}
.y18{bottom:451.917000px;}
.y49{bottom:454.476791px;}
.y15d{bottom:456.457148px;}
.y1c9{bottom:456.817212px;}
.y173{bottom:459.337666px;}
.y1de{bottom:459.697731px;}
.y145{bottom:459.877763px;}
.y153{bottom:463.118346px;}
.y185{bottom:463.298379px;}
.y1a6{bottom:465.818832px;}
.y104{bottom:467.079059px;}
.y99{bottom:467.619156px;}
.y70{bottom:468.519318px;}
.ye8{bottom:469.779545px;}
.y1f9{bottom:470.499675px;}
.y17{bottom:471.343500px;}
.y122{bottom:472.119966px;}
.y48{bottom:478.421100px;}
.y15c{bottom:480.581489px;}
.y172{bottom:483.281975px;}
.y144{bottom:483.822072px;}
.ycb{bottom:485.802429px;}
.y184{bottom:487.242688px;}
.y1f8{bottom:489.403077px;}
.y1a5{bottom:489.763141px;}
.y98{bottom:492.103563px;}
.y6f{bottom:492.463627px;}
.ye7{bottom:493.903887px;}
.y13b{bottom:495.704211px;}
.y121{bottom:496.244308px;}
.y47{bottom:502.365410px;}
.y103{bottom:502.905507px;}
.yca{bottom:503.085539px;}
.ya8{bottom:504.525798px;}
.y171{bottom:507.226284px;}
.y143{bottom:507.766381px;}
.y1f7{bottom:508.306479px;}
.y1a4{bottom:513.707451px;}
.y6e{bottom:516.407937px;}
.ye6{bottom:517.848196px;}
.y13a{bottom:519.648520px;}
.y120{bottom:520.188617px;}
.yc9{bottom:520.368650px;}
.y46{bottom:526.309719px;}
.y102{bottom:526.849816px;}
.y1f6{bottom:527.389913px;}
.y15b{bottom:528.470108px;}
.y170{bottom:531.170593px;}
.y1dd{bottom:531.710691px;}
.y142{bottom:531.890723px;}
.y1c8{bottom:537.651760px;}
.y6d{bottom:540.352246px;}
.y91{bottom:540.532278px;}
.ye5{bottom:541.792505px;}
.y139{bottom:543.592829px;}
.y11f{bottom:544.132926px;}
.y183{bottom:544.312959px;}
.y1f5{bottom:546.293315px;}
.y1a3{bottom:546.653380px;}
.y45{bottom:550.254028px;}
.y15a{bottom:552.414417px;}
.y16f{bottom:555.294935px;}
.y141{bottom:555.835032px;}
.y1c7{bottom:561.596069px;}
.y16{bottom:562.501500px;}
.y101{bottom:563.036328px;}
.y6c{bottom:564.476588px;}
.y1f4{bottom:565.376750px;}
.ye4{bottom:565.736814px;}
.y1dc{bottom:567.717171px;}
.y11e{bottom:568.077236px;}
.y1a2{bottom:570.597689px;}
.y182{bottom:574.018305px;}
.y44{bottom:574.378370px;}
.y97{bottom:576.358726px;}
.y16e{bottom:579.239244px;}
.y138{bottom:579.599309px;}
.y140{bottom:579.779341px;}
.y15{bottom:581.929500px;}
.y1f3{bottom:584.460184px;}
.y6b{bottom:588.420897px;}
.ye3{bottom:589.681124px;}
.y1db{bottom:591.661480px;}
.y11d{bottom:592.021545px;}
.y181{bottom:594.722031px;}
.yaf{bottom:595.442160px;}
.y43{bottom:598.322679px;}
.y100{bottom:599.042808px;}
.y159{bottom:600.483067px;}
.y14{bottom:601.356000px;}
.y13f{bottom:603.753656px;}
.y6a{bottom:612.395211px;}
.ye2{bottom:613.835471px;}
.y16d{bottom:614.375568px;}
.y137{bottom:615.635794px;}
.y1c6{bottom:618.696345px;}
.y1f2{bottom:620.316637px;}
.y13{bottom:620.784000px;}
.y42{bottom:622.296993px;}
.ya7{bottom:624.457382px;}
.y11c{bottom:627.337901px;}
.y1a1{bottom:627.697965px;}
.y16c{bottom:631.658678px;}
.yff{bottom:634.719229px;}
.y69{bottom:636.339521px;}
.y13e{bottom:638.859974px;}
.y136{bottom:639.580104px;}
.y12{bottom:640.210500px;}
.y1c5{bottom:642.640654px;}
.y11b{bottom:644.621011px;}
.y41{bottom:646.241302px;}
.yc6{bottom:648.401691px;}
.y16b{bottom:648.941789px;}
.ye1{bottom:649.661918px;}
.y1a0{bottom:651.642274px;}
.y13d{bottom:656.143084px;}
.y1f1{bottom:656.323117px;}
.yfe{bottom:658.843571px;}
.y68{bottom:660.283830px;}
.y90{bottom:660.463862px;}
.y11a{bottom:661.724089px;}
.y135{bottom:663.524413px;}
.y16a{bottom:666.224899px;}
.y1c4{bottom:666.584964px;}
.y40{bottom:670.185612px;}
.yae{bottom:672.346001px;}
.y19f{bottom:675.586584px;}
.ye0{bottom:676.218093px;}
.y11{bottom:683.548500px;}
.y67{bottom:684.408171px;}
.y13c{bottom:686.568560px;}
.y134{bottom:687.468722px;}
.y1f0{bottom:688.548917px;}
.y119{bottom:691.069370px;}
.y3f{bottom:694.309953px;}
.yfd{bottom:695.030083px;}
.y169{bottom:695.390148px;}
.y113{bottom:696.290310px;}
.ydf{bottom:697.641949px;}
.y1c3{bottom:699.530893px;}
.y10{bottom:702.975000px;}
.y8f{bottom:708.352481px;}
.y133{bottom:711.413031px;}
.y19e{bottom:711.593064px;}
.y3e{bottom:718.254262px;}
.yde{bottom:719.065805px;}
.y66{bottom:720.234619px;}
.y112{bottom:720.414651px;}
.yf{bottom:722.401500px;}
.y1c2{bottom:723.655235px;}
.yfc{bottom:730.856531px;}
.y8e{bottom:732.296790px;}
.y132{bottom:735.537373px;}
.ydc{bottom:740.489660px;}
.y3d{bottom:742.198572px;}
.y65{bottom:744.358961px;}
.y1c1{bottom:747.599544px;}
.y8d{bottom:756.241099px;}
.y131{bottom:759.481682px;}
.ye{bottom:765.739500px;}
.y3c{bottom:766.142881px;}
.yfb{bottom:766.682978px;}
.y64{bottom:768.303270px;}
.ydb{bottom:771.003756px;}
.y1da{bottom:771.543853px;}
.y96{bottom:780.185408px;}
.y8c{bottom:780.365440px;}
.y1c0{bottom:780.545473px;}
.y130{bottom:783.425991px;}
.y19d{bottom:783.606024px;}
.yfa{bottom:790.627287px;}
.y63{bottom:792.247579px;}
.y1d9{bottom:795.488162px;}
.y3b{bottom:802.149361px;}
.y8b{bottom:804.309750px;}
.y1bf{bottom:804.489782px;}
.y12f{bottom:807.370300px;}
.yf9{bottom:814.751629px;}
.y62{bottom:816.191888px;}
.y19c{bottom:819.432471px;}
.yd{bottom:821.032500px;}
.y8a{bottom:828.254059px;}
.y1be{bottom:828.434091px;}
.y3a{bottom:836.895614px;}
.yf8{bottom:839.056003px;}
.y61{bottom:840.136197px;}
.y111{bottom:840.316230px;}
.yc{bottom:840.459000px;}
.y12e{bottom:842.476618px;}
.y19b{bottom:843.556813px;}
.y89{bottom:852.198368px;}
.y1bd{bottom:852.558433px;}
.y12d{bottom:859.759729px;}
.yb{bottom:859.887000px;}
.y60{bottom:864.260539px;}
.y19a{bottom:867.501122px;}
.y39{bottom:868.761349px;}
.y88{bottom:876.187685px;}
.y1d8{bottom:876.547750px;}
.y1bc{bottom:885.549370px;}
.y5f{bottom:888.249856px;}
.y12c{bottom:889.150018px;}
.ya6{bottom:900.131995px;}
.y87{bottom:900.312027px;}
.y1d7{bottom:900.492059px;}
.ya{bottom:903.223500px;}
.y199{bottom:903.552610px;}
.y38{bottom:906.973226px;}
.y1bb{bottom:909.493679px;}
.y5e{bottom:912.194165px;}
.y2b{bottom:913.994489px;}
.y9{bottom:922.651500px;}
.y86{bottom:924.256336px;}
.y1d6{bottom:924.436369px;}
.y198{bottom:927.496919px;}
.y1ba{bottom:933.437989px;}
.y5d{bottom:936.138475px;}
.y37{bottom:938.658928px;}
.y8{bottom:942.078000px;}
.y85{bottom:948.200645px;}
.y197{bottom:951.441229px;}
.y2a{bottom:955.221909px;}
.y1b9{bottom:957.382298px;}
.y5c{bottom:960.082784px;}
.yf7{bottom:960.262816px;}
.y7{bottom:961.506000px;}
.y1ef{bottom:963.503399px;}
.y36{bottom:970.704695px;}
.y84{bottom:972.144955px;}
.y196{bottom:975.385538px;}
.y29{bottom:980.606477px;}
.y1b8{bottom:981.506639px;}
.y5b{bottom:984.207125px;}
.y83{bottom:996.089264px;}
.y1ee{bottom:999.509879px;}
.y35{bottom:1002.750463px;}
.y28{bottom:1004.370754px;}
.y6{bottom:1004.842500px;}
.y1d5{bottom:1005.450949px;}
.y5a{bottom:1008.151435px;}
.y195{bottom:1011.392018px;}
.y1b7{bottom:1014.452569px;}
.yad{bottom:1020.033573px;}
.y82{bottom:1020.213605px;}
.y34{bottom:1022.734059px;}
.y1ed{bottom:1023.454189px;}
.y5{bottom:1024.270500px;}
.y1d4{bottom:1029.395258px;}
.y27{bottom:1029.755323px;}
.yda{bottom:1032.095744px;}
.y194{bottom:1035.336327px;}
.y1b6{bottom:1038.396878px;}
.y33{bottom:1042.717655px;}
.y4{bottom:1043.697000px;}
.y59{bottom:1044.157915px;}
.y1ec{bottom:1047.398498px;}
.y26{bottom:1053.699632px;}
.y110{bottom:1056.040053px;}
.y193{bottom:1059.460669px;}
.y32{bottom:1060.000766px;}
.y1b5{bottom:1062.341187px;}
.y81{bottom:1068.102224px;}
.y1eb{bottom:1071.342807px;}
.y25{bottom:1078.904168px;}
.y31{bottom:1079.444265px;}
.y58{bottom:1080.164395px;}
.y1d3{bottom:1086.285496px;}
.y80{bottom:1092.046533px;}
.y192{bottom:1095.287116px;}
.y24{bottom:1102.848477px;}
.y30{bottom:1106.989222px;}
.y1d2{bottom:1110.409838px;}
.y7f{bottom:1115.990842px;}
.y57{bottom:1116.170875px;}
.y191{bottom:1119.411458px;}
.y3{bottom:1125.889500px;}
.y2f{bottom:1134.714212px;}
.y23{bottom:1140.145189px;}
.y56{bottom:1140.325222px;}
.y1{bottom:1145.659500px;}
.y2d{bottom:1149.156000px;}
.y2e{bottom:1150.628715px;}
.h2{height:5.598633px;}
.h13{height:20.703726px;}
.h12{height:44.098444px;}
.h4{height:47.868475px;}
.h5{height:50.827378px;}
.h14{height:52.705351px;}
.hf{height:53.130656px;}
.hc{height:53.612734px;}
.h10{height:56.330450px;}
.ha{height:57.372000px;}
.hb{height:62.339032px;}
.he{height:64.593656px;}
.h3{height:65.275392px;}
.hd{height:69.098686px;}
.h7{height:75.107267px;}
.h8{height:99.892665px;}
.h1{height:117.340500px;}
.h11{height:153.027540px;}
.h9{height:1212.259500px;}
.h6{height:1254.087000px;}
.h0{height:1263.000000px;}
.w1{width:71.317500px;}
.w8{width:182.402827px;}
.w6{width:224.170343px;}
.w7{width:228.311089px;}
.w5{width:615.635794px;}
.w3{width:870.583500px;}
.w2{width:874.887236px;}
.w4{width:878.553000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:15.367500px;}
.x2{left:59.776500px;}
.x14{left:61.024983px;}
.x3{left:64.345500px;}
.x1b{left:68.592344px;}
.x18{left:78.719167px;}
.x1a{left:81.374645px;}
.x19{left:82.628871px;}
.x16{left:91.456459px;}
.x5{left:109.425478px;}
.xd{left:117.706968px;}
.xe{left:130.309236px;}
.x6{left:136.424337px;}
.xa{left:156.047869px;}
.x9{left:157.308095px;}
.x7{left:163.429197px;}
.x1e{left:170.090396px;}
.x1f{left:181.792502px;}
.xb{left:197.635353px;}
.x10{left:263.032122px;}
.x8{left:311.083500px;}
.x15{left:335.225115px;}
.xf{left:371.051562px;}
.xc{left:428.301866px;}
.x17{left:564.256333px;}
.x1c{left:695.184896px;}
.x1d{left:707.067034px;}
.x22{left:725.430339px;}
.x12{left:727.410695px;}
.x13{left:728.670922px;}
.x11{left:731.551441px;}
.x21{left:735.332121px;}
.x4{left:737.312477px;}
.x23{left:739.112801px;}
.x24{left:747.214259px;}
.x20{left:762.156949px;}
@media print{
.v2{vertical-align:-5.120922pt;}
.v3{vertical-align:-2.560461pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.002880pt;}
.ls20{letter-spacing:-7.094610pt;}
.ls21{letter-spacing:-6.454495pt;}
.ls17{letter-spacing:-4.224760pt;}
.ls11{letter-spacing:-3.328599pt;}
.ls10{letter-spacing:-2.688484pt;}
.ls1b{letter-spacing:-1.408253pt;}
.ls1a{letter-spacing:-0.768138pt;}
.ls7{letter-spacing:-0.608109pt;}
.lsd{letter-spacing:-0.512092pt;}
.ls1e{letter-spacing:-0.448081pt;}
.ls15{letter-spacing:-0.409140pt;}
.lse{letter-spacing:-0.384069pt;}
.ls12{letter-spacing:-0.256046pt;}
.lsb{letter-spacing:-0.192035pt;}
.lsf{letter-spacing:-0.128023pt;}
.ls16{letter-spacing:-0.094950pt;}
.ls9{letter-spacing:-0.047369pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047369pt;}
.ls18{letter-spacing:0.064012pt;}
.ls4{letter-spacing:0.091323pt;}
.ls6{letter-spacing:0.128023pt;}
.lsa{letter-spacing:0.192035pt;}
.ls13{letter-spacing:0.230975pt;}
.ls2{letter-spacing:0.256046pt;}
.ls19{letter-spacing:0.448081pt;}
.ls8{letter-spacing:0.592107pt;}
.ls5{letter-spacing:0.624752pt;}
.ls1d{letter-spacing:0.688124pt;}
.ls14{letter-spacing:0.869490pt;}
.ls0{letter-spacing:16.249887pt;}
.lsc{letter-spacing:25.092516pt;}
.ls1f{letter-spacing:43.480465pt;}
.ls3{letter-spacing:48.776778pt;}
.wsa{word-spacing:-64.011520pt;}
.ws22{word-spacing:-58.890598pt;}
.wsd{word-spacing:-23.059510pt;}
.wsc{word-spacing:-18.051249pt;}
.ws10{word-spacing:-17.987237pt;}
.ws12{word-spacing:-17.923226pt;}
.ws18{word-spacing:-17.859214pt;}
.wsb{word-spacing:-17.795203pt;}
.ws14{word-spacing:-17.667180pt;}
.ws15{word-spacing:-17.603168pt;}
.ws11{word-spacing:-17.411133pt;}
.ws1f{word-spacing:-17.347122pt;}
.ws13{word-spacing:-17.283110pt;}
.ws19{word-spacing:-17.027064pt;}
.ws1a{word-spacing:-16.386949pt;}
.ws1d{word-spacing:-15.458142pt;}
.ws1e{word-spacing:-15.000993pt;}
.ws1c{word-spacing:-14.817387pt;}
.wsf{word-spacing:-14.770018pt;}
.ws1b{word-spacing:-14.675068pt;}
.ws17{word-spacing:-13.570442pt;}
.ws16{word-spacing:-11.922786pt;}
.ws21{word-spacing:-11.340708pt;}
.ws20{word-spacing:-10.700592pt;}
.wse{word-spacing:-9.609409pt;}
.ws5{word-spacing:-3.506848pt;}
.ws4{word-spacing:-1.578082pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.993607pt;}
.ws9{word-spacing:1.987214pt;}
.ws7{word-spacing:2.688583pt;}
.ws6{word-spacing:2.863926pt;}
.ws3{word-spacing:16.189948pt;}
.ws2{word-spacing:437.713078pt;}
.ws1{word-spacing:470.151422pt;}
._35{margin-left:-10.753935pt;}
._42{margin-left:-8.826088pt;}
._2f{margin-left:-7.425336pt;}
._1{margin-left:-6.487669pt;}
._2d{margin-left:-5.577031pt;}
._b{margin-left:-4.675797pt;}
._15{margin-left:-3.661672pt;}
._2{margin-left:-2.162556pt;}
._f{margin-left:-0.896161pt;}
._e{width:0.960173pt;}
._10{width:2.080374pt;}
._16{width:2.977064pt;}
._23{width:3.978327pt;}
._18{width:5.376968pt;}
._d{width:6.337140pt;}
._c{width:7.425336pt;}
._21{width:8.332166pt;}
._19{width:9.281670pt;}
._1a{width:10.380535pt;}
._1b{width:11.383382pt;}
._1c{width:12.567595pt;}
._1f{width:13.687797pt;}
._22{width:14.679975pt;}
._17{width:16.066892pt;}
._11{width:18.947410pt;}
._a{width:20.573508pt;}
._25{width:21.536710pt;}
._20{width:22.673913pt;}
._1e{width:23.798450pt;}
._1d{width:24.708447pt;}
._33{width:25.682455pt;}
._27{width:26.884838pt;}
._26{width:27.781000pt;}
._32{width:28.730504pt;}
._28{width:29.637334pt;}
._2e{width:30.661518pt;}
._34{width:31.567519pt;}
._0{width:32.496791pt;}
._31{width:33.542036pt;}
._30{width:34.438198pt;}
._29{width:35.912059pt;}
._7{width:36.880351pt;}
._13{width:37.830808pt;}
._12{width:38.726970pt;}
._24{width:40.177897pt;}
._39{width:41.543476pt;}
._2a{width:43.079753pt;}
._2b{width:44.039926pt;}
._2c{width:45.064110pt;}
._43{width:46.945297pt;}
._3e{width:49.352882pt;}
._38{width:52.010425pt;}
._8{width:53.011852pt;}
._36{width:54.473804pt;}
._37{width:55.447601pt;}
._40{width:59.274668pt;}
._3f{width:60.234840pt;}
._41{width:65.803843pt;}
._9{width:72.357964pt;}
._45{width:81.486665pt;}
._44{width:83.535034pt;}
._3a{width:102.013026pt;}
._47{width:105.875054pt;}
._46{width:106.771215pt;}
._3c{width:115.615474pt;}
._3b{width:119.381485pt;}
._3d{width:120.477709pt;}
._48{width:124.310372pt;}
._49{width:125.515922pt;}
._5{width:184.284862pt;}
._6{width:216.781654pt;}
._4{width:236.269862pt;}
._3{width:288.262906pt;}
._14{width:744.609312pt;}
.fs0{font-size:7.466667pt;}
.fs7{font-size:34.566221pt;}
.fs9{font-size:42.887718pt;}
.fsa{font-size:48.008640pt;}
.fs6{font-size:53.129562pt;}
.fs2{font-size:58.447467pt;}
.fs8{font-size:58.890598pt;}
.fs3{font-size:64.011520pt;}
.fsb{font-size:67.473392pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:79.701333pt;}
.fs4{font-size:85.135322pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:3.520634pt;}
.y20{bottom:7.922667pt;}
.yc5{bottom:16.322938pt;}
.yc4{bottom:31.685702pt;}
.y2c{bottom:45.102667pt;}
.yc3{bottom:47.048467pt;}
.y22{bottom:50.569101pt;}
.yc2{bottom:62.251203pt;}
.y21{bottom:69.004419pt;}
.yc1{bottom:77.613968pt;}
.y1b4{bottom:83.567039pt;}
.yc0{bottom:92.976733pt;}
.y1ea{bottom:96.849430pt;}
.ybc{bottom:98.769775pt;}
.y2{bottom:102.533333pt;}
.y1b3{bottom:104.850870pt;}
.y190{bottom:105.330956pt;}
.ya5{bottom:106.451158pt;}
.y180{bottom:107.091273pt;}
.y168{bottom:107.411331pt;}
.yd9{bottom:108.211475pt;}
.ybf{bottom:108.339498pt;}
.y152{bottom:110.291849pt;}
.y55{bottom:116.052886pt;}
.y1d1{bottom:116.532972pt;}
.y7e{bottom:117.973231pt;}
.yf6{bottom:119.253462pt;}
.ybb{bottom:120.053606pt;}
.ybe{bottom:123.702262pt;}
.y18f{bottom:126.614787pt;}
.y17f{bottom:128.375103pt;}
.yac{bottom:128.695161pt;}
.y1e9{bottom:128.855190pt;}
.yd8{bottom:129.495305pt;}
.y151{bottom:131.575679pt;}
.y1b2{bottom:134.130806pt;}
.y1d0{bottom:137.811468pt;}
.ya4{bottom:138.451583pt;}
.y7d{bottom:139.251727pt;}
.y95{bottom:139.411756pt;}
.yf5{bottom:140.531958pt;}
.yba{bottom:141.332102pt;}
.y158{bottom:141.492131pt;}
.y54{bottom:148.053311pt;}
.y17e{bottom:149.813628pt;}
.y167{bottom:149.973657pt;}
.yd7{bottom:150.773801pt;}
.y150{bottom:152.854175pt;}
.y1b1{bottom:155.414636pt;}
.y18e{bottom:158.615212pt;}
.y1cf{bottom:159.095299pt;}
.ya3{bottom:159.735414pt;}
.y7c{bottom:160.535558pt;}
.y94{bottom:160.695587pt;}
.y1e8{bottom:160.855615pt;}
.yf4{bottom:161.815788pt;}
.yb9{bottom:162.775961pt;}
.y10f{bottom:167.096739pt;}
.y17d{bottom:171.097459pt;}
.y166{bottom:171.257487pt;}
.yd6{bottom:172.057631pt;}
.y14f{bottom:174.298035pt;}
.y1b0{bottom:176.858495pt;}
.y18d{bottom:179.899043pt;}
.y53{bottom:180.059071pt;}
.ya2{bottom:181.019244pt;}
.yab{bottom:181.819388pt;}
.y7b{bottom:181.979417pt;}
.yf3{bottom:183.099619pt;}
.yb8{bottom:184.059791pt;}
.y1ce{bottom:185.500051pt;}
.y10e{bottom:188.380569pt;}
.yc8{bottom:192.541318pt;}
.y1e7{bottom:192.861375pt;}
.yd5{bottom:193.341462pt;}
.y201{bottom:193.981577pt;}
.y14e{bottom:195.581865pt;}
.y18c{bottom:201.342902pt;}
.y17c{bottom:203.103219pt;}
.y7a{bottom:203.263247pt;}
.y1cd{bottom:203.903363pt;}
.yf2{bottom:204.383449pt;}
.yb7{bottom:205.343622pt;}
.y1af{bottom:206.143766pt;}
.y12b{bottom:206.463823pt;}
.y10d{bottom:209.664399pt;}
.y52{bottom:212.064831pt;}
.ya1{bottom:213.025004pt;}
.y165{bottom:213.985177pt;}
.y1e6{bottom:214.145206pt;}
.yd4{bottom:214.785321pt;}
.y14d{bottom:216.865695pt;}
.y1cc{bottom:222.306675pt;}
.y79{bottom:224.547078pt;}
.yf1{bottom:225.827308pt;}
.y200{bottom:225.987337pt;}
.yb6{bottom:226.627452pt;}
.y1ae{bottom:227.427596pt;}
.y12a{bottom:227.907683pt;}
.y10c{bottom:230.948230pt;}
.y18b{bottom:233.188633pt;}
.y51{bottom:233.348662pt;}
.y164{bottom:235.269007pt;}
.y1e5{bottom:235.429036pt;}
.yd3{bottom:236.069151pt;}
.y17b{bottom:237.509411pt;}
.y14c{bottom:238.149526pt;}
.y1cb{bottom:240.709987pt;}
.ya0{bottom:245.030764pt;}
.y78{bottom:245.830908pt;}
.yf0{bottom:247.111139pt;}
.yb5{bottom:247.911283pt;}
.y157{bottom:248.071311pt;}
.y1ad{bottom:248.711427pt;}
.y129{bottom:249.191513pt;}
.y118{bottom:249.351542pt;}
.y10b{bottom:252.232060pt;}
.y50{bottom:254.632492pt;}
.y163{bottom:256.552838pt;}
.yd2{bottom:257.352982pt;}
.y1ff{bottom:257.833068pt;}
.y17a{bottom:258.953270pt;}
.y14b{bottom:259.433356pt;}
.y1f{bottom:259.569333pt;}
.y1e4{bottom:264.714307pt;}
.y9f{bottom:266.314595pt;}
.y77{bottom:267.114739pt;}
.y93{bottom:267.274767pt;}
.yef{bottom:268.394969pt;}
.yb4{bottom:269.355142pt;}
.y1ac{bottom:269.995257pt;}
.y128{bottom:270.475343pt;}
.y10a{bottom:273.675919pt;}
.y4f{bottom:275.916323pt;}
.y1e{bottom:276.838667pt;}
.yc7{bottom:277.836668pt;}
.yd1{bottom:278.636812pt;}
.y179{bottom:280.397129pt;}
.y14a{bottom:280.877215pt;}
.y117{bottom:281.357302pt;}
.y1e3{bottom:285.998137pt;}
.y9e{bottom:287.598425pt;}
.y1fe{bottom:288.078511pt;}
.yaa{bottom:288.398569pt;}
.y76{bottom:288.558598pt;}
.yee{bottom:289.678799pt;}
.yb3{bottom:290.638972pt;}
.y1ab{bottom:291.439116pt;}
.y127{bottom:291.759174pt;}
.y1d{bottom:294.106667pt;}
.y109{bottom:294.959750pt;}
.y18a{bottom:297.200153pt;}
.y4e{bottom:297.360182pt;}
.y162{bottom:299.160506pt;}
.yd0{bottom:299.960650pt;}
.y178{bottom:301.720967pt;}
.y149{bottom:302.201053pt;}
.y1fd{bottom:304.921543pt;}
.y1e2{bottom:307.482003pt;}
.y9d{bottom:308.922263pt;}
.y75{bottom:309.882435pt;}
.yed{bottom:311.002637pt;}
.yb2{bottom:311.962810pt;}
.y116{bottom:312.602925pt;}
.y1ca{bottom:312.762954pt;}
.y126{bottom:313.083011pt;}
.y108{bottom:316.283587pt;}
.y189{bottom:318.523991pt;}
.y4d{bottom:318.684019pt;}
.y161{bottom:320.604365pt;}
.y1aa{bottom:320.764394pt;}
.ycf{bottom:321.404509pt;}
.y1fc{bottom:321.884595pt;}
.y177{bottom:323.004797pt;}
.y148{bottom:323.484883pt;}
.y115{bottom:327.965690pt;}
.y9c{bottom:330.366122pt;}
.y74{bottom:331.166266pt;}
.yec{bottom:332.446496pt;}
.y1c{bottom:332.629333pt;}
.yb1{bottom:333.246640pt;}
.y125{bottom:334.366842pt;}
.y1e1{bottom:336.767274pt;}
.y107{bottom:337.567418pt;}
.y1fb{bottom:338.687619pt;}
.y188{bottom:339.807821pt;}
.y4c{bottom:339.967850pt;}
.y160{bottom:341.888195pt;}
.y1a9{bottom:342.048224pt;}
.yce{bottom:342.688339pt;}
.y156{bottom:342.848368pt;}
.y176{bottom:344.288627pt;}
.y1b{bottom:349.897333pt;}
.y73{bottom:352.450096pt;}
.yeb{bottom:353.730327pt;}
.y114{bottom:353.890355pt;}
.y147{bottom:355.490643pt;}
.y124{bottom:355.810701pt;}
.y1e0{bottom:358.051104pt;}
.y106{bottom:359.011277pt;}
.y4b{bottom:361.251680pt;}
.y9b{bottom:362.371882pt;}
.y15f{bottom:363.172026pt;}
.y1a8{bottom:363.332055pt;}
.ycd{bottom:363.972170pt;}
.yb0{bottom:364.132199pt;}
.y175{bottom:365.572458pt;}
.y1a{bottom:367.166667pt;}
.y187{bottom:369.253120pt;}
.y155{bottom:370.373322pt;}
.y72{bottom:373.733927pt;}
.y92{bottom:373.893955pt;}
.yea{bottom:375.014157pt;}
.y1df{bottom:379.334935pt;}
.y105{bottom:381.735367pt;}
.y4a{bottom:382.535511pt;}
.ybd{bottom:384.057025pt;}
.y19{bottom:384.434667pt;}
.y15e{bottom:384.455856pt;}
.y1a7{bottom:384.615885pt;}
.ycc{bottom:385.256000pt;}
.y154{bottom:385.736087pt;}
.y174{bottom:387.016317pt;}
.y146{bottom:387.496403pt;}
.y123{bottom:387.816461pt;}
.y186{bottom:390.536951pt;}
.y9a{bottom:394.217613pt;}
.ya9{bottom:395.017757pt;}
.y71{bottom:395.177786pt;}
.ye9{bottom:396.297987pt;}
.y1fa{bottom:401.258880pt;}
.y18{bottom:401.704000pt;}
.y49{bottom:403.979370pt;}
.y15d{bottom:405.739687pt;}
.y1c9{bottom:406.059744pt;}
.y173{bottom:408.300147pt;}
.y1de{bottom:408.620205pt;}
.y145{bottom:408.780234pt;}
.y153{bottom:411.660752pt;}
.y185{bottom:411.820781pt;}
.y1a6{bottom:414.061184pt;}
.y104{bottom:415.181386pt;}
.y99{bottom:415.661472pt;}
.y70{bottom:416.461616pt;}
.ye8{bottom:417.581818pt;}
.y1f9{bottom:418.221933pt;}
.y17{bottom:418.972000pt;}
.y122{bottom:419.662192pt;}
.y48{bottom:425.263200pt;}
.y15c{bottom:427.183546pt;}
.y172{bottom:429.583978pt;}
.y144{bottom:430.064064pt;}
.ycb{bottom:431.824381pt;}
.y184{bottom:433.104611pt;}
.y1f8{bottom:435.024957pt;}
.y1a5{bottom:435.345015pt;}
.y98{bottom:437.425389pt;}
.y6f{bottom:437.745447pt;}
.ye7{bottom:439.025677pt;}
.y13b{bottom:440.625965pt;}
.y121{bottom:441.106051pt;}
.y47{bottom:446.547031pt;}
.y103{bottom:447.027117pt;}
.yca{bottom:447.187146pt;}
.ya8{bottom:448.467376pt;}
.y171{bottom:450.867808pt;}
.y143{bottom:451.347895pt;}
.y1f7{bottom:451.827981pt;}
.y1a4{bottom:456.628845pt;}
.y6e{bottom:459.029277pt;}
.ye6{bottom:460.309507pt;}
.y13a{bottom:461.909795pt;}
.y120{bottom:462.389882pt;}
.yc9{bottom:462.549911pt;}
.y46{bottom:467.830861pt;}
.y102{bottom:468.310947pt;}
.y1f6{bottom:468.791034pt;}
.y15b{bottom:469.751207pt;}
.y170{bottom:472.151639pt;}
.y1dd{bottom:472.631725pt;}
.y142{bottom:472.791754pt;}
.y1c8{bottom:477.912675pt;}
.y6d{bottom:480.313107pt;}
.y91{bottom:480.473136pt;}
.ye5{bottom:481.593338pt;}
.y139{bottom:483.193626pt;}
.y11f{bottom:483.673712pt;}
.y183{bottom:483.833741pt;}
.y1f5{bottom:485.594058pt;}
.y1a3{bottom:485.914115pt;}
.y45{bottom:489.114691pt;}
.y15a{bottom:491.035037pt;}
.y16f{bottom:493.595498pt;}
.y141{bottom:494.075584pt;}
.y1c7{bottom:499.196506pt;}
.y16{bottom:500.001333pt;}
.y101{bottom:500.476736pt;}
.y6c{bottom:501.756967pt;}
.y1f4{bottom:502.557111pt;}
.ye4{bottom:502.877168pt;}
.y1dc{bottom:504.637485pt;}
.y11e{bottom:504.957543pt;}
.y1a2{bottom:507.197946pt;}
.y182{bottom:510.238493pt;}
.y44{bottom:510.558551pt;}
.y97{bottom:512.318867pt;}
.y16e{bottom:514.879328pt;}
.y138{bottom:515.199386pt;}
.y140{bottom:515.359415pt;}
.y15{bottom:517.270667pt;}
.y1f3{bottom:519.520163pt;}
.y6b{bottom:523.040797pt;}
.ye3{bottom:524.160999pt;}
.y1db{bottom:525.921315pt;}
.y11d{bottom:526.241373pt;}
.y181{bottom:528.641805pt;}
.yaf{bottom:529.281920pt;}
.y43{bottom:531.842381pt;}
.y100{bottom:532.482496pt;}
.y159{bottom:533.762727pt;}
.y14{bottom:534.538667pt;}
.y13f{bottom:536.669917pt;}
.y6a{bottom:544.351299pt;}
.ye2{bottom:545.631529pt;}
.y16d{bottom:546.111616pt;}
.y137{bottom:547.231817pt;}
.y1c6{bottom:549.952307pt;}
.y1f2{bottom:551.392566pt;}
.y13{bottom:551.808000pt;}
.y42{bottom:553.152883pt;}
.ya7{bottom:555.073229pt;}
.y11c{bottom:557.633689pt;}
.y1a1{bottom:557.953747pt;}
.y16c{bottom:561.474381pt;}
.yff{bottom:564.194870pt;}
.y69{bottom:565.635129pt;}
.y13e{bottom:567.875533pt;}
.y136{bottom:568.515648pt;}
.y12{bottom:569.076000pt;}
.y1c5{bottom:571.236137pt;}
.y11b{bottom:572.996454pt;}
.y41{bottom:574.436713pt;}
.yc6{bottom:576.357059pt;}
.y16b{bottom:576.837145pt;}
.ye1{bottom:577.477261pt;}
.y1a0{bottom:579.237577pt;}
.y13d{bottom:583.238297pt;}
.y1f1{bottom:583.398326pt;}
.yfe{bottom:585.638729pt;}
.y68{bottom:586.918960pt;}
.y90{bottom:587.078989pt;}
.y11a{bottom:588.199190pt;}
.y135{bottom:589.799478pt;}
.y16a{bottom:592.199910pt;}
.y1c4{bottom:592.519968pt;}
.y40{bottom:595.720544pt;}
.yae{bottom:597.640889pt;}
.y19f{bottom:600.521408pt;}
.ye0{bottom:601.082750pt;}
.y11{bottom:607.598667pt;}
.y67{bottom:608.362819pt;}
.y13c{bottom:610.283165pt;}
.y134{bottom:611.083309pt;}
.y1f0{bottom:612.043481pt;}
.y119{bottom:614.283885pt;}
.y3f{bottom:617.164403pt;}
.yfd{bottom:617.804518pt;}
.y169{bottom:618.124576pt;}
.y113{bottom:618.924720pt;}
.ydf{bottom:620.126177pt;}
.y1c3{bottom:621.805238pt;}
.y10{bottom:624.866667pt;}
.y8f{bottom:629.646649pt;}
.y133{bottom:632.367139pt;}
.y19e{bottom:632.527168pt;}
.y3e{bottom:638.448233pt;}
.yde{bottom:639.169604pt;}
.y66{bottom:640.208550pt;}
.y112{bottom:640.368579pt;}
.yf{bottom:642.134667pt;}
.y1c2{bottom:643.249097pt;}
.yfc{bottom:649.650249pt;}
.y8e{bottom:650.930480pt;}
.y132{bottom:653.810998pt;}
.ydc{bottom:658.213031pt;}
.y3d{bottom:659.732064pt;}
.y65{bottom:661.652409pt;}
.y1c1{bottom:664.532928pt;}
.y8d{bottom:672.214310pt;}
.y131{bottom:675.094829pt;}
.ye{bottom:680.657333pt;}
.y3c{bottom:681.015894pt;}
.yfb{bottom:681.495981pt;}
.y64{bottom:682.936240pt;}
.ydb{bottom:685.336672pt;}
.y1da{bottom:685.816758pt;}
.y96{bottom:693.498141pt;}
.y8c{bottom:693.658169pt;}
.y1c0{bottom:693.818198pt;}
.y130{bottom:696.378659pt;}
.y19d{bottom:696.538688pt;}
.yfa{bottom:702.779811pt;}
.y63{bottom:704.220070pt;}
.y1d9{bottom:707.100589pt;}
.y3b{bottom:713.021654pt;}
.y8b{bottom:714.942000pt;}
.y1bf{bottom:715.102029pt;}
.y12f{bottom:717.662489pt;}
.yf9{bottom:724.223670pt;}
.y62{bottom:725.503901pt;}
.y19c{bottom:728.384419pt;}
.yd{bottom:729.806667pt;}
.y8a{bottom:736.225830pt;}
.y1be{bottom:736.385859pt;}
.y3a{bottom:743.907213pt;}
.yf8{bottom:745.827558pt;}
.y61{bottom:746.787731pt;}
.y111{bottom:746.947760pt;}
.yc{bottom:747.074667pt;}
.y12e{bottom:748.868105pt;}
.y19b{bottom:749.828278pt;}
.y89{bottom:757.509661pt;}
.y1bd{bottom:757.829718pt;}
.y12d{bottom:764.230870pt;}
.yb{bottom:764.344000pt;}
.y60{bottom:768.231590pt;}
.y19a{bottom:771.112109pt;}
.y39{bottom:772.232310pt;}
.y88{bottom:778.833498pt;}
.y1d8{bottom:779.153556pt;}
.y1bc{bottom:787.154996pt;}
.y5f{bottom:789.555428pt;}
.y12c{bottom:790.355572pt;}
.ya6{bottom:800.117329pt;}
.y87{bottom:800.277357pt;}
.y1d7{bottom:800.437386pt;}
.ya{bottom:802.865333pt;}
.y199{bottom:803.157876pt;}
.y38{bottom:806.198423pt;}
.y1bb{bottom:808.438826pt;}
.y5e{bottom:810.839258pt;}
.y2b{bottom:812.439546pt;}
.y9{bottom:820.134667pt;}
.y86{bottom:821.561188pt;}
.y1d6{bottom:821.721217pt;}
.y198{bottom:824.441706pt;}
.y1ba{bottom:829.722657pt;}
.y5d{bottom:832.123089pt;}
.y37{bottom:834.363492pt;}
.y8{bottom:837.402667pt;}
.y85{bottom:842.845018pt;}
.y197{bottom:845.725537pt;}
.y2a{bottom:849.086141pt;}
.y1b9{bottom:851.006487pt;}
.y5c{bottom:853.406919pt;}
.yf7{bottom:853.566948pt;}
.y7{bottom:854.672000pt;}
.y1ef{bottom:856.447466pt;}
.y36{bottom:862.848618pt;}
.y84{bottom:864.128849pt;}
.y196{bottom:867.009367pt;}
.y29{bottom:871.650202pt;}
.y1b8{bottom:872.450346pt;}
.y5b{bottom:874.850778pt;}
.y83{bottom:885.412679pt;}
.y1ee{bottom:888.453226pt;}
.y35{bottom:891.333745pt;}
.y28{bottom:892.774004pt;}
.y6{bottom:893.193333pt;}
.y1d5{bottom:893.734177pt;}
.y5a{bottom:896.134609pt;}
.y195{bottom:899.015127pt;}
.y1b7{bottom:901.735617pt;}
.yad{bottom:906.696509pt;}
.y82{bottom:906.856538pt;}
.y34{bottom:909.096941pt;}
.y1ed{bottom:909.737057pt;}
.y5{bottom:910.462667pt;}
.y1d4{bottom:915.018007pt;}
.y27{bottom:915.338065pt;}
.yda{bottom:917.418439pt;}
.y194{bottom:920.298957pt;}
.y1b6{bottom:923.019447pt;}
.y33{bottom:926.860138pt;}
.y4{bottom:927.730667pt;}
.y59{bottom:928.140369pt;}
.y1ec{bottom:931.020887pt;}
.y26{bottom:936.621895pt;}
.y110{bottom:938.702269pt;}
.y193{bottom:941.742817pt;}
.y32{bottom:942.222903pt;}
.y1b5{bottom:944.303277pt;}
.y81{bottom:949.424199pt;}
.y1eb{bottom:952.304717pt;}
.y25{bottom:959.025927pt;}
.y31{bottom:959.506013pt;}
.y58{bottom:960.146129pt;}
.y1d3{bottom:965.587108pt;}
.y80{bottom:970.708029pt;}
.y192{bottom:973.588548pt;}
.y24{bottom:980.309757pt;}
.y30{bottom:983.990420pt;}
.y1d2{bottom:987.030967pt;}
.y7f{bottom:991.991860pt;}
.y57{bottom:992.151889pt;}
.y191{bottom:995.032407pt;}
.y3{bottom:1000.790667pt;}
.y2f{bottom:1008.634855pt;}
.y23{bottom:1013.462390pt;}
.y56{bottom:1013.622419pt;}
.y1{bottom:1018.364000pt;}
.y2d{bottom:1021.472000pt;}
.y2e{bottom:1022.781080pt;}
.h2{height:4.976563pt;}
.h13{height:18.403312pt;}
.h12{height:39.198617pt;}
.h4{height:42.549756pt;}
.h5{height:45.179892pt;}
.h14{height:46.849201pt;}
.hf{height:47.227249pt;}
.hc{height:47.655764pt;}
.h10{height:50.071511pt;}
.ha{height:50.997333pt;}
.hb{height:55.412472pt;}
.he{height:57.416583pt;}
.h3{height:58.022571pt;}
.hd{height:61.421054pt;}
.h7{height:66.762015pt;}
.h8{height:88.793480pt;}
.h1{height:104.302667pt;}
.h11{height:136.024480pt;}
.h9{height:1077.564000pt;}
.h6{height:1114.744000pt;}
.h0{height:1122.666667pt;}
.w1{width:63.393333pt;}
.w8{width:162.135846pt;}
.w6{width:199.262527pt;}
.w7{width:202.943190pt;}
.w5{width:547.231817pt;}
.w3{width:773.852000pt;}
.w2{width:777.677543pt;}
.w4{width:780.936000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:13.660000pt;}
.x2{left:53.134667pt;}
.x14{left:54.244429pt;}
.x3{left:57.196000pt;}
.x1b{left:60.970973pt;}
.x18{left:69.972593pt;}
.x1a{left:72.333018pt;}
.x19{left:73.447885pt;}
.x16{left:81.294630pt;}
.x5{left:97.267092pt;}
.xd{left:104.628416pt;}
.xe{left:115.830432pt;}
.x6{left:121.266077pt;}
.xa{left:138.709217pt;}
.x9{left:139.829418pt;}
.x7{left:145.270397pt;}
.x1e{left:151.191463pt;}
.x1f{left:161.593335pt;}
.xb{left:175.675869pt;}
.x10{left:233.806331pt;}
.x8{left:276.518667pt;}
.x15{left:297.977880pt;}
.xf{left:329.823611pt;}
.xc{left:380.712769pt;}
.x17{left:501.561185pt;}
.x1c{left:617.942130pt;}
.x1d{left:628.504030pt;}
.x22{left:644.826968pt;}
.x12{left:646.587285pt;}
.x13{left:647.707486pt;}
.x11{left:650.267947pt;}
.x21{left:653.628552pt;}
.x4{left:655.388869pt;}
.x23{left:656.989157pt;}
.x24{left:664.190453pt;}
.x20{left:677.472843pt;}
}




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