
    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_ef09c4f72b5f58de12d5286c.woff2')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_1738a6813f7905bc9c3f399c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_0f6830ce85f3220feae42be6.woff2')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_bd568183e0f31062fae5b3d9.woff2')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_281e73beddeb150d123bf821.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eae22035ae6a5f6e17a3d004.woff2')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_c3c5ad411e65bbde23f21d49.woff2')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_12aec79f1da0604bf399ecbf.woff2')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_e3cd2c2bb56a745d21a23625.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.774414;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_2a3283216ec09f96733a7781.woff2')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;}
.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);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,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);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.033343px;}
.lsb{letter-spacing:0.034157px;}
.ls2{letter-spacing:0.034431px;}
.lsc{letter-spacing:0.035698px;}
.lsa{letter-spacing:0.036859px;}
.ls6{letter-spacing:0.062787px;}
.ls8{letter-spacing:0.200640px;}
.ls1{letter-spacing:0.286367px;}
.ls3{letter-spacing:0.319697px;}
.lsd{letter-spacing:0.755820px;}
.lse{letter-spacing:0.757646px;}
.lsf{letter-spacing:0.760931px;}
.ls4{letter-spacing:99.148413px;}
.ls5{letter-spacing:141.709688px;}
.ls0{letter-spacing:1500.063602px;}
.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;}
}
.ws7{word-spacing:-46.439981px;}
.ws4{word-spacing:-32.462774px;}
.ws5{word-spacing:-32.399987px;}
.ws1{word-spacing:-17.999993px;}
.ws8{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.558360px;}
.ws2{word-spacing:-16.271993px;}
.ws3{word-spacing:-15.011994px;}
.ws6{word-spacing:-14.939994px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-99.611462px;}
._e{margin-left:-98.478210px;}
._4{margin-left:-8.600742px;}
._5{margin-left:-6.894457px;}
._2{margin-left:-5.387430px;}
._1c{margin-left:-4.316204px;}
._3{margin-left:-3.116546px;}
._1{margin-left:-1.237605px;}
._0{width:1.127437px;}
._9{width:2.253355px;}
._a{width:3.282428px;}
._7{width:4.406102px;}
._8{width:5.469252px;}
._6{width:6.825250px;}
._18{width:7.993649px;}
._16{width:9.343179px;}
._15{width:10.359485px;}
._c{width:11.827705px;}
._b{width:12.869872px;}
._10{width:14.018183px;}
._24{width:15.241450px;}
._17{width:16.906964px;}
._28{width:20.241494px;}
._26{width:21.727259px;}
._25{width:22.963919px;}
._29{width:26.435912px;}
._14{width:29.834634px;}
._11{width:31.924968px;}
._12{width:32.957979px;}
._13{width:34.405818px;}
._d{width:48.939182px;}
._23{width:51.488577px;}
._1f{width:76.919365px;}
._2a{width:83.266263px;}
._20{width:84.978353px;}
._2b{width:101.220999px;}
._2c{width:105.227894px;}
._22{width:107.216932px;}
._1e{width:135.021575px;}
._1d{width:146.748854px;}
._2f{width:169.673608px;}
._2e{width:173.734272px;}
._2d{width:176.130566px;}
._27{width:184.787767px;}
._1b{width:191.618178px;}
._21{width:200.274735px;}
._30{width:237.181264px;}
._31{width:242.903757px;}
._19{width:373.853396px;}
._1a{width:599.619609px;}
.fc13{color:rgb(238,0,0);}
.fcf{color:rgb(153,142,164);}
.fce{color:rgb(225,216,236);}
.fc0{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);}
.fcd{color:rgb(205,196,214);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fc12{color:transparent;}
.fc11{color:rgb(112,48,160);}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fc10{color:rgb(243,238,248);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(180,172,188);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs5{font-size:77.759969px;}
.fs4{font-size:84.239966px;}
.y5{bottom:-16.199994px;}
.y0{bottom:0.000000px;}
.y22{bottom:2.519871px;}
.y16{bottom:3.239693px;}
.y3d{bottom:3.959597px;}
.y77{bottom:3.959737px;}
.y7d{bottom:3.959779px;}
.y81{bottom:3.959804px;}
.y86{bottom:3.959838px;}
.y8b{bottom:3.959871px;}
.y90{bottom:3.959896px;}
.ya{bottom:4.859980px;}
.yb{bottom:27.899989px;}
.y9{bottom:44.280000px;}
.y7{bottom:49.139980px;}
.y8{bottom:51.299979px;}
.y66{bottom:136.079946px;}
.y94{bottom:137.879945px;}
.yf1{bottom:151.739939px;}
.ycf{bottom:155.879938px;}
.yb3{bottom:159.839936px;}
.y65{bottom:160.019936px;}
.y3a{bottom:160.559936px;}
.y93{bottom:161.819935px;}
.ye3{bottom:175.859930px;}
.yb2{bottom:183.779926px;}
.yce{bottom:191.699923px;}
.y64{bottom:196.019922px;}
.y39{bottom:196.379921px;}
.y92{bottom:198.899920px;}
.ye2{bottom:199.799920px;}
.yb1{bottom:207.719917px;}
.yf0{bottom:211.679915px;}
.ycd{bottom:215.819914px;}
.y63{bottom:220.139912px;}
.y38{bottom:220.499912px;}
.ye1{bottom:223.739911px;}
.yb0{bottom:231.659907px;}
.yef{bottom:235.799906px;}
.y91{bottom:237.779905px;}
.ycc{bottom:239.759904px;}
.y62{bottom:244.079902px;}
.ye0{bottom:247.679901px;}
.y8f{bottom:255.240000px;}
.y37{bottom:257.579897px;}
.y8e{bottom:259.199896px;}
.y61{bottom:264.779894px;}
.yaf{bottom:267.659893px;}
.ydf{bottom:271.619891px;}
.ycb{bottom:275.759890px;}
.y8d{bottom:279.899888px;}
.yae{bottom:291.599883px;}
.y60{bottom:295.739882px;}
.y36{bottom:299.699880px;}
.y8c{bottom:300.599880px;}
.yde{bottom:308.699877px;}
.yad{bottom:315.719874px;}
.y8a{bottom:318.060000px;}
.y21{bottom:319.860000px;}
.yca{bottom:323.639871px;}
.y35{bottom:323.819870px;}
.y5f{bottom:326.879869px;}
.yee{bottom:331.739867px;}
.yac{bottom:339.659864px;}
.y34{bottom:341.459863px;}
.y89{bottom:342.719863px;}
.yc9{bottom:347.579861px;}
.yed{bottom:355.679858px;}
.y5e{bottom:357.839857px;}
.y88{bottom:363.419855px;}
.ydd{bottom:371.519851px;}
.yab{bottom:376.739849px;}
.y43{bottom:378.179849px;}
.yec{bottom:379.619848px;}
.yc8{bottom:383.579847px;}
.y87{bottom:384.119846px;}
.y5d{bottom:388.979844px;}
.ydc{bottom:395.639842px;}
.y42{bottom:398.159841px;}
.y85{bottom:401.760000px;}
.yc7{bottom:407.519837px;}
.yaa{bottom:415.619834px;}
.y41{bottom:418.139833px;}
.y5c{bottom:419.939832px;}
.y84{bottom:426.419829px;}
.ydb{bottom:431.639827px;}
.y40{bottom:438.119825px;}
.ya9{bottom:439.559824px;}
.yc6{bottom:443.519823px;}
.y83{bottom:447.119821px;}
.y5b{bottom:451.079820px;}
.yda{bottom:455.579818px;}
.y3f{bottom:458.999816px;}
.y20{bottom:459.719816px;}
.ya8{bottom:463.499815px;}
.yc5{bottom:467.459813px;}
.y82{bottom:467.819813px;}
.yf5{bottom:479.519808px;}
.y5a{bottom:482.039807px;}
.y80{bottom:485.280000px;}
.ya7{bottom:487.439805px;}
.yd9{bottom:491.579803px;}
.y33{bottom:496.619801px;}
.yeb{bottom:499.499800px;}
.yc4{bottom:503.459799px;}
.y7f{bottom:509.939796px;}
.y59{bottom:513.179795px;}
.y32{bottom:513.899794px;}
.yd8{bottom:515.519794px;}
.ya6{bottom:523.439791px;}
.yc3{bottom:527.399789px;}
.y7e{bottom:530.639788px;}
.y31{bottom:531.179788px;}
.y58{bottom:544.139782px;}
.y1f{bottom:546.659781px;}
.ya5{bottom:547.379781px;}
.y7c{bottom:548.100000px;}
.yc2{bottom:551.519779px;}
.y30{bottom:557.279777px;}
.yea{bottom:571.499771px;}
.y7b{bottom:572.759771px;}
.y2f{bottom:574.559770px;}
.y57{bottom:575.279770px;}
.yd7{bottom:575.459770px;}
.y1e{bottom:581.399767px;}
.ya4{bottom:583.379767px;}
.yf4{bottom:587.339765px;}
.yc1{bottom:587.519765px;}
.y2e{bottom:591.839763px;}
.y7a{bottom:593.459763px;}
.y1d{bottom:596.699761px;}
.yd6{bottom:599.399760px;}
.y56{bottom:606.239758px;}
.ya3{bottom:607.499757px;}
.y2d{bottom:609.119756px;}
.yc0{bottom:611.459755px;}
.y1c{bottom:611.999755px;}
.y79{bottom:614.159754px;}
.yf3{bottom:623.339751px;}
.y1b{bottom:626.039750px;}
.y2c{bottom:626.399749px;}
.ya2{bottom:631.439747px;}
.y78{bottom:634.859746px;}
.ybf{bottom:635.399746px;}
.y55{bottom:639.539744px;}
.y2b{bottom:643.679743px;}
.y76{bottom:652.320000px;}
.ya1{bottom:655.379738px;}
.yd5{bottom:659.339736px;}
.y1a{bottom:659.519736px;}
.y2a{bottom:660.959736px;}
.ye9{bottom:667.439733px;}
.ybe{bottom:671.399731px;}
.y54{bottom:673.559731px;}
.y75{bottom:676.979729px;}
.y29{bottom:678.059729px;}
.ya0{bottom:679.319728px;}
.yf2{bottom:683.279727px;}
.ye8{bottom:691.379723px;}
.y19{bottom:692.999723px;}
.y28{bottom:695.339722px;}
.y74{bottom:697.679721px;}
.y53{bottom:704.519718px;}
.y27{bottom:712.619715px;}
.y9f{bottom:715.319714px;}
.y73{bottom:718.379713px;}
.ybd{bottom:719.279712px;}
.y18{bottom:726.659709px;}
.ye7{bottom:727.379709px;}
.y26{bottom:729.899708px;}
.y52{bottom:735.659706px;}
.y72{bottom:739.079704px;}
.y9e{bottom:739.259704px;}
.y17{bottom:742.139703px;}
.yd4{bottom:743.219703px;}
.y25{bottom:747.179701px;}
.ye6{bottom:751.319699px;}
.ybc{bottom:755.279698px;}
.y71{bottom:760.499696px;}
.y23{bottom:761.219696px;}
.y9d{bottom:763.199695px;}
.y15{bottom:763.740000px;}
.y24{bottom:764.279694px;}
.y51{bottom:766.619693px;}
.yd3{bottom:767.339693px;}
.ye5{bottom:775.259690px;}
.ybb{bottom:779.219688px;}
.y50{bottom:787.319685px;}
.y14{bottom:791.459683px;}
.y70{bottom:797.579681px;}
.y9c{bottom:800.279680px;}
.yd2{bottom:803.159679px;}
.y4f{bottom:808.019677px;}
.ye4{bottom:812.339675px;}
.y13{bottom:813.239675px;}
.yba{bottom:815.219674px;}
.yd1{bottom:827.279669px;}
.y4e{bottom:828.719669px;}
.y12{bottom:833.219667px;}
.y6f{bottom:835.199666px;}
.y9b{bottom:839.159664px;}
.y4d{bottom:849.419660px;}
.y11{bottom:850.499660px;}
.yb9{bottom:851.219660px;}
.y6e{bottom:859.139656px;}
.y9a{bottom:863.099655px;}
.y10{bottom:867.779653px;}
.y4c{bottom:870.119652px;}
.yb8{bottom:875.159650px;}
.y6d{bottom:883.079647px;}
.ye{bottom:885.599646px;}
.y99{bottom:887.219645px;}
.y4b{bottom:890.819644px;}
.yf{bottom:891.539643px;}
.yb7{bottom:899.099640px;}
.y6c{bottom:907.199637px;}
.y98{bottom:911.159636px;}
.y4a{bottom:911.519635px;}
.yd{bottom:918.359633px;}
.yb6{bottom:923.219631px;}
.y49{bottom:932.219627px;}
.y97{bottom:935.099626px;}
.yc{bottom:939.059624px;}
.y6b{bottom:944.279622px;}
.yb5{bottom:947.159621px;}
.y48{bottom:952.919619px;}
.y96{bottom:959.039616px;}
.yb4{bottom:971.099612px;}
.y47{bottom:973.619611px;}
.y6a{bottom:983.159607px;}
.y3e{bottom:986.039606px;}
.y46{bottom:994.319602px;}
.y95{bottom:995.039602px;}
.y3c{bottom:1003.140000px;}
.y69{bottom:1007.099597px;}
.y45{bottom:1015.019594px;}
.yd0{bottom:1018.979592px;}
.y68{bottom:1031.039588px;}
.y3b{bottom:1047.779581px;}
.y44{bottom:1052.099579px;}
.y67{bottom:1054.979578px;}
.y4{bottom:1076.579569px;}
.y6{bottom:1106.459557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:0.900000px;}
.hc{height:14.580000px;}
.h13{height:18.180000px;}
.h10{height:19.620000px;}
.h17{height:20.160000px;}
.h6{height:21.960000px;}
.ha{height:32.693893px;}
.hd{height:32.976549px;}
.hf{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:36.914048px;}
.he{height:39.339828px;}
.h7{height:40.851546px;}
.h1{height:41.522679px;}
.h14{height:43.390178px;}
.h15{height:43.536076px;}
.h9{height:48.796855px;}
.h2{height:49.218730px;}
.h8{height:50.027324px;}
.hb{height:52.277323px;}
.h16{height:52.700604px;}
.h11{height:53.261697px;}
.h12{height:57.092321px;}
.h0{height:1188.000000px;}
.w2{width:4.680000px;}
.w4{width:7.020000px;}
.w5{width:9.000000px;}
.w8{width:9.180000px;}
.w1{width:10.620000px;}
.w9{width:30.600000px;}
.we{width:66.240000px;}
.wc{width:79.920000px;}
.w7{width:86.400000px;}
.w3{width:105.840000px;}
.wd{width:137.520000px;}
.w12{width:170.640000px;}
.w11{width:182.340000px;}
.wa{width:183.420000px;}
.wf{width:197.100000px;}
.wb{width:221.040000px;}
.w10{width:255.060000px;}
.w6{width:434.700000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x23{left:116.459953px;}
.x7{left:118.799952px;}
.x16{left:120.599952px;}
.x10{left:124.019313px;}
.x12{left:128.519980px;}
.x4{left:133.739947px;}
.x13{left:135.900000px;}
.x15{left:137.519967px;}
.x18{left:156.419937px;}
.xf{left:170.279932px;}
.x17{left:174.599930px;}
.x11{left:188.100001px;}
.x24{left:202.860000px;}
.x14{left:241.740000px;}
.x9{left:254.339898px;}
.x19{left:258.659962px;}
.x1a{left:259.740000px;}
.x1d{left:269.639892px;}
.x1b{left:277.919889px;}
.x44{left:287.999832px;}
.x27{left:289.979882px;}
.x32{left:291.599976px;}
.x43{left:295.199835px;}
.x38{left:296.999960px;}
.x26{left:298.071115px;}
.x25{left:300.599880px;}
.x2{left:302.579879px;}
.x39{left:309.959949px;}
.x3d{left:312.119864px;}
.x1c{left:317.339873px;}
.x33{left:318.599896px;}
.x21{left:323.099871px;}
.x8{left:324.538827px;}
.x3c{left:326.519887px;}
.x1e{left:347.759861px;}
.x3a{left:367.200000px;}
.x28{left:373.859831px;}
.x2b{left:385.020000px;}
.x2c{left:415.620000px;}
.xa{left:425.879830px;}
.x5{left:432.179827px;}
.x3b{left:433.440000px;}
.x22{left:448.379821px;}
.x45{left:491.580000px;}
.x3e{left:498.960000px;}
.x34{left:510.840000px;}
.x29{left:533.339528px;}
.x41{left:538.560000px;}
.x2e{left:541.799846px;}
.xb{left:547.199781px;}
.x2f{left:549.359850px;}
.xc{left:553.319779px;}
.x35{left:557.460000px;}
.x3f{left:559.790982px;}
.x2d{left:560.879776px;}
.x40{left:568.799764px;}
.x30{left:574.380000px;}
.x46{left:580.860000px;}
.x1f{left:588.599765px;}
.x36{left:637.380000px;}
.x2a{left:641.339510px;}
.xd{left:653.219739px;}
.xe{left:659.339736px;}
.x3{left:691.199724px;}
.x20{left:701.639700px;}
.x47{left:751.500000px;}
.x31{left:757.800000px;}
.x37{left:774.900000px;}
.x42{left:793.620000px;}
.x6{left:837.900000px;}
@media print{
.v1{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.029638pt;}
.lsb{letter-spacing:0.030362pt;}
.ls2{letter-spacing:0.030605pt;}
.lsc{letter-spacing:0.031732pt;}
.lsa{letter-spacing:0.032764pt;}
.ls6{letter-spacing:0.055811pt;}
.ls8{letter-spacing:0.178347pt;}
.ls1{letter-spacing:0.254548pt;}
.ls3{letter-spacing:0.284175pt;}
.lsd{letter-spacing:0.671840pt;}
.lse{letter-spacing:0.673463pt;}
.lsf{letter-spacing:0.676383pt;}
.ls4{letter-spacing:88.131923pt;}
.ls5{letter-spacing:125.964168pt;}
.ls0{letter-spacing:1333.389869pt;}
.ws7{word-spacing:-41.279983pt;}
.ws4{word-spacing:-28.855799pt;}
.ws5{word-spacing:-28.799988pt;}
.ws1{word-spacing:-15.999994pt;}
.ws8{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.718543pt;}
.ws2{word-spacing:-14.463994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws6{word-spacing:-13.279995pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-88.543522pt;}
._e{margin-left:-87.536186pt;}
._4{margin-left:-7.645104pt;}
._5{margin-left:-6.128406pt;}
._2{margin-left:-4.788827pt;}
._1c{margin-left:-3.836626pt;}
._3{margin-left:-2.770263pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.002166pt;}
._9{width:2.002982pt;}
._a{width:2.917714pt;}
._7{width:3.916536pt;}
._8{width:4.861557pt;}
._6{width:6.066889pt;}
._18{width:7.105466pt;}
._16{width:8.305048pt;}
._15{width:9.208431pt;}
._c{width:10.513516pt;}
._b{width:11.439887pt;}
._10{width:12.460607pt;}
._24{width:13.547956pt;}
._17{width:15.028413pt;}
._28{width:17.992439pt;}
._26{width:19.313119pt;}
._25{width:20.412372pt;}
._29{width:23.498588pt;}
._14{width:26.519674pt;}
._11{width:28.377749pt;}
._12{width:29.295982pt;}
._13{width:30.582949pt;}
._d{width:43.501495pt;}
._23{width:45.767624pt;}
._1f{width:68.372769pt;}
._2a{width:74.014456pt;}
._20{width:75.536314pt;}
._2b{width:89.974222pt;}
._2c{width:93.535906pt;}
._22{width:95.303939pt;}
._1e{width:120.019178pt;}
._1d{width:130.443426pt;}
._2f{width:150.820985pt;}
._2e{width:154.430464pt;}
._2d{width:156.560503pt;}
._27{width:164.255793pt;}
._1b{width:170.327269pt;}
._21{width:178.021986pt;}
._30{width:210.827790pt;}
._31{width:215.914451pt;}
._19{width:332.314130pt;}
._1a{width:532.995208pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs5{font-size:69.119972pt;}
.fs4{font-size:74.879970pt;}
.y5{bottom:-14.399994pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.239885pt;}
.y16{bottom:2.879727pt;}
.y3d{bottom:3.519642pt;}
.y77{bottom:3.519767pt;}
.y7d{bottom:3.519804pt;}
.y81{bottom:3.519826pt;}
.y86{bottom:3.519856pt;}
.y8b{bottom:3.519886pt;}
.y90{bottom:3.519908pt;}
.ya{bottom:4.319983pt;}
.yb{bottom:24.799990pt;}
.y9{bottom:39.360000pt;}
.y7{bottom:43.679983pt;}
.y8{bottom:45.599982pt;}
.y66{bottom:120.959952pt;}
.y94{bottom:122.559951pt;}
.yf1{bottom:134.879946pt;}
.ycf{bottom:138.559945pt;}
.yb3{bottom:142.079943pt;}
.y65{bottom:142.239943pt;}
.y3a{bottom:142.719943pt;}
.y93{bottom:143.839942pt;}
.ye3{bottom:156.319937pt;}
.yb2{bottom:163.359935pt;}
.yce{bottom:170.399932pt;}
.y64{bottom:174.239930pt;}
.y39{bottom:174.559930pt;}
.y92{bottom:176.799929pt;}
.ye2{bottom:177.599929pt;}
.yb1{bottom:184.639926pt;}
.yf0{bottom:188.159925pt;}
.ycd{bottom:191.839923pt;}
.y63{bottom:195.679922pt;}
.y38{bottom:195.999922pt;}
.ye1{bottom:198.879920pt;}
.yb0{bottom:205.919918pt;}
.yef{bottom:209.599916pt;}
.y91{bottom:211.359915pt;}
.ycc{bottom:213.119915pt;}
.y62{bottom:216.959913pt;}
.ye0{bottom:220.159912pt;}
.y8f{bottom:226.880000pt;}
.y37{bottom:228.959908pt;}
.y8e{bottom:230.399908pt;}
.y61{bottom:235.359906pt;}
.yaf{bottom:237.919905pt;}
.ydf{bottom:241.439903pt;}
.ycb{bottom:245.119902pt;}
.y8d{bottom:248.799900pt;}
.yae{bottom:259.199896pt;}
.y60{bottom:262.879895pt;}
.y36{bottom:266.399893pt;}
.y8c{bottom:267.199893pt;}
.yde{bottom:274.399890pt;}
.yad{bottom:280.639888pt;}
.y8a{bottom:282.720000pt;}
.y21{bottom:284.320000pt;}
.yca{bottom:287.679885pt;}
.y35{bottom:287.839885pt;}
.y5f{bottom:290.559884pt;}
.yee{bottom:294.879882pt;}
.yac{bottom:301.919879pt;}
.y34{bottom:303.519879pt;}
.y89{bottom:304.639878pt;}
.yc9{bottom:308.959876pt;}
.yed{bottom:316.159874pt;}
.y5e{bottom:318.079873pt;}
.y88{bottom:323.039871pt;}
.ydd{bottom:330.239868pt;}
.yab{bottom:334.879866pt;}
.y43{bottom:336.159866pt;}
.yec{bottom:337.439865pt;}
.yc8{bottom:340.959864pt;}
.y87{bottom:341.439863pt;}
.y5d{bottom:345.759862pt;}
.ydc{bottom:351.679859pt;}
.y42{bottom:353.919858pt;}
.y85{bottom:357.120000pt;}
.yc7{bottom:362.239855pt;}
.yaa{bottom:369.439852pt;}
.y41{bottom:371.679851pt;}
.y5c{bottom:373.279851pt;}
.y84{bottom:379.039848pt;}
.ydb{bottom:383.679847pt;}
.y40{bottom:389.439844pt;}
.ya9{bottom:390.719844pt;}
.yc6{bottom:394.239842pt;}
.y83{bottom:397.439841pt;}
.y5b{bottom:400.959840pt;}
.yda{bottom:404.959838pt;}
.y3f{bottom:407.999837pt;}
.y20{bottom:408.639837pt;}
.ya8{bottom:411.999835pt;}
.yc5{bottom:415.519834pt;}
.y82{bottom:415.839834pt;}
.yf5{bottom:426.239830pt;}
.y5a{bottom:428.479829pt;}
.y80{bottom:431.360000pt;}
.ya7{bottom:433.279827pt;}
.yd9{bottom:436.959825pt;}
.y33{bottom:441.439823pt;}
.yeb{bottom:443.999822pt;}
.yc4{bottom:447.519821pt;}
.y7f{bottom:453.279819pt;}
.y59{bottom:456.159818pt;}
.y32{bottom:456.799817pt;}
.yd8{bottom:458.239817pt;}
.ya6{bottom:465.279814pt;}
.yc3{bottom:468.799812pt;}
.y7e{bottom:471.679811pt;}
.y31{bottom:472.159811pt;}
.y58{bottom:483.679807pt;}
.y1f{bottom:485.919806pt;}
.ya5{bottom:486.559805pt;}
.y7c{bottom:487.200000pt;}
.yc2{bottom:490.239804pt;}
.y30{bottom:495.359802pt;}
.yea{bottom:507.999797pt;}
.y7b{bottom:509.119796pt;}
.y2f{bottom:510.719796pt;}
.y57{bottom:511.359795pt;}
.yd7{bottom:511.519795pt;}
.y1e{bottom:516.799793pt;}
.ya4{bottom:518.559793pt;}
.yf4{bottom:522.079791pt;}
.yc1{bottom:522.239791pt;}
.y2e{bottom:526.079790pt;}
.y7a{bottom:527.519789pt;}
.y1d{bottom:530.399788pt;}
.yd6{bottom:532.799787pt;}
.y56{bottom:538.879784pt;}
.ya3{bottom:539.999784pt;}
.y2d{bottom:541.439783pt;}
.yc0{bottom:543.519783pt;}
.y1c{bottom:543.999782pt;}
.y79{bottom:545.919782pt;}
.yf3{bottom:554.079778pt;}
.y1b{bottom:556.479777pt;}
.y2c{bottom:556.799777pt;}
.ya2{bottom:561.279775pt;}
.y78{bottom:564.319774pt;}
.ybf{bottom:564.799774pt;}
.y55{bottom:568.479773pt;}
.y2b{bottom:572.159771pt;}
.y76{bottom:579.840000pt;}
.ya1{bottom:582.559767pt;}
.yd5{bottom:586.079766pt;}
.y1a{bottom:586.239766pt;}
.y2a{bottom:587.519765pt;}
.ye9{bottom:593.279763pt;}
.ybe{bottom:596.799761pt;}
.y54{bottom:598.719761pt;}
.y75{bottom:601.759759pt;}
.y29{bottom:602.719759pt;}
.ya0{bottom:603.839758pt;}
.yf2{bottom:607.359757pt;}
.ye8{bottom:614.559754pt;}
.y19{bottom:615.999754pt;}
.y28{bottom:618.079753pt;}
.y74{bottom:620.159752pt;}
.y53{bottom:626.239750pt;}
.y27{bottom:633.439747pt;}
.y9f{bottom:635.839746pt;}
.y73{bottom:638.559745pt;}
.ybd{bottom:639.359744pt;}
.y18{bottom:645.919742pt;}
.ye7{bottom:646.559741pt;}
.y26{bottom:648.799740pt;}
.y52{bottom:653.919738pt;}
.y72{bottom:656.959737pt;}
.y9e{bottom:657.119737pt;}
.y17{bottom:659.679736pt;}
.yd4{bottom:660.639736pt;}
.y25{bottom:664.159734pt;}
.ye6{bottom:667.839733pt;}
.ybc{bottom:671.359731pt;}
.y71{bottom:675.999730pt;}
.y23{bottom:676.639729pt;}
.y9d{bottom:678.399729pt;}
.y15{bottom:678.880000pt;}
.y24{bottom:679.359728pt;}
.y51{bottom:681.439727pt;}
.yd3{bottom:682.079727pt;}
.ye5{bottom:689.119724pt;}
.ybb{bottom:692.639723pt;}
.y50{bottom:699.839720pt;}
.y14{bottom:703.519719pt;}
.y70{bottom:708.959716pt;}
.y9c{bottom:711.359715pt;}
.yd2{bottom:713.919714pt;}
.y4f{bottom:718.239713pt;}
.ye4{bottom:722.079711pt;}
.y13{bottom:722.879711pt;}
.yba{bottom:724.639710pt;}
.yd1{bottom:735.359706pt;}
.y4e{bottom:736.639705pt;}
.y12{bottom:740.639704pt;}
.y6f{bottom:742.399703pt;}
.y9b{bottom:745.919702pt;}
.y4d{bottom:755.039698pt;}
.y11{bottom:755.999698pt;}
.yb9{bottom:756.639697pt;}
.y6e{bottom:763.679695pt;}
.y9a{bottom:767.199693pt;}
.y10{bottom:771.359691pt;}
.y4c{bottom:773.439691pt;}
.yb8{bottom:777.919689pt;}
.y6d{bottom:784.959686pt;}
.ye{bottom:787.199685pt;}
.y99{bottom:788.639685pt;}
.y4b{bottom:791.839683pt;}
.yf{bottom:792.479683pt;}
.yb7{bottom:799.199680pt;}
.y6c{bottom:806.399677pt;}
.y98{bottom:809.919676pt;}
.y4a{bottom:810.239676pt;}
.yd{bottom:816.319673pt;}
.yb6{bottom:820.639672pt;}
.y49{bottom:828.639669pt;}
.y97{bottom:831.199668pt;}
.yc{bottom:834.719666pt;}
.y6b{bottom:839.359664pt;}
.yb5{bottom:841.919663pt;}
.y48{bottom:847.039661pt;}
.y96{bottom:852.479659pt;}
.yb4{bottom:863.199655pt;}
.y47{bottom:865.439654pt;}
.y6a{bottom:873.919650pt;}
.y3e{bottom:876.479649pt;}
.y46{bottom:883.839646pt;}
.y95{bottom:884.479646pt;}
.y3c{bottom:891.680000pt;}
.y69{bottom:895.199642pt;}
.y45{bottom:902.239639pt;}
.yd0{bottom:905.759638pt;}
.y68{bottom:916.479633pt;}
.y3b{bottom:931.359627pt;}
.y44{bottom:935.199626pt;}
.y67{bottom:937.759625pt;}
.y4{bottom:956.959617pt;}
.y6{bottom:983.519607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.800000pt;}
.hc{height:12.960000pt;}
.h13{height:16.160000pt;}
.h10{height:17.440000pt;}
.h17{height:17.920000pt;}
.h6{height:19.520000pt;}
.ha{height:29.061238pt;}
.hd{height:29.312488pt;}
.hf{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:32.812487pt;}
.he{height:34.968736pt;}
.h7{height:36.312485pt;}
.h1{height:36.909048pt;}
.h14{height:38.569047pt;}
.h15{height:38.698735pt;}
.h9{height:43.374983pt;}
.h2{height:43.749982pt;}
.h8{height:44.468732pt;}
.hb{height:46.468731pt;}
.h16{height:46.844981pt;}
.h11{height:47.343731pt;}
.h12{height:50.748730pt;}
.h0{height:1056.000000pt;}
.w2{width:4.160000pt;}
.w4{width:6.240000pt;}
.w5{width:8.000000pt;}
.w8{width:8.160000pt;}
.w1{width:9.440000pt;}
.w9{width:27.200000pt;}
.we{width:58.880000pt;}
.wc{width:71.040000pt;}
.w7{width:76.800000pt;}
.w3{width:94.080000pt;}
.wd{width:122.240000pt;}
.w12{width:151.680000pt;}
.w11{width:162.080000pt;}
.wa{width:163.040000pt;}
.wf{width:175.200000pt;}
.wb{width:196.480000pt;}
.w10{width:226.720000pt;}
.w6{width:386.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x23{left:103.519959pt;}
.x7{left:105.599958pt;}
.x16{left:107.199957pt;}
.x10{left:110.239390pt;}
.x12{left:114.239983pt;}
.x4{left:118.879952pt;}
.x13{left:120.800000pt;}
.x15{left:122.239970pt;}
.x18{left:139.039944pt;}
.xf{left:151.359939pt;}
.x17{left:155.199938pt;}
.x11{left:167.200001pt;}
.x24{left:180.320000pt;}
.x14{left:214.880000pt;}
.x9{left:226.079910pt;}
.x19{left:229.919966pt;}
.x1a{left:230.880000pt;}
.x1d{left:239.679904pt;}
.x1b{left:247.039901pt;}
.x44{left:255.999850pt;}
.x27{left:257.759895pt;}
.x32{left:259.199978pt;}
.x43{left:262.399854pt;}
.x38{left:263.999964pt;}
.x26{left:264.952102pt;}
.x25{left:267.199893pt;}
.x2{left:268.959892pt;}
.x39{left:275.519954pt;}
.x3d{left:277.439879pt;}
.x1c{left:282.079887pt;}
.x33{left:283.199908pt;}
.x21{left:287.199885pt;}
.x8{left:288.478957pt;}
.x3c{left:290.239900pt;}
.x1e{left:309.119876pt;}
.x3a{left:326.400000pt;}
.x28{left:332.319850pt;}
.x2b{left:342.240000pt;}
.x2c{left:369.440000pt;}
.xa{left:378.559849pt;}
.x5{left:384.159846pt;}
.x3b{left:385.280000pt;}
.x22{left:398.559841pt;}
.x45{left:436.960000pt;}
.x3e{left:443.520000pt;}
.x34{left:454.080000pt;}
.x29{left:474.079581pt;}
.x41{left:478.720000pt;}
.x2e{left:481.599863pt;}
.xb{left:486.399805pt;}
.x2f{left:488.319867pt;}
.xc{left:491.839803pt;}
.x35{left:495.520000pt;}
.x3f{left:497.591984pt;}
.x2d{left:498.559801pt;}
.x40{left:505.599790pt;}
.x30{left:510.560000pt;}
.x46{left:516.320000pt;}
.x1f{left:523.199791pt;}
.x36{left:566.560000pt;}
.x2a{left:570.079565pt;}
.xd{left:580.639768pt;}
.xe{left:586.079766pt;}
.x3{left:614.399754pt;}
.x20{left:623.679733pt;}
.x47{left:668.000000pt;}
.x31{left:673.600000pt;}
.x37{left:688.800000pt;}
.x42{left:705.440000pt;}
.x6{left:744.800000pt;}
}




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