
    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_03fb0a122a76d56d5ff20a0b.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_8486a3b1c4be502e92c3a221.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_454cb686b7d59fdd3fdcedca.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d47a48b30aeb3422bc67fbd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_578af2d98c2732dd2a74aa54.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_d68e105291f9a2933d38a9dc.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_9cfcd9ddd601c770eb97e694.woff')format("woff");}.ff9{font-family:ff9;line-height:0.912598;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_8d5faa72559152ec5028899c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919434;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_594d546cbecdbaa9c6efab88.woff')format("woff");}.ffb{font-family:ffb;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;}
.m3{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.034431px;}
.ls7{letter-spacing:0.034440px;}
.ls5{letter-spacing:0.062743px;}
.ls1{letter-spacing:0.069038px;}
.ls6{letter-spacing:12.822835px;}
.ls3{letter-spacing:91.649394px;}
.ls4{letter-spacing:109.683832px;}
.ls0{letter-spacing:1229.983157px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.462730px;}
.ws0{word-spacing:-18.069031px;}
.ws2{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-9.719996px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-8.730154px;}
._3{margin-left:-4.191630px;}
._9{margin-left:-3.167581px;}
._1{margin-left:-1.553337px;}
._0{width:1.152887px;}
._e{width:2.603328px;}
._5{width:4.451134px;}
._4{width:5.472343px;}
._15{width:7.151801px;}
._10{width:8.942347px;}
._11{width:9.946402px;}
._19{width:10.963848px;}
._b{width:12.037098px;}
._a{width:13.104564px;}
._1f{width:14.216676px;}
._1a{width:15.382102px;}
._8{width:16.613364px;}
._12{width:17.795611px;}
._6{width:18.904989px;}
._7{width:19.952489px;}
._f{width:21.049298px;}
._16{width:22.074631px;}
._17{width:23.314260px;}
._1d{width:25.120621px;}
._1c{width:26.179689px;}
._20{width:28.192316px;}
._18{width:29.635052px;}
._1e{width:31.309283px;}
._1b{width:36.425424px;}
._d{width:39.647625px;}
._c{width:40.820547px;}
._14{width:50.186129px;}
._22{width:100.764416px;}
._21{width:131.797192px;}
._13{width:266.944213px;}
.fca{color:rgb(112,48,160);}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(192,0,0);}
.fc7{color:rgb(44,62,80);}
.fc2{color:rgb(31,73,124);}
.fcb{color:rgb(0,176,80);}
.fc8{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.y5{bottom:-15.479994px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.059615px;}
.ya{bottom:4.319980px;}
.yb{bottom:28.259989px;}
.y9{bottom:45.540000px;}
.y7{bottom:49.859980px;}
.y8{bottom:50.759980px;}
.yb7{bottom:133.019947px;}
.y3b{bottom:134.999946px;}
.ya6{bottom:136.799945px;}
.y85{bottom:138.419945px;}
.yff{bottom:138.599945px;}
.yc5{bottom:155.519938px;}
.y3a{bottom:155.699938px;}
.yfe{bottom:155.879938px;}
.ya5{bottom:157.499937px;}
.y84{bottom:159.119936px;}
.y72{bottom:160.019936px;}
.yfd{bottom:172.979931px;}
.yb6{bottom:174.779930px;}
.ya4{bottom:178.199929px;}
.y39{bottom:179.099928px;}
.y83{bottom:179.819928px;}
.y71{bottom:180.719928px;}
.yfc{bottom:190.259924px;}
.yc4{bottom:193.319923px;}
.yb5{bottom:195.479922px;}
.ya3{bottom:198.899920px;}
.y82{bottom:200.519920px;}
.y70{bottom:201.419919px;}
.yfb{bottom:207.539917px;}
.yb4{bottom:216.179914px;}
.y12f{bottom:218.699913px;}
.y81{bottom:221.219912px;}
.y6f{bottom:222.119911px;}
.yfa{bottom:225.539910px;}
.y48{bottom:232.739907px;}
.y22{bottom:236.519905px;}
.yb3{bottom:236.879905px;}
.y12e{bottom:238.499905px;}
.ya2{bottom:240.659904px;}
.y80{bottom:241.919903px;}
.y6e{bottom:242.819903px;}
.yf9{bottom:246.239902px;}
.y47{bottom:250.019900px;}
.y12d{bottom:255.779898px;}
.yb2{bottom:257.579897px;}
.y7f{bottom:262.619895px;}
.y6d{bottom:263.519895px;}
.yf8{bottom:266.939893px;}
.y46{bottom:267.299893px;}
.y12c{bottom:273.059891px;}
.ya1{bottom:282.419887px;}
.y7e{bottom:283.319887px;}
.y6c{bottom:284.219886px;}
.y45{bottom:284.579886px;}
.yf7{bottom:287.639885px;}
.y12b{bottom:290.339884px;}
.yb1{bottom:299.159880px;}
.y44{bottom:301.859879px;}
.ya0{bottom:303.119879px;}
.y7d{bottom:304.019878px;}
.y6b{bottom:304.919878px;}
.y12a{bottom:307.619877px;}
.yf6{bottom:308.339877px;}
.y9f{bottom:323.819870px;}
.y7c{bottom:324.719870px;}
.y129{bottom:324.899870px;}
.y6a{bottom:325.619870px;}
.yf5{bottom:329.039868px;}
.y38{bottom:332.819867px;}
.yb0{bottom:340.919864px;}
.y128{bottom:341.999863px;}
.y9e{bottom:344.519862px;}
.ydb{bottom:345.419862px;}
.y69{bottom:346.319861px;}
.yf4{bottom:349.739860px;}
.y37{bottom:352.979859px;}
.y21{bottom:353.339859px;}
.y127{bottom:359.279856px;}
.yaf{bottom:361.619855px;}
.y9d{bottom:365.219854px;}
.yda{bottom:366.119854px;}
.y7b{bottom:366.299853px;}
.y68{bottom:367.019853px;}
.yf3{bottom:370.439852px;}
.y36{bottom:373.319851px;}
.y126{bottom:376.559849px;}
.yae{bottom:378.359849px;}
.y9c{bottom:385.919846px;}
.yd9{bottom:386.819845px;}
.y67{bottom:387.719845px;}
.yf2{bottom:391.139844px;}
.y125{bottom:393.839842px;}
.y35{bottom:394.559842px;}
.yc3{bottom:404.459838px;}
.y9b{bottom:406.619837px;}
.yd8{bottom:407.519837px;}
.y7a{bottom:408.059837px;}
.y66{bottom:408.419837px;}
.y124{bottom:411.119836px;}
.y34{bottom:411.659835px;}
.yf1{bottom:411.839835px;}
.yc2{bottom:425.159830px;}
.y9a{bottom:427.319829px;}
.yd7{bottom:428.219829px;}
.y123{bottom:428.399829px;}
.y79{bottom:428.759828px;}
.y33{bottom:428.939828px;}
.y65{bottom:429.119828px;}
.yf0{bottom:432.539827px;}
.y20{bottom:439.559824px;}
.y122{bottom:445.499822px;}
.yc1{bottom:445.859822px;}
.y32{bottom:446.219822px;}
.y99{bottom:448.019821px;}
.yd6{bottom:448.919820px;}
.y78{bottom:449.459820px;}
.y64{bottom:449.819820px;}
.yef{bottom:453.239819px;}
.y121{bottom:462.779815px;}
.y31{bottom:463.499815px;}
.yc0{bottom:466.559813px;}
.y98{bottom:468.539813px;}
.yd5{bottom:469.619812px;}
.y77{bottom:470.159812px;}
.y63{bottom:470.519812px;}
.yee{bottom:473.939810px;}
.y120{bottom:480.059808px;}
.y30{bottom:480.779808px;}
.y1f{bottom:483.299807px;}
.yd4{bottom:490.319804px;}
.y76{bottom:490.859804px;}
.y62{bottom:491.219804px;}
.yed{bottom:494.639802px;}
.y11f{bottom:497.339801px;}
.y2f{bottom:498.059801px;}
.y1e{bottom:498.599801px;}
.ybf{bottom:508.139797px;}
.y97{bottom:510.299796px;}
.yd3{bottom:511.019796px;}
.y75{bottom:511.559795px;}
.y61{bottom:511.919795px;}
.y1d{bottom:513.899794px;}
.y11e{bottom:514.619794px;}
.y2e{bottom:515.159794px;}
.yec{bottom:515.339794px;}
.y1c{bottom:527.939789px;}
.y96{bottom:530.999788px;}
.yd2{bottom:531.539787px;}
.y11d{bottom:531.899787px;}
.y74{bottom:532.259787px;}
.y2d{bottom:532.439787px;}
.y60{bottom:532.619787px;}
.yeb{bottom:536.039786px;}
.y11c{bottom:548.999780px;}
.y2c{bottom:549.719780px;}
.ybe{bottom:549.899780px;}
.y95{bottom:551.699779px;}
.yd1{bottom:552.239779px;}
.y73{bottom:552.959779px;}
.y5f{bottom:553.319779px;}
.yea{bottom:556.739777px;}
.y11b{bottom:566.279773px;}
.y2b{bottom:566.999773px;}
.y1b{bottom:570.599772px;}
.y94{bottom:572.399771px;}
.yd0{bottom:572.939771px;}
.y5e{bottom:574.019770px;}
.ye9{bottom:577.439769px;}
.y11a{bottom:583.559767px;}
.y2a{bottom:584.279766px;}
.ybd{bottom:587.339765px;}
.y93{bottom:593.099763px;}
.ycf{bottom:593.639763px;}
.yad{bottom:593.999762px;}
.y5d{bottom:594.539762px;}
.ye8{bottom:598.139761px;}
.y119{bottom:600.839760px;}
.y29{bottom:601.559759px;}
.y1a{bottom:613.079755px;}
.y92{bottom:613.799754px;}
.yce{bottom:614.339754px;}
.yac{bottom:614.699754px;}
.y5c{bottom:615.239754px;}
.y118{bottom:618.119753px;}
.y28{bottom:618.659753px;}
.ye7{bottom:618.839752px;}
.ycd{bottom:635.039746px;}
.y117{bottom:635.219746px;}
.yab{bottom:635.399746px;}
.y27{bottom:635.939746px;}
.ye6{bottom:639.539744px;}
.y116{bottom:652.499739px;}
.y26{bottom:653.219739px;}
.y19{bottom:655.559738px;}
.ycc{bottom:655.739738px;}
.yaa{bottom:656.099738px;}
.y5b{bottom:656.639737px;}
.ye5{bottom:660.239736px;}
.y115{bottom:669.779732px;}
.y25{bottom:670.499732px;}
.y18{bottom:671.039732px;}
.ycb{bottom:676.439729px;}
.ya9{bottom:676.799729px;}
.y5a{bottom:677.339729px;}
.ye4{bottom:680.939728px;}
.y114{bottom:687.059725px;}
.y24{bottom:687.779725px;}
.y91{bottom:697.139721px;}
.ya8{bottom:697.499721px;}
.y59{bottom:698.039721px;}
.ye3{bottom:701.639719px;}
.y23{bottom:702.179719px;}
.y113{bottom:704.339718px;}
.y17{bottom:704.879718px;}
.y90{bottom:717.839713px;}
.y58{bottom:718.739713px;}
.y112{bottom:721.619711px;}
.ye2{bottom:722.339711px;}
.y16{bottom:737.459705px;}
.y8f{bottom:738.539705px;}
.y111{bottom:738.719705px;}
.ya7{bottom:739.079704px;}
.y57{bottom:739.439704px;}
.ye1{bottom:743.039703px;}
.y110{bottom:755.999698px;}
.y15{bottom:759.239696px;}
.ybc{bottom:759.599696px;}
.y56{bottom:760.139696px;}
.ye0{bottom:763.739695px;}
.y10f{bottom:773.279691px;}
.y14{bottom:779.219688px;}
.yca{bottom:779.939688px;}
.ybb{bottom:780.299688px;}
.y55{bottom:780.839688px;}
.ydf{bottom:784.439686px;}
.y10e{bottom:790.559684px;}
.y13{bottom:796.499681px;}
.yc9{bottom:800.639680px;}
.y8e{bottom:800.999680px;}
.y54{bottom:801.539679px;}
.yde{bottom:805.139678px;}
.y10d{bottom:807.839677px;}
.y12{bottom:813.779674px;}
.yc8{bottom:821.339671px;}
.yba{bottom:821.699671px;}
.y53{bottom:822.239671px;}
.y10c{bottom:825.119670px;}
.ydd{bottom:825.839670px;}
.y11{bottom:830.879668px;}
.yc7{bottom:842.039663px;}
.y10b{bottom:842.219663px;}
.yb9{bottom:842.399663px;}
.y8d{bottom:842.759663px;}
.y52{bottom:842.939663px;}
.ydc{bottom:845.819662px;}
.y10{bottom:848.159661px;}
.y10a{bottom:859.499656px;}
.yb8{bottom:863.099655px;}
.y8c{bottom:863.459655px;}
.y51{bottom:863.639655px;}
.ye{bottom:874.439650px;}
.y109{bottom:876.779649px;}
.yf{bottom:879.659648px;}
.yc6{bottom:883.799646px;}
.y8b{bottom:884.159646px;}
.y50{bottom:884.339646px;}
.y108{bottom:894.059642px;}
.y8a{bottom:904.859638px;}
.y4f{bottom:905.039638px;}
.yd{bottom:910.439636px;}
.y107{bottom:911.339635px;}
.y89{bottom:925.559630px;}
.y4e{bottom:925.739630px;}
.y106{bottom:928.619629px;}
.yc{bottom:931.139628px;}
.y105{bottom:945.719622px;}
.y88{bottom:946.259621px;}
.y4d{bottom:946.439621px;}
.y3c{bottom:959.040000px;}
.y104{bottom:962.999615px;}
.y87{bottom:966.959613px;}
.y4c{bottom:967.139613px;}
.y42{bottom:972.179611px;}
.y103{bottom:980.279608px;}
.y86{bottom:987.659605px;}
.y4b{bottom:987.839605px;}
.y41{bottom:989.279604px;}
.y102{bottom:997.559601px;}
.y40{bottom:1006.559597px;}
.y4a{bottom:1008.539597px;}
.y101{bottom:1014.839594px;}
.y49{bottom:1029.239588px;}
.y100{bottom:1031.939587px;}
.y3f{bottom:1032.839587px;}
.y43{bottom:1047.419581px;}
.y4{bottom:1049.939580px;}
.y3e{bottom:1050.119580px;}
.y6{bottom:1107.539557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:0.720000px;}
.he{height:19.260000px;}
.h5{height:20.520000px;}
.h9{height:26.350302px;}
.h4{height:36.597642px;}
.hc{height:36.624009px;}
.hb{height:39.339828px;}
.h6{height:39.830258px;}
.h8{height:40.501390px;}
.h1{height:41.522679px;}
.hd{height:41.902014px;}
.hf{height:43.536076px;}
.h7{height:48.796855px;}
.h2{height:50.027324px;}
.ha{height:51.467323px;}
.h0{height:1188.000000px;}
.w2{width:4.140000px;}
.w3{width:7.020000px;}
.w1{width:8.100000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:98.999960px;}
.x17{left:100.979960px;}
.x14{left:104.219958px;}
.x1{left:107.999957px;}
.x15{left:115.019954px;}
.xe{left:116.459953px;}
.x13{left:118.799952px;}
.x16{left:120.959990px;}
.x20{left:122.579951px;}
.x7{left:130.319948px;}
.x4{left:133.199947px;}
.x34{left:134.999946px;}
.x11{left:142.018571px;}
.x1a{left:147.599941px;}
.x18{left:157.679937px;}
.x2a{left:172.799943px;}
.x2b{left:224.099853px;}
.x21{left:235.440000px;}
.x1b{left:241.739969px;}
.x1c{left:242.819903px;}
.x22{left:260.099896px;}
.x1d{left:262.799910px;}
.x1f{left:294.659882px;}
.x25{left:297.899881px;}
.x2{left:302.579879px;}
.x1e{left:305.459878px;}
.x29{left:306.540439px;}
.x33{left:337.321224px;}
.x31{left:338.761467px;}
.x2c{left:342.719757px;}
.xf{left:349.019120px;}
.x2e{left:358.198630px;}
.x9{left:363.779854px;}
.x24{left:399.779840px;}
.x8{left:401.400085px;}
.x26{left:408.419837px;}
.x23{left:417.239283px;}
.x12{left:431.458836px;}
.x30{left:453.601407px;}
.xa{left:465.839814px;}
.x5{left:467.099813px;}
.x10{left:472.499041px;}
.xb{left:475.559810px;}
.x27{left:509.759796px;}
.xc{left:544.499782px;}
.xd{left:554.219778px;}
.x2d{left:608.579387px;}
.x2f{left:627.120781px;}
.x32{left:636.300461px;}
.x28{left:683.279170px;}
.x3{left:691.199724px;}
.x6{left:805.500000px;}
@media print{
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030605pt;}
.ls7{letter-spacing:0.030613pt;}
.ls5{letter-spacing:0.055772pt;}
.ls1{letter-spacing:0.061367pt;}
.ls6{letter-spacing:11.398075pt;}
.ls3{letter-spacing:81.466128pt;}
.ls4{letter-spacing:97.496740pt;}
.ls0{letter-spacing:1093.318362pt;}
.ws4{word-spacing:-28.855760pt;}
.ws0{word-spacing:-16.061361pt;}
.ws2{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-8.639997pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-7.760137pt;}
._3{margin-left:-3.725894pt;}
._9{margin-left:-2.815627pt;}
._1{margin-left:-1.380744pt;}
._0{width:1.024788pt;}
._e{width:2.314070pt;}
._5{width:3.956563pt;}
._4{width:4.864304pt;}
._15{width:6.357156pt;}
._10{width:7.948753pt;}
._11{width:8.841246pt;}
._19{width:9.745642pt;}
._b{width:10.699643pt;}
._a{width:11.648501pt;}
._1f{width:12.637045pt;}
._1a{width:13.672980pt;}
._8{width:14.767435pt;}
._12{width:15.818321pt;}
._6{width:16.804435pt;}
._7{width:17.735546pt;}
._f{width:18.710487pt;}
._16{width:19.621894pt;}
._17{width:20.723787pt;}
._1d{width:22.329441pt;}
._1c{width:23.270835pt;}
._20{width:25.059837pt;}
._18{width:26.342269pt;}
._1e{width:27.830474pt;}
._1b{width:32.378155pt;}
._d{width:35.242333pt;}
._c{width:36.284931pt;}
._14{width:44.609893pt;}
._22{width:89.568370pt;}
._21{width:117.153059pt;}
._13{width:237.283745pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.y5{bottom:-13.759994pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.719658pt;}
.ya{bottom:3.839982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.480000pt;}
.y7{bottom:44.319982pt;}
.y8{bottom:45.119982pt;}
.yb7{bottom:118.239953pt;}
.y3b{bottom:119.999952pt;}
.ya6{bottom:121.599951pt;}
.y85{bottom:123.039951pt;}
.yff{bottom:123.199951pt;}
.yc5{bottom:138.239945pt;}
.y3a{bottom:138.399945pt;}
.yfe{bottom:138.559945pt;}
.ya5{bottom:139.999944pt;}
.y84{bottom:141.439943pt;}
.y72{bottom:142.239943pt;}
.yfd{bottom:153.759938pt;}
.yb6{bottom:155.359938pt;}
.ya4{bottom:158.399937pt;}
.y39{bottom:159.199936pt;}
.y83{bottom:159.839936pt;}
.y71{bottom:160.639936pt;}
.yfc{bottom:169.119932pt;}
.yc4{bottom:171.839931pt;}
.yb5{bottom:173.759930pt;}
.ya3{bottom:176.799929pt;}
.y82{bottom:178.239929pt;}
.y70{bottom:179.039928pt;}
.yfb{bottom:184.479926pt;}
.yb4{bottom:192.159923pt;}
.y12f{bottom:194.399922pt;}
.y81{bottom:196.639921pt;}
.y6f{bottom:197.439921pt;}
.yfa{bottom:200.479920pt;}
.y48{bottom:206.879917pt;}
.y22{bottom:210.239916pt;}
.yb3{bottom:210.559916pt;}
.y12e{bottom:211.999915pt;}
.ya2{bottom:213.919914pt;}
.y80{bottom:215.039914pt;}
.y6e{bottom:215.839914pt;}
.yf9{bottom:218.879912pt;}
.y47{bottom:222.239911pt;}
.y12d{bottom:227.359909pt;}
.yb2{bottom:228.959908pt;}
.y7f{bottom:233.439907pt;}
.y6d{bottom:234.239906pt;}
.yf8{bottom:237.279905pt;}
.y46{bottom:237.599905pt;}
.y12c{bottom:242.719903pt;}
.ya1{bottom:251.039900pt;}
.y7e{bottom:251.839899pt;}
.y6c{bottom:252.639899pt;}
.y45{bottom:252.959899pt;}
.yf7{bottom:255.679898pt;}
.y12b{bottom:258.079897pt;}
.yb1{bottom:265.919894pt;}
.y44{bottom:268.319893pt;}
.ya0{bottom:269.439892pt;}
.y7d{bottom:270.239892pt;}
.y6b{bottom:271.039892pt;}
.y12a{bottom:273.439891pt;}
.yf6{bottom:274.079890pt;}
.y9f{bottom:287.839885pt;}
.y7c{bottom:288.639885pt;}
.y129{bottom:288.799884pt;}
.y6a{bottom:289.439884pt;}
.yf5{bottom:292.479883pt;}
.y38{bottom:295.839882pt;}
.yb0{bottom:303.039879pt;}
.y128{bottom:303.999878pt;}
.y9e{bottom:306.239878pt;}
.ydb{bottom:307.039877pt;}
.y69{bottom:307.839877pt;}
.yf4{bottom:310.879876pt;}
.y37{bottom:313.759874pt;}
.y21{bottom:314.079874pt;}
.y127{bottom:319.359872pt;}
.yaf{bottom:321.439871pt;}
.y9d{bottom:324.639870pt;}
.yda{bottom:325.439870pt;}
.y7b{bottom:325.599870pt;}
.y68{bottom:326.239870pt;}
.yf3{bottom:329.279868pt;}
.y36{bottom:331.839867pt;}
.y126{bottom:334.719866pt;}
.yae{bottom:336.319865pt;}
.y9c{bottom:343.039863pt;}
.yd9{bottom:343.839862pt;}
.y67{bottom:344.639862pt;}
.yf2{bottom:347.679861pt;}
.y125{bottom:350.079860pt;}
.y35{bottom:350.719860pt;}
.yc3{bottom:359.519856pt;}
.y9b{bottom:361.439855pt;}
.yd8{bottom:362.239855pt;}
.y7a{bottom:362.719855pt;}
.y66{bottom:363.039855pt;}
.y124{bottom:365.439854pt;}
.y34{bottom:365.919854pt;}
.yf1{bottom:366.079854pt;}
.yc2{bottom:377.919849pt;}
.y9a{bottom:379.839848pt;}
.yd7{bottom:380.639848pt;}
.y123{bottom:380.799848pt;}
.y79{bottom:381.119848pt;}
.y33{bottom:381.279847pt;}
.y65{bottom:381.439847pt;}
.yf0{bottom:384.479846pt;}
.y20{bottom:390.719844pt;}
.y122{bottom:395.999842pt;}
.yc1{bottom:396.319841pt;}
.y32{bottom:396.639841pt;}
.y99{bottom:398.239841pt;}
.yd6{bottom:399.039840pt;}
.y78{bottom:399.519840pt;}
.y64{bottom:399.839840pt;}
.yef{bottom:402.879839pt;}
.y121{bottom:411.359835pt;}
.y31{bottom:411.999835pt;}
.yc0{bottom:414.719834pt;}
.y98{bottom:416.479833pt;}
.yd5{bottom:417.439833pt;}
.y77{bottom:417.919833pt;}
.y63{bottom:418.239833pt;}
.yee{bottom:421.279831pt;}
.y120{bottom:426.719829pt;}
.y30{bottom:427.359829pt;}
.y1f{bottom:429.599828pt;}
.yd4{bottom:435.839826pt;}
.y76{bottom:436.319825pt;}
.y62{bottom:436.639825pt;}
.yed{bottom:439.679824pt;}
.y11f{bottom:442.079823pt;}
.y2f{bottom:442.719823pt;}
.y1e{bottom:443.199823pt;}
.ybf{bottom:451.679819pt;}
.y97{bottom:453.599819pt;}
.yd3{bottom:454.239818pt;}
.y75{bottom:454.719818pt;}
.y61{bottom:455.039818pt;}
.y1d{bottom:456.799817pt;}
.y11e{bottom:457.439817pt;}
.y2e{bottom:457.919817pt;}
.yec{bottom:458.079817pt;}
.y1c{bottom:469.279812pt;}
.y96{bottom:471.999811pt;}
.yd2{bottom:472.479811pt;}
.y11d{bottom:472.799811pt;}
.y74{bottom:473.119811pt;}
.y2d{bottom:473.279811pt;}
.y60{bottom:473.439811pt;}
.yeb{bottom:476.479809pt;}
.y11c{bottom:487.999805pt;}
.y2c{bottom:488.639805pt;}
.ybe{bottom:488.799804pt;}
.y95{bottom:490.399804pt;}
.yd1{bottom:490.879804pt;}
.y73{bottom:491.519803pt;}
.y5f{bottom:491.839803pt;}
.yea{bottom:494.879802pt;}
.y11b{bottom:503.359799pt;}
.y2b{bottom:503.999798pt;}
.y1b{bottom:507.199797pt;}
.y94{bottom:508.799796pt;}
.yd0{bottom:509.279796pt;}
.y5e{bottom:510.239796pt;}
.ye9{bottom:513.279795pt;}
.y11a{bottom:518.719793pt;}
.y2a{bottom:519.359792pt;}
.ybd{bottom:522.079791pt;}
.y93{bottom:527.199789pt;}
.ycf{bottom:527.679789pt;}
.yad{bottom:527.999789pt;}
.y5d{bottom:528.479789pt;}
.ye8{bottom:531.679787pt;}
.y119{bottom:534.079786pt;}
.y29{bottom:534.719786pt;}
.y1a{bottom:544.959782pt;}
.y92{bottom:545.599782pt;}
.yce{bottom:546.079782pt;}
.yac{bottom:546.399781pt;}
.y5c{bottom:546.879781pt;}
.y118{bottom:549.439780pt;}
.y28{bottom:549.919780pt;}
.ye7{bottom:550.079780pt;}
.ycd{bottom:564.479774pt;}
.y117{bottom:564.639774pt;}
.yab{bottom:564.799774pt;}
.y27{bottom:565.279774pt;}
.ye6{bottom:568.479773pt;}
.y116{bottom:579.999768pt;}
.y26{bottom:580.639768pt;}
.y19{bottom:582.719767pt;}
.ycc{bottom:582.879767pt;}
.yaa{bottom:583.199767pt;}
.y5b{bottom:583.679767pt;}
.ye5{bottom:586.879765pt;}
.y115{bottom:595.359762pt;}
.y25{bottom:595.999762pt;}
.y18{bottom:596.479761pt;}
.ycb{bottom:601.279759pt;}
.ya9{bottom:601.599759pt;}
.y5a{bottom:602.079759pt;}
.ye4{bottom:605.279758pt;}
.y114{bottom:610.719756pt;}
.y24{bottom:611.359755pt;}
.y91{bottom:619.679752pt;}
.ya8{bottom:619.999752pt;}
.y59{bottom:620.479752pt;}
.ye3{bottom:623.679751pt;}
.y23{bottom:624.159750pt;}
.y113{bottom:626.079750pt;}
.y17{bottom:626.559749pt;}
.y90{bottom:638.079745pt;}
.y58{bottom:638.879744pt;}
.y112{bottom:641.439743pt;}
.ye2{bottom:642.079743pt;}
.y16{bottom:655.519738pt;}
.y8f{bottom:656.479737pt;}
.y111{bottom:656.639737pt;}
.ya7{bottom:656.959737pt;}
.y57{bottom:657.279737pt;}
.ye1{bottom:660.479736pt;}
.y110{bottom:671.999731pt;}
.y15{bottom:674.879730pt;}
.ybc{bottom:675.199730pt;}
.y56{bottom:675.679730pt;}
.ye0{bottom:678.879728pt;}
.y10f{bottom:687.359725pt;}
.y14{bottom:692.639723pt;}
.yca{bottom:693.279723pt;}
.ybb{bottom:693.599723pt;}
.y55{bottom:694.079722pt;}
.ydf{bottom:697.279721pt;}
.y10e{bottom:702.719719pt;}
.y13{bottom:707.999717pt;}
.yc9{bottom:711.679715pt;}
.y8e{bottom:711.999715pt;}
.y54{bottom:712.479715pt;}
.yde{bottom:715.679714pt;}
.y10d{bottom:718.079713pt;}
.y12{bottom:723.359711pt;}
.yc8{bottom:730.079708pt;}
.yba{bottom:730.399708pt;}
.y53{bottom:730.879708pt;}
.y10c{bottom:733.439707pt;}
.ydd{bottom:734.079706pt;}
.y11{bottom:738.559705pt;}
.yc7{bottom:748.479701pt;}
.y10b{bottom:748.639701pt;}
.yb9{bottom:748.799700pt;}
.y8d{bottom:749.119700pt;}
.y52{bottom:749.279700pt;}
.ydc{bottom:751.839699pt;}
.y10{bottom:753.919698pt;}
.y10a{bottom:763.999694pt;}
.yb8{bottom:767.199693pt;}
.y8c{bottom:767.519693pt;}
.y51{bottom:767.679693pt;}
.ye{bottom:777.279689pt;}
.y109{bottom:779.359688pt;}
.yf{bottom:781.919687pt;}
.yc6{bottom:785.599686pt;}
.y8b{bottom:785.919686pt;}
.y50{bottom:786.079686pt;}
.y108{bottom:794.719682pt;}
.y8a{bottom:804.319678pt;}
.y4f{bottom:804.479678pt;}
.yd{bottom:809.279676pt;}
.y107{bottom:810.079676pt;}
.y89{bottom:822.719671pt;}
.y4e{bottom:822.879671pt;}
.y106{bottom:825.439670pt;}
.yc{bottom:827.679669pt;}
.y105{bottom:840.639664pt;}
.y88{bottom:841.119664pt;}
.y4d{bottom:841.279663pt;}
.y3c{bottom:852.480000pt;}
.y104{bottom:855.999658pt;}
.y87{bottom:859.519656pt;}
.y4c{bottom:859.679656pt;}
.y42{bottom:864.159654pt;}
.y103{bottom:871.359651pt;}
.y86{bottom:877.919649pt;}
.y4b{bottom:878.079649pt;}
.y41{bottom:879.359648pt;}
.y102{bottom:886.719645pt;}
.y40{bottom:894.719642pt;}
.y4a{bottom:896.479641pt;}
.y101{bottom:902.079639pt;}
.y49{bottom:914.879634pt;}
.y100{bottom:917.279633pt;}
.y3f{bottom:918.079633pt;}
.y43{bottom:931.039628pt;}
.y4{bottom:933.279627pt;}
.y3e{bottom:933.439627pt;}
.y6{bottom:984.479606pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.640000pt;}
.he{height:17.120000pt;}
.h5{height:18.240000pt;}
.h9{height:23.422491pt;}
.h4{height:32.531237pt;}
.hc{height:32.554674pt;}
.hb{height:34.968736pt;}
.h6{height:35.404673pt;}
.h8{height:36.001236pt;}
.h1{height:36.909048pt;}
.hd{height:37.246235pt;}
.hf{height:38.698735pt;}
.h7{height:43.374983pt;}
.h2{height:44.468732pt;}
.ha{height:45.748732pt;}
.h0{height:1056.000000pt;}
.w2{width:3.680000pt;}
.w3{width:6.240000pt;}
.w1{width:7.200000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:87.999965pt;}
.x17{left:89.759964pt;}
.x14{left:92.639963pt;}
.x1{left:95.999962pt;}
.x15{left:102.239959pt;}
.xe{left:103.519959pt;}
.x13{left:105.599958pt;}
.x16{left:107.519991pt;}
.x20{left:108.959956pt;}
.x7{left:115.839954pt;}
.x4{left:118.399953pt;}
.x34{left:119.999952pt;}
.x11{left:126.238730pt;}
.x1a{left:131.199948pt;}
.x18{left:140.159944pt;}
.x2a{left:153.599950pt;}
.x2b{left:199.199869pt;}
.x21{left:209.280000pt;}
.x1b{left:214.879972pt;}
.x1c{left:215.839914pt;}
.x22{left:231.199908pt;}
.x1d{left:233.599920pt;}
.x1f{left:261.919895pt;}
.x25{left:264.799894pt;}
.x2{left:268.959892pt;}
.x1e{left:271.519891pt;}
.x29{left:272.480390pt;}
.x33{left:299.841088pt;}
.x31{left:301.121304pt;}
.x2c{left:304.639784pt;}
.xf{left:310.239218pt;}
.x2e{left:318.398782pt;}
.x9{left:323.359871pt;}
.x24{left:355.359858pt;}
.x8{left:356.800076pt;}
.x26{left:363.039855pt;}
.x23{left:370.879363pt;}
.x12{left:383.518965pt;}
.x30{left:403.201251pt;}
.xa{left:414.079834pt;}
.x5{left:415.199834pt;}
.x10{left:419.999148pt;}
.xb{left:422.719831pt;}
.x27{left:453.119819pt;}
.xc{left:483.999806pt;}
.xd{left:492.639803pt;}
.x2d{left:540.959455pt;}
.x2f{left:557.440695pt;}
.x32{left:565.600410pt;}
.x28{left:607.359263pt;}
.x3{left:614.399754pt;}
.x6{left:716.000000pt;}
}




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