
    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_5beb266446a2a4dcd10d93fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_2e71dcb458b15a9e61eb96e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_9184e7666905a7f277a04318.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_db4f988069c0906035e11ef5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_2fa4d9c14d57c97549617c41.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27854173938383f18cce8c52.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_db5d46bdeb40a1861e65c2c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_d224f6febe6d4d8933476761.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d8852759f6794d2c36ea4521.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f8954a38b4db02c0ea9c08b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.746094;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;}
.m1{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);}
.v4{vertical-align:-12.052098px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.319996px;}
.v3{vertical-align:50.400006px;}
.v1{vertical-align:116.684158px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006750px;}
.ls8{letter-spacing:0.012285px;}
.ls2{letter-spacing:0.033750px;}
.ls5{letter-spacing:0.049500px;}
.ls4{letter-spacing:0.052875px;}
.ls7{letter-spacing:0.054563px;}
.ls3{letter-spacing:0.070695px;}
.ls6{letter-spacing:0.140040px;}
.ls0{letter-spacing:0.140058px;}
.lsd{letter-spacing:0.295290px;}
.lsb{letter-spacing:74.995314px;}
.lsc{letter-spacing:81.010551px;}
.lsa{letter-spacing:96.004718px;}
.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;}
}
.ws0{word-spacing:-53.568002px;}
.wsf{word-spacing:-48.816002px;}
.ws12{word-spacing:-43.392003px;}
.ws4{word-spacing:-36.612001px;}
.wse{word-spacing:-32.544001px;}
.ws6{word-spacing:-29.832002px;}
.ws8{word-spacing:-27.120000px;}
.ws2{word-spacing:-24.998401px;}
.wsc{word-spacing:-24.408001px;}
.wsb{word-spacing:-21.696001px;}
.wsd{word-spacing:-18.984000px;}
.ws1{word-spacing:-0.168000px;}
.wsa{word-spacing:-0.108000px;}
.ws11{word-spacing:-0.102000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:66.272096px;}
.ws7{word-spacing:467.283270px;}
.ws10{word-spacing:1156.378993px;}
.ws9{word-spacing:3305.878557px;}
._11{margin-left:-16.451206px;}
._20{margin-left:-11.267528px;}
._22{margin-left:-9.509878px;}
._12{margin-left:-8.256001px;}
._9{margin-left:-6.696000px;}
._24{margin-left:-5.568000px;}
._1{margin-left:-4.452000px;}
._3{margin-left:-3.132795px;}
._0{margin-left:-1.176000px;}
._2{width:1.665428px;}
._21{width:2.936617px;}
._5{width:39.131998px;}
._4{width:96.104098px;}
._1d{width:118.004785px;}
._23{width:144.183942px;}
._16{width:279.956785px;}
._19{width:377.808687px;}
._6{width:454.299270px;}
._1b{width:470.712687px;}
._7{width:491.456251px;}
._d{width:576.078663px;}
._1f{width:583.356642px;}
._18{width:592.940784px;}
._1e{width:654.132603px;}
._15{width:662.568686px;}
._13{width:688.212650px;}
._e{width:715.086668px;}
._1a{width:787.476686px;}
._1c{width:799.404686px;}
._17{width:820.404686px;}
._10{width:1459.122692px;}
._a{width:1526.730694px;}
._14{width:1564.327957px;}
._c{width:1567.374695px;}
._8{width:1675.591494px;}
._b{width:2022.810710px;}
._f{width:2156.946714px;}
.fc8{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(46,117,181);}
.fc3{color:rgb(84,129,53);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(136,136,136);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:72.000002px;}
.fs1{font-size:84.000000px;}
.fsb{font-size:96.000006px;}
.fs4{font-size:100.800003px;}
.fse{font-size:102.000000px;}
.fs5{font-size:108.000003px;}
.fs9{font-size:120.000001px;}
.fs8{font-size:132.000007px;}
.fs3{font-size:144.000005px;}
.fsc{font-size:151.200014px;}
.fs7{font-size:162.000005px;}
.fs2{font-size:167.999999px;}
.fs6{font-size:172.799997px;}
.fs10{font-size:177.600007px;}
.fsa{font-size:192.000012px;}
.fs0{font-size:216.000007px;}
.fsd{font-size:240.000002px;}
.fs12{font-size:360.000012px;}
.fs11{font-size:432.000014px;}
.y0{bottom:0.000000px;}
.yf{bottom:26.771189px;}
.y83{bottom:26.908619px;}
.yda{bottom:28.656858px;}
.ybe{bottom:31.040845px;}
.y65{bottom:35.212740px;}
.yd2{bottom:37.137165px;}
.y5e{bottom:40.622190px;}
.y52{bottom:52.437694px;}
.y2b{bottom:56.626832px;}
.ybd{bottom:64.907009px;}
.y62{bottom:67.113719px;}
.y4{bottom:77.400888px;}
.ya9{bottom:85.222051px;}
.y3d{bottom:85.861245px;}
.y76{bottom:86.493329px;}
.ybc{bottom:97.307014px;}
.y3c{bottom:98.461242px;}
.y61{bottom:99.513720px;}
.y3{bottom:102.600882px;}
.ydf{bottom:103.008971px;}
.y41{bottom:104.236058px;}
.ya7{bottom:109.535603px;}
.y75{bottom:111.693323px;}
.y49{bottom:113.340353px;}
.y2a{bottom:113.888882px;}
.ya8{bottom:115.822049px;}
.y43{bottom:117.016178px;}
.y4a{bottom:117.016257px;}
.y40{bottom:117.539420px;}
.y2{bottom:127.800880px;}
.y82{bottom:127.897133px;}
.ybb{bottom:129.707012px;}
.y5d{bottom:134.228825px;}
.yde{bottom:135.408977px;}
.ydc{bottom:136.609745px;}
.y74{bottom:136.893322px;}
.y6f{bottom:142.592091px;}
.y1e{bottom:142.761117px;}
.ya6{bottom:145.535604px;}
.ye{bottom:146.028016px;}
.y3b{bottom:150.961264px;}
.y1{bottom:159.759656px;}
.y91{bottom:165.132497px;}
.y5c{bottom:166.628826px;}
.y6e{bottom:167.792089px;}
.ydd{bottom:167.808974px;}
.ydb{bottom:169.009743px;}
.y29{bottom:170.071002px;}
.y9e{bottom:170.544613px;}
.y81{bottom:171.097123px;}
.yba{bottom:179.697512px;}
.ya5{bottom:181.535607px;}
.y1d{bottom:182.361119px;}
.y3a{bottom:196.683055px;}
.y5b{bottom:199.028827px;}
.y90{bottom:201.132498px;}
.y9d{bottom:202.944637px;}
.y56{bottom:206.661356px;}
.yb9{bottom:212.097513px;}
.y80{bottom:214.297125px;}
.y1c{bottom:221.961142px;}
.y28{bottom:226.253054px;}
.y5a{bottom:231.428832px;}
.y9c{bottom:235.344672px;}
.y8f{bottom:237.132499px;}
.y58{bottom:238.088034px;}
.y55{bottom:239.061361px;}
.yb8{bottom:244.497519px;}
.yc0{bottom:245.190808px;}
.yd9{bottom:246.552376px;}
.yd7{bottom:247.753078px;}
.yd5{bottom:248.777195px;}
.y1b{bottom:261.561155px;}
.y23{bottom:262.095170px;}
.y59{bottom:263.828830px;}
.y7f{bottom:266.497115px;}
.y9b{bottom:267.744673px;}
.y57{bottom:270.488031px;}
.y39{bottom:270.941787px;}
.y54{bottom:271.461359px;}
.y8e{bottom:273.132500px;}
.yb7{bottom:276.897517px;}
.yd4{bottom:278.297197px;}
.yd8{bottom:278.952374px;}
.yd6{bottom:280.153075px;}
.yd{bottom:281.410599px;}
.y27{bottom:282.435150px;}
.y9f{bottom:298.668543px;}
.y3e{bottom:299.598529px;}
.y9a{bottom:300.144707px;}
.y22{bottom:300.615171px;}
.y1a{bottom:301.161134px;}
.yc{bottom:304.090600px;}
.y8d{bottom:309.132501px;}
.y3f{bottom:309.557276px;}
.y7e{bottom:309.697116px;}
.y38{bottom:310.841789px;}
.y37{bottom:323.441786px;}
.yb{bottom:326.770623px;}
.yb6{bottom:330.135937px;}
.y99{bottom:332.544708px;}
.yce{bottom:333.680160px;}
.y26{bottom:338.617247px;}
.y19{bottom:340.761135px;}
.y8c{bottom:345.132503px;}
.y7d{bottom:352.897084px;}
.yb5{bottom:362.535943px;}
.y98{bottom:364.944698px;}
.yc9{bottom:365.309761px;}
.ycd{bottom:366.080161px;}
.ya0{bottom:371.282646px;}
.y36{bottom:372.040633px;}
.y18{bottom:380.361136px;}
.y8b{bottom:381.132504px;}
.y35{bottom:384.640630px;}
.ya{bottom:391.570625px;}
.y6d{bottom:393.632739px;}
.y25{bottom:394.799333px;}
.yb4{bottom:394.935940px;}
.y97{bottom:397.344677px;}
.yc8{bottom:397.709762px;}
.ycc{bottom:398.480162px;}
.y7c{bottom:405.097086px;}
.y4b{bottom:405.665650px;}
.ye1{bottom:407.809956px;}
.y8a{bottom:417.132505px;}
.y6c{bottom:418.832729px;}
.y17{bottom:419.961126px;}
.y4f{bottom:424.791123px;}
.y96{bottom:429.744678px;}
.yc7{bottom:430.109767px;}
.y9{bottom:430.450627px;}
.ycb{bottom:430.880167px;}
.y34{bottom:433.239453px;}
.ya4{bottom:440.837099px;}
.y6b{bottom:444.032730px;}
.y33{bottom:445.839450px;}
.y7b{bottom:448.297076px;}
.y24{bottom:450.981418px;}
.y89{bottom:453.132506px;}
.yb3{bottom:453.530306px;}
.y4e{bottom:457.191128px;}
.y16{bottom:459.561128px;}
.y95{bottom:462.144679px;}
.y48{bottom:462.346515px;}
.yc6{bottom:462.509765px;}
.yca{bottom:463.280165px;}
.ya3{bottom:466.037089px;}
.y6a{bottom:469.232719px;}
.y8{bottom:469.330628px;}
.yb2{bottom:485.930312px;}
.yc4{bottom:487.441756px;}
.y88{bottom:489.132507px;}
.y4d{bottom:489.591126px;}
.ya2{bottom:491.237092px;}
.y7a{bottom:491.497073px;}
.y69{bottom:494.432714px;}
.y32{bottom:494.438263px;}
.y94{bottom:494.544680px;}
.y47{bottom:494.746516px;}
.y15{bottom:499.161129px;}
.y31{bottom:507.038260px;}
.y21{bottom:507.163515px;}
.y7{bottom:508.210623px;}
.ya1{bottom:516.437093px;}
.yb1{bottom:518.330309px;}
.y68{bottom:519.632721px;}
.yc3{bottom:519.841757px;}
.ye0{bottom:524.449937px;}
.y87{bottom:525.132511px;}
.y93{bottom:526.944685px;}
.y46{bottom:527.146517px;}
.y20{bottom:534.174561px;}
.y73{bottom:535.998428px;}
.y14{bottom:538.761130px;}
.y79{bottom:543.697079px;}
.y67{bottom:544.832715px;}
.y6{bottom:547.090613px;}
.yc2{bottom:552.241763px;}
.y30{bottom:555.637072px;}
.y92{bottom:559.344683px;}
.y45{bottom:559.546523px;}
.y72{bottom:561.198435px;}
.y50{bottom:568.103032px;}
.y2f{bottom:568.237069px;}
.yb0{bottom:568.297207px;}
.y66{bottom:570.032713px;}
.yd1{bottom:582.162194px;}
.y4c{bottom:584.353458px;}
.yc1{bottom:584.641760px;}
.y71{bottom:586.398429px;}
.y78{bottom:586.897080px;}
.y5{bottom:587.266612px;}
.y44{bottom:591.946520px;}
.yaf{bottom:600.697213px;}
.y13{bottom:602.637048px;}
.y70{bottom:611.598427px;}
.y1f{bottom:617.272502px;}
.y2e{bottom:622.657670px;}
.yae{bottom:633.097210px;}
.yd0{bottom:640.482196px;}
.y12{bottom:646.377050px;}
.y85{bottom:657.259317px;}
.yab{bottom:687.919528px;}
.yad{bottom:688.713350px;}
.y11{bottom:690.117046px;}
.y60{bottom:691.235858px;}
.y64{bottom:697.652524px;}
.y2d{bottom:705.833312px;}
.y53{bottom:707.175991px;}
.y86{bottom:707.596202px;}
.y42{bottom:708.311856px;}
.y51{bottom:713.614297px;}
.y2c{bottom:714.669613px;}
.yd3{bottom:717.425480px;}
.y77{bottom:718.163997px;}
.yc5{bottom:720.535880px;}
.y84{bottom:722.059307px;}
.ycf{bottom:723.538392px;}
.ybf{bottom:726.649029px;}
.y10{bottom:734.440240px;}
.y5f{bottom:736.595853px;}
.y63{bottom:738.476525px;}
.yaa{bottom:739.759520px;}
.yac{bottom:740.553343px;}
.h1e{height:59.378908px;}
.hf{height:60.292969px;}
.h1b{height:61.154297px;}
.h22{height:64.933596px;}
.h1a{height:66.574857px;}
.h21{height:68.906254px;}
.h15{height:69.275390px;}
.h1c{height:73.212891px;}
.h11{height:73.828127px;}
.h1d{height:74.507813px;}
.h2{height:75.755859px;}
.h5{height:77.519534px;}
.hd{height:79.171880px;}
.h19{height:86.132813px;}
.h10{height:89.068362px;}
.h9{height:98.964844px;}
.h17{height:103.359378px;}
.h14{height:108.527354px;}
.h8{height:108.861334px;}
.he{height:110.692975px;}
.h7{height:116.279301px;}
.h4{height:118.757816px;}
.h12{height:120.585937px;}
.h13{height:124.695715px;}
.h3{height:129.867192px;}
.hc{height:137.812509px;}
.h6{height:142.509372px;}
.h1f{height:146.467975px;}
.h20{height:155.039067px;}
.h1{height:155.777349px;}
.hb{height:158.343760px;}
.h18{height:172.265626px;}
.h16{height:178.136724px;}
.ha{height:194.203691px;}
.h23{height:356.273449px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x39{left:35.034952px;}
.x2d{left:52.482167px;}
.x28{left:57.917601px;}
.x58{left:59.137089px;}
.x5d{left:64.294843px;}
.x13{left:65.678208px;}
.x7{left:69.325722px;}
.x54{left:70.586699px;}
.x15{left:74.713232px;}
.xb{left:78.999749px;}
.x2a{left:81.036025px;}
.xa{left:95.696928px;}
.x3a{left:98.368939px;}
.x5b{left:100.834859px;}
.x9{left:105.004648px;}
.x1d{left:111.956280px;}
.x60{left:115.847254px;}
.x6{left:117.527655px;}
.x5f{left:126.029463px;}
.x3{left:129.065249px;}
.x14{left:133.662055px;}
.x1e{left:140.756279px;}
.x5{left:148.176710px;}
.x8{left:158.651192px;}
.xc{left:168.845139px;}
.x6b{left:172.454597px;}
.x37{left:184.669487px;}
.x1{left:207.857482px;}
.x1b{left:221.890170px;}
.x19{left:224.007408px;}
.x4{left:246.971260px;}
.x2e{left:264.042361px;}
.x33{left:274.409424px;}
.x67{left:281.964052px;}
.x11{left:317.596780px;}
.x56{left:320.457914px;}
.x53{left:323.514550px;}
.x66{left:327.467227px;}
.x32{left:350.124401px;}
.x40{left:351.330220px;}
.x4b{left:356.297839px;}
.x44{left:357.480542px;}
.x3d{left:363.506479px;}
.x41{left:369.619675px;}
.x30{left:371.117824px;}
.x2{left:375.031589px;}
.x6a{left:377.516611px;}
.x43{left:380.081866px;}
.x16{left:383.350512px;}
.x45{left:394.021097px;}
.x47{left:396.403800px;}
.x46{left:401.661119px;}
.x31{left:414.702790px;}
.x20{left:428.659742px;}
.x10{left:432.926856px;}
.x5a{left:448.670808px;}
.x27{left:458.566811px;}
.x21{left:465.670399px;}
.x2b{left:497.305535px;}
.x48{left:499.727918px;}
.x3b{left:516.827840px;}
.x25{left:521.031639px;}
.x38{left:532.229575px;}
.x1f{left:544.642240px;}
.x62{left:554.887807px;}
.x29{left:562.842671px;}
.x55{left:570.389058px;}
.x61{left:583.061149px;}
.x65{left:608.773954px;}
.x4d{left:632.584179px;}
.x59{left:647.681083px;}
.x49{left:650.737050px;}
.x4a{left:698.153974px;}
.x57{left:708.434123px;}
.x18{left:757.781788px;}
.x22{left:767.807530px;}
.x68{left:777.218259px;}
.x5c{left:783.959875px;}
.x17{left:839.651877px;}
.x3e{left:848.978962px;}
.x3f{left:878.227791px;}
.x69{left:910.491217px;}
.x4e{left:928.832103px;}
.x2c{left:969.540736px;}
.x5e{left:987.503274px;}
.x64{left:997.393848px;}
.x63{left:1016.826466px;}
.x36{left:1022.027658px;}
.x1c{left:1023.507303px;}
.x1a{left:1025.624575px;}
.x2f{left:1030.845138px;}
.x26{left:1060.174654px;}
.xf{left:1063.093388px;}
.x3c{left:1070.015850px;}
.xd{left:1082.001623px;}
.x4c{left:1088.212321px;}
.x35{left:1093.945985px;}
.x52{left:1106.263048px;}
.x51{left:1120.508203px;}
.x42{left:1123.875036px;}
.x50{left:1138.538556px;}
.x4f{left:1155.918074px;}
.x12{left:1187.180059px;}
.x34{left:1335.719895px;}
.xe{left:1350.543345px;}
.x23{left:1365.844544px;}
.x24{left:1394.644542px;}
@media print{
.v4{vertical-align:-10.712976pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.839996pt;}
.v3{vertical-align:44.800005pt;}
.v1{vertical-align:103.719251pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006000pt;}
.ls8{letter-spacing:0.010920pt;}
.ls2{letter-spacing:0.030000pt;}
.ls5{letter-spacing:0.044000pt;}
.ls4{letter-spacing:0.047000pt;}
.ls7{letter-spacing:0.048500pt;}
.ls3{letter-spacing:0.062840pt;}
.ls6{letter-spacing:0.124480pt;}
.ls0{letter-spacing:0.124496pt;}
.lsd{letter-spacing:0.262480pt;}
.lsb{letter-spacing:66.662502pt;}
.lsc{letter-spacing:72.009378pt;}
.lsa{letter-spacing:85.337527pt;}
.ws0{word-spacing:-47.616002pt;}
.wsf{word-spacing:-43.392001pt;}
.ws12{word-spacing:-38.570669pt;}
.ws4{word-spacing:-32.544001pt;}
.wse{word-spacing:-28.928001pt;}
.ws6{word-spacing:-26.517335pt;}
.ws8{word-spacing:-24.106667pt;}
.ws2{word-spacing:-22.220801pt;}
.wsc{word-spacing:-21.696001pt;}
.wsb{word-spacing:-19.285335pt;}
.wsd{word-spacing:-16.874667pt;}
.ws1{word-spacing:-0.149333pt;}
.wsa{word-spacing:-0.096000pt;}
.ws11{word-spacing:-0.090667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:58.908530pt;}
.ws7{word-spacing:415.362907pt;}
.ws10{word-spacing:1027.892438pt;}
.ws9{word-spacing:2938.558717pt;}
._11{margin-left:-14.623294pt;}
._20{margin-left:-10.015580pt;}
._22{margin-left:-8.453225pt;}
._12{margin-left:-7.338667pt;}
._9{margin-left:-5.952000pt;}
._24{margin-left:-4.949334pt;}
._1{margin-left:-3.957333pt;}
._3{margin-left:-2.784707pt;}
._0{margin-left:-1.045333pt;}
._2{width:1.480380pt;}
._21{width:2.610326pt;}
._5{width:34.783998pt;}
._4{width:85.425865pt;}
._1d{width:104.893143pt;}
._23{width:128.163504pt;}
._16{width:248.850475pt;}
._19{width:335.829944pt;}
._6{width:403.821573pt;}
._1b{width:418.411277pt;}
._7{width:436.850001pt;}
._d{width:512.069923pt;}
._1f{width:518.539237pt;}
._18{width:527.058474pt;}
._1e{width:581.451203pt;}
._15{width:588.949943pt;}
._13{width:611.744578pt;}
._e{width:635.632594pt;}
._1a{width:699.979276pt;}
._1c{width:710.581943pt;}
._17{width:729.248610pt;}
._10{width:1296.997948pt;}
._a{width:1357.093950pt;}
._14{width:1390.513740pt;}
._c{width:1393.221951pt;}
._8{width:1489.414661pt;}
._b{width:1798.053964pt;}
._f{width:1917.285968pt;}
.fsf{font-size:64.000002pt;}
.fs1{font-size:74.666666pt;}
.fsb{font-size:85.333339pt;}
.fs4{font-size:89.600003pt;}
.fse{font-size:90.666667pt;}
.fs5{font-size:96.000003pt;}
.fs9{font-size:106.666667pt;}
.fs8{font-size:117.333340pt;}
.fs3{font-size:128.000004pt;}
.fsc{font-size:134.400012pt;}
.fs7{font-size:144.000005pt;}
.fs2{font-size:149.333333pt;}
.fs6{font-size:153.599997pt;}
.fs10{font-size:157.866673pt;}
.fsa{font-size:170.666677pt;}
.fs0{font-size:192.000006pt;}
.fsd{font-size:213.333335pt;}
.fs12{font-size:320.000010pt;}
.fs11{font-size:384.000012pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:23.796613pt;}
.y83{bottom:23.918773pt;}
.yda{bottom:25.472763pt;}
.ybe{bottom:27.591862pt;}
.y65{bottom:31.300213pt;}
.yd2{bottom:33.010813pt;}
.y5e{bottom:36.108613pt;}
.y52{bottom:46.611283pt;}
.y2b{bottom:50.334962pt;}
.ybd{bottom:57.695119pt;}
.y62{bottom:59.656639pt;}
.y4{bottom:68.800789pt;}
.ya9{bottom:75.752934pt;}
.y3d{bottom:76.321106pt;}
.y76{bottom:76.882959pt;}
.ybc{bottom:86.495124pt;}
.y3c{bottom:87.521104pt;}
.y61{bottom:88.456640pt;}
.y3{bottom:91.200784pt;}
.ydf{bottom:91.563530pt;}
.y41{bottom:92.654274pt;}
.ya7{bottom:97.364980pt;}
.y75{bottom:99.282954pt;}
.y49{bottom:100.746980pt;}
.y2a{bottom:101.234562pt;}
.ya8{bottom:102.952932pt;}
.y43{bottom:104.014380pt;}
.y4a{bottom:104.014450pt;}
.y40{bottom:104.479484pt;}
.y2{bottom:113.600783pt;}
.y82{bottom:113.686341pt;}
.ybb{bottom:115.295122pt;}
.y5d{bottom:119.314511pt;}
.yde{bottom:120.363535pt;}
.ydc{bottom:121.430885pt;}
.y74{bottom:121.682953pt;}
.y6f{bottom:126.748525pt;}
.y1e{bottom:126.898771pt;}
.ya6{bottom:129.364981pt;}
.ye{bottom:129.802681pt;}
.y3b{bottom:134.187790pt;}
.y1{bottom:142.008584pt;}
.y91{bottom:146.784442pt;}
.y5c{bottom:148.114512pt;}
.y6e{bottom:149.148524pt;}
.ydd{bottom:149.163533pt;}
.ydb{bottom:150.230883pt;}
.y29{bottom:151.174224pt;}
.y9e{bottom:151.595212pt;}
.y81{bottom:152.086332pt;}
.yba{bottom:159.731122pt;}
.ya5{bottom:161.364984pt;}
.y1d{bottom:162.098772pt;}
.y3a{bottom:174.829383pt;}
.y5b{bottom:176.914513pt;}
.y90{bottom:178.784443pt;}
.y9d{bottom:180.395233pt;}
.y56{bottom:183.698983pt;}
.yb9{bottom:188.531123pt;}
.y80{bottom:190.486333pt;}
.y1c{bottom:197.298793pt;}
.y28{bottom:201.113825pt;}
.y5a{bottom:205.714518pt;}
.y9c{bottom:209.195264pt;}
.y8f{bottom:210.784444pt;}
.y58{bottom:211.633808pt;}
.y55{bottom:212.498988pt;}
.yb8{bottom:217.331128pt;}
.yc0{bottom:217.947385pt;}
.yd9{bottom:219.157668pt;}
.yd7{bottom:220.224958pt;}
.yd5{bottom:221.135284pt;}
.y1b{bottom:232.498804pt;}
.y23{bottom:232.973484pt;}
.y59{bottom:234.514515pt;}
.y7f{bottom:236.886325pt;}
.y9b{bottom:237.995265pt;}
.y57{bottom:240.433806pt;}
.y39{bottom:240.837144pt;}
.y54{bottom:241.298986pt;}
.y8e{bottom:242.784445pt;}
.yb7{bottom:246.131126pt;}
.yd4{bottom:247.375286pt;}
.yd8{bottom:247.957666pt;}
.yd6{bottom:249.024956pt;}
.yd{bottom:250.142755pt;}
.y27{bottom:251.053467pt;}
.y9f{bottom:265.483149pt;}
.y3e{bottom:266.309803pt;}
.y9a{bottom:266.795295pt;}
.y22{bottom:267.213486pt;}
.y1a{bottom:267.698786pt;}
.yc{bottom:270.302756pt;}
.y8d{bottom:274.784446pt;}
.y3f{bottom:275.162023pt;}
.y7e{bottom:275.286326pt;}
.y38{bottom:276.303813pt;}
.y37{bottom:287.503810pt;}
.yb{bottom:290.462776pt;}
.yb6{bottom:293.454166pt;}
.y99{bottom:295.595296pt;}
.yce{bottom:296.604586pt;}
.y26{bottom:300.993109pt;}
.y19{bottom:302.898787pt;}
.y8c{bottom:306.784447pt;}
.y7d{bottom:313.686297pt;}
.yb5{bottom:322.254171pt;}
.y98{bottom:324.395287pt;}
.yc9{bottom:324.719787pt;}
.ycd{bottom:325.404587pt;}
.ya0{bottom:330.029019pt;}
.y36{bottom:330.702785pt;}
.y18{bottom:338.098788pt;}
.y8b{bottom:338.784448pt;}
.y35{bottom:341.902782pt;}
.ya{bottom:348.062778pt;}
.y6d{bottom:349.895768pt;}
.y25{bottom:350.932740pt;}
.yb4{bottom:351.054169pt;}
.y97{bottom:353.195268pt;}
.yc8{bottom:353.519788pt;}
.ycc{bottom:354.204588pt;}
.y7c{bottom:360.086298pt;}
.y4b{bottom:360.591688pt;}
.ye1{bottom:362.497739pt;}
.y8a{bottom:370.784449pt;}
.y6c{bottom:372.295759pt;}
.y17{bottom:373.298779pt;}
.y4f{bottom:377.592109pt;}
.y96{bottom:381.995269pt;}
.yc7{bottom:382.319793pt;}
.y9{bottom:382.622779pt;}
.ycb{bottom:383.004593pt;}
.y34{bottom:385.101736pt;}
.ya4{bottom:391.855199pt;}
.y6b{bottom:394.695760pt;}
.y33{bottom:396.301734pt;}
.y7b{bottom:398.486290pt;}
.y24{bottom:400.872372pt;}
.y89{bottom:402.784450pt;}
.yb3{bottom:403.138050pt;}
.y4e{bottom:406.392114pt;}
.y16{bottom:408.498780pt;}
.y95{bottom:410.795270pt;}
.y48{bottom:410.974680pt;}
.yc6{bottom:411.119791pt;}
.yca{bottom:411.804591pt;}
.ya3{bottom:414.255190pt;}
.y6a{bottom:417.095750pt;}
.y8{bottom:417.182780pt;}
.yb2{bottom:431.938055pt;}
.yc4{bottom:433.281561pt;}
.y88{bottom:434.784451pt;}
.y4d{bottom:435.192112pt;}
.ya2{bottom:436.655193pt;}
.y7a{bottom:436.886287pt;}
.y69{bottom:439.495746pt;}
.y32{bottom:439.500678pt;}
.y94{bottom:439.595271pt;}
.y47{bottom:439.774681pt;}
.y15{bottom:443.698781pt;}
.y31{bottom:450.700675pt;}
.y21{bottom:450.812013pt;}
.y7{bottom:451.742776pt;}
.ya1{bottom:459.055194pt;}
.yb1{bottom:460.738053pt;}
.y68{bottom:461.895752pt;}
.yc3{bottom:462.081562pt;}
.ye0{bottom:466.177722pt;}
.y87{bottom:466.784454pt;}
.y93{bottom:468.395276pt;}
.y46{bottom:468.574682pt;}
.y20{bottom:474.821832pt;}
.y73{bottom:476.443047pt;}
.y14{bottom:478.898782pt;}
.y79{bottom:483.286292pt;}
.y67{bottom:484.295746pt;}
.y6{bottom:486.302768pt;}
.yc2{bottom:490.881567pt;}
.y30{bottom:493.899620pt;}
.y92{bottom:497.195274pt;}
.y45{bottom:497.374687pt;}
.y72{bottom:498.843053pt;}
.y50{bottom:504.980473pt;}
.y2f{bottom:505.099617pt;}
.yb0{bottom:505.153073pt;}
.y66{bottom:506.695745pt;}
.yd1{bottom:517.477506pt;}
.y4c{bottom:519.425296pt;}
.yc1{bottom:519.681565pt;}
.y71{bottom:521.243048pt;}
.y78{bottom:521.686294pt;}
.y5{bottom:522.014767pt;}
.y44{bottom:526.174685pt;}
.yaf{bottom:533.953078pt;}
.y13{bottom:535.677376pt;}
.y70{bottom:543.643046pt;}
.y1f{bottom:548.686669pt;}
.y2e{bottom:553.473485pt;}
.yae{bottom:562.753076pt;}
.yd0{bottom:569.317507pt;}
.y12{bottom:574.557377pt;}
.y85{bottom:584.230504pt;}
.yab{bottom:611.484025pt;}
.yad{bottom:612.189645pt;}
.y11{bottom:613.437375pt;}
.y60{bottom:614.431874pt;}
.y64{bottom:620.135577pt;}
.y2d{bottom:627.407388pt;}
.y53{bottom:628.600881pt;}
.y86{bottom:628.974402pt;}
.y42{bottom:629.610539pt;}
.y51{bottom:634.323819pt;}
.y2c{bottom:635.261878pt;}
.yd3{bottom:637.711537pt;}
.y77{bottom:638.367997pt;}
.yc5{bottom:640.476337pt;}
.y84{bottom:641.830495pt;}
.ycf{bottom:643.145238pt;}
.ybf{bottom:645.910248pt;}
.y10{bottom:652.835769pt;}
.y5f{bottom:654.751869pt;}
.y63{bottom:656.423578pt;}
.yaa{bottom:657.564018pt;}
.yac{bottom:658.269638pt;}
.h1e{height:52.781252pt;}
.hf{height:53.593750pt;}
.h1b{height:54.359375pt;}
.h22{height:57.718752pt;}
.h1a{height:59.177651pt;}
.h21{height:61.250004pt;}
.h15{height:61.578125pt;}
.h1c{height:65.078125pt;}
.h11{height:65.625002pt;}
.h1d{height:66.229167pt;}
.h2{height:67.338541pt;}
.h5{height:68.906252pt;}
.hd{height:70.375004pt;}
.h19{height:76.562501pt;}
.h10{height:79.171878pt;}
.h9{height:87.968751pt;}
.h17{height:91.875003pt;}
.h14{height:96.468759pt;}
.h8{height:96.765630pt;}
.he{height:98.393755pt;}
.h7{height:103.359378pt;}
.h4{height:105.562503pt;}
.h12{height:107.187500pt;}
.h13{height:110.840635pt;}
.h3{height:115.437504pt;}
.hc{height:122.500008pt;}
.h6{height:126.674997pt;}
.h1f{height:130.193755pt;}
.h20{height:137.812504pt;}
.h1{height:138.468754pt;}
.hb{height:140.750009pt;}
.h18{height:153.125001pt;}
.h16{height:158.343755pt;}
.ha{height:172.625504pt;}
.h23{height:316.687510pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x39{left:31.142180pt;}
.x2d{left:46.650815pt;}
.x28{left:51.482312pt;}
.x58{left:52.566302pt;}
.x5d{left:57.150972pt;}
.x13{left:58.380629pt;}
.x7{left:61.622864pt;}
.x54{left:62.743732pt;}
.x15{left:66.411762pt;}
.xb{left:70.221999pt;}
.x2a{left:72.032022pt;}
.xa{left:85.063936pt;}
.x3a{left:87.439057pt;}
.x5b{left:89.630986pt;}
.x9{left:93.337465pt;}
.x1d{left:99.516693pt;}
.x60{left:102.975337pt;}
.x6{left:104.469026pt;}
.x5f{left:112.026190pt;}
.x3{left:114.724666pt;}
.x14{left:118.810716pt;}
.x1e{left:125.116692pt;}
.x5{left:131.712631pt;}
.x8{left:141.023282pt;}
.xc{left:150.084568pt;}
.x6b{left:153.292975pt;}
.x37{left:164.150655pt;}
.x1{left:184.762206pt;}
.x1b{left:197.235706pt;}
.x19{left:199.117696pt;}
.x4{left:219.530009pt;}
.x2e{left:234.704321pt;}
.x33{left:243.919488pt;}
.x67{left:250.634713pt;}
.x11{left:282.308249pt;}
.x56{left:284.851479pt;}
.x53{left:287.568489pt;}
.x66{left:291.081979pt;}
.x32{left:311.221690pt;}
.x40{left:312.293529pt;}
.x4b{left:316.709190pt;}
.x44{left:317.760482pt;}
.x3d{left:323.116870pt;}
.x41{left:328.550823pt;}
.x30{left:329.882511pt;}
.x2{left:333.361413pt;}
.x6a{left:335.570321pt;}
.x43{left:337.850548pt;}
.x16{left:340.756011pt;}
.x45{left:350.240975pt;}
.x47{left:352.358933pt;}
.x46{left:357.032105pt;}
.x31{left:368.624702pt;}
.x20{left:381.030882pt;}
.x10{left:384.823872pt;}
.x5a{left:398.818496pt;}
.x27{left:407.614943pt;}
.x21{left:413.929243pt;}
.x2b{left:442.049364pt;}
.x48{left:444.202594pt;}
.x3b{left:459.402525pt;}
.x25{left:463.139235pt;}
.x38{left:473.092955pt;}
.x1f{left:484.126435pt;}
.x62{left:493.233606pt;}
.x29{left:500.304596pt;}
.x55{left:507.012496pt;}
.x61{left:518.276577pt;}
.x65{left:541.132403pt;}
.x4d{left:562.297048pt;}
.x59{left:575.716518pt;}
.x49{left:578.432934pt;}
.x4a{left:620.581310pt;}
.x57{left:629.719220pt;}
.x18{left:673.583812pt;}
.x22{left:682.495582pt;}
.x68{left:690.860675pt;}
.x5c{left:696.853222pt;}
.x17{left:746.357224pt;}
.x3e{left:754.647966pt;}
.x3f{left:780.646925pt;}
.x69{left:809.325526pt;}
.x4e{left:825.628536pt;}
.x2c{left:861.813988pt;}
.x5e{left:877.780688pt;}
.x64{left:886.572309pt;}
.x63{left:903.845748pt;}
.x36{left:908.469029pt;}
.x1c{left:909.784269pt;}
.x1a{left:911.666289pt;}
.x2f{left:916.306789pt;}
.x26{left:942.377470pt;}
.xf{left:944.971900pt;}
.x3c{left:951.125200pt;}
.xd{left:961.779221pt;}
.x4c{left:967.299841pt;}
.x35{left:972.396431pt;}
.x52{left:983.344931pt;}
.x51{left:996.007292pt;}
.x42{left:999.000032pt;}
.x50{left:1012.034272pt;}
.x4f{left:1027.482733pt;}
.x12{left:1055.271164pt;}
.x34{left:1187.306573pt;}
.xe{left:1200.482973pt;}
.x23{left:1214.084039pt;}
.x24{left:1239.684038pt;}
}




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