
    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_1a0cf64203955aeb8633813b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b2ec1db5f0a009f8fb2b9061.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967285;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_e75619b773a305d6e1c41a3f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_78607866f98c51ec1a776be1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.681641;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_31e4d734c43b9cf33d4392bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_50df6cf97f7ab79ce4bad788.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_4ff2427c4032f32198378bf5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950684;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_0d70b2e8b368d9d20728cbc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967285;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_7b1659b3a31e9da3d6286550.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_d41015a23c7a2950fefc1d45.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c74f67d6dddac2bc2a1ed2c7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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:ffc;src:url('chunks/assets/font_6977221ee6dc31f1531d2baa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967285;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:ffd;src:url('chunks/assets/font_d41f821a1e5ef54c16c31515.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_31eba5b73f8bc799944ac19e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.762207;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:fff;src:url('chunks/assets/font_2c3eaed0a4f0b17db2315331.woff2')format("woff");}.fff{font-family:fff;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls2{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.960000px;}
.ls1{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.600000px;}
.ls4{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.441200px;}
.ls6{letter-spacing:1.441800px;}
.ls9{letter-spacing:1.551300px;}
.ls8{letter-spacing:5.965800px;}
.ls5{letter-spacing:9.378000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws34{word-spacing:-18.000000px;}
.ws15{word-spacing:-16.200000px;}
.wse{word-spacing:-15.000000px;}
.ws23{word-spacing:-14.928000px;}
.ws3{word-spacing:-14.085000px;}
.ws11{word-spacing:-13.824000px;}
.ws16{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.146000px;}
.ws0{word-spacing:-13.138488px;}
.ws2d{word-spacing:-12.480000px;}
.ws2{word-spacing:-12.000000px;}
.ws2e{word-spacing:-11.040000px;}
.wsf{word-spacing:-8.745000px;}
.ws30{word-spacing:-3.840000px;}
.ws31{word-spacing:-2.256000px;}
.wsb{word-spacing:-1.998000px;}
.ws21{word-spacing:-1.782000px;}
.wsd{word-spacing:-1.776600px;}
.ws2c{word-spacing:-1.728000px;}
.ws33{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.436400px;}
.ws17{word-spacing:-1.200000px;}
.ws2b{word-spacing:-0.756000px;}
.ws2a{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.045000px;}
.ws7{word-spacing:0.000000px;}
.ws14{word-spacing:0.108000px;}
.ws5{word-spacing:0.486000px;}
.ws8{word-spacing:0.540000px;}
.ws18{word-spacing:0.648000px;}
.ws2f{word-spacing:0.960000px;}
.ws6{word-spacing:1.026000px;}
.ws20{word-spacing:1.458000px;}
.ws28{word-spacing:1.566000px;}
.ws12{word-spacing:1.836000px;}
.wsa{word-spacing:2.268000px;}
.ws1d{word-spacing:4.500000px;}
.ws1c{word-spacing:5.220000px;}
.ws22{word-spacing:5.994000px;}
.ws32{word-spacing:6.240000px;}
.ws1e{word-spacing:6.840000px;}
.ws1b{word-spacing:8.640000px;}
.ws25{word-spacing:9.180000px;}
.ws1f{word-spacing:9.396000px;}
.ws27{word-spacing:9.960000px;}
.ws26{word-spacing:13.860000px;}
.ws1a{word-spacing:26.220000px;}
.ws10{word-spacing:101.594400px;}
.ws24{word-spacing:451.104000px;}
._10{margin-left:-2823.900600px;}
._6{margin-left:-6.589200px;}
._2b{margin-left:-5.561400px;}
._5{margin-left:-4.202400px;}
._1{margin-left:-2.774400px;}
._0{margin-left:-1.152600px;}
._3{width:1.234200px;}
._4{width:2.529600px;}
._2{width:3.702600px;}
._8{width:4.827600px;}
._e{width:5.844000px;}
._9{width:6.912000px;}
._b{width:8.322000px;}
._f{width:9.342000px;}
._d{width:11.244000px;}
._a{width:12.414000px;}
._21{width:13.878000px;}
._c{width:16.080000px;}
._46{width:17.119200px;}
._22{width:18.510000px;}
._47{width:20.400000px;}
._23{width:23.280000px;}
._45{width:24.691200px;}
._25{width:26.188800px;}
._24{width:28.626000px;}
._7{width:29.760000px;}
._13{width:31.986000px;}
._26{width:44.559000px;}
._12{width:53.003400px;}
._3b{width:54.639600px;}
._3f{width:65.356200px;}
._27{width:70.300200px;}
._40{width:77.500200px;}
._14{width:92.733600px;}
._1f{width:105.261600px;}
._2a{width:111.820200px;}
._3e{width:119.884200px;}
._2c{width:123.597600px;}
._1e{width:126.142200px;}
._44{width:134.236200px;}
._31{width:136.572600px;}
._2d{width:173.286000px;}
._2e{width:188.980200px;}
._30{width:191.302800px;}
._1c{width:205.341600px;}
._1a{width:211.149600px;}
._18{width:213.309600px;}
._16{width:221.373600px;}
._2f{width:232.149600px;}
._3a{width:240.344400px;}
._3d{width:244.348200px;}
._28{width:248.236200px;}
._39{width:254.168400px;}
._29{width:280.396200px;}
._43{width:318.364200px;}
._34{width:322.061400px;}
._42{width:333.292200px;}
._33{width:335.886000px;}
._35{width:350.756400px;}
._38{width:352.321800px;}
._32{width:365.016000px;}
._41{width:389.308800px;}
._3c{width:405.052800px;}
._36{width:407.100000px;}
._37{width:420.924600px;}
._17{width:603.994200px;}
._19{width:707.872200px;}
._1d{width:825.999600px;}
._20{width:841.264200px;}
._15{width:922.863600px;}
._1b{width:966.639600px;}
._11{width:2046.399600px;}
.fc2{color:rgb(48,88,159);}
.fc1{color:rgb(39,68,133);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:65.028150px;}
.y29{bottom:77.089500px;}
.y27{bottom:77.628300px;}
.y97{bottom:124.421700px;}
.y6a{bottom:127.559100px;}
.y24{bottom:131.811000px;}
.y79{bottom:131.811150px;}
.y63{bottom:133.036350px;}
.y96{bottom:142.421700px;}
.y69{bottom:145.559100px;}
.y23{bottom:149.811000px;}
.y78{bottom:149.811150px;}
.y62{bottom:150.025950px;}
.y95{bottom:160.421700px;}
.y68{bottom:163.559100px;}
.y61{bottom:165.025950px;}
.ybc{bottom:167.015550px;}
.y22{bottom:167.811000px;}
.y77{bottom:167.811150px;}
.y94{bottom:178.421700px;}
.y60{bottom:182.015550px;}
.ybb{bottom:184.005000px;}
.y21{bottom:185.811000px;}
.y76{bottom:185.811150px;}
.y93{bottom:196.421700px;}
.y5f{bottom:199.005000px;}
.yba{bottom:200.994600px;}
.y20{bottom:203.811000px;}
.y75{bottom:203.811150px;}
.y5e{bottom:215.994600px;}
.yb9{bottom:217.984200px;}
.y1f{bottom:221.811000px;}
.y74{bottom:221.811150px;}
.y5d{bottom:232.984200px;}
.yb8{bottom:234.973650px;}
.y1e{bottom:239.811000px;}
.y73{bottom:239.811150px;}
.y5c{bottom:249.973650px;}
.yb7{bottom:251.963250px;}
.y1d{bottom:257.811000px;}
.y72{bottom:257.811150px;}
.y5b{bottom:266.963250px;}
.yb6{bottom:268.952700px;}
.y1c{bottom:275.811000px;}
.y71{bottom:275.811150px;}
.y5a{bottom:283.952700px;}
.yb5{bottom:285.942300px;}
.y1b{bottom:293.811000px;}
.y70{bottom:293.811150px;}
.y25{bottom:311.811000px;}
.y6f{bottom:311.811150px;}
.y59{bottom:312.844800px;}
.yb4{bottom:314.834400px;}
.y1a{bottom:329.811000px;}
.y6e{bottom:329.811150px;}
.y58{bottom:330.844800px;}
.y85{bottom:347.811000px;}
.y6d{bottom:347.811150px;}
.y57{bottom:365.811000px;}
.y6c{bottom:365.811150px;}
.y56{bottom:383.811000px;}
.y6b{bottom:383.811150px;}
.y84{bottom:384.491400px;}
.y19{bottom:401.811000px;}
.y55{bottom:401.811150px;}
.y7a{bottom:404.447250px;}
.y83{bottom:418.847250px;}
.y87{bottom:419.811000px;}
.y54{bottom:419.811150px;}
.y18{bottom:437.811000px;}
.y53{bottom:437.811150px;}
.y86{bottom:455.811000px;}
.y52{bottom:455.811150px;}
.y82{bottom:473.811000px;}
.y51{bottom:473.811150px;}
.yc4{bottom:474.491400px;}
.y81{bottom:491.811000px;}
.y50{bottom:491.811150px;}
.yc3{bottom:508.847250px;}
.y17{bottom:509.811000px;}
.y4f{bottom:509.811150px;}
.y16{bottom:527.811000px;}
.y4e{bottom:527.811150px;}
.y15{bottom:545.811000px;}
.y4d{bottom:545.811150px;}
.y14{bottom:563.811000px;}
.y4c{bottom:563.811150px;}
.y13{bottom:581.811000px;}
.y4b{bottom:581.811150px;}
.y98{bottom:584.447250px;}
.y12{bottom:599.811000px;}
.y4a{bottom:599.811150px;}
.y11{bottom:617.811000px;}
.y49{bottom:617.811150px;}
.y10{bottom:635.811000px;}
.y48{bottom:635.811150px;}
.yf{bottom:653.811000px;}
.y47{bottom:653.811150px;}
.ye{bottom:671.811000px;}
.y46{bottom:671.811150px;}
.yd{bottom:689.811000px;}
.y45{bottom:689.811150px;}
.y99{bottom:695.475750px;}
.yb3{bottom:704.022150px;}
.y80{bottom:707.811000px;}
.y44{bottom:707.811150px;}
.yc{bottom:725.811000px;}
.y43{bottom:725.811150px;}
.yb0{bottom:732.521550px;}
.y7f{bottom:743.811000px;}
.y42{bottom:743.811150px;}
.yaf{bottom:749.511150px;}
.y7d{bottom:750.802350px;}
.yc0{bottom:751.456800px;}
.y7e{bottom:761.811000px;}
.y41{bottom:761.811150px;}
.yae{bottom:766.500750px;}
.y7c{bottom:768.802350px;}
.ybf{bottom:769.456800px;}
.y40{bottom:779.811000px;}
.yad{bottom:783.490200px;}
.yb{bottom:785.704650px;}
.y7b{bottom:786.802350px;}
.ybe{bottom:787.456800px;}
.y3f{bottom:797.811000px;}
.yac{bottom:800.479800px;}
.ybd{bottom:805.456800px;}
.y3e{bottom:815.811000px;}
.yab{bottom:817.469400px;}
.ya{bottom:833.468400px;}
.y3d{bottom:833.811000px;}
.yaa{bottom:834.458850px;}
.y67{bottom:836.447250px;}
.yb2{bottom:845.888850px;}
.ya9{bottom:849.458850px;}
.yc2{bottom:850.847250px;}
.y3c{bottom:851.811000px;}
.y9{bottom:860.467650px;}
.yb1{bottom:863.888850px;}
.ya8{bottom:866.448450px;}
.y3b{bottom:869.811000px;}
.ya7{bottom:881.448450px;}
.y8{bottom:887.467050px;}
.y3a{bottom:887.811000px;}
.y7{bottom:905.467050px;}
.y39{bottom:905.811000px;}
.ya6{bottom:910.340550px;}
.y6{bottom:923.467050px;}
.y38{bottom:923.811000px;}
.ya5{bottom:928.340550px;}
.y5{bottom:941.467050px;}
.y37{bottom:941.811000px;}
.ya4{bottom:946.340550px;}
.y36{bottom:959.811000px;}
.ya3{bottom:964.340550px;}
.y4{bottom:977.465550px;}
.y35{bottom:977.811000px;}
.y66{bottom:978.491400px;}
.y92{bottom:980.122500px;}
.y34{bottom:995.811000px;}
.y91{bottom:997.112100px;}
.ya2{bottom:1005.109800px;}
.y65{bottom:1012.847250px;}
.y33{bottom:1013.811000px;}
.y90{bottom:1014.101550px;}
.y3{bottom:1017.064200px;}
.ya1{bottom:1028.091150px;}
.y8f{bottom:1031.091150px;}
.y32{bottom:1031.811000px;}
.ya0{bottom:1045.080750px;}
.y2{bottom:1047.664050px;}
.y8e{bottom:1048.080750px;}
.y31{bottom:1049.811000px;}
.y9f{bottom:1062.070200px;}
.y8d{bottom:1065.070200px;}
.y30{bottom:1067.811000px;}
.yc7{bottom:1077.174900px;}
.y1{bottom:1078.264200px;}
.y9e{bottom:1079.059800px;}
.y8c{bottom:1082.059800px;}
.y2f{bottom:1085.811000px;}
.y9d{bottom:1096.049250px;}
.yc6{bottom:1098.774900px;}
.y8b{bottom:1099.049250px;}
.y2e{bottom:1103.811000px;}
.y9c{bottom:1113.038850px;}
.y8a{bottom:1114.049250px;}
.yc5{bottom:1120.374900px;}
.y2d{bottom:1121.811000px;}
.y89{bottom:1131.038850px;}
.y2c{bottom:1139.811000px;}
.y9b{bottom:1141.930950px;}
.yc1{bottom:1154.730900px;}
.y2b{bottom:1157.811000px;}
.y9a{bottom:1159.930950px;}
.y88{bottom:1159.931100px;}
.y64{bottom:1194.094800px;}
.y2a{bottom:1194.094950px;}
.y26{bottom:1194.258000px;}
.hb{height:28.516113px;}
.h4{height:33.328125px;}
.ha{height:33.947754px;}
.hc{height:37.920000px;}
.hd{height:38.112000px;}
.h7{height:39.258000px;}
.h5{height:42.117188px;}
.h6{height:47.381836px;}
.he{height:49.289062px;}
.h9{height:52.646484px;}
.h3{height:63.175781px;}
.h8{height:73.705078px;}
.h2{height:89.499023px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x17{left:79.086600px;}
.x16{left:85.005900px;}
.x24{left:87.525750px;}
.x15{left:93.543300px;}
.xa{left:110.551200px;}
.x10{left:113.102250px;}
.xc{left:127.558950px;}
.xf{left:137.131050px;}
.x11{left:202.393650px;}
.x2{left:273.404250px;}
.x3{left:324.111750px;}
.xb{left:355.622400px;}
.x8{left:440.078700px;}
.x23{left:442.629900px;}
.x19{left:445.252800px;}
.x4{left:446.412300px;}
.x1a{left:452.716650px;}
.x9{left:457.086600px;}
.xd{left:474.094350px;}
.xe{left:491.102250px;}
.x5{left:500.534400px;}
.x1b{left:517.258500px;}
.x1f{left:530.416350px;}
.x1c{left:542.182200px;}
.x20{left:543.621300px;}
.x18{left:562.188150px;}
.x6{left:615.468450px;}
.x13{left:625.048950px;}
.x1d{left:654.384600px;}
.x21{left:667.542300px;}
.x7{left:671.059650px;}
.x1e{left:679.308300px;}
.x22{left:680.946150px;}
.x12{left:746.645550px;}
.x14{left:768.299700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls2{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.533333pt;}
.ls4{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.281067pt;}
.ls6{letter-spacing:1.281600pt;}
.ls9{letter-spacing:1.378933pt;}
.ls8{letter-spacing:5.302933pt;}
.ls5{letter-spacing:8.336000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws34{word-spacing:-16.000000pt;}
.ws15{word-spacing:-14.400000pt;}
.wse{word-spacing:-13.333333pt;}
.ws23{word-spacing:-13.269333pt;}
.ws3{word-spacing:-12.520000pt;}
.ws11{word-spacing:-12.288000pt;}
.ws16{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws0{word-spacing:-11.678656pt;}
.ws2d{word-spacing:-11.093333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws2e{word-spacing:-9.813333pt;}
.wsf{word-spacing:-7.773333pt;}
.ws30{word-spacing:-3.413333pt;}
.ws31{word-spacing:-2.005333pt;}
.wsb{word-spacing:-1.776000pt;}
.ws21{word-spacing:-1.584000pt;}
.wsd{word-spacing:-1.579200pt;}
.ws2c{word-spacing:-1.536000pt;}
.ws33{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.276800pt;}
.ws17{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-0.672000pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.040000pt;}
.ws7{word-spacing:0.000000pt;}
.ws14{word-spacing:0.096000pt;}
.ws5{word-spacing:0.432000pt;}
.ws8{word-spacing:0.480000pt;}
.ws18{word-spacing:0.576000pt;}
.ws2f{word-spacing:0.853333pt;}
.ws6{word-spacing:0.912000pt;}
.ws20{word-spacing:1.296000pt;}
.ws28{word-spacing:1.392000pt;}
.ws12{word-spacing:1.632000pt;}
.wsa{word-spacing:2.016000pt;}
.ws1d{word-spacing:4.000000pt;}
.ws1c{word-spacing:4.640000pt;}
.ws22{word-spacing:5.328000pt;}
.ws32{word-spacing:5.546667pt;}
.ws1e{word-spacing:6.080000pt;}
.ws1b{word-spacing:7.680000pt;}
.ws25{word-spacing:8.160000pt;}
.ws1f{word-spacing:8.352000pt;}
.ws27{word-spacing:8.853333pt;}
.ws26{word-spacing:12.320000pt;}
.ws1a{word-spacing:23.306667pt;}
.ws10{word-spacing:90.306133pt;}
.ws24{word-spacing:400.981333pt;}
._10{margin-left:-2510.133867pt;}
._6{margin-left:-5.857067pt;}
._2b{margin-left:-4.943467pt;}
._5{margin-left:-3.735467pt;}
._1{margin-left:-2.466133pt;}
._0{margin-left:-1.024533pt;}
._3{width:1.097067pt;}
._4{width:2.248533pt;}
._2{width:3.291200pt;}
._8{width:4.291200pt;}
._e{width:5.194667pt;}
._9{width:6.144000pt;}
._b{width:7.397333pt;}
._f{width:8.304000pt;}
._d{width:9.994667pt;}
._a{width:11.034667pt;}
._21{width:12.336000pt;}
._c{width:14.293333pt;}
._46{width:15.217067pt;}
._22{width:16.453333pt;}
._47{width:18.133333pt;}
._23{width:20.693333pt;}
._45{width:21.947733pt;}
._25{width:23.278933pt;}
._24{width:25.445333pt;}
._7{width:26.453333pt;}
._13{width:28.432000pt;}
._26{width:39.608000pt;}
._12{width:47.114133pt;}
._3b{width:48.568533pt;}
._3f{width:58.094400pt;}
._27{width:62.489067pt;}
._40{width:68.889067pt;}
._14{width:82.429867pt;}
._1f{width:93.565867pt;}
._2a{width:99.395733pt;}
._3e{width:106.563733pt;}
._2c{width:109.864533pt;}
._1e{width:112.126400pt;}
._44{width:119.321067pt;}
._31{width:121.397867pt;}
._2d{width:154.032000pt;}
._2e{width:167.982400pt;}
._30{width:170.046933pt;}
._1c{width:182.525867pt;}
._1a{width:187.688533pt;}
._18{width:189.608533pt;}
._16{width:196.776533pt;}
._2f{width:206.355200pt;}
._3a{width:213.639467pt;}
._3d{width:217.198400pt;}
._28{width:220.654400pt;}
._39{width:225.927467pt;}
._29{width:249.241067pt;}
._43{width:282.990400pt;}
._34{width:286.276800pt;}
._42{width:296.259733pt;}
._33{width:298.565333pt;}
._35{width:311.783467pt;}
._38{width:313.174933pt;}
._32{width:324.458667pt;}
._41{width:346.052267pt;}
._3c{width:360.046933pt;}
._36{width:361.866667pt;}
._37{width:374.155200pt;}
._17{width:536.883733pt;}
._19{width:629.219733pt;}
._1d{width:734.221867pt;}
._20{width:747.790400pt;}
._15{width:820.323200pt;}
._1b{width:859.235200pt;}
._11{width:1819.021867pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:57.802800pt;}
.y29{bottom:68.524000pt;}
.y27{bottom:69.002933pt;}
.y97{bottom:110.597067pt;}
.y6a{bottom:113.385867pt;}
.y24{bottom:117.165333pt;}
.y79{bottom:117.165467pt;}
.y63{bottom:118.254533pt;}
.y96{bottom:126.597067pt;}
.y69{bottom:129.385867pt;}
.y23{bottom:133.165333pt;}
.y78{bottom:133.165467pt;}
.y62{bottom:133.356400pt;}
.y95{bottom:142.597067pt;}
.y68{bottom:145.385867pt;}
.y61{bottom:146.689733pt;}
.ybc{bottom:148.458267pt;}
.y22{bottom:149.165333pt;}
.y77{bottom:149.165467pt;}
.y94{bottom:158.597067pt;}
.y60{bottom:161.791600pt;}
.ybb{bottom:163.560000pt;}
.y21{bottom:165.165333pt;}
.y76{bottom:165.165467pt;}
.y93{bottom:174.597067pt;}
.y5f{bottom:176.893333pt;}
.yba{bottom:178.661867pt;}
.y20{bottom:181.165333pt;}
.y75{bottom:181.165467pt;}
.y5e{bottom:191.995200pt;}
.yb9{bottom:193.763733pt;}
.y1f{bottom:197.165333pt;}
.y74{bottom:197.165467pt;}
.y5d{bottom:207.097067pt;}
.yb8{bottom:208.865467pt;}
.y1e{bottom:213.165333pt;}
.y73{bottom:213.165467pt;}
.y5c{bottom:222.198800pt;}
.yb7{bottom:223.967333pt;}
.y1d{bottom:229.165333pt;}
.y72{bottom:229.165467pt;}
.y5b{bottom:237.300667pt;}
.yb6{bottom:239.069067pt;}
.y1c{bottom:245.165333pt;}
.y71{bottom:245.165467pt;}
.y5a{bottom:252.402400pt;}
.yb5{bottom:254.170933pt;}
.y1b{bottom:261.165333pt;}
.y70{bottom:261.165467pt;}
.y25{bottom:277.165333pt;}
.y6f{bottom:277.165467pt;}
.y59{bottom:278.084267pt;}
.yb4{bottom:279.852800pt;}
.y1a{bottom:293.165333pt;}
.y6e{bottom:293.165467pt;}
.y58{bottom:294.084267pt;}
.y85{bottom:309.165333pt;}
.y6d{bottom:309.165467pt;}
.y57{bottom:325.165333pt;}
.y6c{bottom:325.165467pt;}
.y56{bottom:341.165333pt;}
.y6b{bottom:341.165467pt;}
.y84{bottom:341.770133pt;}
.y19{bottom:357.165333pt;}
.y55{bottom:357.165467pt;}
.y7a{bottom:359.508667pt;}
.y83{bottom:372.308667pt;}
.y87{bottom:373.165333pt;}
.y54{bottom:373.165467pt;}
.y18{bottom:389.165333pt;}
.y53{bottom:389.165467pt;}
.y86{bottom:405.165333pt;}
.y52{bottom:405.165467pt;}
.y82{bottom:421.165333pt;}
.y51{bottom:421.165467pt;}
.yc4{bottom:421.770133pt;}
.y81{bottom:437.165333pt;}
.y50{bottom:437.165467pt;}
.yc3{bottom:452.308667pt;}
.y17{bottom:453.165333pt;}
.y4f{bottom:453.165467pt;}
.y16{bottom:469.165333pt;}
.y4e{bottom:469.165467pt;}
.y15{bottom:485.165333pt;}
.y4d{bottom:485.165467pt;}
.y14{bottom:501.165333pt;}
.y4c{bottom:501.165467pt;}
.y13{bottom:517.165333pt;}
.y4b{bottom:517.165467pt;}
.y98{bottom:519.508667pt;}
.y12{bottom:533.165333pt;}
.y4a{bottom:533.165467pt;}
.y11{bottom:549.165333pt;}
.y49{bottom:549.165467pt;}
.y10{bottom:565.165333pt;}
.y48{bottom:565.165467pt;}
.yf{bottom:581.165333pt;}
.y47{bottom:581.165467pt;}
.ye{bottom:597.165333pt;}
.y46{bottom:597.165467pt;}
.yd{bottom:613.165333pt;}
.y45{bottom:613.165467pt;}
.y99{bottom:618.200667pt;}
.yb3{bottom:625.797467pt;}
.y80{bottom:629.165333pt;}
.y44{bottom:629.165467pt;}
.yc{bottom:645.165333pt;}
.y43{bottom:645.165467pt;}
.yb0{bottom:651.130267pt;}
.y7f{bottom:661.165333pt;}
.y42{bottom:661.165467pt;}
.yaf{bottom:666.232133pt;}
.y7d{bottom:667.379867pt;}
.yc0{bottom:667.961600pt;}
.y7e{bottom:677.165333pt;}
.y41{bottom:677.165467pt;}
.yae{bottom:681.334000pt;}
.y7c{bottom:683.379867pt;}
.ybf{bottom:683.961600pt;}
.y40{bottom:693.165333pt;}
.yad{bottom:696.435733pt;}
.yb{bottom:698.404133pt;}
.y7b{bottom:699.379867pt;}
.ybe{bottom:699.961600pt;}
.y3f{bottom:709.165333pt;}
.yac{bottom:711.537600pt;}
.ybd{bottom:715.961600pt;}
.y3e{bottom:725.165333pt;}
.yab{bottom:726.639467pt;}
.ya{bottom:740.860800pt;}
.y3d{bottom:741.165333pt;}
.yaa{bottom:741.741200pt;}
.y67{bottom:743.508667pt;}
.yb2{bottom:751.901200pt;}
.ya9{bottom:755.074533pt;}
.yc2{bottom:756.308667pt;}
.y3c{bottom:757.165333pt;}
.y9{bottom:764.860133pt;}
.yb1{bottom:767.901200pt;}
.ya8{bottom:770.176400pt;}
.y3b{bottom:773.165333pt;}
.ya7{bottom:783.509733pt;}
.y8{bottom:788.859600pt;}
.y3a{bottom:789.165333pt;}
.y7{bottom:804.859600pt;}
.y39{bottom:805.165333pt;}
.ya6{bottom:809.191600pt;}
.y6{bottom:820.859600pt;}
.y38{bottom:821.165333pt;}
.ya5{bottom:825.191600pt;}
.y5{bottom:836.859600pt;}
.y37{bottom:837.165333pt;}
.ya4{bottom:841.191600pt;}
.y36{bottom:853.165333pt;}
.ya3{bottom:857.191600pt;}
.y4{bottom:868.858267pt;}
.y35{bottom:869.165333pt;}
.y66{bottom:869.770133pt;}
.y92{bottom:871.220000pt;}
.y34{bottom:885.165333pt;}
.y91{bottom:886.321867pt;}
.ya2{bottom:893.430933pt;}
.y65{bottom:900.308667pt;}
.y33{bottom:901.165333pt;}
.y90{bottom:901.423600pt;}
.y3{bottom:904.057067pt;}
.ya1{bottom:913.858800pt;}
.y8f{bottom:916.525467pt;}
.y32{bottom:917.165333pt;}
.ya0{bottom:928.960667pt;}
.y2{bottom:931.256933pt;}
.y8e{bottom:931.627333pt;}
.y31{bottom:933.165333pt;}
.y9f{bottom:944.062400pt;}
.y8d{bottom:946.729067pt;}
.y30{bottom:949.165333pt;}
.yc7{bottom:957.488800pt;}
.y1{bottom:958.457067pt;}
.y9e{bottom:959.164267pt;}
.y8c{bottom:961.830933pt;}
.y2f{bottom:965.165333pt;}
.y9d{bottom:974.266000pt;}
.yc6{bottom:976.688800pt;}
.y8b{bottom:976.932667pt;}
.y2e{bottom:981.165333pt;}
.y9c{bottom:989.367867pt;}
.y8a{bottom:990.266000pt;}
.yc5{bottom:995.888800pt;}
.y2d{bottom:997.165333pt;}
.y89{bottom:1005.367867pt;}
.y2c{bottom:1013.165333pt;}
.y9b{bottom:1015.049733pt;}
.yc1{bottom:1026.427467pt;}
.y2b{bottom:1029.165333pt;}
.y9a{bottom:1031.049733pt;}
.y88{bottom:1031.049867pt;}
.y64{bottom:1061.417600pt;}
.y2a{bottom:1061.417733pt;}
.y26{bottom:1061.562667pt;}
.hb{height:25.347656pt;}
.h4{height:29.625000pt;}
.ha{height:30.175781pt;}
.hc{height:33.706667pt;}
.hd{height:33.877333pt;}
.h7{height:34.896000pt;}
.h5{height:37.437500pt;}
.h6{height:42.117188pt;}
.he{height:43.812500pt;}
.h9{height:46.796875pt;}
.h3{height:56.156250pt;}
.h8{height:65.515625pt;}
.h2{height:79.554688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x17{left:70.299200pt;}
.x16{left:75.560800pt;}
.x24{left:77.800667pt;}
.x15{left:83.149600pt;}
.xa{left:98.267733pt;}
.x10{left:100.535333pt;}
.xc{left:113.385733pt;}
.xf{left:121.894267pt;}
.x11{left:179.905467pt;}
.x2{left:243.026000pt;}
.x3{left:288.099333pt;}
.xb{left:316.108800pt;}
.x8{left:391.181067pt;}
.x23{left:393.448800pt;}
.x19{left:395.780267pt;}
.x4{left:396.810933pt;}
.x1a{left:402.414800pt;}
.x9{left:406.299200pt;}
.xd{left:421.417200pt;}
.xe{left:436.535333pt;}
.x5{left:444.919467pt;}
.x1b{left:459.785333pt;}
.x1f{left:471.481200pt;}
.x1c{left:481.939733pt;}
.x20{left:483.218933pt;}
.x18{left:499.722800pt;}
.x6{left:547.083067pt;}
.x13{left:555.599067pt;}
.x1d{left:581.675200pt;}
.x21{left:593.370933pt;}
.x7{left:596.497467pt;}
.x1e{left:603.829600pt;}
.x22{left:605.285467pt;}
.x12{left:663.684933pt;}
.x14{left:682.933067pt;}
}




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