
    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_2209bc1a1b6c6bb1a4be97d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_f249747aa92ce2ba90480b3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_74b0f7ec49b78b56ee8fbdb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_0f7930a14177af22ed495533.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_b93ed0b35262fc4e9332474a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_560c49f9bb8d377fce2daa96.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693359;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_dd1b6c0a5bca8f0f9a7d70df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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);}
.v5{vertical-align:-31.679901px;}
.v2{vertical-align:-25.920045px;}
.v3{vertical-align:-1.439964px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v4{vertical-align:25.919910px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006961px;}
.ls1{letter-spacing:0.030450px;}
.ls3{letter-spacing:0.079079px;}
.ls5{letter-spacing:0.358898px;}
.ls6{letter-spacing:0.359127px;}
.ls4{letter-spacing:3.599042px;}
.ls2{letter-spacing:570.959118px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.wse{word-spacing:-42.776581px;}
.ws6{word-spacing:-23.839979px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws9{word-spacing:-19.800788px;}
.ws4{word-spacing:-11.520450px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:453.737600px;}
.wsb{word-spacing:457.393011px;}
.wsc{word-spacing:795.737600px;}
.ws7{word-spacing:795.737636px;}
.wsd{word-spacing:799.393011px;}
.ws8{word-spacing:799.393047px;}
.ws5{word-spacing:1696.562555px;}
._a{margin-left:-16.131106px;}
._7{margin-left:-12.882523px;}
._5{margin-left:-11.251527px;}
._9{margin-left:-9.828503px;}
._2b{margin-left:-8.797994px;}
._4{margin-left:-7.793649px;}
._3{margin-left:-6.222297px;}
._6{margin-left:-4.942409px;}
._2{margin-left:-3.936416px;}
._1{margin-left:-2.369907px;}
._8{margin-left:-1.336733px;}
._0{width:1.048595px;}
._c{width:2.851240px;}
._e{width:4.369227px;}
._11{width:6.040873px;}
._10{width:7.478196px;}
._1b{width:8.497610px;}
._12{width:10.169666px;}
._17{width:11.364700px;}
._15{width:12.557862px;}
._f{width:14.070737px;}
._d{width:15.207405px;}
._37{width:16.953019px;}
._29{width:19.534128px;}
._2e{width:21.281629px;}
._2f{width:22.383171px;}
._36{width:72.312246px;}
._21{width:88.183386px;}
._20{width:92.658503px;}
._1f{width:93.660985px;}
._1e{width:94.818552px;}
._25{width:97.533336px;}
._24{width:101.402141px;}
._2c{width:102.738530px;}
._22{width:106.741110px;}
._34{width:162.339046px;}
._3d{width:172.236759px;}
._2d{width:209.095920px;}
._35{width:227.612089px;}
._13{width:237.334202px;}
._27{width:241.203014px;}
._18{width:243.199914px;}
._2a{width:252.908253px;}
._3b{width:259.115093px;}
._1c{width:262.342184px;}
._3a{width:276.230084px;}
._23{width:278.854027px;}
._3c{width:280.352951px;}
._b{width:281.454430px;}
._19{width:284.618242px;}
._26{width:286.346889px;}
._33{width:288.316424px;}
._1d{width:305.124509px;}
._28{width:379.294394px;}
._32{width:414.312282px;}
._30{width:504.339082px;}
._31{width:569.612125px;}
._39{width:589.615415px;}
._38{width:593.241538px;}
._3e{width:820.357111px;}
._16{width:1010.359069px;}
._40{width:1149.823740px;}
._1a{width:1344.217749px;}
._14{width:1697.938895px;}
._3f{width:1800.658615px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:46.081800px;}
.fs7{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs9{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1f{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y35{bottom:41.040115px;}
.y9b{bottom:100.620072px;}
.ya3{bottom:102.420043px;}
.y56{bottom:104.400055px;}
.y121{bottom:108.900055px;}
.ycd{bottom:109.080093px;}
.ye7{bottom:113.040047px;}
.y75{bottom:118.800041px;}
.yb2{bottom:119.520058px;}
.y5f{bottom:121.320099px;}
.ya2{bottom:126.180039px;}
.y9a{bottom:129.060036px;}
.yfe{bottom:132.660049px;}
.ycc{bottom:132.840088px;}
.y120{bottom:134.640060px;}
.ye6{bottom:136.980079px;}
.y88{bottom:138.600083px;}
.y5e{bottom:145.260064px;}
.y74{bottom:147.240074px;}
.yb1{bottom:148.140060px;}
.y55{bottom:149.940033px;}
.y34{bottom:150.300041px;}
.y99{bottom:157.680039px;}
.y11f{bottom:160.020058px;}
.ye5{bottom:160.740074px;}
.yfd{bottom:161.280052px;}
.ycb{bottom:164.520058px;}
.y87{bottom:167.040047px;}
.y92{bottom:174.060036px;}
.yb0{bottom:176.580093px;}
.y54{bottom:178.380066px;}
.yb9{bottom:178.560036px;}
.y33{bottom:178.920043px;}
.ye4{bottom:184.500068px;}
.y11e{bottom:185.400055px;}
.y98{bottom:186.120072px;}
.yfc{bottom:189.720085px;}
.y86{bottom:190.800041px;}
.y73{bottom:204.300041px;}
.yaf{bottom:205.200096px;}
.y53{bottom:207.000068px;}
.ye3{bottom:208.260064px;}
.y11d{bottom:210.780052px;}
.y97{bottom:214.740074px;}
.yfb{bottom:218.340088px;}
.y72{bottom:232.920043px;}
.yae{bottom:233.640060px;}
.y52{bottom:235.440033px;}
.yb8{bottom:235.620072px;}
.y32{bottom:235.980079px;}
.y1d{bottom:235.980150px;}
.ye2{bottom:238.500068px;}
.y96{bottom:243.180039px;}
.yfa{bottom:246.780052px;}
.y71{bottom:261.360077px;}
.yad{bottom:262.260064px;}
.y51{bottom:264.060036px;}
.y31{bottom:264.420043px;}
.yf9{bottom:275.400055px;}
.y11c{bottom:286.740074px;}
.y70{bottom:289.980079px;}
.yac{bottom:290.700096px;}
.y50{bottom:292.500068px;}
.yb7{bottom:292.680039px;}
.y1c{bottom:293.040150px;}
.y95{bottom:300.240074px;}
.yf8{bottom:303.840088px;}
.y11b{bottom:312.120072px;}
.y6f{bottom:318.420043px;}
.yab{bottom:319.320099px;}
.y4f{bottom:321.120072px;}
.y30{bottom:321.480079px;}
.y1b{bottom:321.480150px;}
.y94{bottom:328.860077px;}
.yf7{bottom:332.460091px;}
.ye1{bottom:337.140060px;}
.y11a{bottom:337.500068px;}
.y6e{bottom:347.040047px;}
.yaa{bottom:347.760064px;}
.y4e{bottom:349.560036px;}
.yb6{bottom:349.740074px;}
.y1a{bottom:350.100150px;}
.y6a{bottom:357.300041px;}
.yf6{bottom:360.900055px;}
.y119{bottom:362.880066px;}
.ye0{bottom:365.760064px;}
.ya9{bottom:376.380066px;}
.y4d{bottom:378.180039px;}
.y19{bottom:378.540150px;}
.y69{bottom:385.920043px;}
.y118{bottom:388.260064px;}
.yf5{bottom:389.520058px;}
.ydf{bottom:394.200096px;}
.y6d{bottom:404.100083px;}
.ya8{bottom:404.820099px;}
.y4c{bottom:406.620072px;}
.yb5{bottom:406.800041px;}
.y2f{bottom:407.160049px;}
.y18{bottom:407.160150px;}
.y117{bottom:413.640060px;}
.y68{bottom:414.360077px;}
.yf4{bottom:418.140060px;}
.yde{bottom:422.820099px;}
.y4b{bottom:435.240074px;}
.y91{bottom:435.600083px;}
.y17{bottom:435.600150px;}
.y116{bottom:438.840088px;}
.y67{bottom:442.980079px;}
.y6c{bottom:461.160049px;}
.ya7{bottom:461.880066px;}
.y4a{bottom:463.680039px;}
.yb4{bottom:463.860077px;}
.y2e{bottom:464.220085px;}
.y66{bottom:471.420043px;}
.yf3{bottom:475.200096px;}
.ydd{bottom:479.880066px;}
.ya1{bottom:482.760064px;}
.y6b{bottom:489.600083px;}
.ya6{bottom:490.500068px;}
.y49{bottom:492.300041px;}
.y2d{bottom:492.660049px;}
.y16{bottom:492.660150px;}
.y65{bottom:500.040047px;}
.yf2{bottom:503.640060px;}
.ydc{bottom:508.320099px;}
.yca{bottom:510.840088px;}
.y115{bottom:514.980079px;}
.ya5{bottom:518.940033px;}
.y48{bottom:520.740074px;}
.yb3{bottom:520.920043px;}
.y2c{bottom:521.280052px;}
.y15{bottom:521.280150px;}
.yf1{bottom:532.260064px;}
.ya0{bottom:535.140060px;}
.ydb{bottom:536.940033px;}
.y114{bottom:540.360077px;}
.ya4{bottom:547.560036px;}
.y47{bottom:549.360077px;}
.y2b{bottom:549.720085px;}
.y14{bottom:549.720150px;}
.y64{bottom:557.100083px;}
.y113{bottom:565.740074px;}
.yc9{bottom:567.900055px;}
.y46{bottom:577.800041px;}
.yff{bottom:577.980079px;}
.y13{bottom:578.340000px;}
.y2a{bottom:578.340088px;}
.y63{bottom:580.860077px;}
.y9f{bottom:587.340088px;}
.yf0{bottom:589.320099px;}
.y112{bottom:591.120072px;}
.yda{bottom:594.000068px;}
.yc8{bottom:596.340088px;}
.y85{bottom:604.620072px;}
.y45{bottom:606.420043px;}
.y12{bottom:606.780000px;}
.y29{bottom:606.780052px;}
.y9e{bottom:611.280052px;}
.yef{bottom:618.300041px;}
.yc7{bottom:624.960091px;}
.y84{bottom:633.060036px;}
.y5d{bottom:635.040047px;}
.y11{bottom:635.400000px;}
.y28{bottom:635.400055px;}
.y111{bottom:641.700096px;}
.yee{bottom:648.000068px;}
.yc6{bottom:653.400055px;}
.y44{bottom:663.480079px;}
.y27{bottom:663.840088px;}
.y110{bottom:667.080093px;}
.yed{bottom:677.700096px;}
.yc5{bottom:682.020058px;}
.y83{bottom:690.120072px;}
.y43{bottom:691.920078px;}
.y5c{bottom:692.100083px;}
.y26{bottom:692.460056px;}
.yec{bottom:707.400055px;}
.yd9{bottom:708.120072px;}
.y10f{bottom:717.840054px;}
.y82{bottom:718.740074px;}
.y42{bottom:720.540081px;}
.y10{bottom:720.900000px;}
.y25{bottom:720.900055px;}
.yeb{bottom:737.100083px;}
.yd8{bottom:737.460056px;}
.yc4{bottom:739.080059px;}
.y10e{bottom:743.220051px;}
.y81{bottom:747.180073px;}
.y41{bottom:748.980079px;}
.y5b{bottom:749.160049px;}
.yf{bottom:749.520000px;}
.y90{bottom:749.520058px;}
.y9d{bottom:753.840054px;}
.yd7{bottom:766.980079px;}
.yea{bottom:767.160049px;}
.yc3{bottom:768.420078px;}
.y10d{bottom:768.600083px;}
.y80{bottom:775.800076px;}
.y5a{bottom:777.600083px;}
.ye{bottom:777.960000px;}
.y24{bottom:777.960056px;}
.y93{bottom:780.480079px;}
.y10c{bottom:793.980079px;}
.yd6{bottom:796.680073px;}
.ye9{bottom:796.860077px;}
.yc2{bottom:797.940067px;}
.y7f{bottom:804.240074px;}
.y40{bottom:806.040081px;}
.y9c{bottom:806.220051px;}
.yd{bottom:806.580000px;}
.y10b{bottom:819.180073px;}
.yd3{bottom:825.840054px;}
.ye8{bottom:826.380066px;}
.yc1{bottom:827.640060px;}
.y7e{bottom:832.860077px;}
.y3f{bottom:834.660049px;}
.yc{bottom:835.020000px;}
.y8f{bottom:835.020058px;}
.y10a{bottom:844.560070px;}
.yd2{bottom:855.720051px;}
.ybe{bottom:856.800076px;}
.y7d{bottom:861.300076px;}
.y59{bottom:863.280052px;}
.y23{bottom:863.640060px;}
.y109{bottom:869.940067px;}
.yd5{bottom:885.060070px;}
.yd1{bottom:885.420078px;}
.yc0{bottom:886.140060px;}
.ybd{bottom:886.500068px;}
.y7c{bottom:889.920078px;}
.y58{bottom:891.720051px;}
.yb{bottom:892.080000px;}
.y22{bottom:892.080059px;}
.y108{bottom:895.320065px;}
.yd4{bottom:914.760064px;}
.yd0{bottom:915.120072px;}
.ybf{bottom:916.020058px;}
.ybc{bottom:916.200061px;}
.y7b{bottom:918.360077px;}
.y57{bottom:920.340054px;}
.ya{bottom:920.700000px;}
.y8e{bottom:920.700061px;}
.y3e{bottom:928.080059px;}
.ybb{bottom:945.900055px;}
.y107{bottom:946.080059px;}
.y7a{bottom:946.980079px;}
.y3d{bottom:948.780053px;}
.y9{bottom:949.140000px;}
.y8d{bottom:949.140060px;}
.y106{bottom:971.460056px;}
.ycf{bottom:974.340054px;}
.y79{bottom:975.420061px;}
.y3c{bottom:977.400072px;}
.y8{bottom:977.760000px;}
.y8c{bottom:977.760064px;}
.y105{bottom:996.840070px;}
.y78{bottom:1004.040064px;}
.yba{bottom:1004.940067px;}
.y3b{bottom:1005.840070px;}
.y7{bottom:1006.200000px;}
.y8b{bottom:1006.200061px;}
.y104{bottom:1022.040064px;}
.y77{bottom:1032.480063px;}
.yce{bottom:1033.560070px;}
.y3a{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y103{bottom:1047.420061px;}
.y76{bottom:1061.100065px;}
.y39{bottom:1062.900072px;}
.y21{bottom:1063.260064px;}
.y1e{bottom:1068.480150px;}
.y102{bottom:1072.800058px;}
.y62{bottom:1089.540064px;}
.y38{bottom:1091.520058px;}
.y5{bottom:1091.880000px;}
.y8a{bottom:1091.880066px;}
.y101{bottom:1098.180073px;}
.y61{bottom:1118.160067px;}
.y37{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y89{bottom:1120.320065px;}
.y100{bottom:1123.560070px;}
.y60{bottom:1146.600065px;}
.y36{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y20{bottom:1148.940067px;}
.h14{height:40.434079px;}
.h10{height:43.576078px;}
.h15{height:48.345542px;}
.hf{height:48.647326px;}
.h13{height:51.715289px;}
.h7{height:55.303923px;}
.he{height:55.596662px;}
.h3{height:55.598636px;}
.hd{height:57.534328px;}
.h2{height:57.535781px;}
.h9{height:64.414315px;}
.ha{height:65.992187px;}
.h8{height:67.837080px;}
.h12{height:69.496123px;}
.h11{height:70.346938px;}
.hc{height:83.395190px;}
.h5{height:83.395980px;}
.h6{height:83.396580px;}
.hb{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x9{left:97.020000px;}
.x8{left:99.360000px;}
.x4{left:103.500000px;}
.x28{left:132.120002px;}
.x11{left:140.939999px;}
.x20{left:142.560001px;}
.x26{left:145.439999px;}
.x1a{left:150.120002px;}
.x1e{left:153.360008px;}
.x6{left:156.780000px;}
.x15{left:174.240006px;}
.x1b{left:190.439999px;}
.x5{left:201.060000px;}
.x2a{left:202.139992px;}
.x21{left:207.719999px;}
.xc{left:209.700000px;}
.x7{left:214.380000px;}
.xd{left:219.240000px;}
.x14{left:224.639992px;}
.x2d{left:231.479994px;}
.x2b{left:252.719999px;}
.xf{left:257.400000px;}
.xe{left:259.380000px;}
.x19{left:260.639992px;}
.x3{left:269.280000px;}
.x2c{left:279.180005px;}
.x24{left:285.300007px;}
.x22{left:286.919992px;}
.x18{left:296.639992px;}
.xb{left:300.420000px;}
.x1d{left:317.699993px;}
.xa{left:320.220000px;}
.x27{left:342.360008px;}
.x10{left:369.000000px;}
.x25{left:374.040012px;}
.x29{left:376.740006px;}
.x13{left:389.160015px;}
.x12{left:408.420010px;}
.x2e{left:418.500000px;}
.x1c{left:462.600014px;}
.x1{left:533.340000px;}
.x16{left:684.179970px;}
.x1f{left:752.580025px;}
.x23{left:771.120002px;}
.x17{left:803.159981px;}
@media print{
.v5{vertical-align:-28.159912pt;}
.v2{vertical-align:-23.040040pt;}
.v3{vertical-align:-1.279968pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v4{vertical-align:23.039920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.006188pt;}
.ls1{letter-spacing:0.027066pt;}
.ls3{letter-spacing:0.070293pt;}
.ls5{letter-spacing:0.319020pt;}
.ls6{letter-spacing:0.319224pt;}
.ls4{letter-spacing:3.199148pt;}
.ls2{letter-spacing:507.519216pt;}
.ws1{word-spacing:-70.404000pt;}
.wse{word-spacing:-38.023628pt;}
.ws6{word-spacing:-21.191093pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws9{word-spacing:-17.600700pt;}
.ws4{word-spacing:-10.240400pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:403.322311pt;}
.wsb{word-spacing:406.571565pt;}
.wsc{word-spacing:707.322311pt;}
.ws7{word-spacing:707.322343pt;}
.wsd{word-spacing:710.571565pt;}
.ws8{word-spacing:710.571597pt;}
.ws5{word-spacing:1508.055605pt;}
._a{margin-left:-14.338761pt;}
._7{margin-left:-11.451131pt;}
._5{margin-left:-10.001357pt;}
._9{margin-left:-8.736447pt;}
._2b{margin-left:-7.820439pt;}
._4{margin-left:-6.927688pt;}
._3{margin-left:-5.530931pt;}
._6{margin-left:-4.393252pt;}
._2{margin-left:-3.499037pt;}
._1{margin-left:-2.106584pt;}
._8{margin-left:-1.188207pt;}
._0{width:0.932084pt;}
._c{width:2.534436pt;}
._e{width:3.883757pt;}
._11{width:5.369665pt;}
._10{width:6.647286pt;}
._1b{width:7.553432pt;}
._12{width:9.039704pt;}
._17{width:10.101955pt;}
._15{width:11.162544pt;}
._f{width:12.507322pt;}
._d{width:13.517693pt;}
._37{width:15.069350pt;}
._29{width:17.363669pt;}
._2e{width:18.917003pt;}
._2f{width:19.896152pt;}
._36{width:64.277552pt;}
._21{width:78.385232pt;}
._20{width:82.363114pt;}
._1f{width:83.254209pt;}
._1e{width:84.283158pt;}
._25{width:86.696298pt;}
._24{width:90.135236pt;}
._2c{width:91.323138pt;}
._22{width:94.880987pt;}
._34{width:144.301375pt;}
._3d{width:153.099341pt;}
._2d{width:185.863040pt;}
._35{width:202.321857pt;}
._13{width:210.963735pt;}
._27{width:214.402679pt;}
._18{width:216.177701pt;}
._2a{width:224.807336pt;}
._3b{width:230.324527pt;}
._1c{width:233.193053pt;}
._3a{width:245.537853pt;}
._23{width:247.870246pt;}
._3c{width:249.202623pt;}
._b{width:250.181716pt;}
._19{width:252.993993pt;}
._26{width:254.530568pt;}
._33{width:256.281265pt;}
._1d{width:271.221785pt;}
._28{width:337.150572pt;}
._32{width:368.277584pt;}
._30{width:448.301407pt;}
._31{width:506.321889pt;}
._39{width:524.102591pt;}
._38{width:527.325812pt;}
._3e{width:729.206321pt;}
._16{width:898.096950pt;}
._40{width:1022.065546pt;}
._1a{width:1194.860221pt;}
._14{width:1509.279018pt;}
._3f{width:1600.585435pt;}
.fs8{font-size:40.961600pt;}
.fs7{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs9{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1f{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y35{bottom:36.480103pt;}
.y9b{bottom:89.440064pt;}
.ya3{bottom:91.040039pt;}
.y56{bottom:92.800049pt;}
.y121{bottom:96.800049pt;}
.ycd{bottom:96.960083pt;}
.ye7{bottom:100.480042pt;}
.y75{bottom:105.600037pt;}
.yb2{bottom:106.240052pt;}
.y5f{bottom:107.840088pt;}
.ya2{bottom:112.160035pt;}
.y9a{bottom:114.720032pt;}
.yfe{bottom:117.920044pt;}
.ycc{bottom:118.080079pt;}
.y120{bottom:119.680054pt;}
.ye6{bottom:121.760071pt;}
.y88{bottom:123.200074pt;}
.y5e{bottom:129.120057pt;}
.y74{bottom:130.880066pt;}
.yb1{bottom:131.680054pt;}
.y55{bottom:133.280030pt;}
.y34{bottom:133.600037pt;}
.y99{bottom:140.160035pt;}
.y11f{bottom:142.240052pt;}
.ye5{bottom:142.880066pt;}
.yfd{bottom:143.360047pt;}
.ycb{bottom:146.240052pt;}
.y87{bottom:148.480042pt;}
.y92{bottom:154.720032pt;}
.yb0{bottom:156.960083pt;}
.y54{bottom:158.560059pt;}
.yb9{bottom:158.720032pt;}
.y33{bottom:159.040039pt;}
.ye4{bottom:164.000061pt;}
.y11e{bottom:164.800049pt;}
.y98{bottom:165.440064pt;}
.yfc{bottom:168.640076pt;}
.y86{bottom:169.600037pt;}
.y73{bottom:181.600037pt;}
.yaf{bottom:182.400086pt;}
.y53{bottom:184.000061pt;}
.ye3{bottom:185.120057pt;}
.y11d{bottom:187.360047pt;}
.y97{bottom:190.880066pt;}
.yfb{bottom:194.080079pt;}
.y72{bottom:207.040039pt;}
.yae{bottom:207.680054pt;}
.y52{bottom:209.280030pt;}
.yb8{bottom:209.440064pt;}
.y32{bottom:209.760071pt;}
.y1d{bottom:209.760133pt;}
.ye2{bottom:212.000061pt;}
.y96{bottom:216.160035pt;}
.yfa{bottom:219.360047pt;}
.y71{bottom:232.320069pt;}
.yad{bottom:233.120057pt;}
.y51{bottom:234.720032pt;}
.y31{bottom:235.040039pt;}
.yf9{bottom:244.800049pt;}
.y11c{bottom:254.880066pt;}
.y70{bottom:257.760071pt;}
.yac{bottom:258.400086pt;}
.y50{bottom:260.000061pt;}
.yb7{bottom:260.160035pt;}
.y1c{bottom:260.480133pt;}
.y95{bottom:266.880066pt;}
.yf8{bottom:270.080079pt;}
.y11b{bottom:277.440064pt;}
.y6f{bottom:283.040039pt;}
.yab{bottom:283.840088pt;}
.y4f{bottom:285.440064pt;}
.y30{bottom:285.760071pt;}
.y1b{bottom:285.760133pt;}
.y94{bottom:292.320069pt;}
.yf7{bottom:295.520081pt;}
.ye1{bottom:299.680054pt;}
.y11a{bottom:300.000061pt;}
.y6e{bottom:308.480042pt;}
.yaa{bottom:309.120057pt;}
.y4e{bottom:310.720032pt;}
.yb6{bottom:310.880066pt;}
.y1a{bottom:311.200133pt;}
.y6a{bottom:317.600037pt;}
.yf6{bottom:320.800049pt;}
.y119{bottom:322.560059pt;}
.ye0{bottom:325.120057pt;}
.ya9{bottom:334.560059pt;}
.y4d{bottom:336.160035pt;}
.y19{bottom:336.480133pt;}
.y69{bottom:343.040039pt;}
.y118{bottom:345.120057pt;}
.yf5{bottom:346.240052pt;}
.ydf{bottom:350.400086pt;}
.y6d{bottom:359.200074pt;}
.ya8{bottom:359.840088pt;}
.y4c{bottom:361.440064pt;}
.yb5{bottom:361.600037pt;}
.y2f{bottom:361.920044pt;}
.y18{bottom:361.920133pt;}
.y117{bottom:367.680054pt;}
.y68{bottom:368.320069pt;}
.yf4{bottom:371.680054pt;}
.yde{bottom:375.840088pt;}
.y4b{bottom:386.880066pt;}
.y91{bottom:387.200074pt;}
.y17{bottom:387.200133pt;}
.y116{bottom:390.080079pt;}
.y67{bottom:393.760071pt;}
.y6c{bottom:409.920044pt;}
.ya7{bottom:410.560059pt;}
.y4a{bottom:412.160035pt;}
.yb4{bottom:412.320069pt;}
.y2e{bottom:412.640076pt;}
.y66{bottom:419.040039pt;}
.yf3{bottom:422.400086pt;}
.ydd{bottom:426.560059pt;}
.ya1{bottom:429.120057pt;}
.y6b{bottom:435.200074pt;}
.ya6{bottom:436.000061pt;}
.y49{bottom:437.600037pt;}
.y2d{bottom:437.920044pt;}
.y16{bottom:437.920133pt;}
.y65{bottom:444.480042pt;}
.yf2{bottom:447.680054pt;}
.ydc{bottom:451.840088pt;}
.yca{bottom:454.080079pt;}
.y115{bottom:457.760071pt;}
.ya5{bottom:461.280030pt;}
.y48{bottom:462.880066pt;}
.yb3{bottom:463.040039pt;}
.y2c{bottom:463.360047pt;}
.y15{bottom:463.360133pt;}
.yf1{bottom:473.120057pt;}
.ya0{bottom:475.680054pt;}
.ydb{bottom:477.280030pt;}
.y114{bottom:480.320069pt;}
.ya4{bottom:486.720032pt;}
.y47{bottom:488.320069pt;}
.y2b{bottom:488.640076pt;}
.y14{bottom:488.640133pt;}
.y64{bottom:495.200074pt;}
.y113{bottom:502.880066pt;}
.yc9{bottom:504.800049pt;}
.y46{bottom:513.600037pt;}
.yff{bottom:513.760071pt;}
.y13{bottom:514.080000pt;}
.y2a{bottom:514.080079pt;}
.y63{bottom:516.320069pt;}
.y9f{bottom:522.080079pt;}
.yf0{bottom:523.840088pt;}
.y112{bottom:525.440064pt;}
.yda{bottom:528.000061pt;}
.yc8{bottom:530.080079pt;}
.y85{bottom:537.440064pt;}
.y45{bottom:539.040039pt;}
.y12{bottom:539.360000pt;}
.y29{bottom:539.360047pt;}
.y9e{bottom:543.360047pt;}
.yef{bottom:549.600037pt;}
.yc7{bottom:555.520081pt;}
.y84{bottom:562.720032pt;}
.y5d{bottom:564.480042pt;}
.y11{bottom:564.800000pt;}
.y28{bottom:564.800049pt;}
.y111{bottom:570.400086pt;}
.yee{bottom:576.000061pt;}
.yc6{bottom:580.800049pt;}
.y44{bottom:589.760071pt;}
.y27{bottom:590.080079pt;}
.y110{bottom:592.960083pt;}
.yed{bottom:602.400086pt;}
.yc5{bottom:606.240052pt;}
.y83{bottom:613.440064pt;}
.y43{bottom:615.040070pt;}
.y5c{bottom:615.200074pt;}
.y26{bottom:615.520050pt;}
.yec{bottom:628.800049pt;}
.yd9{bottom:629.440064pt;}
.y10f{bottom:638.080048pt;}
.y82{bottom:638.880066pt;}
.y42{bottom:640.480072pt;}
.y10{bottom:640.800000pt;}
.y25{bottom:640.800049pt;}
.yeb{bottom:655.200074pt;}
.yd8{bottom:655.520050pt;}
.yc4{bottom:656.960053pt;}
.y10e{bottom:660.640046pt;}
.y81{bottom:664.160065pt;}
.y41{bottom:665.760071pt;}
.y5b{bottom:665.920044pt;}
.yf{bottom:666.240000pt;}
.y90{bottom:666.240052pt;}
.y9d{bottom:670.080048pt;}
.yd7{bottom:681.760071pt;}
.yea{bottom:681.920044pt;}
.yc3{bottom:683.040070pt;}
.y10d{bottom:683.200074pt;}
.y80{bottom:689.600068pt;}
.y5a{bottom:691.200074pt;}
.ye{bottom:691.520000pt;}
.y24{bottom:691.520050pt;}
.y93{bottom:693.760071pt;}
.y10c{bottom:705.760071pt;}
.yd6{bottom:708.160065pt;}
.ye9{bottom:708.320069pt;}
.yc2{bottom:709.280060pt;}
.y7f{bottom:714.880066pt;}
.y40{bottom:716.480072pt;}
.y9c{bottom:716.640046pt;}
.yd{bottom:716.960000pt;}
.y10b{bottom:728.160065pt;}
.yd3{bottom:734.080048pt;}
.ye8{bottom:734.560059pt;}
.yc1{bottom:735.680054pt;}
.y7e{bottom:740.320069pt;}
.y3f{bottom:741.920044pt;}
.yc{bottom:742.240000pt;}
.y8f{bottom:742.240052pt;}
.y10a{bottom:750.720063pt;}
.yd2{bottom:760.640046pt;}
.ybe{bottom:761.600068pt;}
.y7d{bottom:765.600068pt;}
.y59{bottom:767.360047pt;}
.y23{bottom:767.680054pt;}
.y109{bottom:773.280060pt;}
.yd5{bottom:786.720063pt;}
.yd1{bottom:787.040070pt;}
.yc0{bottom:787.680054pt;}
.ybd{bottom:788.000061pt;}
.y7c{bottom:791.040070pt;}
.y58{bottom:792.640046pt;}
.yb{bottom:792.960000pt;}
.y22{bottom:792.960053pt;}
.y108{bottom:795.840058pt;}
.yd4{bottom:813.120057pt;}
.yd0{bottom:813.440064pt;}
.ybf{bottom:814.240052pt;}
.ybc{bottom:814.400055pt;}
.y7b{bottom:816.320069pt;}
.y57{bottom:818.080048pt;}
.ya{bottom:818.400000pt;}
.y8e{bottom:818.400055pt;}
.y3e{bottom:824.960053pt;}
.ybb{bottom:840.800049pt;}
.y107{bottom:840.960053pt;}
.y7a{bottom:841.760071pt;}
.y3d{bottom:843.360047pt;}
.y9{bottom:843.680000pt;}
.y8d{bottom:843.680054pt;}
.y106{bottom:863.520050pt;}
.ycf{bottom:866.080048pt;}
.y79{bottom:867.040055pt;}
.y3c{bottom:868.800064pt;}
.y8{bottom:869.120000pt;}
.y8c{bottom:869.120057pt;}
.y105{bottom:886.080063pt;}
.y78{bottom:892.480057pt;}
.yba{bottom:893.280060pt;}
.y3b{bottom:894.080063pt;}
.y7{bottom:894.400000pt;}
.y8b{bottom:894.400055pt;}
.y104{bottom:908.480057pt;}
.y77{bottom:917.760056pt;}
.yce{bottom:918.720063pt;}
.y3a{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y103{bottom:931.040055pt;}
.y76{bottom:943.200058pt;}
.y39{bottom:944.800064pt;}
.y21{bottom:945.120057pt;}
.y1e{bottom:949.760133pt;}
.y102{bottom:953.600052pt;}
.y62{bottom:968.480057pt;}
.y38{bottom:970.240052pt;}
.y5{bottom:970.560000pt;}
.y8a{bottom:970.560059pt;}
.y101{bottom:976.160065pt;}
.y61{bottom:993.920060pt;}
.y37{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y89{bottom:995.840058pt;}
.y100{bottom:998.720063pt;}
.y60{bottom:1019.200058pt;}
.y36{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y20{bottom:1021.280060pt;}
.h14{height:35.941404pt;}
.h10{height:38.734292pt;}
.h15{height:42.973815pt;}
.hf{height:43.242067pt;}
.h13{height:45.969146pt;}
.h7{height:49.159043pt;}
.he{height:49.419255pt;}
.h3{height:49.421010pt;}
.hd{height:51.141625pt;}
.h2{height:51.142916pt;}
.h9{height:57.257169pt;}
.ha{height:58.659722pt;}
.h8{height:60.299627pt;}
.h12{height:61.774332pt;}
.h11{height:62.530612pt;}
.hc{height:74.129058pt;}
.h5{height:74.129760pt;}
.h6{height:74.130293pt;}
.hb{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x9{left:86.240000pt;}
.x8{left:88.320000pt;}
.x4{left:92.000000pt;}
.x28{left:117.440002pt;}
.x11{left:125.279999pt;}
.x20{left:126.720001pt;}
.x26{left:129.279999pt;}
.x1a{left:133.440002pt;}
.x1e{left:136.320007pt;}
.x6{left:139.360000pt;}
.x15{left:154.880005pt;}
.x1b{left:169.279999pt;}
.x5{left:178.720000pt;}
.x2a{left:179.679993pt;}
.x21{left:184.639999pt;}
.xc{left:186.400000pt;}
.x7{left:190.560000pt;}
.xd{left:194.880000pt;}
.x14{left:199.679993pt;}
.x2d{left:205.759995pt;}
.x2b{left:224.639999pt;}
.xf{left:228.800000pt;}
.xe{left:230.560000pt;}
.x19{left:231.679993pt;}
.x3{left:239.360000pt;}
.x2c{left:248.160004pt;}
.x24{left:253.600006pt;}
.x22{left:255.039993pt;}
.x18{left:263.679993pt;}
.xb{left:267.040000pt;}
.x1d{left:282.399994pt;}
.xa{left:284.640000pt;}
.x27{left:304.320007pt;}
.x10{left:328.000000pt;}
.x25{left:332.480011pt;}
.x29{left:334.880005pt;}
.x13{left:345.920013pt;}
.x12{left:363.040009pt;}
.x2e{left:372.000000pt;}
.x1c{left:411.200012pt;}
.x1{left:474.080000pt;}
.x16{left:608.159973pt;}
.x1f{left:668.960022pt;}
.x23{left:685.440002pt;}
.x17{left:713.919983pt;}
}




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