
    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_eb65c3950eba1028f4f561d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943526;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_4a668f3c2010bf860ca32876.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939143;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_a3e281ed1d76e707861fabff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b5b1727f4febccc13e239253.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.679000;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_6cefc32c0e10555e1d4ab6ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_4906a5ba126901837a917d01.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963379;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_cae29cca376f3f7bcbc65eee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954000;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_e8ada412db0bbd43b5511c42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_a2d46ab73f96718dcb50ae7b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934571;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_a6d22b495b78dd084e752a38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_878e4809395a222451c7d506.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893000;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);}
.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);}
.v1{vertical-align:-80.400238px;}
.v5{vertical-align:-45.000001px;}
.v2{vertical-align:-31.500001px;}
.v3{vertical-align:-21.375001px;}
.v6{vertical-align:-20.214005px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:31.500001px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000580px;}
.ls4{letter-spacing:0.000917px;}
.ls7{letter-spacing:0.022595px;}
.ls1{letter-spacing:0.027827px;}
.ls6{letter-spacing:0.033737px;}
.ls3{letter-spacing:2.572097px;}
.ls2{letter-spacing:107.972021px;}
.ls5{letter-spacing:108.000426px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(62,62,62),0 0.015em rgb(62,62,62),0.015em 0 rgb(62,62,62),0 -0.015em  rgb(62,62,62);}
.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(62,62,62);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-29.268001px;}
.ws5{word-spacing:-23.268000px;}
.ws2{word-spacing:-22.764000px;}
.wsc{word-spacing:-21.924000px;}
.ws14{word-spacing:-21.680001px;}
.ws3{word-spacing:-21.672000px;}
.wsb{word-spacing:-16.620000px;}
.ws8{word-spacing:-15.789001px;}
.ws7{word-spacing:-15.512001px;}
.ws0{word-spacing:-15.480000px;}
.ws4{word-spacing:-15.458870px;}
.ws12{word-spacing:-15.447001px;}
.wsa{word-spacing:-15.176001px;}
.wsf{word-spacing:-14.880000px;}
.wse{word-spacing:-14.877001px;}
.ws15{word-spacing:-14.706001px;}
.wsd{word-spacing:-14.616001px;}
.ws6{word-spacing:-14.448001px;}
.ws17{word-spacing:-13.907232px;}
.ws9{word-spacing:-9.804001px;}
.ws13{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.084000px;}
.ws11{word-spacing:-0.056000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:86.289252px;}
._14{margin-left:-9.360000px;}
._3{margin-left:-8.280000px;}
._2{margin-left:-6.840000px;}
._c{margin-left:-5.760000px;}
._7{margin-left:-4.335329px;}
._9{margin-left:-3.132000px;}
._1{margin-left:-1.920000px;}
._4{width:1.318695px;}
._8{width:2.592845px;}
._f{width:3.600000px;}
._a{width:4.620000px;}
._5{width:6.480000px;}
._0{width:9.360000px;}
._10{width:107.961252px;}
._11{width:331.881521px;}
._e{width:334.702229px;}
._d{width:557.240072px;}
._6{width:752.547023px;}
._13{width:857.082719px;}
._12{width:923.229077px;}
._b{width:970.258053px;}
.fc6{color:rgb(0,255,0);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,151,167);}
.fc2{color:rgb(255,255,0);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(62,62,62);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:35.936001px;}
.fsa{font-size:38.000004px;}
.fsb{font-size:45.043800px;}
.fse{font-size:53.903999px;}
.fs8{font-size:54.000002px;}
.fs7{font-size:56.000003px;}
.fs9{font-size:57.000003px;}
.fs6{font-size:57.043802px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000004px;}
.fsc{font-size:80.000005px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:90.000003px;}
.fsd{font-size:108.000003px;}
.fs1{font-size:120.000001px;}
.fs0{font-size:240.000002px;}
.y0{bottom:0.000000px;}
.y9{bottom:9.745058px;}
.y8{bottom:11.365207px;}
.y7{bottom:16.243237px;}
.y20{bottom:46.752851px;}
.y21{bottom:47.359827px;}
.y96{bottom:48.214474px;}
.y52{bottom:48.215644px;}
.y6{bottom:49.543227px;}
.y36{bottom:50.487102px;}
.y8e{bottom:56.972329px;}
.yc3{bottom:59.518402px;}
.y12{bottom:59.590744px;}
.y61{bottom:63.862228px;}
.y78{bottom:64.734008px;}
.y27{bottom:66.295828px;}
.yb4{bottom:67.156846px;}
.y2f{bottom:67.210666px;}
.y13{bottom:67.594546px;}
.yef{bottom:68.226958px;}
.y82{bottom:71.848340px;}
.y76{bottom:73.676015px;}
.y5a{bottom:78.352206px;}
.y40{bottom:79.904683px;}
.ycd{bottom:79.921434px;}
.ybf{bottom:80.400855px;}
.yd2{bottom:85.072855px;}
.y4e{bottom:85.362047px;}
.y11{bottom:88.570738px;}
.yc2{bottom:89.873851px;}
.y5{bottom:90.043218px;}
.y60{bottom:92.842217px;}
.yb3{bottom:96.136847px;}
.y2e{bottom:96.190656px;}
.yae{bottom:98.002694px;}
.y88{bottom:98.421662px;}
.y94{bottom:104.426725px;}
.y59{bottom:107.332206px;}
.y8d{bottom:107.747714px;}
.y3f{bottom:108.884684px;}
.y3a{bottom:112.510426px;}
.yd1{bottom:114.052844px;}
.y4d{bottom:114.342048px;}
.y1f{bottom:116.042751px;}
.yde{bottom:116.317352px;}
.yc1{bottom:116.496920px;}
.y5f{bottom:121.822218px;}
.yb2{bottom:125.116837px;}
.y2d{bottom:125.170646px;}
.yad{bottom:126.982695px;}
.yb8{bottom:126.982717px;}
.yd{bottom:128.285895px;}
.y87{bottom:128.442090px;}
.y10{bottom:129.939547px;}
.y81{bottom:132.003964px;}
.yc0{bottom:133.331308px;}
.y93{bottom:133.406715px;}
.y58{bottom:136.312196px;}
.y8c{bottom:136.727715px;}
.y3e{bottom:137.864685px;}
.yec{bottom:138.328921px;}
.yd0{bottom:143.032845px;}
.y4c{bottom:143.322042px;}
.y71{bottom:143.329359px;}
.ydd{bottom:145.297353px;}
.yc{bottom:145.686428px;}
.y5e{bottom:150.802208px;}
.yb1{bottom:154.096831px;}
.yac{bottom:155.962684px;}
.yb7{bottom:155.962707px;}
.y86{bottom:157.422091px;}
.y80{bottom:160.983953px;}
.y92{bottom:162.386716px;}
.y57{bottom:165.292190px;}
.y8b{bottom:165.707705px;}
.ya1{bottom:166.538855px;}
.y3d{bottom:166.844675px;}
.yeb{bottom:167.308917px;}
.ycf{bottom:172.012835px;}
.y4b{bottom:172.302039px;}
.y70{bottom:172.309371px;}
.ya9{bottom:173.765938px;}
.y1e{bottom:174.002787px;}
.ydc{bottom:174.277377px;}
.y5d{bottom:179.782204px;}
.yb0{bottom:183.076828px;}
.y2c{bottom:183.130636px;}
.yab{bottom:184.942682px;}
.yb6{bottom:184.942704px;}
.y85{bottom:186.402080px;}
.y4{bottom:187.123217px;}
.y7f{bottom:189.963954px;}
.ybe{bottom:190.100306px;}
.y91{bottom:191.366705px;}
.y56{bottom:194.272187px;}
.y8a{bottom:194.687706px;}
.y3c{bottom:195.824671px;}
.ycc{bottom:195.841416px;}
.y3b{bottom:201.133764px;}
.y4a{bottom:201.282028px;}
.y6f{bottom:201.289384px;}
.yf{bottom:201.626368px;}
.ya8{bottom:202.745905px;}
.y1d{bottom:202.982788px;}
.y5c{bottom:208.762198px;}
.yaf{bottom:212.056823px;}
.y2b{bottom:212.110637px;}
.yaa{bottom:213.922677px;}
.yb5{bottom:213.922700px;}
.ya0{bottom:215.138867px;}
.y84{bottom:215.382081px;}
.y7b{bottom:216.594140px;}
.y7e{bottom:218.943944px;}
.yee{bottom:222.242725px;}
.y89{bottom:223.667702px;}
.ye3{bottom:223.969836px;}
.ycb{bottom:224.821417px;}
.y7d{bottom:227.193288px;}
.yc8{bottom:227.381579px;}
.y6e{bottom:230.269396px;}
.ya7{bottom:231.725906px;}
.y1c{bottom:231.962800px;}
.ydb{bottom:232.237401px;}
.y65{bottom:235.004515px;}
.y55{bottom:238.252179px;}
.y9b{bottom:240.707583px;}
.y2a{bottom:241.090627px;}
.y3{bottom:241.123218px;}
.y83{bottom:244.362078px;}
.y49{bottom:245.262026px;}
.yd3{bottom:247.493020px;}
.y50{bottom:249.585536px;}
.y5b{bottom:252.742195px;}
.ye2{bottom:252.949832px;}
.yca{bottom:253.801406px;}
.yc7{bottom:256.361574px;}
.y74{bottom:257.671823px;}
.y6d{bottom:259.249374px;}
.y1b{bottom:260.942801px;}
.yda{bottom:261.217402px;}
.y95{bottom:262.038303px;}
.y9f{bottom:263.738869px;}
.y29{bottom:270.070625px;}
.y79{bottom:275.045666px;}
.ye7{bottom:275.707384px;}
.y64{bottom:276.685342px;}
.ye1{bottom:281.929827px;}
.yc9{bottom:282.781403px;}
.yc6{bottom:285.341570px;}
.y8f{bottom:287.213509px;}
.y6c{bottom:288.229364px;}
.y1a{bottom:289.922790px;}
.yd9{bottom:290.197392px;}
.y99{bottom:292.365080px;}
.y28{bottom:299.050620px;}
.y15{bottom:299.193290px;}
.y7a{bottom:303.372170px;}
.ye6{bottom:304.687385px;}
.y51{bottom:309.037317px;}
.y48{bottom:310.222460px;}
.y26{bottom:312.078190px;}
.y9e{bottom:312.338859px;}
.yc5{bottom:314.321564px;}
.y37{bottom:317.027949px;}
.y6b{bottom:317.209365px;}
.yd8{bottom:319.177393px;}
.ya6{bottom:319.685890px;}
.yb{bottom:331.140659px;}
.y62{bottom:335.253839px;}
.y77{bottom:336.401526px;}
.y35{bottom:336.739086px;}
.y75{bottom:339.066538px;}
.y47{bottom:339.202449px;}
.y39{bottom:342.363760px;}
.yc4{bottom:343.301560px;}
.y6a{bottom:346.189354px;}
.y19{bottom:347.882781px;}
.yd7{bottom:348.157382px;}
.ya5{bottom:348.665891px;}
.y25{bottom:349.878191px;}
.y2{bottom:350.805113px;}
.y38{bottom:360.363761px;}
.y9d{bottom:360.938850px;}
.y66{bottom:365.584549px;}
.y46{bottom:368.182450px;}
.ye{bottom:368.544795px;}
.y7c{bottom:371.193292px;}
.y69{bottom:375.169355px;}
.y18{bottom:376.862782px;}
.yd6{bottom:377.137383px;}
.ya4{bottom:377.645892px;}
.y4f{bottom:380.611140px;}
.y24{bottom:387.678181px;}
.ybd{bottom:391.743796px;}
.y45{bottom:397.162440px;}
.y68{bottom:404.149356px;}
.y34{bottom:405.674656px;}
.ya3{bottom:406.625882px;}
.y9c{bottom:409.538853px;}
.yea{bottom:412.430968px;}
.ybc{bottom:420.723786px;}
.y23{bottom:425.478182px;}
.y44{bottom:426.142435px;}
.ya2{bottom:429.110432px;}
.y67{bottom:433.129350px;}
.y1{bottom:433.605104px;}
.y17{bottom:434.822768px;}
.yd5{bottom:435.097374px;}
.yce{bottom:435.791863px;}
.ye9{bottom:441.410957px;}
.y33{bottom:443.474657px;}
.ybb{bottom:449.703780px;}
.y43{bottom:455.122431px;}
.ye0{bottom:458.366333px;}
.y22{bottom:463.278184px;}
.y16{bottom:463.802768px;}
.yd4{bottom:464.077375px;}
.ye8{bottom:470.390958px;}
.y63{bottom:475.636721px;}
.y97{bottom:478.294207px;}
.yba{bottom:478.683777px;}
.y32{bottom:481.274658px;}
.ydf{bottom:487.346332px;}
.y73{bottom:495.062558px;}
.y54{bottom:497.483854px;}
.y53{bottom:498.360990px;}
.y42{bottom:499.102424px;}
.y41{bottom:507.245982px;}
.yb9{bottom:507.663771px;}
.y31{bottom:519.074660px;}
.ye5{bottom:535.200001px;}
.y90{bottom:552.896574px;}
.y98{bottom:556.480232px;}
.y72{bottom:557.684492px;}
.ye4{bottom:564.179998px;}
.y9a{bottom:572.779134px;}
.y14{bottom:573.160039px;}
.y30{bottom:574.816535px;}
.yed{bottom:575.321456px;}
.ya{bottom:575.475591px;}
.h11{height:33.782850px;}
.h1b{height:40.320191px;}
.hc{height:40.392001px;}
.hd{height:42.636002px;}
.h9{height:42.668764px;}
.h14{height:42.782851px;}
.h17{height:42.951003px;}
.h8{height:42.984006px;}
.h15{height:43.605003px;}
.h10{height:43.681641px;}
.h5{height:44.880000px;}
.h16{height:45.000000px;}
.h6{height:49.368003px;}
.ha{height:62.832000px;}
.hb{height:63.296210px;}
.h12{height:64.260000px;}
.h4{height:67.320002px;}
.h3{height:67.817371px;}
.h18{height:73.364003px;}
.hf{height:73.388003px;}
.he{height:73.697477px;}
.h13{height:74.340003px;}
.h1a{height:81.380845px;}
.h19{height:82.620003px;}
.h2{height:89.760001px;}
.h7{height:90.423159px;}
.h1{height:180.846317px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1b{left:7.875000px;}
.x9{left:10.125000px;}
.x64{left:14.878938px;}
.x10{left:20.099409px;}
.x1c{left:22.197997px;}
.x14{left:25.437170px;}
.xa{left:28.564366px;}
.x24{left:34.157700px;}
.x5f{left:39.430280px;}
.xb{left:48.179383px;}
.x51{left:49.508036px;}
.x4c{left:51.524769px;}
.x1d{left:61.875002px;}
.x5a{left:64.044454px;}
.x15{left:65.114175px;}
.x68{left:67.564963px;}
.x1{left:70.756556px;}
.x39{left:73.276182px;}
.x60{left:79.107286px;}
.x52{left:89.185042px;}
.x4d{left:91.201774px;}
.x26{left:111.362949px;}
.x37{left:113.695356px;}
.x67{left:131.678847px;}
.x53{left:142.502805px;}
.x33{left:153.331607px;}
.x61{left:157.531303px;}
.x4f{left:168.506236px;}
.x4b{left:173.215659px;}
.x4a{left:175.684455px;}
.x29{left:177.437745px;}
.x63{left:191.549909px;}
.x3{left:192.647950px;}
.x2d{left:194.009935px;}
.x66{left:207.229498px;}
.x3a{left:221.466441px;}
.x13{left:225.026816px;}
.x2b{left:232.635002px;}
.x46{left:291.290229px;}
.x5{left:297.585291px;}
.x47{left:308.988505px;}
.x45{left:320.327515px;}
.x2{left:324.000010px;}
.x8{left:326.037498px;}
.x57{left:336.088167px;}
.x32{left:362.303157px;}
.x50{left:371.531895px;}
.x5b{left:377.867150px;}
.x1e{left:392.046279px;}
.x6a{left:398.385834px;}
.x1f{left:406.369275px;}
.x62{left:408.344076px;}
.x2c{left:419.716588px;}
.xc{left:425.524048px;}
.x25{left:430.056600px;}
.x5c{left:431.867151px;}
.x6{left:433.732626px;}
.x17{left:439.198844px;}
.x20{left:446.046281px;}
.x2a{left:448.249841px;}
.x59{left:452.344289px;}
.x38{left:454.750494px;}
.x4{left:468.538181px;}
.x3e{left:494.339716px;}
.x3c{left:495.373041px;}
.x3f{left:496.558118px;}
.x23{left:502.707445px;}
.x28{left:531.652023px;}
.xd{left:568.978504px;}
.x18{left:589.367156px;}
.x65{left:593.371031px;}
.x16{left:598.626485px;}
.x19{left:603.690153px;}
.x54{left:610.412169px;}
.x69{left:612.129957px;}
.x34{left:621.611266px;}
.x35{left:635.934263px;}
.x48{left:651.702004px;}
.x4e{left:656.230890px;}
.x27{left:669.440457px;}
.x36{left:675.611268px;}
.x49{left:691.379010px;}
.x30{left:701.405998px;}
.x56{left:712.715061px;}
.x5d{left:717.882885px;}
.x58{left:727.411485px;}
.x12{left:730.762853px;}
.x5e{left:732.205882px;}
.x21{left:740.657499px;}
.xf{left:753.039434px;}
.x1a{left:755.353374px;}
.x41{left:774.586746px;}
.x31{left:780.230112px;}
.x2f{left:792.578251px;}
.x22{left:794.657500px;}
.xe{left:807.059022px;}
.x40{left:824.522314px;}
.x55{left:830.038746px;}
.x43{left:835.369694px;}
.x42{left:851.994141px;}
.x3d{left:857.324815px;}
.x3b{left:878.881391px;}
.x44{left:895.621210px;}
.x6b{left:919.089592px;}
.x11{left:988.805616px;}
.x2e{left:1039.657777px;}
.x7{left:1048.654226px;}
@media print{
.v1{vertical-align:-71.466878pt;}
.v5{vertical-align:-40.000001pt;}
.v2{vertical-align:-28.000001pt;}
.v3{vertical-align:-19.000001pt;}
.v6{vertical-align:-17.968005pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:28.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000515pt;}
.ls4{letter-spacing:0.000815pt;}
.ls7{letter-spacing:0.020084pt;}
.ls1{letter-spacing:0.024735pt;}
.ls6{letter-spacing:0.029988pt;}
.ls3{letter-spacing:2.286308pt;}
.ls2{letter-spacing:95.975130pt;}
.ls5{letter-spacing:96.000379pt;}
.ws16{word-spacing:-26.016001pt;}
.ws5{word-spacing:-20.682667pt;}
.ws2{word-spacing:-20.234667pt;}
.wsc{word-spacing:-19.488000pt;}
.ws14{word-spacing:-19.271112pt;}
.ws3{word-spacing:-19.264000pt;}
.wsb{word-spacing:-14.773333pt;}
.ws8{word-spacing:-14.034667pt;}
.ws7{word-spacing:-13.788445pt;}
.ws0{word-spacing:-13.760000pt;}
.ws4{word-spacing:-13.741218pt;}
.ws12{word-spacing:-13.730667pt;}
.wsa{word-spacing:-13.489778pt;}
.wsf{word-spacing:-13.226667pt;}
.wse{word-spacing:-13.224001pt;}
.ws15{word-spacing:-13.072001pt;}
.wsd{word-spacing:-12.992001pt;}
.ws6{word-spacing:-12.842667pt;}
.ws17{word-spacing:-12.361984pt;}
.ws9{word-spacing:-8.714668pt;}
.ws13{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.074667pt;}
.ws11{word-spacing:-0.049778pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:76.701557pt;}
._14{margin-left:-8.320000pt;}
._3{margin-left:-7.360000pt;}
._2{margin-left:-6.080000pt;}
._c{margin-left:-5.120000pt;}
._7{margin-left:-3.853626pt;}
._9{margin-left:-2.784000pt;}
._1{margin-left:-1.706667pt;}
._4{width:1.172173pt;}
._8{width:2.304751pt;}
._f{width:3.200000pt;}
._a{width:4.106667pt;}
._5{width:5.760000pt;}
._0{width:8.320000pt;}
._10{width:95.965557pt;}
._11{width:295.005797pt;}
._e{width:297.513092pt;}
._d{width:495.324509pt;}
._6{width:668.930687pt;}
._13{width:761.851306pt;}
._12{width:820.648069pt;}
._b{width:862.451602pt;}
.fsf{font-size:31.943112pt;}
.fsa{font-size:33.777781pt;}
.fsb{font-size:40.038933pt;}
.fse{font-size:47.914666pt;}
.fs8{font-size:48.000002pt;}
.fs7{font-size:49.777780pt;}
.fs9{font-size:50.666670pt;}
.fs6{font-size:50.705602pt;}
.fs3{font-size:53.333334pt;}
.fs4{font-size:58.666670pt;}
.fsc{font-size:71.111115pt;}
.fs5{font-size:74.666666pt;}
.fs2{font-size:80.000003pt;}
.fsd{font-size:96.000003pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:213.333335pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:8.662274pt;}
.y8{bottom:10.102406pt;}
.y7{bottom:14.438433pt;}
.y20{bottom:41.558090pt;}
.y21{bottom:42.097624pt;}
.y96{bottom:42.857310pt;}
.y52{bottom:42.858350pt;}
.y6{bottom:44.038424pt;}
.y36{bottom:44.877424pt;}
.y8e{bottom:50.642070pt;}
.yc3{bottom:52.905246pt;}
.y12{bottom:52.969550pt;}
.y61{bottom:56.766425pt;}
.y78{bottom:57.541341pt;}
.y27{bottom:58.929625pt;}
.yb4{bottom:59.694975pt;}
.y2f{bottom:59.742815pt;}
.y13{bottom:60.084041pt;}
.yef{bottom:60.646185pt;}
.y82{bottom:63.865191pt;}
.y76{bottom:65.489791pt;}
.y5a{bottom:69.646405pt;}
.y40{bottom:71.026385pt;}
.ycd{bottom:71.041275pt;}
.ybf{bottom:71.467427pt;}
.yd2{bottom:75.620315pt;}
.y4e{bottom:75.877375pt;}
.y11{bottom:78.729545pt;}
.yc2{bottom:79.887867pt;}
.y5{bottom:80.038416pt;}
.y60{bottom:82.526415pt;}
.yb3{bottom:85.454975pt;}
.y2e{bottom:85.502805pt;}
.yae{bottom:87.113506pt;}
.y88{bottom:87.485922pt;}
.y94{bottom:92.823756pt;}
.y59{bottom:95.406406pt;}
.y8d{bottom:95.775746pt;}
.y3f{bottom:96.786386pt;}
.y3a{bottom:100.009268pt;}
.yd1{bottom:101.380306pt;}
.y4d{bottom:101.637376pt;}
.y1f{bottom:103.149112pt;}
.yde{bottom:103.393202pt;}
.yc1{bottom:103.552818pt;}
.y5f{bottom:108.286416pt;}
.yb2{bottom:111.214966pt;}
.y2d{bottom:111.262796pt;}
.yad{bottom:112.873506pt;}
.yb8{bottom:112.873526pt;}
.yd{bottom:114.031906pt;}
.y87{bottom:114.170746pt;}
.y10{bottom:115.501819pt;}
.y81{bottom:117.336856pt;}
.yc0{bottom:118.516719pt;}
.y93{bottom:118.583747pt;}
.y58{bottom:121.166397pt;}
.y8c{bottom:121.535747pt;}
.y3e{bottom:122.546387pt;}
.yec{bottom:122.959041pt;}
.yd0{bottom:127.140307pt;}
.y4c{bottom:127.397371pt;}
.y71{bottom:127.403875pt;}
.ydd{bottom:129.153203pt;}
.yc{bottom:129.499047pt;}
.y5e{bottom:134.046407pt;}
.yb1{bottom:136.974961pt;}
.yac{bottom:138.633497pt;}
.yb7{bottom:138.633517pt;}
.y86{bottom:139.930747pt;}
.y80{bottom:143.096847pt;}
.y92{bottom:144.343747pt;}
.y57{bottom:146.926391pt;}
.y8b{bottom:147.295737pt;}
.ya1{bottom:148.034537pt;}
.y3d{bottom:148.306377pt;}
.yeb{bottom:148.719037pt;}
.ycf{bottom:152.900298pt;}
.y4b{bottom:153.157368pt;}
.y70{bottom:153.163886pt;}
.ya9{bottom:154.458612pt;}
.y1e{bottom:154.669144pt;}
.ydc{bottom:154.913224pt;}
.y5d{bottom:159.806404pt;}
.yb0{bottom:162.734958pt;}
.y2c{bottom:162.782788pt;}
.yab{bottom:164.393495pt;}
.yb6{bottom:164.393515pt;}
.y85{bottom:165.690738pt;}
.y4{bottom:166.331748pt;}
.y7f{bottom:168.856848pt;}
.ybe{bottom:168.978050pt;}
.y91{bottom:170.103738pt;}
.y56{bottom:172.686388pt;}
.y8a{bottom:173.055738pt;}
.y3c{bottom:174.066374pt;}
.ycc{bottom:174.081258pt;}
.y3b{bottom:178.785568pt;}
.y4a{bottom:178.917358pt;}
.y6f{bottom:178.923896pt;}
.yf{bottom:179.223438pt;}
.ya8{bottom:180.218582pt;}
.y1d{bottom:180.429144pt;}
.y5c{bottom:185.566399pt;}
.yaf{bottom:188.494954pt;}
.y2b{bottom:188.542789pt;}
.yaa{bottom:190.153491pt;}
.yb5{bottom:190.153511pt;}
.ya0{bottom:191.234549pt;}
.y84{bottom:191.450739pt;}
.y7b{bottom:192.528125pt;}
.y7e{bottom:194.616839pt;}
.yee{bottom:197.549089pt;}
.y89{bottom:198.815735pt;}
.ye3{bottom:199.084299pt;}
.ycb{bottom:199.841259pt;}
.y7d{bottom:201.949589pt;}
.yc8{bottom:202.116959pt;}
.y6e{bottom:204.683907pt;}
.ya7{bottom:205.978583pt;}
.y1c{bottom:206.189155pt;}
.ydb{bottom:206.433245pt;}
.y65{bottom:208.892902pt;}
.y55{bottom:211.779714pt;}
.y9b{bottom:213.962296pt;}
.y2a{bottom:214.302780pt;}
.y3{bottom:214.331750pt;}
.y83{bottom:217.210736pt;}
.y49{bottom:218.010690pt;}
.yd3{bottom:219.993796pt;}
.y50{bottom:221.853810pt;}
.y5b{bottom:224.659729pt;}
.ye2{bottom:224.844295pt;}
.yca{bottom:225.601250pt;}
.yc7{bottom:227.876955pt;}
.y74{bottom:229.041620pt;}
.y6d{bottom:230.443888pt;}
.y1b{bottom:231.949156pt;}
.yda{bottom:232.193246pt;}
.y95{bottom:232.922936pt;}
.y9f{bottom:234.434550pt;}
.y29{bottom:240.062777pt;}
.y79{bottom:244.485037pt;}
.ye7{bottom:245.073231pt;}
.y64{bottom:245.942527pt;}
.ye1{bottom:250.604291pt;}
.yc9{bottom:251.361247pt;}
.yc6{bottom:253.636951pt;}
.y8f{bottom:255.300897pt;}
.y6c{bottom:256.203879pt;}
.y1a{bottom:257.709147pt;}
.yd9{bottom:257.953237pt;}
.y99{bottom:259.880071pt;}
.y28{bottom:265.822773pt;}
.y15{bottom:265.949591pt;}
.y7a{bottom:269.664151pt;}
.ye6{bottom:270.833231pt;}
.y51{bottom:274.699838pt;}
.y48{bottom:275.753298pt;}
.y26{bottom:277.402836pt;}
.y9e{bottom:277.634542pt;}
.yc5{bottom:279.396946pt;}
.y37{bottom:281.802622pt;}
.y6b{bottom:281.963880pt;}
.yd8{bottom:283.713238pt;}
.ya6{bottom:284.165236pt;}
.yb{bottom:294.347252pt;}
.y62{bottom:298.003412pt;}
.y77{bottom:299.023578pt;}
.y35{bottom:299.323632pt;}
.y75{bottom:301.392478pt;}
.y47{bottom:301.513288pt;}
.y39{bottom:304.323342pt;}
.yc4{bottom:305.156942pt;}
.y6a{bottom:307.723871pt;}
.y19{bottom:309.229139pt;}
.yd7{bottom:309.473229pt;}
.ya5{bottom:309.925237pt;}
.y25{bottom:311.002837pt;}
.y2{bottom:311.826767pt;}
.y38{bottom:320.323343pt;}
.y9d{bottom:320.834533pt;}
.y66{bottom:324.964043pt;}
.y46{bottom:327.273289pt;}
.ye{bottom:327.595373pt;}
.y7c{bottom:329.949593pt;}
.y69{bottom:333.483871pt;}
.y18{bottom:334.989139pt;}
.yd6{bottom:335.233229pt;}
.ya4{bottom:335.685237pt;}
.y4f{bottom:338.321014pt;}
.y24{bottom:344.602828pt;}
.ybd{bottom:348.216708pt;}
.y45{bottom:353.033280pt;}
.y68{bottom:359.243872pt;}
.y34{bottom:360.599694pt;}
.ya3{bottom:361.445228pt;}
.y9c{bottom:364.034536pt;}
.yea{bottom:366.605304pt;}
.ybc{bottom:373.976699pt;}
.y23{bottom:378.202829pt;}
.y44{bottom:378.793276pt;}
.ya2{bottom:381.431495pt;}
.y67{bottom:385.003867pt;}
.y1{bottom:385.426759pt;}
.y17{bottom:386.509127pt;}
.yd5{bottom:386.753221pt;}
.yce{bottom:387.370545pt;}
.ye9{bottom:392.365295pt;}
.y33{bottom:394.199695pt;}
.ybb{bottom:399.736694pt;}
.y43{bottom:404.553272pt;}
.ye0{bottom:407.436741pt;}
.y22{bottom:411.802830pt;}
.y16{bottom:412.269127pt;}
.yd4{bottom:412.513222pt;}
.ye8{bottom:418.125296pt;}
.y63{bottom:422.788196pt;}
.y97{bottom:425.150406pt;}
.yba{bottom:425.496690pt;}
.y32{bottom:427.799696pt;}
.ydf{bottom:433.196740pt;}
.y73{bottom:440.055607pt;}
.y54{bottom:442.207870pt;}
.y53{bottom:442.987547pt;}
.y42{bottom:443.646599pt;}
.y41{bottom:450.885317pt;}
.yb9{bottom:451.256685pt;}
.y31{bottom:461.399697pt;}
.ye5{bottom:475.733334pt;}
.y90{bottom:491.463621pt;}
.y98{bottom:494.649096pt;}
.y72{bottom:495.719549pt;}
.ye4{bottom:501.493332pt;}
.y9a{bottom:509.137008pt;}
.y14{bottom:509.475590pt;}
.y30{bottom:510.948031pt;}
.yed{bottom:511.396849pt;}
.ya{bottom:511.533859pt;}
.h11{height:30.029200pt;}
.h1b{height:35.840170pt;}
.hc{height:35.904001pt;}
.hd{height:37.898669pt;}
.h9{height:37.927790pt;}
.h14{height:38.029201pt;}
.h17{height:38.178669pt;}
.h8{height:38.208005pt;}
.h15{height:38.760002pt;}
.h10{height:38.828125pt;}
.h5{height:39.893334pt;}
.h16{height:40.000000pt;}
.h6{height:43.882669pt;}
.ha{height:55.850666pt;}
.hb{height:56.263298pt;}
.h12{height:57.120000pt;}
.h4{height:59.840002pt;}
.h3{height:60.282107pt;}
.h18{height:65.212447pt;}
.hf{height:65.233780pt;}
.he{height:65.508868pt;}
.h13{height:66.080003pt;}
.h1a{height:72.338529pt;}
.h19{height:73.440002pt;}
.h2{height:79.786667pt;}
.h7{height:80.376141pt;}
.h1{height:160.752282pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.000000pt;}
.x9{left:9.000000pt;}
.x64{left:13.225722pt;}
.x10{left:17.866142pt;}
.x1c{left:19.731553pt;}
.x14{left:22.610818pt;}
.xa{left:25.390547pt;}
.x24{left:30.362400pt;}
.x5f{left:35.049138pt;}
.xb{left:42.826118pt;}
.x51{left:44.007143pt;}
.x4c{left:45.799794pt;}
.x1d{left:55.000002pt;}
.x5a{left:56.928404pt;}
.x15{left:57.879267pt;}
.x68{left:60.057745pt;}
.x1{left:62.894716pt;}
.x39{left:65.134384pt;}
.x60{left:70.317587pt;}
.x52{left:79.275593pt;}
.x4d{left:81.068244pt;}
.x26{left:98.989288pt;}
.x37{left:101.062538pt;}
.x67{left:117.047864pt;}
.x53{left:126.669160pt;}
.x33{left:136.294761pt;}
.x61{left:140.027824pt;}
.x4f{left:149.783321pt;}
.x4b{left:153.969475pt;}
.x4a{left:156.163960pt;}
.x29{left:157.722440pt;}
.x63{left:170.266585pt;}
.x3{left:171.242622pt;}
.x2d{left:172.453276pt;}
.x66{left:184.203998pt;}
.x3a{left:196.859058pt;}
.x13{left:200.023836pt;}
.x2b{left:206.786669pt;}
.x46{left:258.924648pt;}
.x5{left:264.520258pt;}
.x47{left:274.656449pt;}
.x45{left:284.735569pt;}
.x2{left:288.000009pt;}
.x8{left:289.811109pt;}
.x57{left:298.745038pt;}
.x32{left:322.047250pt;}
.x50{left:330.250574pt;}
.x5b{left:335.881911pt;}
.x1e{left:348.485581pt;}
.x6a{left:354.120741pt;}
.x1f{left:361.217134pt;}
.x62{left:362.972512pt;}
.x2c{left:373.081412pt;}
.xc{left:378.243598pt;}
.x25{left:382.272533pt;}
.x5c{left:383.881912pt;}
.x6{left:385.540112pt;}
.x17{left:390.398972pt;}
.x20{left:396.485583pt;}
.x2a{left:398.444303pt;}
.x59{left:402.083813pt;}
.x38{left:404.222661pt;}
.x4{left:416.478383pt;}
.x3e{left:439.413081pt;}
.x3c{left:440.331592pt;}
.x3f{left:441.384994pt;}
.x23{left:446.851062pt;}
.x28{left:472.579576pt;}
.xd{left:505.758670pt;}
.x18{left:523.881917pt;}
.x65{left:527.440917pt;}
.x16{left:532.112431pt;}
.x19{left:536.613469pt;}
.x54{left:542.588594pt;}
.x69{left:544.115517pt;}
.x34{left:552.543348pt;}
.x35{left:565.274900pt;}
.x48{left:579.290671pt;}
.x4e{left:583.316347pt;}
.x27{left:595.058184pt;}
.x36{left:600.543349pt;}
.x49{left:614.559120pt;}
.x30{left:623.471998pt;}
.x56{left:633.524498pt;}
.x5d{left:638.118120pt;}
.x58{left:646.587987pt;}
.x12{left:649.566981pt;}
.x5e{left:650.849673pt;}
.x21{left:658.362221pt;}
.xf{left:669.368385pt;}
.x1a{left:671.425221pt;}
.x41{left:688.521552pt;}
.x31{left:693.537877pt;}
.x2f{left:704.514001pt;}
.x22{left:706.362223pt;}
.xe{left:717.385797pt;}
.x40{left:732.908723pt;}
.x55{left:737.812219pt;}
.x43{left:742.550839pt;}
.x42{left:757.328125pt;}
.x3d{left:762.066502pt;}
.x3b{left:781.227903pt;}
.x44{left:796.107742pt;}
.x6b{left:816.968526pt;}
.x11{left:878.938325pt;}
.x2e{left:924.140247pt;}
.x7{left:932.137090pt;}
}




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