
    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_a917d798965c2c300f38906e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_a79a70c9591c14f670b70b26.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916016;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_d840a474818134a9255ecdaf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_1fb89a34666583d2c863206b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_66d6b1d96d34153abdfc56f6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_8704d90999fff720bd876a3c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_4d79cf627c5e5c278f3a56cb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_0664c2ff9c1c9fff5755b964.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018600px;}
.ls3{letter-spacing:0.189164px;}
.ls6{letter-spacing:0.237665px;}
.ls1{letter-spacing:0.237796px;}
.ls5{letter-spacing:33.295427px;}
.ls0{letter-spacing:1142.891450px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-46.433501px;}
.ws3{word-spacing:-32.418587px;}
.ws5{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.509790px;}
.ws8{word-spacing:-16.509658px;}
.ws7{word-spacing:-16.271993px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-8.855446px;}
._2{margin-left:-7.382658px;}
._3{margin-left:-6.081750px;}
._4{margin-left:-4.644584px;}
._6{margin-left:-3.357999px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._c{width:2.254639px;}
._12{width:3.279022px;}
._14{width:5.086984px;}
._20{width:6.246864px;}
._22{width:7.394622px;}
._15{width:8.661921px;}
._16{width:9.744251px;}
._b{width:10.813790px;}
._a{width:11.865431px;}
._d{width:13.411522px;}
._24{width:15.095285px;}
._7{width:16.750123px;}
._11{width:18.170476px;}
._10{width:19.522238px;}
._13{width:20.603804px;}
._9{width:21.838016px;}
._8{width:22.898344px;}
._21{width:24.200417px;}
._1e{width:25.678410px;}
._1f{width:27.188466px;}
._23{width:28.406950px;}
._27{width:29.566808px;}
._f{width:30.734965px;}
._e{width:31.888559px;}
._26{width:33.181202px;}
._25{width:34.284963px;}
._2a{width:35.381635px;}
._29{width:36.407594px;}
._2c{width:37.754312px;}
._2b{width:39.178371px;}
._35{width:40.430078px;}
._3c{width:41.441285px;}
._32{width:42.542110px;}
._31{width:43.583943px;}
._3a{width:44.889010px;}
._2e{width:45.931769px;}
._2d{width:47.547718px;}
._33{width:51.012955px;}
._28{width:52.197121px;}
._30{width:54.994641px;}
._2f{width:55.999900px;}
._37{width:57.807212px;}
._34{width:59.005175px;}
._1c{width:65.205487px;}
._1d{width:66.257769px;}
._17{width:68.054098px;}
._18{width:69.325335px;}
._19{width:70.638052px;}
._1a{width:75.292446px;}
._1b{width:76.477625px;}
._39{width:97.009857px;}
._38{width:98.417184px;}
._3d{width:139.345425px;}
._36{width:158.649309px;}
._3b{width:241.138889px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(0,101,204);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y6{bottom:-11.339990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y42{bottom:3.238980px;}
.y44{bottom:4.498949px;}
.y16{bottom:4.859040px;}
.yb{bottom:4.860038px;}
.y12{bottom:5.039040px;}
.yc{bottom:32.880287px;}
.ya{bottom:49.260240px;}
.y8{bottom:54.120278px;}
.y9{bottom:55.560278px;}
.ybd{bottom:156.359937px;}
.y71{bottom:157.619937px;}
.ya8{bottom:159.059936px;}
.y92{bottom:169.679932px;}
.ya0{bottom:171.119932px;}
.y115{bottom:172.919931px;}
.y11d{bottom:173.999930px;}
.y40{bottom:177.959929px;}
.ybc{bottom:181.739927px;}
.y70{bottom:183.179927px;}
.ya7{bottom:184.619926px;}
.yf0{bottom:186.059926px;}
.y91{bottom:195.059922px;}
.y9f{bottom:196.499921px;}
.y114{bottom:198.479921px;}
.y11c{bottom:199.559920px;}
.y3f{bottom:203.339919px;}
.ybb{bottom:207.299917px;}
.y6f{bottom:208.559917px;}
.yf6{bottom:209.999916px;}
.yef{bottom:211.439915px;}
.yda{bottom:219.179912px;}
.y90{bottom:220.619912px;}
.y9e{bottom:222.059911px;}
.y113{bottom:223.859910px;}
.y6e{bottom:233.939906px;}
.yf5{bottom:235.559906px;}
.yee{bottom:236.999905px;}
.y3e{bottom:240.779904px;}
.yba{bottom:245.819902px;}
.y8f{bottom:245.999902px;}
.ya6{bottom:247.439901px;}
.yd9{bottom:256.619897px;}
.y85{bottom:259.499896px;}
.yf4{bottom:260.939896px;}
.y112{bottom:261.299895px;}
.y11b{bottom:262.379895px;}
.y6d{bottom:271.559891px;}
.ya5{bottom:272.999891px;}
.yed{bottom:274.439890px;}
.y3d{bottom:278.399889px;}
.yd8{bottom:282.179887px;}
.y84{bottom:284.879886px;}
.yb9{bottom:286.319885px;}
.y111{bottom:286.679885px;}
.y11a{bottom:287.759885px;}
.y6c{bottom:296.939881px;}
.yc1{bottom:298.379881px;}
.yec{bottom:299.819880px;}
.yd7{bottom:307.559877px;}
.ye3{bottom:308.999876px;}
.y83{bottom:310.439876px;}
.y3c{bottom:311.879875px;}
.y110{bottom:312.239875px;}
.y6b{bottom:322.319871px;}
.yc0{bottom:323.759870px;}
.yeb{bottom:325.199870px;}
.yd6{bottom:333.119867px;}
.ye2{bottom:334.379866px;}
.y82{bottom:335.819866px;}
.yb8{bottom:337.259865px;}
.y6a{bottom:347.879861px;}
.ybf{bottom:349.319860px;}
.y10f{bottom:349.679860px;}
.yea{bottom:350.759860px;}
.y4d{bottom:353.459859px;}
.yd5{bottom:358.499857px;}
.ye1{bottom:359.759856px;}
.y81{bottom:361.199856px;}
.y23{bottom:369.479852px;}
.y69{bottom:373.259851px;}
.y4c{bottom:373.439851px;}
.yb7{bottom:374.699850px;}
.y10e{bottom:375.059850px;}
.ye9{bottom:376.139850px;}
.yd4{bottom:383.879846px;}
.ye0{bottom:385.319846px;}
.y80{bottom:386.759845px;}
.y119{bottom:388.199845px;}
.y123{bottom:389.639844px;}
.y4b{bottom:393.419843px;}
.y68{bottom:398.819840px;}
.yb6{bottom:400.259840px;}
.y10d{bottom:400.619840px;}
.yd3{bottom:409.439836px;}
.ydf{bottom:410.699836px;}
.ya4{bottom:412.139835px;}
.y4a{bottom:413.399835px;}
.ye8{bottom:413.579835px;}
.y67{bottom:424.199830px;}
.yb5{bottom:425.639830px;}
.y122{bottom:427.079829px;}
.y49{bottom:434.279826px;}
.y8e{bottom:436.259825px;}
.y10c{bottom:438.059825px;}
.ye7{bottom:439.139824px;}
.yd2{bottom:446.879821px;}
.y66{bottom:449.579820px;}
.yb4{bottom:451.019820px;}
.y7f{bottom:461.639815px;}
.y10b{bottom:463.439815px;}
.y118{bottom:464.519814px;}
.yd1{bottom:472.259811px;}
.y8d{bottom:473.699811px;}
.y3b{bottom:474.779810px;}
.y65{bottom:475.139810px;}
.yb3{bottom:476.579809px;}
.y7e{bottom:487.019805px;}
.y10a{bottom:488.999804px;}
.y121{bottom:490.079804px;}
.y3a{bottom:492.059803px;}
.yd0{bottom:497.819801px;}
.y8c{bottom:499.079800px;}
.y9d{bottom:500.519800px;}
.yb2{bottom:501.959799px;}
.y64{bottom:512.579795px;}
.ye6{bottom:514.019794px;}
.y120{bottom:515.459794px;}
.y22{bottom:517.619793px;}
.y39{bottom:521.399791px;}
.ycf{bottom:523.199791px;}
.y8b{bottom:524.459790px;}
.y9c{bottom:526.079790px;}
.y109{bottom:526.439789px;}
.yb1{bottom:527.519789px;}
.y7d{bottom:537.959785px;}
.y38{bottom:538.679785px;}
.ye5{bottom:539.399784px;}
.yce{bottom:548.579781px;}
.y63{bottom:550.019780px;}
.y9b{bottom:551.459779px;}
.y108{bottom:551.819779px;}
.y117{bottom:552.899779px;}
.y37{bottom:555.959778px;}
.y7c{bottom:563.519775px;}
.yb0{bottom:564.959774px;}
.y36{bottom:573.059771px;}
.ycd{bottom:574.139770px;}
.y62{bottom:575.399770px;}
.y9a{bottom:576.839769px;}
.y107{bottom:577.199769px;}
.y116{bottom:578.279769px;}
.y7b{bottom:588.899764px;}
.y35{bottom:590.339764px;}
.ycc{bottom:599.519760px;}
.y61{bottom:600.959760px;}
.y99{bottom:602.399759px;}
.y11f{bottom:603.839758px;}
.y34{bottom:607.619757px;}
.y7a{bottom:614.279754px;}
.y106{bottom:614.819754px;}
.yaf{bottom:615.719754px;}
.y21{bottom:616.079754px;}
.y33{bottom:624.899750px;}
.ycb{bottom:625.079750px;}
.y60{bottom:626.339749px;}
.y98{bottom:627.779749px;}
.y79{bottom:639.839744px;}
.y105{bottom:640.199744px;}
.yae{bottom:641.279743px;}
.y32{bottom:642.179743px;}
.y5f{bottom:651.719739px;}
.y20{bottom:653.159739px;}
.y97{bottom:653.339739px;}
.y31{bottom:659.459736px;}
.yca{bottom:663.599735px;}
.y78{bottom:665.219734px;}
.yf3{bottom:666.659733px;}
.y1f{bottom:670.799732px;}
.y30{bottom:676.559729px;}
.y5e{bottom:677.279729px;}
.y104{bottom:677.639729px;}
.y96{bottom:678.719729px;}
.y1e{bottom:688.619725px;}
.y77{bottom:690.779724px;}
.yf2{bottom:692.219723px;}
.y2f{bottom:693.839722px;}
.y5d{bottom:702.659719px;}
.y103{bottom:703.019719px;}
.yad{bottom:704.099718px;}
.y1d{bottom:705.179718px;}
.y2e{bottom:711.119716px;}
.y76{bottom:716.159714px;}
.yf1{bottom:717.599713px;}
.y5c{bottom:728.219709px;}
.y2d{bottom:728.399709px;}
.y102{bottom:728.579709px;}
.yac{bottom:729.659708px;}
.yde{bottom:740.099704px;}
.y1c{bottom:741.179704px;}
.y75{bottom:741.539703px;}
.y2c{bottom:745.679702px;}
.y5b{bottom:753.599699px;}
.y101{bottom:753.959698px;}
.yc9{bottom:755.039698px;}
.y2b{bottom:762.779695px;}
.ydd{bottom:765.659694px;}
.y74{bottom:767.099693px;}
.y1b{bottom:776.999689px;}
.y5a{bottom:778.979688px;}
.y2a{bottom:780.059688px;}
.yc8{bottom:780.599688px;}
.ydc{bottom:791.039684px;}
.y100{bottom:791.399683px;}
.y73{bottom:792.479683px;}
.y29{bottom:797.339681px;}
.y59{bottom:804.539678px;}
.yc7{bottom:805.979678px;}
.y1a{bottom:812.999675px;}
.y28{bottom:814.619674px;}
.ya3{bottom:816.599673px;}
.yff{bottom:816.959673px;}
.yab{bottom:818.039673px;}
.y58{bottom:829.919668px;}
.y19{bottom:830.999668px;}
.yc6{bottom:831.359667px;}
.y27{bottom:831.899667px;}
.ya2{bottom:841.979663px;}
.yfe{bottom:842.339663px;}
.yaa{bottom:843.419663px;}
.y26{bottom:849.179660px;}
.y8a{bottom:855.479658px;}
.y24{bottom:863.219655px;}
.y25{bottom:866.279653px;}
.y18{bottom:867.359653px;}
.yc5{bottom:868.799652px;}
.yfd{bottom:879.779648px;}
.y95{bottom:880.859648px;}
.y57{bottom:892.919643px;}
.y11e{bottom:894.359642px;}
.y11{bottom:895.620600px;}
.y15{bottom:895.800600px;}
.y13{bottom:900.479640px;}
.y14{bottom:900.659640px;}
.y17{bottom:903.539639px;}
.ya1{bottom:904.799638px;}
.yfc{bottom:905.159638px;}
.y94{bottom:906.239638px;}
.y56{bottom:918.299633px;}
.y89{bottom:930.359628px;}
.y93{bottom:931.799627px;}
.y10{bottom:941.519623px;}
.yfb{bottom:942.779623px;}
.y55{bottom:943.859622px;}
.y88{bottom:955.739618px;}
.ya9{bottom:957.179617px;}
.yf{bottom:963.479615px;}
.yfa{bottom:968.159613px;}
.y54{bottom:969.239612px;}
.y87{bottom:981.299607px;}
.ybe{bottom:982.739607px;}
.ye{bottom:985.439606px;}
.yf9{bottom:993.539603px;}
.y53{bottom:994.619602px;}
.y86{bottom:1006.679597px;}
.yc4{bottom:1008.119597px;}
.yf8{bottom:1019.099592px;}
.y52{bottom:1020.179592px;}
.yd{bottom:1023.959590px;}
.y72{bottom:1032.059587px;}
.yc3{bottom:1033.499587px;}
.ydb{bottom:1045.559582px;}
.y41{bottom:1046.460600px;}
.y51{bottom:1057.619577px;}
.y47{bottom:1058.519577px;}
.yf7{bottom:1061.939575px;}
.yc2{bottom:1070.939572px;}
.y46{bottom:1081.919567px;}
.y50{bottom:1082.999567px;}
.ye4{bottom:1096.499561px;}
.y45{bottom:1105.139558px;}
.y4f{bottom:1108.559557px;}
.y43{bottom:1124.040600px;}
.y48{bottom:1127.459549px;}
.y4e{bottom:1133.939546px;}
.y4{bottom:1155.899538px;}
.y7{bottom:1185.059526px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h3{height:5.760000px;}
.hf{height:19.440000px;}
.h11{height:20.160000px;}
.h6{height:21.960000px;}
.h9{height:22.140000px;}
.he{height:36.624009px;}
.h4{height:36.703110px;}
.hd{height:39.339828px;}
.hc{height:39.840804px;}
.h1{height:41.522679px;}
.h15{height:43.506897px;}
.h14{height:43.536076px;}
.h5{height:44.090490px;}
.hb{height:47.988262px;}
.h12{height:48.095137px;}
.h13{height:48.871387px;}
.h10{height:50.027324px;}
.h8{height:52.277323px;}
.h2{height:53.121073px;}
.ha{height:58.531969px;}
.h7{height:61.164468px;}
.h0{height:1263.000000px;}
.w6{width:0.900000px;}
.w3{width:3.240000px;}
.w8{width:9.900000px;}
.w2{width:10.620000px;}
.w5{width:14.580000px;}
.w4{width:20.880000px;}
.w7{width:439.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x11{left:97.379961px;}
.x1{left:107.999957px;}
.xb{left:110.340000px;}
.x9{left:112.859955px;}
.xc{left:131.399947px;}
.x4{left:132.659947px;}
.x1c{left:134.999946px;}
.x1d{left:161.999926px;}
.x7{left:171.179932px;}
.x14{left:224.100000px;}
.xd{left:235.979906px;}
.xe{left:238.859904px;}
.x12{left:243.359951px;}
.xf{left:265.140000px;}
.x13{left:285.839886px;}
.x10{left:287.819885px;}
.x1b{left:294.119882px;}
.x17{left:296.279838px;}
.x2{left:302.579879px;}
.xa{left:324.179618px;}
.x8{left:368.099853px;}
.x16{left:392.219843px;}
.x18{left:397.799802px;}
.x5{left:464.399814px;}
.x19{left:514.079794px;}
.x3{left:666.179734px;}
.x15{left:675.360000px;}
.x1a{left:694.979428px;}
.x6{left:781.380000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016533pt;}
.ls3{letter-spacing:0.168146pt;}
.ls6{letter-spacing:0.211258pt;}
.ls1{letter-spacing:0.211375pt;}
.ls5{letter-spacing:29.595935pt;}
.ls0{letter-spacing:1015.903511pt;}
.ws4{word-spacing:-41.274223pt;}
.ws3{word-spacing:-28.816521pt;}
.ws5{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.675369pt;}
.ws8{word-spacing:-14.675252pt;}
.ws7{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-7.871508pt;}
._2{margin-left:-6.562363pt;}
._3{margin-left:-5.406000pt;}
._4{margin-left:-4.128519pt;}
._6{margin-left:-2.984888pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._c{width:2.004123pt;}
._12{width:2.914686pt;}
._14{width:4.521764pt;}
._20{width:5.552768pt;}
._22{width:6.572998pt;}
._15{width:7.699485pt;}
._16{width:8.661557pt;}
._b{width:9.612258pt;}
._a{width:10.547050pt;}
._d{width:11.921353pt;}
._24{width:13.418032pt;}
._7{width:14.888998pt;}
._11{width:16.151535pt;}
._10{width:17.353100pt;}
._13{width:18.314493pt;}
._9{width:19.411569pt;}
._8{width:20.354083pt;}
._21{width:21.511482pt;}
._1e{width:22.825254pt;}
._1f{width:24.167526pt;}
._23{width:25.250622pt;}
._27{width:26.281608pt;}
._f{width:27.319968pt;}
._e{width:28.345386pt;}
._26{width:29.494402pt;}
._25{width:30.475522pt;}
._2a{width:31.450342pt;}
._29{width:32.362306pt;}
._2c{width:33.559389pt;}
._2b{width:34.825219pt;}
._35{width:35.937847pt;}
._3c{width:36.836698pt;}
._32{width:37.815209pt;}
._31{width:38.741282pt;}
._3a{width:39.901342pt;}
._2e{width:40.828239pt;}
._2d{width:42.264638pt;}
._33{width:45.344849pt;}
._28{width:46.397441pt;}
._30{width:48.884125pt;}
._2f{width:49.777689pt;}
._37{width:51.384188pt;}
._34{width:52.449045pt;}
._1c{width:57.960433pt;}
._1d{width:58.895795pt;}
._17{width:60.492531pt;}
._18{width:61.622520pt;}
._19{width:62.789379pt;}
._1a{width:66.926618pt;}
._1b{width:67.980111pt;}
._39{width:86.230984pt;}
._38{width:87.481942pt;}
._3d{width:123.862600pt;}
._36{width:141.021608pt;}
._3b{width:214.345679pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y6{bottom:-10.079991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y42{bottom:2.879093pt;}
.y44{bottom:3.999065pt;}
.y16{bottom:4.319146pt;}
.yb{bottom:4.320034pt;}
.y12{bottom:4.479146pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:43.786880pt;}
.y8{bottom:48.106914pt;}
.y9{bottom:49.386914pt;}
.ybd{bottom:138.986611pt;}
.y71{bottom:140.106611pt;}
.ya8{bottom:141.386610pt;}
.y92{bottom:150.826606pt;}
.ya0{bottom:152.106606pt;}
.y115{bottom:153.706605pt;}
.y11d{bottom:154.666605pt;}
.y40{bottom:158.186603pt;}
.ybc{bottom:161.546602pt;}
.y70{bottom:162.826602pt;}
.ya7{bottom:164.106601pt;}
.yf0{bottom:165.386601pt;}
.y91{bottom:173.386597pt;}
.y9f{bottom:174.666597pt;}
.y114{bottom:176.426596pt;}
.y11c{bottom:177.386596pt;}
.y3f{bottom:180.746594pt;}
.ybb{bottom:184.266593pt;}
.y6f{bottom:185.386593pt;}
.yf6{bottom:186.666592pt;}
.yef{bottom:187.946591pt;}
.yda{bottom:194.826589pt;}
.y90{bottom:196.106588pt;}
.y9e{bottom:197.386588pt;}
.y113{bottom:198.986587pt;}
.y6e{bottom:207.946583pt;}
.yf5{bottom:209.386583pt;}
.yee{bottom:210.666582pt;}
.y3e{bottom:214.026581pt;}
.yba{bottom:218.506579pt;}
.y8f{bottom:218.666579pt;}
.ya6{bottom:219.946579pt;}
.yd9{bottom:228.106575pt;}
.y85{bottom:230.666574pt;}
.yf4{bottom:231.946574pt;}
.y112{bottom:232.266574pt;}
.y11b{bottom:233.226573pt;}
.y6d{bottom:241.386570pt;}
.ya5{bottom:242.666570pt;}
.yed{bottom:243.946569pt;}
.y3d{bottom:247.466568pt;}
.yd8{bottom:250.826566pt;}
.y84{bottom:253.226565pt;}
.yb9{bottom:254.506565pt;}
.y111{bottom:254.826565pt;}
.y11a{bottom:255.786564pt;}
.y6c{bottom:263.946561pt;}
.yc1{bottom:265.226561pt;}
.yec{bottom:266.506560pt;}
.yd7{bottom:273.386557pt;}
.ye3{bottom:274.666557pt;}
.y83{bottom:275.946556pt;}
.y3c{bottom:277.226556pt;}
.y110{bottom:277.546556pt;}
.y6b{bottom:286.506552pt;}
.yc0{bottom:287.786552pt;}
.yeb{bottom:289.066551pt;}
.yd6{bottom:296.106548pt;}
.ye2{bottom:297.226548pt;}
.y82{bottom:298.506547pt;}
.yb8{bottom:299.786547pt;}
.y6a{bottom:309.226543pt;}
.ybf{bottom:310.506542pt;}
.y10f{bottom:310.826542pt;}
.yea{bottom:311.786542pt;}
.y4d{bottom:314.186541pt;}
.yd5{bottom:318.666539pt;}
.ye1{bottom:319.786539pt;}
.y81{bottom:321.066538pt;}
.y23{bottom:328.426535pt;}
.y69{bottom:331.786534pt;}
.y4c{bottom:331.946534pt;}
.yb7{bottom:333.066533pt;}
.y10e{bottom:333.386533pt;}
.ye9{bottom:334.346533pt;}
.yd4{bottom:341.226530pt;}
.ye0{bottom:342.506530pt;}
.y80{bottom:343.786529pt;}
.y119{bottom:345.066529pt;}
.y123{bottom:346.346528pt;}
.y4b{bottom:349.706527pt;}
.y68{bottom:354.506525pt;}
.yb6{bottom:355.786524pt;}
.y10d{bottom:356.106524pt;}
.yd3{bottom:363.946521pt;}
.ydf{bottom:365.066521pt;}
.ya4{bottom:366.346520pt;}
.y4a{bottom:367.466520pt;}
.ye8{bottom:367.626520pt;}
.y67{bottom:377.066516pt;}
.yb5{bottom:378.346515pt;}
.y122{bottom:379.626515pt;}
.y49{bottom:386.026512pt;}
.y8e{bottom:387.786512pt;}
.y10c{bottom:389.386511pt;}
.ye7{bottom:390.346511pt;}
.yd2{bottom:397.226508pt;}
.y66{bottom:399.626507pt;}
.yb4{bottom:400.906506pt;}
.y7f{bottom:410.346503pt;}
.y10b{bottom:411.946502pt;}
.y118{bottom:412.906502pt;}
.yd1{bottom:419.786499pt;}
.y8d{bottom:421.066498pt;}
.y3b{bottom:422.026498pt;}
.y65{bottom:422.346498pt;}
.yb3{bottom:423.626497pt;}
.y7e{bottom:432.906494pt;}
.y10a{bottom:434.666493pt;}
.y121{bottom:435.626492pt;}
.y3a{bottom:437.386492pt;}
.yd0{bottom:442.506490pt;}
.y8c{bottom:443.626489pt;}
.y9d{bottom:444.906489pt;}
.yb2{bottom:446.186488pt;}
.y64{bottom:455.626484pt;}
.ye6{bottom:456.906484pt;}
.y120{bottom:458.186483pt;}
.y22{bottom:460.106483pt;}
.y39{bottom:463.466481pt;}
.ycf{bottom:465.066481pt;}
.y8b{bottom:466.186480pt;}
.y9c{bottom:467.626480pt;}
.y109{bottom:467.946479pt;}
.yb1{bottom:468.906479pt;}
.y7d{bottom:478.186475pt;}
.y38{bottom:478.826475pt;}
.ye5{bottom:479.466475pt;}
.yce{bottom:487.626472pt;}
.y63{bottom:488.906471pt;}
.y9b{bottom:490.186471pt;}
.y108{bottom:490.506470pt;}
.y117{bottom:491.466470pt;}
.y37{bottom:494.186469pt;}
.y7c{bottom:500.906466pt;}
.yb0{bottom:502.186466pt;}
.y36{bottom:509.386463pt;}
.ycd{bottom:510.346463pt;}
.y62{bottom:511.466462pt;}
.y9a{bottom:512.746462pt;}
.y107{bottom:513.066461pt;}
.y116{bottom:514.026461pt;}
.y7b{bottom:523.466457pt;}
.y35{bottom:524.746457pt;}
.ycc{bottom:532.906454pt;}
.y61{bottom:534.186453pt;}
.y99{bottom:535.466452pt;}
.y11f{bottom:536.746452pt;}
.y34{bottom:540.106451pt;}
.y7a{bottom:546.026448pt;}
.y106{bottom:546.506448pt;}
.yaf{bottom:547.306448pt;}
.y21{bottom:547.626448pt;}
.y33{bottom:555.466444pt;}
.ycb{bottom:555.626444pt;}
.y60{bottom:556.746444pt;}
.y98{bottom:558.026443pt;}
.y79{bottom:568.746439pt;}
.y105{bottom:569.066439pt;}
.yae{bottom:570.026439pt;}
.y32{bottom:570.826438pt;}
.y5f{bottom:579.306435pt;}
.y20{bottom:580.586434pt;}
.y97{bottom:580.746434pt;}
.y31{bottom:586.186432pt;}
.yca{bottom:589.866431pt;}
.y78{bottom:591.306430pt;}
.yf3{bottom:592.586430pt;}
.y1f{bottom:596.266428pt;}
.y30{bottom:601.386426pt;}
.y5e{bottom:602.026426pt;}
.y104{bottom:602.346426pt;}
.y96{bottom:603.306425pt;}
.y1e{bottom:612.106422pt;}
.y77{bottom:614.026421pt;}
.yf2{bottom:615.306421pt;}
.y2f{bottom:616.746420pt;}
.y5d{bottom:624.586417pt;}
.y103{bottom:624.906417pt;}
.yad{bottom:625.866416pt;}
.y1d{bottom:626.826416pt;}
.y2e{bottom:632.106414pt;}
.y76{bottom:636.586412pt;}
.yf1{bottom:637.866412pt;}
.y5c{bottom:647.306408pt;}
.y2d{bottom:647.466408pt;}
.y102{bottom:647.626408pt;}
.yac{bottom:648.586407pt;}
.yde{bottom:657.866404pt;}
.y1c{bottom:658.826403pt;}
.y75{bottom:659.146403pt;}
.y2c{bottom:662.826402pt;}
.y5b{bottom:669.866399pt;}
.y101{bottom:670.186399pt;}
.yc9{bottom:671.146398pt;}
.y2b{bottom:678.026395pt;}
.ydd{bottom:680.586394pt;}
.y74{bottom:681.866394pt;}
.y1b{bottom:690.666390pt;}
.y5a{bottom:692.426390pt;}
.y2a{bottom:693.386389pt;}
.yc8{bottom:693.866389pt;}
.ydc{bottom:703.146385pt;}
.y100{bottom:703.466385pt;}
.y73{bottom:704.426385pt;}
.y29{bottom:708.746383pt;}
.y59{bottom:715.146381pt;}
.yc7{bottom:716.426380pt;}
.y1a{bottom:722.666378pt;}
.y28{bottom:724.106377pt;}
.ya3{bottom:725.866376pt;}
.yff{bottom:726.186376pt;}
.yab{bottom:727.146376pt;}
.y58{bottom:737.706372pt;}
.y19{bottom:738.666371pt;}
.yc6{bottom:738.986371pt;}
.y27{bottom:739.466371pt;}
.ya2{bottom:748.426367pt;}
.yfe{bottom:748.746367pt;}
.yaa{bottom:749.706367pt;}
.y26{bottom:754.826365pt;}
.y8a{bottom:760.426362pt;}
.y24{bottom:767.306360pt;}
.y25{bottom:770.026359pt;}
.y18{bottom:770.986358pt;}
.yc5{bottom:772.266358pt;}
.yfd{bottom:782.026354pt;}
.y95{bottom:782.986353pt;}
.y57{bottom:793.706349pt;}
.y11e{bottom:794.986349pt;}
.y11{bottom:796.107200pt;}
.y15{bottom:796.267200pt;}
.y13{bottom:800.426346pt;}
.y14{bottom:800.586346pt;}
.y17{bottom:803.146345pt;}
.ya1{bottom:804.266345pt;}
.yfc{bottom:804.586345pt;}
.y94{bottom:805.546344pt;}
.y56{bottom:816.266340pt;}
.y89{bottom:826.986336pt;}
.y93{bottom:828.266335pt;}
.y10{bottom:836.906332pt;}
.yfb{bottom:838.026331pt;}
.y55{bottom:838.986331pt;}
.y88{bottom:849.546327pt;}
.ya9{bottom:850.826326pt;}
.yf{bottom:856.426324pt;}
.yfa{bottom:860.586322pt;}
.y54{bottom:861.546322pt;}
.y87{bottom:872.266318pt;}
.ybe{bottom:873.546317pt;}
.ye{bottom:875.946316pt;}
.yf9{bottom:883.146313pt;}
.y53{bottom:884.106313pt;}
.y86{bottom:894.826309pt;}
.yc4{bottom:896.106308pt;}
.yf8{bottom:905.866304pt;}
.y52{bottom:906.826304pt;}
.yd{bottom:910.186303pt;}
.y72{bottom:917.386300pt;}
.yc3{bottom:918.666299pt;}
.ydb{bottom:929.386295pt;}
.y41{bottom:930.187200pt;}
.y51{bottom:940.106291pt;}
.y47{bottom:940.906290pt;}
.yf7{bottom:943.946289pt;}
.yc2{bottom:951.946286pt;}
.y46{bottom:961.706282pt;}
.y50{bottom:962.666282pt;}
.ye4{bottom:974.666277pt;}
.y45{bottom:982.346274pt;}
.y4f{bottom:985.386273pt;}
.y43{bottom:999.147200pt;}
.y48{bottom:1002.186266pt;}
.y4e{bottom:1007.946263pt;}
.y4{bottom:1027.466256pt;}
.y7{bottom:1053.386245pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h3{height:5.120000pt;}
.hf{height:17.280000pt;}
.h11{height:17.920000pt;}
.h6{height:19.520000pt;}
.h9{height:19.680000pt;}
.he{height:32.554674pt;}
.h4{height:32.624987pt;}
.hd{height:34.968736pt;}
.hc{height:35.414048pt;}
.h1{height:36.909048pt;}
.h15{height:38.672797pt;}
.h14{height:38.698735pt;}
.h5{height:39.191547pt;}
.hb{height:42.656233pt;}
.h12{height:42.751233pt;}
.h13{height:43.441233pt;}
.h10{height:44.468732pt;}
.h8{height:46.468731pt;}
.h2{height:47.218731pt;}
.ha{height:52.028417pt;}
.h7{height:54.368416pt;}
.h0{height:1122.666667pt;}
.w6{width:0.800000pt;}
.w3{width:2.880000pt;}
.w8{width:8.800000pt;}
.w2{width:9.440000pt;}
.w5{width:12.960000pt;}
.w4{width:18.560000pt;}
.w7{width:390.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x11{left:86.559965pt;}
.x1{left:95.999962pt;}
.xb{left:98.080000pt;}
.x9{left:100.319960pt;}
.xc{left:116.799953pt;}
.x4{left:117.919953pt;}
.x1c{left:119.999952pt;}
.x1d{left:143.999934pt;}
.x7{left:152.159939pt;}
.x14{left:199.200000pt;}
.xd{left:209.759916pt;}
.xe{left:212.319915pt;}
.x12{left:216.319956pt;}
.xf{left:235.680000pt;}
.x13{left:254.079898pt;}
.x10{left:255.839898pt;}
.x1b{left:261.439895pt;}
.x17{left:263.359856pt;}
.x2{left:268.959892pt;}
.xa{left:288.159661pt;}
.x8{left:327.199869pt;}
.x16{left:348.639861pt;}
.x18{left:353.599824pt;}
.x5{left:412.799835pt;}
.x19{left:456.959817pt;}
.x3{left:592.159763pt;}
.x15{left:600.320000pt;}
.x1a{left:617.759492pt;}
.x6{left:694.560000pt;}
}




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