
    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_76a3b737dc6daf3100e79d6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_dcd8f64043563dd6b5f4d68c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_e1fd66e6bec075acc6807e0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_9b3ec640db97ec9b1f16702f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_5aec1de3d080b576ae1e325c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_c59a76bdfb3a35ba0bf000e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_cd84f8bb8c76a07d2a703f53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_4d7729bfe648eee069e27f57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_558a89bb02b8c07f3249a916.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bcff3f974ea97603e5288729.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f18b4dfe206329ec23891add.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142578;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440031px;}
.v2{vertical-align:36.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.048063px;}
.lse{letter-spacing:50.050759px;}
.ls4{letter-spacing:58.469150px;}
.ls6{letter-spacing:59.410768px;}
.lsd{letter-spacing:98.189009px;}
.ls13{letter-spacing:102.509004px;}
.ls12{letter-spacing:108.725911px;}
.lsb{letter-spacing:110.165875px;}
.ls10{letter-spacing:120.965848px;}
.ls17{letter-spacing:126.005825px;}
.ls16{letter-spacing:146.885821px;}
.lsf{letter-spacing:151.205852px;}
.lsa{letter-spacing:236.885753px;}
.ls14{letter-spacing:246.245830px;}
.ls15{letter-spacing:270.005821px;}
.ls9{letter-spacing:288.725978px;}
.ls11{letter-spacing:334.805794px;}
.ls7{letter-spacing:351.365902px;}
.ls8{letter-spacing:405.365830px;}
.ls0{letter-spacing:536.405879px;}
.lsc{letter-spacing:606.245897px;}
.ls2{letter-spacing:747.365902px;}
.ls5{letter-spacing:849.029150px;}
.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;}
}
.ws7{word-spacing:-66.242700px;}
.ws6{word-spacing:-27.175258px;}
.ws9{word-spacing:-20.340813px;}
.ws0{word-spacing:-16.554143px;}
.ws5{word-spacing:-16.272611px;}
.ws4{word-spacing:-15.840595px;}
.ws8{word-spacing:-14.970850px;}
.ws2{word-spacing:-14.958623px;}
.ws3{word-spacing:-2.059279px;}
.ws1{word-spacing:0.000000px;}
._30{margin-left:-25.471400px;}
._39{margin-left:-3.316649px;}
._0{margin-left:-1.776037px;}
._1{width:1.975044px;}
._42{width:4.723633px;}
._3e{width:6.267449px;}
._3d{width:7.324640px;}
._3c{width:8.956479px;}
._2f{width:10.262486px;}
._2e{width:11.284030px;}
._48{width:18.708905px;}
._47{width:19.863753px;}
._1b{width:44.066404px;}
._19{width:47.418905px;}
._26{width:50.721207px;}
._35{width:71.370512px;}
._3a{width:78.928587px;}
._45{width:99.398737px;}
._44{width:101.399408px;}
._3b{width:102.459249px;}
._31{width:106.924623px;}
._37{width:109.195669px;}
._41{width:112.144480px;}
._32{width:161.682243px;}
._2{width:164.072733px;}
._f{width:190.974210px;}
._5{width:205.163804px;}
._33{width:210.428163px;}
._4{width:235.602399px;}
._34{width:266.615539px;}
._9{width:338.224319px;}
._43{width:349.127065px;}
._7{width:361.740899px;}
._38{width:370.044028px;}
._36{width:431.992193px;}
._46{width:447.615429px;}
._3f{width:475.563984px;}
._b{width:479.606157px;}
._10{width:529.527356px;}
._6{width:536.246669px;}
._c{width:546.320548px;}
._3{width:563.324495px;}
._d{width:566.101853px;}
._e{width:617.858852px;}
._40{width:628.528031px;}
._12{width:671.047254px;}
._11{width:674.393940px;}
._20{width:825.481184px;}
._8{width:845.455580px;}
._13{width:846.845036px;}
._28{width:927.077439px;}
._1e{width:933.968794px;}
._1a{width:956.719300px;}
._22{width:1023.800997px;}
._2a{width:1052.185123px;}
._25{width:1113.831738px;}
._2b{width:1175.519674px;}
._16{width:1203.000364px;}
._29{width:1205.526085px;}
._1d{width:1223.473225px;}
._23{width:1287.671232px;}
._14{width:1399.900327px;}
._2c{width:1425.592491px;}
._17{width:1456.766409px;}
._21{width:1477.898846px;}
._1c{width:1530.917867px;}
._1f{width:1713.219827px;}
._18{width:1795.873507px;}
._a{width:1824.358012px;}
._24{width:1878.079555px;}
._27{width:1890.033094px;}
._2d{width:1970.559635px;}
._15{width:1989.568606px;}
.fc8{color:rgb(0,0,255);}
.fc5{color:rgb(146,208,80);}
.fc3{color:rgb(0,106,171);}
.fc1{color:rgb(0,102,153);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(165,165,165);}
.fc4{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(153,153,153);}
.fs8{font-size:9.360360px;}
.fs7{font-size:12.240495px;}
.fs4{font-size:54.002250px;}
.fs3{font-size:59.762250px;}
.fs2{font-size:66.242700px;}
.fs9{font-size:72.002705px;}
.fsb{font-size:90.003596px;}
.fs1{font-size:108.004050px;}
.fsa{font-size:120.244505px;}
.fs6{font-size:156.245841px;}
.fs5{font-size:167.766296px;}
.fs0{font-size:192.247646px;}
.y0{bottom:0.000000px;}
.yc6{bottom:3.240006px;}
.y15{bottom:56.160049px;}
.y81{bottom:120.780052px;}
.y80{bottom:138.780052px;}
.yed{bottom:148.680039px;}
.y7f{bottom:156.780052px;}
.yec{bottom:166.680039px;}
.y7e{bottom:174.780052px;}
.yeb{bottom:184.680039px;}
.ya4{bottom:190.080093px;}
.y7d{bottom:192.780052px;}
.y14{bottom:197.820099px;}
.ya3{bottom:208.080093px;}
.y7c{bottom:210.780052px;}
.yea{bottom:214.200096px;}
.ya2{bottom:226.080093px;}
.y13{bottom:228.420043px;}
.ybf{bottom:228.780052px;}
.y7b{bottom:237.780052px;}
.y10{bottom:242.100083px;}
.ya1{bottom:244.080093px;}
.y12{bottom:256.500068px;}
.ybe{bottom:258.300041px;}
.yf{bottom:260.100083px;}
.ye9{bottom:261.720085px;}
.ya0{bottom:262.080093px;}
.y30{bottom:268.200096px;}
.y11{bottom:275.040047px;}
.y7a{bottom:276.120072px;}
.y9f{bottom:289.080093px;}
.y79{bottom:294.120072px;}
.y2f{bottom:297.360077px;}
.ybd{bottom:305.820099px;}
.y9e{bottom:307.080093px;}
.ye8{bottom:311.760064px;}
.ye{bottom:313.380066px;}
.y9d{bottom:325.080093px;}
.y78{bottom:332.280052px;}
.y2e{bottom:335.700096px;}
.ye6{bottom:350.100083px;}
.y77{bottom:350.280052px;}
.yd{bottom:351.540047px;}
.y9c{bottom:354.600083px;}
.ybc{bottom:355.860077px;}
.ye5{bottom:368.100083px;}
.y2d{bottom:373.860077px;}
.ye4{bottom:386.100083px;}
.y76{bottom:388.620072px;}
.yc{bottom:389.880066px;}
.y4a{bottom:399.780052px;}
.ye7{bottom:401.760064px;}
.y9b{bottom:402.120072px;}
.ybb{bottom:403.380066px;}
.ye3{bottom:404.100083px;}
.y75{bottom:406.620072px;}
.y2c{bottom:412.200096px;}
.ye2{bottom:422.100083px;}
.y49{bottom:425.340088px;}
.yb{bottom:428.040047px;}
.ye1{bottom:440.100083px;}
.y74{bottom:444.780052px;}
.yba{bottom:447.300041px;}
.y2b{bottom:450.360077px;}
.y9a{bottom:452.160049px;}
.y48{bottom:452.340088px;}
.ya{bottom:466.380066px;}
.y99{bottom:470.160049px;}
.yb9{bottom:471.060036px;}
.y73{bottom:471.780052px;}
.y47{bottom:474.840088px;}
.ydf{bottom:478.260064px;}
.ydc{bottom:487.260064px;}
.y2a{bottom:488.700096px;}
.ye0{bottom:493.020058px;}
.yb8{bottom:493.740074px;}
.yde{bottom:496.260064px;}
.y72{bottom:498.780052px;}
.y98{bottom:499.680039px;}
.y46{bottom:500.400055px;}
.y9{bottom:504.540047px;}
.ydb{bottom:505.260064px;}
.ydd{bottom:514.260064px;}
.yb7{bottom:517.500068px;}
.y71{bottom:525.780052px;}
.y29{bottom:526.860077px;}
.y45{bottom:527.400055px;}
.y63{bottom:533.340088px;}
.yb6{bottom:540.360077px;}
.y8{bottom:542.880066px;}
.y97{bottom:543.600083px;}
.y44{bottom:549.900055px;}
.y70{bottom:552.780052px;}
.yda{bottom:554.940033px;}
.y62{bottom:561.420043px;}
.yb5{bottom:563.220085px;}
.y96{bottom:563.760064px;}
.y28{bottom:565.200096px;}
.y7{bottom:569.880066px;}
.y6f{bottom:570.780052px;}
.y43{bottom:575.280052px;}
.y95{bottom:586.620072px;}
.y61{bottom:588.420043px;}
.y6e{bottom:588.780052px;}
.yb4{bottom:594.900055px;}
.y6{bottom:596.880066px;}
.yd9{bottom:597.960091px;}
.y42{bottom:602.280052px;}
.y27{bottom:603.360077px;}
.y60{bottom:606.420043px;}
.y6d{bottom:606.780052px;}
.y94{bottom:609.300041px;}
.y5f{bottom:624.420043px;}
.y41{bottom:624.780052px;}
.yd8{bottom:624.960091px;}
.y5{bottom:625.860077px;}
.y26{bottom:630.360077px;}
.y93{bottom:633.060036px;}
.yb3{bottom:637.920043px;}
.y6c{bottom:642.780052px;}
.yd7{bottom:642.960091px;}
.y40{bottom:647.280052px;}
.y5e{bottom:653.760064px;}
.y92{bottom:655.920043px;}
.y6b{bottom:660.780052px;}
.yd6{bottom:660.960091px;}
.y25{bottom:668.700096px;}
.y3f{bottom:672.840088px;}
.y6a{bottom:678.780052px;}
.yb2{bottom:685.260064px;}
.y24{bottom:686.700096px;}
.yd5{bottom:687.960056px;}
.y5d{bottom:696.780052px;}
.y4{bottom:698.040081px;}
.y3e{bottom:699.840054px;}
.y91{bottom:701.640060px;}
.yd4{bottom:705.960056px;}
.y5c{bottom:714.780052px;}
.y3d{bottom:722.340054px;}
.yd3{bottom:723.960056px;}
.y90{bottom:724.500068px;}
.y23{bottom:724.860077px;}
.y5b{bottom:732.780052px;}
.yb1{bottom:732.960056px;}
.yd2{bottom:741.960056px;}
.y3c{bottom:747.900055px;}
.y8f{bottom:748.260064px;}
.y5a{bottom:750.780052px;}
.yd1{bottom:759.960056px;}
.y22{bottom:763.200061px;}
.y59{bottom:768.780052px;}
.y3b{bottom:774.900055px;}
.yd0{bottom:777.960056px;}
.y8e{bottom:779.760064px;}
.y3{bottom:780.840054px;}
.y21{bottom:781.200061px;}
.y58{bottom:786.780052px;}
.yb0{bottom:794.160049px;}
.ycf{bottom:795.960056px;}
.y3a{bottom:797.400055px;}
.y57{bottom:804.780052px;}
.yce{bottom:813.960056px;}
.y20{bottom:819.360077px;}
.y39{bottom:822.780052px;}
.y8d{bottom:827.460056px;}
.yaf{bottom:832.500068px;}
.y56{bottom:840.780052px;}
.ycd{bottom:840.960056px;}
.y38{bottom:849.780052px;}
.y1f{bottom:857.700061px;}
.y55{bottom:858.780052px;}
.y69{bottom:861.120072px;}
.yae{bottom:870.660049px;}
.y37{bottom:872.280052px;}
.y54{bottom:876.780052px;}
.y8c{bottom:877.500068px;}
.y68{bottom:879.120072px;}
.ycc{bottom:879.300076px;}
.y53{bottom:894.780052px;}
.y8b{bottom:895.500068px;}
.y1e{bottom:895.860077px;}
.ycb{bottom:897.300076px;}
.y36{bottom:897.840054px;}
.y2{bottom:899.100083px;}
.yad{bottom:909.000068px;}
.yca{bottom:915.300076px;}
.y67{bottom:917.280052px;}
.y52{bottom:921.780052px;}
.y8a{bottom:922.500068px;}
.y35{bottom:924.840054px;}
.y1d{bottom:934.200061px;}
.y66{bottom:935.280052px;}
.yac{bottom:947.160049px;}
.y34{bottom:947.340054px;}
.y51{bottom:948.780053px;}
.y89{bottom:951.840054px;}
.y1c{bottom:952.200061px;}
.yc9{bottom:953.460056px;}
.yab{bottom:965.160049px;}
.y50{bottom:966.780053px;}
.yc8{bottom:971.460056px;}
.y33{bottom:972.900055px;}
.y65{bottom:973.620072px;}
.yc7{bottom:989.460074px;}
.y1b{bottom:990.360060px;}
.y64{bottom:991.620072px;}
.y4f{bottom:993.780069px;}
.y88{bottom:994.860060px;}
.y32{bottom:997.380066px;}
.yaa{bottom:1003.500068px;}
.y1{bottom:1006.920061px;}
.y1a{bottom:1008.360060px;}
.y4e{bottom:1011.780069px;}
.y87{bottom:1012.860060px;}
.y19{bottom:1026.360060px;}
.y4d{bottom:1029.780069px;}
.ya9{bottom:1030.500068px;}
.y86{bottom:1030.860060px;}
.y31{bottom:1039.860060px;}
.yc5{bottom:1047.420061px;}
.ya8{bottom:1048.500068px;}
.y85{bottom:1048.860060px;}
.yc4{bottom:1050.660067px;}
.yee{bottom:1057.500068px;}
.y4c{bottom:1059.300058px;}
.yc1{bottom:1059.660067px;}
.y18{bottom:1064.700061px;}
.ya7{bottom:1066.500068px;}
.y84{bottom:1066.860060px;}
.yc3{bottom:1068.660067px;}
.yc0{bottom:1077.660067px;}
.y17{bottom:1082.700061px;}
.ya6{bottom:1084.500068px;}
.y83{bottom:1084.860060px;}
.yc2{bottom:1086.660067px;}
.y82{bottom:1102.860060px;}
.y4b{bottom:1106.820065px;}
.ya5{bottom:1113.840070px;}
.y16{bottom:1120.860068px;}
.hd{height:10.315964px;}
.h18{height:16.560001px;}
.h19{height:16.560035px;}
.h6{height:43.683637px;}
.h8{height:44.092168px;}
.ha{height:44.938411px;}
.h9{height:45.123668px;}
.h14{height:45.580388px;}
.h5{height:48.420567px;}
.h7{height:48.873398px;}
.h10{height:60.681967px;}
.he{height:65.886904px;}
.h16{height:67.827608px;}
.hf{height:71.615971px;}
.h4{height:78.946320px;}
.h17{height:79.683637px;}
.h15{height:80.938411px;}
.h12{height:89.520178px;}
.hc{height:114.208996px;}
.h13{height:115.683637px;}
.h11{height:119.598660px;}
.hb{height:122.629953px;}
.h2{height:140.524768px;}
.h3{height:144.561218px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:7.199993px;}
.w3{width:7.740006px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.379998px;}
.xa{left:115.560001px;}
.x28{left:119.519998px;}
.x2{left:120.959997px;}
.x1c{left:124.739997px;}
.x7{left:129.239997px;}
.x13{left:131.040003px;}
.x3{left:133.019998px;}
.x31{left:135.000000px;}
.x29{left:136.620002px;}
.xe{left:138.420001px;}
.x25{left:140.219999px;}
.x1d{left:141.840002px;}
.x8{left:144.180005px;}
.x9{left:154.620002px;}
.xf{left:160.379998px;}
.x14{left:181.080008px;}
.x1a{left:187.379998px;}
.x4{left:191.699993px;}
.x2a{left:206.280001px;}
.xb{left:210.060001px;}
.x1b{left:214.379998px;}
.x2b{left:251.639992px;}
.xd{left:321.480011px;}
.x15{left:337.680005px;}
.xc{left:348.300007px;}
.x2c{left:382.500000px;}
.x1f{left:389.339985px;}
.x1e{left:392.759994px;}
.x2e{left:404.100014px;}
.x20{left:410.579990px;}
.x2d{left:423.180005px;}
.x16{left:444.060001px;}
.x5{left:446.399987px;}
.x22{left:486.540012px;}
.x21{left:487.800007px;}
.x2f{left:524.339985px;}
.x36{left:525.600014px;}
.x35{left:531.000000px;}
.x34{left:532.259994px;}
.x32{left:545.759994px;}
.x33{left:553.500000px;}
.x17{left:561.060001px;}
.x23{left:562.319996px;}
.x26{left:578.700027px;}
.x18{left:585.539978px;}
.x10{left:587.159981px;}
.x24{left:605.700027px;}
.x1{left:615.240006px;}
.x27{left:673.919975px;}
.x11{left:679.679970px;}
.x12{left:724.320030px;}
.x19{left:730.440033px;}
.x30{left:788.580025px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280028pt;}
.v2{vertical-align:32.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.042722pt;}
.lse{letter-spacing:44.489563pt;}
.ls4{letter-spacing:51.972578pt;}
.ls6{letter-spacing:52.809571pt;}
.lsd{letter-spacing:87.279119pt;}
.ls13{letter-spacing:91.119115pt;}
.ls12{letter-spacing:96.645254pt;}
.lsb{letter-spacing:97.925222pt;}
.ls10{letter-spacing:107.525198pt;}
.ls17{letter-spacing:112.005178pt;}
.ls16{letter-spacing:130.565174pt;}
.lsf{letter-spacing:134.405202pt;}
.lsa{letter-spacing:210.565114pt;}
.ls14{letter-spacing:218.885182pt;}
.ls15{letter-spacing:240.005174pt;}
.ls9{letter-spacing:256.645314pt;}
.ls11{letter-spacing:297.605150pt;}
.ls7{letter-spacing:312.325246pt;}
.ls8{letter-spacing:360.325182pt;}
.ls0{letter-spacing:476.805226pt;}
.lsc{letter-spacing:538.885242pt;}
.ls2{letter-spacing:664.325246pt;}
.ls5{letter-spacing:754.692578pt;}
.ws7{word-spacing:-58.882400pt;}
.ws6{word-spacing:-24.155785pt;}
.ws9{word-spacing:-18.080722pt;}
.ws0{word-spacing:-14.714794pt;}
.ws5{word-spacing:-14.464543pt;}
.ws4{word-spacing:-14.080529pt;}
.ws8{word-spacing:-13.307422pt;}
.ws2{word-spacing:-13.296554pt;}
.ws3{word-spacing:-1.830470pt;}
.ws1{word-spacing:0.000000pt;}
._30{margin-left:-22.641244pt;}
._39{margin-left:-2.948132pt;}
._0{margin-left:-1.578700pt;}
._1{width:1.755595pt;}
._42{width:4.198785pt;}
._3e{width:5.571066pt;}
._3d{width:6.510791pt;}
._3c{width:7.961315pt;}
._2f{width:9.122210pt;}
._2e{width:10.030249pt;}
._48{width:16.630138pt;}
._47{width:17.656670pt;}
._1b{width:39.170137pt;}
._19{width:42.150138pt;}
._26{width:45.085518pt;}
._35{width:63.440455pt;}
._3a{width:70.158744pt;}
._45{width:88.354433pt;}
._44{width:90.132807pt;}
._3b{width:91.074888pt;}
._31{width:95.044109pt;}
._37{width:97.062817pt;}
._41{width:99.683982pt;}
._32{width:143.717550pt;}
._2{width:145.842430pt;}
._f{width:169.754853pt;}
._5{width:182.367826pt;}
._33{width:187.047256pt;}
._4{width:209.424355pt;}
._34{width:236.991590pt;}
._9{width:300.643839pt;}
._43{width:310.335169pt;}
._7{width:321.547466pt;}
._38{width:328.928025pt;}
._36{width:383.993060pt;}
._46{width:397.880381pt;}
._3f{width:422.723541pt;}
._b{width:426.316584pt;}
._10{width:470.690983pt;}
._6{width:476.663706pt;}
._c{width:485.618265pt;}
._3{width:500.732884pt;}
._d{width:503.201647pt;}
._e{width:549.207868pt;}
._40{width:558.691583pt;}
._12{width:596.486448pt;}
._11{width:599.461280pt;}
._20{width:733.761052pt;}
._8{width:751.516071pt;}
._13{width:752.751143pt;}
._28{width:824.068835pt;}
._1e{width:830.194484pt;}
._1a{width:850.417156pt;}
._22{width:910.045331pt;}
._2a{width:935.275665pt;}
._25{width:990.072656pt;}
._2b{width:1044.906377pt;}
._16{width:1069.333656pt;}
._29{width:1071.578742pt;}
._1d{width:1087.531755pt;}
._23{width:1144.596651pt;}
._14{width:1244.355846pt;}
._2c{width:1267.193326pt;}
._17{width:1294.903475pt;}
._21{width:1313.687863pt;}
._1c{width:1360.815881pt;}
._1f{width:1522.862068pt;}
._18{width:1596.332007pt;}
._a{width:1621.651566pt;}
._24{width:1669.404049pt;}
._27{width:1680.029417pt;}
._2d{width:1751.608564pt;}
._15{width:1768.505427pt;}
.fs8{font-size:8.320320pt;}
.fs7{font-size:10.880440pt;}
.fs4{font-size:48.002000pt;}
.fs3{font-size:53.122000pt;}
.fs2{font-size:58.882400pt;}
.fs9{font-size:64.002404pt;}
.fsb{font-size:80.003196pt;}
.fs1{font-size:96.003600pt;}
.fsa{font-size:106.884004pt;}
.fs6{font-size:138.885192pt;}
.fs5{font-size:149.125596pt;}
.fs0{font-size:170.886796pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:2.880005pt;}
.y15{bottom:49.920044pt;}
.y81{bottom:107.360047pt;}
.y80{bottom:123.360047pt;}
.yed{bottom:132.160035pt;}
.y7f{bottom:139.360047pt;}
.yec{bottom:148.160035pt;}
.y7e{bottom:155.360047pt;}
.yeb{bottom:164.160035pt;}
.ya4{bottom:168.960083pt;}
.y7d{bottom:171.360047pt;}
.y14{bottom:175.840088pt;}
.ya3{bottom:184.960083pt;}
.y7c{bottom:187.360047pt;}
.yea{bottom:190.400086pt;}
.ya2{bottom:200.960083pt;}
.y13{bottom:203.040039pt;}
.ybf{bottom:203.360047pt;}
.y7b{bottom:211.360047pt;}
.y10{bottom:215.200074pt;}
.ya1{bottom:216.960083pt;}
.y12{bottom:228.000061pt;}
.ybe{bottom:229.600037pt;}
.yf{bottom:231.200074pt;}
.ye9{bottom:232.640076pt;}
.ya0{bottom:232.960083pt;}
.y30{bottom:238.400086pt;}
.y11{bottom:244.480042pt;}
.y7a{bottom:245.440064pt;}
.y9f{bottom:256.960083pt;}
.y79{bottom:261.440064pt;}
.y2f{bottom:264.320069pt;}
.ybd{bottom:271.840088pt;}
.y9e{bottom:272.960083pt;}
.ye8{bottom:277.120057pt;}
.ye{bottom:278.560059pt;}
.y9d{bottom:288.960083pt;}
.y78{bottom:295.360047pt;}
.y2e{bottom:298.400086pt;}
.ye6{bottom:311.200074pt;}
.y77{bottom:311.360047pt;}
.yd{bottom:312.480042pt;}
.y9c{bottom:315.200074pt;}
.ybc{bottom:316.320069pt;}
.ye5{bottom:327.200074pt;}
.y2d{bottom:332.320069pt;}
.ye4{bottom:343.200074pt;}
.y76{bottom:345.440064pt;}
.yc{bottom:346.560059pt;}
.y4a{bottom:355.360047pt;}
.ye7{bottom:357.120057pt;}
.y9b{bottom:357.440064pt;}
.ybb{bottom:358.560059pt;}
.ye3{bottom:359.200074pt;}
.y75{bottom:361.440064pt;}
.y2c{bottom:366.400086pt;}
.ye2{bottom:375.200074pt;}
.y49{bottom:378.080079pt;}
.yb{bottom:380.480042pt;}
.ye1{bottom:391.200074pt;}
.y74{bottom:395.360047pt;}
.yba{bottom:397.600037pt;}
.y2b{bottom:400.320069pt;}
.y9a{bottom:401.920044pt;}
.y48{bottom:402.080079pt;}
.ya{bottom:414.560059pt;}
.y99{bottom:417.920044pt;}
.yb9{bottom:418.720032pt;}
.y73{bottom:419.360047pt;}
.y47{bottom:422.080079pt;}
.ydf{bottom:425.120057pt;}
.ydc{bottom:433.120057pt;}
.y2a{bottom:434.400086pt;}
.ye0{bottom:438.240052pt;}
.yb8{bottom:438.880066pt;}
.yde{bottom:441.120057pt;}
.y72{bottom:443.360047pt;}
.y98{bottom:444.160035pt;}
.y46{bottom:444.800049pt;}
.y9{bottom:448.480042pt;}
.ydb{bottom:449.120057pt;}
.ydd{bottom:457.120057pt;}
.yb7{bottom:460.000061pt;}
.y71{bottom:467.360047pt;}
.y29{bottom:468.320069pt;}
.y45{bottom:468.800049pt;}
.y63{bottom:474.080079pt;}
.yb6{bottom:480.320069pt;}
.y8{bottom:482.560059pt;}
.y97{bottom:483.200074pt;}
.y44{bottom:488.800049pt;}
.y70{bottom:491.360047pt;}
.yda{bottom:493.280030pt;}
.y62{bottom:499.040039pt;}
.yb5{bottom:500.640076pt;}
.y96{bottom:501.120057pt;}
.y28{bottom:502.400086pt;}
.y7{bottom:506.560059pt;}
.y6f{bottom:507.360047pt;}
.y43{bottom:511.360047pt;}
.y95{bottom:521.440064pt;}
.y61{bottom:523.040039pt;}
.y6e{bottom:523.360047pt;}
.yb4{bottom:528.800049pt;}
.y6{bottom:530.560059pt;}
.yd9{bottom:531.520081pt;}
.y42{bottom:535.360047pt;}
.y27{bottom:536.320069pt;}
.y60{bottom:539.040039pt;}
.y6d{bottom:539.360047pt;}
.y94{bottom:541.600037pt;}
.y5f{bottom:555.040039pt;}
.y41{bottom:555.360047pt;}
.yd8{bottom:555.520081pt;}
.y5{bottom:556.320069pt;}
.y26{bottom:560.320069pt;}
.y93{bottom:562.720032pt;}
.yb3{bottom:567.040039pt;}
.y6c{bottom:571.360047pt;}
.yd7{bottom:571.520081pt;}
.y40{bottom:575.360047pt;}
.y5e{bottom:581.120057pt;}
.y92{bottom:583.040039pt;}
.y6b{bottom:587.360047pt;}
.yd6{bottom:587.520081pt;}
.y25{bottom:594.400086pt;}
.y3f{bottom:598.080079pt;}
.y6a{bottom:603.360047pt;}
.yb2{bottom:609.120057pt;}
.y24{bottom:610.400086pt;}
.yd5{bottom:611.520050pt;}
.y5d{bottom:619.360047pt;}
.y4{bottom:620.480072pt;}
.y3e{bottom:622.080048pt;}
.y91{bottom:623.680054pt;}
.yd4{bottom:627.520050pt;}
.y5c{bottom:635.360047pt;}
.y3d{bottom:642.080048pt;}
.yd3{bottom:643.520050pt;}
.y90{bottom:644.000061pt;}
.y23{bottom:644.320069pt;}
.y5b{bottom:651.360047pt;}
.yb1{bottom:651.520050pt;}
.yd2{bottom:659.520050pt;}
.y3c{bottom:664.800049pt;}
.y8f{bottom:665.120057pt;}
.y5a{bottom:667.360047pt;}
.yd1{bottom:675.520050pt;}
.y22{bottom:678.400055pt;}
.y59{bottom:683.360047pt;}
.y3b{bottom:688.800049pt;}
.yd0{bottom:691.520050pt;}
.y8e{bottom:693.120057pt;}
.y3{bottom:694.080048pt;}
.y21{bottom:694.400055pt;}
.y58{bottom:699.360047pt;}
.yb0{bottom:705.920044pt;}
.ycf{bottom:707.520050pt;}
.y3a{bottom:708.800049pt;}
.y57{bottom:715.360047pt;}
.yce{bottom:723.520050pt;}
.y20{bottom:728.320069pt;}
.y39{bottom:731.360047pt;}
.y8d{bottom:735.520050pt;}
.yaf{bottom:740.000061pt;}
.y56{bottom:747.360047pt;}
.ycd{bottom:747.520050pt;}
.y38{bottom:755.360047pt;}
.y1f{bottom:762.400055pt;}
.y55{bottom:763.360047pt;}
.y69{bottom:765.440064pt;}
.yae{bottom:773.920044pt;}
.y37{bottom:775.360047pt;}
.y54{bottom:779.360047pt;}
.y8c{bottom:780.000061pt;}
.y68{bottom:781.440064pt;}
.ycc{bottom:781.600068pt;}
.y53{bottom:795.360047pt;}
.y8b{bottom:796.000061pt;}
.y1e{bottom:796.320069pt;}
.ycb{bottom:797.600068pt;}
.y36{bottom:798.080048pt;}
.y2{bottom:799.200074pt;}
.yad{bottom:808.000061pt;}
.yca{bottom:813.600068pt;}
.y67{bottom:815.360047pt;}
.y52{bottom:819.360047pt;}
.y8a{bottom:820.000061pt;}
.y35{bottom:822.080048pt;}
.y1d{bottom:830.400055pt;}
.y66{bottom:831.360047pt;}
.yac{bottom:841.920044pt;}
.y34{bottom:842.080048pt;}
.y51{bottom:843.360047pt;}
.y89{bottom:846.080048pt;}
.y1c{bottom:846.400055pt;}
.yc9{bottom:847.520050pt;}
.yab{bottom:857.920044pt;}
.y50{bottom:859.360047pt;}
.yc8{bottom:863.520050pt;}
.y33{bottom:864.800049pt;}
.y65{bottom:865.440064pt;}
.yc7{bottom:879.520066pt;}
.y1b{bottom:880.320054pt;}
.y64{bottom:881.440064pt;}
.y4f{bottom:883.360062pt;}
.y88{bottom:884.320054pt;}
.y32{bottom:886.560059pt;}
.yaa{bottom:892.000061pt;}
.y1{bottom:895.040055pt;}
.y1a{bottom:896.320054pt;}
.y4e{bottom:899.360062pt;}
.y87{bottom:900.320054pt;}
.y19{bottom:912.320054pt;}
.y4d{bottom:915.360062pt;}
.ya9{bottom:916.000061pt;}
.y86{bottom:916.320054pt;}
.y31{bottom:924.320054pt;}
.yc5{bottom:931.040055pt;}
.ya8{bottom:932.000061pt;}
.y85{bottom:932.320054pt;}
.yc4{bottom:933.920060pt;}
.yee{bottom:940.000061pt;}
.y4c{bottom:941.600052pt;}
.yc1{bottom:941.920060pt;}
.y18{bottom:946.400055pt;}
.ya7{bottom:948.000061pt;}
.y84{bottom:948.320054pt;}
.yc3{bottom:949.920060pt;}
.yc0{bottom:957.920060pt;}
.y17{bottom:962.400055pt;}
.ya6{bottom:964.000061pt;}
.y83{bottom:964.320054pt;}
.yc2{bottom:965.920060pt;}
.y82{bottom:980.320054pt;}
.y4b{bottom:983.840058pt;}
.ya5{bottom:990.080063pt;}
.y16{bottom:996.320061pt;}
.hd{height:9.169746pt;}
.h18{height:14.720001pt;}
.h19{height:14.720031pt;}
.h6{height:38.829899pt;}
.h8{height:39.193038pt;}
.ha{height:39.945254pt;}
.h9{height:40.109927pt;}
.h14{height:40.515900pt;}
.h5{height:43.040504pt;}
.h7{height:43.443021pt;}
.h10{height:53.939526pt;}
.he{height:58.566137pt;}
.h16{height:60.291207pt;}
.hf{height:63.658641pt;}
.h4{height:70.174506pt;}
.h17{height:70.829899pt;}
.h15{height:71.945254pt;}
.h12{height:79.573491pt;}
.hc{height:101.519108pt;}
.h13{height:102.829899pt;}
.h11{height:106.309920pt;}
.hb{height:109.004403pt;}
.h2{height:124.910905pt;}
.h3{height:128.498860pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:6.399994pt;}
.w3{width:6.880005pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.559998pt;}
.xa{left:102.720001pt;}
.x28{left:106.239998pt;}
.x2{left:107.519997pt;}
.x1c{left:110.879997pt;}
.x7{left:114.879997pt;}
.x13{left:116.480003pt;}
.x3{left:118.239998pt;}
.x31{left:120.000000pt;}
.x29{left:121.440002pt;}
.xe{left:123.040001pt;}
.x25{left:124.639999pt;}
.x1d{left:126.080002pt;}
.x8{left:128.160004pt;}
.x9{left:137.440002pt;}
.xf{left:142.559998pt;}
.x14{left:160.960007pt;}
.x1a{left:166.559998pt;}
.x4{left:170.399994pt;}
.x2a{left:183.360001pt;}
.xb{left:186.720001pt;}
.x1b{left:190.559998pt;}
.x2b{left:223.679993pt;}
.xd{left:285.760010pt;}
.x15{left:300.160004pt;}
.xc{left:309.600006pt;}
.x2c{left:340.000000pt;}
.x1f{left:346.079987pt;}
.x1e{left:349.119995pt;}
.x2e{left:359.200012pt;}
.x20{left:364.959991pt;}
.x2d{left:376.160004pt;}
.x16{left:394.720001pt;}
.x5{left:396.799988pt;}
.x22{left:432.480011pt;}
.x21{left:433.600006pt;}
.x2f{left:466.079987pt;}
.x36{left:467.200012pt;}
.x35{left:472.000000pt;}
.x34{left:473.119995pt;}
.x32{left:485.119995pt;}
.x33{left:492.000000pt;}
.x17{left:498.720001pt;}
.x23{left:499.839996pt;}
.x26{left:514.400024pt;}
.x18{left:520.479980pt;}
.x10{left:521.919983pt;}
.x24{left:538.400024pt;}
.x1{left:546.880005pt;}
.x27{left:599.039978pt;}
.x11{left:604.159973pt;}
.x12{left:643.840027pt;}
.x19{left:649.280029pt;}
.x30{left:700.960022pt;}
}




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