
    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_674f04759006bcae7fd0a6c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_3922dc082d17341371031045.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.707031;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_9ed78c5138bb93fa78cdcb8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_7813b573a10994c386cc30ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103027;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_09f0057d191faf219dfd8d47.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104980;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_0e8a2d3ebe4ef81203a42c4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_b12400fa955f7bb07f4f3b3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_c50769f7194a340c0a356bf7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_f8a887aaf94fa244dd869286.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_28ea13e6f7f54e17d87fbdae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.713867;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_2de8a312fdcc6ce159b5da8e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:68.356506px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.005920px;}
.ls15{letter-spacing:0.006262px;}
.ls17{letter-spacing:0.019136px;}
.ls14{letter-spacing:0.049004px;}
.ls16{letter-spacing:0.052534px;}
.lsd{letter-spacing:0.067562px;}
.lsb{letter-spacing:0.082400px;}
.ls7{letter-spacing:0.096081px;}
.ls6{letter-spacing:14.028046px;}
.ls8{letter-spacing:14.043811px;}
.ls1a{letter-spacing:28.053366px;}
.lsa{letter-spacing:28.057476px;}
.ls20{letter-spacing:28.064370px;}
.lsc{letter-spacing:28.075293px;}
.ls9{letter-spacing:28.075298px;}
.ls1c{letter-spacing:35.078061px;}
.lsf{letter-spacing:42.093279px;}
.lse{letter-spacing:49.104694px;}
.ls13{letter-spacing:49.685036px;}
.ls12{letter-spacing:53.662245px;}
.ls21{letter-spacing:56.125275px;}
.ls1f{letter-spacing:56.127330px;}
.ls1b{letter-spacing:56.136200px;}
.ls1d{letter-spacing:84.199154px;}
.ls3{letter-spacing:85.248951px;}
.ls4{letter-spacing:91.171809px;}
.ls2{letter-spacing:91.171820px;}
.ls1{letter-spacing:91.195028px;}
.ls11{letter-spacing:91.256413px;}
.ls10{letter-spacing:94.493655px;}
.ls5{letter-spacing:126.250517px;}
.ls19{letter-spacing:126.266608px;}
.ls18{letter-spacing:126.269194px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,104,145),0 0.015em rgb(0,104,145),0.015em 0 rgb(0,104,145),0 -0.015em  rgb(0,104,145);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,104,145);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-83.515372px;}
.ws2f{word-spacing:-38.053375px;}
.ws16{word-spacing:-36.537975px;}
.ws2d{word-spacing:-34.980481px;}
.ws2a{word-spacing:-33.797630px;}
.ws27{word-spacing:-33.296703px;}
.ws18{word-spacing:-31.318264px;}
.ws1a{word-spacing:-30.686848px;}
.ws2b{word-spacing:-28.385333px;}
.ws2c{word-spacing:-27.277199px;}
.ws10{word-spacing:-24.358649px;}
.ws11{word-spacing:-23.867547px;}
.ws23{word-spacing:-23.783359px;}
.ws29{word-spacing:-23.654445px;}
.ws24{word-spacing:-22.197801px;}
.ws14{word-spacing:-21.376961px;}
.ws1c{word-spacing:-21.313820px;}
.ws1d{word-spacing:-20.884106px;}
.ws2e{word-spacing:-20.612246px;}
.ws17{word-spacing:-20.457898px;}
.ws28{word-spacing:-19.026687px;}
.ws26{word-spacing:-17.490240px;}
.ws0{word-spacing:-16.695965px;}
.ws12{word-spacing:-13.919229px;}
.ws13{word-spacing:-12.179325px;}
.wsc{word-spacing:-0.504794px;}
.wsa{word-spacing:-0.503251px;}
.wsd{word-spacing:-0.264328px;}
.wsf{word-spacing:0.000000px;}
.ws9{word-spacing:0.084071px;}
.ws5{word-spacing:0.900031px;}
.ws4{word-spacing:1.295710px;}
.wsb{word-spacing:3.309288px;}
.ws2{word-spacing:3.445722px;}
.ws8{word-spacing:6.936378px;}
.ws6{word-spacing:6.991435px;}
.ws7{word-spacing:8.900427px;}
.ws3{word-spacing:9.676346px;}
.ws1{word-spacing:10.150113px;}
.ws1e{word-spacing:113.934377px;}
.ws1b{word-spacing:134.981598px;}
.ws1f{word-spacing:159.720349px;}
.ws22{word-spacing:323.130970px;}
.ws21{word-spacing:367.961550px;}
.ws25{word-spacing:378.938103px;}
.ws20{word-spacing:418.348597px;}
.wse{word-spacing:1024.829380px;}
.ws19{word-spacing:1909.415537px;}
._1a{margin-left:-484.952742px;}
._f{margin-left:-19.625402px;}
._19{margin-left:-12.979093px;}
._13{margin-left:-11.903962px;}
._10{margin-left:-10.089954px;}
._14{margin-left:-8.544882px;}
._e{margin-left:-7.462136px;}
._4{margin-left:-5.474585px;}
._12{margin-left:-4.412900px;}
._1{margin-left:-3.314784px;}
._0{margin-left:-1.879660px;}
._2{width:1.515663px;}
._c{width:3.054002px;}
._17{width:4.896048px;}
._8{width:16.416659px;}
._b{width:17.789531px;}
._7{width:19.696577px;}
._5{width:21.830606px;}
._a{width:24.900060px;}
._9{width:26.756561px;}
._3{width:27.965338px;}
._6{width:29.092812px;}
._15{width:126.250517px;}
._1b{width:379.754696px;}
._1c{width:603.889163px;}
._d{width:1075.633122px;}
._18{width:1472.228681px;}
._16{width:2731.582645px;}
._11{width:2770.482855px;}
.fc15{color:rgb(102,102,102);}
.fc13{color:rgb(68,114,196);}
.fc11{color:rgb(122,142,2);}
.fc10{color:rgb(55,70,75);}
.fce{color:rgb(56,118,29);}
.fcd{color:rgb(255,0,0);}
.fc0{color:rgb(0,75,156);}
.fc14{color:rgb(165,30,85);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fcf{color:rgb(165,165,165);}
.fcb{color:rgb(136,136,136);}
.fcc{color:rgb(127,127,127);}
.fca{color:rgb(32,32,32);}
.fc3{color:rgb(0,79,110);}
.fc7{color:rgb(68,84,106);}
.fc8{color:rgb(153,153,153);}
.fc4{color:transparent;}
.fc12{color:rgb(153,0,0);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,104,145);}
.fc9{color:rgb(19,84,150);}
.fs3{font-size:31.570920px;}
.fsa{font-size:49.110180px;}
.fs9{font-size:56.125924px;}
.fs18{font-size:63.141662px;}
.fs6{font-size:70.157400px;}
.fs1{font-size:73.875953px;}
.fs2{font-size:74.002236px;}
.fsc{font-size:77.173144px;}
.fsf{font-size:84.188883px;}
.fs15{font-size:85.942821px;}
.fs17{font-size:91.204626px;}
.fs1c{font-size:97.343396px;}
.fs8{font-size:98.220360px;}
.fs1e{font-size:102.254701px;}
.fs1b{font-size:103.832959px;}
.fse{font-size:105.236103px;}
.fs19{font-size:110.322517px;}
.fs0{font-size:110.498220px;}
.fs14{font-size:112.251847px;}
.fs1d{font-size:116.812069px;}
.fsd{font-size:119.267580px;}
.fs12{font-size:126.283324px;}
.fs1a{font-size:136.280764px;}
.fs13{font-size:140.314801px;}
.fs7{font-size:147.330545px;}
.fs11{font-size:161.362022px;}
.fs5{font-size:168.165894px;}
.fs16{font-size:168.377765px;}
.fs1f{font-size:196.440719px;}
.fs4{font-size:217.276079px;}
.fsb{font-size:238.535161px;}
.fs10{font-size:336.755531px;}
.yd3{bottom:-202.102253px;}
.yd4{bottom:-201.955580px;}
.y0{bottom:0.000000px;}
.y134{bottom:10.899274px;}
.y144{bottom:13.266704px;}
.y1f{bottom:14.057331px;}
.y122{bottom:14.687773px;}
.y16b{bottom:15.728387px;}
.y158{bottom:21.966459px;}
.yc1{bottom:33.002597px;}
.y17b{bottom:45.051379px;}
.y51{bottom:58.067966px;}
.y120{bottom:58.465147px;}
.yd0{bottom:65.413645px;}
.y142{bottom:65.590967px;}
.yb6{bottom:66.567559px;}
.y15c{bottom:68.955767px;}
.y16a{bottom:72.676895px;}
.yee{bottom:80.303803px;}
.ya0{bottom:81.067777px;}
.yb5{bottom:82.501119px;}
.y50{bottom:83.324631px;}
.yd1{bottom:84.271560px;}
.yd6{bottom:84.526955px;}
.yfa{bottom:86.974654px;}
.y2f{bottom:87.654755px;}
.ycd{bottom:88.156757px;}
.y11f{bottom:89.319715px;}
.y16{bottom:91.284442px;}
.y141{bottom:92.952340px;}
.y92{bottom:95.374639px;}
.yf0{bottom:97.632953px;}
.y131{bottom:100.878916px;}
.yba{bottom:101.886438px;}
.y89{bottom:103.722524px;}
.yb8{bottom:104.598663px;}
.y15b{bottom:105.577937px;}
.y169{bottom:106.352448px;}
.yed{bottom:106.823301px;}
.y9f{bottom:112.577242px;}
.y2e{bottom:117.120851px;}
.ycc{bottom:117.622893px;}
.y140{bottom:120.313688px;}
.y11e{bottom:123.437589px;}
.ye6{bottom:124.572705px;}
.y105{bottom:125.529084px;}
.y14f{bottom:126.020234px;}
.y5d{bottom:127.945226px;}
.ya6{bottom:127.977757px;}
.yb9{bottom:129.247825px;}
.ya4{bottom:133.839368px;}
.y130{bottom:136.238246px;}
.yec{bottom:136.850660px;}
.y15a{bottom:138.411601px;}
.y4f{bottom:139.666489px;}
.y10b{bottom:139.820568px;}
.y168{bottom:140.028014px;}
.ya8{bottom:141.225325px;}
.y132{bottom:141.959295px;}
.y9e{bottom:144.086681px;}
.yb7{bottom:144.706037px;}
.y175{bottom:144.848683px;}
.y1c{bottom:146.038522px;}
.y2d{bottom:147.007896px;}
.ycb{bottom:147.089041px;}
.y88{bottom:147.290258px;}
.y91{bottom:147.291121px;}
.ye5{bottom:147.303702px;}
.y13f{bottom:147.675075px;}
.y104{bottom:148.681026px;}
.ya3{bottom:156.570367px;}
.y14e{bottom:157.591065px;}
.y11d{bottom:160.008555px;}
.ya7{bottom:162.272545px;}
.yd2{bottom:162.323697px;}
.y10a{bottom:165.077232px;}
.yeb{bottom:166.878019px;}
.y4e{bottom:169.132637px;}
.y5c{bottom:169.688876px;}
.ye4{bottom:170.034699px;}
.y174{bottom:173.440385px;}
.y167{bottom:173.703567px;}
.y159{bottom:175.033766px;}
.y9d{bottom:175.596133px;}
.yca{bottom:176.555176px;}
.y15{bottom:176.841410px;}
.y80{bottom:176.939604px;}
.ya2{bottom:179.301365px;}
.y13e{bottom:182.192543px;}
.y12f{bottom:183.313881px;}
.y11c{bottom:184.539117px;}
.yd5{bottom:185.306795px;}
.y17a{bottom:186.436110px;}
.y1d{bottom:186.550347px;}
.y1b{bottom:191.443336px;}
.ye3{bottom:192.765695px;}
.yea{bottom:193.397510px;}
.yb4{bottom:198.260833px;}
.y90{bottom:199.207603px;}
.y173{bottom:200.801811px;}
.ycf{bottom:201.925812px;}
.y87{bottom:204.889463px;}
.y14d{bottom:204.947311px;}
.y3a{bottom:205.188526px;}
.yc9{bottom:206.021285px;}
.y9c{bottom:207.105559px;}
.y166{bottom:207.379133px;}
.y4d{bottom:210.876300px;}
.y157{bottom:210.918087px;}
.y5b{bottom:211.853470px;}
.y6e{bottom:212.270876px;}
.y73{bottom:212.270902px;}
.y7f{bottom:212.930351px;}
.ye{bottom:218.104471px;}
.y11b{bottom:218.656991px;}
.ye9{bottom:219.917005px;}
.y172{bottom:228.163185px;}
.y2c{bottom:228.411345px;}
.y13d{bottom:228.706927px;}
.yb3{bottom:235.093469px;}
.yc8{bottom:235.487381px;}
.y66{bottom:236.763974px;}
.y9b{bottom:238.614985px;}
.y103{bottom:239.958929px;}
.y4c{bottom:240.342383px;}
.y165{bottom:241.054700px;}
.y179{bottom:247.209933px;}
.y86{bottom:248.457236px;}
.y39{bottom:249.036898px;}
.yda{bottom:249.067474px;}
.ye8{bottom:249.944371px;}
.y8f{bottom:251.124085px;}
.y14c{bottom:252.303558px;}
.y12e{bottom:254.032516px;}
.ya1{bottom:255.099421px;}
.y11a{bottom:255.227944px;}
.y5a{bottom:255.280885px;}
.yd{bottom:255.992601px;}
.y13c{bottom:256.068340px;}
.y2b{bottom:257.877454px;}
.y156{bottom:258.274360px;}
.yac{bottom:260.449411px;}
.y42{bottom:260.963068px;}
.y7e{bottom:262.952583px;}
.y102{bottom:263.110872px;}
.y65{bottom:263.388708px;}
.yf4{bottom:263.768295px;}
.yc7{bottom:264.953477px;}
.y6d{bottom:269.870094px;}
.y72{bottom:269.870121px;}
.y9a{bottom:270.124424px;}
.y164{bottom:274.730253px;}
.yc{bottom:278.118422px;}
.yb2{bottom:278.661203px;}
.ye7{bottom:279.971737px;}
.y3d{bottom:280.607702px;}
.y4b{bottom:282.506964px;}
.y171{bottom:282.885972px;}
.y13b{bottom:283.429727px;}
.yf3{bottom:284.394571px;}
.y59{bottom:284.746993px;}
.y101{bottom:287.104699px;}
.y2a{bottom:287.343550px;}
.yaa{bottom:288.272732px;}
.yf9{bottom:289.059990px;}
.y119{bottom:289.345831px;}
.y12d{bottom:289.391860px;}
.y38{bottom:293.727145px;}
.y1a{bottom:294.376084px;}
.y76{bottom:298.852216px;}
.yce{bottom:299.640467px;}
.y14b{bottom:299.659804px;}
.yb{bottom:300.218066px;}
.y85{bottom:300.373692px;}
.y67{bottom:301.342043px;}
.y8e{bottom:303.040554px;}
.ybd{bottom:303.826694px;}
.yab{bottom:304.648574px;}
.y155{bottom:305.630606px;}
.y163{bottom:308.405793px;}
.y99{bottom:308.649598px;}
.y41{bottom:309.020871px;}
.ya9{bottom:309.319952px;}
.yf2{bottom:310.072181px;}
.y170{bottom:310.247359px;}
.y64{bottom:311.060676px;}
.yf8{bottom:312.211933px;}
.y100{bottom:313.624195px;}
.y7d{bottom:316.482677px;}
.y78{bottom:317.588274px;}
.y31{bottom:317.677567px;}
.y13a{bottom:317.947169px;}
.y75{bottom:321.583213px;}
.ya{bottom:322.317710px;}
.y3c{bottom:324.456074px;}
.y118{bottom:325.683160px;}
.y4a{bottom:325.934392px;}
.y58{bottom:326.490630px;}
.y6c{bottom:326.711652px;}
.y71{bottom:327.469352px;}
.y14a{bottom:331.230635px;}
.yc6{bottom:332.725514px;}
.y98{bottom:333.143302px;}
.ybc{bottom:333.292795px;}
.y12c{bottom:336.467481px;}
.y16f{bottom:337.608746px;}
.yb1{bottom:338.014352px;}
.y37{bottom:340.943073px;}
.y77{bottom:342.844939px;}
.y74{bottom:344.314206px;}
.y9{bottom:344.417354px;}
.y29{bottom:346.275754px;}
.y117{bottom:349.357074px;}
.y84{bottom:352.290161px;}
.y154{bottom:352.986853px;}
.y19{bottom:353.040628px;}
.y8d{bottom:354.957023px;}
.y40{bottom:357.078688px;}
.y63{bottom:358.732631px;}
.y7c{bottom:359.489160px;}
.ybb{bottom:362.758901px;}
.yd7{bottom:363.100390px;}
.y97{bottom:364.652727px;}
.y8{bottom:366.516998px;}
.yc5{bottom:366.611539px;}
.y109{bottom:366.648385px;}
.y6b{bottom:367.248586px;}
.y49{bottom:368.098973px;}
.y57{bottom:368.234280px;}
.y126{bottom:368.665885px;}
.y3b{bottom:369.146335px;}
.y139{bottom:369.723318px;}
.ydd{bottom:370.719372px;}
.y36{bottom:372.513891px;}
.y28{bottom:375.741850px;}
.y162{bottom:375.756873px;}
.y149{bottom:378.586882px;}
.yb0{bottom:381.582099px;}
.y30{bottom:382.082049px;}
.ye2{bottom:382.424599px;}
.y116{bottom:383.786473px;}
.y70{bottom:385.068558px;}
.y62{bottom:385.357365px;}
.y16e{bottom:392.331519px;}
.y3f{bottom:392.858963px;}
.ydc{bottom:393.450367px;}
.y96{bottom:396.162179px;}
.y125{bottom:398.131991px;}
.y110{bottom:398.563615px;}
.y48{bottom:399.669810px;}
.y153{bottom:400.343099px;}
.y7{bottom:400.455737px;}
.yc4{bottom:400.497552px;}
.y7b{bottom:402.495648px;}
.y83{bottom:404.206630px;}
.y12b{bottom:407.186156px;}
.y161{bottom:409.432426px;}
.yff{bottom:410.238442px;}
.y56{bottom:410.398888px;}
.y8c{bottom:411.082922px;}
.y18{bottom:411.705157px;}
.y61{bottom:411.982093px;}
.ye1{bottom:412.451959px;}
.ydb{bottom:416.181364px;}
.y35{bottom:416.362263px;}
.y115{bottom:419.812290px;}
.y6a{bottom:424.847805px;}
.y148{bottom:425.943128px;}
.y95{bottom:427.671631px;}
.yc3{bottom:429.963654px;}
.y124{bottom:430.016113px;}
.y47{bottom:431.240635px;}
.y138{bottom:432.163398px;}
.y27{bottom:434.674055px;}
.yfe{bottom:435.495107px;}
.yf7{bottom:436.390548px;}
.y60{bottom:438.606823px;}
.yaf{bottom:440.935266px;}
.y6f{bottom:441.910081px;}
.ye0{bottom:442.479325px;}
.y12a{bottom:442.545486px;}
.y160{bottom:443.107966px;}
.y6{bottom:444.694620px;}
.y106{bottom:447.003188px;}
.y152{bottom:447.699354px;}
.y34{bottom:447.933094px;}
.y114{bottom:451.749698px;}
.y7a{bottom:452.517879px;}
.y8b{bottom:452.756411px;}
.y55{bottom:453.826315px;}
.y82{bottom:456.123112px;}
.y123{bottom:459.482219px;}
.y178{bottom:462.312528px;}
.y26{bottom:464.140157px;}
.y5f{bottom:465.231554px;}
.y94{bottom:466.196813px;}
.y5{bottom:466.794264px;}
.y16d{bottom:469.574825px;}
.yd9{bottom:469.740769px;}
.y137{bottom:470.048388px;}
.y17{bottom:470.369694px;}
.yfd{bottom:471.275374px;}
.ydf{bottom:472.506688px;}
.y147{bottom:473.299375px;}
.y46{bottom:475.089007px;}
.y15f{bottom:476.783505px;}
.y129{bottom:477.904817px;}
.y69{bottom:482.447026px;}
.yf6{bottom:483.536317px;}
.y108{bottom:487.838424px;}
.y113{bottom:488.087021px;}
.y79{bottom:488.508624px;}
.y4{bottom:488.893908px;}
.y5e{bottom:491.856288px;}
.y33{bottom:492.623357px;}
.y25{bottom:493.606273px;}
.y151{bottom:495.055600px;}
.yfc{bottom:495.269202px;}
.y54{bottom:495.990911px;}
.y93{bottom:497.706258px;}
.yae{bottom:500.288425px;}
.yde{bottom:502.534049px;}
.y22{bottom:502.961368px;}
.y146{bottom:504.870210px;}
.y10d{bottom:506.541558px;}
.y45{bottom:506.659842px;}
.y107{bottom:506.780925px;}
.y10f{bottom:507.063592px;}
.y81{bottom:508.039585px;}
.y8a{bottom:508.040447px;}
.yf5{bottom:510.055812px;}
.y15e{bottom:510.459045px;}
.y3{bottom:510.993552px;}
.y112{bottom:511.760933px;}
.y16c{bottom:513.142567px;}
.y177{bottom:514.404400px;}
.ybf{bottom:515.220114px;}
.y136{bottom:515.510392px;}
.yc2{bottom:518.361977px;}
.yfb{bottom:521.788697px;}
.y10e{bottom:521.796644px;}
.y24{bottom:523.072374px;}
.y128{bottom:524.980421px;}
.y10c{bottom:530.956331px;}
.y21{bottom:532.427469px;}
.y44{bottom:538.230670px;}
.y2{bottom:540.985926px;}
.y111{bottom:546.190327px;}
.y150{bottom:551.883089px;}
.y145{bottom:552.226454px;}
.y23{bottom:552.538480px;}
.y20{bottom:561.893575px;}
.y176{bottom:566.496271px;}
.y135{bottom:572.337876px;}
.y127{bottom:579.071772px;}
.y15d{bottom:586.229040px;}
.y12{bottom:604.759185px;}
.yc0{bottom:605.502424px;}
.y143{bottom:605.539106px;}
.yd8{bottom:605.545634px;}
.yf1{bottom:611.654394px;}
.y121{bottom:614.009107px;}
.y14{bottom:615.809007px;}
.ya5{bottom:621.559286px;}
.ybe{bottom:623.416969px;}
.yad{bottom:624.097015px;}
.y10{bottom:626.858829px;}
.y3e{bottom:628.048807px;}
.y53{bottom:628.720774px;}
.y1e{bottom:630.046747px;}
.y43{bottom:630.048043px;}
.y52{bottom:630.052189px;}
.y32{bottom:630.052292px;}
.y68{bottom:635.565014px;}
.y13{bottom:637.908651px;}
.y133{bottom:640.526991px;}
.yef{bottom:646.372291px;}
.y11{bottom:648.958473px;}
.yf{bottom:687.369759px;}
.y1{bottom:748.617344px;}
.h7{height:25.034753px;}
.h41{height:35.249983px;}
.h3a{height:35.801513px;}
.h10{height:42.899469px;}
.h39{height:42.947428px;}
.h2f{height:46.030518px;}
.hf{height:49.027967px;}
.h28{height:51.145019px;}
.h4{height:51.402946px;}
.h30{height:55.218123px;}
.h18{height:56.259524px;}
.h3{height:58.581322px;}
.h6{height:58.581848px;}
.h5{height:58.681461px;}
.h31{height:61.284956px;}
.h17{height:61.374024px;}
.hb{height:61.421982px;}
.h2a{height:65.464258px;}
.h19{height:67.488819px;}
.h33{height:68.074604px;}
.h23{height:69.492828px;}
.h2c{height:70.499965px;}
.h16{height:71.603026px;}
.h1d{height:73.541949px;}
.h38{height:73.624165px;}
.h1e{height:73.706380px;}
.h24{height:75.241933px;}
.h29{height:75.535680px;}
.h14{height:76.717530px;}
.h2b{height:79.420369px;}
.h48{height:79.670448px;}
.h37{height:79.759515px;}
.h43{height:79.848582px;}
.h44{height:85.093255px;}
.h3d{height:85.223002px;}
.hd{height:85.798937px;}
.h35{height:85.894856px;}
.he{height:85.990774px;}
.h13{height:86.946532px;}
.h2{height:87.621635px;}
.h3f{height:89.522793px;}
.h3c{height:90.803139px;}
.h2d{height:92.030206px;}
.h27{height:92.061037px;}
.h42{height:92.132975px;}
.h25{height:96.007390px;}
.h46{height:98.165556px;}
.h22{height:98.275177px;}
.h45{height:102.111907px;}
.h3e{height:102.267598px;}
.h32{height:105.749952px;}
.h20{height:110.312923px;}
.h47{height:110.436247px;}
.h1f{height:110.559570px;}
.h15{height:112.008622px;}
.h34{height:113.457671px;}
.h3b{height:119.046039px;}
.h21{height:122.706938px;}
.h40{height:128.009854px;}
.hc{height:128.698410px;}
.h12{height:128.842288px;}
.h1c{height:128.986165px;}
.h2e{height:129.730530px;}
.h49{height:136.149209px;}
.h1b{height:141.112979px;}
.ha{height:146.898820px;}
.h26{height:147.083898px;}
.h36{height:147.248329px;}
.h4a{height:158.840738px;}
.h9{height:165.184988px;}
.h11{height:208.601793px;}
.h1a{height:256.019708px;}
.h8{height:710.343698px;}
.h0{height:892.913445px;}
.h1{height:893.250000px;}
.w2{width:1262.833240px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x51{left:32.886282px;}
.x67{left:34.201734px;}
.x14{left:35.845166px;}
.x3e{left:37.258831px;}
.x6f{left:40.669560px;}
.x25{left:45.895784px;}
.x55{left:50.785498px;}
.x10{left:53.502561px;}
.x6b{left:54.984538px;}
.x4c{left:56.220153px;}
.x4a{left:57.266842px;}
.x74{left:58.325246px;}
.x75{left:60.780405px;}
.x1{left:62.668013px;}
.x23{left:65.821672px;}
.x15{left:67.238205px;}
.x28{left:68.267363px;}
.x70{left:70.927508px;}
.x2f{left:74.855680px;}
.x5c{left:75.896692px;}
.x20{left:77.435437px;}
.x46{left:79.610697px;}
.x1c{left:81.149235px;}
.x2e{left:82.709076px;}
.xc{left:84.632505px;}
.x2b{left:87.441594px;}
.x54{left:91.614598px;}
.x6d{left:94.262348px;}
.x4e{left:98.923468px;}
.x4f{left:100.017963px;}
.x27{left:102.002337px;}
.x24{left:109.037446px;}
.x6e{left:111.012268px;}
.x3{left:113.118869px;}
.x1f{left:115.595335px;}
.x65{left:119.833022px;}
.x4b{left:121.257915px;}
.x12{left:125.133108px;}
.x1e{left:128.505484px;}
.x13{left:129.818581px;}
.x2c{left:131.289971px;}
.x2{left:136.162747px;}
.x63{left:141.431132px;}
.x62{left:145.775147px;}
.x30{left:149.358586px;}
.x66{left:160.485058px;}
.x1d{left:162.951581px;}
.x19{left:178.417921px;}
.x77{left:181.682416px;}
.xb{left:205.210231px;}
.xd{left:212.263437px;}
.x33{left:261.029038px;}
.x37{left:266.031901px;}
.x6{left:272.010416px;}
.x5{left:276.903804px;}
.x4d{left:285.320810px;}
.x57{left:289.159043px;}
.x22{left:299.594032px;}
.x26{left:302.638052px;}
.x50{left:304.559311px;}
.x1b{left:306.150570px;}
.xa{left:309.694540px;}
.x3d{left:311.523728px;}
.x44{left:313.859051px;}
.x76{left:327.081334px;}
.x53{left:335.702170px;}
.x43{left:357.300075px;}
.xe{left:361.474386px;}
.x56{left:370.975076px;}
.x36{left:383.937145px;}
.x4{left:388.506743px;}
.x38{left:436.585524px;}
.x1a{left:443.536632px;}
.x49{left:455.426831px;}
.x73{left:470.686836px;}
.x5b{left:493.573899px;}
.x78{left:512.407242px;}
.xf{left:515.423256px;}
.x3c{left:525.990671px;}
.x58{left:529.525052px;}
.x45{left:544.651891px;}
.x61{left:560.090556px;}
.x2d{left:566.799758px;}
.x60{left:580.220137px;}
.x47{left:601.907693px;}
.x32{left:663.774644px;}
.x71{left:749.112415px;}
.x72{left:753.933168px;}
.x5a{left:756.920579px;}
.x59{left:759.702456px;}
.x8{left:760.885810px;}
.x7{left:765.345505px;}
.x52{left:850.335158px;}
.x3f{left:892.348113px;}
.x3a{left:907.731755px;}
.x2a{left:910.397530px;}
.x42{left:920.594948px;}
.x48{left:925.683245px;}
.x6a{left:928.224132px;}
.x39{left:936.631154px;}
.x40{left:942.065862px;}
.x41{left:969.318396px;}
.x29{left:981.713801px;}
.x34{left:1001.864279px;}
.x69{left:1012.168998px;}
.x3b{left:1022.923996px;}
.x64{left:1038.595232px;}
.x17{left:1098.872472px;}
.x5d{left:1105.048883px;}
.x5e{left:1108.131972px;}
.x18{left:1120.268297px;}
.x16{left:1130.739088px;}
.x5f{left:1139.968474px;}
.x9{left:1141.630776px;}
.x35{left:1142.667291px;}
.x68{left:1156.029645px;}
.x6c{left:1163.193538px;}
.x31{left:1177.610558px;}
.x21{left:1186.818717px;}
.x11{left:1196.543782px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.761338pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.005262pt;}
.ls15{letter-spacing:0.005566pt;}
.ls17{letter-spacing:0.017010pt;}
.ls14{letter-spacing:0.043560pt;}
.ls16{letter-spacing:0.046697pt;}
.lsd{letter-spacing:0.060055pt;}
.lsb{letter-spacing:0.073244pt;}
.ls7{letter-spacing:0.085405pt;}
.ls6{letter-spacing:12.469374pt;}
.ls8{letter-spacing:12.483387pt;}
.ls1a{letter-spacing:24.936326pt;}
.lsa{letter-spacing:24.939979pt;}
.ls20{letter-spacing:24.946107pt;}
.lsc{letter-spacing:24.955816pt;}
.ls9{letter-spacing:24.955821pt;}
.ls1c{letter-spacing:31.180499pt;}
.lsf{letter-spacing:37.416248pt;}
.lse{letter-spacing:43.648617pt;}
.ls13{letter-spacing:44.164476pt;}
.ls12{letter-spacing:47.699773pt;}
.ls21{letter-spacing:49.889133pt;}
.ls1f{letter-spacing:49.890960pt;}
.ls1b{letter-spacing:49.898844pt;}
.ls1d{letter-spacing:74.843693pt;}
.ls3{letter-spacing:75.776846pt;}
.ls4{letter-spacing:81.041608pt;}
.ls2{letter-spacing:81.041618pt;}
.ls1{letter-spacing:81.062247pt;}
.ls11{letter-spacing:81.116812pt;}
.ls10{letter-spacing:83.994360pt;}
.ls5{letter-spacing:112.222682pt;}
.ls19{letter-spacing:112.236985pt;}
.ls18{letter-spacing:112.239283pt;}
.ws15{word-spacing:-74.235886pt;}
.ws2f{word-spacing:-33.825222pt;}
.ws16{word-spacing:-32.478200pt;}
.ws2d{word-spacing:-31.093761pt;}
.ws2a{word-spacing:-30.042337pt;}
.ws27{word-spacing:-29.597069pt;}
.ws18{word-spacing:-27.838457pt;}
.ws1a{word-spacing:-27.277198pt;}
.ws2b{word-spacing:-25.231407pt;}
.ws2c{word-spacing:-24.246399pt;}
.ws10{word-spacing:-21.652133pt;}
.ws11{word-spacing:-21.215598pt;}
.ws23{word-spacing:-21.140764pt;}
.ws29{word-spacing:-21.026173pt;}
.ws24{word-spacing:-19.731379pt;}
.ws14{word-spacing:-19.001743pt;}
.ws1c{word-spacing:-18.945617pt;}
.ws1d{word-spacing:-18.563649pt;}
.ws2e{word-spacing:-18.321996pt;}
.ws17{word-spacing:-18.184799pt;}
.ws28{word-spacing:-16.912611pt;}
.ws26{word-spacing:-15.546880pt;}
.ws0{word-spacing:-14.840858pt;}
.ws12{word-spacing:-12.372648pt;}
.ws13{word-spacing:-10.826066pt;}
.wsc{word-spacing:-0.448706pt;}
.wsa{word-spacing:-0.447334pt;}
.wsd{word-spacing:-0.234958pt;}
.wsf{word-spacing:0.000000pt;}
.ws9{word-spacing:0.074730pt;}
.ws5{word-spacing:0.800027pt;}
.ws4{word-spacing:1.151743pt;}
.wsb{word-spacing:2.941589pt;}
.ws2{word-spacing:3.062864pt;}
.ws8{word-spacing:6.165669pt;}
.ws6{word-spacing:6.214609pt;}
.ws7{word-spacing:7.911491pt;}
.ws3{word-spacing:8.601197pt;}
.ws1{word-spacing:9.022322pt;}
.ws1e{word-spacing:101.275002pt;}
.ws1b{word-spacing:119.983642pt;}
.ws1f{word-spacing:141.973644pt;}
.ws22{word-spacing:287.227529pt;}
.ws21{word-spacing:327.076934pt;}
.ws25{word-spacing:336.833870pt;}
.ws20{word-spacing:371.865419pt;}
.wse{word-spacing:910.959449pt;}
.ws19{word-spacing:1697.258255pt;}
._1a{margin-left:-431.069104pt;}
._f{margin-left:-17.444802pt;}
._19{margin-left:-11.536972pt;}
._13{margin-left:-10.581300pt;}
._10{margin-left:-8.968848pt;}
._14{margin-left:-7.595451pt;}
._e{margin-left:-6.633010pt;}
._4{margin-left:-4.866298pt;}
._12{margin-left:-3.922578pt;}
._1{margin-left:-2.946475pt;}
._0{margin-left:-1.670809pt;}
._2{width:1.347256pt;}
._c{width:2.714669pt;}
._17{width:4.352043pt;}
._8{width:14.592586pt;}
._b{width:15.812916pt;}
._7{width:17.508068pt;}
._5{width:19.404983pt;}
._a{width:22.133387pt;}
._9{width:23.783610pt;}
._3{width:24.858078pt;}
._6{width:25.860278pt;}
._15{width:112.222682pt;}
._1b{width:337.559730pt;}
._1c{width:536.790367pt;}
._d{width:956.118331pt;}
._18{width:1308.647716pt;}
._16{width:2428.073462pt;}
._11{width:2462.651426pt;}
.fs3{font-size:28.063040pt;}
.fsa{font-size:43.653493pt;}
.fs9{font-size:49.889710pt;}
.fs18{font-size:56.125922pt;}
.fs6{font-size:62.362134pt;}
.fs1{font-size:65.667514pt;}
.fs2{font-size:65.779766pt;}
.fsc{font-size:68.598350pt;}
.fsf{font-size:74.834562pt;}
.fs15{font-size:76.393619pt;}
.fs17{font-size:81.070779pt;}
.fs1c{font-size:86.527463pt;}
.fs8{font-size:87.306986pt;}
.fs1e{font-size:90.893068pt;}
.fs1b{font-size:92.295963pt;}
.fse{font-size:93.543203pt;}
.fs19{font-size:98.064459pt;}
.fs0{font-size:98.220640pt;}
.fs14{font-size:99.779420pt;}
.fs1d{font-size:103.832951pt;}
.fsd{font-size:106.015627pt;}
.fs12{font-size:112.251844pt;}
.fs1a{font-size:121.138457pt;}
.fs13{font-size:124.724268pt;}
.fs7{font-size:130.960484pt;}
.fs11{font-size:143.432908pt;}
.fs5{font-size:149.480794pt;}
.fs16{font-size:149.669125pt;}
.fs1f{font-size:174.613973pt;}
.fs4{font-size:193.134292pt;}
.fsb{font-size:212.031254pt;}
.fs10{font-size:299.338250pt;}
.yd3{bottom:-179.646447pt;}
.yd4{bottom:-179.516071pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:9.688244pt;}
.y144{bottom:11.792626pt;}
.y1f{bottom:12.495405pt;}
.y122{bottom:13.055798pt;}
.y16b{bottom:13.980788pt;}
.y158{bottom:19.525742pt;}
.yc1{bottom:29.335642pt;}
.y17b{bottom:40.045670pt;}
.y51{bottom:51.615970pt;}
.y120{bottom:51.969020pt;}
.yd0{bottom:58.145462pt;}
.y142{bottom:58.303081pt;}
.yb6{bottom:59.171163pt;}
.y15c{bottom:61.294015pt;}
.y16a{bottom:64.601684pt;}
.yee{bottom:71.381158pt;}
.ya0{bottom:72.060246pt;}
.yb5{bottom:73.334328pt;}
.y50{bottom:74.066339pt;}
.yd1{bottom:74.908053pt;}
.yd6{bottom:75.135071pt;}
.yfa{bottom:77.310804pt;}
.y2f{bottom:77.915338pt;}
.ycd{bottom:78.361562pt;}
.y11f{bottom:79.395302pt;}
.y16{bottom:81.141726pt;}
.y141{bottom:82.624302pt;}
.y92{bottom:84.777457pt;}
.yf0{bottom:86.784847pt;}
.y131{bottom:89.670147pt;}
.yba{bottom:90.565723pt;}
.y89{bottom:92.197799pt;}
.yb8{bottom:92.976590pt;}
.y15b{bottom:93.847055pt;}
.y169{bottom:94.535509pt;}
.yed{bottom:94.954045pt;}
.y9f{bottom:100.068660pt;}
.y2e{bottom:104.107423pt;}
.ycc{bottom:104.553682pt;}
.y140{bottom:106.945500pt;}
.y11e{bottom:109.722301pt;}
.ye6{bottom:110.731293pt;}
.y105{bottom:111.581408pt;}
.y14f{bottom:112.017986pt;}
.y5d{bottom:113.729090pt;}
.ya6{bottom:113.758006pt;}
.yb9{bottom:114.886956pt;}
.ya4{bottom:118.968327pt;}
.y130{bottom:121.100663pt;}
.yec{bottom:121.645031pt;}
.y15a{bottom:123.032534pt;}
.y4f{bottom:124.147990pt;}
.y10b{bottom:124.284949pt;}
.y168{bottom:124.469346pt;}
.ya8{bottom:125.533622pt;}
.y132{bottom:126.186040pt;}
.y9e{bottom:128.077050pt;}
.yb7{bottom:128.627588pt;}
.y175{bottom:128.754385pt;}
.y1c{bottom:129.812019pt;}
.y2d{bottom:130.673685pt;}
.ycb{bottom:130.745814pt;}
.y88{bottom:130.924674pt;}
.y91{bottom:130.925441pt;}
.ye5{bottom:130.936624pt;}
.y13f{bottom:131.266733pt;}
.y104{bottom:132.160912pt;}
.ya3{bottom:139.173659pt;}
.y14e{bottom:140.080946pt;}
.y11d{bottom:142.229827pt;}
.ya7{bottom:144.242263pt;}
.yd2{bottom:144.287730pt;}
.y10a{bottom:146.735318pt;}
.yeb{bottom:148.336017pt;}
.y4e{bottom:150.340122pt;}
.y5c{bottom:150.834556pt;}
.ye4{bottom:151.141954pt;}
.y174{bottom:154.169231pt;}
.y167{bottom:154.403171pt;}
.y159{bottom:155.585570pt;}
.y9d{bottom:156.085452pt;}
.yca{bottom:156.937934pt;}
.y15{bottom:157.192365pt;}
.y80{bottom:157.279648pt;}
.ya2{bottom:159.378991pt;}
.y13e{bottom:161.948927pt;}
.y12f{bottom:162.945672pt;}
.y11c{bottom:164.034771pt;}
.yd5{bottom:164.717151pt;}
.y17a{bottom:165.720986pt;}
.y1d{bottom:165.822531pt;}
.y1b{bottom:170.171854pt;}
.ye3{bottom:171.347285pt;}
.yea{bottom:171.908897pt;}
.yb4{bottom:176.231851pt;}
.y90{bottom:177.073425pt;}
.y173{bottom:178.490499pt;}
.ycf{bottom:179.489610pt;}
.y87{bottom:182.123967pt;}
.y14d{bottom:182.175388pt;}
.y3a{bottom:182.389801pt;}
.yc9{bottom:183.130031pt;}
.y9c{bottom:184.093830pt;}
.y166{bottom:184.337008pt;}
.y4d{bottom:187.445600pt;}
.y157{bottom:187.482744pt;}
.y5b{bottom:188.314196pt;}
.y6e{bottom:188.685223pt;}
.y73{bottom:188.685246pt;}
.y7f{bottom:189.271423pt;}
.ye{bottom:193.870641pt;}
.y11b{bottom:194.361770pt;}
.ye9{bottom:195.481782pt;}
.y172{bottom:202.811720pt;}
.y2c{bottom:203.032307pt;}
.y13d{bottom:203.295046pt;}
.yb3{bottom:208.971973pt;}
.yc8{bottom:209.322116pt;}
.y66{bottom:210.456866pt;}
.y9b{bottom:212.102209pt;}
.y103{bottom:213.296826pt;}
.y4c{bottom:213.637674pt;}
.y165{bottom:214.270844pt;}
.y179{bottom:219.742163pt;}
.y86{bottom:220.850877pt;}
.y39{bottom:221.366131pt;}
.yda{bottom:221.393310pt;}
.ye8{bottom:222.172774pt;}
.y8f{bottom:223.221409pt;}
.y14c{bottom:224.269829pt;}
.y12e{bottom:225.806681pt;}
.ya1{bottom:226.755041pt;}
.y11a{bottom:226.869284pt;}
.y5a{bottom:226.916342pt;}
.yd{bottom:227.548978pt;}
.y13c{bottom:227.616302pt;}
.y2b{bottom:229.224403pt;}
.y156{bottom:229.577209pt;}
.yac{bottom:231.510588pt;}
.y42{bottom:231.967172pt;}
.y7e{bottom:233.735630pt;}
.y102{bottom:233.876330pt;}
.y65{bottom:234.123296pt;}
.yf4{bottom:234.460706pt;}
.yc7{bottom:235.514202pt;}
.y6d{bottom:239.884528pt;}
.y72{bottom:239.884552pt;}
.y9a{bottom:240.110599pt;}
.y164{bottom:244.204669pt;}
.yc{bottom:247.216375pt;}
.yb2{bottom:247.698847pt;}
.ye7{bottom:248.863766pt;}
.y3d{bottom:249.429069pt;}
.y4b{bottom:251.117301pt;}
.y171{bottom:251.454197pt;}
.y13b{bottom:251.937535pt;}
.yf3{bottom:252.795174pt;}
.y59{bottom:253.108439pt;}
.y101{bottom:255.204177pt;}
.y2a{bottom:255.416489pt;}
.yaa{bottom:256.242428pt;}
.yf9{bottom:256.942213pt;}
.y119{bottom:257.196294pt;}
.y12d{bottom:257.237209pt;}
.y38{bottom:261.090796pt;}
.y1a{bottom:261.667630pt;}
.y76{bottom:265.646414pt;}
.yce{bottom:266.347082pt;}
.y14b{bottom:266.364271pt;}
.yb{bottom:266.860503pt;}
.y85{bottom:266.998837pt;}
.y67{bottom:267.859594pt;}
.y8e{bottom:269.369381pt;}
.ybd{bottom:270.068172pt;}
.yab{bottom:270.798733pt;}
.y155{bottom:271.671650pt;}
.y163{bottom:274.138482pt;}
.y99{bottom:274.355199pt;}
.y41{bottom:274.685219pt;}
.ya9{bottom:274.951069pt;}
.yf2{bottom:275.619716pt;}
.y170{bottom:275.775430pt;}
.y64{bottom:276.498379pt;}
.yf8{bottom:277.521718pt;}
.y100{bottom:278.777062pt;}
.y7d{bottom:281.317935pt;}
.y78{bottom:282.300688pt;}
.y31{bottom:282.380060pt;}
.y13a{bottom:282.619706pt;}
.y75{bottom:285.851745pt;}
.ya{bottom:286.504631pt;}
.y3c{bottom:288.405399pt;}
.y118{bottom:289.496142pt;}
.y4a{bottom:289.719459pt;}
.y58{bottom:290.213894pt;}
.y6c{bottom:290.410358pt;}
.y71{bottom:291.083869pt;}
.y14a{bottom:294.427231pt;}
.yc6{bottom:295.756013pt;}
.y98{bottom:296.127379pt;}
.ybc{bottom:296.260262pt;}
.y12c{bottom:299.082205pt;}
.y16f{bottom:300.096663pt;}
.yb1{bottom:300.457202pt;}
.y37{bottom:303.060509pt;}
.y77{bottom:304.751057pt;}
.y74{bottom:306.057072pt;}
.y9{bottom:306.148759pt;}
.y29{bottom:307.800671pt;}
.y117{bottom:310.539621pt;}
.y84{bottom:313.146810pt;}
.y154{bottom:313.766091pt;}
.y19{bottom:313.813892pt;}
.y8d{bottom:315.517353pt;}
.y40{bottom:317.403278pt;}
.y63{bottom:318.873450pt;}
.y7c{bottom:319.545920pt;}
.ybb{bottom:322.452356pt;}
.yd7{bottom:322.755902pt;}
.y97{bottom:324.135758pt;}
.y8{bottom:325.792887pt;}
.yc5{bottom:325.876924pt;}
.y109{bottom:325.909676pt;}
.y6b{bottom:326.443188pt;}
.y49{bottom:327.199087pt;}
.y57{bottom:327.319360pt;}
.y126{bottom:327.703009pt;}
.y3b{bottom:328.130076pt;}
.y139{bottom:328.642950pt;}
.ydd{bottom:329.528330pt;}
.y36{bottom:331.123458pt;}
.y28{bottom:333.992756pt;}
.y162{bottom:334.006109pt;}
.y149{bottom:336.521673pt;}
.yb0{bottom:339.184088pt;}
.y30{bottom:339.628488pt;}
.ye2{bottom:339.932977pt;}
.y116{bottom:341.143531pt;}
.y70{bottom:342.283162pt;}
.y62{bottom:342.539880pt;}
.y16e{bottom:348.739128pt;}
.y3f{bottom:349.207967pt;}
.ydc{bottom:349.733660pt;}
.y96{bottom:352.144159pt;}
.y125{bottom:353.895103pt;}
.y110{bottom:354.278769pt;}
.y48{bottom:355.262054pt;}
.y153{bottom:355.860533pt;}
.y7{bottom:355.960655pt;}
.yc4{bottom:355.997824pt;}
.y7b{bottom:357.773910pt;}
.y83{bottom:359.294782pt;}
.y12b{bottom:361.943250pt;}
.y161{bottom:363.939934pt;}
.yff{bottom:364.656393pt;}
.y56{bottom:364.799011pt;}
.y8c{bottom:365.407042pt;}
.y18{bottom:365.960140pt;}
.y61{bottom:366.206304pt;}
.ye1{bottom:366.623963pt;}
.ydb{bottom:369.938990pt;}
.y35{bottom:370.099789pt;}
.y115{bottom:373.166480pt;}
.y6a{bottom:377.642493pt;}
.y148{bottom:378.616114pt;}
.y95{bottom:380.152561pt;}
.yc3{bottom:382.189915pt;}
.y124{bottom:382.236545pt;}
.y47{bottom:383.325009pt;}
.y138{bottom:384.145242pt;}
.y27{bottom:386.376938pt;}
.yfe{bottom:387.106762pt;}
.yf7{bottom:387.902709pt;}
.y60{bottom:389.872731pt;}
.yaf{bottom:391.942459pt;}
.y6f{bottom:392.808961pt;}
.ye0{bottom:393.314955pt;}
.y12a{bottom:393.373766pt;}
.y160{bottom:393.873747pt;}
.y6{bottom:395.284107pt;}
.y106{bottom:397.336167pt;}
.y152{bottom:397.954981pt;}
.y34{bottom:398.162750pt;}
.y114{bottom:401.555287pt;}
.y7a{bottom:402.238115pt;}
.y8b{bottom:402.450143pt;}
.y55{bottom:403.401169pt;}
.y82{bottom:405.442766pt;}
.y123{bottom:408.428639pt;}
.y178{bottom:410.944470pt;}
.y26{bottom:412.569029pt;}
.y5f{bottom:413.539159pt;}
.y94{bottom:414.397167pt;}
.y5{bottom:414.928235pt;}
.y16d{bottom:417.399844pt;}
.yd9{bottom:417.547350pt;}
.y137{bottom:417.820790pt;}
.y17{bottom:418.106395pt;}
.yfd{bottom:418.911444pt;}
.ydf{bottom:420.005945pt;}
.y147{bottom:420.710555pt;}
.y46{bottom:422.301339pt;}
.y15f{bottom:423.807560pt;}
.y129{bottom:424.804282pt;}
.y69{bottom:428.841801pt;}
.yf6{bottom:429.810059pt;}
.y108{bottom:433.634155pt;}
.y113{bottom:433.855129pt;}
.y79{bottom:434.229888pt;}
.y4{bottom:434.572363pt;}
.y5e{bottom:437.205590pt;}
.y33{bottom:437.887428pt;}
.y25{bottom:438.761131pt;}
.y151{bottom:440.049422pt;}
.yfc{bottom:440.239290pt;}
.y54{bottom:440.880810pt;}
.y93{bottom:442.405563pt;}
.yae{bottom:444.700822pt;}
.yde{bottom:446.696932pt;}
.y22{bottom:447.076771pt;}
.y146{bottom:448.773520pt;}
.y10d{bottom:450.259162pt;}
.y45{bottom:450.364304pt;}
.y107{bottom:450.471934pt;}
.y10f{bottom:450.723193pt;}
.y81{bottom:451.590742pt;}
.y8a{bottom:451.591509pt;}
.yf5{bottom:453.382944pt;}
.y15e{bottom:453.741374pt;}
.y3{bottom:454.216491pt;}
.y112{bottom:454.898607pt;}
.y16c{bottom:456.126727pt;}
.y177{bottom:457.248355pt;}
.ybf{bottom:457.973434pt;}
.y136{bottom:458.231459pt;}
.yc2{bottom:460.766202pt;}
.yfb{bottom:463.812175pt;}
.y10e{bottom:463.819239pt;}
.y24{bottom:464.953221pt;}
.y128{bottom:466.649263pt;}
.y10c{bottom:471.961183pt;}
.y21{bottom:473.268861pt;}
.y44{bottom:478.427262pt;}
.y2{bottom:480.876379pt;}
.y111{bottom:485.502513pt;}
.y150{bottom:490.562746pt;}
.y145{bottom:490.867959pt;}
.y23{bottom:491.145316pt;}
.y20{bottom:499.460956pt;}
.y176{bottom:503.552241pt;}
.y135{bottom:508.744778pt;}
.y127{bottom:514.730464pt;}
.y15d{bottom:521.092480pt;}
.y12{bottom:537.563720pt;}
.yc0{bottom:538.224377pt;}
.y143{bottom:538.256983pt;}
.yd8{bottom:538.262786pt;}
.yf1{bottom:543.692795pt;}
.y121{bottom:545.785873pt;}
.y14{bottom:547.385784pt;}
.ya5{bottom:552.497143pt;}
.ybe{bottom:554.148417pt;}
.yad{bottom:554.752902pt;}
.y10{bottom:557.207848pt;}
.y3e{bottom:558.265606pt;}
.y53{bottom:558.862910pt;}
.y1e{bottom:560.041553pt;}
.y43{bottom:560.042705pt;}
.y52{bottom:560.046391pt;}
.y32{bottom:560.046482pt;}
.y68{bottom:564.946679pt;}
.y13{bottom:567.029912pt;}
.y133{bottom:569.357326pt;}
.yef{bottom:574.553148pt;}
.y11{bottom:576.851976pt;}
.yf{bottom:610.995341pt;}
.y1{bottom:665.437639pt;}
.h7{height:22.253114pt;}
.h41{height:31.333318pt;}
.h3a{height:31.823567pt;}
.h10{height:38.132861pt;}
.h39{height:38.175491pt;}
.h2f{height:40.916016pt;}
.hf{height:43.580415pt;}
.h28{height:45.462239pt;}
.h4{height:45.691507pt;}
.h30{height:49.082776pt;}
.h18{height:50.008465pt;}
.h3{height:52.072286pt;}
.h6{height:52.072754pt;}
.h5{height:52.161299pt;}
.h31{height:54.475516pt;}
.h17{height:54.554688pt;}
.hb{height:54.597317pt;}
.h2a{height:58.190452pt;}
.h19{height:59.990061pt;}
.h33{height:60.510759pt;}
.h23{height:61.771403pt;}
.h2c{height:62.666636pt;}
.h16{height:63.647134pt;}
.h1d{height:65.370621pt;}
.h38{height:65.443702pt;}
.h1e{height:65.516782pt;}
.h24{height:66.881718pt;}
.h29{height:67.142826pt;}
.h14{height:68.193360pt;}
.h2b{height:70.595883pt;}
.h48{height:70.818176pt;}
.h37{height:70.897346pt;}
.h43{height:70.976517pt;}
.h44{height:75.638449pt;}
.h3d{height:75.753780pt;}
.hd{height:76.265722pt;}
.h35{height:76.350983pt;}
.he{height:76.436243pt;}
.h13{height:77.285806pt;}
.h2{height:77.885898pt;}
.h3f{height:79.575816pt;}
.h3c{height:80.713902pt;}
.h2d{height:81.804627pt;}
.h27{height:81.832032pt;}
.h42{height:81.895978pt;}
.h25{height:85.339903pt;}
.h46{height:87.258272pt;}
.h22{height:87.355713pt;}
.h45{height:90.766139pt;}
.h3e{height:90.904531pt;}
.h32{height:93.999957pt;}
.h20{height:98.055932pt;}
.h47{height:98.165553pt;}
.h1f{height:98.275174pt;}
.h15{height:99.563220pt;}
.h34{height:100.851263pt;}
.h3b{height:105.818701pt;}
.h21{height:109.072834pt;}
.h40{height:113.786537pt;}
.hc{height:114.398587pt;}
.h12{height:114.526478pt;}
.h1c{height:114.654369pt;}
.h2e{height:115.316027pt;}
.h49{height:121.021519pt;}
.h1b{height:125.433759pt;}
.ha{height:130.576729pt;}
.h26{height:130.741242pt;}
.h36{height:130.887404pt;}
.h4a{height:141.191767pt;}
.h9{height:146.831100pt;}
.h11{height:185.423816pt;}
.h1a{height:227.573074pt;}
.h8{height:631.416620pt;}
.h0{height:793.700840pt;}
.h1{height:794.000000pt;}
.w2{width:1122.518436pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x51{left:29.232251pt;}
.x67{left:30.401541pt;}
.x14{left:31.862370pt;}
.x3e{left:33.118960pt;}
.x6f{left:36.150720pt;}
.x25{left:40.796252pt;}
.x55{left:45.142665pt;}
.x10{left:47.557832pt;}
.x6b{left:48.875145pt;}
.x4c{left:49.973469pt;}
.x4a{left:50.903860pt;}
.x74{left:51.844663pt;}
.x75{left:54.027026pt;}
.x1{left:55.704901pt;}
.x23{left:58.508153pt;}
.x15{left:59.767293pt;}
.x28{left:60.682100pt;}
.x70{left:63.046674pt;}
.x2f{left:66.538382pt;}
.x5c{left:67.463726pt;}
.x20{left:68.831500pt;}
.x46{left:70.765064pt;}
.x1c{left:72.132654pt;}
.x2e{left:73.519179pt;}
.xc{left:75.228894pt;}
.x2b{left:77.725861pt;}
.x54{left:81.435198pt;}
.x6d{left:83.788754pt;}
.x4e{left:87.931972pt;}
.x4f{left:88.904856pt;}
.x27{left:90.668744pt;}
.x24{left:96.922174pt;}
.x6e{left:98.677572pt;}
.x3{left:100.550106pt;}
.x1f{left:102.751409pt;}
.x65{left:106.518242pt;}
.x4b{left:107.784813pt;}
.x12{left:111.229429pt;}
.x1e{left:114.227097pt;}
.x13{left:115.394294pt;}
.x2c{left:116.702197pt;}
.x2{left:121.033553pt;}
.x63{left:125.716562pt;}
.x62{left:129.577909pt;}
.x30{left:132.763188pt;}
.x66{left:142.653385pt;}
.x1d{left:144.845850pt;}
.x19{left:158.593708pt;}
.x77{left:161.495481pt;}
.xb{left:182.409094pt;}
.xd{left:188.678611pt;}
.x33{left:232.025812pt;}
.x37{left:236.472801pt;}
.x6{left:241.787037pt;}
.x5{left:246.136714pt;}
.x4d{left:253.618498pt;}
.x57{left:257.030261pt;}
.x22{left:266.305806pt;}
.x26{left:269.011602pt;}
.x50{left:270.719387pt;}
.x1b{left:272.133840pt;}
.xa{left:275.284036pt;}
.x3d{left:276.909980pt;}
.x44{left:278.985823pt;}
.x76{left:290.738963pt;}
.x53{left:298.401929pt;}
.x43{left:317.600067pt;}
.xe{left:321.310566pt;}
.x56{left:329.755623pt;}
.x36{left:341.277462pt;}
.x4{left:345.339327pt;}
.x38{left:388.076021pt;}
.x1a{left:394.254784pt;}
.x49{left:404.823850pt;}
.x73{left:418.388299pt;}
.x5b{left:438.732355pt;}
.x78{left:455.473104pt;}
.xf{left:458.154005pt;}
.x3c{left:467.547263pt;}
.x58{left:470.688935pt;}
.x45{left:484.135014pt;}
.x61{left:497.858272pt;}
.x2d{left:503.822008pt;}
.x60{left:515.751233pt;}
.x47{left:535.029061pt;}
.x32{left:590.021905pt;}
.x71{left:665.877702pt;}
.x72{left:670.162816pt;}
.x5a{left:672.818292pt;}
.x59{left:675.291072pt;}
.x8{left:676.342942pt;}
.x7{left:680.307116pt;}
.x52{left:755.853474pt;}
.x3f{left:793.198322pt;}
.x3a{left:806.872671pt;}
.x2a{left:809.242249pt;}
.x42{left:818.306621pt;}
.x48{left:822.829551pt;}
.x6a{left:825.088117pt;}
.x39{left:832.561026pt;}
.x40{left:837.391878pt;}
.x41{left:861.616352pt;}
.x29{left:872.634490pt;}
.x34{left:890.546026pt;}
.x69{left:899.705776pt;}
.x3b{left:909.265774pt;}
.x64{left:923.195762pt;}
.x17{left:976.775531pt;}
.x5d{left:982.265674pt;}
.x5e{left:985.006197pt;}
.x18{left:995.794042pt;}
.x16{left:1005.101411pt;}
.x5f{left:1013.305311pt;}
.x9{left:1014.782912pt;}
.x35{left:1015.704259pt;}
.x68{left:1027.581907pt;}
.x6c{left:1033.949811pt;}
.x31{left:1046.764940pt;}
.x21{left:1054.949970pt;}
.x11{left:1063.594473pt;}
}




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