
    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_9749bc002526d16cf6053e9f.woff')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_84d957912929cc02522e546e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.976651;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_2e2fabdaeaea8ad896de7a14.woff')format("woff");}.ff3{font-family:ff3;line-height:0.710938;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_c2bd3a9b829ee13a4567cb55.woff')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_4e9dc459bffb61d4c119babb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.012695;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_7b84e3a06032097c23afc34f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.032227;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_51b1a35a343a849bfd37b363.woff')format("woff");}.ff7{font-family:ff7;line-height:0.964844;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_2e2fabdaeaea8ad896de7a14.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_d1c6deea50cedf699d17ae75.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-40.398572px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.022187px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000017px;}
.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;}
}
.ws3{word-spacing:-20.876953px;}
.ws9{word-spacing:-19.385743px;}
.wsa{word-spacing:-17.148926px;}
.ws8{word-spacing:-16.946777px;}
.ws7{word-spacing:-16.209961px;}
.ws2{word-spacing:-15.626953px;}
.wsb{word-spacing:-15.473145px;}
.ws1{word-spacing:-15.180470px;}
.ws4{word-spacing:-14.613867px;}
.ws0{word-spacing:-14.287501px;}
.ws5{word-spacing:-0.066000px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-6.689964px;}
._3{margin-left:-5.451464px;}
._9{margin-left:-3.478420px;}
._13{margin-left:-2.433227px;}
._1{margin-left:-1.335938px;}
._b{width:1.650698px;}
._8{width:4.461183px;}
._15{width:5.478946px;}
._7{width:8.836520px;}
._14{width:9.843982px;}
._6{width:12.751296px;}
._a{width:14.165372px;}
._5{width:17.978379px;}
._c{width:22.310716px;}
._12{width:23.375042px;}
._4{width:26.951018px;}
._2{width:31.409258px;}
._d{width:35.784776px;}
._e{width:40.438682px;}
._11{width:53.387711px;}
._10{width:54.835883px;}
._f{width:57.775091px;}
._0{width:108.000022px;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(31,31,31);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:54.000000px;}
.fs3{font-size:57.600001px;}
.fs8{font-size:58.800000px;}
.fs5{font-size:59.999999px;}
.fs4{font-size:61.200002px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:66.000002px;}
.fs9{font-size:68.999999px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:78.000003px;}
.fs7{font-size:83.999997px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.945706px;}
.y29{bottom:112.813562px;}
.y142{bottom:117.580812px;}
.ye2{bottom:120.286372px;}
.y9e{bottom:129.560307px;}
.y187{bottom:131.624273px;}
.y126{bottom:131.679933px;}
.yb9{bottom:134.930414px;}
.y28{bottom:135.587311px;}
.ybf{bottom:140.298336px;}
.y141{bottom:141.390382px;}
.ye1{bottom:144.094483px;}
.y9d{bottom:153.369507px;}
.y105{bottom:155.489495px;}
.y125{bottom:155.489504px;}
.y27{bottom:158.360956px;}
.yb8{bottom:158.739255px;}
.y186{bottom:159.977789px;}
.ybe{bottom:162.657711px;}
.y140{bottom:165.199956px;}
.ye0{bottom:167.904051px;}
.y76{bottom:175.761104px;}
.y9c{bottom:177.178709px;}
.y104{bottom:179.298328px;}
.y124{bottom:179.298345px;}
.y26{bottom:181.134700px;}
.yb7{bottom:182.548087px;}
.ybd{bottom:185.499761px;}
.y13f{bottom:189.008062px;}
.y75{bottom:199.569576px;}
.y9b{bottom:200.986812px;}
.y185{bottom:202.691897px;}
.y103{bottom:203.107906px;}
.y123{bottom:203.107915px;}
.y25{bottom:203.908352px;}
.yb6{bottom:206.356927px;}
.y160{bottom:209.489508px;}
.ydf{bottom:209.712885px;}
.ybc{bottom:219.073267px;}
.y74{bottom:223.378777px;}
.y9a{bottom:224.796022px;}
.y52{bottom:226.303348px;}
.y102{bottom:226.916747px;}
.y122{bottom:226.916751px;}
.yb5{bottom:230.165766px;}
.y13e{bottom:230.816165px;}
.y15f{bottom:233.297620px;}
.yde{bottom:233.521725px;}
.y73{bottom:247.187617px;}
.y24{bottom:247.333922px;}
.y184{bottom:248.189211px;}
.y99{bottom:248.605222px;}
.y51{bottom:249.076907px;}
.y101{bottom:250.724850px;}
.y121{bottom:250.724856px;}
.yb4{bottom:253.974606px;}
.y15e{bottom:257.107182px;}
.ydd{bottom:257.330557px;}
.y183{bottom:270.548588px;}
.y72{bottom:270.996456px;}
.y13d{bottom:271.658208px;}
.y50{bottom:271.850656px;}
.y98{bottom:272.414061px;}
.y100{bottom:274.534420px;}
.yb3{bottom:277.783446px;}
.y15d{bottom:280.916752px;}
.ydc{bottom:281.139398px;}
.y19d{bottom:291.087164px;}
.y13c{bottom:292.362311px;}
.y120{bottom:292.534416px;}
.y23{bottom:292.571955px;}
.y182{bottom:292.907961px;}
.y4f{bottom:294.624395px;}
.y97{bottom:296.222541px;}
.yff{bottom:298.342522px;}
.yb2{bottom:301.592648px;}
.y15c{bottom:304.724863px;}
.ydb{bottom:304.948237px;}
.y71{bottom:312.805302px;}
.y22{bottom:313.959407px;}
.y13b{bottom:315.263681px;}
.y11f{bottom:316.342528px;}
.y4e{bottom:317.397955px;}
.y96{bottom:320.031735px;}
.yfe{bottom:322.151361px;}
.yb1{bottom:325.401120px;}
.y15b{bottom:328.534431px;}
.y21{bottom:335.346947px;}
.y181{bottom:335.545891px;}
.y70{bottom:336.614487px;}
.y19c{bottom:338.942144px;}
.y11e{bottom:340.151376px;}
.y4d{bottom:340.171697px;}
.y95{bottom:343.840567px;}
.yda{bottom:346.757076px;}
.yb0{bottom:349.209952px;}
.y20{bottom:356.734502px;}
.y6f{bottom:360.422964px;}
.y4c{bottom:362.945431px;}
.yfd{bottom:363.960936px;}
.y11d{bottom:363.960947px;}
.y94{bottom:367.649407px;}
.y15a{bottom:370.342529px;}
.yaf{bottom:373.019161px;}
.y1f{bottom:378.640959px;}
.y180{bottom:379.544680px;}
.y6e{bottom:384.231811px;}
.y4b{bottom:385.719170px;}
.y19b{bottom:386.797124px;}
.yfc{bottom:387.769042px;}
.y11c{bottom:387.769779px;}
.yd9{bottom:388.565916px;}
.y93{bottom:391.458246px;}
.y159{bottom:394.152099px;}
.yae{bottom:396.827631px;}
.y17f{bottom:401.904055px;}
.y1e{bottom:401.972724px;}
.y6d{bottom:408.041007px;}
.y4a{bottom:408.492911px;}
.y11b{bottom:411.577882px;}
.y92{bottom:415.267086px;}
.y158{bottom:417.961670px;}
.yad{bottom:420.636471px;}
.y17e{bottom:424.263430px;}
.y1d{bottom:425.045008px;}
.yfb{bottom:429.577881px;}
.yd8{bottom:430.374753px;}
.y49{bottom:431.266472px;}
.y6c{bottom:431.849477px;}
.y19a{bottom:434.652100px;}
.y11a{bottom:435.387456px;}
.y91{bottom:439.075932px;}
.y157{bottom:441.769776px;}
.yac{bottom:444.445668px;}
.y17d{bottom:446.622805px;}
.y1c{bottom:447.404665px;}
.y48{bottom:454.040222px;}
.yd7{bottom:454.184324px;}
.y6b{bottom:455.658687px;}
.y119{bottom:459.195561px;}
.y90{bottom:462.885134px;}
.y199{bottom:463.007084px;}
.y156{bottom:465.577881px;}
.yab{bottom:468.254878px;}
.y17c{bottom:468.982180px;}
.y1b{bottom:469.764310px;}
.yfa{bottom:471.387456px;}
.y47{bottom:476.813954px;}
.yd6{bottom:477.992427px;}
.y6a{bottom:479.467535px;}
.y8f{bottom:486.693606px;}
.y17b{bottom:491.341555px;}
.yaa{bottom:492.062988px;}
.y1a{bottom:492.123966px;}
.y46{bottom:499.587514px;}
.y118{bottom:501.005131px;}
.yd5{bottom:501.801268px;}
.y69{bottom:503.276368px;}
.y155{bottom:507.387460px;}
.y8e{bottom:510.502447px;}
.y198{bottom:510.860594px;}
.yf9{bottom:513.195553px;}
.y17a{bottom:513.700930px;}
.y19{bottom:514.483611px;}
.ya9{bottom:515.872198px;}
.y45{bottom:522.361262px;}
.y117{bottom:524.813972px;}
.yd4{bottom:525.610108px;}
.y68{bottom:527.085209px;}
.y154{bottom:531.195553px;}
.y8d{bottom:534.311283px;}
.y179{bottom:536.061771px;}
.y18{bottom:536.843155px;}
.yf8{bottom:537.005131px;}
.ya8{bottom:539.681400px;}
.y44{bottom:545.135191px;}
.y116{bottom:548.622804px;}
.yd3{bottom:549.419676px;}
.y67{bottom:550.894041px;}
.y153{bottom:555.005121px;}
.y8c{bottom:558.120486px;}
.y197{bottom:558.714104px;}
.y17{bottom:559.202811px;}
.yf7{bottom:560.813972px;}
.ya7{bottom:563.490232px;}
.y43{bottom:567.908930px;}
.y13a{bottom:572.432368px;}
.y115{bottom:572.432375px;}
.y66{bottom:574.702881px;}
.y178{bottom:577.921135px;}
.y152{bottom:578.813226px;}
.y16{bottom:581.562458px;}
.yf6{bottom:584.622804px;}
.ya6{bottom:587.298708px;}
.y42{bottom:590.682490px;}
.yd2{bottom:591.227787px;}
.y139{bottom:596.240478px;}
.y114{bottom:596.240481px;}
.y65{bottom:598.511720px;}
.y177{bottom:600.280510px;}
.y8b{bottom:602.258791px;}
.y151{bottom:602.622793px;}
.y15{bottom:603.922125px;}
.y196{bottom:606.570563px;}
.yf5{bottom:608.432375px;}
.ya5{bottom:611.107911px;}
.y41{bottom:613.456232px;}
.yd1{bottom:615.037357px;}
.y113{bottom:620.048586px;}
.y138{bottom:620.048590px;}
.y176{bottom:622.641358px;}
.y14{bottom:626.281774px;}
.y150{bottom:626.432361px;}
.yf4{bottom:632.240481px;}
.ya4{bottom:634.916751px;}
.y195{bottom:634.924079px;}
.y40{bottom:636.875064px;}
.yd0{bottom:638.846197px;}
.y64{bottom:640.643184px;}
.y137{bottom:643.858152px;}
.y175{bottom:645.000730px;}
.y13{bottom:648.641424px;}
.y8a{bottom:649.205193px;}
.y14f{bottom:650.240473px;}
.yf3{bottom:656.048586px;}
.ya3{bottom:657.758062px;}
.y3f{bottom:661.074102px;}
.y112{bottom:661.858161px;}
.ycf{bottom:662.655036px;}
.y174{bottom:667.360105px;}
.y136{bottom:667.666993px;}
.y12{bottom:671.001065px;}
.y89{bottom:673.014403px;}
.y14e{bottom:674.048583px;}
.ya2{bottom:678.461066px;}
.y194{bottom:682.779054px;}
.y3e{bottom:683.847644px;}
.y111{bottom:685.666267px;}
.y173{bottom:689.719480px;}
.y135{bottom:691.476562px;}
.y63{bottom:692.165032px;}
.y11{bottom:693.360672px;}
.y88{bottom:696.823251px;}
.y14d{bottom:697.858154px;}
.yf2{bottom:697.858158px;}
.ya1{bottom:700.132313px;}
.yce{bottom:704.463139px;}
.y3d{bottom:706.621393px;}
.y193{bottom:711.134033px;}
.y172{bottom:712.078855px;}
.y134{bottom:715.285401px;}
.y10{bottom:715.720279px;}
.y62{bottom:715.973503px;}
.y87{bottom:720.632084px;}
.yf1{bottom:721.666999px;}
.y14c{bottom:721.667724px;}
.y110{bottom:727.476561px;}
.ycd{bottom:728.272710px;}
.y3c{bottom:729.395132px;}
.y171{bottom:734.438230px;}
.yf{bottom:738.079926px;}
.y192{bottom:739.487549px;}
.y61{bottom:739.782344px;}
.y86{bottom:744.440925px;}
.yf0{bottom:745.476570px;}
.y14b{bottom:745.477295px;}
.ycc{bottom:752.081550px;}
.y3b{bottom:752.168692px;}
.y170{bottom:756.797605px;}
.y133{bottom:757.093504px;}
.ye{bottom:761.737149px;}
.y60{bottom:763.591365px;}
.y85{bottom:768.249757px;}
.yef{bottom:769.285402px;}
.y3a{bottom:774.942440px;}
.ycb{bottom:775.890382px;}
.y16f{bottom:779.156980px;}
.y132{bottom:780.903075px;}
.y191{bottom:787.342525px;}
.y5f{bottom:787.400017px;}
.y84{bottom:792.058597px;}
.y14a{bottom:793.093506px;}
.yee{bottom:793.093513px;}
.y39{bottom:797.716180px;}
.yca{bottom:799.699223px;}
.y16e{bottom:801.517821px;}
.y131{bottom:804.711178px;}
.y10f{bottom:811.093502px;}
.y5e{bottom:811.209222px;}
.yd{bottom:814.361384px;}
.y190{bottom:815.697509px;}
.y83{bottom:815.867436px;}
.yed{bottom:816.903081px;}
.y38{bottom:820.489922px;}
.yc9{bottom:823.508062px;}
.y130{bottom:828.520018px;}
.yc{bottom:834.517271px;}
.y149{bottom:834.903069px;}
.y10e{bottom:834.903073px;}
.y5d{bottom:835.017876px;}
.y37{bottom:843.263672px;}
.y16d{bottom:843.377191px;}
.y12f{bottom:852.329586px;}
.yb{bottom:853.960421px;}
.y82{bottom:857.676264px;}
.y148{bottom:858.711174px;}
.yec{bottom:858.711176px;}
.y10d{bottom:858.711183px;}
.y18f{bottom:863.552485px;}
.yc8{bottom:865.316900px;}
.y16c{bottom:865.736566px;}
.y36{bottom:866.037237px;}
.ya{bottom:873.663074px;}
.y5c{bottom:876.826898px;}
.y81{bottom:881.485100px;}
.y147{bottom:882.519286px;}
.y10c{bottom:882.520024px;}
.yeb{bottom:882.520026px;}
.y16b{bottom:888.097414px;}
.y35{bottom:888.810968px;}
.y18e{bottom:891.907469px;}
.y12e{bottom:894.138434px;}
.y5b{bottom:900.635747px;}
.yc7{bottom:903.832757px;}
.y80{bottom:905.293947px;}
.y146{bottom:906.328857px;}
.yea{bottom:906.329595px;}
.y9{bottom:907.551713px;}
.y16a{bottom:910.456789px;}
.y34{bottom:911.584717px;}
.y12d{bottom:917.946537px;}
.y5a{bottom:924.444579px;}
.y7f{bottom:929.102776px;}
.yc6{bottom:929.928960px;}
.y8{bottom:929.986402px;}
.y10b{bottom:930.138427px;}
.ye9{bottom:930.138428px;}
.y169{bottom:932.816161px;}
.y33{bottom:934.358276px;}
.y18d{bottom:939.760990px;}
.y12c{bottom:941.756107px;}
.y59{bottom:948.253420px;}
.y7e{bottom:952.911986px;}
.yc5{bottom:953.737793px;}
.ye8{bottom:953.946531px;}
.y10a{bottom:953.946538px;}
.y168{bottom:955.175536px;}
.y32{bottom:957.132016px;}
.y7{bottom:961.095472px;}
.y12b{bottom:965.564218px;}
.y18c{bottom:968.115974px;}
.y58{bottom:972.062441px;}
.y7d{bottom:976.720457px;}
.y167{bottom:977.534911px;}
.yc4{bottom:977.546634px;}
.ye7{bottom:977.756101px;}
.y109{bottom:977.756106px;}
.y31{bottom:979.905944px;}
.y12a{bottom:989.373786px;}
.y6{bottom:992.204543px;}
.y57{bottom:995.871093px;}
.y166{bottom:999.894286px;}
.y7c{bottom:1000.529667px;}
.yc3{bottom:1001.356204px;}
.y145{bottom:1001.564211px;}
.ye6{bottom:1001.564212px;}
.y30{bottom:1002.679594px;}
.y18b{bottom:1015.970947px;}
.y108{bottom:1019.564208px;}
.y56{bottom:1019.680298px;}
.y165{bottom:1022.253661px;}
.y7b{bottom:1024.338500px;}
.yc2{bottom:1025.164306px;}
.ye5{bottom:1025.373780px;}
.y144{bottom:1025.373781px;}
.y2f{bottom:1025.453246px;}
.y5{bottom:1027.465783px;}
.y129{bottom:1031.182617px;}
.ybb{bottom:1033.768800px;}
.y107{bottom:1043.373779px;}
.y55{bottom:1043.488952px;}
.y18a{bottom:1044.324462px;}
.y164{bottom:1044.613036px;}
.y7a{bottom:1048.147341px;}
.y2e{bottom:1048.226990px;}
.yc1{bottom:1048.973145px;}
.y143{bottom:1049.183349px;}
.y128{bottom:1054.991456px;}
.y163{bottom:1066.973879px;}
.ye4{bottom:1067.182620px;}
.y2d{bottom:1071.000736px;}
.y79{bottom:1071.956177px;}
.y4{bottom:1074.129381px;}
.y54{bottom:1085.620422px;}
.y162{bottom:1089.333252px;}
.ye3{bottom:1090.991452px;}
.yba{bottom:1090.991456px;}
.y189{bottom:1092.180908px;}
.yc0{bottom:1093.111817px;}
.y2c{bottom:1093.774381px;}
.y78{bottom:1095.765380px;}
.y127{bottom:1096.801026px;}
.ya0{bottom:1114.800293px;}
.y106{bottom:1114.801026px;}
.y2b{bottom:1116.548035px;}
.y3{bottom:1120.792969px;}
.y161{bottom:1133.471191px;}
.y53{bottom:1136.471191px;}
.y77{bottom:1137.896484px;}
.y9f{bottom:1138.609131px;}
.y2a{bottom:1139.321777px;}
.y188{bottom:1140.034424px;}
.y1{bottom:1155.000000px;}
.h2{height:43.989259px;}
.ha{height:48.134764px;}
.h8{height:49.097462px;}
.h9{height:50.541504px;}
.h12{height:51.187500px;}
.hf{height:52.142579px;}
.h10{height:52.948243px;}
.h14{height:54.512694px;}
.hd{height:55.354979px;}
.he{height:57.761719px;}
.h11{height:61.623049px;}
.h13{height:63.984377px;}
.hc{height:66.363279px;}
.hb{height:67.388669px;}
.h7{height:77.015627px;}
.h5{height:84.231563px;}
.h6{height:84.231581px;}
.h4{height:102.375000px;}
.h1{height:108.000000px;}
.h3{height:109.700284px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:86.625000px;}
.x2{left:108.000000px;}
.x11{left:114.352628px;}
.xe{left:131.625000px;}
.x9{left:139.388092px;}
.xd{left:156.018459px;}
.x12{left:158.072532px;}
.xa{left:249.757422px;}
.x7{left:270.736959px;}
.x6{left:341.976701px;}
.x5{left:359.853660px;}
.x4{left:388.021905px;}
.x3{left:393.052466px;}
.x14{left:396.755246px;}
.x13{left:398.439990px;}
.xf{left:413.598386px;}
.xb{left:446.456700px;}
.xc{left:695.081700px;}
.x8{left:718.706700px;}
.x10{left:789.750000px;}
@media print{
.v2{vertical-align:-35.909842pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.797500pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000015pt;}
.ws3{word-spacing:-18.557291pt;}
.ws9{word-spacing:-17.231772pt;}
.wsa{word-spacing:-15.243489pt;}
.ws8{word-spacing:-15.063802pt;}
.ws7{word-spacing:-14.408855pt;}
.ws2{word-spacing:-13.890625pt;}
.wsb{word-spacing:-13.753906pt;}
.ws1{word-spacing:-13.493751pt;}
.ws4{word-spacing:-12.990104pt;}
.ws0{word-spacing:-12.700000pt;}
.ws5{word-spacing:-0.058667pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-5.946635pt;}
._3{margin-left:-4.845746pt;}
._9{margin-left:-3.091929pt;}
._13{margin-left:-2.162869pt;}
._1{margin-left:-1.187501pt;}
._b{width:1.467287pt;}
._8{width:3.965496pt;}
._15{width:4.870174pt;}
._7{width:7.854684pt;}
._14{width:8.750206pt;}
._6{width:11.334485pt;}
._a{width:12.591442pt;}
._5{width:15.980781pt;}
._c{width:19.831747pt;}
._12{width:20.777815pt;}
._4{width:23.956461pt;}
._2{width:27.919340pt;}
._d{width:31.808690pt;}
._e{width:35.945495pt;}
._11{width:47.455743pt;}
._10{width:48.743007pt;}
._f{width:51.355637pt;}
._0{width:96.000019pt;}
.fsc{font-size:48.000000pt;}
.fs3{font-size:51.200001pt;}
.fs8{font-size:52.266666pt;}
.fs5{font-size:53.333332pt;}
.fs4{font-size:54.400002pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:58.666668pt;}
.fs9{font-size:61.333332pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:69.333336pt;}
.fs7{font-size:74.666664pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.840628pt;}
.y29{bottom:100.278722pt;}
.y142{bottom:104.516278pt;}
.ye2{bottom:106.921219pt;}
.y9e{bottom:115.164717pt;}
.y187{bottom:116.999354pt;}
.y126{bottom:117.048830pt;}
.yb9{bottom:119.938146pt;}
.y28{bottom:120.522054pt;}
.ybf{bottom:124.709632pt;}
.y141{bottom:125.680340pt;}
.ye1{bottom:128.083985pt;}
.y9d{bottom:136.328451pt;}
.y105{bottom:138.212884pt;}
.y125{bottom:138.212893pt;}
.y27{bottom:140.765294pt;}
.yb8{bottom:141.101560pt;}
.y186{bottom:142.202479pt;}
.ybe{bottom:144.584632pt;}
.y140{bottom:146.844406pt;}
.ye0{bottom:149.248046pt;}
.y76{bottom:156.232093pt;}
.y9c{bottom:157.492186pt;}
.y104{bottom:159.376291pt;}
.y124{bottom:159.376307pt;}
.y26{bottom:161.008622pt;}
.yb7{bottom:162.264966pt;}
.ybd{bottom:164.888676pt;}
.y13f{bottom:168.007166pt;}
.y75{bottom:177.395179pt;}
.y9b{bottom:178.654944pt;}
.y185{bottom:180.170575pt;}
.y103{bottom:180.540361pt;}
.y123{bottom:180.540369pt;}
.y25{bottom:181.251868pt;}
.yb6{bottom:183.428380pt;}
.y160{bottom:186.212896pt;}
.ydf{bottom:186.411453pt;}
.ybc{bottom:194.731793pt;}
.y74{bottom:198.558913pt;}
.y9a{bottom:199.818686pt;}
.y52{bottom:201.158531pt;}
.y102{bottom:201.703775pt;}
.y122{bottom:201.703779pt;}
.yb5{bottom:204.591792pt;}
.y13e{bottom:205.169925pt;}
.y15f{bottom:207.375662pt;}
.yde{bottom:207.574867pt;}
.y73{bottom:219.722327pt;}
.y24{bottom:219.852375pt;}
.y184{bottom:220.612632pt;}
.y99{bottom:220.982420pt;}
.y51{bottom:221.401695pt;}
.y101{bottom:222.866533pt;}
.y121{bottom:222.866539pt;}
.yb4{bottom:225.755206pt;}
.y15e{bottom:228.539717pt;}
.ydd{bottom:228.738273pt;}
.y183{bottom:240.487634pt;}
.y72{bottom:240.885739pt;}
.y13d{bottom:241.473963pt;}
.y50{bottom:241.645027pt;}
.y98{bottom:242.145832pt;}
.y100{bottom:244.030595pt;}
.yb3{bottom:246.918619pt;}
.y15d{bottom:249.703779pt;}
.ydc{bottom:249.901687pt;}
.y19d{bottom:258.744146pt;}
.y13c{bottom:259.877610pt;}
.y120{bottom:260.030592pt;}
.y23{bottom:260.063960pt;}
.y182{bottom:260.362632pt;}
.y4f{bottom:261.888351pt;}
.y97{bottom:263.308926pt;}
.yff{bottom:265.193353pt;}
.yb2{bottom:268.082354pt;}
.y15c{bottom:270.866545pt;}
.ydb{bottom:271.065099pt;}
.y71{bottom:278.049158pt;}
.y22{bottom:279.075028pt;}
.y13b{bottom:280.234384pt;}
.y11f{bottom:281.193358pt;}
.y4e{bottom:282.131515pt;}
.y96{bottom:284.472653pt;}
.yfe{bottom:286.356766pt;}
.yb1{bottom:289.245440pt;}
.y15b{bottom:292.030606pt;}
.y21{bottom:298.086175pt;}
.y181{bottom:298.263014pt;}
.y70{bottom:299.212878pt;}
.y19c{bottom:301.281906pt;}
.y11e{bottom:302.356779pt;}
.y4d{bottom:302.374842pt;}
.y95{bottom:305.636059pt;}
.yda{bottom:308.228512pt;}
.yb0{bottom:310.408846pt;}
.y20{bottom:317.097335pt;}
.y6f{bottom:320.375968pt;}
.y4c{bottom:322.618161pt;}
.yfd{bottom:323.520832pt;}
.y11d{bottom:323.520842pt;}
.y94{bottom:326.799473pt;}
.y15a{bottom:329.193359pt;}
.yaf{bottom:331.572588pt;}
.y1f{bottom:336.569742pt;}
.y180{bottom:337.373049pt;}
.y6e{bottom:341.539388pt;}
.y4b{bottom:342.861485pt;}
.y19b{bottom:343.819666pt;}
.yfc{bottom:344.683592pt;}
.y11c{bottom:344.684248pt;}
.yd9{bottom:345.391926pt;}
.y93{bottom:347.962886pt;}
.y159{bottom:350.357421pt;}
.yae{bottom:352.735672pt;}
.y17f{bottom:357.248049pt;}
.y1e{bottom:357.309088pt;}
.y6d{bottom:362.703118pt;}
.y4a{bottom:363.104810pt;}
.y11b{bottom:365.847006pt;}
.y92{bottom:369.126299pt;}
.y158{bottom:371.521484pt;}
.yad{bottom:373.899086pt;}
.y17e{bottom:377.123049pt;}
.y1d{bottom:377.817785pt;}
.yfb{bottom:381.847006pt;}
.yd8{bottom:382.555336pt;}
.y49{bottom:383.347975pt;}
.y6c{bottom:383.866202pt;}
.y19a{bottom:386.357423pt;}
.y11a{bottom:387.011072pt;}
.y91{bottom:390.289718pt;}
.y157{bottom:392.684245pt;}
.yac{bottom:395.062816pt;}
.y17d{bottom:396.998049pt;}
.y1c{bottom:397.693035pt;}
.y48{bottom:403.591308pt;}
.yd7{bottom:403.719399pt;}
.y6b{bottom:405.029944pt;}
.y119{bottom:408.173832pt;}
.y90{bottom:411.453453pt;}
.y199{bottom:411.561852pt;}
.y156{bottom:413.847006pt;}
.yab{bottom:416.226558pt;}
.y17c{bottom:416.873049pt;}
.y1b{bottom:417.568275pt;}
.yfa{bottom:419.011072pt;}
.y47{bottom:423.834626pt;}
.yd6{bottom:424.882157pt;}
.y6a{bottom:426.193365pt;}
.y8f{bottom:432.616539pt;}
.y17b{bottom:436.748049pt;}
.yaa{bottom:437.389323pt;}
.y1a{bottom:437.443525pt;}
.y46{bottom:444.077790pt;}
.y118{bottom:445.337895pt;}
.yd5{bottom:446.045571pt;}
.y69{bottom:447.356772pt;}
.y155{bottom:451.011075pt;}
.y8e{bottom:453.779953pt;}
.y198{bottom:454.098306pt;}
.yf9{bottom:456.173825pt;}
.y17a{bottom:456.623049pt;}
.y19{bottom:457.318765pt;}
.ya9{bottom:458.553065pt;}
.y45{bottom:464.321122pt;}
.y117{bottom:466.501309pt;}
.yd4{bottom:467.208985pt;}
.y68{bottom:468.520186pt;}
.y154{bottom:472.173825pt;}
.y8d{bottom:474.943363pt;}
.y179{bottom:476.499352pt;}
.y18{bottom:477.193915pt;}
.yf8{bottom:477.337895pt;}
.ya8{bottom:479.716800pt;}
.y44{bottom:484.564614pt;}
.y116{bottom:487.664715pt;}
.yd3{bottom:488.373046pt;}
.y67{bottom:489.683592pt;}
.y153{bottom:493.337885pt;}
.y8c{bottom:496.107099pt;}
.y197{bottom:496.634759pt;}
.y17{bottom:497.069165pt;}
.yf7{bottom:498.501309pt;}
.ya7{bottom:500.880206pt;}
.y43{bottom:504.807938pt;}
.y13a{bottom:508.828771pt;}
.y115{bottom:508.828778pt;}
.y66{bottom:510.847006pt;}
.y178{bottom:513.707675pt;}
.y152{bottom:514.500645pt;}
.y16{bottom:516.944407pt;}
.yf6{bottom:519.664715pt;}
.ya6{bottom:522.043296pt;}
.y42{bottom:525.051102pt;}
.yd2{bottom:525.535811pt;}
.y139{bottom:529.991536pt;}
.y114{bottom:529.991539pt;}
.y65{bottom:532.010418pt;}
.y177{bottom:533.582675pt;}
.y8b{bottom:535.341148pt;}
.y151{bottom:535.664705pt;}
.y15{bottom:536.819666pt;}
.y196{bottom:539.173834pt;}
.yf5{bottom:540.828778pt;}
.ya5{bottom:543.207032pt;}
.y41{bottom:545.294428pt;}
.yd1{bottom:546.699873pt;}
.y113{bottom:551.154299pt;}
.y138{bottom:551.154302pt;}
.y176{bottom:553.458985pt;}
.y14{bottom:556.694910pt;}
.y150{bottom:556.828765pt;}
.yf4{bottom:561.991539pt;}
.ya4{bottom:564.370446pt;}
.y195{bottom:564.376959pt;}
.y40{bottom:566.111168pt;}
.yd0{bottom:567.863287pt;}
.y64{bottom:569.460608pt;}
.y137{bottom:572.318357pt;}
.y175{bottom:573.333982pt;}
.y13{bottom:576.570154pt;}
.y8a{bottom:577.071283pt;}
.y14f{bottom:577.991531pt;}
.yf3{bottom:583.154299pt;}
.ya3{bottom:584.673833pt;}
.y3f{bottom:587.621424pt;}
.y112{bottom:588.318366pt;}
.ycf{bottom:589.026699pt;}
.y174{bottom:593.208982pt;}
.y136{bottom:593.481771pt;}
.y12{bottom:596.445391pt;}
.y89{bottom:598.235025pt;}
.y14e{bottom:599.154296pt;}
.ya2{bottom:603.076503pt;}
.y194{bottom:606.914715pt;}
.y3e{bottom:607.864573pt;}
.y111{bottom:609.481126pt;}
.y173{bottom:613.083982pt;}
.y135{bottom:614.645833pt;}
.y63{bottom:615.257806pt;}
.y11{bottom:616.320597pt;}
.y88{bottom:619.398446pt;}
.y14d{bottom:620.318359pt;}
.yf2{bottom:620.318363pt;}
.ya1{bottom:622.339834pt;}
.yce{bottom:626.189457pt;}
.y3d{bottom:628.107905pt;}
.y193{bottom:632.119141pt;}
.y172{bottom:632.958982pt;}
.y134{bottom:635.809246pt;}
.y10{bottom:636.195803pt;}
.y62{bottom:636.420892pt;}
.y87{bottom:640.561853pt;}
.yf1{bottom:641.481777pt;}
.y14c{bottom:641.482421pt;}
.y110{bottom:646.645832pt;}
.ycd{bottom:647.353520pt;}
.y3c{bottom:648.351229pt;}
.y171{bottom:652.833982pt;}
.yf{bottom:656.071046pt;}
.y192{bottom:657.322266pt;}
.y61{bottom:657.584306pt;}
.y86{bottom:661.725267pt;}
.yf0{bottom:662.645840pt;}
.y14b{bottom:662.646484pt;}
.ycc{bottom:668.516934pt;}
.y3b{bottom:668.594393pt;}
.y170{bottom:672.708982pt;}
.y133{bottom:672.972004pt;}
.ye{bottom:677.099688pt;}
.y60{bottom:678.747880pt;}
.y85{bottom:682.888673pt;}
.yef{bottom:683.809246pt;}
.y3a{bottom:688.837725pt;}
.ycb{bottom:689.680340pt;}
.y16f{bottom:692.583982pt;}
.y132{bottom:694.136067pt;}
.y191{bottom:699.860023pt;}
.y5f{bottom:699.911126pt;}
.y84{bottom:704.052087pt;}
.y14a{bottom:704.972006pt;}
.yee{bottom:704.972012pt;}
.y39{bottom:709.081049pt;}
.yca{bottom:710.843754pt;}
.y16e{bottom:712.460286pt;}
.y131{bottom:715.298825pt;}
.y10f{bottom:720.972002pt;}
.y5e{bottom:721.074864pt;}
.yd{bottom:723.876786pt;}
.y190{bottom:725.064452pt;}
.y83{bottom:725.215499pt;}
.yed{bottom:726.136072pt;}
.y38{bottom:729.324375pt;}
.yc9{bottom:732.007166pt;}
.y130{bottom:736.462239pt;}
.yc{bottom:741.793130pt;}
.y149{bottom:742.136061pt;}
.y10e{bottom:742.136065pt;}
.y5d{bottom:742.238112pt;}
.y37{bottom:749.567708pt;}
.y16d{bottom:749.668614pt;}
.y12f{bottom:757.626299pt;}
.yb{bottom:759.075930pt;}
.y82{bottom:762.378901pt;}
.y148{bottom:763.298821pt;}
.yec{bottom:763.298823pt;}
.y10d{bottom:763.298830pt;}
.y18f{bottom:767.602209pt;}
.yc8{bottom:769.170578pt;}
.y16c{bottom:769.543614pt;}
.y36{bottom:769.810877pt;}
.ya{bottom:776.589399pt;}
.y5c{bottom:779.401687pt;}
.y81{bottom:783.542311pt;}
.y147{bottom:784.461587pt;}
.y10c{bottom:784.462244pt;}
.yeb{bottom:784.462245pt;}
.y16b{bottom:789.419924pt;}
.y35{bottom:790.054194pt;}
.y18e{bottom:792.806639pt;}
.y12e{bottom:794.789719pt;}
.y5b{bottom:800.565108pt;}
.yc7{bottom:803.406895pt;}
.y80{bottom:804.705731pt;}
.y146{bottom:805.625650pt;}
.yea{bottom:805.626307pt;}
.y9{bottom:806.712633pt;}
.y16a{bottom:809.294924pt;}
.y34{bottom:810.297526pt;}
.y12d{bottom:815.952477pt;}
.y5a{bottom:821.728515pt;}
.y7f{bottom:825.869134pt;}
.yc6{bottom:826.603520pt;}
.y8{bottom:826.654579pt;}
.y10b{bottom:826.789713pt;}
.ye9{bottom:826.789714pt;}
.y169{bottom:829.169921pt;}
.y33{bottom:830.540690pt;}
.y18d{bottom:835.343103pt;}
.y12c{bottom:837.116539pt;}
.y59{bottom:842.891929pt;}
.y7e{bottom:847.032876pt;}
.yc5{bottom:847.766927pt;}
.ye8{bottom:847.952472pt;}
.y10a{bottom:847.952479pt;}
.y168{bottom:849.044921pt;}
.y32{bottom:850.784014pt;}
.y7{bottom:854.307086pt;}
.y12b{bottom:858.279305pt;}
.y18c{bottom:860.547532pt;}
.y58{bottom:864.055503pt;}
.y7d{bottom:868.195962pt;}
.y167{bottom:868.919921pt;}
.yc4{bottom:868.930341pt;}
.ye7{bottom:869.116534pt;}
.y109{bottom:869.116539pt;}
.y31{bottom:871.027506pt;}
.y12a{bottom:879.443366pt;}
.y6{bottom:881.959594pt;}
.y57{bottom:885.218749pt;}
.y166{bottom:888.794921pt;}
.y7c{bottom:889.359704pt;}
.yc3{bottom:890.094403pt;}
.y145{bottom:890.279298pt;}
.ye6{bottom:890.279300pt;}
.y30{bottom:891.270750pt;}
.y18b{bottom:903.085286pt;}
.y108{bottom:906.279296pt;}
.y56{bottom:906.382487pt;}
.y165{bottom:908.669921pt;}
.y7b{bottom:910.523111pt;}
.yc2{bottom:911.257161pt;}
.ye5{bottom:911.443360pt;}
.y144{bottom:911.443361pt;}
.y2f{bottom:911.513996pt;}
.y5{bottom:913.302918pt;}
.y129{bottom:916.606771pt;}
.ybb{bottom:918.905600pt;}
.y107{bottom:927.443359pt;}
.y55{bottom:927.545735pt;}
.y18a{bottom:928.288411pt;}
.y164{bottom:928.544921pt;}
.y7a{bottom:931.686525pt;}
.y2e{bottom:931.757324pt;}
.yc1{bottom:932.420574pt;}
.y143{bottom:932.607422pt;}
.y128{bottom:937.770183pt;}
.y163{bottom:948.421226pt;}
.ye4{bottom:948.606773pt;}
.y2d{bottom:952.000654pt;}
.y79{bottom:952.849935pt;}
.y4{bottom:954.781672pt;}
.y54{bottom:964.995930pt;}
.y162{bottom:968.296224pt;}
.ye3{bottom:969.770179pt;}
.yba{bottom:969.770183pt;}
.y189{bottom:970.827474pt;}
.yc0{bottom:971.654949pt;}
.y2c{bottom:972.243894pt;}
.y78{bottom:974.013671pt;}
.y127{bottom:974.934246pt;}
.ya0{bottom:990.933594pt;}
.y106{bottom:990.934245pt;}
.y2b{bottom:992.487142pt;}
.y3{bottom:996.260417pt;}
.y161{bottom:1007.529948pt;}
.y53{bottom:1010.196614pt;}
.y77{bottom:1011.463542pt;}
.y9f{bottom:1012.097006pt;}
.y2a{bottom:1012.730468pt;}
.y188{bottom:1013.363932pt;}
.y1{bottom:1026.666667pt;}
.h2{height:39.101563pt;}
.ha{height:42.786457pt;}
.h8{height:43.642189pt;}
.h9{height:44.925781pt;}
.h12{height:45.500000pt;}
.hf{height:46.348959pt;}
.h10{height:47.065105pt;}
.h14{height:48.455728pt;}
.hd{height:49.204426pt;}
.he{height:51.343750pt;}
.h11{height:54.776044pt;}
.h13{height:56.875002pt;}
.hc{height:58.989581pt;}
.hb{height:59.901040pt;}
.h7{height:68.458335pt;}
.h5{height:74.872501pt;}
.h6{height:74.872517pt;}
.h4{height:91.000000pt;}
.h1{height:96.000000pt;}
.h3{height:97.511364pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:77.000000pt;}
.x2{left:96.000000pt;}
.x11{left:101.646780pt;}
.xe{left:117.000000pt;}
.x9{left:123.900526pt;}
.xd{left:138.683075pt;}
.x12{left:140.508918pt;}
.xa{left:222.006597pt;}
.x7{left:240.655075pt;}
.x6{left:303.979290pt;}
.x5{left:319.869920pt;}
.x4{left:344.908360pt;}
.x3{left:349.379970pt;}
.x14{left:352.671330pt;}
.x13{left:354.168880pt;}
.xf{left:367.643010pt;}
.xb{left:396.850400pt;}
.xc{left:617.850400pt;}
.x8{left:638.850400pt;}
.x10{left:702.000000pt;}
}




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