
    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_d65f7c4b7d22c3569f82e61a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_41fc3bf3eddca6b52eb7ec61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140000;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_b10d2f7dba90b8b7fe076e9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139000;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_e133ca059e92861d74681229.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_febe6d68d643e559a296382f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_5a8b200bacbdf32835011a91.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.069000;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_cf9a568af59fd07d497c6a7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_a8ca9ddb8efd8515aaf298fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.139000;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_5aacbade421642c88f7912b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.139000;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_3bf4683b1c162d7c7b0940c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.069000;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_30eb88373803ecbb1ef81996.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.139000;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_4f940f8a37577172edce84ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.062000;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_e2aa2983e1705946916e4f8c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.139000;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_d20743f6e03069f74aab292e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.069000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.007975px;}
.v1{vertical-align:27.010177px;}
.v3{vertical-align:36.013569px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-46.745613px;}
.wsd{word-spacing:-22.040304px;}
.ws0{word-spacing:-16.498716px;}
.ws9{word-spacing:-15.001902px;}
.ws4{word-spacing:-13.505088px;}
.wsb{word-spacing:-10.504681px;}
.wsc{word-spacing:-10.504089px;}
.ws1{word-spacing:-9.903732px;}
.ws5{word-spacing:-7.202871px;}
.ws8{word-spacing:-6.996050px;}
.wsa{word-spacing:-5.714705px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:25.144612px;}
.ws6{word-spacing:221.115345px;}
._1d{margin-left:-1.000131px;}
._5{width:1.038201px;}
._3{width:2.668090px;}
._1{width:4.240860px;}
._c{width:5.360572px;}
._d{width:6.364687px;}
._12{width:8.126393px;}
._e{width:9.785848px;}
._9{width:10.900022px;}
._7{width:12.185432px;}
._6{width:13.866795px;}
._18{width:15.126538px;}
._2e{width:16.552176px;}
._8{width:17.634189px;}
._4{width:19.332124px;}
._a{width:21.172287px;}
._2{width:22.188390px;}
._b{width:24.165025px;}
._38{width:25.177489px;}
._10{width:26.211976px;}
._2b{width:27.382445px;}
._2c{width:29.550434px;}
._34{width:30.666193px;}
._17{width:31.787510px;}
._1b{width:32.800244px;}
._1c{width:34.176519px;}
._15{width:35.233320px;}
._3b{width:36.548147px;}
._0{width:38.171197px;}
._19{width:40.122755px;}
._2a{width:41.296716px;}
._39{width:42.976899px;}
._14{width:44.483421px;}
._28{width:45.624343px;}
._24{width:46.805730px;}
._f{width:48.337508px;}
._1a{width:49.781334px;}
._30{width:51.171634px;}
._22{width:52.981899px;}
._1f{width:57.326945px;}
._31{width:58.959097px;}
._11{width:60.874996px;}
._26{width:64.471909px;}
._27{width:67.451332px;}
._2d{width:68.868137px;}
._3a{width:70.291189px;}
._29{width:73.668374px;}
._3d{width:78.487867px;}
._13{width:79.933794px;}
._2f{width:81.116192px;}
._37{width:83.753210px;}
._16{width:84.764854px;}
._20{width:85.879985px;}
._21{width:87.196438px;}
._25{width:96.842989px;}
._1e{width:102.637340px;}
._33{width:119.356699px;}
._35{width:130.259244px;}
._32{width:133.082532px;}
._23{width:141.923718px;}
._36{width:251.064061px;}
._3c{width:290.230651px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs9{font-size:18.675507px;}
.fs7{font-size:27.984200px;}
.fs6{font-size:28.811484px;}
.fsa{font-size:29.750527px;}
.fs2{font-size:39.614927px;}
.fsc{font-size:42.016355px;}
.fsb{font-size:42.018724px;}
.fs5{font-size:48.019141px;}
.fs4{font-size:54.020354px;}
.fs8{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y101{bottom:5.617766px;}
.y100{bottom:15.534608px;}
.ye2{bottom:15.958523px;}
.yb8{bottom:16.600132px;}
.y2e{bottom:18.495790px;}
.yca{bottom:19.219587px;}
.yaa{bottom:19.364935px;}
.y7c{bottom:19.490147px;}
.ya2{bottom:23.473128px;}
.yff{bottom:25.451451px;}
.yfc{bottom:29.655019px;}
.ye1{bottom:33.965307px;}
.yb7{bottom:34.606917px;}
.yfe{bottom:35.368293px;}
.yf8{bottom:35.514983px;}
.y2d{bottom:36.502574px;}
.yc9{bottom:37.226372px;}
.ya9{bottom:37.371719px;}
.y7b{bottom:37.496932px;}
.ya1{bottom:41.479913px;}
.yfd{bottom:45.285135px;}
.ye0{bottom:51.972092px;}
.yf7{bottom:53.870950px;}
.yfb{bottom:54.744267px;}
.y7a{bottom:55.503716px;}
.ya0{bottom:59.486697px;}
.yb6{bottom:70.620486px;}
.yf6{bottom:71.009182px;}
.y2c{bottom:72.516143px;}
.yc8{bottom:73.239941px;}
.ya8{bottom:73.385288px;}
.ydf{bottom:87.985661px;}
.yb5{bottom:88.627270px;}
.y2b{bottom:90.522928px;}
.yc7{bottom:91.246725px;}
.ya7{bottom:91.392073px;}
.y79{bottom:91.517285px;}
.y9f{bottom:95.500266px;}
.yde{bottom:105.992446px;}
.yb4{bottom:106.634055px;}
.ya6{bottom:109.398858px;}
.y78{bottom:109.524070px;}
.y9e{bottom:113.507051px;}
.ydd{bottom:123.999230px;}
.y2a{bottom:126.536497px;}
.yc6{bottom:127.260294px;}
.y9d{bottom:131.513835px;}
.y102{bottom:143.875725px;}
.y29{bottom:144.543281px;}
.yc5{bottom:145.267079px;}
.ya5{bottom:145.412427px;}
.y77{bottom:145.537639px;}
.yc4{bottom:163.273863px;}
.ya4{bottom:163.419211px;}
.y76{bottom:163.544423px;}
.y28{bottom:180.556851px;}
.ya3{bottom:181.425996px;}
.y105{bottom:188.400212px;}
.y27{bottom:198.563635px;}
.yf3{bottom:198.568059px;}
.yc3{bottom:199.287432px;}
.y75{bottom:199.557992px;}
.y104{bottom:202.405664px;}
.yc2{bottom:217.294217px;}
.y74{bottom:217.564777px;}
.yf2{bottom:221.076540px;}
.yf9{bottom:226.611662px;}
.yb9{bottom:228.516558px;}
.y26{bottom:234.577204px;}
.yc1{bottom:235.301001px;}
.y73{bottom:235.571562px;}
.yf1{bottom:243.585021px;}
.y25{bottom:252.583989px;}
.yf0{bottom:266.093501px;}
.y72{bottom:271.585131px;}
.y92{bottom:277.729857px;}
.y103{bottom:282.621509px;}
.yb1{bottom:288.447506px;}
.yef{bottom:288.601982px;}
.y71{bottom:289.591915px;}
.y91{bottom:300.238337px;}
.yfa{bottom:306.827470px;}
.yb0{bottom:310.955987px;}
.yee{bottom:311.110463px;}
.yb3{bottom:317.708531px;}
.yd8{bottom:323.528756px;}
.yaf{bottom:333.464467px;}
.yed{bottom:333.618943px;}
.y1e{bottom:334.065293px;}
.yb2{bottom:340.217012px;}
.y21{bottom:340.817837px;}
.ydc{bottom:343.786388px;}
.y90{bottom:345.255299px;}
.yd7{bottom:346.037237px;}
.y115{bottom:350.804010px;}
.y53{bottom:353.247417px;}
.yae{bottom:355.972948px;}
.yec{bottom:356.127424px;}
.y1d{bottom:356.573774px;}
.ydb{bottom:366.294869px;}
.yd6{bottom:368.545717px;}
.y114{bottom:368.810795px;}
.y52{bottom:375.755898px;}
.yeb{bottom:378.635905px;}
.y1c{bottom:379.082254px;}
.y113{bottom:386.817579px;}
.yda{bottom:388.803350px;}
.y8f{bottom:390.272260px;}
.yd5{bottom:391.054198px;}
.y51{bottom:398.264378px;}
.yea{bottom:401.144385px;}
.y1b{bottom:401.590735px;}
.yab{bottom:404.143487px;}
.y8e{bottom:412.780741px;}
.yd4{bottom:413.562679px;}
.y50{bottom:420.772859px;}
.ye9{bottom:423.652866px;}
.y1a{bottom:424.099216px;}
.y20{bottom:430.851760px;}
.y8d{bottom:435.289221px;}
.yd3{bottom:436.071159px;}
.y4f{bottom:443.281340px;}
.ye8{bottom:446.161347px;}
.y19{bottom:446.607696px;}
.y8c{bottom:457.797702px;}
.yd2{bottom:458.579640px;}
.y4e{bottom:465.789820px;}
.ye7{bottom:468.669827px;}
.y18{bottom:469.116177px;}
.y30{bottom:475.868721px;}
.y8b{bottom:480.306183px;}
.y17{bottom:491.624658px;}
.y1f{bottom:498.377202px;}
.yd1{bottom:501.613807px;}
.y8a{bottom:502.814663px;}
.y4c{bottom:510.806782px;}
.yf4{bottom:511.409718px;}
.y70{bottom:511.675508px;}
.y16{bottom:514.133138px;}
.y4d{bottom:517.559326px;}
.y4b{bottom:533.315262px;}
.y6f{bottom:534.183989px;}
.y15{bottom:536.641619px;}
.y2f{bottom:543.394163px;}
.y89{bottom:547.831625px;}
.y4a{bottom:555.823743px;}
.ye6{bottom:556.302053px;}
.y6e{bottom:556.692470px;}
.y14{bottom:559.150100px;}
.y88{bottom:570.340105px;}
.y49{bottom:578.332224px;}
.y6d{bottom:579.200950px;}
.y48{bottom:600.840704px;}
.y6c{bottom:601.709431px;}
.y22{bottom:604.091966px;}
.y87{bottom:615.357067px;}
.y47{bottom:623.349185px;}
.y86{bottom:637.865547px;}
.y6a{bottom:646.726392px;}
.y13{bottom:651.509820px;}
.y6b{bottom:653.478937px;}
.y85{bottom:660.374028px;}
.y46{bottom:666.770152px;}
.y69{bottom:669.234873px;}
.y12{bottom:674.018301px;}
.y84{bottom:682.882509px;}
.y68{bottom:691.743354px;}
.y11{bottom:696.526782px;}
.y83{bottom:705.390989px;}
.y42{bottom:712.589383px;}
.y67{bottom:714.251834px;}
.y10{bottom:719.035262px;}
.y44{bottom:719.341927px;}
.y82{bottom:727.899470px;}
.y41{bottom:735.097864px;}
.y66{bottom:736.760315px;}
.yf{bottom:741.543743px;}
.y81{bottom:750.407950px;}
.y40{bottom:757.606345px;}
.y65{bottom:759.268796px;}
.ye{bottom:764.052224px;}
.y80{bottom:772.916431px;}
.y111{bottom:775.675932px;}
.y3f{bottom:780.114825px;}
.y64{bottom:781.777276px;}
.y7f{bottom:795.424912px;}
.y110{bottom:798.184413px;}
.y3e{bottom:802.623306px;}
.y63{bottom:804.285757px;}
.yd{bottom:809.069185px;}
.y7e{bottom:817.933392px;}
.y3d{bottom:825.131787px;}
.y62{bottom:826.794238px;}
.yc{bottom:831.577666px;}
.y7d{bottom:840.441873px;}
.y10f{bottom:843.201374px;}
.y3c{bottom:847.640267px;}
.y61{bottom:849.302718px;}
.yb{bottom:854.086146px;}
.yd0{bottom:865.186951px;}
.y10e{bottom:865.709854px;}
.y3b{bottom:870.148748px;}
.y60{bottom:871.811199px;}
.ya{bottom:876.594627px;}
.ycf{bottom:887.695432px;}
.y9c{bottom:889.379080px;}
.y3a{bottom:892.657229px;}
.y5f{bottom:894.319680px;}
.y9{bottom:899.103107px;}
.y43{bottom:899.409773px;}
.yce{bottom:910.203912px;}
.y10d{bottom:910.726816px;}
.y39{bottom:915.165709px;}
.y5e{bottom:916.828160px;}
.y8{bottom:921.611588px;}
.ycd{bottom:932.712393px;}
.y10c{bottom:933.235296px;}
.y9b{bottom:935.083054px;}
.yc0{bottom:937.225893px;}
.y38{bottom:937.674190px;}
.y5d{bottom:939.336641px;}
.y7{bottom:944.120069px;}
.y9a{bottom:957.591535px;}
.ybf{bottom:959.734373px;}
.y37{bottom:960.182671px;}
.y5c{bottom:961.845122px;}
.y6{bottom:966.628549px;}
.y10b{bottom:978.252258px;}
.ycc{bottom:979.905166px;}
.y99{bottom:980.100015px;}
.ybe{bottom:982.242854px;}
.y36{bottom:982.691151px;}
.y5b{bottom:984.353602px;}
.y5{bottom:989.137030px;}
.y10a{bottom:1000.760738px;}
.y98{bottom:1002.608496px;}
.yd9{bottom:1004.751335px;}
.y35{bottom:1005.199632px;}
.y5a{bottom:1006.862083px;}
.y4{bottom:1011.645511px;}
.y109{bottom:1023.269219px;}
.y97{bottom:1025.116977px;}
.ybd{bottom:1027.259815px;}
.y34{bottom:1027.708113px;}
.y59{bottom:1029.370564px;}
.ybc{bottom:1049.768296px;}
.y33{bottom:1050.216593px;}
.y58{bottom:1051.879044px;}
.y24{bottom:1056.587449px;}
.y108{bottom:1068.286180px;}
.ye5{bottom:1070.025929px;}
.y96{bottom:1070.133938px;}
.ycb{bottom:1072.276777px;}
.y32{bottom:1072.725074px;}
.y57{bottom:1074.387525px;}
.y107{bottom:1090.794661px;}
.ye4{bottom:1092.534409px;}
.y95{bottom:1092.642419px;}
.yba{bottom:1094.785257px;}
.y31{bottom:1095.233555px;}
.y56{bottom:1096.896006px;}
.ybb{bottom:1101.537802px;}
.y23{bottom:1101.604417px;}
.y106{bottom:1113.303142px;}
.yf5{bottom:1115.042890px;}
.y94{bottom:1115.150899px;}
.yad{bottom:1117.293738px;}
.y55{bottom:1119.404486px;}
.y45{bottom:1136.684008px;}
.ye3{bottom:1137.551371px;}
.y93{bottom:1137.659380px;}
.yac{bottom:1139.802219px;}
.y3{bottom:1140.287232px;}
.y54{bottom:1141.912967px;}
.y112{bottom:1154.753595px;}
.y2{bottom:1169.548257px;}
.h14{height:15.463320px;}
.h12{height:24.933922px;}
.h16{height:26.507720px;}
.he{height:32.206936px;}
.h5{height:35.296900px;}
.h18{height:37.436572px;}
.h17{height:37.438683px;}
.hf{height:42.785055px;}
.hd{height:43.431712px;}
.hc{height:43.918547px;}
.h10{height:45.679008px;}
.h7{height:48.132135px;}
.h13{height:53.466780px;}
.h15{height:53.639998px;}
.ha{height:53.653825px;}
.h8{height:57.621710px;}
.h4{height:58.801424px;}
.hb{height:59.217112px;}
.h6{height:59.638470px;}
.h9{height:62.307077px;}
.h3{height:69.553366px;}
.h11{height:71.310469px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:45.769673px;}
.x20{left:46.878330px;}
.x1{left:48.634345px;}
.xf{left:50.204309px;}
.x1f{left:58.798029px;}
.xe{left:76.034671px;}
.x10{left:102.079323px;}
.x1d{left:119.519995px;}
.x1e{left:127.283452px;}
.x12{left:134.523188px;}
.xb{left:149.486174px;}
.x5{left:177.094232px;}
.xa{left:180.593598px;}
.x9{left:193.887669px;}
.x17{left:241.368138px;}
.x11{left:247.610719px;}
.x16{left:270.963267px;}
.x3{left:326.300846px;}
.x2{left:392.381053px;}
.x4{left:416.563365px;}
.x6{left:469.235590px;}
.x1c{left:496.419632px;}
.x1b{left:618.659038px;}
.x1a{left:620.563834px;}
.x13{left:649.127588px;}
.x14{left:658.658523px;}
.x15{left:678.195186px;}
.x19{left:694.707262px;}
.x18{left:774.278263px;}
.x8{left:793.445641px;}
.x7{left:814.652850px;}
.xc{left:818.328058px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.784867pt;}
.v1{vertical-align:24.009046pt;}
.v3{vertical-align:32.012061pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-41.551656pt;}
.wsd{word-spacing:-19.591382pt;}
.ws0{word-spacing:-14.665525pt;}
.ws9{word-spacing:-13.335024pt;}
.ws4{word-spacing:-12.004523pt;}
.wsb{word-spacing:-9.337494pt;}
.wsc{word-spacing:-9.336968pt;}
.ws1{word-spacing:-8.803317pt;}
.ws5{word-spacing:-6.402552pt;}
.ws8{word-spacing:-6.218711pt;}
.wsa{word-spacing:-5.079738pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:22.350767pt;}
.ws6{word-spacing:196.546974pt;}
._1d{margin-left:-0.889005pt;}
._5{width:0.922845pt;}
._3{width:2.371636pt;}
._1{width:3.769653pt;}
._c{width:4.764952pt;}
._d{width:5.657499pt;}
._12{width:7.223460pt;}
._e{width:8.698531pt;}
._9{width:9.688908pt;}
._7{width:10.831495pt;}
._6{width:12.326040pt;}
._18{width:13.445811pt;}
._2e{width:14.713046pt;}
._8{width:15.674835pt;}
._4{width:17.184110pt;}
._a{width:18.819811pt;}
._2{width:19.723013pt;}
._b{width:21.480022pt;}
._38{width:22.379991pt;}
._10{width:23.299534pt;}
._2b{width:24.339951pt;}
._2c{width:26.267053pt;}
._34{width:27.258838pt;}
._17{width:28.255565pt;}
._1b{width:29.155773pt;}
._1c{width:30.379128pt;}
._15{width:31.318507pt;}
._3b{width:32.487241pt;}
._0{width:33.929953pt;}
._19{width:35.664671pt;}
._2a{width:36.708192pt;}
._39{width:38.201688pt;}
._14{width:39.540819pt;}
._28{width:40.554971pt;}
._24{width:41.605093pt;}
._f{width:42.966674pt;}
._1a{width:44.250075pt;}
._30{width:45.485897pt;}
._22{width:47.095021pt;}
._1f{width:50.957284pt;}
._31{width:52.408086pt;}
._11{width:54.111107pt;}
._26{width:57.308364pt;}
._27{width:59.956739pt;}
._2d{width:61.216122pt;}
._3a{width:62.481057pt;}
._29{width:65.482999pt;}
._3d{width:69.766993pt;}
._13{width:71.052261pt;}
._2f{width:72.103282pt;}
._37{width:74.447298pt;}
._16{width:75.346537pt;}
._20{width:76.337764pt;}
._21{width:77.507945pt;}
._25{width:86.082657pt;}
._1e{width:91.233191pt;}
._33{width:106.094843pt;}
._35{width:115.785995pt;}
._32{width:118.295584pt;}
._23{width:126.154416pt;}
._36{width:223.168054pt;}
._3c{width:257.982801pt;}
.fs9{font-size:16.600451pt;}
.fs7{font-size:24.874844pt;}
.fs6{font-size:25.610208pt;}
.fsa{font-size:26.444913pt;}
.fs2{font-size:35.213268pt;}
.fsc{font-size:37.347871pt;}
.fsb{font-size:37.349977pt;}
.fs5{font-size:42.683681pt;}
.fs4{font-size:48.018092pt;}
.fs8{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y101{bottom:4.993570pt;}
.y100{bottom:13.808541pt;}
.ye2{bottom:14.185354pt;}
.yb8{bottom:14.755673pt;}
.y2e{bottom:16.440702pt;}
.yca{bottom:17.084077pt;}
.yaa{bottom:17.213275pt;}
.y7c{bottom:17.324575pt;}
.ya2{bottom:20.865003pt;}
.yff{bottom:22.623512pt;}
.yfc{bottom:26.360017pt;}
.ye1{bottom:30.191384pt;}
.yb7{bottom:30.761704pt;}
.yfe{bottom:31.438483pt;}
.yf8{bottom:31.568874pt;}
.y2d{bottom:32.446733pt;}
.yc9{bottom:33.090108pt;}
.ya9{bottom:33.219306pt;}
.y7b{bottom:33.330606pt;}
.ya1{bottom:36.871033pt;}
.yfd{bottom:40.253454pt;}
.ye0{bottom:46.197415pt;}
.yf7{bottom:47.885289pt;}
.yfb{bottom:48.661571pt;}
.y7a{bottom:49.336637pt;}
.ya0{bottom:52.877064pt;}
.yb6{bottom:62.773765pt;}
.yf6{bottom:63.119273pt;}
.y2c{bottom:64.458794pt;}
.yc8{bottom:65.102169pt;}
.ya8{bottom:65.231368pt;}
.ydf{bottom:78.209476pt;}
.yb5{bottom:78.779796pt;}
.y2b{bottom:80.464825pt;}
.yc7{bottom:81.108200pt;}
.ya7{bottom:81.237398pt;}
.y79{bottom:81.348698pt;}
.y9f{bottom:84.889125pt;}
.yde{bottom:94.215507pt;}
.yb4{bottom:94.785826pt;}
.ya6{bottom:97.243429pt;}
.y78{bottom:97.354729pt;}
.y9e{bottom:100.895156pt;}
.ydd{bottom:110.221538pt;}
.y2a{bottom:112.476886pt;}
.yc6{bottom:113.120262pt;}
.y9d{bottom:116.901187pt;}
.y102{bottom:127.889533pt;}
.y29{bottom:128.482917pt;}
.yc5{bottom:129.126292pt;}
.ya5{bottom:129.255490pt;}
.y77{bottom:129.366790pt;}
.yc4{bottom:145.132323pt;}
.ya4{bottom:145.261521pt;}
.y76{bottom:145.372821pt;}
.y28{bottom:160.494978pt;}
.ya3{bottom:161.267552pt;}
.y105{bottom:167.466856pt;}
.y27{bottom:176.501009pt;}
.yf3{bottom:176.504942pt;}
.yc3{bottom:177.144384pt;}
.y75{bottom:177.384882pt;}
.y104{bottom:179.916146pt;}
.yc2{bottom:193.150415pt;}
.y74{bottom:193.390913pt;}
.yf2{bottom:196.512480pt;}
.yf9{bottom:201.432588pt;}
.yb9{bottom:203.125830pt;}
.y26{bottom:208.513070pt;}
.yc1{bottom:209.156446pt;}
.y73{bottom:209.396944pt;}
.yf1{bottom:216.520018pt;}
.y25{bottom:224.519101pt;}
.yf0{bottom:236.527557pt;}
.y72{bottom:241.409005pt;}
.y92{bottom:246.870984pt;}
.y103{bottom:251.219119pt;}
.yb1{bottom:256.397783pt;}
.yef{bottom:256.535095pt;}
.y71{bottom:257.415036pt;}
.y91{bottom:266.878522pt;}
.yfa{bottom:272.735529pt;}
.yb0{bottom:276.405322pt;}
.yee{bottom:276.542634pt;}
.yb3{bottom:282.407583pt;}
.yd8{bottom:287.581116pt;}
.yaf{bottom:296.412860pt;}
.yed{bottom:296.550172pt;}
.y1e{bottom:296.946927pt;}
.yb2{bottom:302.415121pt;}
.y21{bottom:302.949189pt;}
.ydc{bottom:305.587901pt;}
.y90{bottom:306.893599pt;}
.yd7{bottom:307.588655pt;}
.y115{bottom:311.825787pt;}
.y53{bottom:313.997704pt;}
.yae{bottom:316.420398pt;}
.yec{bottom:316.557710pt;}
.y1d{bottom:316.954466pt;}
.ydb{bottom:325.595439pt;}
.yd6{bottom:327.596193pt;}
.y114{bottom:327.831817pt;}
.y52{bottom:334.005242pt;}
.yeb{bottom:336.565249pt;}
.y1c{bottom:336.962004pt;}
.y113{bottom:343.837848pt;}
.yda{bottom:345.602978pt;}
.y8f{bottom:346.908675pt;}
.yd5{bottom:347.603731pt;}
.y51{bottom:354.012781pt;}
.yea{bottom:356.572787pt;}
.y1b{bottom:356.969542pt;}
.yab{bottom:359.238655pt;}
.y8e{bottom:366.916214pt;}
.yd4{bottom:367.611270pt;}
.y50{bottom:374.020319pt;}
.ye9{bottom:376.580325pt;}
.y1a{bottom:376.977081pt;}
.y20{bottom:382.979342pt;}
.y8d{bottom:386.923752pt;}
.yd3{bottom:387.618808pt;}
.y4f{bottom:394.027858pt;}
.ye8{bottom:396.587864pt;}
.y19{bottom:396.984619pt;}
.y8c{bottom:406.931291pt;}
.yd2{bottom:407.626347pt;}
.y4e{bottom:414.035396pt;}
.ye7{bottom:416.595402pt;}
.y18{bottom:416.992157pt;}
.y30{bottom:422.994419pt;}
.y8b{bottom:426.938829pt;}
.y17{bottom:436.999696pt;}
.y1f{bottom:443.001957pt;}
.yd1{bottom:445.878940pt;}
.y8a{bottom:446.946367pt;}
.y4c{bottom:454.050473pt;}
.yf4{bottom:454.586416pt;}
.y70{bottom:454.822674pt;}
.y16{bottom:457.007234pt;}
.y4d{bottom:460.052734pt;}
.y4b{bottom:474.058011pt;}
.y6f{bottom:474.830213pt;}
.y15{bottom:477.014772pt;}
.y2f{bottom:483.017034pt;}
.y89{bottom:486.961444pt;}
.y4a{bottom:494.065549pt;}
.ye6{bottom:494.490713pt;}
.y6e{bottom:494.837751pt;}
.y14{bottom:497.022311pt;}
.y88{bottom:506.968982pt;}
.y49{bottom:514.073088pt;}
.y6d{bottom:514.845289pt;}
.y48{bottom:534.080626pt;}
.y6c{bottom:534.852828pt;}
.y22{bottom:536.970636pt;}
.y87{bottom:546.984059pt;}
.y47{bottom:554.088164pt;}
.y86{bottom:566.991597pt;}
.y6a{bottom:574.867904pt;}
.y13{bottom:579.119840pt;}
.y6b{bottom:580.870166pt;}
.y85{bottom:586.999136pt;}
.y46{bottom:592.684579pt;}
.y69{bottom:594.875443pt;}
.y12{bottom:599.127379pt;}
.y84{bottom:607.006674pt;}
.y68{bottom:614.882981pt;}
.y11{bottom:619.134917pt;}
.y83{bottom:627.014213pt;}
.y42{bottom:633.412785pt;}
.y67{bottom:634.890519pt;}
.y10{bottom:639.142455pt;}
.y44{bottom:639.415047pt;}
.y82{bottom:647.021751pt;}
.y41{bottom:653.420323pt;}
.y66{bottom:654.898058pt;}
.yf{bottom:659.149994pt;}
.y81{bottom:667.029289pt;}
.y40{bottom:673.427862pt;}
.y65{bottom:674.905596pt;}
.ye{bottom:679.157532pt;}
.y80{bottom:687.036828pt;}
.y111{bottom:689.489717pt;}
.y3f{bottom:693.435400pt;}
.y64{bottom:694.913135pt;}
.y7f{bottom:707.044366pt;}
.y110{bottom:709.497256pt;}
.y3e{bottom:713.442939pt;}
.y63{bottom:714.920673pt;}
.yd{bottom:719.172609pt;}
.y7e{bottom:727.051904pt;}
.y3d{bottom:733.450477pt;}
.y62{bottom:734.928211pt;}
.yc{bottom:739.180147pt;}
.y7d{bottom:747.059443pt;}
.y10f{bottom:749.512332pt;}
.y3c{bottom:753.458015pt;}
.y61{bottom:754.935750pt;}
.yb{bottom:759.187685pt;}
.yd0{bottom:769.055067pt;}
.y10e{bottom:769.519871pt;}
.y3b{bottom:773.465554pt;}
.y60{bottom:774.943288pt;}
.ya{bottom:779.195224pt;}
.ycf{bottom:789.062606pt;}
.y9c{bottom:790.559182pt;}
.y3a{bottom:793.473092pt;}
.y5f{bottom:794.950826pt;}
.y9{bottom:799.202762pt;}
.y43{bottom:799.475354pt;}
.yce{bottom:809.070144pt;}
.y10d{bottom:809.534947pt;}
.y39{bottom:813.480630pt;}
.y5e{bottom:814.958365pt;}
.y8{bottom:819.210301pt;}
.ycd{bottom:829.077683pt;}
.y10c{bottom:829.542486pt;}
.y9b{bottom:831.184937pt;}
.yc0{bottom:833.089682pt;}
.y38{bottom:833.488169pt;}
.y5d{bottom:834.965903pt;}
.y7{bottom:839.217839pt;}
.y9a{bottom:851.192475pt;}
.ybf{bottom:853.097221pt;}
.y37{bottom:853.495707pt;}
.y5c{bottom:854.973441pt;}
.y6{bottom:859.225377pt;}
.y10b{bottom:869.557562pt;}
.ycc{bottom:871.026814pt;}
.y99{bottom:871.200014pt;}
.ybe{bottom:873.104759pt;}
.y36{bottom:873.503246pt;}
.y5b{bottom:874.980980pt;}
.y5{bottom:879.232916pt;}
.y10a{bottom:889.565101pt;}
.y98{bottom:891.207552pt;}
.yd9{bottom:893.112298pt;}
.y35{bottom:893.510784pt;}
.y5a{bottom:894.988518pt;}
.y4{bottom:899.240454pt;}
.y109{bottom:909.572639pt;}
.y97{bottom:911.215090pt;}
.ybd{bottom:913.119836pt;}
.y34{bottom:913.518322pt;}
.y59{bottom:914.996057pt;}
.ybc{bottom:933.127374pt;}
.y33{bottom:933.525861pt;}
.y58{bottom:935.003595pt;}
.y24{bottom:939.188843pt;}
.y108{bottom:949.587716pt;}
.ye5{bottom:951.134159pt;}
.y96{bottom:951.230167pt;}
.ycb{bottom:953.134913pt;}
.y32{bottom:953.533399pt;}
.y57{bottom:955.011133pt;}
.y107{bottom:969.595254pt;}
.ye4{bottom:971.141697pt;}
.y95{bottom:971.237705pt;}
.yba{bottom:973.142451pt;}
.y31{bottom:973.540937pt;}
.y56{bottom:975.018672pt;}
.ybb{bottom:979.144712pt;}
.y23{bottom:979.203926pt;}
.y106{bottom:989.602793pt;}
.yf5{bottom:991.149236pt;}
.y94{bottom:991.245244pt;}
.yad{bottom:993.149989pt;}
.y55{bottom:995.026210pt;}
.y45{bottom:1010.385784pt;}
.ye3{bottom:1011.156774pt;}
.y93{bottom:1011.252782pt;}
.yac{bottom:1013.157528pt;}
.y3{bottom:1013.588651pt;}
.y54{bottom:1015.033748pt;}
.y112{bottom:1026.447640pt;}
.y2{bottom:1039.598451pt;}
.h14{height:13.745173pt;}
.h12{height:22.163486pt;}
.h16{height:23.562418pt;}
.he{height:28.628387pt;}
.h5{height:31.375022pt;}
.h18{height:33.276953pt;}
.h17{height:33.278829pt;}
.hf{height:38.031160pt;}
.hd{height:38.605966pt;}
.hc{height:39.038709pt;}
.h10{height:40.603562pt;}
.h7{height:42.784120pt;}
.h13{height:47.526026pt;}
.h15{height:47.679998pt;}
.ha{height:47.692289pt;}
.h8{height:51.219298pt;}
.h4{height:52.267933pt;}
.hb{height:52.637433pt;}
.h6{height:53.011974pt;}
.h9{height:55.384068pt;}
.h3{height:61.825214pt;}
.h11{height:63.387083pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:40.684154pt;}
.x20{left:41.669627pt;}
.x1{left:43.230529pt;}
.xf{left:44.626053pt;}
.x1f{left:52.264915pt;}
.xe{left:67.586374pt;}
.x10{left:90.737176pt;}
.x1d{left:106.239996pt;}
.x1e{left:113.140846pt;}
.x12{left:119.576167pt;}
.xb{left:132.876599pt;}
.x5{left:157.417095pt;}
.xa{left:160.527642pt;}
.x9{left:172.344595pt;}
.x17{left:214.549456pt;}
.x11{left:220.098417pt;}
.x16{left:240.856238pt;}
.x3{left:290.045196pt;}
.x2{left:348.783159pt;}
.x4{left:370.278546pt;}
.x6{left:417.098303pt;}
.x1c{left:441.261895pt;}
.x1b{left:549.919145pt;}
.x1a{left:551.612297pt;}
.x13{left:577.002301pt;}
.x14{left:585.474243pt;}
.x15{left:602.840166pt;}
.x19{left:617.517566pt;}
.x18{left:688.247345pt;}
.x8{left:705.285015pt;}
.x7{left:724.135867pt;}
.xc{left:727.402718pt;}
}




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