
    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_f7867a2244caec62bcb781e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_50115c62a87dfde224aa1f44.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_108d6181cdd1174fe120302d.woff2')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_98212c88285c1b620b8b05b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e77c7754331178242611d009.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_07cee1aa11984d1a95d09ce1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9529ce4e5e4ad80dd507ffb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.763672;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_957a4077d65c96d7f2dcecf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717773;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_440517af8c3e15752d1daf08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_e32d4a3eea79704c1022e18d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895508;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_21cc464457fa1be4b7c9131d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a29d488e8bae85ea828f658f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c6865206f0204f0d1e9dd480.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f8b2be5319f160ba69ee67ef.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5caf9e6973c991da0e31f978.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c5199c32a6e18b3de070fd28.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.731934;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:ff13;src:url('chunks/assets/font_761122d560ff5842fb9834de.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000022px;}
.ls8{letter-spacing:8.200195px;}
.ls5{letter-spacing:965.012119px;}
.ls3{letter-spacing:1973.820733px;}
.ls4{letter-spacing:2080.801204px;}
.ls1{letter-spacing:2247.898858px;}
.ls6{letter-spacing:2270.820733px;}
.ls7{letter-spacing:2274.547295px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-24.916992px;}
.ws1{word-spacing:-16.669921px;}
.ws0{word-spacing:-16.611328px;}
.ws2{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-5.102059px;}
._2{margin-left:-4.096882px;}
._1{margin-left:-2.079572px;}
._0{margin-left:-1.024215px;}
._5{width:1.194650px;}
._6{width:2.318005px;}
._4{width:351.785526px;}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(61,133,198);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(109,158,235);}
.fc6{color:rgb(153,153,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(102,102,102);}
.fs4{font-size:59.999999px;}
.fs5{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yb0{bottom:4.124993px;}
.y3{bottom:4.499999px;}
.y32{bottom:4.500001px;}
.y9f{bottom:4.599600px;}
.y8e{bottom:4.599613px;}
.yaf{bottom:24.266228px;}
.y9e{bottom:25.548698px;}
.y2{bottom:26.472644px;}
.yf4{bottom:26.472655px;}
.y31{bottom:26.472657px;}
.yae{bottom:44.408198px;}
.y9d{bottom:45.690308px;}
.y5d{bottom:57.224850px;}
.y2f{bottom:57.224940px;}
.ybf{bottom:57.225225px;}
.yf2{bottom:57.225585px;}
.yad{bottom:64.549433px;}
.ybe{bottom:64.549808px;}
.y9c{bottom:65.831543px;}
.ybd{bottom:84.691043px;}
.yac{bottom:84.691403px;}
.y9b{bottom:85.973513px;}
.y2e{bottom:93.792118px;}
.yb3{bottom:103.202640px;}
.ybc{bottom:104.832998px;}
.yab{bottom:104.833013px;}
.y9a{bottom:106.115108px;}
.y2d{bottom:112.477755px;}
.y8a{bottom:120.703124px;}
.yaa{bottom:124.974248px;}
.ybb{bottom:124.974608px;}
.y99{bottom:126.256343px;}
.y2c{bottom:132.619359px;}
.yf1{bottom:139.187993px;}
.y89{bottom:139.388669px;}
.yba{bottom:145.115843px;}
.ya9{bottom:145.116203px;}
.y98{bottom:146.398313px;}
.y2b{bottom:153.235572px;}
.yf0{bottom:159.329596px;}
.y88{bottom:159.529904px;}
.ya8{bottom:165.257813px;}
.y97{bottom:166.539908px;}
.y2a{bottom:173.809300px;}
.yef{bottom:179.471198px;}
.y87{bottom:179.671869px;}
.ya7{bottom:185.399048px;}
.yb9{bottom:185.399408px;}
.y96{bottom:186.681143px;}
.y29{bottom:192.494847px;}
.yee{bottom:199.612793px;}
.y86{bottom:199.813473px;}
.yb8{bottom:205.540643px;}
.ya6{bottom:205.541018px;}
.y95{bottom:206.823113px;}
.y28{bottom:213.111059px;}
.yed{bottom:219.754028px;}
.y85{bottom:219.954709px;}
.y119{bottom:221.563470px;}
.ya5{bottom:225.682613px;}
.y94{bottom:226.964723px;}
.y27{bottom:233.684788px;}
.yec{bottom:239.895998px;}
.y84{bottom:240.096676px;}
.y118{bottom:242.986815px;}
.ya4{bottom:245.823848px;}
.yb7{bottom:245.824208px;}
.y93{bottom:247.105958px;}
.y26{bottom:251.995243px;}
.yeb{bottom:260.037599px;}
.y83{bottom:260.238278px;}
.y117{bottom:264.410160px;}
.yb6{bottom:265.965443px;}
.ya3{bottom:265.965818px;}
.y92{bottom:267.247921px;}
.y5c{bottom:272.642024px;}
.y25{bottom:273.910943px;}
.yea{bottom:280.178834px;}
.y82{bottom:280.379513px;}
.yb5{bottom:286.107413px;}
.y91{bottom:287.389522px;}
.y5b{bottom:290.952764px;}
.yb2{bottom:293.743656px;}
.y24{bottom:297.073793px;}
.ye9{bottom:300.320799px;}
.y81{bottom:300.521484px;}
.y116{bottom:303.358893px;}
.yb4{bottom:306.249023px;}
.y90{bottom:307.530758px;}
.y5a{bottom:309.263129px;}
.y23{bottom:317.690010px;}
.ye8{bottom:320.462403px;}
.y80{bottom:320.663088px;}
.y115{bottom:323.500493px;}
.y59{bottom:328.323664px;}
.y22{bottom:338.263738px;}
.ye7{bottom:340.603639px;}
.y7f{bottom:340.804324px;}
.y114{bottom:343.642096px;}
.y58{bottom:354.796324px;}
.y21{bottom:356.574373px;}
.ye6{bottom:360.745606px;}
.y7e{bottom:360.946291px;}
.y129{bottom:361.452390px;}
.y113{bottom:363.783698px;}
.y20{bottom:374.884827px;}
.ye5{bottom:380.887208px;}
.y7d{bottom:381.087893px;}
.y57{bottom:381.268984px;}
.y128{bottom:382.875735px;}
.y1f{bottom:393.195375px;}
.y7c{bottom:400.854494px;}
.ye4{bottom:401.028449px;}
.y112{bottom:401.925288px;}
.y127{bottom:404.299080px;}
.y56{bottom:407.741644px;}
.y1e{bottom:411.506013px;}
.ye3{bottom:421.170414px;}
.y111{bottom:422.066888px;}
.y126{bottom:425.722410px;}
.y7b{bottom:428.314454px;}
.yb1{bottom:429.218264px;}
.y1d{bottom:429.816468px;}
.y55{bottom:434.214289px;}
.ye2{bottom:441.312018px;}
.y110{bottom:442.208491px;}
.ya2{bottom:443.778810px;}
.y125{bottom:447.145755px;}
.y1c{bottom:448.502108px;}
.y54{bottom:460.686949px;}
.ye1{bottom:461.453254px;}
.y10f{bottom:462.350093px;}
.y124{bottom:468.569085px;}
.y1b{bottom:468.643613px;}
.ye0{bottom:481.595221px;}
.y7a{bottom:484.674683px;}
.y53{bottom:488.179133px;}
.y1a{bottom:488.785223px;}
.y123{bottom:489.992430px;}
.y10e{bottom:500.491703px;}
.ydf{bottom:501.736823px;}
.y79{bottom:504.816647px;}
.y19{bottom:508.926908px;}
.y122{bottom:511.415775px;}
.y52{bottom:512.117609px;}
.y10d{bottom:520.633306px;}
.yde{bottom:521.878054px;}
.y78{bottom:524.958248px;}
.y18{bottom:529.068473px;}
.y51{bottom:530.428348px;}
.y121{bottom:532.839105px;}
.y10c{bottom:540.774908px;}
.ydd{bottom:542.020021px;}
.y77{bottom:545.099483px;}
.y50{bottom:548.738714px;}
.y17{bottom:549.210023px;}
.y120{bottom:554.262450px;}
.ydc{bottom:562.161623px;}
.y76{bottom:565.241448px;}
.y4f{bottom:567.049259px;}
.y16{bottom:569.351708px;}
.y12c{bottom:572.311530px;}
.y11f{bottom:575.685073px;}
.y10b{bottom:578.916503px;}
.ydb{bottom:582.302858px;}
.y4e{bottom:585.359983px;}
.y75{bottom:585.383048px;}
.y15{bottom:589.493268px;}
.y12b{bottom:593.733414px;}
.ya1{bottom:598.536621px;}
.y10a{bottom:599.058099px;}
.yda{bottom:602.444828px;}
.y4d{bottom:603.670349px;}
.y74{bottom:605.524286px;}
.y14{bottom:609.634823px;}
.y109{bottom:619.199703px;}
.y4c{bottom:621.980893px;}
.yd9{bottom:622.586423px;}
.y73{bottom:625.666253px;}
.y13{bottom:629.776523px;}
.y12d{bottom:634.330093px;}
.y108{bottom:639.341303px;}
.y4b{bottom:640.291634px;}
.yd8{bottom:642.727653px;}
.y72{bottom:645.432493px;}
.y12{bottom:649.543033px;}
.y4a{bottom:658.601983px;}
.y107{bottom:659.482906px;}
.yd7{bottom:662.869622px;}
.y11{bottom:667.853624px;}
.y71{bottom:672.892829px;}
.y49{bottom:676.912543px;}
.y106{bottom:679.624508px;}
.yd6{bottom:683.011223px;}
.y10{bottom:686.164169px;}
.y48{bottom:695.223269px;}
.yd5{bottom:703.152458px;}
.yf{bottom:704.474669px;}
.y47{bottom:713.533633px;}
.y105{bottom:717.766118px;}
.yd4{bottom:723.294437px;}
.ye{bottom:725.474673px;}
.y70{bottom:728.878048px;}
.ya0{bottom:729.510869px;}
.y46{bottom:731.844179px;}
.y104{bottom:737.907721px;}
.yd3{bottom:743.436038px;}
.y8f{bottom:744.071415px;}
.y6f{bottom:747.563958px;}
.y45{bottom:750.154903px;}
.y103{bottom:758.049323px;}
.yd{bottom:758.227109px;}
.yd2{bottom:763.577273px;}
.y6e{bottom:767.705378px;}
.y44{bottom:768.465269px;}
.yd1{bottom:783.719237px;}
.y43{bottom:786.775814px;}
.y6d{bottom:787.846796px;}
.y102{bottom:798.964604px;}
.yc{bottom:801.073797px;}
.yd0{bottom:803.860838px;}
.y42{bottom:806.855903px;}
.y6c{bottom:807.988763px;}
.ycf{bottom:824.002073px;}
.y6b{bottom:828.130191px;}
.y41{bottom:834.186772px;}
.yb{bottom:843.920474px;}
.yce{bottom:844.144043px;}
.y6a{bottom:848.271613px;}
.y40{bottom:852.533759px;}
.y101{bottom:858.559570px;}
.ycd{bottom:863.910283px;}
.y69{bottom:868.413586px;}
.y3f{bottom:870.844304px;}
.ycc{bottom:882.221191px;}
.ya{bottom:886.767179px;}
.y68{bottom:888.554993px;}
.y3e{bottom:889.529843px;}
.y100{bottom:889.603260px;}
.ycb{bottom:900.531737px;}
.y67{bottom:908.696409px;}
.y3d{bottom:909.671631px;}
.yff{bottom:909.744873px;}
.yca{bottom:918.841918px;}
.y9{bottom:927.774011px;}
.y66{bottom:928.838382px;}
.y3c{bottom:929.813048px;}
.yfe{bottom:929.885739px;}
.yc9{bottom:937.152839px;}
.y8d{bottom:943.769166px;}
.y65{bottom:948.979797px;}
.y3b{bottom:949.954653px;}
.yfd{bottom:950.028073px;}
.yc8{bottom:955.463383px;}
.y8{bottom:961.049421px;}
.y64{bottom:969.121217px;}
.y3a{bottom:970.096429px;}
.yfc{bottom:970.169677px;}
.yc7{bottom:974.148923px;}
.y63{bottom:989.263185px;}
.y39{bottom:990.237853px;}
.yfb{bottom:990.310549px;}
.yc6{bottom:994.290160px;}
.y7{bottom:995.546493px;}
.y62{bottom:1009.404602px;}
.y38{bottom:1010.379455px;}
.yfa{bottom:1010.452881px;}
.yc5{bottom:1014.432130px;}
.y11e{bottom:1024.659670px;}
.y61{bottom:1029.171387px;}
.y6{bottom:1030.043563px;}
.y37{bottom:1030.521148px;}
.yf9{bottom:1030.594483px;}
.yc4{bottom:1034.573731px;}
.y12a{bottom:1046.083008px;}
.y11d{bottom:1046.083009px;}
.yf8{bottom:1050.735352px;}
.y36{bottom:1052.057280px;}
.yc3{bottom:1054.714966px;}
.y60{bottom:1056.631164px;}
.y5{bottom:1064.540634px;}
.y11c{bottom:1067.506348px;}
.yf7{bottom:1070.877685px;}
.y8c{bottom:1072.218384px;}
.yc2{bottom:1074.481933px;}
.y35{bottom:1075.995667px;}
.y11b{bottom:1088.929687px;}
.yf6{bottom:1091.019288px;}
.y34{bottom:1094.306214px;}
.y4{bottom:1099.037704px;}
.yc1{bottom:1101.941528px;}
.y8b{bottom:1101.941894px;}
.y11a{bottom:1110.353028px;}
.yf5{bottom:1111.160156px;}
.y33{bottom:1112.616852px;}
.y5f{bottom:1112.616943px;}
.yf3{bottom:1127.176758px;}
.yc0{bottom:1127.177124px;}
.y1{bottom:1127.177353px;}
.y30{bottom:1127.177398px;}
.y5e{bottom:1127.177490px;}
.hb{height:39.990233px;}
.h8{height:43.066405px;}
.h21{height:43.095702px;}
.h10{height:43.857421px;}
.h19{height:43.989259px;}
.hd{height:44.999999px;}
.ha{height:45.729493px;}
.h22{height:46.816405px;}
.h9{height:47.373048px;}
.h18{height:47.920900px;}
.h2{height:49.886719px;}
.h3{height:51.679688px;}
.h11{height:52.277344px;}
.hc{height:54.000000px;}
.h7{height:62.999998px;}
.h14{height:70.224609px;}
.h5{height:72.000002px;}
.h20{height:74.906252px;}
.h4{height:79.980467px;}
.h23{height:84.674565px;}
.he{height:84.674925px;}
.h12{height:84.675105px;}
.h15{height:84.675300px;}
.h6{height:89.999998px;}
.h16{height:123.849609px;}
.h1a{height:127.224609px;}
.h1c{height:131.724609px;}
.h13{height:135.822510px;}
.hf{height:135.822602px;}
.h1{height:135.822647px;}
.h1e{height:135.822876px;}
.h1f{height:135.823242px;}
.h1b{height:281.982420px;}
.h1d{height:322.265625px;}
.h17{height:323.547360px;}
.h0{height:1263.000000px;}
.w2{width:105.750012px;}
.w4{width:108.000012px;}
.w5{width:582.750000px;}
.w3{width:585.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:7.875000px;}
.x7{left:101.250000px;}
.xa{left:103.500000px;}
.x2{left:106.274997px;}
.x5{left:133.274997px;}
.x3{left:190.500703px;}
.x8{left:212.024986px;}
.xb{left:214.274986px;}
.x4{left:280.649997px;}
.xc{left:325.649997px;}
.x6{left:332.399997px;}
.xd{left:443.774997px;}
.xf{left:764.399997px;}
.xe{left:781.274997px;}
.x1{left:786.638390px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000020pt;}
.ls8{letter-spacing:7.289062pt;}
.ls5{letter-spacing:857.788550pt;}
.ls3{letter-spacing:1754.507318pt;}
.ls4{letter-spacing:1849.601070pt;}
.ls1{letter-spacing:1998.132318pt;}
.ls6{letter-spacing:2018.507318pt;}
.ls7{letter-spacing:2021.819818pt;}
.ws4{word-spacing:-22.148438pt;}
.ws1{word-spacing:-14.817708pt;}
.ws0{word-spacing:-14.765625pt;}
.ws2{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-4.535164pt;}
._2{margin-left:-3.641673pt;}
._1{margin-left:-1.848509pt;}
._0{margin-left:-0.910414pt;}
._5{width:1.061911pt;}
._6{width:2.060448pt;}
._4{width:312.698245pt;}
.fs4{font-size:53.333332pt;}
.fs5{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:3.666661pt;}
.y3{bottom:3.999999pt;}
.y32{bottom:4.000001pt;}
.y9f{bottom:4.088533pt;}
.y8e{bottom:4.088545pt;}
.yaf{bottom:21.569981pt;}
.y9e{bottom:22.709954pt;}
.y2{bottom:23.531239pt;}
.yf4{bottom:23.531249pt;}
.y31{bottom:23.531251pt;}
.yae{bottom:39.473954pt;}
.y9d{bottom:40.613607pt;}
.y5d{bottom:50.866533pt;}
.y2f{bottom:50.866613pt;}
.ybf{bottom:50.866867pt;}
.yf2{bottom:50.867187pt;}
.yad{bottom:57.377274pt;}
.ybe{bottom:57.377607pt;}
.y9c{bottom:58.516927pt;}
.ybd{bottom:75.280927pt;}
.yac{bottom:75.281247pt;}
.y9b{bottom:76.420901pt;}
.y2e{bottom:83.370772pt;}
.yb3{bottom:91.735680pt;}
.ybc{bottom:93.184887pt;}
.yab{bottom:93.184901pt;}
.y9a{bottom:94.324541pt;}
.y2d{bottom:99.980226pt;}
.y8a{bottom:107.291665pt;}
.yaa{bottom:111.088221pt;}
.ybb{bottom:111.088540pt;}
.y99{bottom:112.227861pt;}
.y2c{bottom:117.883874pt;}
.yf1{bottom:123.722661pt;}
.y89{bottom:123.901039pt;}
.yba{bottom:128.991860pt;}
.ya9{bottom:128.992181pt;}
.y98{bottom:130.131834pt;}
.y2b{bottom:136.209397pt;}
.yf0{bottom:141.626308pt;}
.y88{bottom:141.804359pt;}
.ya8{bottom:146.895834pt;}
.y97{bottom:148.035474pt;}
.y2a{bottom:154.497155pt;}
.yef{bottom:159.529954pt;}
.y87{bottom:159.708328pt;}
.ya7{bottom:164.799154pt;}
.yb9{bottom:164.799474pt;}
.y96{bottom:165.938794pt;}
.y29{bottom:171.106530pt;}
.yee{bottom:177.433594pt;}
.y86{bottom:177.611976pt;}
.yb8{bottom:182.702794pt;}
.ya6{bottom:182.703127pt;}
.y95{bottom:183.842767pt;}
.y28{bottom:189.432052pt;}
.yed{bottom:195.336914pt;}
.y85{bottom:195.515297pt;}
.y119{bottom:196.945307pt;}
.ya5{bottom:200.606767pt;}
.y94{bottom:201.746421pt;}
.y27{bottom:207.719812pt;}
.yec{bottom:213.240887pt;}
.y84{bottom:213.419268pt;}
.y118{bottom:215.988280pt;}
.ya4{bottom:218.510087pt;}
.yb7{bottom:218.510407pt;}
.y93{bottom:219.649741pt;}
.y26{bottom:223.995772pt;}
.yeb{bottom:231.144532pt;}
.y83{bottom:231.322914pt;}
.y117{bottom:235.031253pt;}
.yb6{bottom:236.413727pt;}
.ya3{bottom:236.414061pt;}
.y92{bottom:237.553707pt;}
.y5c{bottom:242.348465pt;}
.y25{bottom:243.476394pt;}
.yea{bottom:249.047852pt;}
.y82{bottom:249.226234pt;}
.yb5{bottom:254.317700pt;}
.y91{bottom:255.457352pt;}
.y5b{bottom:258.624679pt;}
.yb2{bottom:261.105472pt;}
.y24{bottom:264.065594pt;}
.ye9{bottom:266.951821pt;}
.y81{bottom:267.130208pt;}
.y116{bottom:269.652349pt;}
.yb4{bottom:272.221354pt;}
.y90{bottom:273.360674pt;}
.y5a{bottom:274.900559pt;}
.y23{bottom:282.391120pt;}
.ye8{bottom:284.855469pt;}
.y80{bottom:285.033856pt;}
.y115{bottom:287.555994pt;}
.y59{bottom:291.843257pt;}
.y22{bottom:300.678879pt;}
.ye7{bottom:302.758790pt;}
.y7f{bottom:302.937177pt;}
.y114{bottom:305.459641pt;}
.y58{bottom:315.374510pt;}
.y21{bottom:316.954999pt;}
.ye6{bottom:320.662761pt;}
.y7e{bottom:320.841148pt;}
.y129{bottom:321.291013pt;}
.y113{bottom:323.363287pt;}
.y20{bottom:333.230957pt;}
.ye5{bottom:338.566407pt;}
.y7d{bottom:338.744794pt;}
.y57{bottom:338.905763pt;}
.y128{bottom:340.333987pt;}
.y1f{bottom:349.507000pt;}
.y7c{bottom:356.315105pt;}
.ye4{bottom:356.469732pt;}
.y112{bottom:357.266922pt;}
.y127{bottom:359.376960pt;}
.y56{bottom:362.437017pt;}
.y1e{bottom:365.783123pt;}
.ye3{bottom:374.373701pt;}
.y111{bottom:375.170567pt;}
.y126{bottom:378.419920pt;}
.y7b{bottom:380.723959pt;}
.yb1{bottom:381.527345pt;}
.y1d{bottom:382.059083pt;}
.y55{bottom:385.968257pt;}
.ye2{bottom:392.277349pt;}
.y110{bottom:393.074214pt;}
.ya2{bottom:394.470053pt;}
.y125{bottom:397.462893pt;}
.y1c{bottom:398.668541pt;}
.y54{bottom:409.499510pt;}
.ye1{bottom:410.180670pt;}
.y10f{bottom:410.977860pt;}
.y124{bottom:416.505853pt;}
.y1b{bottom:416.572100pt;}
.ye0{bottom:428.084641pt;}
.y7a{bottom:430.821940pt;}
.y53{bottom:433.937007pt;}
.y1a{bottom:434.475754pt;}
.y123{bottom:435.548827pt;}
.y10e{bottom:444.881514pt;}
.ydf{bottom:445.988287pt;}
.y79{bottom:448.725909pt;}
.y19{bottom:452.379474pt;}
.y122{bottom:454.591800pt;}
.y52{bottom:455.215652pt;}
.y10d{bottom:462.785161pt;}
.yde{bottom:463.891603pt;}
.y78{bottom:466.629554pt;}
.y18{bottom:470.283087pt;}
.y51{bottom:471.491865pt;}
.y121{bottom:473.634760pt;}
.y10c{bottom:480.688807pt;}
.ydd{bottom:481.795574pt;}
.y77{bottom:484.532874pt;}
.y50{bottom:487.767745pt;}
.y17{bottom:488.186687pt;}
.y120{bottom:492.677733pt;}
.ydc{bottom:499.699220pt;}
.y76{bottom:502.436843pt;}
.y4f{bottom:504.043785pt;}
.y16{bottom:506.090407pt;}
.y12c{bottom:508.721360pt;}
.y11f{bottom:511.720065pt;}
.y10b{bottom:514.592447pt;}
.ydb{bottom:517.602540pt;}
.y4e{bottom:520.319985pt;}
.y75{bottom:520.340487pt;}
.y15{bottom:523.994016pt;}
.y12b{bottom:527.763035pt;}
.ya1{bottom:532.032552pt;}
.y10a{bottom:532.496088pt;}
.yda{bottom:535.506514pt;}
.y4d{bottom:536.595865pt;}
.y74{bottom:538.243809pt;}
.y14{bottom:541.897620pt;}
.y109{bottom:550.399736pt;}
.y4c{bottom:552.871905pt;}
.yd9{bottom:553.410154pt;}
.y73{bottom:556.147780pt;}
.y13{bottom:559.801354pt;}
.y12d{bottom:563.848972pt;}
.y108{bottom:568.303381pt;}
.y4b{bottom:569.148119pt;}
.yd8{bottom:571.313469pt;}
.y72{bottom:573.717772pt;}
.y12{bottom:577.371585pt;}
.y4a{bottom:585.423985pt;}
.y107{bottom:586.207028pt;}
.yd7{bottom:589.217442pt;}
.y11{bottom:593.647665pt;}
.y71{bottom:598.126959pt;}
.y49{bottom:601.700039pt;}
.y106{bottom:604.110674pt;}
.yd6{bottom:607.121087pt;}
.y10{bottom:609.923705pt;}
.y48{bottom:617.976239pt;}
.yd5{bottom:625.024407pt;}
.yf{bottom:626.199705pt;}
.y47{bottom:634.252119pt;}
.y105{bottom:638.014327pt;}
.yd4{bottom:642.928389pt;}
.ye{bottom:644.866376pt;}
.y70{bottom:647.891599pt;}
.ya0{bottom:648.454105pt;}
.y46{bottom:650.528159pt;}
.y104{bottom:655.917974pt;}
.yd3{bottom:660.832034pt;}
.y8f{bottom:661.396813pt;}
.y6f{bottom:664.501296pt;}
.y45{bottom:666.804359pt;}
.y103{bottom:673.821620pt;}
.yd{bottom:673.979653pt;}
.yd2{bottom:678.735354pt;}
.y6e{bottom:682.404781pt;}
.y44{bottom:683.080239pt;}
.yd1{bottom:696.639322pt;}
.y43{bottom:699.356279pt;}
.y6d{bottom:700.308263pt;}
.y102{bottom:710.190759pt;}
.yc{bottom:712.065598pt;}
.yd0{bottom:714.542967pt;}
.y42{bottom:717.205247pt;}
.y6c{bottom:718.212234pt;}
.ycf{bottom:732.446287pt;}
.y6b{bottom:736.115725pt;}
.y41{bottom:741.499353pt;}
.yb{bottom:750.151533pt;}
.yce{bottom:750.350260pt;}
.y6a{bottom:754.019211pt;}
.y40{bottom:757.807785pt;}
.y101{bottom:763.164063pt;}
.ycd{bottom:767.920252pt;}
.y69{bottom:771.923187pt;}
.y3f{bottom:774.083825pt;}
.ycc{bottom:784.196614pt;}
.ya{bottom:788.237493pt;}
.y68{bottom:789.826660pt;}
.y3e{bottom:790.693194pt;}
.y100{bottom:790.758453pt;}
.ycb{bottom:800.472655pt;}
.y67{bottom:807.730141pt;}
.y3d{bottom:808.597005pt;}
.yff{bottom:808.662110pt;}
.yca{bottom:816.748372pt;}
.y9{bottom:824.688009pt;}
.y66{bottom:825.634117pt;}
.y3c{bottom:826.500487pt;}
.yfe{bottom:826.565101pt;}
.yc9{bottom:833.024745pt;}
.y8d{bottom:838.905925pt;}
.y65{bottom:843.537597pt;}
.y3b{bottom:844.404136pt;}
.yfd{bottom:844.469399pt;}
.yc8{bottom:849.300785pt;}
.y8{bottom:854.266152pt;}
.y64{bottom:861.441082pt;}
.y3a{bottom:862.307937pt;}
.yfc{bottom:862.373046pt;}
.yc7{bottom:865.910154pt;}
.y63{bottom:879.345053pt;}
.y39{bottom:880.211425pt;}
.yfb{bottom:880.276044pt;}
.yc6{bottom:883.813476pt;}
.y7{bottom:884.930216pt;}
.y62{bottom:897.248535pt;}
.y38{bottom:898.115071pt;}
.yfa{bottom:898.180339pt;}
.yc5{bottom:901.717449pt;}
.y11e{bottom:910.808596pt;}
.y61{bottom:914.819011pt;}
.y6{bottom:915.594279pt;}
.y37{bottom:916.018798pt;}
.yf9{bottom:916.083985pt;}
.yc4{bottom:919.621094pt;}
.y12a{bottom:929.851563pt;}
.y11d{bottom:929.851564pt;}
.yf8{bottom:933.986979pt;}
.y36{bottom:935.162027pt;}
.yc3{bottom:937.524414pt;}
.y60{bottom:939.227702pt;}
.y5{bottom:946.258341pt;}
.y11c{bottom:948.894532pt;}
.yf7{bottom:951.891276pt;}
.y8c{bottom:953.083008pt;}
.yc2{bottom:955.095052pt;}
.y35{bottom:956.440593pt;}
.y11b{bottom:967.937500pt;}
.yf6{bottom:969.794923pt;}
.y34{bottom:972.716635pt;}
.y4{bottom:976.922404pt;}
.yc1{bottom:979.503580pt;}
.y8b{bottom:979.503906pt;}
.y11a{bottom:986.980469pt;}
.yf5{bottom:987.697917pt;}
.y33{bottom:988.992757pt;}
.y5f{bottom:988.992839pt;}
.yf3{bottom:1001.934896pt;}
.yc0{bottom:1001.935221pt;}
.y1{bottom:1001.935425pt;}
.y30{bottom:1001.935465pt;}
.y5e{bottom:1001.935547pt;}
.hb{height:35.546874pt;}
.h8{height:38.281249pt;}
.h21{height:38.307291pt;}
.h10{height:38.984374pt;}
.h19{height:39.101563pt;}
.hd{height:39.999999pt;}
.ha{height:40.648438pt;}
.h22{height:41.614582pt;}
.h9{height:42.109376pt;}
.h18{height:42.596355pt;}
.h2{height:44.343750pt;}
.h3{height:45.937500pt;}
.h11{height:46.468750pt;}
.hc{height:48.000000pt;}
.h7{height:55.999998pt;}
.h14{height:62.421875pt;}
.h5{height:64.000002pt;}
.h20{height:66.583335pt;}
.h4{height:71.093748pt;}
.h23{height:75.266280pt;}
.he{height:75.266600pt;}
.h12{height:75.266760pt;}
.h15{height:75.266933pt;}
.h6{height:79.999998pt;}
.h16{height:110.088541pt;}
.h1a{height:113.088541pt;}
.h1c{height:117.088541pt;}
.h13{height:120.731120pt;}
.hf{height:120.731201pt;}
.h1{height:120.731241pt;}
.h1e{height:120.731445pt;}
.h1f{height:120.731771pt;}
.h1b{height:250.651040pt;}
.h1d{height:286.458333pt;}
.h17{height:287.597653pt;}
.h0{height:1122.666667pt;}
.w2{width:94.000011pt;}
.w4{width:96.000011pt;}
.w5{width:518.000000pt;}
.w3{width:520.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:7.000000pt;}
.x7{left:90.000000pt;}
.xa{left:92.000000pt;}
.x2{left:94.466664pt;}
.x5{left:118.466664pt;}
.x3{left:169.333958pt;}
.x8{left:188.466655pt;}
.xb{left:190.466655pt;}
.x4{left:249.466664pt;}
.xc{left:289.466664pt;}
.x6{left:295.466664pt;}
.xd{left:394.466664pt;}
.xf{left:679.466664pt;}
.xe{left:694.466664pt;}
.x1{left:699.234124pt;}
}




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