
    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_dafd24832875e4de8f44d5b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_7e665da84ec89f34aa024621.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_c91d20f5f7c74424127451ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_122c03b235f4041dd1f23797.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_6b623dae8740d2afd0b97620.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_708d837f8848199f44343863.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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;}
.m2{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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-3.342000px;}
.ls13{letter-spacing:-1.182000px;}
.ls1d{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls21{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls1a{letter-spacing:-0.413400px;}
.ls14{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.208200px;}
.ls19{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.119520px;}
.ls1b{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.618000px;}
.ls20{letter-spacing:2.880000px;}
.ls3{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.780000px;}
.ls5{letter-spacing:4.500000px;}
.ls2{letter-spacing:9.540000px;}
.ls1f{letter-spacing:16.506720px;}
.ls1e{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wse{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.166000px;}
.ws6{word-spacing:-11.598000px;}
.ws1{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._1c{margin-left:-7.282320px;}
._12{margin-left:-4.955520px;}
._14{margin-left:-3.645360px;}
._13{margin-left:-2.143680px;}
._0{margin-left:-1.080000px;}
._11{width:1.041600px;}
._1{width:2.220000px;}
._15{width:3.602640px;}
._19{width:5.191920px;}
._18{width:6.991920px;}
._17{width:8.106480px;}
._16{width:9.403200px;}
._6{width:10.800000px;}
._1f{width:12.464160px;}
._1a{width:13.685040px;}
._1b{width:16.038240px;}
._5e{width:17.800320px;}
._f{width:18.948000px;}
._36{width:20.079360px;}
._3c{width:22.051440px;}
._37{width:23.904000px;}
._40{width:24.978240px;}
._3f{width:26.295840px;}
._57{width:27.609120px;}
._3b{width:28.804320px;}
._42{width:30.024960px;}
._34{width:31.075200px;}
._44{width:32.454000px;}
._29{width:34.304160px;}
._2e{width:35.557200px;}
._23{width:36.632880px;}
._72{width:37.862160px;}
._4a{width:39.114240px;}
._56{width:40.602720px;}
._2b{width:41.985600px;}
._2a{width:43.086960px;}
._28{width:44.521200px;}
._30{width:46.433520px;}
._3d{width:48.618960px;}
._53{width:50.497200px;}
._2f{width:51.931440px;}
._26{width:52.947360px;}
._6e{width:54.919440px;}
._6c{width:57.787920px;}
._2c{width:59.131680px;}
._45{width:60.182640px;}
._21{width:61.791840px;}
._43{width:64.899360px;}
._54{width:67.878000px;}
._22{width:68.940000px;}
._52{width:71.652240px;}
._38{width:73.378800px;}
._65{width:75.087840px;}
._7{width:76.284960px;}
._69{width:77.425440px;}
._4b{width:78.665040px;}
._31{width:80.915040px;}
._41{width:82.050720px;}
._51{width:83.971440px;}
._33{width:85.516560px;}
._62{width:86.628240px;}
._3e{width:88.000800px;}
._58{width:90.032640px;}
._64{width:92.184000px;}
._63{width:94.002480px;}
._5f{width:95.104800px;}
._48{width:96.665040px;}
._71{width:98.484480px;}
._20{width:100.576080px;}
._47{width:102.906720px;}
._39{width:107.027040px;}
._67{width:108.558240px;}
._66{width:109.838880px;}
._6f{width:112.946400px;}
._27{width:116.233200px;}
._5c{width:121.346880px;}
._55{width:127.741200px;}
._4f{width:129.798720px;}
._50{width:131.288160px;}
._10{width:132.780000px;}
._35{width:140.051760px;}
._59{width:141.784800px;}
._49{width:153.019680px;}
._8{width:154.080000px;}
._60{width:156.605280px;}
._70{width:163.846560px;}
._61{width:171.784320px;}
._46{width:173.176800px;}
._68{width:180.406560px;}
._4e{width:181.525200px;}
._24{width:185.016960px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._32{width:202.168080px;}
._5a{width:203.226000px;}
._4c{width:206.784960px;}
._3a{width:223.562160px;}
._6a{width:226.955760px;}
._6d{width:237.065040px;}
._5d{width:238.322880px;}
._25{width:241.404720px;}
._2d{width:248.302800px;}
._2{width:255.512640px;}
._1d{width:256.576320px;}
._73{width:261.339840px;}
._6b{width:264.796560px;}
._5b{width:278.899920px;}
._3{width:357.300000px;}
._4d{width:359.063040px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._1e{width:605.427840px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.y82{bottom:5.940000px;}
.y78{bottom:8.460000px;}
.y6d{bottom:11.520000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y7f{bottom:25.560000px;}
.y9c{bottom:25.605000px;}
.y77{bottom:25.740000px;}
.y6c{bottom:31.320000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.y91{bottom:45.360000px;}
.yaa{bottom:45.390000px;}
.y9b{bottom:45.405000px;}
.y76{bottom:45.540000px;}
.ya5{bottom:45.585000px;}
.y6b{bottom:51.120000px;}
.yb{bottom:57.780000px;}
.y90{bottom:65.160000px;}
.y9a{bottom:65.205000px;}
.y75{bottom:65.340000px;}
.ya9{bottom:65.370000px;}
.ya4{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.960000px;}
.ya{bottom:79.560000px;}
.y74{bottom:85.140000px;}
.ya8{bottom:85.170000px;}
.y97{bottom:85.185000px;}
.y3{bottom:96.330000px;}
.y73{bottom:104.940000px;}
.y7e{bottom:104.970000px;}
.y96{bottom:104.985000px;}
.y81{bottom:105.120000px;}
.ya3{bottom:105.165000px;}
.y69{bottom:110.340000px;}
.ybc{bottom:110.700000px;}
.yce{bottom:111.060000px;}
.ycb{bottom:113.580000px;}
.y8a{bottom:124.740000px;}
.y7d{bottom:124.770000px;}
.y95{bottom:124.785000px;}
.y72{bottom:124.920000px;}
.ya2{bottom:124.965000px;}
.y2{bottom:125.670000px;}
.y3a{bottom:127.440000px;}
.y68{bottom:130.140000px;}
.ybb{bottom:130.500000px;}
.ycd{bottom:131.040000px;}
.yca{bottom:133.380000px;}
.y8f{bottom:144.540000px;}
.ya7{bottom:144.570000px;}
.y94{bottom:144.585000px;}
.y87{bottom:144.720000px;}
.y7c{bottom:144.750000px;}
.y71{bottom:144.765000px;}
.y39{bottom:147.240000px;}
.y67{bottom:150.120000px;}
.yba{bottom:150.300000px;}
.ycc{bottom:151.020000px;}
.yc9{bottom:153.390000px;}
.y98{bottom:163.650000px;}
.y8e{bottom:164.370000px;}
.y93{bottom:164.385000px;}
.y86{bottom:164.520000px;}
.y7b{bottom:164.550000px;}
.y70{bottom:164.565000px;}
.y38{bottom:167.070000px;}
.y66{bottom:169.950000px;}
.yb9{bottom:170.130000px;}
.yc8{bottom:173.190000px;}
.y85{bottom:184.320000px;}
.y7a{bottom:184.350000px;}
.y6f{bottom:184.365000px;}
.y37{bottom:186.870000px;}
.y65{bottom:189.750000px;}
.yb8{bottom:189.930000px;}
.yc7{bottom:192.990000px;}
.y83{bottom:197.670000px;}
.y8d{bottom:204.150000px;}
.y84{bottom:204.165000px;}
.y36{bottom:206.670000px;}
.y64{bottom:209.550000px;}
.yb7{bottom:209.910000px;}
.yc6{bottom:212.790000px;}
.y8c{bottom:223.950000px;}
.ya0{bottom:223.965000px;}
.y35{bottom:226.650000px;}
.y63{bottom:229.350000px;}
.yb6{bottom:229.710000px;}
.yc5{bottom:232.590000px;}
.y9f{bottom:243.750000px;}
.y34{bottom:246.450000px;}
.y62{bottom:249.330000px;}
.yb5{bottom:249.510000px;}
.yc4{bottom:252.570000px;}
.y33{bottom:266.250000px;}
.y61{bottom:269.130000px;}
.yb4{bottom:269.310000px;}
.yc3{bottom:272.370000px;}
.y32{bottom:286.050000px;}
.y60{bottom:288.930000px;}
.yb3{bottom:289.110000px;}
.yc2{bottom:292.170000px;}
.y31{bottom:305.850000px;}
.y5f{bottom:308.730000px;}
.yb2{bottom:309.090000px;}
.yc1{bottom:311.970000px;}
.y92{bottom:323.130000px;}
.y30{bottom:325.830000px;}
.y5e{bottom:328.530000px;}
.yb1{bottom:328.890000px;}
.yc0{bottom:331.770000px;}
.y2f{bottom:345.630000px;}
.yb0{bottom:348.690000px;}
.y5d{bottom:349.590000px;}
.ybf{bottom:351.750000px;}
.y2e{bottom:365.430000px;}
.yaf{bottom:368.490000px;}
.y5c{bottom:370.470000px;}
.ybe{bottom:371.550000px;}
.y2d{bottom:385.230000px;}
.yae{bottom:388.290000px;}
.y5b{bottom:390.270000px;}
.ybd{bottom:391.350000px;}
.y2c{bottom:405.075000px;}
.yad{bottom:408.315000px;}
.y5a{bottom:411.195000px;}
.y80{bottom:416.595000px;}
.y2b{bottom:425.055000px;}
.yac{bottom:428.115000px;}
.y59{bottom:430.995000px;}
.yab{bottom:442.875000px;}
.y2a{bottom:444.855000px;}
.y58{bottom:450.975000px;}
.y29{bottom:464.655000px;}
.y57{bottom:470.775000px;}
.y9e{bottom:482.475000px;}
.y28{bottom:484.455000px;}
.y56{bottom:490.575000px;}
.y8b{bottom:502.455000px;}
.y27{bottom:504.255000px;}
.y55{bottom:510.375000px;}
.y26{bottom:524.235000px;}
.y54{bottom:530.175000px;}
.y25{bottom:544.035000px;}
.y53{bottom:550.155000px;}
.y79{bottom:556.275000px;}
.y24{bottom:563.835000px;}
.y52{bottom:569.955000px;}
.y23{bottom:583.635000px;}
.y51{bottom:589.755000px;}
.y22{bottom:603.435000px;}
.y50{bottom:609.555000px;}
.ya6{bottom:622.155000px;}
.y21{bottom:623.415000px;}
.y4f{bottom:629.355000px;}
.y20{bottom:643.215000px;}
.y4e{bottom:649.365000px;}
.y1f{bottom:663.045000px;}
.y4d{bottom:669.165000px;}
.y9d{bottom:681.585000px;}
.y1e{bottom:682.845000px;}
.y4c{bottom:688.965000px;}
.y1d{bottom:702.645000px;}
.y4b{bottom:708.765000px;}
.y1c{bottom:722.625000px;}
.y4a{bottom:728.565000px;}
.y89{bottom:741.165000px;}
.y1b{bottom:742.425000px;}
.y49{bottom:748.545000px;}
.y6e{bottom:755.385000px;}
.y1a{bottom:762.225000px;}
.y48{bottom:768.345000px;}
.y19{bottom:782.025000px;}
.y47{bottom:788.145000px;}
.y18{bottom:801.825000px;}
.y46{bottom:807.945000px;}
.y17{bottom:821.805000px;}
.y45{bottom:827.745000px;}
.y16{bottom:841.605000px;}
.y44{bottom:847.725000px;}
.ya1{bottom:860.865000px;}
.y15{bottom:861.405000px;}
.y43{bottom:867.525000px;}
.y99{bottom:880.845000px;}
.y14{bottom:881.205000px;}
.y42{bottom:887.325000px;}
.y13{bottom:906.270000px;}
.y41{bottom:907.170000px;}
.y88{bottom:920.490000px;}
.y12{bottom:921.570000px;}
.y40{bottom:926.970000px;}
.y11{bottom:943.350000px;}
.y3f{bottom:946.950000px;}
.y6a{bottom:954.510000px;}
.y3e{bottom:966.750000px;}
.y10{bottom:968.190000px;}
.y3d{bottom:986.550000px;}
.yf{bottom:999.870000px;}
.y3c{bottom:1006.350000px;}
.y3b{bottom:1026.150000px;}
.y9{bottom:1045.050000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.hb{height:21.240000px;}
.he{height:27.147656px;}
.h7{height:33.480000px;}
.h10{height:41.726953px;}
.hf{height:42.164648px;}
.h11{height:43.506914px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h1e{height:48.496641px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.h12{height:65.160000px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h8{height:71.613281px;}
.h5{height:112.536000px;}
.h16{height:118.980000px;}
.h14{height:138.960000px;}
.h2{height:146.736000px;}
.h1a{height:158.580000px;}
.h1b{height:158.610000px;}
.h19{height:178.410000px;}
.h1d{height:178.560000px;}
.h17{height:178.590000px;}
.h1c{height:198.360000px;}
.h13{height:198.390000px;}
.h15{height:218.190000px;}
.h18{height:237.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w6{width:37.116000px;}
.w8{width:66.996000px;}
.w9{width:101.340000px;}
.w3{width:130.716000px;}
.w7{width:142.740000px;}
.wa{width:189.930000px;}
.wb{width:233.175000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x14{left:21.960000px;}
.x15{left:42.345000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.xe{left:59.040000px;}
.xc{left:80.999987px;}
.x7{left:87.875987px;}
.xf{left:96.876000px;}
.xd{left:108.035987px;}
.x4{left:118.290000px;}
.xb{left:171.569987px;}
.x10{left:240.510000px;}
.x11{left:308.235000px;}
.xa{left:318.494987px;}
.x8{left:321.194987px;}
.x12{left:410.295000px;}
.x9{left:446.504987px;}
.x13{left:600.945000px;}
.x3{left:705.930000px;}
.x6{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-2.970667pt;}
.ls13{letter-spacing:-1.050667pt;}
.ls1d{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls1a{letter-spacing:-0.367467pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.185067pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.106240pt;}
.ls1b{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.549333pt;}
.ls20{letter-spacing:2.560000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls5{letter-spacing:4.000000pt;}
.ls2{letter-spacing:8.480000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls1e{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wse{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.592000pt;}
.ws6{word-spacing:-10.309333pt;}
.ws1{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._1c{margin-left:-6.473173pt;}
._12{margin-left:-4.404907pt;}
._14{margin-left:-3.240320pt;}
._13{margin-left:-1.905493pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.925867pt;}
._1{width:1.973333pt;}
._15{width:3.202347pt;}
._19{width:4.615040pt;}
._18{width:6.215040pt;}
._17{width:7.205760pt;}
._16{width:8.358400pt;}
._6{width:9.600000pt;}
._1f{width:11.079253pt;}
._1a{width:12.164480pt;}
._1b{width:14.256213pt;}
._5e{width:15.822507pt;}
._f{width:16.842667pt;}
._36{width:17.848320pt;}
._3c{width:19.601280pt;}
._37{width:21.248000pt;}
._40{width:22.202880pt;}
._3f{width:23.374080pt;}
._57{width:24.541440pt;}
._3b{width:25.603840pt;}
._42{width:26.688853pt;}
._34{width:27.622400pt;}
._44{width:28.848000pt;}
._29{width:30.492587pt;}
._2e{width:31.606400pt;}
._23{width:32.562560pt;}
._72{width:33.655253pt;}
._4a{width:34.768213pt;}
._56{width:36.091307pt;}
._2b{width:37.320533pt;}
._2a{width:38.299520pt;}
._28{width:39.574400pt;}
._30{width:41.274240pt;}
._3d{width:43.216853pt;}
._53{width:44.886400pt;}
._2f{width:46.161280pt;}
._26{width:47.064320pt;}
._6e{width:48.817280pt;}
._6c{width:51.367040pt;}
._2c{width:52.561493pt;}
._45{width:53.495680pt;}
._21{width:54.926080pt;}
._43{width:57.688320pt;}
._54{width:60.336000pt;}
._22{width:61.280000pt;}
._52{width:63.690880pt;}
._38{width:65.225600pt;}
._65{width:66.744747pt;}
._7{width:67.808853pt;}
._69{width:68.822613pt;}
._4b{width:69.924480pt;}
._31{width:71.924480pt;}
._41{width:72.933973pt;}
._51{width:74.641280pt;}
._33{width:76.014720pt;}
._62{width:77.002880pt;}
._3e{width:78.222933pt;}
._58{width:80.029013pt;}
._64{width:81.941333pt;}
._63{width:83.557760pt;}
._5f{width:84.537600pt;}
._48{width:85.924480pt;}
._71{width:87.541760pt;}
._20{width:89.400960pt;}
._47{width:91.472640pt;}
._39{width:95.135147pt;}
._67{width:96.496213pt;}
._66{width:97.634560pt;}
._6f{width:100.396800pt;}
._27{width:103.318400pt;}
._5c{width:107.863893pt;}
._55{width:113.547733pt;}
._4f{width:115.376640pt;}
._50{width:116.700587pt;}
._10{width:118.026667pt;}
._35{width:124.490453pt;}
._59{width:126.030933pt;}
._49{width:136.017493pt;}
._8{width:136.960000pt;}
._60{width:139.204693pt;}
._70{width:145.641387pt;}
._61{width:152.697173pt;}
._46{width:153.934933pt;}
._68{width:160.361387pt;}
._4e{width:161.355733pt;}
._24{width:164.459520pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._32{width:179.704960pt;}
._5a{width:180.645333pt;}
._4c{width:183.808853pt;}
._3a{width:198.721920pt;}
._6a{width:201.738453pt;}
._6d{width:210.724480pt;}
._5d{width:211.842560pt;}
._25{width:214.581973pt;}
._2d{width:220.713600pt;}
._2{width:227.122347pt;}
._1d{width:228.067840pt;}
._73{width:232.302080pt;}
._6b{width:235.374720pt;}
._5b{width:247.911040pt;}
._3{width:317.600000pt;}
._4d{width:319.167147pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._1e{width:538.158080pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.y82{bottom:5.280000pt;}
.y78{bottom:7.520000pt;}
.y6d{bottom:10.240000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y7f{bottom:22.720000pt;}
.y9c{bottom:22.760000pt;}
.y77{bottom:22.880000pt;}
.y6c{bottom:27.840000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.y91{bottom:40.320000pt;}
.yaa{bottom:40.346667pt;}
.y9b{bottom:40.360000pt;}
.y76{bottom:40.480000pt;}
.ya5{bottom:40.520000pt;}
.y6b{bottom:45.440000pt;}
.yb{bottom:51.360000pt;}
.y90{bottom:57.920000pt;}
.y9a{bottom:57.960000pt;}
.y75{bottom:58.080000pt;}
.ya9{bottom:58.106667pt;}
.ya4{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.520000pt;}
.ya{bottom:70.720000pt;}
.y74{bottom:75.680000pt;}
.ya8{bottom:75.706667pt;}
.y97{bottom:75.720000pt;}
.y3{bottom:85.626667pt;}
.y73{bottom:93.280000pt;}
.y7e{bottom:93.306667pt;}
.y96{bottom:93.320000pt;}
.y81{bottom:93.440000pt;}
.ya3{bottom:93.480000pt;}
.y69{bottom:98.080000pt;}
.ybc{bottom:98.400000pt;}
.yce{bottom:98.720000pt;}
.ycb{bottom:100.960000pt;}
.y8a{bottom:110.880000pt;}
.y7d{bottom:110.906667pt;}
.y95{bottom:110.920000pt;}
.y72{bottom:111.040000pt;}
.ya2{bottom:111.080000pt;}
.y2{bottom:111.706667pt;}
.y3a{bottom:113.280000pt;}
.y68{bottom:115.680000pt;}
.ybb{bottom:116.000000pt;}
.ycd{bottom:116.480000pt;}
.yca{bottom:118.560000pt;}
.y8f{bottom:128.480000pt;}
.ya7{bottom:128.506667pt;}
.y94{bottom:128.520000pt;}
.y87{bottom:128.640000pt;}
.y7c{bottom:128.666667pt;}
.y71{bottom:128.680000pt;}
.y39{bottom:130.880000pt;}
.y67{bottom:133.440000pt;}
.yba{bottom:133.600000pt;}
.ycc{bottom:134.240000pt;}
.yc9{bottom:136.346667pt;}
.y98{bottom:145.466667pt;}
.y8e{bottom:146.106667pt;}
.y93{bottom:146.120000pt;}
.y86{bottom:146.240000pt;}
.y7b{bottom:146.266667pt;}
.y70{bottom:146.280000pt;}
.y38{bottom:148.506667pt;}
.y66{bottom:151.066667pt;}
.yb9{bottom:151.226667pt;}
.yc8{bottom:153.946667pt;}
.y85{bottom:163.840000pt;}
.y7a{bottom:163.866667pt;}
.y6f{bottom:163.880000pt;}
.y37{bottom:166.106667pt;}
.y65{bottom:168.666667pt;}
.yb8{bottom:168.826667pt;}
.yc7{bottom:171.546667pt;}
.y83{bottom:175.706667pt;}
.y8d{bottom:181.466667pt;}
.y84{bottom:181.480000pt;}
.y36{bottom:183.706667pt;}
.y64{bottom:186.266667pt;}
.yb7{bottom:186.586667pt;}
.yc6{bottom:189.146667pt;}
.y8c{bottom:199.066667pt;}
.ya0{bottom:199.080000pt;}
.y35{bottom:201.466667pt;}
.y63{bottom:203.866667pt;}
.yb6{bottom:204.186667pt;}
.yc5{bottom:206.746667pt;}
.y9f{bottom:216.666667pt;}
.y34{bottom:219.066667pt;}
.y62{bottom:221.626667pt;}
.yb5{bottom:221.786667pt;}
.yc4{bottom:224.506667pt;}
.y33{bottom:236.666667pt;}
.y61{bottom:239.226667pt;}
.yb4{bottom:239.386667pt;}
.yc3{bottom:242.106667pt;}
.y32{bottom:254.266667pt;}
.y60{bottom:256.826667pt;}
.yb3{bottom:256.986667pt;}
.yc2{bottom:259.706667pt;}
.y31{bottom:271.866667pt;}
.y5f{bottom:274.426667pt;}
.yb2{bottom:274.746667pt;}
.yc1{bottom:277.306667pt;}
.y92{bottom:287.226667pt;}
.y30{bottom:289.626667pt;}
.y5e{bottom:292.026667pt;}
.yb1{bottom:292.346667pt;}
.yc0{bottom:294.906667pt;}
.y2f{bottom:307.226667pt;}
.yb0{bottom:309.946667pt;}
.y5d{bottom:310.746667pt;}
.ybf{bottom:312.666667pt;}
.y2e{bottom:324.826667pt;}
.yaf{bottom:327.546667pt;}
.y5c{bottom:329.306667pt;}
.ybe{bottom:330.266667pt;}
.y2d{bottom:342.426667pt;}
.yae{bottom:345.146667pt;}
.y5b{bottom:346.906667pt;}
.ybd{bottom:347.866667pt;}
.y2c{bottom:360.066667pt;}
.yad{bottom:362.946667pt;}
.y5a{bottom:365.506667pt;}
.y80{bottom:370.306667pt;}
.y2b{bottom:377.826667pt;}
.yac{bottom:380.546667pt;}
.y59{bottom:383.106667pt;}
.yab{bottom:393.666667pt;}
.y2a{bottom:395.426667pt;}
.y58{bottom:400.866667pt;}
.y29{bottom:413.026667pt;}
.y57{bottom:418.466667pt;}
.y9e{bottom:428.866667pt;}
.y28{bottom:430.626667pt;}
.y56{bottom:436.066667pt;}
.y8b{bottom:446.626667pt;}
.y27{bottom:448.226667pt;}
.y55{bottom:453.666667pt;}
.y26{bottom:465.986667pt;}
.y54{bottom:471.266667pt;}
.y25{bottom:483.586667pt;}
.y53{bottom:489.026667pt;}
.y79{bottom:494.466667pt;}
.y24{bottom:501.186667pt;}
.y52{bottom:506.626667pt;}
.y23{bottom:518.786667pt;}
.y51{bottom:524.226667pt;}
.y22{bottom:536.386667pt;}
.y50{bottom:541.826667pt;}
.ya6{bottom:553.026667pt;}
.y21{bottom:554.146667pt;}
.y4f{bottom:559.426667pt;}
.y20{bottom:571.746667pt;}
.y4e{bottom:577.213333pt;}
.y1f{bottom:589.373333pt;}
.y4d{bottom:594.813333pt;}
.y9d{bottom:605.853333pt;}
.y1e{bottom:606.973333pt;}
.y4c{bottom:612.413333pt;}
.y1d{bottom:624.573333pt;}
.y4b{bottom:630.013333pt;}
.y1c{bottom:642.333333pt;}
.y4a{bottom:647.613333pt;}
.y89{bottom:658.813333pt;}
.y1b{bottom:659.933333pt;}
.y49{bottom:665.373333pt;}
.y6e{bottom:671.453333pt;}
.y1a{bottom:677.533333pt;}
.y48{bottom:682.973333pt;}
.y19{bottom:695.133333pt;}
.y47{bottom:700.573333pt;}
.y18{bottom:712.733333pt;}
.y46{bottom:718.173333pt;}
.y17{bottom:730.493333pt;}
.y45{bottom:735.773333pt;}
.y16{bottom:748.093333pt;}
.y44{bottom:753.533333pt;}
.ya1{bottom:765.213333pt;}
.y15{bottom:765.693333pt;}
.y43{bottom:771.133333pt;}
.y99{bottom:782.973333pt;}
.y14{bottom:783.293333pt;}
.y42{bottom:788.733333pt;}
.y13{bottom:805.573333pt;}
.y41{bottom:806.373333pt;}
.y88{bottom:818.213333pt;}
.y12{bottom:819.173333pt;}
.y40{bottom:823.973333pt;}
.y11{bottom:838.533333pt;}
.y3f{bottom:841.733333pt;}
.y6a{bottom:848.453333pt;}
.y3e{bottom:859.333333pt;}
.y10{bottom:860.613333pt;}
.y3d{bottom:876.933333pt;}
.yf{bottom:888.773333pt;}
.y3c{bottom:894.533333pt;}
.y3b{bottom:912.133333pt;}
.y9{bottom:928.933333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.hb{height:18.880000pt;}
.he{height:24.131250pt;}
.h7{height:29.760000pt;}
.h10{height:37.090625pt;}
.hf{height:37.479688pt;}
.h11{height:38.672812pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h1e{height:43.108125pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.h12{height:57.920000pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h8{height:63.656250pt;}
.h5{height:100.032000pt;}
.h16{height:105.760000pt;}
.h14{height:123.520000pt;}
.h2{height:130.432000pt;}
.h1a{height:140.960000pt;}
.h1b{height:140.986667pt;}
.h19{height:158.586667pt;}
.h1d{height:158.720000pt;}
.h17{height:158.746667pt;}
.h1c{height:176.320000pt;}
.h13{height:176.346667pt;}
.h15{height:193.946667pt;}
.h18{height:211.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w6{width:32.992000pt;}
.w8{width:59.552000pt;}
.w9{width:90.080000pt;}
.w3{width:116.192000pt;}
.w7{width:126.880000pt;}
.wa{width:168.826667pt;}
.wb{width:207.266667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x14{left:19.520000pt;}
.x15{left:37.640000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.xe{left:52.480000pt;}
.xc{left:71.999988pt;}
.x7{left:78.111988pt;}
.xf{left:86.112000pt;}
.xd{left:96.031988pt;}
.x4{left:105.146667pt;}
.xb{left:152.506655pt;}
.x10{left:213.786667pt;}
.x11{left:273.986667pt;}
.xa{left:283.106655pt;}
.x8{left:285.506655pt;}
.x12{left:364.706667pt;}
.x9{left:396.893322pt;}
.x13{left:534.173333pt;}
.x3{left:627.493333pt;}
.x6{left:737.120000pt;}
}




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