
    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_1bdf628cd56e9691a4c51e84.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_891025d50144b3dea20498ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_d1cd57902e858751ca42356b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_57cf0326d0de1e274b08387d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_bdc1f92d444b29fed3d3e3ec.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_3ad94c0cf501111166e0fe98.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_757dd20dc82daaa49d481879.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_4fd1ced8eb5b69e747e166bb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_e0806866fc832558552ba993.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892578;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_e2c68a23465b0b95e504e35c.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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_c40c8657ada8d71a3abf96a9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_6d3b024c25d0d455eea9b388.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_6e1637140d4946d85f35aceb.woff')format("woff");}.ff13{font-family:ff13;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.290000px;}
.ls21{letter-spacing:-1.176000px;}
.ls22{letter-spacing:-0.870000px;}
.ls20{letter-spacing:-0.828000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.114000px;}
.ls19{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls17{letter-spacing:0.109200px;}
.lse{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsd{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls18{letter-spacing:3.600000px;}
.ls25{letter-spacing:6.785280px;}
.ls10{letter-spacing:15.840000px;}
.ls1a{letter-spacing:20.280000px;}
.ls1b{letter-spacing:20.304000px;}
.lsf{letter-spacing:39.905280px;}
.ls23{letter-spacing:73.416000px;}
.ls24{letter-spacing:83.520000px;}
.ls1c{letter-spacing:181.416000px;}
.ls5{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.000000px;}
.wsb{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.784000px;}
.wse{word-spacing:-17.127600px;}
.wsc{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.450800px;}
.ws10{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.wsf{word-spacing:-16.145400px;}
.ws15{word-spacing:-15.948000px;}
.ws4{word-spacing:-15.912000px;}
.wsd{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.732000px;}
.ws5{word-spacing:-15.696000px;}
.ws18{word-spacing:-15.384000px;}
.ws14{word-spacing:-15.270000px;}
.ws16{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.650800px;}
.wsa{word-spacing:0.000000px;}
._33{margin-left:-4.696800px;}
._21{margin-left:-3.636000px;}
._20{margin-left:-2.230320px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.355600px;}
._3{width:3.445200px;}
._b{width:4.574880px;}
._a{width:5.630400px;}
._6{width:6.718080px;}
._9{width:7.750080px;}
._4{width:9.383040px;}
._5{width:10.995840px;}
._d{width:13.022640px;}
._c{width:14.572800px;}
._30{width:17.818560px;}
._1a{width:19.474560px;}
._10{width:21.196800px;}
._14{width:22.587840px;}
._26{width:24.345360px;}
._13{width:25.899840px;}
._11{width:27.555840px;}
._32{width:28.591920px;}
._16{width:30.130560px;}
._17{width:31.993920px;}
._8{width:33.451200px;}
._2c{width:34.586400px;}
._2b{width:36.202320px;}
._2f{width:37.293120px;}
._18{width:38.750400px;}
._19{width:40.242960px;}
._24{width:41.461680px;}
._22{width:42.989760px;}
._23{width:44.110560px;}
._25{width:45.971040px;}
._15{width:47.324160px;}
._4c{width:48.399600px;}
._29{width:49.715280px;}
._12{width:51.865920px;}
._f{width:53.720640px;}
._e{width:55.411920px;}
._2d{width:56.467440px;}
._31{width:58.360080px;}
._37{width:59.947200px;}
._50{width:61.398480px;}
._39{width:63.060480px;}
._38{width:64.186560px;}
._27{width:65.199120px;}
._7{width:66.306240px;}
._2a{width:68.344560px;}
._2e{width:70.015680px;}
._35{width:71.737920px;}
._3d{width:82.513920px;}
._28{width:84.456000px;}
._3f{width:89.479680px;}
._3e{width:90.923280px;}
._4a{width:96.785280px;}
._36{width:107.012880px;}
._48{width:108.317520px;}
._47{width:109.838160px;}
._3a{width:113.081040px;}
._41{width:116.944560px;}
._40{width:127.094160px;}
._4b{width:131.287680px;}
._4f{width:138.283200px;}
._4e{width:139.563120px;}
._1e{width:151.520640px;}
._1d{width:152.893440px;}
._45{width:158.348880px;}
._46{width:159.878880px;}
._44{width:167.388480px;}
._43{width:169.116960px;}
._34{width:181.416000px;}
._42{width:185.904000px;}
._1b{width:189.617520px;}
._3b{width:192.551280px;}
._1c{width:197.647200px;}
._51{width:198.771840px;}
._1f{width:201.060000px;}
._3c{width:406.260000px;}
._4d{width:691.876800px;}
._49{width:713.338560px;}
._52{width:847.596000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(55,65,81);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc4{color:rgb(31,32,35);}
.fc3{color:rgb(49,49,49);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1a{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.yc7{bottom:3.945000px;}
.yb7{bottom:3.960000px;}
.yd3{bottom:4.005000px;}
.yc5{bottom:4.125000px;}
.ybe{bottom:4.140000px;}
.y94{bottom:5.400000px;}
.yf6{bottom:5.565000px;}
.y8f{bottom:5.580000px;}
.yfe{bottom:5.760000px;}
.y8d{bottom:5.940000px;}
.y103{bottom:5.970000px;}
.yaa{bottom:5.985000px;}
.ye1{bottom:6.120000px;}
.ye3{bottom:6.480000px;}
.y8{bottom:6.660000px;}
.yee{bottom:7.365000px;}
.ya{bottom:7.380000px;}
.yf4{bottom:7.545000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yfa{bottom:9.210000px;}
.yf0{bottom:9.525000px;}
.yfc{bottom:9.540000px;}
.yd1{bottom:22.860000px;}
.yba{bottom:23.040000px;}
.yed{bottom:26.265000px;}
.y92{bottom:26.280000px;}
.yf3{bottom:26.445000px;}
.y8b{bottom:26.460000px;}
.y16{bottom:26.505000px;}
.yf8{bottom:26.805000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y1{bottom:51.480000px;}
.y15{bottom:55.485000px;}
.y3f{bottom:75.240000px;}
.y14{bottom:78.345000px;}
.y13{bottom:93.285000px;}
.y100{bottom:115.200000px;}
.ycd{bottom:118.620000px;}
.ya2{bottom:126.900000px;}
.y3b{bottom:129.060000px;}
.y70{bottom:133.740000px;}
.y6a{bottom:134.100000px;}
.ycc{bottom:134.640000px;}
.yff{bottom:136.800000px;}
.ya1{bottom:151.560000px;}
.y3a{bottom:153.720000px;}
.ycb{bottom:154.440000px;}
.yfd{bottom:158.040000px;}
.y69{bottom:158.760000px;}
.yca{bottom:174.060000px;}
.y12d{bottom:177.840000px;}
.y39{bottom:178.380000px;}
.yfb{bottom:179.460000px;}
.y157{bottom:181.620000px;}
.y68{bottom:183.420000px;}
.ya0{bottom:184.860000px;}
.yc9{bottom:193.860000px;}
.y12c{bottom:199.620000px;}
.y38{bottom:203.040000px;}
.y156{bottom:203.400000px;}
.yf9{bottom:204.660000px;}
.y67{bottom:208.110000px;}
.yc8{bottom:213.525000px;}
.y12b{bottom:221.430000px;}
.y155{bottom:225.390000px;}
.y37{bottom:227.730000px;}
.yf7{bottom:229.545000px;}
.y66{bottom:232.770000px;}
.yc6{bottom:233.325000px;}
.y12a{bottom:243.210000px;}
.y154{bottom:247.170000px;}
.y36{bottom:252.390000px;}
.yc4{bottom:252.945000px;}
.y65{bottom:257.430000px;}
.y129{bottom:265.170000px;}
.y153{bottom:268.950000px;}
.yf5{bottom:272.025000px;}
.y35{bottom:277.050000px;}
.y64{bottom:282.090000px;}
.y128{bottom:286.950000px;}
.y152{bottom:290.730000px;}
.yf2{bottom:293.265000px;}
.y34{bottom:301.710000px;}
.y63{bottom:306.750000px;}
.yc3{bottom:307.110000px;}
.y127{bottom:309.270000px;}
.y151{bottom:312.690000px;}
.y33{bottom:326.370000px;}
.y62{bottom:331.410000px;}
.yc2{bottom:331.770000px;}
.y126{bottom:333.030000px;}
.y150{bottom:334.470000px;}
.yf1{bottom:335.385000px;}
.y32{bottom:351.030000px;}
.y61{bottom:356.070000px;}
.y14f{bottom:356.250000px;}
.yc1{bottom:356.430000px;}
.y125{bottom:356.790000px;}
.yef{bottom:360.585000px;}
.y31{bottom:375.690000px;}
.y14e{bottom:378.030000px;}
.y124{bottom:380.190000px;}
.y60{bottom:380.730000px;}
.yc0{bottom:381.090000px;}
.yec{bottom:385.785000px;}
.y14d{bottom:399.810000px;}
.y30{bottom:400.350000px;}
.y123{bottom:401.970000px;}
.y6f{bottom:405.030000px;}
.y5f{bottom:405.390000px;}
.ybf{bottom:405.750000px;}
.y9f{bottom:419.250000px;}
.y14c{bottom:421.770000px;}
.y122{bottom:423.750000px;}
.y2f{bottom:425.010000px;}
.y5e{bottom:430.050000px;}
.yeb{bottom:437.250000px;}
.y14b{bottom:443.595000px;}
.y121{bottom:445.575000px;}
.y2e{bottom:449.715000px;}
.y5d{bottom:454.755000px;}
.y9e{bottom:457.095000px;}
.ye9{bottom:462.315000px;}
.y14a{bottom:465.375000px;}
.y120{bottom:467.535000px;}
.ybd{bottom:470.775000px;}
.y2d{bottom:474.375000px;}
.y5c{bottom:479.595000px;}
.y9d{bottom:482.475000px;}
.ye8{bottom:486.975000px;}
.y149{bottom:487.155000px;}
.y11f{bottom:489.315000px;}
.ybc{bottom:490.575000px;}
.y2c{bottom:498.675000px;}
.y3c{bottom:499.035000px;}
.y5b{bottom:504.255000px;}
.y9c{bottom:507.135000px;}
.y148{bottom:508.935000px;}
.y11e{bottom:511.095000px;}
.ye7{bottom:511.275000px;}
.yea{bottom:511.635000px;}
.y2b{bottom:523.335000px;}
.y5a{bottom:528.915000px;}
.ybb{bottom:529.275000px;}
.y147{bottom:530.895000px;}
.y9b{bottom:531.795000px;}
.y11d{bottom:532.875000px;}
.ye6{bottom:535.935000px;}
.y2a{bottom:547.455000px;}
.ye5{bottom:551.955000px;}
.y146{bottom:552.675000px;}
.y59{bottom:553.575000px;}
.y11c{bottom:554.655000px;}
.y9a{bottom:556.095000px;}
.yb9{bottom:567.975000px;}
.y29{bottom:569.415000px;}
.ye4{bottom:574.275000px;}
.y145{bottom:574.455000px;}
.y11b{bottom:576.615000px;}
.y6e{bottom:577.875000px;}
.y58{bottom:578.235000px;}
.y99{bottom:581.115000px;}
.y28{bottom:593.715000px;}
.y144{bottom:596.235000px;}
.ye2{bottom:596.595000px;}
.y11a{bottom:598.395000px;}
.y6d{bottom:602.535000px;}
.y57{bottom:602.895000px;}
.y98{bottom:605.775000px;}
.yb8{bottom:606.675000px;}
.y27{bottom:615.495000px;}
.y143{bottom:618.195000px;}
.ye0{bottom:618.915000px;}
.y119{bottom:620.175000px;}
.yb6{bottom:626.475000px;}
.y72{bottom:627.195000px;}
.y56{bottom:627.555000px;}
.y97{bottom:630.435000px;}
.y26{bottom:637.455000px;}
.y142{bottom:639.975000px;}
.ydf{bottom:640.695000px;}
.y118{bottom:641.955000px;}
.y96{bottom:646.095000px;}
.y55{bottom:652.215000px;}
.yb5{bottom:655.455000px;}
.y25{bottom:659.235000px;}
.y141{bottom:661.755000px;}
.y117{bottom:663.915000px;}
.y95{bottom:667.695000px;}
.yde{bottom:672.375000px;}
.y54{bottom:676.905000px;}
.yb4{bottom:680.505000px;}
.y24{bottom:681.045000px;}
.y140{bottom:683.565000px;}
.y116{bottom:685.365000px;}
.y93{bottom:689.325000px;}
.ydc{bottom:697.425000px;}
.y53{bottom:701.565000px;}
.y23{bottom:702.825000px;}
.yb3{bottom:705.165000px;}
.y13f{bottom:705.345000px;}
.y115{bottom:710.025000px;}
.y91{bottom:710.565000px;}
.ydb{bottom:722.085000px;}
.y22{bottom:724.605000px;}
.y52{bottom:726.225000px;}
.y13e{bottom:727.305000px;}
.yb2{bottom:729.825000px;}
.y114{bottom:735.045000px;}
.y21{bottom:746.565000px;}
.yda{bottom:746.745000px;}
.y13d{bottom:749.085000px;}
.y51{bottom:750.885000px;}
.y90{bottom:752.505000px;}
.yb1{bottom:754.485000px;}
.y113{bottom:759.705000px;}
.y20{bottom:768.345000px;}
.y13c{bottom:770.865000px;}
.yd9{bottom:771.045000px;}
.ydd{bottom:771.405000px;}
.y8e{bottom:774.105000px;}
.y50{bottom:775.185000px;}
.y6c{bottom:775.545000px;}
.yb0{bottom:779.145000px;}
.y112{bottom:784.365000px;}
.y1f{bottom:790.125000px;}
.y13b{bottom:792.645000px;}
.y8c{bottom:795.345000px;}
.yd8{bottom:795.705000px;}
.y4f{bottom:799.845000px;}
.y6b{bottom:800.205000px;}
.yaf{bottom:803.445000px;}
.y111{bottom:809.025000px;}
.yd7{bottom:811.725000px;}
.y1e{bottom:811.905000px;}
.y13a{bottom:814.605000px;}
.y8a{bottom:816.945000px;}
.y4e{bottom:824.865000px;}
.yae{bottom:828.105000px;}
.yd6{bottom:831.525000px;}
.y110{bottom:833.685000px;}
.y1d{bottom:833.865000px;}
.y139{bottom:836.925000px;}
.yad{bottom:844.305000px;}
.y4d{bottom:849.525000px;}
.yd5{bottom:851.145000px;}
.y1c{bottom:855.645000px;}
.y10f{bottom:858.345000px;}
.y138{bottom:860.685000px;}
.yac{bottom:865.365000px;}
.y89{bottom:868.425000px;}
.y4c{bottom:874.185000px;}
.y1b{bottom:877.065000px;}
.y10e{bottom:883.005000px;}
.y137{bottom:883.905000px;}
.y18{bottom:883.967108px;}
.yab{bottom:886.965000px;}
.yd4{bottom:889.845000px;}
.y19{bottom:892.365000px;}
.y88{bottom:893.445000px;}
.y4b{bottom:898.845000px;}
.y12{bottom:899.565000px;}
.y17{bottom:903.893108px;}
.y7c{bottom:904.785000px;}
.y136{bottom:905.685000px;}
.y10d{bottom:907.665000px;}
.ya9{bottom:908.205000px;}
.yd2{bottom:909.645000px;}
.y87{bottom:918.150000px;}
.y4a{bottom:923.550000px;}
.y135{bottom:927.690000px;}
.yd0{bottom:929.490000px;}
.ya8{bottom:929.850000px;}
.y7b{bottom:932.190000px;}
.y10c{bottom:932.370000px;}
.y86{bottom:942.810000px;}
.y49{bottom:948.210000px;}
.y134{bottom:949.470000px;}
.ya7{bottom:951.090000px;}
.y10b{bottom:957.030000px;}
.y7a{bottom:959.190000px;}
.y85{bottom:967.470000px;}
.ycf{bottom:968.190000px;}
.y133{bottom:971.250000px;}
.ya6{bottom:972.690000px;}
.y48{bottom:972.870000px;}
.y10a{bottom:981.690000px;}
.y79{bottom:985.110000px;}
.y84{bottom:992.130000px;}
.y132{bottom:993.030000px;}
.ya5{bottom:994.290000px;}
.yce{bottom:997.170000px;}
.y47{bottom:997.530000px;}
.y109{bottom:1006.350000px;}
.y78{bottom:1010.310000px;}
.y131{bottom:1014.990000px;}
.ya4{bottom:1015.530000px;}
.y83{bottom:1016.790000px;}
.y10{bottom:1018.590000px;}
.y46{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y108{bottom:1031.010000px;}
.y130{bottom:1036.770000px;}
.y77{bottom:1037.670000px;}
.y82{bottom:1041.450000px;}
.ya3{bottom:1046.490000px;}
.y45{bottom:1046.850000px;}
.y107{bottom:1055.670000px;}
.y12f{bottom:1058.550000px;}
.y76{bottom:1064.850000px;}
.y81{bottom:1066.110000px;}
.y44{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y106{bottom:1079.970000px;}
.y12e{bottom:1080.330000px;}
.y9{bottom:1081.950000px;}
.y80{bottom:1090.770000px;}
.y75{bottom:1092.210000px;}
.y43{bottom:1096.170000px;}
.y105{bottom:1104.630000px;}
.y2{bottom:1106.250000px;}
.y7f{bottom:1115.430000px;}
.y74{bottom:1119.210000px;}
.y104{bottom:1120.650000px;}
.y42{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y7e{bottom:1140.270000px;}
.y102{bottom:1142.250000px;}
.y73{bottom:1145.130000px;}
.y41{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y101{bottom:1163.880000px;}
.y7d{bottom:1167.660000px;}
.y71{bottom:1169.820000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h17{height:7.200000px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h2b{height:18.885000px;}
.h31{height:18.898500px;}
.h30{height:18.900000px;}
.h33{height:18.922500px;}
.h2e{height:18.936000px;}
.h11{height:19.008000px;}
.h2d{height:19.065000px;}
.h2f{height:19.080000px;}
.h25{height:20.340000px;}
.h29{height:20.505000px;}
.h3f{height:20.518500px;}
.h23{height:20.520000px;}
.h3e{height:20.700000px;}
.h27{height:20.865000px;}
.h40{height:20.878500px;}
.h22{height:20.880000px;}
.h2a{height:20.902500px;}
.h26{height:20.910000px;}
.h36{height:21.045000px;}
.h37{height:21.405000px;}
.h35{height:21.585000px;}
.h8{height:22.305000px;}
.h3c{height:24.156000px;}
.ha{height:24.285000px;}
.h39{height:24.465000px;}
.h3d{height:24.480000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.h32{height:37.785000px;}
.h2c{height:37.965000px;}
.h34{height:37.980000px;}
.h38{height:41.205000px;}
.h24{height:41.220000px;}
.h3a{height:41.385000px;}
.h21{height:41.400000px;}
.h3b{height:41.745000px;}
.h14{height:44.496211px;}
.h1e{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h28{height:65.884219px;}
.h43{height:66.078281px;}
.h1a{height:66.757500px;}
.h1f{height:68.084282px;}
.h41{height:70.628906px;}
.h42{height:70.664062px;}
.h6{height:71.324297px;}
.h16{height:72.562500px;}
.h20{height:74.004654px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:37.429500px;}
.w16{width:37.789500px;}
.w10{width:38.149500px;}
.w18{width:40.485000px;}
.wc{width:41.389500px;}
.w12{width:41.436000px;}
.w1c{width:42.105000px;}
.w14{width:43.549500px;}
.we{width:52.740000px;}
.w1f{width:54.165000px;}
.wa{width:63.705000px;}
.w8{width:101.505000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wd{width:202.515000px;}
.w11{width:215.475000px;}
.wb{width:225.015000px;}
.w9{width:235.860000px;}
.w20{width:255.795000px;}
.w1d{width:265.695000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w19{width:277.935000px;}
.w1e{width:277.980000px;}
.w1b{width:286.620000px;}
.w17{width:297.780000px;}
.wf{width:336.495000px;}
.w13{width:350.700000px;}
.w3{width:553.590000px;}
.w15{width:607.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x45{left:13.140000px;}
.x13{left:16.009500px;}
.x3d{left:17.269500px;}
.x38{left:18.930000px;}
.x10{left:20.685000px;}
.x2d{left:22.665000px;}
.x2e{left:23.925000px;}
.x32{left:25.410000px;}
.x36{left:27.030000px;}
.x2b{left:28.065000px;}
.x50{left:31.125000px;}
.xb{left:34.185000px;}
.x31{left:36.345000px;}
.x29{left:38.550000px;}
.x52{left:39.765000px;}
.x37{left:42.645000px;}
.x4b{left:44.625000px;}
.x27{left:47.325000px;}
.x33{left:48.450000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2f{left:57.990000px;}
.x2{left:60.841500px;}
.x30{left:66.810000px;}
.x35{left:72.030000px;}
.x4d{left:73.245000px;}
.x4e{left:74.685000px;}
.x34{left:79.410000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x5a{left:86.205000px;}
.x4f{left:89.445000px;}
.xd{left:95.925000px;}
.x2a{left:97.590000px;}
.x16{left:101.143500px;}
.x51{left:104.385000px;}
.x53{left:106.365000px;}
.x8{left:107.850000px;}
.x1f{left:108.936000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x54{left:112.170000px;}
.x58{left:113.430000px;}
.x57{left:115.590000px;}
.x4a{left:118.306500px;}
.x47{left:120.646500px;}
.x1e{left:122.436000px;}
.x17{left:123.643500px;}
.x59{left:127.830000px;}
.x3c{left:128.926500px;}
.x23{left:132.156000px;}
.x5f{left:135.036000px;}
.x15{left:147.403500px;}
.x41{left:149.806500px;}
.x5e{left:153.390000px;}
.x26{left:157.725000px;}
.x1b{left:162.030000px;}
.x48{left:164.925000px;}
.x4{left:168.885000px;}
.x3e{left:171.045000px;}
.x42{left:188.685000px;}
.x18{left:206.308500px;}
.x6{left:209.010000px;}
.x3b{left:221.070000px;}
.x39{left:238.350000px;}
.x28{left:260.145000px;}
.x5b{left:289.875000px;}
.x14{left:315.928500px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.x46{left:339.015000px;}
.x40{left:355.395000px;}
.x49{left:368.715000px;}
.x25{left:374.475000px;}
.x43{left:404.895000px;}
.x3f{left:427.755000px;}
.xa{left:445.620000px;}
.x44{left:447.060000px;}
.x5c{left:450.120000px;}
.x4c{left:455.520000px;}
.x1c{left:473.505000px;}
.x55{left:475.500000px;}
.x21{left:488.985000px;}
.x24{left:497.625000px;}
.x20{left:500.505000px;}
.x5d{left:505.020000px;}
.x22{left:515.985000px;}
.x56{left:518.340000px;}
.x1d{left:527.505000px;}
.x2c{left:561.360000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
.x3a{left:771.990000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.146667pt;}
.ls21{letter-spacing:-1.045333pt;}
.ls22{letter-spacing:-0.773333pt;}
.ls20{letter-spacing:-0.736000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.101333pt;}
.ls19{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls17{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsd{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls25{letter-spacing:6.031360pt;}
.ls10{letter-spacing:14.080000pt;}
.ls1a{letter-spacing:18.026667pt;}
.ls1b{letter-spacing:18.048000pt;}
.lsf{letter-spacing:35.471360pt;}
.ls23{letter-spacing:65.258667pt;}
.ls24{letter-spacing:74.240000pt;}
.ls1c{letter-spacing:161.258667pt;}
.ls5{letter-spacing:177.258667pt;}
.ws13{word-spacing:-64.000000pt;}
.wsb{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.224533pt;}
.wsc{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.622933pt;}
.ws10{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.351467pt;}
.ws15{word-spacing:-14.176000pt;}
.ws4{word-spacing:-14.144000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.984000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws18{word-spacing:-13.674667pt;}
.ws14{word-spacing:-13.573333pt;}
.ws16{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsa{word-spacing:0.000000pt;}
._33{margin-left:-4.174933pt;}
._21{margin-left:-3.232000pt;}
._20{margin-left:-1.982507pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.093867pt;}
._3{width:3.062400pt;}
._b{width:4.066560pt;}
._a{width:5.004800pt;}
._6{width:5.971627pt;}
._9{width:6.888960pt;}
._4{width:8.340480pt;}
._5{width:9.774080pt;}
._d{width:11.575680pt;}
._c{width:12.953600pt;}
._30{width:15.838720pt;}
._1a{width:17.310720pt;}
._10{width:18.841600pt;}
._14{width:20.078080pt;}
._26{width:21.640320pt;}
._13{width:23.022080pt;}
._11{width:24.494080pt;}
._32{width:25.415040pt;}
._16{width:26.782720pt;}
._17{width:28.439040pt;}
._8{width:29.734400pt;}
._2c{width:30.743467pt;}
._2b{width:32.179840pt;}
._2f{width:33.149440pt;}
._18{width:34.444800pt;}
._19{width:35.771520pt;}
._24{width:36.854827pt;}
._22{width:38.213120pt;}
._23{width:39.209387pt;}
._25{width:40.863147pt;}
._15{width:42.065920pt;}
._4c{width:43.021867pt;}
._29{width:44.191360pt;}
._12{width:46.103040pt;}
._f{width:47.751680pt;}
._e{width:49.255040pt;}
._2d{width:50.193280pt;}
._31{width:51.875627pt;}
._37{width:53.286400pt;}
._50{width:54.576427pt;}
._39{width:56.053760pt;}
._38{width:57.054720pt;}
._27{width:57.954773pt;}
._7{width:58.938880pt;}
._2a{width:60.750720pt;}
._2e{width:62.236160pt;}
._35{width:63.767040pt;}
._3d{width:73.345707pt;}
._28{width:75.072000pt;}
._3f{width:79.537493pt;}
._3e{width:80.820693pt;}
._4a{width:86.031360pt;}
._36{width:95.122560pt;}
._48{width:96.282240pt;}
._47{width:97.633920pt;}
._3a{width:100.516480pt;}
._41{width:103.950720pt;}
._40{width:112.972587pt;}
._4b{width:116.700160pt;}
._4f{width:122.918400pt;}
._4e{width:124.056107pt;}
._1e{width:134.685013pt;}
._1d{width:135.905280pt;}
._45{width:140.754560pt;}
._46{width:142.114560pt;}
._44{width:148.789760pt;}
._43{width:150.326187pt;}
._34{width:161.258667pt;}
._42{width:165.248000pt;}
._1b{width:168.548907pt;}
._3b{width:171.156693pt;}
._1c{width:175.686400pt;}
._51{width:176.686080pt;}
._1f{width:178.720000pt;}
._3c{width:361.120000pt;}
._4d{width:615.001600pt;}
._49{width:634.078720pt;}
._52{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1a{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.yc7{bottom:3.506667pt;}
.yb7{bottom:3.520000pt;}
.yd3{bottom:3.560000pt;}
.yc5{bottom:3.666667pt;}
.ybe{bottom:3.680000pt;}
.y94{bottom:4.800000pt;}
.yf6{bottom:4.946667pt;}
.y8f{bottom:4.960000pt;}
.yfe{bottom:5.120000pt;}
.y8d{bottom:5.280000pt;}
.y103{bottom:5.306667pt;}
.yaa{bottom:5.320000pt;}
.ye1{bottom:5.440000pt;}
.ye3{bottom:5.760000pt;}
.y8{bottom:5.920000pt;}
.yee{bottom:6.546667pt;}
.ya{bottom:6.560000pt;}
.yf4{bottom:6.706667pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yfa{bottom:8.186667pt;}
.yf0{bottom:8.466667pt;}
.yfc{bottom:8.480000pt;}
.yd1{bottom:20.320000pt;}
.yba{bottom:20.480000pt;}
.yed{bottom:23.346667pt;}
.y92{bottom:23.360000pt;}
.yf3{bottom:23.506667pt;}
.y8b{bottom:23.520000pt;}
.y16{bottom:23.560000pt;}
.yf8{bottom:23.826667pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y1{bottom:45.760000pt;}
.y15{bottom:49.320000pt;}
.y3f{bottom:66.880000pt;}
.y14{bottom:69.640000pt;}
.y13{bottom:82.920000pt;}
.y100{bottom:102.400000pt;}
.ycd{bottom:105.440000pt;}
.ya2{bottom:112.800000pt;}
.y3b{bottom:114.720000pt;}
.y70{bottom:118.880000pt;}
.y6a{bottom:119.200000pt;}
.ycc{bottom:119.680000pt;}
.yff{bottom:121.600000pt;}
.ya1{bottom:134.720000pt;}
.y3a{bottom:136.640000pt;}
.ycb{bottom:137.280000pt;}
.yfd{bottom:140.480000pt;}
.y69{bottom:141.120000pt;}
.yca{bottom:154.720000pt;}
.y12d{bottom:158.080000pt;}
.y39{bottom:158.560000pt;}
.yfb{bottom:159.520000pt;}
.y157{bottom:161.440000pt;}
.y68{bottom:163.040000pt;}
.ya0{bottom:164.320000pt;}
.yc9{bottom:172.320000pt;}
.y12c{bottom:177.440000pt;}
.y38{bottom:180.480000pt;}
.y156{bottom:180.800000pt;}
.yf9{bottom:181.920000pt;}
.y67{bottom:184.986667pt;}
.yc8{bottom:189.800000pt;}
.y12b{bottom:196.826667pt;}
.y155{bottom:200.346667pt;}
.y37{bottom:202.426667pt;}
.yf7{bottom:204.040000pt;}
.y66{bottom:206.906667pt;}
.yc6{bottom:207.400000pt;}
.y12a{bottom:216.186667pt;}
.y154{bottom:219.706667pt;}
.y36{bottom:224.346667pt;}
.yc4{bottom:224.840000pt;}
.y65{bottom:228.826667pt;}
.y129{bottom:235.706667pt;}
.y153{bottom:239.066667pt;}
.yf5{bottom:241.800000pt;}
.y35{bottom:246.266667pt;}
.y64{bottom:250.746667pt;}
.y128{bottom:255.066667pt;}
.y152{bottom:258.426667pt;}
.yf2{bottom:260.680000pt;}
.y34{bottom:268.186667pt;}
.y63{bottom:272.666667pt;}
.yc3{bottom:272.986667pt;}
.y127{bottom:274.906667pt;}
.y151{bottom:277.946667pt;}
.y33{bottom:290.106667pt;}
.y62{bottom:294.586667pt;}
.yc2{bottom:294.906667pt;}
.y126{bottom:296.026667pt;}
.y150{bottom:297.306667pt;}
.yf1{bottom:298.120000pt;}
.y32{bottom:312.026667pt;}
.y61{bottom:316.506667pt;}
.y14f{bottom:316.666667pt;}
.yc1{bottom:316.826667pt;}
.y125{bottom:317.146667pt;}
.yef{bottom:320.520000pt;}
.y31{bottom:333.946667pt;}
.y14e{bottom:336.026667pt;}
.y124{bottom:337.946667pt;}
.y60{bottom:338.426667pt;}
.yc0{bottom:338.746667pt;}
.yec{bottom:342.920000pt;}
.y14d{bottom:355.386667pt;}
.y30{bottom:355.866667pt;}
.y123{bottom:357.306667pt;}
.y6f{bottom:360.026667pt;}
.y5f{bottom:360.346667pt;}
.ybf{bottom:360.666667pt;}
.y9f{bottom:372.666667pt;}
.y14c{bottom:374.906667pt;}
.y122{bottom:376.666667pt;}
.y2f{bottom:377.786667pt;}
.y5e{bottom:382.266667pt;}
.yeb{bottom:388.666667pt;}
.y14b{bottom:394.306667pt;}
.y121{bottom:396.066667pt;}
.y2e{bottom:399.746667pt;}
.y5d{bottom:404.226667pt;}
.y9e{bottom:406.306667pt;}
.ye9{bottom:410.946667pt;}
.y14a{bottom:413.666667pt;}
.y120{bottom:415.586667pt;}
.ybd{bottom:418.466667pt;}
.y2d{bottom:421.666667pt;}
.y5c{bottom:426.306667pt;}
.y9d{bottom:428.866667pt;}
.ye8{bottom:432.866667pt;}
.y149{bottom:433.026667pt;}
.y11f{bottom:434.946667pt;}
.ybc{bottom:436.066667pt;}
.y2c{bottom:443.266667pt;}
.y3c{bottom:443.586667pt;}
.y5b{bottom:448.226667pt;}
.y9c{bottom:450.786667pt;}
.y148{bottom:452.386667pt;}
.y11e{bottom:454.306667pt;}
.ye7{bottom:454.466667pt;}
.yea{bottom:454.786667pt;}
.y2b{bottom:465.186667pt;}
.y5a{bottom:470.146667pt;}
.ybb{bottom:470.466667pt;}
.y147{bottom:471.906667pt;}
.y9b{bottom:472.706667pt;}
.y11d{bottom:473.666667pt;}
.ye6{bottom:476.386667pt;}
.y2a{bottom:486.626667pt;}
.ye5{bottom:490.626667pt;}
.y146{bottom:491.266667pt;}
.y59{bottom:492.066667pt;}
.y11c{bottom:493.026667pt;}
.y9a{bottom:494.306667pt;}
.yb9{bottom:504.866667pt;}
.y29{bottom:506.146667pt;}
.ye4{bottom:510.466667pt;}
.y145{bottom:510.626667pt;}
.y11b{bottom:512.546667pt;}
.y6e{bottom:513.666667pt;}
.y58{bottom:513.986667pt;}
.y99{bottom:516.546667pt;}
.y28{bottom:527.746667pt;}
.y144{bottom:529.986667pt;}
.ye2{bottom:530.306667pt;}
.y11a{bottom:531.906667pt;}
.y6d{bottom:535.586667pt;}
.y57{bottom:535.906667pt;}
.y98{bottom:538.466667pt;}
.yb8{bottom:539.266667pt;}
.y27{bottom:547.106667pt;}
.y143{bottom:549.506667pt;}
.ye0{bottom:550.146667pt;}
.y119{bottom:551.266667pt;}
.yb6{bottom:556.866667pt;}
.y72{bottom:557.506667pt;}
.y56{bottom:557.826667pt;}
.y97{bottom:560.386667pt;}
.y26{bottom:566.626667pt;}
.y142{bottom:568.866667pt;}
.ydf{bottom:569.506667pt;}
.y118{bottom:570.626667pt;}
.y96{bottom:574.306667pt;}
.y55{bottom:579.746667pt;}
.yb5{bottom:582.626667pt;}
.y25{bottom:585.986667pt;}
.y141{bottom:588.226667pt;}
.y117{bottom:590.146667pt;}
.y95{bottom:593.506667pt;}
.yde{bottom:597.666667pt;}
.y54{bottom:601.693333pt;}
.yb4{bottom:604.893333pt;}
.y24{bottom:605.373333pt;}
.y140{bottom:607.613333pt;}
.y116{bottom:609.213333pt;}
.y93{bottom:612.733333pt;}
.ydc{bottom:619.933333pt;}
.y53{bottom:623.613333pt;}
.y23{bottom:624.733333pt;}
.yb3{bottom:626.813333pt;}
.y13f{bottom:626.973333pt;}
.y115{bottom:631.133333pt;}
.y91{bottom:631.613333pt;}
.ydb{bottom:641.853333pt;}
.y22{bottom:644.093333pt;}
.y52{bottom:645.533333pt;}
.y13e{bottom:646.493333pt;}
.yb2{bottom:648.733333pt;}
.y114{bottom:653.373333pt;}
.y21{bottom:663.613333pt;}
.yda{bottom:663.773333pt;}
.y13d{bottom:665.853333pt;}
.y51{bottom:667.453333pt;}
.y90{bottom:668.893333pt;}
.yb1{bottom:670.653333pt;}
.y113{bottom:675.293333pt;}
.y20{bottom:682.973333pt;}
.y13c{bottom:685.213333pt;}
.yd9{bottom:685.373333pt;}
.ydd{bottom:685.693333pt;}
.y8e{bottom:688.093333pt;}
.y50{bottom:689.053333pt;}
.y6c{bottom:689.373333pt;}
.yb0{bottom:692.573333pt;}
.y112{bottom:697.213333pt;}
.y1f{bottom:702.333333pt;}
.y13b{bottom:704.573333pt;}
.y8c{bottom:706.973333pt;}
.yd8{bottom:707.293333pt;}
.y4f{bottom:710.973333pt;}
.y6b{bottom:711.293333pt;}
.yaf{bottom:714.173333pt;}
.y111{bottom:719.133333pt;}
.yd7{bottom:721.533333pt;}
.y1e{bottom:721.693333pt;}
.y13a{bottom:724.093333pt;}
.y8a{bottom:726.173333pt;}
.y4e{bottom:733.213333pt;}
.yae{bottom:736.093333pt;}
.yd6{bottom:739.133333pt;}
.y110{bottom:741.053333pt;}
.y1d{bottom:741.213333pt;}
.y139{bottom:743.933333pt;}
.yad{bottom:750.493333pt;}
.y4d{bottom:755.133333pt;}
.yd5{bottom:756.573333pt;}
.y1c{bottom:760.573333pt;}
.y10f{bottom:762.973333pt;}
.y138{bottom:765.053333pt;}
.yac{bottom:769.213333pt;}
.y89{bottom:771.933333pt;}
.y4c{bottom:777.053333pt;}
.y1b{bottom:779.613333pt;}
.y10e{bottom:784.893333pt;}
.y137{bottom:785.693333pt;}
.y18{bottom:785.748541pt;}
.yab{bottom:788.413333pt;}
.yd4{bottom:790.973333pt;}
.y19{bottom:793.213333pt;}
.y88{bottom:794.173333pt;}
.y4b{bottom:798.973333pt;}
.y12{bottom:799.613333pt;}
.y17{bottom:803.460541pt;}
.y7c{bottom:804.253333pt;}
.y136{bottom:805.053333pt;}
.y10d{bottom:806.813333pt;}
.ya9{bottom:807.293333pt;}
.yd2{bottom:808.573333pt;}
.y87{bottom:816.133333pt;}
.y4a{bottom:820.933333pt;}
.y135{bottom:824.613333pt;}
.yd0{bottom:826.213333pt;}
.ya8{bottom:826.533333pt;}
.y7b{bottom:828.613333pt;}
.y10c{bottom:828.773333pt;}
.y86{bottom:838.053333pt;}
.y49{bottom:842.853333pt;}
.y134{bottom:843.973333pt;}
.ya7{bottom:845.413333pt;}
.y10b{bottom:850.693333pt;}
.y7a{bottom:852.613333pt;}
.y85{bottom:859.973333pt;}
.ycf{bottom:860.613333pt;}
.y133{bottom:863.333333pt;}
.ya6{bottom:864.613333pt;}
.y48{bottom:864.773333pt;}
.y10a{bottom:872.613333pt;}
.y79{bottom:875.653333pt;}
.y84{bottom:881.893333pt;}
.y132{bottom:882.693333pt;}
.ya5{bottom:883.813333pt;}
.yce{bottom:886.373333pt;}
.y47{bottom:886.693333pt;}
.y109{bottom:894.533333pt;}
.y78{bottom:898.053333pt;}
.y131{bottom:902.213333pt;}
.ya4{bottom:902.693333pt;}
.y83{bottom:903.813333pt;}
.y10{bottom:905.413333pt;}
.y46{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y108{bottom:916.453333pt;}
.y130{bottom:921.573333pt;}
.y77{bottom:922.373333pt;}
.y82{bottom:925.733333pt;}
.ya3{bottom:930.213333pt;}
.y45{bottom:930.533333pt;}
.y107{bottom:938.373333pt;}
.y12f{bottom:940.933333pt;}
.y76{bottom:946.533333pt;}
.y81{bottom:947.653333pt;}
.y44{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y106{bottom:959.973333pt;}
.y12e{bottom:960.293333pt;}
.y9{bottom:961.733333pt;}
.y80{bottom:969.573333pt;}
.y75{bottom:970.853333pt;}
.y43{bottom:974.373333pt;}
.y105{bottom:981.893333pt;}
.y2{bottom:983.333333pt;}
.y7f{bottom:991.493333pt;}
.y74{bottom:994.853333pt;}
.y104{bottom:996.133333pt;}
.y42{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y7e{bottom:1013.573333pt;}
.y102{bottom:1015.333333pt;}
.y73{bottom:1017.893333pt;}
.y41{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y101{bottom:1034.560000pt;}
.y7d{bottom:1037.920000pt;}
.y71{bottom:1039.840000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h17{height:6.400000pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h2b{height:16.786667pt;}
.h31{height:16.798667pt;}
.h30{height:16.800000pt;}
.h33{height:16.820000pt;}
.h2e{height:16.832000pt;}
.h11{height:16.896000pt;}
.h2d{height:16.946667pt;}
.h2f{height:16.960000pt;}
.h25{height:18.080000pt;}
.h29{height:18.226667pt;}
.h3f{height:18.238667pt;}
.h23{height:18.240000pt;}
.h3e{height:18.400000pt;}
.h27{height:18.546667pt;}
.h40{height:18.558667pt;}
.h22{height:18.560000pt;}
.h2a{height:18.580000pt;}
.h26{height:18.586667pt;}
.h36{height:18.706667pt;}
.h37{height:19.026667pt;}
.h35{height:19.186667pt;}
.h8{height:19.826667pt;}
.h3c{height:21.472000pt;}
.ha{height:21.586667pt;}
.h39{height:21.746667pt;}
.h3d{height:21.760000pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.h32{height:33.586667pt;}
.h2c{height:33.746667pt;}
.h34{height:33.760000pt;}
.h38{height:36.626667pt;}
.h24{height:36.640000pt;}
.h3a{height:36.786667pt;}
.h21{height:36.800000pt;}
.h3b{height:37.106667pt;}
.h14{height:39.552188pt;}
.h1e{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h28{height:58.563750pt;}
.h43{height:58.736250pt;}
.h1a{height:59.340000pt;}
.h1f{height:60.519362pt;}
.h41{height:62.781250pt;}
.h42{height:62.812500pt;}
.h6{height:63.399375pt;}
.h16{height:64.500000pt;}
.h20{height:65.781915pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:33.270667pt;}
.w16{width:33.590667pt;}
.w10{width:33.910667pt;}
.w18{width:35.986667pt;}
.wc{width:36.790667pt;}
.w12{width:36.832000pt;}
.w1c{width:37.426667pt;}
.w14{width:38.710667pt;}
.we{width:46.880000pt;}
.w1f{width:48.146667pt;}
.wa{width:56.626667pt;}
.w8{width:90.226667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wd{width:180.013333pt;}
.w11{width:191.533333pt;}
.wb{width:200.013333pt;}
.w9{width:209.653333pt;}
.w20{width:227.373333pt;}
.w1d{width:236.173333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w19{width:247.053333pt;}
.w1e{width:247.093333pt;}
.w1b{width:254.773333pt;}
.w17{width:264.693333pt;}
.wf{width:299.106667pt;}
.w13{width:311.733333pt;}
.w3{width:492.080000pt;}
.w15{width:540.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x45{left:11.680000pt;}
.x13{left:14.230667pt;}
.x3d{left:15.350667pt;}
.x38{left:16.826667pt;}
.x10{left:18.386667pt;}
.x2d{left:20.146667pt;}
.x2e{left:21.266667pt;}
.x32{left:22.586667pt;}
.x36{left:24.026667pt;}
.x2b{left:24.946667pt;}
.x50{left:27.666667pt;}
.xb{left:30.386667pt;}
.x31{left:32.306667pt;}
.x29{left:34.266667pt;}
.x52{left:35.346667pt;}
.x37{left:37.906667pt;}
.x4b{left:39.666667pt;}
.x27{left:42.066667pt;}
.x33{left:43.066667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2f{left:51.546667pt;}
.x2{left:54.081333pt;}
.x30{left:59.386667pt;}
.x35{left:64.026667pt;}
.x4d{left:65.106667pt;}
.x4e{left:66.386667pt;}
.x34{left:70.586667pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x5a{left:76.626667pt;}
.x4f{left:79.506667pt;}
.xd{left:85.266667pt;}
.x2a{left:86.746667pt;}
.x16{left:89.905333pt;}
.x51{left:92.786667pt;}
.x53{left:94.546667pt;}
.x8{left:95.866667pt;}
.x1f{left:96.832000pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x54{left:99.706667pt;}
.x58{left:100.826667pt;}
.x57{left:102.746667pt;}
.x4a{left:105.161333pt;}
.x47{left:107.241333pt;}
.x1e{left:108.832000pt;}
.x17{left:109.905333pt;}
.x59{left:113.626667pt;}
.x3c{left:114.601333pt;}
.x23{left:117.472000pt;}
.x5f{left:120.032000pt;}
.x15{left:131.025333pt;}
.x41{left:133.161333pt;}
.x5e{left:136.346667pt;}
.x26{left:140.200000pt;}
.x1b{left:144.026667pt;}
.x48{left:146.600000pt;}
.x4{left:150.120000pt;}
.x3e{left:152.040000pt;}
.x42{left:167.720000pt;}
.x18{left:183.385333pt;}
.x6{left:185.786667pt;}
.x3b{left:196.506667pt;}
.x39{left:211.866667pt;}
.x28{left:231.240000pt;}
.x5b{left:257.666667pt;}
.x14{left:280.825333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.x46{left:301.346667pt;}
.x40{left:315.906667pt;}
.x49{left:327.746667pt;}
.x25{left:332.866667pt;}
.x43{left:359.906667pt;}
.x3f{left:380.226667pt;}
.xa{left:396.106667pt;}
.x44{left:397.386667pt;}
.x5c{left:400.106667pt;}
.x4c{left:404.906667pt;}
.x1c{left:420.893333pt;}
.x55{left:422.666667pt;}
.x21{left:434.653333pt;}
.x24{left:442.333333pt;}
.x20{left:444.893333pt;}
.x5d{left:448.906667pt;}
.x22{left:458.653333pt;}
.x56{left:460.746667pt;}
.x1d{left:468.893333pt;}
.x2c{left:498.986667pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
.x3a{left:686.213333pt;}
}




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