
    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_affef96b41b97763b2f77a5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_8762014ff03245b16b03f4e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fe694d04946c3de6f13eab64.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_0954ca14cb105fcb6ef01e5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_a577fbbe52bee8c74a398bd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_ed16de5cc5b459619edf3ea2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_ac68b884136faa3f1d5b3e93.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_3defd5b2d325ff041cb493cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239258;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_2b4ae905c927677f799b2daf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718750;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;}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-28.799988px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.799988px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008460px;}
.ls3{letter-spacing:0.107967px;}
.ls0{letter-spacing:0.187842px;}
.ls1{letter-spacing:0.189257px;}
.ls5{letter-spacing:0.617061px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-25.343990px;}
.ws3{word-spacing:-24.623990px;}
.ws1{word-spacing:-20.437912px;}
.ws4{word-spacing:-20.275192px;}
.ws5{word-spacing:-17.999993px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-11.054464px;}
._1b{margin-left:-10.005184px;}
._26{margin-left:-8.966110px;}
._1e{margin-left:-7.762019px;}
._e{margin-left:-6.643354px;}
._1d{margin-left:-4.820975px;}
._2{margin-left:-3.600413px;}
._11{margin-left:-2.447489px;}
._1{margin-left:-1.440826px;}
._0{width:1.468234px;}
._12{width:2.652397px;}
._d{width:4.551750px;}
._c{width:5.614474px;}
._19{width:6.705032px;}
._14{width:7.749852px;}
._13{width:8.759187px;}
._15{width:9.983039px;}
._7{width:10.983425px;}
._6{width:12.259546px;}
._f{width:13.793093px;}
._10{width:15.237343px;}
._1c{width:16.345906px;}
._18{width:17.379940px;}
._17{width:18.707676px;}
._16{width:19.902912px;}
._9{width:21.338778px;}
._8{width:23.205055px;}
._22{width:24.206245px;}
._3{width:25.295110px;}
._23{width:26.423002px;}
._5{width:28.243865px;}
._1a{width:29.710349px;}
._1f{width:30.796840px;}
._21{width:32.090735px;}
._a{width:34.167275px;}
._b{width:35.203234px;}
._25{width:37.055507px;}
._2a{width:41.378097px;}
._2b{width:42.490355px;}
._2e{width:45.700615px;}
._24{width:50.607414px;}
._4{width:54.939967px;}
._29{width:72.356372px;}
._2f{width:98.389107px;}
._27{width:208.870182px;}
._28{width:210.105047px;}
._2c{width:230.303437px;}
._2d{width:459.649303px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(128,0,128);}
.fs5{font-size:45.359982px;}
.fs1{font-size:53.999978px;}
.fs4{font-size:57.599977px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs3{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y15{bottom:59.700276px;}
.ycd{bottom:89.399964px;}
.y4d{bottom:90.299964px;}
.yf8{bottom:94.799962px;}
.yb0{bottom:95.519962px;}
.y10d{bottom:97.679961px;}
.y67{bottom:108.299957px;}
.ya5{bottom:108.839956px;}
.y81{bottom:111.359955px;}
.y34{bottom:113.339955px;}
.y14{bottom:114.419954px;}
.ye5{bottom:114.959954px;}
.y138{bottom:117.299953px;}
.y124{bottom:119.459952px;}
.ycc{bottom:122.159951px;}
.y4c{bottom:123.059951px;}
.y143{bottom:126.300249px;}
.yf7{bottom:127.559949px;}
.y10c{bottom:130.439948px;}
.y13{bottom:132.599947px;}
.yaf{bottom:137.459945px;}
.y66{bottom:141.059944px;}
.ya4{bottom:141.779943px;}
.y80{bottom:144.299942px;}
.y33{bottom:146.099942px;}
.ye4{bottom:147.899941px;}
.y137{bottom:150.059940px;}
.ycb{bottom:155.099938px;}
.y142{bottom:159.059936px;}
.yf6{bottom:160.499936px;}
.y123{bottom:161.219936px;}
.y10b{bottom:163.379935px;}
.y4b{bottom:164.999934px;}
.y12{bottom:169.139932px;}
.y65{bottom:173.999930px;}
.ya3{bottom:174.539930px;}
.y7f{bottom:177.059929px;}
.y32{bottom:179.039928px;}
.yca{bottom:187.859925px;}
.y136{bottom:191.999923px;}
.yf5{bottom:193.259923px;}
.y122{bottom:194.159922px;}
.y10a{bottom:196.139922px;}
.y96{bottom:197.759921px;}
.y4a{bottom:206.759917px;}
.ya2{bottom:207.479917px;}
.y7e{bottom:209.999916px;}
.y31{bottom:211.799915px;}
.y64{bottom:212.159915px;}
.yc9{bottom:220.799912px;}
.y135{bottom:224.759910px;}
.yf4{bottom:226.199910px;}
.y121{bottom:226.919909px;}
.y109{bottom:229.079908px;}
.y95{bottom:230.699908px;}
.ye3{bottom:233.399907px;}
.y49{bottom:239.699904px;}
.ya1{bottom:240.239904px;}
.y7d{bottom:242.759903px;}
.y30{bottom:244.739902px;}
.yc8{bottom:253.559899px;}
.y63{bottom:254.099898px;}
.y134{bottom:257.699897px;}
.yf3{bottom:258.959896px;}
.y94{bottom:263.459895px;}
.y120{bottom:268.859892px;}
.ye2{bottom:271.559891px;}
.y48{bottom:272.459891px;}
.ya0{bottom:273.179891px;}
.y2f{bottom:277.499889px;}
.yc7{bottom:286.499885px;}
.y62{bottom:286.859885px;}
.y141{bottom:290.459884px;}
.y11{bottom:291.719883px;}
.yf2{bottom:291.899883px;}
.y133{bottom:299.459880px;}
.y11f{bottom:301.619879px;}
.ye1{bottom:304.499878px;}
.y47{bottom:305.399878px;}
.y108{bottom:309.719876px;}
.y93{bottom:314.399874px;}
.yc6{bottom:319.259872px;}
.y2e{bottom:319.439872px;}
.y140{bottom:323.399871px;}
.yf1{bottom:324.659870px;}
.y61{bottom:325.199870px;}
.y7c{bottom:326.459869px;}
.y132{bottom:332.399867px;}
.y11e{bottom:334.559866px;}
.ye0{bottom:337.259865px;}
.y46{bottom:338.159865px;}
.y107{bottom:342.659863px;}
.y10{bottom:344.459862px;}
.y92{bottom:347.159861px;}
.yc5{bottom:352.199859px;}
.y13f{bottom:356.159858px;}
.yf0{bottom:357.599857px;}
.y7b{bottom:359.399856px;}
.y2d{bottom:361.199856px;}
.y60{bottom:363.359855px;}
.y131{bottom:365.159854px;}
.yf{bottom:366.419853px;}
.y11d{bottom:367.319853px;}
.ydf{bottom:370.199852px;}
.y106{bottom:375.419850px;}
.y45{bottom:380.099848px;}
.yc4{bottom:384.959846px;}
.ye{bottom:388.199845px;}
.y7a{bottom:392.159843px;}
.y8d{bottom:392.519843px;}
.y2c{bottom:394.139842px;}
.y5f{bottom:396.299841px;}
.y130{bottom:398.099841px;}
.y11c{bottom:400.259840px;}
.yde{bottom:408.359837px;}
.yd{bottom:410.159836px;}
.y91{bottom:412.859835px;}
.yc3{bottom:417.899833px;}
.y44{bottom:421.859831px;}
.y79{bottom:425.099830px;}
.y8c{bottom:425.459830px;}
.y2b{bottom:426.899829px;}
.y5e{bottom:429.059828px;}
.y12f{bottom:430.859828px;}
.yc{bottom:432.119827px;}
.y105{bottom:441.119824px;}
.ydd{bottom:441.299823px;}
.y11b{bottom:442.019823px;}
.y90{bottom:445.799822px;}
.y43{bottom:454.799818px;}
.y78{bottom:457.859817px;}
.y8b{bottom:458.219817px;}
.yc2{bottom:459.659816px;}
.y2a{bottom:459.839816px;}
.y13e{bottom:463.799814px;}
.y5d{bottom:470.999812px;}
.y12e{bottom:472.799811px;}
.ydc{bottom:474.059810px;}
.y11a{bottom:474.959810px;}
.y42{bottom:487.559805px;}
.y77{bottom:490.799804px;}
.y8a{bottom:491.159804px;}
.y29{bottom:492.599803px;}
.y8f{bottom:501.059800px;}
.y5c{bottom:503.759798px;}
.y12d{bottom:505.559798px;}
.yef{bottom:506.999797px;}
.y119{bottom:507.719797px;}
.yb{bottom:508.619797px;}
.ydb{bottom:512.399795px;}
.y41{bottom:520.499792px;}
.y89{bottom:523.919790px;}
.yc1{bottom:525.359790px;}
.y76{bottom:528.959788px;}
.y28{bottom:534.539786px;}
.y12c{bottom:538.499785px;}
.yee{bottom:539.759784px;}
.y118{bottom:540.659784px;}
.y5b{bottom:542.099783px;}
.yda{bottom:545.159782px;}
.y40{bottom:553.259779px;}
.ya{bottom:555.779778px;}
.y75{bottom:561.899775px;}
.yc0{bottom:563.699775px;}
.y104{bottom:565.499774px;}
.y12b{bottom:571.259771px;}
.yed{bottom:572.699771px;}
.y5a{bottom:574.859770px;}
.y26{bottom:577.919769px;}
.yd9{bottom:578.099769px;}
.y8e{bottom:580.259768px;}
.y117{bottom:582.419767px;}
.y27{bottom:585.659766px;}
.yac{bottom:590.519764px;}
.y74{bottom:594.659762px;}
.y3f{bottom:595.199762px;}
.ybf{bottom:596.459761px;}
.yae{bottom:597.359761px;}
.yad{bottom:598.259761px;}
.y103{bottom:603.659759px;}
.y59{bottom:607.799757px;}
.yd8{bottom:610.859756px;}
.y25{bottom:613.199755px;}
.y116{bottom:615.359754px;}
.y73{bottom:627.599749px;}
.yab{bottom:628.859748px;}
.ybe{bottom:629.399748px;}
.y102{bottom:636.599745px;}
.y3e{bottom:636.959745px;}
.y58{bottom:640.559744px;}
.y9{bottom:643.079743px;}
.yd7{bottom:643.799742px;}
.y24{bottom:645.959742px;}
.y115{bottom:648.119741px;}
.y9f{bottom:652.979739px;}
.y13d{bottom:654.959738px;}
.y72{bottom:660.359736px;}
.yaa{bottom:661.799735px;}
.ybd{bottom:662.159735px;}
.y3d{bottom:669.899732px;}
.y57{bottom:673.499731px;}
.y101{bottom:674.759730px;}
.y8{bottom:676.019730px;}
.yd6{bottom:676.559729px;}
.y23{bottom:678.899728px;}
.y114{bottom:681.059728px;}
.y9e{bottom:685.919726px;}
.y13c{bottom:687.899725px;}
.y71{bottom:693.299723px;}
.ya9{bottom:694.559722px;}
.ybc{bottom:695.099722px;}
.y3c{bottom:702.659719px;}
.y100{bottom:707.699717px;}
.y7{bottom:708.779716px;}
.yd5{bottom:709.499716px;}
.y22{bottom:711.659715px;}
.y113{bottom:718.319713px;}
.y9d{bottom:718.679713px;}
.y12a{bottom:720.659712px;}
.y70{bottom:726.059710px;}
.ya8{bottom:727.499709px;}
.ybb{bottom:727.859709px;}
.y3b{bottom:735.599706px;}
.yff{bottom:740.459704px;}
.yd4{bottom:742.259703px;}
.y56{bottom:744.599702px;}
.y9c{bottom:751.619699px;}
.y21{bottom:753.599699px;}
.y88{bottom:756.659697px;}
.y6f{bottom:758.999696px;}
.ya7{bottom:760.259696px;}
.yba{bottom:760.799696px;}
.y13b{bottom:762.599695px;}
.y3a{bottom:768.359693px;}
.yfe{bottom:773.399691px;}
.yd3{bottom:775.199690px;}
.y55{bottom:777.359689px;}
.y9b{bottom:784.379686px;}
.y129{bottom:786.359685px;}
.y87{bottom:789.419684px;}
.y6e{bottom:791.759683px;}
.ya6{bottom:793.199683px;}
.y20{bottom:795.359682px;}
.y39{bottom:801.299679px;}
.yb9{bottom:804.359678px;}
.yfd{bottom:806.159678px;}
.y112{bottom:807.959677px;}
.y54{bottom:810.299676px;}
.yd2{bottom:816.959673px;}
.y9a{bottom:817.319673px;}
.yec{bottom:825.959670px;}
.y1f{bottom:828.299669px;}
.y6d{bottom:833.699667px;}
.y86{bottom:837.299665px;}
.y6{bottom:838.199665px;}
.yfc{bottom:839.099664px;}
.y111{bottom:840.899664px;}
.yb8{bottom:842.699663px;}
.y38{bottom:843.059663px;}
.yd1{bottom:849.899660px;}
.y99{bottom:850.079660px;}
.y53{bottom:852.059659px;}
.yeb{bottom:858.899656px;}
.y1e{bottom:861.059656px;}
.y6c{bottom:866.459653px;}
.y13a{bottom:870.059652px;}
.y110{bottom:873.659651px;}
.y5{bottom:873.839650px;}
.yb7{bottom:875.459650px;}
.yd0{bottom:882.659647px;}
.y98{bottom:883.019647px;}
.y37{bottom:884.999646px;}
.yea{bottom:891.659643px;}
.y1d{bottom:893.999642px;}
.y6b{bottom:899.399640px;}
.y128{bottom:902.999639px;}
.y10f{bottom:906.599637px;}
.yb6{bottom:908.399637px;}
.y4{bottom:909.299636px;}
.ycf{bottom:915.599634px;}
.y97{bottom:915.779634px;}
.y36{bottom:917.759633px;}
.y85{bottom:920.999632px;}
.ye9{bottom:924.599630px;}
.y1c{bottom:926.759629px;}
.y127{bottom:935.759626px;}
.y6a{bottom:937.559625px;}
.y10e{bottom:939.359624px;}
.yb5{bottom:941.159624px;}
.y139{bottom:944.759622px;}
.y3{bottom:944.939622px;}
.yce{bottom:948.359621px;}
.y84{bottom:953.759618px;}
.ye8{bottom:957.359617px;}
.y1b{bottom:959.699616px;}
.yfb{bottom:962.759615px;}
.y126{bottom:968.699613px;}
.y69{bottom:970.499612px;}
.yb4{bottom:974.099610px;}
.y52{bottom:977.699609px;}
.y83{bottom:986.699605px;}
.ye7{bottom:990.299604px;}
.yfa{bottom:995.699602px;}
.y1a{bottom:1001.459599px;}
.y125{bottom:1010.459596px;}
.yb3{bottom:1017.659593px;}
.y51{bottom:1019.459592px;}
.ye6{bottom:1023.059591px;}
.yf9{bottom:1028.459589px;}
.y19{bottom:1043.399583px;}
.y2{bottom:1046.279581px;}
.y82{bottom:1052.399579px;}
.y68{bottom:1055.999578px;}
.y50{bottom:1061.399575px;}
.y18{bottom:1076.159570px;}
.y35{bottom:1085.159566px;}
.yb2{bottom:1088.759564px;}
.y4f{bottom:1094.159562px;}
.y17{bottom:1118.099553px;}
.yb1{bottom:1121.699551px;}
.y4e{bottom:1127.099549px;}
.y16{bottom:1159.859536px;}
.y1{bottom:1194.779522px;}
.hc{height:32.602487px;}
.h1{height:43.390178px;}
.h2{height:56.320290px;}
.hd{height:58.348102px;}
.h8{height:59.789156px;}
.h9{height:60.226851px;}
.h3{height:63.703100px;}
.hb{height:72.026690px;}
.h5{height:72.035127px;}
.ha{height:72.562471px;}
.h4{height:77.797938px;}
.h7{height:85.708091px;}
.h6{height:86.428090px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:85.139966px;}
.x12{left:112.140883px;}
.x13{left:115.739954px;}
.x3{left:128.339949px;}
.x2{left:136.439945px;}
.xa{left:137.700021px;}
.x4{left:149.939940px;}
.x5{left:211.139916px;}
.x6{left:297.539881px;}
.x7{left:314.459874px;}
.x9{left:320.939796px;}
.x8{left:361.799808px;}
.xf{left:365.579854px;}
.x10{left:376.379849px;}
.x11{left:381.419847px;}
.xc{left:424.079830px;}
.xd{left:434.699826px;}
.xe{left:439.919824px;}
.xb{left:742.679703px;}
@media print{
.v2{vertical-align:-25.599990pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.599990pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007520pt;}
.ls3{letter-spacing:0.095971pt;}
.ls0{letter-spacing:0.166971pt;}
.ls1{letter-spacing:0.168228pt;}
.ls5{letter-spacing:0.548499pt;}
.ws0{word-spacing:-22.527991pt;}
.ws3{word-spacing:-21.887991pt;}
.ws1{word-spacing:-18.167033pt;}
.ws4{word-spacing:-18.022393pt;}
.ws5{word-spacing:-15.999994pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-9.826190pt;}
._1b{margin-left:-8.893497pt;}
._26{margin-left:-7.969876pt;}
._1e{margin-left:-6.899572pt;}
._e{margin-left:-5.905204pt;}
._1d{margin-left:-4.285311pt;}
._2{margin-left:-3.200367pt;}
._11{margin-left:-2.175546pt;}
._1{margin-left:-1.280735pt;}
._0{width:1.305097pt;}
._12{width:2.357686pt;}
._d{width:4.046000pt;}
._c{width:4.990644pt;}
._19{width:5.960029pt;}
._14{width:6.888757pt;}
._13{width:7.785944pt;}
._15{width:8.873812pt;}
._7{width:9.763044pt;}
._6{width:10.897374pt;}
._f{width:12.260527pt;}
._10{width:13.544305pt;}
._1c{width:14.529695pt;}
._18{width:15.448835pt;}
._17{width:16.629046pt;}
._16{width:17.691478pt;}
._9{width:18.967803pt;}
._8{width:20.626716pt;}
._22{width:21.516662pt;}
._3{width:22.484542pt;}
._23{width:23.487113pt;}
._5{width:25.105658pt;}
._1a{width:26.409199pt;}
._1f{width:27.374969pt;}
._21{width:28.525098pt;}
._a{width:30.370911pt;}
._b{width:31.291763pt;}
._25{width:32.938228pt;}
._2a{width:36.780531pt;}
._2b{width:37.769205pt;}
._2e{width:40.622769pt;}
._24{width:44.984368pt;}
._4{width:48.835526pt;}
._29{width:64.316776pt;}
._2f{width:87.456984pt;}
._27{width:185.662384pt;}
._28{width:186.760041pt;}
._2c{width:204.714166pt;}
._2d{width:408.577158pt;}
.fs5{font-size:40.319984pt;}
.fs1{font-size:47.999981pt;}
.fs4{font-size:51.199980pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs3{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:53.066912pt;}
.ycd{bottom:79.466635pt;}
.y4d{bottom:80.266635pt;}
.yf8{bottom:84.266633pt;}
.yb0{bottom:84.906633pt;}
.y10d{bottom:86.826632pt;}
.y67{bottom:96.266628pt;}
.ya5{bottom:96.746628pt;}
.y81{bottom:98.986627pt;}
.y34{bottom:100.746626pt;}
.y14{bottom:101.706626pt;}
.ye5{bottom:102.186626pt;}
.y138{bottom:104.266625pt;}
.y124{bottom:106.186624pt;}
.ycc{bottom:108.586623pt;}
.y4c{bottom:109.386623pt;}
.y143{bottom:112.266888pt;}
.yf7{bottom:113.386621pt;}
.y10c{bottom:115.946620pt;}
.y13{bottom:117.866620pt;}
.yaf{bottom:122.186618pt;}
.y66{bottom:125.386617pt;}
.ya4{bottom:126.026616pt;}
.y80{bottom:128.266615pt;}
.y33{bottom:129.866615pt;}
.ye4{bottom:131.466614pt;}
.y137{bottom:133.386613pt;}
.ycb{bottom:137.866612pt;}
.y142{bottom:141.386610pt;}
.yf6{bottom:142.666610pt;}
.y123{bottom:143.306609pt;}
.y10b{bottom:145.226609pt;}
.y4b{bottom:146.666608pt;}
.y12{bottom:150.346607pt;}
.y65{bottom:154.666605pt;}
.ya3{bottom:155.146605pt;}
.y7f{bottom:157.386604pt;}
.y32{bottom:159.146603pt;}
.yca{bottom:166.986600pt;}
.y136{bottom:170.666598pt;}
.yf5{bottom:171.786598pt;}
.y122{bottom:172.586598pt;}
.y10a{bottom:174.346597pt;}
.y96{bottom:175.786596pt;}
.y4a{bottom:183.786593pt;}
.ya2{bottom:184.426593pt;}
.y7e{bottom:186.666592pt;}
.y31{bottom:188.266591pt;}
.y64{bottom:188.586591pt;}
.yc9{bottom:196.266588pt;}
.y135{bottom:199.786587pt;}
.yf4{bottom:201.066586pt;}
.y121{bottom:201.706586pt;}
.y109{bottom:203.626585pt;}
.y95{bottom:205.066585pt;}
.ye3{bottom:207.466584pt;}
.y49{bottom:213.066581pt;}
.ya1{bottom:213.546581pt;}
.y7d{bottom:215.786580pt;}
.y30{bottom:217.546580pt;}
.yc8{bottom:225.386577pt;}
.y63{bottom:225.866576pt;}
.y134{bottom:229.066575pt;}
.yf3{bottom:230.186575pt;}
.y94{bottom:234.186573pt;}
.y120{bottom:238.986571pt;}
.ye2{bottom:241.386570pt;}
.y48{bottom:242.186570pt;}
.ya0{bottom:242.826570pt;}
.y2f{bottom:246.666568pt;}
.yc7{bottom:254.666565pt;}
.y62{bottom:254.986565pt;}
.y141{bottom:258.186563pt;}
.y11{bottom:259.306563pt;}
.yf2{bottom:259.466563pt;}
.y133{bottom:266.186560pt;}
.y11f{bottom:268.106559pt;}
.ye1{bottom:270.666558pt;}
.y47{bottom:271.466558pt;}
.y108{bottom:275.306557pt;}
.y93{bottom:279.466555pt;}
.yc6{bottom:283.786553pt;}
.y2e{bottom:283.946553pt;}
.y140{bottom:287.466552pt;}
.yf1{bottom:288.586551pt;}
.y61{bottom:289.066551pt;}
.y7c{bottom:290.186551pt;}
.y132{bottom:295.466548pt;}
.y11e{bottom:297.386548pt;}
.ye0{bottom:299.786547pt;}
.y46{bottom:300.586546pt;}
.y107{bottom:304.586545pt;}
.y10{bottom:306.186544pt;}
.y92{bottom:308.586543pt;}
.yc5{bottom:313.066541pt;}
.y13f{bottom:316.586540pt;}
.yf0{bottom:317.866540pt;}
.y7b{bottom:319.466539pt;}
.y2d{bottom:321.066538pt;}
.y60{bottom:322.986537pt;}
.y131{bottom:324.586537pt;}
.yf{bottom:325.706536pt;}
.y11d{bottom:326.506536pt;}
.ydf{bottom:329.066535pt;}
.y106{bottom:333.706533pt;}
.y45{bottom:337.866532pt;}
.yc4{bottom:342.186530pt;}
.ye{bottom:345.066529pt;}
.y7a{bottom:348.586527pt;}
.y8d{bottom:348.906527pt;}
.y2c{bottom:350.346527pt;}
.y5f{bottom:352.266526pt;}
.y130{bottom:353.866525pt;}
.y11c{bottom:355.786524pt;}
.yde{bottom:362.986521pt;}
.yd{bottom:364.586521pt;}
.y91{bottom:366.986520pt;}
.yc3{bottom:371.466518pt;}
.y44{bottom:374.986517pt;}
.y79{bottom:377.866516pt;}
.y8c{bottom:378.186515pt;}
.y2b{bottom:379.466515pt;}
.y5e{bottom:381.386514pt;}
.y12f{bottom:382.986513pt;}
.yc{bottom:384.106513pt;}
.y105{bottom:392.106510pt;}
.ydd{bottom:392.266510pt;}
.y11b{bottom:392.906510pt;}
.y90{bottom:396.266508pt;}
.y43{bottom:404.266505pt;}
.y78{bottom:406.986504pt;}
.y8b{bottom:407.306504pt;}
.yc2{bottom:408.586503pt;}
.y2a{bottom:408.746503pt;}
.y13e{bottom:412.266502pt;}
.y5d{bottom:418.666499pt;}
.y12e{bottom:420.266499pt;}
.ydc{bottom:421.386498pt;}
.y11a{bottom:422.186498pt;}
.y42{bottom:433.386493pt;}
.y77{bottom:436.266492pt;}
.y8a{bottom:436.586492pt;}
.y29{bottom:437.866492pt;}
.y8f{bottom:445.386489pt;}
.y5c{bottom:447.786488pt;}
.y12d{bottom:449.386487pt;}
.yef{bottom:450.666486pt;}
.y119{bottom:451.306486pt;}
.yb{bottom:452.106486pt;}
.ydb{bottom:455.466484pt;}
.y41{bottom:462.666482pt;}
.y89{bottom:465.706480pt;}
.yc1{bottom:466.986480pt;}
.y76{bottom:470.186479pt;}
.y28{bottom:475.146477pt;}
.y12c{bottom:478.666475pt;}
.yee{bottom:479.786475pt;}
.y118{bottom:480.586474pt;}
.y5b{bottom:481.866474pt;}
.yda{bottom:484.586473pt;}
.y40{bottom:491.786470pt;}
.ya{bottom:494.026469pt;}
.y75{bottom:499.466467pt;}
.yc0{bottom:501.066466pt;}
.y104{bottom:502.666466pt;}
.y12b{bottom:507.786464pt;}
.yed{bottom:509.066463pt;}
.y5a{bottom:510.986462pt;}
.y26{bottom:513.706461pt;}
.yd9{bottom:513.866461pt;}
.y8e{bottom:515.786460pt;}
.y117{bottom:517.706460pt;}
.y27{bottom:520.586458pt;}
.yac{bottom:524.906457pt;}
.y74{bottom:528.586455pt;}
.y3f{bottom:529.066455pt;}
.ybf{bottom:530.186455pt;}
.yae{bottom:530.986454pt;}
.yad{bottom:531.786454pt;}
.y103{bottom:536.586452pt;}
.y59{bottom:540.266451pt;}
.yd8{bottom:542.986449pt;}
.y25{bottom:545.066449pt;}
.y116{bottom:546.986448pt;}
.y73{bottom:557.866444pt;}
.yab{bottom:558.986443pt;}
.ybe{bottom:559.466443pt;}
.y102{bottom:565.866440pt;}
.y3e{bottom:566.186440pt;}
.y58{bottom:569.386439pt;}
.y9{bottom:571.626438pt;}
.yd7{bottom:572.266438pt;}
.y24{bottom:574.186437pt;}
.y115{bottom:576.106436pt;}
.y9f{bottom:580.426434pt;}
.y13d{bottom:582.186434pt;}
.y72{bottom:586.986432pt;}
.yaa{bottom:588.266431pt;}
.ybd{bottom:588.586431pt;}
.y3d{bottom:595.466428pt;}
.y57{bottom:598.666427pt;}
.y101{bottom:599.786427pt;}
.y8{bottom:600.906426pt;}
.yd6{bottom:601.386426pt;}
.y23{bottom:603.466425pt;}
.y114{bottom:605.386425pt;}
.y9e{bottom:609.706423pt;}
.y13c{bottom:611.466422pt;}
.y71{bottom:616.266420pt;}
.ya9{bottom:617.386420pt;}
.ybc{bottom:617.866420pt;}
.y3c{bottom:624.586417pt;}
.y100{bottom:629.066415pt;}
.y7{bottom:630.026415pt;}
.yd5{bottom:630.666414pt;}
.y22{bottom:632.586414pt;}
.y113{bottom:638.506411pt;}
.y9d{bottom:638.826411pt;}
.y12a{bottom:640.586410pt;}
.y70{bottom:645.386409pt;}
.ya8{bottom:646.666408pt;}
.ybb{bottom:646.986408pt;}
.y3b{bottom:653.866405pt;}
.yff{bottom:658.186403pt;}
.yd4{bottom:659.786403pt;}
.y56{bottom:661.866402pt;}
.y9c{bottom:668.106399pt;}
.y21{bottom:669.866399pt;}
.y88{bottom:672.586398pt;}
.y6f{bottom:674.666397pt;}
.ya7{bottom:675.786396pt;}
.yba{bottom:676.266396pt;}
.y13b{bottom:677.866396pt;}
.y3a{bottom:682.986393pt;}
.yfe{bottom:687.466392pt;}
.yd3{bottom:689.066391pt;}
.y55{bottom:690.986390pt;}
.y9b{bottom:697.226388pt;}
.y129{bottom:698.986387pt;}
.y87{bottom:701.706386pt;}
.y6e{bottom:703.786385pt;}
.ya6{bottom:705.066385pt;}
.y20{bottom:706.986384pt;}
.y39{bottom:712.266382pt;}
.yb9{bottom:714.986381pt;}
.yfd{bottom:716.586380pt;}
.y112{bottom:718.186379pt;}
.y54{bottom:720.266379pt;}
.yd2{bottom:726.186376pt;}
.y9a{bottom:726.506376pt;}
.yec{bottom:734.186373pt;}
.y1f{bottom:736.266372pt;}
.y6d{bottom:741.066370pt;}
.y86{bottom:744.266369pt;}
.y6{bottom:745.066369pt;}
.yfc{bottom:745.866368pt;}
.y111{bottom:747.466368pt;}
.yb8{bottom:749.066367pt;}
.y38{bottom:749.386367pt;}
.yd1{bottom:755.466364pt;}
.y99{bottom:755.626364pt;}
.y53{bottom:757.386364pt;}
.yeb{bottom:763.466361pt;}
.y1e{bottom:765.386361pt;}
.y6c{bottom:770.186359pt;}
.y13a{bottom:773.386357pt;}
.y110{bottom:776.586356pt;}
.y5{bottom:776.746356pt;}
.yb7{bottom:778.186355pt;}
.yd0{bottom:784.586353pt;}
.y98{bottom:784.906353pt;}
.y37{bottom:786.666352pt;}
.yea{bottom:792.586350pt;}
.y1d{bottom:794.666349pt;}
.y6b{bottom:799.466347pt;}
.y128{bottom:802.666346pt;}
.y10f{bottom:805.866344pt;}
.yb6{bottom:807.466344pt;}
.y4{bottom:808.266343pt;}
.ycf{bottom:813.866341pt;}
.y97{bottom:814.026341pt;}
.y36{bottom:815.786340pt;}
.y85{bottom:818.666339pt;}
.ye9{bottom:821.866338pt;}
.y1c{bottom:823.786337pt;}
.y127{bottom:831.786334pt;}
.y6a{bottom:833.386333pt;}
.y10e{bottom:834.986333pt;}
.yb5{bottom:836.586332pt;}
.y139{bottom:839.786331pt;}
.y3{bottom:839.946331pt;}
.yce{bottom:842.986329pt;}
.y84{bottom:847.786328pt;}
.ye8{bottom:850.986326pt;}
.y1b{bottom:853.066325pt;}
.yfb{bottom:855.786324pt;}
.y126{bottom:861.066322pt;}
.y69{bottom:862.666322pt;}
.yb4{bottom:865.866320pt;}
.y52{bottom:869.066319pt;}
.y83{bottom:877.066316pt;}
.ye7{bottom:880.266315pt;}
.yfa{bottom:885.066313pt;}
.y1a{bottom:890.186311pt;}
.y125{bottom:898.186307pt;}
.yb3{bottom:904.586305pt;}
.y51{bottom:906.186304pt;}
.ye6{bottom:909.386303pt;}
.yf9{bottom:914.186301pt;}
.y19{bottom:927.466296pt;}
.y2{bottom:930.026295pt;}
.y82{bottom:935.466292pt;}
.y68{bottom:938.666291pt;}
.y50{bottom:943.466289pt;}
.y18{bottom:956.586284pt;}
.y35{bottom:964.586281pt;}
.yb2{bottom:967.786280pt;}
.y4f{bottom:972.586278pt;}
.y17{bottom:993.866269pt;}
.yb1{bottom:997.066268pt;}
.y4e{bottom:1001.866266pt;}
.y16{bottom:1030.986254pt;}
.y1{bottom:1062.026242pt;}
.hc{height:28.979988pt;}
.h1{height:38.569047pt;}
.h2{height:50.062480pt;}
.hd{height:51.864979pt;}
.h8{height:53.145916pt;}
.h9{height:53.534979pt;}
.h3{height:56.624977pt;}
.hb{height:64.023724pt;}
.h5{height:64.031224pt;}
.ha{height:64.499974pt;}
.h4{height:69.153722pt;}
.h7{height:76.184970pt;}
.h6{height:76.824969pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.679970pt;}
.x12{left:99.680785pt;}
.x13{left:102.879959pt;}
.x3{left:114.079954pt;}
.x2{left:121.279951pt;}
.xa{left:122.400019pt;}
.x4{left:133.279947pt;}
.x5{left:187.679925pt;}
.x6{left:264.479894pt;}
.x7{left:279.519888pt;}
.x9{left:285.279819pt;}
.x8{left:321.599830pt;}
.xf{left:324.959870pt;}
.x10{left:334.559866pt;}
.x11{left:339.039864pt;}
.xc{left:376.959849pt;}
.xd{left:386.399845pt;}
.xe{left:391.039844pt;}
.xb{left:660.159736pt;}
}




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