
    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_98b5be99f42ab192b2580d95.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064000;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_1516f888a883a0e703d88947.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130000;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_4cc154edb201f44b45979fae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063000;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_decc8624993e8def63bc1db2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_bef0c3b8c01bb30b94ce8bd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.204102;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_3be372d5eab8655265dd6153.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d87f6a705210d07d187a065b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_24d075348bcddef72b81da74.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_83bb87f7613e771b1f827bd9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_7b7ad5cc9e45de3f946ccef8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.928711;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_7d118bfe202e34eb2c539095.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.928711;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_6f2318f476f026267e453649.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_7580ac4ffe49bbd19597d29c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172363;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);}
.v1{vertical-align:-153.240000px;}
.v3{vertical-align:-59.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.560000px;}
.v8{vertical-align:48.240000px;}
.v6{vertical-align:54.000000px;}
.v4{vertical-align:62.760000px;}
.v5{vertical-align:115.620000px;}
.v7{vertical-align:130.320000px;}
.ls9{letter-spacing:-1.512000px;}
.ls1a{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.379800px;}
.ls7{letter-spacing:-0.367800px;}
.ls17{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.280200px;}
.lsa{letter-spacing:-0.247800px;}
.lse{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.132000px;}
.ls8{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000006px;}
.ls18{letter-spacing:0.026460px;}
.ls15{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180288px;}
.lsf{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.270000px;}
.ls11{letter-spacing:26.677440px;}
.ls10{letter-spacing:30.852000px;}
.ls4{letter-spacing:32.506560px;}
.ls14{letter-spacing:33.226560px;}
.ls1b{letter-spacing:42.013440px;}
.ls1c{letter-spacing:45.576000px;}
.ls13{letter-spacing:65.865600px;}
.ls12{letter-spacing:65.916000px;}
.ls1e{letter-spacing:70.149600px;}
.ls1f{letter-spacing:70.200000px;}
.ls20{letter-spacing:76.644000px;}
.ls3{letter-spacing:2483.786496px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(242,124,33),0 0.015em rgb(242,124,33),0.015em 0 rgb(242,124,33),0 -0.015em  rgb(242,124,33);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(242,124,33);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-67.680000px;}
.ws33{word-spacing:-50.080032px;}
.ws34{word-spacing:-50.040000px;}
.ws37{word-spacing:-41.633280px;}
.ws17{word-spacing:-40.032000px;}
.ws3e{word-spacing:-35.028000px;}
.ws0{word-spacing:-34.992000px;}
.ws3f{word-spacing:-33.466752px;}
.ws8{word-spacing:-33.426720px;}
.ws35{word-spacing:-32.344560px;}
.ws6{word-spacing:-30.064032px;}
.ws5{word-spacing:-30.024000px;}
.ws14{word-spacing:-29.992032px;}
.ws38{word-spacing:-28.422720px;}
.ws26{word-spacing:-26.661312px;}
.ws25{word-spacing:-26.621280px;}
.ws2{word-spacing:-25.290000px;}
.ws3{word-spacing:-25.020000px;}
.ws23{word-spacing:-23.458752px;}
.ws22{word-spacing:-23.418720px;}
.ws16{word-spacing:-20.016000px;}
.ws4{word-spacing:-1.440000px;}
.ws1a{word-spacing:-0.186768px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.457344px;}
.ws9{word-spacing:0.648000px;}
.ws7{word-spacing:0.832320px;}
.ws10{word-spacing:0.949968px;}
.ws36{word-spacing:1.100160px;}
.ws13{word-spacing:1.263240px;}
.ws11{word-spacing:1.383336px;}
.wsf{word-spacing:1.618560px;}
.wsa{word-spacing:3.672000px;}
.wsb{word-spacing:3.708000px;}
.wsd{word-spacing:3.852000px;}
.wsc{word-spacing:4.224000px;}
.ws2a{word-spacing:4.332960px;}
.ws1c{word-spacing:5.976000px;}
.ws2c{word-spacing:13.160880px;}
.ws2b{word-spacing:13.586400px;}
.ws1e{word-spacing:27.936000px;}
.wse{word-spacing:30.240000px;}
.ws1d{word-spacing:45.876000px;}
.ws32{word-spacing:59.146320px;}
.ws2d{word-spacing:74.933280px;}
.ws28{word-spacing:103.520880px;}
.ws27{word-spacing:103.880520px;}
.ws1f{word-spacing:115.200000px;}
.ws20{word-spacing:115.704000px;}
.ws1b{word-spacing:122.259024px;}
.ws30{word-spacing:133.039200px;}
.ws31{word-spacing:133.240800px;}
.ws29{word-spacing:379.101312px;}
.ws2f{word-spacing:413.361360px;}
.ws2e{word-spacing:479.760480px;}
.ws3c{word-spacing:513.630000px;}
.ws21{word-spacing:660.072960px;}
.ws19{word-spacing:1294.140000px;}
.ws15{word-spacing:1306.911744px;}
.ws24{word-spacing:1428.990480px;}
.ws3d{word-spacing:1572.252000px;}
.ws3a{word-spacing:1884.504000px;}
.ws3b{word-spacing:1902.288000px;}
.ws39{word-spacing:1913.772000px;}
._f{margin-left:-12.985920px;}
._b{margin-left:-11.016000px;}
._a{margin-left:-7.992000px;}
._5{margin-left:-4.860000px;}
._4{margin-left:-3.710448px;}
._2{margin-left:-2.147184px;}
._0{margin-left:-1.120896px;}
._1{width:1.088640px;}
._3{width:2.147184px;}
._6{width:3.376080px;}
._8{width:37.476000px;}
._c{width:48.105504px;}
._d{width:93.973200px;}
._10{width:662.384736px;}
._e{width:1256.682000px;}
._7{width:1453.776000px;}
._9{width:1623.265296px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(29,69,119);}
.fc1{color:rgb(242,124,33);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:72.000000px;}
.fs12{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs8{font-size:90.000000px;}
.fs9{font-size:90.144000px;}
.fs2{font-size:95.760000px;}
.fs17{font-size:95.904000px;}
.fs3{font-size:99.360000px;}
.fs1d{font-size:102.240000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fse{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs1f{font-size:126.000000px;}
.fs1e{font-size:126.144000px;}
.fs15{font-size:131.760000px;}
.fs16{font-size:131.904000px;}
.fs7{font-size:135.360000px;}
.fs20{font-size:135.504000px;}
.fs13{font-size:144.000000px;}
.fs22{font-size:144.144000px;}
.fs1a{font-size:149.760000px;}
.fs19{font-size:149.904000px;}
.fs4{font-size:155.520000px;}
.fs18{font-size:162.000000px;}
.fs21{font-size:167.760000px;}
.fs1b{font-size:180.000000px;}
.fs1c{font-size:180.144000px;}
.fs5{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fs10{font-size:198.000000px;}
.fs23{font-size:216.000000px;}
.fs0{font-size:280.080000px;}
.fs1{font-size:280.224000px;}
.fsd{font-size:390.240000px;}
.fsc{font-size:390.384000px;}
.y0{bottom:0.000000px;}
.y25{bottom:61.704000px;}
.y86{bottom:80.355000px;}
.y8a{bottom:80.385000px;}
.y84{bottom:80.430000px;}
.y88{bottom:80.460000px;}
.y8c{bottom:80.490000px;}
.y74{bottom:84.420000px;}
.y24{bottom:89.640000px;}
.y29{bottom:90.072000px;}
.y62{bottom:103.320000px;}
.y8{bottom:104.544000px;}
.y8b{bottom:111.060000px;}
.y23{bottom:117.720000px;}
.y8e{bottom:120.960000px;}
.y107{bottom:124.164000px;}
.y7{bottom:156.165000px;}
.y106{bottom:156.570000px;}
.y9a{bottom:160.740000px;}
.y105{bottom:161.970000px;}
.y121{bottom:162.645000px;}
.y124{bottom:175.860000px;}
.yfd{bottom:186.945000px;}
.yfc{bottom:186.990000px;}
.y99{bottom:188.640000px;}
.ye3{bottom:189.825000px;}
.y120{bottom:193.785000px;}
.ydb{bottom:196.530000px;}
.y73{bottom:200.520000px;}
.y89{bottom:204.660000px;}
.y5c{bottom:208.830000px;}
.yfb{bottom:219.570000px;}
.y69{bottom:227.520000px;}
.y98{bottom:227.550000px;}
.y72{bottom:232.920000px;}
.yd7{bottom:233.100000px;}
.ye2{bottom:234.825000px;}
.yed{bottom:236.265000px;}
.ya9{bottom:237.780000px;}
.y5b{bottom:241.230000px;}
.yfa{bottom:252.150000px;}
.y8d{bottom:262.440000px;}
.y97{bottom:266.430000px;}
.ya8{bottom:272.160000px;}
.y44{bottom:281.010000px;}
.y22{bottom:284.430000px;}
.y28{bottom:284.610000px;}
.y40{bottom:288.930000px;}
.yec{bottom:296.670000px;}
.ya7{bottom:297.000000px;}
.y87{bottom:298.080000px;}
.y4c{bottom:304.560000px;}
.yde{bottom:310.890000px;}
.y21{bottom:312.330000px;}
.y27{bottom:312.510000px;}
.y43{bottom:317.010000px;}
.y3f{bottom:324.975000px;}
.y112{bottom:331.230000px;}
.ya6{bottom:331.590000px;}
.y4b{bottom:332.640000px;}
.yce{bottom:337.890000px;}
.y20{bottom:340.455000px;}
.y63{bottom:340.920000px;}
.ydd{bottom:341.850000px;}
.y42{bottom:353.055000px;}
.ya5{bottom:356.430000px;}
.yc3{bottom:357.150000px;}
.y4a{bottom:360.540000px;}
.y3e{bottom:360.975000px;}
.ycd{bottom:363.090000px;}
.y2a{bottom:363.390000px;}
.ydc{bottom:372.990000px;}
.y26{bottom:378.900000px;}
.ye1{bottom:382.065000px;}
.y41{bottom:389.055000px;}
.ya4{bottom:390.990000px;}
.y85{bottom:391.680000px;}
.y7a{bottom:394.845000px;}
.y68{bottom:394.920000px;}
.y3d{bottom:396.975000px;}
.y49{bottom:399.420000px;}
.y104{bottom:402.150000px;}
.y71{bottom:416.160000px;}
.yc2{bottom:421.770000px;}
.ya3{bottom:425.370000px;}
.y79{bottom:427.245000px;}
.y67{bottom:427.320000px;}
.y81{bottom:430.665000px;}
.y103{bottom:434.550000px;}
.yc5{bottom:441.105000px;}
.yd1{bottom:442.770000px;}
.ybd{bottom:442.875000px;}
.y11e{bottom:453.960000px;}
.y102{bottom:457.740000px;}
.y77{bottom:459.645000px;}
.y66{bottom:459.720000px;}
.y53{bottom:462.810000px;}
.y80{bottom:463.065000px;}
.ybc{bottom:474.015000px;}
.ye0{bottom:478.230000px;}
.y83{bottom:483.840000px;}
.y5{bottom:484.665000px;}
.y11d{bottom:485.100000px;}
.y96{bottom:487.590000px;}
.y75{bottom:492.045000px;}
.y70{bottom:492.120000px;}
.y64{bottom:492.150000px;}
.y7f{bottom:495.465000px;}
.y52{bottom:501.735000px;}
.y123{bottom:502.560000px;}
.y11f{bottom:503.100000px;}
.ybb{bottom:504.975000px;}
.yc4{bottom:505.725000px;}
.ydf{bottom:509.370000px;}
.yc7{bottom:519.225000px;}
.y6f{bottom:524.520000px;}
.y95{bottom:526.290000px;}
.y7e{bottom:527.865000px;}
.y11c{bottom:528.120000px;}
.y6{bottom:528.630000px;}
.yb4{bottom:530.895000px;}
.y1f{bottom:533.850000px;}
.yba{bottom:536.115000px;}
.yea{bottom:540.795000px;}
.y78{bottom:544.065000px;}
.yd0{bottom:544.755000px;}
.ya2{bottom:545.070000px;}
.ycc{bottom:548.715000px;}
.y32{bottom:550.905000px;}
.y6d{bottom:556.920000px;}
.yab{bottom:558.900000px;}
.y11b{bottom:559.260000px;}
.yc8{bottom:559.950000px;}
.y7d{bottom:560.265000px;}
.yb3{bottom:562.035000px;}
.y94{bottom:565.200000px;}
.ybf{bottom:567.075000px;}
.ya1{bottom:569.910000px;}
.ycf{bottom:569.955000px;}
.yc{bottom:571.395000px;}
.yb9{bottom:572.295000px;}
.ycb{bottom:573.945000px;}
.y1e{bottom:574.350000px;}
.y76{bottom:576.465000px;}
.yf6{bottom:578.595000px;}
.yc6{bottom:583.845000px;}
.y31{bottom:586.905000px;}
.y6c{bottom:589.350000px;}
.y7c{bottom:592.665000px;}
.yb2{bottom:592.995000px;}
.y51{bottom:593.670000px;}
.ya0{bottom:594.750000px;}
.ybe{bottom:598.215000px;}
.y4{bottom:598.605000px;}
.yb8{bottom:603.435000px;}
.y93{bottom:604.080000px;}
.yaa{bottom:607.500000px;}
.yf5{bottom:611.175000px;}
.y82{bottom:614.850000px;}
.y111{bottom:615.240000px;}
.y6a{bottom:621.750000px;}
.y30{bottom:622.905000px;}
.y7b{bottom:625.110000px;}
.yb{bottom:629.025000px;}
.yb1{bottom:629.175000px;}
.yb7{bottom:634.395000px;}
.yf4{bottom:643.755000px;}
.y100{bottom:645.510000px;}
.y54{bottom:658.695000px;}
.y2f{bottom:658.905000px;}
.yf9{bottom:659.520000px;}
.yb0{bottom:660.345000px;}
.yb6{bottom:665.565000px;}
.y101{bottom:671.685000px;}
.yf3{bottom:676.365000px;}
.y3{bottom:684.285000px;}
.y3c{bottom:686.190000px;}
.y9f{bottom:686.520000px;}
.y19{bottom:687.600000px;}
.yaf{bottom:696.525000px;}
.yf8{bottom:697.320000px;}
.yd6{bottom:702.720000px;}
.y10{bottom:707.835000px;}
.yf2{bottom:708.945000px;}
.y9e{bottom:711.360000px;}
.y37{bottom:722.190000px;}
.yae{bottom:727.665000px;}
.yf{bottom:731.055000px;}
.y9d{bottom:736.200000px;}
.ye8{bottom:738.255000px;}
.yd5{bottom:738.720000px;}
.ye5{bottom:751.320000px;}
.ye9{bottom:753.630000px;}
.ye{bottom:754.455000px;}
.y119{bottom:757.335000px;}
.y36{bottom:758.190000px;}
.y3b{bottom:758.235000px;}
.yad{bottom:758.625000px;}
.y59{bottom:759.525000px;}
.ye7{bottom:764.535000px;}
.ye6{bottom:766.410000px;}
.y18{bottom:768.600000px;}
.y2{bottom:770.010000px;}
.yca{bottom:770.655000px;}
.yb5{bottom:770.685000px;}
.y61{bottom:773.280000px;}
.y1d{bottom:777.060000px;}
.ya{bottom:777.675000px;}
.y50{bottom:779.655000px;}
.ye4{bottom:782.100000px;}
.y6e{bottom:784.440000px;}
.y118{bottom:788.475000px;}
.y35{bottom:794.190000px;}
.y3a{bottom:794.235000px;}
.yc9{bottom:795.855000px;}
.y17{bottom:801.030000px;}
.y1c{bottom:801.390000px;}
.yac{bottom:801.825000px;}
.y4f{bottom:807.555000px;}
.y117{bottom:819.435000px;}
.y92{bottom:819.795000px;}
.yc0{bottom:821.085000px;}
.y56{bottom:828.255000px;}
.y122{bottom:829.230000px;}
.y12{bottom:829.290000px;}
.y34{bottom:830.190000px;}
.y39{bottom:830.235000px;}
.y11a{bottom:831.495000px;}
.y65{bottom:833.070000px;}
.y16{bottom:833.430000px;}
.y9{bottom:835.275000px;}
.y4e{bottom:835.635000px;}
.y9c{bottom:839.235000px;}
.y58{bottom:846.900000px;}
.y6b{bottom:849.270000px;}
.y116{bottom:850.575000px;}
.y11{bottom:852.510000px;}
.y48{bottom:852.990000px;}
.y1{bottom:855.510000px;}
.y91{bottom:858.525000px;}
.y55{bottom:859.395000px;}
.y110{bottom:860.250000px;}
.y9b{bottom:864.075000px;}
.y33{bottom:866.235000px;}
.y5a{bottom:867.450000px;}
.y47{bottom:881.070000px;}
.y115{bottom:881.535000px;}
.y2c{bottom:882.615000px;}
.y1b{bottom:892.260000px;}
.yd4{bottom:893.700000px;}
.y90{bottom:897.405000px;}
.y127{bottom:898.125000px;}
.y10f{bottom:899.175000px;}
.y38{bottom:902.235000px;}
.yff{bottom:902.550000px;}
.y2b{bottom:911.415000px;}
.y114{bottom:912.675000px;}
.y1a{bottom:916.560000px;}
.yc1{bottom:922.470000px;}
.y57{bottom:923.040000px;}
.y4d{bottom:926.175000px;}
.y60{bottom:928.545000px;}
.yd3{bottom:929.700000px;}
.y108{bottom:933.810000px;}
.yfe{bottom:934.995000px;}
.y8f{bottom:936.285000px;}
.y10e{bottom:938.055000px;}
.yf1{bottom:950.730000px;}
.y15{bottom:954.750000px;}
.y126{bottom:962.925000px;}
.yeb{bottom:964.230000px;}
.yf7{bottom:965.595000px;}
.yd2{bottom:965.700000px;}
.yda{bottom:966.810000px;}
.y14{bottom:978.150000px;}
.yf0{bottom:983.310000px;}
.y13{bottom:1001.415000px;}
.yd9{bottom:1011.810000px;}
.yef{bottom:1015.920000px;}
.y125{bottom:1028.085000px;}
.y5f{bottom:1055.235000px;}
.yd8{bottom:1056.810000px;}
.yee{bottom:1072.410000px;}
.y10d{bottom:1075.500000px;}
.y10b{bottom:1087.020000px;}
.y5e{bottom:1095.735000px;}
.y2e{bottom:1097.640000px;}
.y46{bottom:1111.350000px;}
.y10c{bottom:1116.000000px;}
.yd{bottom:1117.905000px;}
.y113{bottom:1118.445000px;}
.y10a{bottom:1127.520000px;}
.y5d{bottom:1136.235000px;}
.y2d{bottom:1138.140000px;}
.y45{bottom:1151.850000px;}
.y109{bottom:1168.020000px;}
.h14{height:75.093750px;}
.h26{height:86.246367px;}
.h3{height:87.811920px;}
.h15{height:87.859687px;}
.h1d{height:88.009875px;}
.h4{height:91.113120px;}
.h9{height:93.867188px;}
.ha{height:94.017375px;}
.hf{height:99.874688px;}
.h20{height:100.024875px;}
.h2b{height:105.382266px;}
.h27{height:106.633125px;}
.hb{height:112.640625px;}
.hc{height:112.790813px;}
.h10{height:125.406562px;}
.h11{height:125.556750px;}
.h2d{height:131.414062px;}
.h2c{height:131.564250px;}
.h1f{height:134.912461px;}
.h8{height:137.937656px;}
.h30{height:138.084398px;}
.h5{height:142.145280px;}
.h16{height:150.187500px;}
.h33{height:150.337688px;}
.h23{height:156.195000px;}
.h22{height:156.345188px;}
.h2a{height:160.633125px;}
.h1e{height:166.472461px;}
.h21{height:168.960938px;}
.h28{height:169.393125px;}
.h31{height:174.968437px;}
.h1c{height:176.580000px;}
.h24{height:187.734375px;}
.h25{height:187.884563px;}
.h6{height:196.839492px;}
.h7{height:196.986938px;}
.h13{height:200.650500px;}
.h12{height:206.507812px;}
.h34{height:214.839844px;}
.h35{height:221.167969px;}
.h29{height:222.253125px;}
.h32{height:223.208437px;}
.h17{height:226.980000px;}
.h1{height:256.273200px;}
.h2{height:256.404960px;}
.h2f{height:261.554063px;}
.h2e{height:261.734063px;}
.he{height:407.008125px;}
.hd{height:407.158313px;}
.h1a{height:453.780000px;}
.h18{height:874.080000px;}
.h1b{height:907.380000px;}
.h19{height:987.480000px;}
.h0{height:1215.000000px;}
.w5{width:193.500000px;}
.w2{width:308.340000px;}
.w6{width:423.900000px;}
.w4{width:442.980000px;}
.w3{width:577.800000px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x53{left:10.980000px;}
.x71{left:59.867968px;}
.x52{left:70.380000px;}
.x8c{left:99.575968px;}
.x1{left:106.847968px;}
.x7b{left:111.887968px;}
.x4{left:121.499968px;}
.x9e{left:142.991968px;}
.x7a{left:145.007968px;}
.x7c{left:147.707968px;}
.x9c{left:161.129968px;}
.x9d{left:163.799968px;}
.x93{left:181.544968px;}
.x51{left:192.989968px;}
.x66{left:195.944968px;}
.x9a{left:198.074968px;}
.x3{left:255.569968px;}
.x16{left:281.414968px;}
.x15{left:286.274968px;}
.x92{left:291.344968px;}
.x60{left:295.560000px;}
.x48{left:297.179968px;}
.x14{left:302.609968px;}
.x2{left:309.524968px;}
.x17{left:315.284968px;}
.x57{left:322.920000px;}
.x68{left:324.179968px;}
.x5c{left:340.740000px;}
.x69{left:344.699968px;}
.x39{left:355.829968px;}
.x64{left:357.150000px;}
.x4c{left:373.964968px;}
.x54{left:378.540000px;}
.x28{left:383.609968px;}
.x32{left:388.364968px;}
.x31{left:398.984968px;}
.x6e{left:408.674968px;}
.x5e{left:411.150000px;}
.x70{left:415.439968px;}
.x67{left:418.934968px;}
.x49{left:424.769968px;}
.xb8{left:430.814968px;}
.x27{left:435.449968px;}
.x29{left:439.409968px;}
.x73{left:443.159968px;}
.xb4{left:448.049968px;}
.x6b{left:452.054968px;}
.x25{left:453.809968px;}
.xb9{left:455.834968px;}
.xad{left:459.974968px;}
.x34{left:463.289968px;}
.x6d{left:465.374968px;}
.x7d{left:474.119968px;}
.x72{left:475.559968px;}
.x6f{left:477.974968px;}
.x4e{left:484.199968px;}
.xae{left:489.809968px;}
.xaa{left:491.429968px;}
.xb1{left:493.049968px;}
.x26{left:513.074968px;}
.x4f{left:516.599968px;}
.x40{left:520.094968px;}
.x18{left:529.454968px;}
.x80{left:543.599968px;}
.xa4{left:552.164968px;}
.x6c{left:580.244968px;}
.xa5{left:582.044968px;}
.x33{left:587.309968px;}
.x95{left:598.139968px;}
.xb2{left:637.229968px;}
.x9{left:645.224968px;}
.xab{left:648.029968px;}
.x20{left:651.524968px;}
.xaf{left:661.394968px;}
.x46{left:682.484968px;}
.xa7{left:687.389968px;}
.x94{left:715.499968px;}
.x3f{left:716.684968px;}
.x47{left:721.364968px;}
.x7f{left:722.489968px;}
.x59{left:723.854968px;}
.x13{left:733.424968px;}
.xc2{left:737.309968px;}
.xb6{left:739.649968px;}
.x6a{left:748.829968px;}
.xb5{left:753.689968px;}
.x45{left:754.994968px;}
.x12{left:758.084968px;}
.x11{left:761.144968px;}
.x3b{left:775.544968px;}
.x50{left:778.889968px;}
.x1b{left:779.909968px;}
.xc1{left:792.929968px;}
.x7e{left:811.229968px;}
.xa3{left:813.599968px;}
.xb7{left:823.964968px;}
.xba{left:839.369968px;}
.x8d{left:841.709968px;}
.xa2{left:860.039968px;}
.x19{left:863.534968px;}
.xbb{left:865.439968px;}
.x3a{left:868.424968px;}
.x5a{left:872.354968px;}
.x1a{left:904.034968px;}
.xa1{left:905.579968px;}
.x90{left:912.449968px;}
.x55{left:956.160000px;}
.x74{left:981.074968px;}
.xb0{left:992.909968px;}
.xac{left:997.199968px;}
.xbf{left:998.714968px;}
.x8a{left:1006.229968px;}
.x75{left:1008.074968px;}
.x58{left:1009.079968px;}
.xb3{left:1018.229968px;}
.x97{left:1019.414968px;}
.x22{left:1022.834968px;}
.x63{left:1024.379968px;}
.x21{left:1028.234968px;}
.x5{left:1033.814968px;}
.x5b{left:1036.619968px;}
.x9f{left:1038.959968px;}
.xa0{left:1051.199968px;}
.x23{left:1056.674968px;}
.x4a{left:1063.829968px;}
.x24{left:1069.994968px;}
.x87{left:1073.414968px;}
.x62{left:1075.859968px;}
.x5d{left:1078.379968px;}
.x4b{left:1085.609968px;}
.x9b{left:1104.299968px;}
.x7{left:1111.034968px;}
.x56{left:1124.639968px;}
.xbd{left:1130.684968px;}
.x61{left:1132.919968px;}
.x96{left:1139.654968px;}
.x5f{left:1149.119968px;}
.x8{left:1150.844968px;}
.x88{left:1160.459968px;}
.xa8{left:1174.889968px;}
.xa6{left:1177.589968px;}
.xbc{left:1185.659968px;}
.x8e{left:1186.664968px;}
.xd{left:1213.019968px;}
.xe{left:1222.199968px;}
.x3d{left:1224.359968px;}
.xbe{left:1247.549968px;}
.x3e{left:1319.039968px;}
.x1e{left:1320.509968px;}
.x6{left:1329.224968px;}
.xc0{left:1344.884968px;}
.x4d{left:1351.544968px;}
.x76{left:1368.719968px;}
.xb{left:1383.479968px;}
.xf{left:1386.929968px;}
.x10{left:1391.609968px;}
.x77{left:1395.719968px;}
.x3c{left:1396.979968px;}
.x91{left:1398.314968px;}
.xa{left:1405.439968px;}
.xc{left:1411.379968px;}
.x99{left:1424.129968px;}
.x8b{left:1442.774968px;}
.x35{left:1445.549968px;}
.x2f{left:1447.709968px;}
.x1d{left:1450.109968px;}
.x1c{left:1455.119968px;}
.x37{left:1456.349968px;}
.x36{left:1465.349968px;}
.x2a{left:1467.509968px;}
.x2e{left:1472.729968px;}
.x2d{left:1480.289968px;}
.x44{left:1489.469968px;}
.x42{left:1497.344968px;}
.x2b{left:1508.549968px;}
.x43{left:1511.534968px;}
.x8f{left:1518.914968px;}
.x41{left:1520.279968px;}
.x81{left:1548.974968px;}
.x82{left:1554.554968px;}
.x86{left:1558.799968px;}
.x85{left:1569.239968px;}
.x38{left:1578.929968px;}
.x89{left:1609.664968px;}
.x98{left:1621.049968px;}
.x2c{left:1640.879968px;}
.x65{left:1658.520000px;}
.xa9{left:1662.404968px;}
.x30{left:1665.899968px;}
.x1f{left:1681.094968px;}
.x78{left:1756.334968px;}
.x79{left:1783.334968px;}
.x84{left:1991.339968px;}
.x83{left:2006.459968px;}
@media print{
.v1{vertical-align:-136.213333pt;}
.v3{vertical-align:-53.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.053333pt;}
.v8{vertical-align:42.880000pt;}
.v6{vertical-align:48.000000pt;}
.v4{vertical-align:55.786667pt;}
.v5{vertical-align:102.773333pt;}
.v7{vertical-align:115.840000pt;}
.ls9{letter-spacing:-1.344000pt;}
.ls1a{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.337600pt;}
.ls7{letter-spacing:-0.326933pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.249067pt;}
.lsa{letter-spacing:-0.220267pt;}
.lse{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000005pt;}
.ls18{letter-spacing:0.023520pt;}
.ls15{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160256pt;}
.lsf{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.240000pt;}
.ls11{letter-spacing:23.713280pt;}
.ls10{letter-spacing:27.424000pt;}
.ls4{letter-spacing:28.894720pt;}
.ls14{letter-spacing:29.534720pt;}
.ls1b{letter-spacing:37.345280pt;}
.ls1c{letter-spacing:40.512000pt;}
.ls13{letter-spacing:58.547200pt;}
.ls12{letter-spacing:58.592000pt;}
.ls1e{letter-spacing:62.355200pt;}
.ls1f{letter-spacing:62.400000pt;}
.ls20{letter-spacing:68.128000pt;}
.ls3{letter-spacing:2207.810219pt;}
.ws18{word-spacing:-60.160000pt;}
.ws33{word-spacing:-44.515584pt;}
.ws34{word-spacing:-44.480000pt;}
.ws37{word-spacing:-37.007360pt;}
.ws17{word-spacing:-35.584000pt;}
.ws3e{word-spacing:-31.136000pt;}
.ws0{word-spacing:-31.104000pt;}
.ws3f{word-spacing:-29.748224pt;}
.ws8{word-spacing:-29.712640pt;}
.ws35{word-spacing:-28.750720pt;}
.ws6{word-spacing:-26.723584pt;}
.ws5{word-spacing:-26.688000pt;}
.ws14{word-spacing:-26.659584pt;}
.ws38{word-spacing:-25.264640pt;}
.ws26{word-spacing:-23.698944pt;}
.ws25{word-spacing:-23.663360pt;}
.ws2{word-spacing:-22.480000pt;}
.ws3{word-spacing:-22.240000pt;}
.ws23{word-spacing:-20.852224pt;}
.ws22{word-spacing:-20.816640pt;}
.ws16{word-spacing:-17.792000pt;}
.ws4{word-spacing:-1.280000pt;}
.ws1a{word-spacing:-0.166016pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.406528pt;}
.ws9{word-spacing:0.576000pt;}
.ws7{word-spacing:0.739840pt;}
.ws10{word-spacing:0.844416pt;}
.ws36{word-spacing:0.977920pt;}
.ws13{word-spacing:1.122880pt;}
.ws11{word-spacing:1.229632pt;}
.wsf{word-spacing:1.438720pt;}
.wsa{word-spacing:3.264000pt;}
.wsb{word-spacing:3.296000pt;}
.wsd{word-spacing:3.424000pt;}
.wsc{word-spacing:3.754667pt;}
.ws2a{word-spacing:3.851520pt;}
.ws1c{word-spacing:5.312000pt;}
.ws2c{word-spacing:11.698560pt;}
.ws2b{word-spacing:12.076800pt;}
.ws1e{word-spacing:24.832000pt;}
.wse{word-spacing:26.880000pt;}
.ws1d{word-spacing:40.778667pt;}
.ws32{word-spacing:52.574507pt;}
.ws2d{word-spacing:66.607360pt;}
.ws28{word-spacing:92.018560pt;}
.ws27{word-spacing:92.338240pt;}
.ws1f{word-spacing:102.400000pt;}
.ws20{word-spacing:102.848000pt;}
.ws1b{word-spacing:108.674688pt;}
.ws30{word-spacing:118.257067pt;}
.ws31{word-spacing:118.436267pt;}
.ws29{word-spacing:336.978944pt;}
.ws2f{word-spacing:367.432320pt;}
.ws2e{word-spacing:426.453760pt;}
.ws3c{word-spacing:456.560000pt;}
.ws21{word-spacing:586.731520pt;}
.ws19{word-spacing:1150.346667pt;}
.ws15{word-spacing:1161.699328pt;}
.ws24{word-spacing:1270.213760pt;}
.ws3d{word-spacing:1397.557333pt;}
.ws3a{word-spacing:1675.114667pt;}
.ws3b{word-spacing:1690.922667pt;}
.ws39{word-spacing:1701.130667pt;}
._f{margin-left:-11.543040pt;}
._b{margin-left:-9.792000pt;}
._a{margin-left:-7.104000pt;}
._5{margin-left:-4.320000pt;}
._4{margin-left:-3.298176pt;}
._2{margin-left:-1.908608pt;}
._0{margin-left:-0.996352pt;}
._1{width:0.967680pt;}
._3{width:1.908608pt;}
._6{width:3.000960pt;}
._8{width:33.312000pt;}
._c{width:42.760448pt;}
._d{width:83.531733pt;}
._10{width:588.786432pt;}
._e{width:1117.050667pt;}
._7{width:1292.245333pt;}
._9{width:1442.902485pt;}
.fs11{font-size:64.000000pt;}
.fs12{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs8{font-size:80.000000pt;}
.fs9{font-size:80.128000pt;}
.fs2{font-size:85.120000pt;}
.fs17{font-size:85.248000pt;}
.fs3{font-size:88.320000pt;}
.fs1d{font-size:90.880000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fse{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs1f{font-size:112.000000pt;}
.fs1e{font-size:112.128000pt;}
.fs15{font-size:117.120000pt;}
.fs16{font-size:117.248000pt;}
.fs7{font-size:120.320000pt;}
.fs20{font-size:120.448000pt;}
.fs13{font-size:128.000000pt;}
.fs22{font-size:128.128000pt;}
.fs1a{font-size:133.120000pt;}
.fs19{font-size:133.248000pt;}
.fs4{font-size:138.240000pt;}
.fs18{font-size:144.000000pt;}
.fs21{font-size:149.120000pt;}
.fs1b{font-size:160.000000pt;}
.fs1c{font-size:160.128000pt;}
.fs5{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fs10{font-size:176.000000pt;}
.fs23{font-size:192.000000pt;}
.fs0{font-size:248.960000pt;}
.fs1{font-size:249.088000pt;}
.fsd{font-size:346.880000pt;}
.fsc{font-size:347.008000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:54.848000pt;}
.y86{bottom:71.426667pt;}
.y8a{bottom:71.453333pt;}
.y84{bottom:71.493333pt;}
.y88{bottom:71.520000pt;}
.y8c{bottom:71.546667pt;}
.y74{bottom:75.040000pt;}
.y24{bottom:79.680000pt;}
.y29{bottom:80.064000pt;}
.y62{bottom:91.840000pt;}
.y8{bottom:92.928000pt;}
.y8b{bottom:98.720000pt;}
.y23{bottom:104.640000pt;}
.y8e{bottom:107.520000pt;}
.y107{bottom:110.368000pt;}
.y7{bottom:138.813333pt;}
.y106{bottom:139.173333pt;}
.y9a{bottom:142.880000pt;}
.y105{bottom:143.973333pt;}
.y121{bottom:144.573333pt;}
.y124{bottom:156.320000pt;}
.yfd{bottom:166.173333pt;}
.yfc{bottom:166.213333pt;}
.y99{bottom:167.680000pt;}
.ye3{bottom:168.733333pt;}
.y120{bottom:172.253333pt;}
.ydb{bottom:174.693333pt;}
.y73{bottom:178.240000pt;}
.y89{bottom:181.920000pt;}
.y5c{bottom:185.626667pt;}
.yfb{bottom:195.173333pt;}
.y69{bottom:202.240000pt;}
.y98{bottom:202.266667pt;}
.y72{bottom:207.040000pt;}
.yd7{bottom:207.200000pt;}
.ye2{bottom:208.733333pt;}
.yed{bottom:210.013333pt;}
.ya9{bottom:211.360000pt;}
.y5b{bottom:214.426667pt;}
.yfa{bottom:224.133333pt;}
.y8d{bottom:233.280000pt;}
.y97{bottom:236.826667pt;}
.ya8{bottom:241.920000pt;}
.y44{bottom:249.786667pt;}
.y22{bottom:252.826667pt;}
.y28{bottom:252.986667pt;}
.y40{bottom:256.826667pt;}
.yec{bottom:263.706667pt;}
.ya7{bottom:264.000000pt;}
.y87{bottom:264.960000pt;}
.y4c{bottom:270.720000pt;}
.yde{bottom:276.346667pt;}
.y21{bottom:277.626667pt;}
.y27{bottom:277.786667pt;}
.y43{bottom:281.786667pt;}
.y3f{bottom:288.866667pt;}
.y112{bottom:294.426667pt;}
.ya6{bottom:294.746667pt;}
.y4b{bottom:295.680000pt;}
.yce{bottom:300.346667pt;}
.y20{bottom:302.626667pt;}
.y63{bottom:303.040000pt;}
.ydd{bottom:303.866667pt;}
.y42{bottom:313.826667pt;}
.ya5{bottom:316.826667pt;}
.yc3{bottom:317.466667pt;}
.y4a{bottom:320.480000pt;}
.y3e{bottom:320.866667pt;}
.ycd{bottom:322.746667pt;}
.y2a{bottom:323.013333pt;}
.ydc{bottom:331.546667pt;}
.y26{bottom:336.800000pt;}
.ye1{bottom:339.613333pt;}
.y41{bottom:345.826667pt;}
.ya4{bottom:347.546667pt;}
.y85{bottom:348.160000pt;}
.y7a{bottom:350.973333pt;}
.y68{bottom:351.040000pt;}
.y3d{bottom:352.866667pt;}
.y49{bottom:355.040000pt;}
.y104{bottom:357.466667pt;}
.y71{bottom:369.920000pt;}
.yc2{bottom:374.906667pt;}
.ya3{bottom:378.106667pt;}
.y79{bottom:379.773333pt;}
.y67{bottom:379.840000pt;}
.y81{bottom:382.813333pt;}
.y103{bottom:386.266667pt;}
.yc5{bottom:392.093333pt;}
.yd1{bottom:393.573333pt;}
.ybd{bottom:393.666667pt;}
.y11e{bottom:403.520000pt;}
.y102{bottom:406.880000pt;}
.y77{bottom:408.573333pt;}
.y66{bottom:408.640000pt;}
.y53{bottom:411.386667pt;}
.y80{bottom:411.613333pt;}
.ybc{bottom:421.346667pt;}
.ye0{bottom:425.093333pt;}
.y83{bottom:430.080000pt;}
.y5{bottom:430.813333pt;}
.y11d{bottom:431.200000pt;}
.y96{bottom:433.413333pt;}
.y75{bottom:437.373333pt;}
.y70{bottom:437.440000pt;}
.y64{bottom:437.466667pt;}
.y7f{bottom:440.413333pt;}
.y52{bottom:445.986667pt;}
.y123{bottom:446.720000pt;}
.y11f{bottom:447.200000pt;}
.ybb{bottom:448.866667pt;}
.yc4{bottom:449.533333pt;}
.ydf{bottom:452.773333pt;}
.yc7{bottom:461.533333pt;}
.y6f{bottom:466.240000pt;}
.y95{bottom:467.813333pt;}
.y7e{bottom:469.213333pt;}
.y11c{bottom:469.440000pt;}
.y6{bottom:469.893333pt;}
.yb4{bottom:471.906667pt;}
.y1f{bottom:474.533333pt;}
.yba{bottom:476.546667pt;}
.yea{bottom:480.706667pt;}
.y78{bottom:483.613333pt;}
.yd0{bottom:484.226667pt;}
.ya2{bottom:484.506667pt;}
.ycc{bottom:487.746667pt;}
.y32{bottom:489.693333pt;}
.y6d{bottom:495.040000pt;}
.yab{bottom:496.800000pt;}
.y11b{bottom:497.120000pt;}
.yc8{bottom:497.733333pt;}
.y7d{bottom:498.013333pt;}
.yb3{bottom:499.586667pt;}
.y94{bottom:502.400000pt;}
.ybf{bottom:504.066667pt;}
.ya1{bottom:506.586667pt;}
.ycf{bottom:506.626667pt;}
.yc{bottom:507.906667pt;}
.yb9{bottom:508.706667pt;}
.ycb{bottom:510.173333pt;}
.y1e{bottom:510.533333pt;}
.y76{bottom:512.413333pt;}
.yf6{bottom:514.306667pt;}
.yc6{bottom:518.973333pt;}
.y31{bottom:521.693333pt;}
.y6c{bottom:523.866667pt;}
.y7c{bottom:526.813333pt;}
.yb2{bottom:527.106667pt;}
.y51{bottom:527.706667pt;}
.ya0{bottom:528.666667pt;}
.ybe{bottom:531.746667pt;}
.y4{bottom:532.093333pt;}
.yb8{bottom:536.386667pt;}
.y93{bottom:536.960000pt;}
.yaa{bottom:540.000000pt;}
.yf5{bottom:543.266667pt;}
.y82{bottom:546.533333pt;}
.y111{bottom:546.880000pt;}
.y6a{bottom:552.666667pt;}
.y30{bottom:553.693333pt;}
.y7b{bottom:555.653333pt;}
.yb{bottom:559.133333pt;}
.yb1{bottom:559.266667pt;}
.yb7{bottom:563.906667pt;}
.yf4{bottom:572.226667pt;}
.y100{bottom:573.786667pt;}
.y54{bottom:585.506667pt;}
.y2f{bottom:585.693333pt;}
.yf9{bottom:586.240000pt;}
.yb0{bottom:586.973333pt;}
.yb6{bottom:591.613333pt;}
.y101{bottom:597.053333pt;}
.yf3{bottom:601.213333pt;}
.y3{bottom:608.253333pt;}
.y3c{bottom:609.946667pt;}
.y9f{bottom:610.240000pt;}
.y19{bottom:611.200000pt;}
.yaf{bottom:619.133333pt;}
.yf8{bottom:619.840000pt;}
.yd6{bottom:624.640000pt;}
.y10{bottom:629.186667pt;}
.yf2{bottom:630.173333pt;}
.y9e{bottom:632.320000pt;}
.y37{bottom:641.946667pt;}
.yae{bottom:646.813333pt;}
.yf{bottom:649.826667pt;}
.y9d{bottom:654.400000pt;}
.ye8{bottom:656.226667pt;}
.yd5{bottom:656.640000pt;}
.ye5{bottom:667.840000pt;}
.ye9{bottom:669.893333pt;}
.ye{bottom:670.626667pt;}
.y119{bottom:673.186667pt;}
.y36{bottom:673.946667pt;}
.y3b{bottom:673.986667pt;}
.yad{bottom:674.333333pt;}
.y59{bottom:675.133333pt;}
.ye7{bottom:679.586667pt;}
.ye6{bottom:681.253333pt;}
.y18{bottom:683.200000pt;}
.y2{bottom:684.453333pt;}
.yca{bottom:685.026667pt;}
.yb5{bottom:685.053333pt;}
.y61{bottom:687.360000pt;}
.y1d{bottom:690.720000pt;}
.ya{bottom:691.266667pt;}
.y50{bottom:693.026667pt;}
.ye4{bottom:695.200000pt;}
.y6e{bottom:697.280000pt;}
.y118{bottom:700.866667pt;}
.y35{bottom:705.946667pt;}
.y3a{bottom:705.986667pt;}
.yc9{bottom:707.426667pt;}
.y17{bottom:712.026667pt;}
.y1c{bottom:712.346667pt;}
.yac{bottom:712.733333pt;}
.y4f{bottom:717.826667pt;}
.y117{bottom:728.386667pt;}
.y92{bottom:728.706667pt;}
.yc0{bottom:729.853333pt;}
.y56{bottom:736.226667pt;}
.y122{bottom:737.093333pt;}
.y12{bottom:737.146667pt;}
.y34{bottom:737.946667pt;}
.y39{bottom:737.986667pt;}
.y11a{bottom:739.106667pt;}
.y65{bottom:740.506667pt;}
.y16{bottom:740.826667pt;}
.y9{bottom:742.466667pt;}
.y4e{bottom:742.786667pt;}
.y9c{bottom:745.986667pt;}
.y58{bottom:752.800000pt;}
.y6b{bottom:754.906667pt;}
.y116{bottom:756.066667pt;}
.y11{bottom:757.786667pt;}
.y48{bottom:758.213333pt;}
.y1{bottom:760.453333pt;}
.y91{bottom:763.133333pt;}
.y55{bottom:763.906667pt;}
.y110{bottom:764.666667pt;}
.y9b{bottom:768.066667pt;}
.y33{bottom:769.986667pt;}
.y5a{bottom:771.066667pt;}
.y47{bottom:783.173333pt;}
.y115{bottom:783.586667pt;}
.y2c{bottom:784.546667pt;}
.y1b{bottom:793.120000pt;}
.yd4{bottom:794.400000pt;}
.y90{bottom:797.693333pt;}
.y127{bottom:798.333333pt;}
.y10f{bottom:799.266667pt;}
.y38{bottom:801.986667pt;}
.yff{bottom:802.266667pt;}
.y2b{bottom:810.146667pt;}
.y114{bottom:811.266667pt;}
.y1a{bottom:814.720000pt;}
.yc1{bottom:819.973333pt;}
.y57{bottom:820.480000pt;}
.y4d{bottom:823.266667pt;}
.y60{bottom:825.373333pt;}
.yd3{bottom:826.400000pt;}
.y108{bottom:830.053333pt;}
.yfe{bottom:831.106667pt;}
.y8f{bottom:832.253333pt;}
.y10e{bottom:833.826667pt;}
.yf1{bottom:845.093333pt;}
.y15{bottom:848.666667pt;}
.y126{bottom:855.933333pt;}
.yeb{bottom:857.093333pt;}
.yf7{bottom:858.306667pt;}
.yd2{bottom:858.400000pt;}
.yda{bottom:859.386667pt;}
.y14{bottom:869.466667pt;}
.yf0{bottom:874.053333pt;}
.y13{bottom:890.146667pt;}
.yd9{bottom:899.386667pt;}
.yef{bottom:903.040000pt;}
.y125{bottom:913.853333pt;}
.y5f{bottom:937.986667pt;}
.yd8{bottom:939.386667pt;}
.yee{bottom:953.253333pt;}
.y10d{bottom:956.000000pt;}
.y10b{bottom:966.240000pt;}
.y5e{bottom:973.986667pt;}
.y2e{bottom:975.680000pt;}
.y46{bottom:987.866667pt;}
.y10c{bottom:992.000000pt;}
.yd{bottom:993.693333pt;}
.y113{bottom:994.173333pt;}
.y10a{bottom:1002.240000pt;}
.y5d{bottom:1009.986667pt;}
.y2d{bottom:1011.680000pt;}
.y45{bottom:1023.866667pt;}
.y109{bottom:1038.240000pt;}
.h14{height:66.750000pt;}
.h26{height:76.663438pt;}
.h3{height:78.055040pt;}
.h15{height:78.097500pt;}
.h1d{height:78.231000pt;}
.h4{height:80.989440pt;}
.h9{height:83.437500pt;}
.ha{height:83.571000pt;}
.hf{height:88.777500pt;}
.h20{height:88.911000pt;}
.h2b{height:93.673125pt;}
.h27{height:94.785000pt;}
.hb{height:100.125000pt;}
.hc{height:100.258500pt;}
.h10{height:111.472500pt;}
.h11{height:111.606000pt;}
.h2d{height:116.812500pt;}
.h2c{height:116.946000pt;}
.h1f{height:119.922187pt;}
.h8{height:122.611250pt;}
.h30{height:122.741687pt;}
.h5{height:126.351360pt;}
.h16{height:133.500000pt;}
.h33{height:133.633500pt;}
.h23{height:138.840000pt;}
.h22{height:138.973500pt;}
.h2a{height:142.785000pt;}
.h1e{height:147.975521pt;}
.h21{height:150.187500pt;}
.h28{height:150.571667pt;}
.h31{height:155.527500pt;}
.h1c{height:156.960000pt;}
.h24{height:166.875000pt;}
.h25{height:167.008500pt;}
.h6{height:174.968437pt;}
.h7{height:175.099500pt;}
.h13{height:178.356000pt;}
.h12{height:183.562500pt;}
.h34{height:190.968750pt;}
.h35{height:196.593750pt;}
.h29{height:197.558333pt;}
.h32{height:198.407500pt;}
.h17{height:201.760000pt;}
.h1{height:227.798400pt;}
.h2{height:227.915520pt;}
.h2f{height:232.492500pt;}
.h2e{height:232.652500pt;}
.he{height:361.785000pt;}
.hd{height:361.918500pt;}
.h1a{height:403.360000pt;}
.h18{height:776.960000pt;}
.h1b{height:806.560000pt;}
.h19{height:877.760000pt;}
.h0{height:1080.000000pt;}
.w5{width:172.000000pt;}
.w2{width:274.080000pt;}
.w6{width:376.800000pt;}
.w4{width:393.760000pt;}
.w3{width:513.600000pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x53{left:9.760000pt;}
.x71{left:53.215971pt;}
.x52{left:62.560000pt;}
.x8c{left:88.511971pt;}
.x1{left:94.975971pt;}
.x7b{left:99.455971pt;}
.x4{left:107.999971pt;}
.x9e{left:127.103971pt;}
.x7a{left:128.895971pt;}
.x7c{left:131.295971pt;}
.x9c{left:143.226638pt;}
.x9d{left:145.599971pt;}
.x93{left:161.373305pt;}
.x51{left:171.546638pt;}
.x66{left:174.173305pt;}
.x9a{left:176.066638pt;}
.x3{left:227.173305pt;}
.x16{left:250.146638pt;}
.x15{left:254.466638pt;}
.x92{left:258.973305pt;}
.x60{left:262.720000pt;}
.x48{left:264.159971pt;}
.x14{left:268.986638pt;}
.x2{left:275.133305pt;}
.x17{left:280.253305pt;}
.x57{left:287.040000pt;}
.x68{left:288.159971pt;}
.x5c{left:302.880000pt;}
.x69{left:306.399971pt;}
.x39{left:316.293305pt;}
.x64{left:317.466667pt;}
.x4c{left:332.413305pt;}
.x54{left:336.480000pt;}
.x28{left:340.986638pt;}
.x32{left:345.213305pt;}
.x31{left:354.653305pt;}
.x6e{left:363.266638pt;}
.x5e{left:365.466667pt;}
.x70{left:369.279971pt;}
.x67{left:372.386638pt;}
.x49{left:377.573305pt;}
.xb8{left:382.946638pt;}
.x27{left:387.066638pt;}
.x29{left:390.586638pt;}
.x73{left:393.919971pt;}
.xb4{left:398.266638pt;}
.x6b{left:401.826638pt;}
.x25{left:403.386638pt;}
.xb9{left:405.186638pt;}
.xad{left:408.866638pt;}
.x34{left:411.813305pt;}
.x6d{left:413.666638pt;}
.x7d{left:421.439971pt;}
.x72{left:422.719971pt;}
.x6f{left:424.866638pt;}
.x4e{left:430.399971pt;}
.xae{left:435.386638pt;}
.xaa{left:436.826638pt;}
.xb1{left:438.266638pt;}
.x26{left:456.066638pt;}
.x4f{left:459.199971pt;}
.x40{left:462.306638pt;}
.x18{left:470.626638pt;}
.x80{left:483.199971pt;}
.xa4{left:490.813305pt;}
.x6c{left:515.773305pt;}
.xa5{left:517.373305pt;}
.x33{left:522.053305pt;}
.x95{left:531.679971pt;}
.xb2{left:566.426638pt;}
.x9{left:573.533305pt;}
.xab{left:576.026638pt;}
.x20{left:579.133305pt;}
.xaf{left:587.906638pt;}
.x46{left:606.653305pt;}
.xa7{left:611.013305pt;}
.x94{left:635.999971pt;}
.x3f{left:637.053305pt;}
.x47{left:641.213305pt;}
.x7f{left:642.213305pt;}
.x59{left:643.426638pt;}
.x13{left:651.933305pt;}
.xc2{left:655.386638pt;}
.xb6{left:657.466638pt;}
.x6a{left:665.626638pt;}
.xb5{left:669.946638pt;}
.x45{left:671.106638pt;}
.x12{left:673.853305pt;}
.x11{left:676.573305pt;}
.x3b{left:689.373305pt;}
.x50{left:692.346638pt;}
.x1b{left:693.253305pt;}
.xc1{left:704.826638pt;}
.x7e{left:721.093305pt;}
.xa3{left:723.199971pt;}
.xb7{left:732.413305pt;}
.xba{left:746.106638pt;}
.x8d{left:748.186638pt;}
.xa2{left:764.479971pt;}
.x19{left:767.586638pt;}
.xbb{left:769.279971pt;}
.x3a{left:771.933305pt;}
.x5a{left:775.426638pt;}
.x1a{left:803.586638pt;}
.xa1{left:804.959971pt;}
.x90{left:811.066638pt;}
.x55{left:849.920000pt;}
.x74{left:872.066638pt;}
.xb0{left:882.586638pt;}
.xac{left:886.399971pt;}
.xbf{left:887.746638pt;}
.x8a{left:894.426638pt;}
.x75{left:896.066638pt;}
.x58{left:896.959971pt;}
.xb3{left:905.093305pt;}
.x97{left:906.146638pt;}
.x22{left:909.186638pt;}
.x63{left:910.559971pt;}
.x21{left:913.986638pt;}
.x5{left:918.946638pt;}
.x5b{left:921.439971pt;}
.x9f{left:923.519971pt;}
.xa0{left:934.399971pt;}
.x23{left:939.266638pt;}
.x4a{left:945.626638pt;}
.x24{left:951.106638pt;}
.x87{left:954.146638pt;}
.x62{left:956.319971pt;}
.x5d{left:958.559971pt;}
.x4b{left:964.986638pt;}
.x9b{left:981.599971pt;}
.x7{left:987.586638pt;}
.x56{left:999.679971pt;}
.xbd{left:1005.053305pt;}
.x61{left:1007.039971pt;}
.x96{left:1013.026638pt;}
.x5f{left:1021.439971pt;}
.x8{left:1022.973305pt;}
.x88{left:1031.519971pt;}
.xa8{left:1044.346638pt;}
.xa6{left:1046.746638pt;}
.xbc{left:1053.919971pt;}
.x8e{left:1054.813305pt;}
.xd{left:1078.239971pt;}
.xe{left:1086.399971pt;}
.x3d{left:1088.319971pt;}
.xbe{left:1108.933305pt;}
.x3e{left:1172.479971pt;}
.x1e{left:1173.786638pt;}
.x6{left:1181.533305pt;}
.xc0{left:1195.453305pt;}
.x4d{left:1201.373305pt;}
.x76{left:1216.639971pt;}
.xb{left:1229.759971pt;}
.xf{left:1232.826638pt;}
.x10{left:1236.986638pt;}
.x77{left:1240.639971pt;}
.x3c{left:1241.759971pt;}
.x91{left:1242.946638pt;}
.xa{left:1249.279971pt;}
.xc{left:1254.559971pt;}
.x99{left:1265.893305pt;}
.x8b{left:1282.466638pt;}
.x35{left:1284.933305pt;}
.x2f{left:1286.853305pt;}
.x1d{left:1288.986638pt;}
.x1c{left:1293.439971pt;}
.x37{left:1294.533305pt;}
.x36{left:1302.533305pt;}
.x2a{left:1304.453305pt;}
.x2e{left:1309.093305pt;}
.x2d{left:1315.813305pt;}
.x44{left:1323.973305pt;}
.x42{left:1330.973305pt;}
.x2b{left:1340.933305pt;}
.x43{left:1343.586638pt;}
.x8f{left:1350.146638pt;}
.x41{left:1351.359971pt;}
.x81{left:1376.866638pt;}
.x82{left:1381.826638pt;}
.x86{left:1385.599971pt;}
.x85{left:1394.879971pt;}
.x38{left:1403.493305pt;}
.x89{left:1430.813305pt;}
.x98{left:1440.933305pt;}
.x2c{left:1458.559971pt;}
.x65{left:1474.240000pt;}
.xa9{left:1477.693305pt;}
.x30{left:1480.799971pt;}
.x1f{left:1494.306638pt;}
.x78{left:1561.186638pt;}
.x79{left:1585.186638pt;}
.x84{left:1770.079971pt;}
.x83{left:1783.519971pt;}
}




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