
    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_a68ee76a7a689cb7cf813d58.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_549480cf613f0934d69cc164.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_2223b002466737a8f167b183.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_fd902c2b7378e0c684ce2dd6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5256c247b3eb8f7f47f2fb7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_6c6625ab17938f2f1858277d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_1249b02cb3bac1e26162ba47.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_74c2e043297a3e75c58ba14e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_47cadaedcf8d1d0ec095f671.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_6cd2404ee6b82dd59e7c5011.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_ff1585d9328c23086d0d500b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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_8442840f179a0760d48c2347.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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_ad44a09c50850ad222568b8a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_aaf62595f967de36067fe82d.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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_aaf62595f967de36067fe82d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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_aba8260dc53e4cd2103bcb3e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.874023;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_3ed17147d2c973408ce99919.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.971191;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_e0acb95abae9b8520a4cb476.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v2{vertical-align:-2.062200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.765400px;}
.v4{vertical-align:4.400400px;}
.v1{vertical-align:22.038000px;}
.ls15{letter-spacing:-2.262000px;}
.ls11{letter-spacing:-1.872000px;}
.lsf{letter-spacing:-1.629425px;}
.ls10{letter-spacing:-0.971938px;}
.ls16{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.624000px;}
.ls18{letter-spacing:-0.468000px;}
.ls3{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.085759px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.024433px;}
.ls8{letter-spacing:0.028586px;}
.ls9{letter-spacing:0.057173px;}
.ls7{letter-spacing:0.073298px;}
.ls13{letter-spacing:0.078000px;}
.lse{letter-spacing:0.122163px;}
.ls6{letter-spacing:0.312000px;}
.ls14{letter-spacing:0.390000px;}
.ls4{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.702000px;}
.lsb{letter-spacing:0.858000px;}
.ls19{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.482000px;}
.ls5{letter-spacing:1.950000px;}
.lsa{letter-spacing:7.576800px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-45.672000px;}
.ws4{word-spacing:-24.480000px;}
.wsb{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws24{word-spacing:-12.906000px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:-11.934000px;}
.ws8{word-spacing:-8.696028px;}
.wse{word-spacing:-6.517699px;}
.ws11{word-spacing:-6.489113px;}
.wsf{word-spacing:-6.374767px;}
.ws10{word-spacing:-5.595065px;}
.ws13{word-spacing:-5.488589px;}
.ws12{word-spacing:-4.831102px;}
.wsc{word-spacing:-1.950000px;}
.ws20{word-spacing:-1.482000px;}
.ws27{word-spacing:-0.936000px;}
.ws14{word-spacing:-0.858000px;}
.ws16{word-spacing:-0.757411px;}
.ws17{word-spacing:-0.708545px;}
.wsa{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.415354px;}
.ws1e{word-spacing:-0.400210px;}
.ws22{word-spacing:-0.390000px;}
.ws1d{word-spacing:-0.371623px;}
.wsd{word-spacing:-0.312000px;}
.ws21{word-spacing:-0.078000px;}
.ws18{word-spacing:-0.057173px;}
.ws9{word-spacing:-0.054000px;}
.ws1c{word-spacing:-0.028586px;}
.ws1a{word-spacing:-0.024433px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.024433px;}
.ws1b{word-spacing:0.085759px;}
.ws7{word-spacing:0.270000px;}
.ws26{word-spacing:0.468000px;}
.ws28{word-spacing:0.624000px;}
.ws25{word-spacing:0.936000px;}
.ws1f{word-spacing:1.872000px;}
.ws23{word-spacing:2.262000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-14.863200px;}
._22{margin-left:-12.250800px;}
._21{margin-left:-7.859939px;}
._13{margin-left:-6.790800px;}
._11{margin-left:-5.531400px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._15{width:5.154721px;}
._19{width:6.176993px;}
._4{width:7.193961px;}
._14{width:8.996439px;}
._9{width:10.262944px;}
._12{width:11.563424px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._18{width:16.453800px;}
._17{width:17.490000px;}
._20{width:18.869400px;}
._5{width:20.492888px;}
._16{width:22.044000px;}
._1f{width:23.898600px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._1e{width:47.142000px;}
._1a{width:264.816563px;}
._1c{width:287.769215px;}
._1b{width:375.262763px;}
._0{width:820.875237px;}
._1d{width:1092.122615px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:24.432600px;}
.fs14{font-size:28.586400px;}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs13{font-size:38.478000px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.y6c{bottom:102.059550px;}
.y10e{bottom:102.157350px;}
.y91{bottom:102.285600px;}
.y131{bottom:103.242600px;}
.yd4{bottom:104.356350px;}
.y145{bottom:104.544600px;}
.y45{bottom:109.248450px;}
.y1a1{bottom:118.242600px;}
.y6b{bottom:118.556550px;}
.yad{bottom:118.624350px;}
.yf4{bottom:118.849950px;}
.y144{bottom:120.893100px;}
.y10d{bottom:122.864850px;}
.y90{bottom:122.910600px;}
.y1b{bottom:123.419327px;}
.y130{bottom:123.950100px;}
.yd3{bottom:125.063850px;}
.y44{bottom:125.448450px;}
.y1a0{bottom:134.591100px;}
.y6a{bottom:135.053550px;}
.y21{bottom:136.778700px;}
.y143{bottom:137.241600px;}
.y174{bottom:139.261350px;}
.yac{bottom:139.331850px;}
.yf3{bottom:139.557450px;}
.y28{bottom:142.439400px;}
.y8f{bottom:143.535600px;}
.y10c{bottom:143.572350px;}
.y12f{bottom:144.492600px;}
.yd2{bottom:145.771350px;}
.y43{bottom:145.900950px;}
.y19f{bottom:150.939600px;}
.y69{bottom:151.550550px;}
.y142{bottom:153.590100px;}
.y173{bottom:155.609850px;}
.yab{bottom:160.039350px;}
.yf2{bottom:160.264950px;}
.y42{bottom:162.100950px;}
.y8e{bottom:164.160600px;}
.y10b{bottom:164.279850px;}
.y12e{bottom:165.035100px;}
.yd1{bottom:166.478850px;}
.y19e{bottom:167.288100px;}
.y68{bottom:168.047550px;}
.y141{bottom:169.938600px;}
.y172{bottom:171.958350px;}
.y41{bottom:178.300950px;}
.y1a{bottom:179.601520px;}
.yaa{bottom:180.746850px;}
.yf1{bottom:180.972450px;}
.y19d{bottom:183.636600px;}
.y27{bottom:184.431900px;}
.y8d{bottom:184.785600px;}
.y10a{bottom:184.987350px;}
.y12d{bottom:185.577600px;}
.y140{bottom:186.287100px;}
.yd0{bottom:187.186350px;}
.y171{bottom:188.306850px;}
.y19{bottom:189.619323px;}
.y40{bottom:194.500950px;}
.y18{bottom:198.812130px;}
.y19c{bottom:199.985100px;}
.ya9{bottom:201.454350px;}
.yf0{bottom:201.679950px;}
.y13f{bottom:202.635600px;}
.y67{bottom:204.066600px;}
.y170{bottom:204.655350px;}
.y8c{bottom:205.410600px;}
.y26{bottom:205.436400px;}
.y109{bottom:205.694850px;}
.y12c{bottom:206.120100px;}
.y17{bottom:207.156370px;}
.ycf{bottom:207.893850px;}
.y3f{bottom:210.700950px;}
.y16{bottom:215.512396px;}
.y19b{bottom:216.333600px;}
.y13e{bottom:218.984100px;}
.y16f{bottom:221.003850px;}
.ya8{bottom:222.161850px;}
.yef{bottom:222.387450px;}
.y15{bottom:223.868422px;}
.y66{bottom:224.774100px;}
.y8b{bottom:226.035600px;}
.y108{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y12b{bottom:226.662600px;}
.y3e{bottom:226.900950px;}
.yce{bottom:228.601350px;}
.y14{bottom:232.212662px;}
.y19a{bottom:232.682100px;}
.y13d{bottom:235.332600px;}
.y16e{bottom:237.352350px;}
.y13{bottom:240.568688px;}
.ya7{bottom:242.869350px;}
.yee{bottom:243.094950px;}
.y3d{bottom:243.100950px;}
.y65{bottom:245.481600px;}
.y8a{bottom:246.660600px;}
.y107{bottom:247.109850px;}
.y12a{bottom:247.205100px;}
.y12{bottom:248.924714px;}
.y199{bottom:249.030600px;}
.ycd{bottom:249.308850px;}
.y13c{bottom:251.681100px;}
.y16d{bottom:253.700850px;}
.y11{bottom:257.268954px;}
.y3c{bottom:259.300950px;}
.ya6{bottom:263.576850px;}
.yed{bottom:263.802450px;}
.y198{bottom:265.379100px;}
.y10{bottom:265.624980px;}
.y64{bottom:266.189100px;}
.y129{bottom:267.747600px;}
.y106{bottom:267.817350px;}
.y13b{bottom:268.029600px;}
.ycc{bottom:270.016350px;}
.y16c{bottom:270.049350px;}
.y89{bottom:271.542600px;}
.yf{bottom:273.981006px;}
.y3b{bottom:275.500950px;}
.ya5{bottom:284.284350px;}
.y13a{bottom:284.378100px;}
.y32{bottom:284.429700px;}
.yec{bottom:284.509950px;}
.y197{bottom:285.980100px;}
.y16b{bottom:286.397850px;}
.y63{bottom:286.896600px;}
.y128{bottom:288.290100px;}
.y105{bottom:288.524850px;}
.ycb{bottom:290.723850px;}
.ye{bottom:291.164483px;}
.y88{bottom:292.167600px;}
.y139{bottom:300.726600px;}
.y196{bottom:302.328600px;}
.y16a{bottom:302.746350px;}
.ya4{bottom:304.991850px;}
.yeb{bottom:305.217450px;}
.y31{bottom:305.434200px;}
.y62{bottom:307.604100px;}
.y127{bottom:308.832600px;}
.y104{bottom:309.232350px;}
.yca{bottom:311.431350px;}
.y87{bottom:312.792600px;}
.y138{bottom:317.075100px;}
.y195{bottom:318.677100px;}
.y169{bottom:319.094850px;}
.ya3{bottom:325.699350px;}
.yea{bottom:325.924950px;}
.y30{bottom:326.438700px;}
.y61{bottom:328.311600px;}
.y126{bottom:329.375100px;}
.y103{bottom:329.939850px;}
.yc9{bottom:332.138850px;}
.y86{bottom:333.417600px;}
.y137{bottom:333.423600px;}
.y194{bottom:335.025600px;}
.y168{bottom:335.443350px;}
.ya2{bottom:346.406850px;}
.ye9{bottom:346.632450px;}
.y2f{bottom:347.443200px;}
.y60{bottom:349.019100px;}
.y136{bottom:349.772100px;}
.y125{bottom:349.917600px;}
.y102{bottom:350.647350px;}
.y193{bottom:351.374100px;}
.y167{bottom:351.791850px;}
.yc8{bottom:352.846350px;}
.y85{bottom:354.042600px;}
.y135{bottom:366.120600px;}
.ya1{bottom:367.114350px;}
.ye8{bottom:367.339950px;}
.y166{bottom:368.140350px;}
.y2e{bottom:368.447700px;}
.y5f{bottom:369.726600px;}
.y101{bottom:371.354850px;}
.y192{bottom:371.975100px;}
.yc7{bottom:373.553850px;}
.y84{bottom:374.667600px;}
.y134{bottom:382.469100px;}
.y165{bottom:384.488850px;}
.ya0{bottom:387.821850px;}
.ye7{bottom:388.047450px;}
.y191{bottom:388.323600px;}
.y124{bottom:388.325850px;}
.y2d{bottom:389.452200px;}
.y5e{bottom:390.434100px;}
.y100{bottom:392.062350px;}
.yc6{bottom:394.261350px;}
.y83{bottom:395.292600px;}
.y133{bottom:398.817600px;}
.y164{bottom:400.837350px;}
.y190{bottom:404.672100px;}
.y9f{bottom:408.529350px;}
.ye6{bottom:408.754950px;}
.y2c{bottom:410.456700px;}
.y5d{bottom:411.141600px;}
.yd{bottom:412.250251px;}
.yff{bottom:412.769850px;}
.yc5{bottom:414.968850px;}
.y123{bottom:415.325850px;}
.y82{bottom:415.917600px;}
.y163{bottom:417.185850px;}
.y18f{bottom:421.020600px;}
.y9e{bottom:429.236850px;}
.ye5{bottom:429.462450px;}
.y5c{bottom:431.849100px;}
.y132{bottom:433.025850px;}
.yfe{bottom:433.477350px;}
.y162{bottom:433.534350px;}
.yc4{bottom:435.676350px;}
.y81{bottom:436.542600px;}
.y18e{bottom:437.369100px;}
.y161{bottom:449.882850px;}
.y9d{bottom:449.944350px;}
.ye4{bottom:450.169950px;}
.y5b{bottom:452.556600px;}
.y18d{bottom:453.717600px;}
.yfd{bottom:454.184850px;}
.yc3{bottom:456.383850px;}
.y80{bottom:457.167600px;}
.y160{bottom:466.231350px;}
.y18c{bottom:470.066100px;}
.y9c{bottom:470.651850px;}
.ye3{bottom:470.877450px;}
.y5a{bottom:473.264100px;}
.yfc{bottom:474.892350px;}
.yc2{bottom:477.091350px;}
.y7f{bottom:477.792600px;}
.y122{bottom:478.192350px;}
.y15f{bottom:482.579850px;}
.y18b{bottom:486.414600px;}
.y9b{bottom:491.359350px;}
.ye2{bottom:491.584950px;}
.y59{bottom:493.971600px;}
.yfb{bottom:495.599850px;}
.yc1{bottom:497.798850px;}
.y2b{bottom:498.056700px;}
.y7e{bottom:498.417600px;}
.y121{bottom:498.734850px;}
.y15e{bottom:498.928350px;}
.y18a{bottom:502.763100px;}
.y9a{bottom:512.066850px;}
.ye1{bottom:512.292450px;}
.y58{bottom:514.679100px;}
.y15d{bottom:515.276850px;}
.yfa{bottom:516.307350px;}
.yc0{bottom:518.506350px;}
.y7d{bottom:519.042600px;}
.y189{bottom:519.111600px;}
.y120{bottom:519.277350px;}
.y15c{bottom:531.625350px;}
.y2a{bottom:532.256700px;}
.y99{bottom:532.774350px;}
.ye0{bottom:532.999950px;}
.y57{bottom:535.386600px;}
.yf9{bottom:537.014850px;}
.y7c{bottom:539.667600px;}
.y188{bottom:539.712600px;}
.y11f{bottom:539.819850px;}
.y15b{bottom:547.973850px;}
.y98{bottom:553.481850px;}
.ydf{bottom:553.707450px;}
.y187{bottom:556.061100px;}
.y56{bottom:556.094100px;}
.yf8{bottom:557.722350px;}
.y1b4{bottom:560.069850px;}
.y7b{bottom:560.292600px;}
.y11e{bottom:560.362350px;}
.y15a{bottom:564.322350px;}
.y29{bottom:566.456700px;}
.ybf{bottom:568.970100px;}
.y186{bottom:572.409600px;}
.y97{bottom:574.189350px;}
.yde{bottom:574.414950px;}
.yc{bottom:574.420795px;}
.y1b3{bottom:576.418350px;}
.y55{bottom:576.801600px;}
.yf7{bottom:578.429850px;}
.y159{bottom:580.670850px;}
.y11d{bottom:580.904850px;}
.y7a{bottom:580.917600px;}
.y185{bottom:588.758100px;}
.y1b2{bottom:592.766850px;}
.y96{bottom:594.896850px;}
.ydd{bottom:595.122450px;}
.y158{bottom:597.019350px;}
.y54{bottom:597.509100px;}
.yf6{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y11c{bottom:601.447350px;}
.y79{bottom:601.542600px;}
.ybe{bottom:602.794050px;}
.y184{bottom:605.106600px;}
.y1b1{bottom:609.115350px;}
.y157{bottom:613.367850px;}
.ya{bottom:613.549153px;}
.y95{bottom:615.604350px;}
.ydc{bottom:615.829950px;}
.y53{bottom:618.216600px;}
.yf5{bottom:619.844850px;}
.y183{bottom:621.455100px;}
.y11b{bottom:621.989850px;}
.y1b0{bottom:625.463850px;}
.y156{bottom:629.716350px;}
.ydb{bottom:636.537450px;}
.y182{bottom:637.803600px;}
.y52{bottom:638.924100px;}
.y9{bottom:639.571869px;}
.y78{bottom:640.025850px;}
.y94{bottom:640.552350px;}
.ybc{bottom:641.215650px;}
.ybb{bottom:641.469450px;}
.y1af{bottom:641.812350px;}
.ybd{bottom:642.166350px;}
.y11a{bottom:642.532350px;}
.y155{bottom:646.064850px;}
.y3a{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y181{bottom:654.152100px;}
.y24{bottom:657.176850px;}
.yda{bottom:657.244950px;}
.y1ae{bottom:658.160850px;}
.y51{bottom:659.631600px;}
.y93{bottom:661.259850px;}
.y154{bottom:662.413350px;}
.y119{bottom:663.074850px;}
.y7{bottom:666.301723px;}
.y180{bottom:670.500600px;}
.y1ad{bottom:674.509350px;}
.yd9{bottom:677.952450px;}
.y153{bottom:678.761850px;}
.y6{bottom:679.666650px;}
.y50{bottom:680.339100px;}
.yb4{bottom:681.956700px;}
.y92{bottom:681.967350px;}
.y118{bottom:683.617350px;}
.y1c1{bottom:684.473400px;}
.y17f{bottom:686.849100px;}
.y39{bottom:688.792350px;}
.y1ac{bottom:690.857850px;}
.y152{bottom:695.110350px;}
.yd8{bottom:698.659950px;}
.y4f{bottom:701.046600px;}
.y77{bottom:702.674850px;}
.y1c0{bottom:702.954900px;}
.y17e{bottom:703.197600px;}
.y117{bottom:704.159850px;}
.y1ab{bottom:707.206350px;}
.y151{bottom:711.458850px;}
.y1bf{bottom:719.303400px;}
.yd7{bottom:719.367450px;}
.y17d{bottom:719.546100px;}
.yba{bottom:720.786900px;}
.yb5{bottom:721.103850px;}
.yb3{bottom:721.448100px;}
.y4e{bottom:721.754100px;}
.y23{bottom:723.200850px;}
.y76{bottom:723.382350px;}
.y1aa{bottom:723.554850px;}
.y116{bottom:724.702350px;}
.y38{bottom:726.592350px;}
.y150{bottom:727.807350px;}
.yb9{bottom:732.186940px;}
.y1be{bottom:735.651900px;}
.y17c{bottom:735.894600px;}
.yb2{bottom:736.597520px;}
.y1a9{bottom:739.903350px;}
.yb8{bottom:740.741420px;}
.yb6{bottom:740.953050px;}
.y5{bottom:741.942024px;}
.y4d{bottom:742.461600px;}
.y75{bottom:744.089850px;}
.y14f{bottom:744.155850px;}
.yb1{bottom:745.152000px;}
.y115{bottom:745.244850px;}
.yb7{bottom:749.295900px;}
.y1bd{bottom:752.000400px;}
.y17b{bottom:752.243100px;}
.y1a8{bottom:756.251850px;}
.yd6{bottom:757.925850px;}
.y14e{bottom:760.504350px;}
.y4{bottom:761.765488px;}
.y4c{bottom:763.169100px;}
.y37{bottom:764.392350px;}
.y74{bottom:764.797350px;}
.y114{bottom:765.787350px;}
.y1bc{bottom:768.348900px;}
.y17a{bottom:768.591600px;}
.y1a7{bottom:772.600350px;}
.y14d{bottom:776.852850px;}
.yb0{bottom:783.120420px;}
.y4b{bottom:783.876600px;}
.y1bb{bottom:784.697400px;}
.yd5{bottom:784.925850px;}
.y179{bottom:784.940100px;}
.y3{bottom:785.148217px;}
.y73{bottom:785.504850px;}
.y113{bottom:786.329850px;}
.y1a6{bottom:788.948850px;}
.yaf{bottom:790.450200px;}
.y14c{bottom:793.201350px;}
.y1ba{bottom:801.045900px;}
.y178{bottom:801.288600px;}
.y4a{bottom:804.569100px;}
.y1a5{bottom:805.297350px;}
.y72{bottom:806.212350px;}
.yae{bottom:806.372700px;}
.y112{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y14b{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y1b9{bottom:817.394400px;}
.y177{bottom:817.637100px;}
.y1a4{bottom:821.645850px;}
.y49{bottom:825.276600px;}
.y14a{bottom:825.898350px;}
.y71{bottom:826.919850px;}
.y111{bottom:827.414850px;}
.y1b8{bottom:833.742900px;}
.y176{bottom:833.985600px;}
.y1a3{bottom:837.994350px;}
.y36{bottom:839.992350px;}
.y149{bottom:842.246850px;}
.y48{bottom:845.984100px;}
.y70{bottom:847.627350px;}
.y110{bottom:847.957350px;}
.y1b7{bottom:850.091400px;}
.y175{bottom:850.334100px;}
.y1a2{bottom:854.342850px;}
.y148{bottom:858.595350px;}
.y1b6{bottom:866.439900px;}
.y6f{bottom:868.334850px;}
.y10f{bottom:868.499850px;}
.y6d{bottom:869.451300px;}
.y147{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y1b5{bottom:882.788400px;}
.y47{bottom:884.542350px;}
.y6e{bottom:889.042350px;}
.y146{bottom:891.292350px;}
.y46{bottom:952.015800px;}
.h20{height:17.000222px;}
.h1f{height:19.374288px;}
.h21{height:19.765622px;}
.h1e{height:19.890439px;}
.h22{height:21.400622px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.059276px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.074094px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h23{height:42.820312px;}
.h24{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.103732px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1d{height:55.940859px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x15{left:46.771650px;}
.x1a{left:60.271650px;}
.x19{left:76.535400px;}
.x8{left:80.205750px;}
.x13{left:86.049900px;}
.x12{left:93.458400px;}
.x1c{left:97.787400px;}
.xd{left:106.916700px;}
.x11{left:109.908900px;}
.x14{left:114.165900px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x10{left:161.982900px;}
.x1b{left:182.826750px;}
.x23{left:185.418600px;}
.x35{left:188.953950px;}
.x7{left:190.392750px;}
.x33{left:211.350450px;}
.x32{left:216.331950px;}
.x2f{left:235.137450px;}
.xf{left:260.141400px;}
.x1d{left:264.781800px;}
.x21{left:268.362450px;}
.x1e{left:272.042850px;}
.xa{left:281.522250px;}
.x31{left:305.904450px;}
.xe{left:307.133400px;}
.x2d{left:321.847950px;}
.x4{left:344.105623px;}
.x1f{left:350.593659px;}
.x34{left:352.519950px;}
.x20{left:354.789450px;}
.x29{left:357.337500px;}
.x2b{left:382.034700px;}
.x36{left:405.844950px;}
.x16{left:407.083800px;}
.x2c{left:411.420450px;}
.x22{left:419.777850px;}
.x30{left:430.698450px;}
.x26{left:432.337621px;}
.x25{left:434.903250px;}
.x28{left:440.887950px;}
.x2a{left:443.825400px;}
.x2e{left:445.143450px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x24{left:547.377750px;}
.x27{left:549.673195px;}
.x17{left:634.884450px;}
.x18{left:641.303100px;}
@media print{
.v2{vertical-align:-1.833067pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.458133pt;}
.v4{vertical-align:3.911467pt;}
.v1{vertical-align:19.589333pt;}
.ls15{letter-spacing:-2.010667pt;}
.ls11{letter-spacing:-1.664000pt;}
.lsf{letter-spacing:-1.448378pt;}
.ls10{letter-spacing:-0.863945pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.554667pt;}
.ls18{letter-spacing:-0.416000pt;}
.ls3{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.076230pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.021718pt;}
.ls8{letter-spacing:0.025410pt;}
.ls9{letter-spacing:0.050820pt;}
.ls7{letter-spacing:0.065154pt;}
.ls13{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.108589pt;}
.ls6{letter-spacing:0.277333pt;}
.ls14{letter-spacing:0.346667pt;}
.ls4{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.624000pt;}
.lsb{letter-spacing:0.762667pt;}
.ls19{letter-spacing:0.832000pt;}
.ls12{letter-spacing:1.317333pt;}
.ls5{letter-spacing:1.733333pt;}
.lsa{letter-spacing:6.734933pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws4{word-spacing:-21.760000pt;}
.wsb{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws24{word-spacing:-11.472000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:-10.608000pt;}
.ws8{word-spacing:-7.729803pt;}
.wse{word-spacing:-5.793510pt;}
.ws11{word-spacing:-5.768100pt;}
.wsf{word-spacing:-5.666460pt;}
.ws10{word-spacing:-4.973391pt;}
.ws13{word-spacing:-4.878746pt;}
.ws12{word-spacing:-4.294313pt;}
.wsc{word-spacing:-1.733333pt;}
.ws20{word-spacing:-1.317333pt;}
.ws27{word-spacing:-0.832000pt;}
.ws14{word-spacing:-0.762667pt;}
.ws16{word-spacing:-0.673254pt;}
.ws17{word-spacing:-0.629818pt;}
.wsa{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.369204pt;}
.ws1e{word-spacing:-0.355742pt;}
.ws22{word-spacing:-0.346667pt;}
.ws1d{word-spacing:-0.330332pt;}
.wsd{word-spacing:-0.277333pt;}
.ws21{word-spacing:-0.069333pt;}
.ws18{word-spacing:-0.050820pt;}
.ws9{word-spacing:-0.048000pt;}
.ws1c{word-spacing:-0.025410pt;}
.ws1a{word-spacing:-0.021718pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.021718pt;}
.ws1b{word-spacing:0.076230pt;}
.ws7{word-spacing:0.240000pt;}
.ws26{word-spacing:0.416000pt;}
.ws28{word-spacing:0.554667pt;}
.ws25{word-spacing:0.832000pt;}
.ws1f{word-spacing:1.664000pt;}
.ws23{word-spacing:2.010667pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.211733pt;}
._22{margin-left:-10.889600pt;}
._21{margin-left:-6.986612pt;}
._13{margin-left:-6.036267pt;}
._11{margin-left:-4.916800pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._15{width:4.581975pt;}
._19{width:5.490661pt;}
._4{width:6.394632pt;}
._14{width:7.996835pt;}
._9{width:9.122617pt;}
._12{width:10.278599pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._18{width:14.625600pt;}
._17{width:15.546667pt;}
._20{width:16.772800pt;}
._5{width:18.215901pt;}
._16{width:19.594667pt;}
._1f{width:21.243200pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._1e{width:41.904000pt;}
._1a{width:235.392501pt;}
._1c{width:255.794858pt;}
._1b{width:333.566901pt;}
._0{width:729.666877pt;}
._1d{width:970.775658pt;}
.fs15{font-size:21.717867pt;}
.fs14{font-size:25.410133pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs13{font-size:34.202667pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.y6c{bottom:90.719600pt;}
.y10e{bottom:90.806533pt;}
.y91{bottom:90.920533pt;}
.y131{bottom:91.771200pt;}
.yd4{bottom:92.761200pt;}
.y145{bottom:92.928533pt;}
.y45{bottom:97.109733pt;}
.y1a1{bottom:105.104533pt;}
.y6b{bottom:105.383600pt;}
.yad{bottom:105.443867pt;}
.yf4{bottom:105.644400pt;}
.y144{bottom:107.460533pt;}
.y10d{bottom:109.213200pt;}
.y90{bottom:109.253867pt;}
.y1b{bottom:109.706068pt;}
.y130{bottom:110.177867pt;}
.yd3{bottom:111.167867pt;}
.y44{bottom:111.509733pt;}
.y1a0{bottom:119.636533pt;}
.y6a{bottom:120.047600pt;}
.y21{bottom:121.581067pt;}
.y143{bottom:121.992533pt;}
.y174{bottom:123.787867pt;}
.yac{bottom:123.850533pt;}
.yf3{bottom:124.051067pt;}
.y28{bottom:126.612800pt;}
.y8f{bottom:127.587200pt;}
.y10c{bottom:127.619867pt;}
.y12f{bottom:128.437867pt;}
.yd2{bottom:129.574533pt;}
.y43{bottom:129.689733pt;}
.y19f{bottom:134.168533pt;}
.y69{bottom:134.711600pt;}
.y142{bottom:136.524533pt;}
.y173{bottom:138.319867pt;}
.yab{bottom:142.257200pt;}
.yf2{bottom:142.457733pt;}
.y42{bottom:144.089733pt;}
.y8e{bottom:145.920533pt;}
.y10b{bottom:146.026533pt;}
.y12e{bottom:146.697867pt;}
.yd1{bottom:147.981200pt;}
.y19e{bottom:148.700533pt;}
.y68{bottom:149.375600pt;}
.y141{bottom:151.056533pt;}
.y172{bottom:152.851867pt;}
.y41{bottom:158.489733pt;}
.y1a{bottom:159.645796pt;}
.yaa{bottom:160.663867pt;}
.yf1{bottom:160.864400pt;}
.y19d{bottom:163.232533pt;}
.y27{bottom:163.939467pt;}
.y8d{bottom:164.253867pt;}
.y10a{bottom:164.433200pt;}
.y12d{bottom:164.957867pt;}
.y140{bottom:165.588533pt;}
.yd0{bottom:166.387867pt;}
.y171{bottom:167.383867pt;}
.y19{bottom:168.550509pt;}
.y40{bottom:172.889733pt;}
.y18{bottom:176.721893pt;}
.y19c{bottom:177.764533pt;}
.ya9{bottom:179.070533pt;}
.yf0{bottom:179.271067pt;}
.y13f{bottom:180.120533pt;}
.y67{bottom:181.392533pt;}
.y170{bottom:181.915867pt;}
.y8c{bottom:182.587200pt;}
.y26{bottom:182.610133pt;}
.y109{bottom:182.839867pt;}
.y12c{bottom:183.217867pt;}
.y17{bottom:184.138996pt;}
.ycf{bottom:184.794533pt;}
.y3f{bottom:187.289733pt;}
.y16{bottom:191.566574pt;}
.y19b{bottom:192.296533pt;}
.y13e{bottom:194.652533pt;}
.y16f{bottom:196.447867pt;}
.ya8{bottom:197.477200pt;}
.yef{bottom:197.677733pt;}
.y15{bottom:198.994153pt;}
.y66{bottom:199.799200pt;}
.y8b{bottom:200.920533pt;}
.y108{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y12b{bottom:201.477867pt;}
.y3e{bottom:201.689733pt;}
.yce{bottom:203.201200pt;}
.y14{bottom:206.411255pt;}
.y19a{bottom:206.828533pt;}
.y13d{bottom:209.184533pt;}
.y16e{bottom:210.979867pt;}
.y13{bottom:213.838834pt;}
.ya7{bottom:215.883867pt;}
.yee{bottom:216.084400pt;}
.y3d{bottom:216.089733pt;}
.y65{bottom:218.205867pt;}
.y8a{bottom:219.253867pt;}
.y107{bottom:219.653200pt;}
.y12a{bottom:219.737867pt;}
.y12{bottom:221.266412pt;}
.y199{bottom:221.360533pt;}
.ycd{bottom:221.607867pt;}
.y13c{bottom:223.716533pt;}
.y16d{bottom:225.511867pt;}
.y11{bottom:228.683515pt;}
.y3c{bottom:230.489733pt;}
.ya6{bottom:234.290533pt;}
.yed{bottom:234.491067pt;}
.y198{bottom:235.892533pt;}
.y10{bottom:236.111093pt;}
.y64{bottom:236.612533pt;}
.y129{bottom:237.997867pt;}
.y106{bottom:238.059867pt;}
.y13b{bottom:238.248533pt;}
.ycc{bottom:240.014533pt;}
.y16c{bottom:240.043867pt;}
.y89{bottom:241.371200pt;}
.yf{bottom:243.538672pt;}
.y3b{bottom:244.889733pt;}
.ya5{bottom:252.697200pt;}
.y13a{bottom:252.780533pt;}
.y32{bottom:252.826400pt;}
.yec{bottom:252.897733pt;}
.y197{bottom:254.204533pt;}
.y16b{bottom:254.575867pt;}
.y63{bottom:255.019200pt;}
.y128{bottom:256.257867pt;}
.y105{bottom:256.466533pt;}
.ycb{bottom:258.421200pt;}
.ye{bottom:258.812874pt;}
.y88{bottom:259.704533pt;}
.y139{bottom:267.312533pt;}
.y196{bottom:268.736533pt;}
.y16a{bottom:269.107867pt;}
.ya4{bottom:271.103867pt;}
.yeb{bottom:271.304400pt;}
.y31{bottom:271.497067pt;}
.y62{bottom:273.425867pt;}
.y127{bottom:274.517867pt;}
.y104{bottom:274.873200pt;}
.yca{bottom:276.827867pt;}
.y87{bottom:278.037867pt;}
.y138{bottom:281.844533pt;}
.y195{bottom:283.268533pt;}
.y169{bottom:283.639867pt;}
.ya3{bottom:289.510533pt;}
.yea{bottom:289.711067pt;}
.y30{bottom:290.167733pt;}
.y61{bottom:291.832533pt;}
.y126{bottom:292.777867pt;}
.y103{bottom:293.279867pt;}
.yc9{bottom:295.234533pt;}
.y86{bottom:296.371200pt;}
.y137{bottom:296.376533pt;}
.y194{bottom:297.800533pt;}
.y168{bottom:298.171867pt;}
.ya2{bottom:307.917200pt;}
.ye9{bottom:308.117733pt;}
.y2f{bottom:308.838400pt;}
.y60{bottom:310.239200pt;}
.y136{bottom:310.908533pt;}
.y125{bottom:311.037867pt;}
.y102{bottom:311.686533pt;}
.y193{bottom:312.332533pt;}
.y167{bottom:312.703867pt;}
.yc8{bottom:313.641200pt;}
.y85{bottom:314.704533pt;}
.y135{bottom:325.440533pt;}
.ya1{bottom:326.323867pt;}
.ye8{bottom:326.524400pt;}
.y166{bottom:327.235867pt;}
.y2e{bottom:327.509067pt;}
.y5f{bottom:328.645867pt;}
.y101{bottom:330.093200pt;}
.y192{bottom:330.644533pt;}
.yc7{bottom:332.047867pt;}
.y84{bottom:333.037867pt;}
.y134{bottom:339.972533pt;}
.y165{bottom:341.767867pt;}
.ya0{bottom:344.730533pt;}
.ye7{bottom:344.931067pt;}
.y191{bottom:345.176533pt;}
.y124{bottom:345.178533pt;}
.y2d{bottom:346.179733pt;}
.y5e{bottom:347.052533pt;}
.y100{bottom:348.499867pt;}
.yc6{bottom:350.454533pt;}
.y83{bottom:351.371200pt;}
.y133{bottom:354.504533pt;}
.y164{bottom:356.299867pt;}
.y190{bottom:359.708533pt;}
.y9f{bottom:363.137200pt;}
.ye6{bottom:363.337733pt;}
.y2c{bottom:364.850400pt;}
.y5d{bottom:365.459200pt;}
.yd{bottom:366.444668pt;}
.yff{bottom:366.906533pt;}
.yc5{bottom:368.861200pt;}
.y123{bottom:369.178533pt;}
.y82{bottom:369.704533pt;}
.y163{bottom:370.831867pt;}
.y18f{bottom:374.240533pt;}
.y9e{bottom:381.543867pt;}
.ye5{bottom:381.744400pt;}
.y5c{bottom:383.865867pt;}
.y132{bottom:384.911867pt;}
.yfe{bottom:385.313200pt;}
.y162{bottom:385.363867pt;}
.yc4{bottom:387.267867pt;}
.y81{bottom:388.037867pt;}
.y18e{bottom:388.772533pt;}
.y161{bottom:399.895867pt;}
.y9d{bottom:399.950533pt;}
.ye4{bottom:400.151067pt;}
.y5b{bottom:402.272533pt;}
.y18d{bottom:403.304533pt;}
.yfd{bottom:403.719867pt;}
.yc3{bottom:405.674533pt;}
.y80{bottom:406.371200pt;}
.y160{bottom:414.427867pt;}
.y18c{bottom:417.836533pt;}
.y9c{bottom:418.357200pt;}
.ye3{bottom:418.557733pt;}
.y5a{bottom:420.679200pt;}
.yfc{bottom:422.126533pt;}
.yc2{bottom:424.081200pt;}
.y7f{bottom:424.704533pt;}
.y122{bottom:425.059867pt;}
.y15f{bottom:428.959867pt;}
.y18b{bottom:432.368533pt;}
.y9b{bottom:436.763867pt;}
.ye2{bottom:436.964400pt;}
.y59{bottom:439.085867pt;}
.yfb{bottom:440.533200pt;}
.yc1{bottom:442.487867pt;}
.y2b{bottom:442.717067pt;}
.y7e{bottom:443.037867pt;}
.y121{bottom:443.319867pt;}
.y15e{bottom:443.491867pt;}
.y18a{bottom:446.900533pt;}
.y9a{bottom:455.170533pt;}
.ye1{bottom:455.371067pt;}
.y58{bottom:457.492533pt;}
.y15d{bottom:458.023867pt;}
.yfa{bottom:458.939867pt;}
.yc0{bottom:460.894533pt;}
.y7d{bottom:461.371200pt;}
.y189{bottom:461.432533pt;}
.y120{bottom:461.579867pt;}
.y15c{bottom:472.555867pt;}
.y2a{bottom:473.117067pt;}
.y99{bottom:473.577200pt;}
.ye0{bottom:473.777733pt;}
.y57{bottom:475.899200pt;}
.yf9{bottom:477.346533pt;}
.y7c{bottom:479.704533pt;}
.y188{bottom:479.744533pt;}
.y11f{bottom:479.839867pt;}
.y15b{bottom:487.087867pt;}
.y98{bottom:491.983867pt;}
.ydf{bottom:492.184400pt;}
.y187{bottom:494.276533pt;}
.y56{bottom:494.305867pt;}
.yf8{bottom:495.753200pt;}
.y1b4{bottom:497.839867pt;}
.y7b{bottom:498.037867pt;}
.y11e{bottom:498.099867pt;}
.y15a{bottom:501.619867pt;}
.y29{bottom:503.517067pt;}
.ybf{bottom:505.751200pt;}
.y186{bottom:508.808533pt;}
.y97{bottom:510.390533pt;}
.yde{bottom:510.591067pt;}
.yc{bottom:510.596263pt;}
.y1b3{bottom:512.371867pt;}
.y55{bottom:512.712533pt;}
.yf7{bottom:514.159867pt;}
.y159{bottom:516.151867pt;}
.y11d{bottom:516.359867pt;}
.y7a{bottom:516.371200pt;}
.y185{bottom:523.340533pt;}
.y1b2{bottom:526.903867pt;}
.y96{bottom:528.797200pt;}
.ydd{bottom:528.997733pt;}
.y158{bottom:530.683867pt;}
.y54{bottom:531.119200pt;}
.yf6{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y11c{bottom:534.619867pt;}
.y79{bottom:534.704533pt;}
.ybe{bottom:535.816933pt;}
.y184{bottom:537.872533pt;}
.y1b1{bottom:541.435867pt;}
.y157{bottom:545.215867pt;}
.ya{bottom:545.377025pt;}
.y95{bottom:547.203867pt;}
.ydc{bottom:547.404400pt;}
.y53{bottom:549.525867pt;}
.yf5{bottom:550.973200pt;}
.y183{bottom:552.404533pt;}
.y11b{bottom:552.879867pt;}
.y1b0{bottom:555.967867pt;}
.y156{bottom:559.747867pt;}
.ydb{bottom:565.811067pt;}
.y182{bottom:566.936533pt;}
.y52{bottom:567.932533pt;}
.y9{bottom:568.508328pt;}
.y78{bottom:568.911867pt;}
.y94{bottom:569.379867pt;}
.ybc{bottom:569.969467pt;}
.ybb{bottom:570.195067pt;}
.y1af{bottom:570.499867pt;}
.ybd{bottom:570.814533pt;}
.y11a{bottom:571.139867pt;}
.y155{bottom:574.279867pt;}
.y3a{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y181{bottom:581.468533pt;}
.y24{bottom:584.157200pt;}
.yda{bottom:584.217733pt;}
.y1ae{bottom:585.031867pt;}
.y51{bottom:586.339200pt;}
.y93{bottom:587.786533pt;}
.y154{bottom:588.811867pt;}
.y119{bottom:589.399867pt;}
.y7{bottom:592.268198pt;}
.y180{bottom:596.000533pt;}
.y1ad{bottom:599.563867pt;}
.yd9{bottom:602.624400pt;}
.y153{bottom:603.343867pt;}
.y6{bottom:604.148133pt;}
.y50{bottom:604.745867pt;}
.yb4{bottom:606.183733pt;}
.y92{bottom:606.193200pt;}
.y118{bottom:607.659867pt;}
.y1c1{bottom:608.420800pt;}
.y17f{bottom:610.532533pt;}
.y39{bottom:612.259867pt;}
.y1ac{bottom:614.095867pt;}
.y152{bottom:617.875867pt;}
.yd8{bottom:621.031067pt;}
.y4f{bottom:623.152533pt;}
.y77{bottom:624.599867pt;}
.y1c0{bottom:624.848800pt;}
.y17e{bottom:625.064533pt;}
.y117{bottom:625.919867pt;}
.y1ab{bottom:628.627867pt;}
.y151{bottom:632.407867pt;}
.y1bf{bottom:639.380800pt;}
.yd7{bottom:639.437733pt;}
.y17d{bottom:639.596533pt;}
.yba{bottom:640.699467pt;}
.yb5{bottom:640.981200pt;}
.yb3{bottom:641.287200pt;}
.y4e{bottom:641.559200pt;}
.y23{bottom:642.845200pt;}
.y76{bottom:643.006533pt;}
.y1aa{bottom:643.159867pt;}
.y116{bottom:644.179867pt;}
.y38{bottom:645.859867pt;}
.y150{bottom:646.939867pt;}
.yb9{bottom:650.832835pt;}
.y1be{bottom:653.912800pt;}
.y17c{bottom:654.128533pt;}
.yb2{bottom:654.753351pt;}
.y1a9{bottom:657.691867pt;}
.yb8{bottom:658.436818pt;}
.yb6{bottom:658.624933pt;}
.y5{bottom:659.504022pt;}
.y4d{bottom:659.965867pt;}
.y75{bottom:661.413200pt;}
.y14f{bottom:661.471867pt;}
.yb1{bottom:662.357333pt;}
.y115{bottom:662.439867pt;}
.yb7{bottom:666.040800pt;}
.y1bd{bottom:668.444800pt;}
.y17b{bottom:668.660533pt;}
.y1a8{bottom:672.223867pt;}
.yd6{bottom:673.711867pt;}
.y14e{bottom:676.003867pt;}
.y4{bottom:677.124878pt;}
.y4c{bottom:678.372533pt;}
.y37{bottom:679.459867pt;}
.y74{bottom:679.819867pt;}
.y114{bottom:680.699867pt;}
.y1bc{bottom:682.976800pt;}
.y17a{bottom:683.192533pt;}
.y1a7{bottom:686.755867pt;}
.y14d{bottom:690.535867pt;}
.yb0{bottom:696.107040pt;}
.y4b{bottom:696.779200pt;}
.y1bb{bottom:697.508800pt;}
.yd5{bottom:697.711867pt;}
.y179{bottom:697.724533pt;}
.y3{bottom:697.909527pt;}
.y73{bottom:698.226533pt;}
.y113{bottom:698.959867pt;}
.y1a6{bottom:701.287867pt;}
.yaf{bottom:702.622400pt;}
.y14c{bottom:705.067867pt;}
.y1ba{bottom:712.040800pt;}
.y178{bottom:712.256533pt;}
.y4a{bottom:715.172533pt;}
.y1a5{bottom:715.819867pt;}
.y72{bottom:716.633200pt;}
.yae{bottom:716.775733pt;}
.y112{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y14b{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y1b9{bottom:726.572800pt;}
.y177{bottom:726.788533pt;}
.y1a4{bottom:730.351867pt;}
.y49{bottom:733.579200pt;}
.y14a{bottom:734.131867pt;}
.y71{bottom:735.039867pt;}
.y111{bottom:735.479867pt;}
.y1b8{bottom:741.104800pt;}
.y176{bottom:741.320533pt;}
.y1a3{bottom:744.883867pt;}
.y36{bottom:746.659867pt;}
.y149{bottom:748.663867pt;}
.y48{bottom:751.985867pt;}
.y70{bottom:753.446533pt;}
.y110{bottom:753.739867pt;}
.y1b7{bottom:755.636800pt;}
.y175{bottom:755.852533pt;}
.y1a2{bottom:759.415867pt;}
.y148{bottom:763.195867pt;}
.y1b6{bottom:770.168800pt;}
.y6f{bottom:771.853200pt;}
.y10f{bottom:771.999867pt;}
.y6d{bottom:772.845600pt;}
.y147{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y1b5{bottom:784.700800pt;}
.y47{bottom:786.259867pt;}
.y6e{bottom:790.259867pt;}
.y146{bottom:792.259867pt;}
.y46{bottom:846.236267pt;}
.h20{height:15.111309pt;}
.h1f{height:17.221590pt;}
.h21{height:17.569442pt;}
.h1e{height:17.680391pt;}
.h22{height:19.022775pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.941578pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.176973pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h23{height:38.062500pt;}
.h24{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.647762pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1d{height:49.725208pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x15{left:41.574800pt;}
.x1a{left:53.574800pt;}
.x19{left:68.031467pt;}
.x8{left:71.294000pt;}
.x13{left:76.488800pt;}
.x12{left:83.074133pt;}
.x1c{left:86.922133pt;}
.xd{left:95.037067pt;}
.x11{left:97.696800pt;}
.x14{left:101.480800pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x10{left:143.984800pt;}
.x1b{left:162.512667pt;}
.x23{left:164.816533pt;}
.x35{left:167.959067pt;}
.x7{left:169.238000pt;}
.x33{left:187.867067pt;}
.x32{left:192.295067pt;}
.x2f{left:209.011067pt;}
.xf{left:231.236800pt;}
.x1d{left:235.361600pt;}
.x21{left:238.544400pt;}
.x1e{left:241.815867pt;}
.xa{left:250.242000pt;}
.x31{left:271.915067pt;}
.xe{left:273.007467pt;}
.x2d{left:286.087067pt;}
.x4{left:305.871665pt;}
.x1f{left:311.638808pt;}
.x34{left:313.351067pt;}
.x20{left:315.368400pt;}
.x29{left:317.633333pt;}
.x2b{left:339.586400pt;}
.x36{left:360.751067pt;}
.x16{left:361.852267pt;}
.x2c{left:365.707067pt;}
.x22{left:373.135867pt;}
.x30{left:382.843067pt;}
.x26{left:384.300107pt;}
.x25{left:386.580667pt;}
.x28{left:391.900400pt;}
.x2a{left:394.511467pt;}
.x2e{left:395.683067pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x24{left:486.558000pt;}
.x27{left:488.598396pt;}
.x17{left:564.341733pt;}
.x18{left:570.047200pt;}
}




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