
    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_7a44c89c6b5c2ae0a5a54a28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_7d302bb9f77621792f948aaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_f4d0d9f6128696c3de762b67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6c37157f30ff981475ab011e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717285;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_e0a7dff76cb22ecf210289af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_3f02a2f41ec543a1d78c86bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_74ec09fd9b0e2376e8473058.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010742;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_4f3cbef6486bc55d2b6cb74e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_cb23a7997eaf19fbd36c79ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d671db6df02efe968fac4a51.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_80540c06acb4ec7e1420455f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765625;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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.051600px;}
.lsa{letter-spacing:-0.050400px;}
.ls3b{letter-spacing:-0.049477px;}
.ls1{letter-spacing:-0.048000px;}
.ls35{letter-spacing:-0.044530px;}
.ls29{letter-spacing:-0.043200px;}
.ls2a{letter-spacing:-0.040819px;}
.ls30{letter-spacing:-0.038400px;}
.ls3c{letter-spacing:-0.037108px;}
.ls36{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.033600px;}
.ls32{letter-spacing:-0.033397px;}
.ls26{letter-spacing:-0.029686px;}
.ls11{letter-spacing:-0.028800px;}
.ls40{letter-spacing:-0.027600px;}
.ls2b{letter-spacing:-0.027212px;}
.ls10{letter-spacing:-0.026400px;}
.ls3a{letter-spacing:-0.024739px;}
.ls3{letter-spacing:-0.024000px;}
.ls21{letter-spacing:-0.022800px;}
.ls1b{letter-spacing:-0.021600px;}
.ls9{letter-spacing:-0.016800px;}
.ls12{letter-spacing:-0.014400px;}
.ls3d{letter-spacing:-0.012369px;}
.ls31{letter-spacing:-0.012000px;}
.ls3f{letter-spacing:-0.011132px;}
.ls3e{letter-spacing:-0.010800px;}
.ls25{letter-spacing:-0.009895px;}
.ls22{letter-spacing:-0.009600px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.009895px;}
.ls2c{letter-spacing:0.010560px;}
.ls24{letter-spacing:0.012000px;}
.ls34{letter-spacing:0.013620px;}
.ls15{letter-spacing:0.013800px;}
.ls17{letter-spacing:0.014040px;}
.ls19{letter-spacing:0.014063px;}
.ls13{letter-spacing:0.014100px;}
.ls38{letter-spacing:0.014400px;}
.ls37{letter-spacing:0.016320px;}
.ls6{letter-spacing:0.016800px;}
.ls1d{letter-spacing:0.019128px;}
.ls20{letter-spacing:0.019791px;}
.ls2e{letter-spacing:0.022265px;}
.ls1c{letter-spacing:0.024000px;}
.lsc{letter-spacing:0.025800px;}
.ls27{letter-spacing:0.026280px;}
.lsd{letter-spacing:0.028680px;}
.lsf{letter-spacing:0.028800px;}
.ls2f{letter-spacing:0.033397px;}
.ls5{letter-spacing:0.033480px;}
.ls7{letter-spacing:0.033600px;}
.ls23{letter-spacing:0.039582px;}
.ls0{letter-spacing:0.048000px;}
.ls39{letter-spacing:0.049477px;}
.ls33{letter-spacing:0.055662px;}
.ls43{letter-spacing:0.259200px;}
.ls42{letter-spacing:0.273600px;}
.ls41{letter-spacing:6.672000px;}
.lse{letter-spacing:8.179440px;}
.ls28{letter-spacing:16.497840px;}
.ls2d{letter-spacing:28.177560px;}
.ls1e{letter-spacing:41.452992px;}
.ls18{letter-spacing:91.569840px;}
.ls14{letter-spacing:91.570020px;}
.ls1a{letter-spacing:91.570038px;}
.ls16{letter-spacing:91.570200px;}
.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;}
}
.wse{word-spacing:-71.466000px;}
.wsd{word-spacing:-71.414400px;}
.ws1{word-spacing:-66.456000px;}
.ws0{word-spacing:-66.432000px;}
.ws2{word-spacing:-66.408000px;}
.wsc{word-spacing:-47.073600px;}
.wsa{word-spacing:-47.056800px;}
.ws8{word-spacing:-47.006400px;}
.wsb{word-spacing:-46.989600px;}
.ws6{word-spacing:-46.569600px;}
.ws7{word-spacing:-46.552800px;}
.ws9{word-spacing:-46.519200px;}
.ws5{word-spacing:-46.502400px;}
.ws16{word-spacing:-40.334400px;}
.ws1b{word-spacing:-40.291200px;}
.wsf{word-spacing:-39.916800px;}
.ws10{word-spacing:-39.468000px;}
.ws1a{word-spacing:-37.033735px;}
.ws19{word-spacing:-36.971888px;}
.ws18{word-spacing:-36.947150px;}
.ws17{word-spacing:-36.934780px;}
.ws13{word-spacing:-33.319229px;}
.ws12{word-spacing:-33.252435px;}
.ws11{word-spacing:-32.292000px;}
.ws4{word-spacing:-0.168000px;}
.ws15{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.120000px;}
.ws1c{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-20.016000px;}
._2{margin-left:-17.539200px;}
._5{margin-left:-14.968800px;}
._3{margin-left:-8.457360px;}
._4{margin-left:-7.056000px;}
._0{margin-left:-1.002000px;}
._1{width:1.173600px;}
._6{width:3.945600px;}
._10{width:4.996800px;}
._8{width:6.616020px;}
._d{width:9.247920px;}
._c{width:10.331220px;}
._a{width:33.062400px;}
._b{width:34.257600px;}
._9{width:38.606400px;}
._e{width:46.512000px;}
._f{width:71.712000px;}
.fc5{color:rgb(130,1,1);}
.fc4{color:rgb(192,2,2);}
.fc2{color:rgb(153,0,0);}
.fc6{color:rgb(77,77,77);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.000000px;}
.fs16{font-size:49.477268px;}
.fs5{font-size:54.000000px;}
.fsf{font-size:96.000000px;}
.fs10{font-size:98.954535px;}
.fs13{font-size:108.000000px;}
.fs14{font-size:111.323852px;}
.fsd{font-size:114.000000px;}
.fse{font-size:120.000000px;}
.fs15{font-size:123.693169px;}
.fsb{font-size:132.000000px;}
.fs11{font-size:136.062486px;}
.fs1{font-size:144.000000px;}
.fsc{font-size:148.431803px;}
.fs3{font-size:168.000000px;}
.fs12{font-size:192.000000px;}
.fs2{font-size:216.000000px;}
.fs0{font-size:240.000000px;}
.fs7{font-size:246.000000px;}
.fs6{font-size:258.000000px;}
.fs9{font-size:264.000000px;}
.fs17{font-size:276.000000px;}
.fs8{font-size:288.000000px;}
.fsa{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y58{bottom:42.781765px;}
.y6c{bottom:43.026025px;}
.y2a{bottom:43.826755px;}
.yaf{bottom:53.859805px;}
.y57{bottom:68.281780px;}
.y7d{bottom:75.875500px;}
.y14{bottom:78.841615px;}
.y6b{bottom:79.025965px;}
.y9e{bottom:81.969385px;}
.y3f{bottom:83.429710px;}
.y56{bottom:95.281765px;}
.yad{bottom:102.884320px;}
.y7c{bottom:107.375485px;}
.y1d{bottom:107.458540px;}
.y91{bottom:108.858145px;}
.y88{bottom:109.882765px;}
.y9d{bottom:113.469415px;}
.y29{bottom:114.326815px;}
.yae{bottom:118.359715px;}
.y9{bottom:119.084965px;}
.y13{bottom:129.841615px;}
.y3e{bottom:134.429680px;}
.y7b{bottom:140.375515px;}
.yac{bottom:140.384230px;}
.y87{bottom:142.882765px;}
.y90{bottom:144.858115px;}
.y9c{bottom:146.469415px;}
.y55{bottom:147.781630px;}
.y1f{bottom:148.917415px;}
.y32{bottom:151.274215px;}
.y28{bottom:157.826815px;}
.y1c{bottom:158.458615px;}
.y86{bottom:175.882765px;}
.y12{bottom:179.341615px;}
.yab{bottom:179.384230px;}
.y8f{bottom:180.858115px;}
.y6a{bottom:182.525980px;}
.y8{bottom:183.584965px;}
.y3d{bottom:186.929680px;}
.y31{bottom:194.774215px;}
.y54{bottom:200.281780px;}
.y7a{bottom:200.375515px;}
.y1b{bottom:207.958615px;}
.y9b{bottom:209.469415px;}
.y8e{bottom:216.858115px;}
.y69{bottom:217.025980px;}
.yaa{bottom:218.384230px;}
.y48{bottom:223.537315px;}
.y1e{bottom:225.417415px;}
.y53{bottom:225.781780px;}
.y27{bottom:226.826815px;}
.y11{bottom:230.341615px;}
.y79{bottom:231.875515px;}
.y85{bottom:235.882765px;}
.y3c{bottom:237.929680px;}
.y9a{bottom:242.469415px;}
.y52{bottom:252.781630px;}
.y68{bottom:253.025980px;}
.ya9{bottom:257.384230px;}
.ya1{bottom:259.623565px;}
.y78{bottom:264.875515px;}
.y30{bottom:265.274215px;}
.y5e{bottom:266.465215px;}
.y47{bottom:267.037315px;}
.y26{bottom:270.326665px;}
.y99{bottom:273.969415px;}
.y8d{bottom:276.858115px;}
.y1a{bottom:279.958465px;}
.y3b{bottom:287.729680px;}
.y67{bottom:289.025980px;}
.y5d{bottom:294.965215px;}
.y84{bottom:297.382765px;}
.y10{bottom:300.841615px;}
.y51{bottom:305.281630px;}
.y98{bottom:306.969415px;}
.y46{bottom:309.037315px;}
.y25{bottom:313.826665px;}
.y8c{bottom:321.858115px;}
.y77{bottom:323.375515px;}
.y5c{bottom:323.465215px;}
.y66{bottom:325.025980px;}
.y3a{bottom:328.829665px;}
.y19{bottom:329.458465px;}
.y83{bottom:330.382765px;}
.y2f{bottom:334.274215px;}
.y97{bottom:339.969415px;}
.ya0{bottom:342.123415px;}
.yf{bottom:348.841615px;}
.y5b{bottom:351.965215px;}
.y45{bottom:352.537315px;}
.y76{bottom:356.375515px;}
.y50{bottom:357.781780px;}
.y65{bottom:359.525980px;}
.y82{bottom:361.882765px;}
.y7{bottom:363.421465px;}
.y39{bottom:371.729680px;}
.y5a{bottom:380.465215px;}
.y4f{bottom:383.281630px;}
.y24{bottom:385.826815px;}
.ya8{bottom:389.384230px;}
.y81{bottom:394.882765px;}
.ye{bottom:399.841615px;}
.y96{bottom:401.469415px;}
.y18{bottom:405.958465px;}
.y4e{bottom:410.281630px;}
.y38{bottom:410.429680px;}
.y75{bottom:416.375515px;}
.y44{bottom:418.537315px;}
.y2e{bottom:421.537465px;}
.y9f{bottom:424.623415px;}
.y8b{bottom:426.858115px;}
.ya7{bottom:428.384230px;}
.y95{bottom:434.469415px;}
.y23{bottom:435.326665px;}
.y6{bottom:435.421465px;}
.y4d{bottom:435.781630px;}
.y74{bottom:447.875515px;}
.yd{bottom:449.341615px;}
.y37{bottom:449.429680px;}
.y59{bottom:449.585515px;}
.y80{bottom:454.882765px;}
.y17{bottom:456.958465px;}
.y4c{bottom:461.281630px;}
.y64{bottom:463.025980px;}
.y43{bottom:465.037315px;}
.y2d{bottom:465.037465px;}
.ya6{bottom:467.384230px;}
.y94{bottom:467.469415px;}
.y22{bottom:486.326665px;}
.y4b{bottom:488.281630px;}
.y8a{bottom:492.858115px;}
.y63{bottom:499.025980px;}
.yc{bottom:500.341615px;}
.y36{bottom:500.429680px;}
.y73{bottom:504.875515px;}
.ya5{bottom:506.384230px;}
.y16{bottom:506.458465px;}
.y42{bottom:507.037315px;}
.y2c{bottom:507.037465px;}
.y5{bottom:507.421465px;}
.y7f{bottom:514.882765px;}
.y93{bottom:527.469415px;}
.y21{bottom:535.826665px;}
.y89{bottom:537.858115px;}
.y4a{bottom:540.781630px;}
.yb{bottom:549.841615px;}
.y35{bottom:550.229680px;}
.y72{bottom:551.375365px;}
.y7e{bottom:559.882765px;}
.y62{bottom:560.825980px;}
.y92{bottom:572.469265px;}
.y4{bottom:579.421465px;}
.y34{bottom:589.829665px;}
.y71{bottom:593.375365px;}
.y49{bottom:593.881615px;}
.y5f{bottom:595.492780px;}
.y2b{bottom:608.275165px;}
.ya4{bottom:638.384230px;}
.y41{bottom:650.999815px;}
.y3{bottom:651.421465px;}
.y6e{bottom:664.045015px;}
.y20{bottom:668.937115px;}
.y70{bottom:672.758965px;}
.y61{bottom:673.828615px;}
.ya3{bottom:677.384230px;}
.y15{bottom:684.340015px;}
.y33{bottom:684.393715px;}
.ya{bottom:699.368365px;}
.ya2{bottom:714.884230px;}
.y40{bottom:715.499815px;}
.y2{bottom:723.421315px;}
.y6d{bottom:728.545015px;}
.y6f{bottom:729.758815px;}
.y60{bottom:738.328765px;}
.h10{height:36.000000px;}
.h7{height:37.453125px;}
.h21{height:39.572150px;}
.h8{height:42.134766px;}
.h17{height:63.984375px;}
.h22{height:71.982422px;}
.h14{height:72.000000px;}
.h15{height:76.781250px;}
.h16{height:79.144301px;}
.h23{height:84.269531px;}
.h1b{height:86.378906px;}
.h1c{height:89.037339px;}
.h13{height:90.000000px;}
.h1d{height:91.875000px;}
.h1f{height:95.976562px;}
.h20{height:98.930376px;}
.hf{height:102.996094px;}
.h3{height:104.835938px;}
.h18{height:105.574219px;}
.hd{height:108.000000px;}
.h19{height:108.823414px;}
.h1e{height:110.250000px;}
.hb{height:112.359375px;}
.h11{height:115.171875px;}
.h12{height:118.716451px;}
.h6{height:126.000000px;}
.h5{height:131.085938px;}
.h1a{height:144.000000px;}
.h4{height:168.539062px;}
.h2{height:187.265625px;}
.h9{height:201.310547px;}
.hc{height:205.992188px;}
.h24{height:215.355469px;}
.ha{height:224.718750px;}
.he{height:252.808594px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x14{left:30.833385px;}
.x2c{left:40.148970px;}
.x1e{left:48.079725px;}
.x24{left:51.755895px;}
.x1b{left:53.144055px;}
.x3{left:64.799865px;}
.x2e{left:67.148970px;}
.x35{left:74.884065px;}
.x12{left:75.973767px;}
.x26{left:78.755895px;}
.x4{left:91.799865px;}
.x16{left:104.485725px;}
.x15{left:108.329475px;}
.x1d{left:110.214507px;}
.x28{left:138.939000px;}
.x11{left:154.534800px;}
.x20{left:161.914215px;}
.x29{left:165.477570px;}
.x25{left:173.770080px;}
.x2a{left:175.175715px;}
.x1f{left:176.770665px;}
.x27{left:178.094295px;}
.x21{left:180.622995px;}
.x1c{left:188.775540px;}
.x13{left:197.251035px;}
.x23{left:205.396425px;}
.x7{left:207.244800px;}
.x34{left:219.440970px;}
.x8{left:234.244800px;}
.x6{left:268.093950px;}
.x22{left:271.853430px;}
.x31{left:330.256920px;}
.x2d{left:384.722670px;}
.x5{left:388.800000px;}
.xa{left:392.478450px;}
.x1{left:415.418400px;}
.x17{left:419.532585px;}
.x9{left:428.770350px;}
.x36{left:433.462200px;}
.x32{left:447.733950px;}
.xe{left:451.828065px;}
.xb{left:457.365165px;}
.xf{left:510.240165px;}
.x2b{left:524.819295px;}
.x2{left:532.923450px;}
.x19{left:560.787750px;}
.xc{left:570.559500px;}
.x18{left:601.798350px;}
.x1a{left:649.088535px;}
.x33{left:681.821850px;}
.x10{left:682.892550px;}
.x2f{left:699.649470px;}
.xd{left:726.842250px;}
.x30{left:945.466320px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.045867pt;}
.lsa{letter-spacing:-0.044800pt;}
.ls3b{letter-spacing:-0.043980pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls35{letter-spacing:-0.039582pt;}
.ls29{letter-spacing:-0.038400pt;}
.ls2a{letter-spacing:-0.036283pt;}
.ls30{letter-spacing:-0.034133pt;}
.ls3c{letter-spacing:-0.032985pt;}
.ls36{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.029867pt;}
.ls32{letter-spacing:-0.029686pt;}
.ls26{letter-spacing:-0.026388pt;}
.ls11{letter-spacing:-0.025600pt;}
.ls40{letter-spacing:-0.024533pt;}
.ls2b{letter-spacing:-0.024189pt;}
.ls10{letter-spacing:-0.023467pt;}
.ls3a{letter-spacing:-0.021990pt;}
.ls3{letter-spacing:-0.021333pt;}
.ls21{letter-spacing:-0.020267pt;}
.ls1b{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:-0.014933pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls3d{letter-spacing:-0.010995pt;}
.ls31{letter-spacing:-0.010667pt;}
.ls3f{letter-spacing:-0.009895pt;}
.ls3e{letter-spacing:-0.009600pt;}
.ls25{letter-spacing:-0.008796pt;}
.ls22{letter-spacing:-0.008533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.008796pt;}
.ls2c{letter-spacing:0.009387pt;}
.ls24{letter-spacing:0.010667pt;}
.ls34{letter-spacing:0.012107pt;}
.ls15{letter-spacing:0.012267pt;}
.ls17{letter-spacing:0.012480pt;}
.ls19{letter-spacing:0.012501pt;}
.ls13{letter-spacing:0.012533pt;}
.ls38{letter-spacing:0.012800pt;}
.ls37{letter-spacing:0.014507pt;}
.ls6{letter-spacing:0.014933pt;}
.ls1d{letter-spacing:0.017003pt;}
.ls20{letter-spacing:0.017592pt;}
.ls2e{letter-spacing:0.019791pt;}
.ls1c{letter-spacing:0.021333pt;}
.lsc{letter-spacing:0.022933pt;}
.ls27{letter-spacing:0.023360pt;}
.lsd{letter-spacing:0.025493pt;}
.lsf{letter-spacing:0.025600pt;}
.ls2f{letter-spacing:0.029686pt;}
.ls5{letter-spacing:0.029760pt;}
.ls7{letter-spacing:0.029867pt;}
.ls23{letter-spacing:0.035184pt;}
.ls0{letter-spacing:0.042667pt;}
.ls39{letter-spacing:0.043980pt;}
.ls33{letter-spacing:0.049477pt;}
.ls43{letter-spacing:0.230400pt;}
.ls42{letter-spacing:0.243200pt;}
.ls41{letter-spacing:5.930667pt;}
.lse{letter-spacing:7.270613pt;}
.ls28{letter-spacing:14.664747pt;}
.ls2d{letter-spacing:25.046720pt;}
.ls1e{letter-spacing:36.847104pt;}
.ls18{letter-spacing:81.395413pt;}
.ls14{letter-spacing:81.395573pt;}
.ls1a{letter-spacing:81.395589pt;}
.ls16{letter-spacing:81.395733pt;}
.wse{word-spacing:-63.525333pt;}
.wsd{word-spacing:-63.479467pt;}
.ws1{word-spacing:-59.072000pt;}
.ws0{word-spacing:-59.050667pt;}
.ws2{word-spacing:-59.029333pt;}
.wsc{word-spacing:-41.843200pt;}
.wsa{word-spacing:-41.828267pt;}
.ws8{word-spacing:-41.783467pt;}
.wsb{word-spacing:-41.768533pt;}
.ws6{word-spacing:-41.395200pt;}
.ws7{word-spacing:-41.380267pt;}
.ws9{word-spacing:-41.350400pt;}
.ws5{word-spacing:-41.335467pt;}
.ws16{word-spacing:-35.852800pt;}
.ws1b{word-spacing:-35.814400pt;}
.wsf{word-spacing:-35.481600pt;}
.ws10{word-spacing:-35.082667pt;}
.ws1a{word-spacing:-32.918875pt;}
.ws19{word-spacing:-32.863901pt;}
.ws18{word-spacing:-32.841911pt;}
.ws17{word-spacing:-32.830916pt;}
.ws13{word-spacing:-29.617092pt;}
.ws12{word-spacing:-29.557720pt;}
.ws11{word-spacing:-28.704000pt;}
.ws4{word-spacing:-0.149333pt;}
.ws15{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.106667pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-17.792000pt;}
._2{margin-left:-15.590400pt;}
._5{margin-left:-13.305600pt;}
._3{margin-left:-7.517653pt;}
._4{margin-left:-6.272000pt;}
._0{margin-left:-0.890667pt;}
._1{width:1.043200pt;}
._6{width:3.507200pt;}
._10{width:4.441600pt;}
._8{width:5.880907pt;}
._d{width:8.220373pt;}
._c{width:9.183307pt;}
._a{width:29.388800pt;}
._b{width:30.451200pt;}
._9{width:34.316800pt;}
._e{width:41.344000pt;}
._f{width:63.744000pt;}
.fs4{font-size:42.666667pt;}
.fs16{font-size:43.979793pt;}
.fs5{font-size:48.000000pt;}
.fsf{font-size:85.333333pt;}
.fs10{font-size:87.959587pt;}
.fs13{font-size:96.000000pt;}
.fs14{font-size:98.954535pt;}
.fsd{font-size:101.333333pt;}
.fse{font-size:106.666667pt;}
.fs15{font-size:109.949483pt;}
.fsb{font-size:117.333333pt;}
.fs11{font-size:120.944432pt;}
.fs1{font-size:128.000000pt;}
.fsc{font-size:131.939380pt;}
.fs3{font-size:149.333333pt;}
.fs12{font-size:170.666667pt;}
.fs2{font-size:192.000000pt;}
.fs0{font-size:213.333333pt;}
.fs7{font-size:218.666667pt;}
.fs6{font-size:229.333333pt;}
.fs9{font-size:234.666667pt;}
.fs17{font-size:245.333333pt;}
.fs8{font-size:256.000000pt;}
.fsa{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y58{bottom:38.028236pt;}
.y6c{bottom:38.245356pt;}
.y2a{bottom:38.957116pt;}
.yaf{bottom:47.875382pt;}
.y57{bottom:60.694916pt;}
.y7d{bottom:67.444889pt;}
.y14{bottom:70.081436pt;}
.y6b{bottom:70.245302pt;}
.y9e{bottom:72.861676pt;}
.y3f{bottom:74.159742pt;}
.y56{bottom:84.694902pt;}
.yad{bottom:91.452729pt;}
.y7c{bottom:95.444876pt;}
.y1d{bottom:95.518702pt;}
.y91{bottom:96.762796pt;}
.y88{bottom:97.673569pt;}
.y9d{bottom:100.861702pt;}
.y29{bottom:101.623836pt;}
.yae{bottom:105.208636pt;}
.y9{bottom:105.853302pt;}
.y13{bottom:115.414769pt;}
.y3e{bottom:119.493049pt;}
.y7b{bottom:124.778236pt;}
.yac{bottom:124.785982pt;}
.y87{bottom:127.006902pt;}
.y90{bottom:128.762769pt;}
.y9c{bottom:130.195036pt;}
.y55{bottom:131.361449pt;}
.y1f{bottom:132.371036pt;}
.y32{bottom:134.465969pt;}
.y28{bottom:140.290502pt;}
.y1c{bottom:140.852102pt;}
.y86{bottom:156.340236pt;}
.y12{bottom:159.414769pt;}
.yab{bottom:159.452649pt;}
.y8f{bottom:160.762769pt;}
.y6a{bottom:162.245316pt;}
.y8{bottom:163.186636pt;}
.y3d{bottom:166.159716pt;}
.y31{bottom:173.132636pt;}
.y54{bottom:178.028249pt;}
.y7a{bottom:178.111569pt;}
.y1b{bottom:184.852102pt;}
.y9b{bottom:186.195036pt;}
.y8e{bottom:192.762769pt;}
.y69{bottom:192.911982pt;}
.yaa{bottom:194.119316pt;}
.y48{bottom:198.699836pt;}
.y1e{bottom:200.371036pt;}
.y53{bottom:200.694916pt;}
.y27{bottom:201.623836pt;}
.y11{bottom:204.748102pt;}
.y79{bottom:206.111569pt;}
.y85{bottom:209.673569pt;}
.y3c{bottom:211.493049pt;}
.y9a{bottom:215.528369pt;}
.y52{bottom:224.694782pt;}
.y68{bottom:224.911982pt;}
.ya9{bottom:228.785982pt;}
.ya1{bottom:230.776502pt;}
.y78{bottom:235.444902pt;}
.y30{bottom:235.799302pt;}
.y5e{bottom:236.857969pt;}
.y47{bottom:237.366502pt;}
.y26{bottom:240.290369pt;}
.y99{bottom:243.528369pt;}
.y8d{bottom:246.096102pt;}
.y1a{bottom:248.851969pt;}
.y3b{bottom:255.759716pt;}
.y67{bottom:256.911982pt;}
.y5d{bottom:262.191302pt;}
.y84{bottom:264.340236pt;}
.y10{bottom:267.414769pt;}
.y51{bottom:271.361449pt;}
.y98{bottom:272.861702pt;}
.y46{bottom:274.699836pt;}
.y25{bottom:278.957036pt;}
.y8c{bottom:286.096102pt;}
.y77{bottom:287.444902pt;}
.y5c{bottom:287.524636pt;}
.y66{bottom:288.911982pt;}
.y3a{bottom:292.293036pt;}
.y19{bottom:292.851969pt;}
.y83{bottom:293.673569pt;}
.y2f{bottom:297.132636pt;}
.y97{bottom:302.195036pt;}
.ya0{bottom:304.109702pt;}
.yf{bottom:310.081436pt;}
.y5b{bottom:312.857969pt;}
.y45{bottom:313.366502pt;}
.y76{bottom:316.778236pt;}
.y50{bottom:318.028249pt;}
.y65{bottom:319.578649pt;}
.y82{bottom:321.673569pt;}
.y7{bottom:323.041302pt;}
.y39{bottom:330.426382pt;}
.y5a{bottom:338.191302pt;}
.y4f{bottom:340.694782pt;}
.y24{bottom:342.957169pt;}
.ya8{bottom:346.119316pt;}
.y81{bottom:351.006902pt;}
.ye{bottom:355.414769pt;}
.y96{bottom:356.861702pt;}
.y18{bottom:360.851969pt;}
.y4e{bottom:364.694782pt;}
.y38{bottom:364.826382pt;}
.y75{bottom:370.111569pt;}
.y44{bottom:372.033169pt;}
.y2e{bottom:374.699969pt;}
.y9f{bottom:377.443036pt;}
.y8b{bottom:379.429436pt;}
.ya7{bottom:380.785982pt;}
.y95{bottom:386.195036pt;}
.y23{bottom:386.957036pt;}
.y6{bottom:387.041302pt;}
.y4d{bottom:387.361449pt;}
.y74{bottom:398.111569pt;}
.yd{bottom:399.414769pt;}
.y37{bottom:399.493049pt;}
.y59{bottom:399.631569pt;}
.y80{bottom:404.340236pt;}
.y17{bottom:406.185302pt;}
.y4c{bottom:410.028116pt;}
.y64{bottom:411.578649pt;}
.y43{bottom:413.366502pt;}
.y2d{bottom:413.366636pt;}
.ya6{bottom:415.452649pt;}
.y94{bottom:415.528369pt;}
.y22{bottom:432.290369pt;}
.y4b{bottom:434.028116pt;}
.y8a{bottom:438.096102pt;}
.y63{bottom:443.578649pt;}
.yc{bottom:444.748102pt;}
.y36{bottom:444.826382pt;}
.y73{bottom:448.778236pt;}
.ya5{bottom:450.119316pt;}
.y16{bottom:450.185302pt;}
.y42{bottom:450.699836pt;}
.y2c{bottom:450.699969pt;}
.y5{bottom:451.041302pt;}
.y7f{bottom:457.673569pt;}
.y93{bottom:468.861702pt;}
.y21{bottom:476.290369pt;}
.y89{bottom:478.096102pt;}
.y4a{bottom:480.694782pt;}
.yb{bottom:488.748102pt;}
.y35{bottom:489.093049pt;}
.y72{bottom:490.111436pt;}
.y7e{bottom:497.673569pt;}
.y62{bottom:498.511982pt;}
.y92{bottom:508.861569pt;}
.y4{bottom:515.041302pt;}
.y34{bottom:524.293036pt;}
.y71{bottom:527.444769pt;}
.y49{bottom:527.894769pt;}
.y5f{bottom:529.326916pt;}
.y2b{bottom:540.689036pt;}
.ya4{bottom:567.452649pt;}
.y41{bottom:578.666502pt;}
.y3{bottom:579.041302pt;}
.y6e{bottom:590.262236pt;}
.y20{bottom:594.610769pt;}
.y70{bottom:598.007969pt;}
.y61{bottom:598.958769pt;}
.ya3{bottom:602.119316pt;}
.y15{bottom:608.302236pt;}
.y33{bottom:608.349969pt;}
.ya{bottom:621.660769pt;}
.ya2{bottom:635.452649pt;}
.y40{bottom:635.999836pt;}
.y2{bottom:643.041169pt;}
.y6d{bottom:647.595569pt;}
.y6f{bottom:648.674502pt;}
.y60{bottom:656.292236pt;}
.h10{height:32.000000pt;}
.h7{height:33.291667pt;}
.h21{height:35.175245pt;}
.h8{height:37.453125pt;}
.h17{height:56.875000pt;}
.h22{height:63.984375pt;}
.h14{height:64.000000pt;}
.h15{height:68.250000pt;}
.h16{height:70.350490pt;}
.h23{height:74.906250pt;}
.h1b{height:76.781250pt;}
.h1c{height:79.144301pt;}
.h13{height:80.000000pt;}
.h1d{height:81.666667pt;}
.h1f{height:85.312500pt;}
.h20{height:87.938112pt;}
.hf{height:91.552083pt;}
.h3{height:93.187500pt;}
.h18{height:93.843750pt;}
.hd{height:96.000000pt;}
.h19{height:96.731923pt;}
.h1e{height:98.000000pt;}
.hb{height:99.875000pt;}
.h11{height:102.375000pt;}
.h12{height:105.525735pt;}
.h6{height:112.000000pt;}
.h5{height:116.520833pt;}
.h1a{height:128.000000pt;}
.h4{height:149.812500pt;}
.h2{height:166.458333pt;}
.h9{height:178.942708pt;}
.hc{height:183.104167pt;}
.h24{height:191.427083pt;}
.ha{height:199.750000pt;}
.he{height:224.718750pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x14{left:27.407453pt;}
.x2c{left:35.687973pt;}
.x1e{left:42.737533pt;}
.x24{left:46.005240pt;}
.x1b{left:47.239160pt;}
.x3{left:57.599880pt;}
.x2e{left:59.687973pt;}
.x35{left:66.563613pt;}
.x12{left:67.532237pt;}
.x26{left:70.005240pt;}
.x4{left:81.599880pt;}
.x16{left:92.876200pt;}
.x15{left:96.292867pt;}
.x1d{left:97.968451pt;}
.x28{left:123.501333pt;}
.x11{left:137.364267pt;}
.x20{left:143.923747pt;}
.x29{left:147.091173pt;}
.x25{left:154.462293pt;}
.x2a{left:155.711747pt;}
.x1f{left:157.129480pt;}
.x27{left:158.306040pt;}
.x21{left:160.553773pt;}
.x1c{left:167.800480pt;}
.x13{left:175.334253pt;}
.x23{left:182.574600pt;}
.x7{left:184.217600pt;}
.x34{left:195.058640pt;}
.x8{left:208.217600pt;}
.x6{left:238.305733pt;}
.x22{left:241.647493pt;}
.x31{left:293.561707pt;}
.x2d{left:341.975707pt;}
.x5{left:345.600000pt;}
.xa{left:348.869733pt;}
.x1{left:369.260800pt;}
.x17{left:372.917853pt;}
.x9{left:381.129200pt;}
.x36{left:385.299733pt;}
.x32{left:397.985733pt;}
.xe{left:401.624947pt;}
.xb{left:406.546813pt;}
.xf{left:453.546813pt;}
.x2b{left:466.506040pt;}
.x2{left:473.709733pt;}
.x19{left:498.478000pt;}
.xc{left:507.164000pt;}
.x18{left:534.931867pt;}
.x1a{left:576.967587pt;}
.x33{left:606.063867pt;}
.x10{left:607.015600pt;}
.x2f{left:621.910640pt;}
.xd{left:646.082000pt;}
.x30{left:840.414507pt;}
}




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