
    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_430d69292ee563d28dd7affa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_045bc0296fd80c09396976c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b84d75c6a9a74bef3a1e0dfa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45edaa2caf4990a153afac1e.woff2')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_4f8b40cb4522f1691c68ae4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_36917a9845095a3e8ddb60c7.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c0e866ee0a52cc6896ed14da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_e0a8c125a33a199cb6862cf4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls15{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.431400px;}
.lse{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.214800px;}
.ls6{letter-spacing:-0.132600px;}
.lsb{letter-spacing:-0.115800px;}
.ls18{letter-spacing:-0.107400px;}
.ls23{letter-spacing:-0.078600px;}
.lsf{letter-spacing:-0.058320px;}
.ls21{letter-spacing:-0.055440px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038880px;}
.ls2b{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.066000px;}
.ls28{letter-spacing:0.067200px;}
.ls1c{letter-spacing:0.075000px;}
.ls12{letter-spacing:0.097200px;}
.lsc{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.174240px;}
.ls22{letter-spacing:0.175200px;}
.ls2d{letter-spacing:0.179280px;}
.ls9{letter-spacing:0.190200px;}
.ls26{letter-spacing:0.274800px;}
.ls20{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.314400px;}
.ls2{letter-spacing:0.479520px;}
.ls0{letter-spacing:0.551520px;}
.ls16{letter-spacing:0.623520px;}
.ls1d{letter-spacing:0.666720px;}
.ls24{letter-spacing:0.761484px;}
.ls25{letter-spacing:0.823757px;}
.ls1{letter-spacing:0.894240px;}
.ls17{letter-spacing:4.266720px;}
.ls2c{letter-spacing:12.186720px;}
.ls10{letter-spacing:20.106720px;}
.ls11{letter-spacing:38.826720px;}
.ls1a{letter-spacing:41.706720px;}
.ls2a{letter-spacing:42.426720px;}
.ls27{letter-spacing:43.866720px;}
.ls1e{letter-spacing:44.586720px;}
.ls29{letter-spacing:46.026720px;}
.ls1f{letter-spacing:47.466720px;}
.ls3{letter-spacing:80.010720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.820160px;}
.wse{word-spacing:-13.811760px;}
.ws14{word-spacing:-13.780560px;}
.ws10{word-spacing:-13.680960px;}
.wsd{word-spacing:-13.580760px;}
.ws15{word-spacing:-13.572960px;}
.ws16{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.450320px;}
.ws9{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.427160px;}
.wsb{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.wsa{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:223.818068px;}
.ws13{word-spacing:246.333703px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._12{margin-left:-277.361280px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._17{margin-left:-223.194240px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._25{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._22{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._15{margin-left:-151.021440px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.434880px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._23{margin-left:-110.223360px;}
._11{margin-left:-105.690240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._14{margin-left:-66.703680px;}
._16{margin-left:-49.512000px;}
._13{margin-left:-48.001920px;}
._19{margin-left:-32.468640px;}
._42{margin-left:-14.354160px;}
._27{margin-left:-4.407360px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.532160px;}
._2d{width:2.808720px;}
._2c{width:3.887280px;}
._2b{width:4.979520px;}
._2a{width:6.511680px;}
._33{width:7.545600px;}
._32{width:8.545680px;}
._2f{width:10.034640px;}
._2e{width:11.593440px;}
._30{width:15.119280px;}
._31{width:16.276320px;}
._34{width:17.564400px;}
._37{width:18.585360px;}
._3a{width:20.557440px;}
._39{width:21.752640px;}
._38{width:23.007600px;}
._41{width:24.680880px;}
._40{width:26.115120px;}
._35{width:30.558960px;}
._36{width:31.869120px;}
._28{width:46.922400px;}
._3f{width:58.353600px;}
._3b{width:63.110640px;}
._3e{width:70.626000px;}
._3d{width:72.778320px;}
._4b{width:87.252504px;}
._4f{width:97.946640px;}
._4d{width:100.418400px;}
._3c{width:106.837200px;}
._4c{width:107.959684px;}
._47{width:111.163856px;}
._48{width:119.131849px;}
._49{width:130.790561px;}
._50{width:134.242560px;}
._45{width:147.191711px;}
._4a{width:149.656356px;}
._46{width:158.912852px;}
._4e{width:266.171040px;}
._43{width:324.351409px;}
._44{width:333.680634px;}
.fc3{color:transparent;}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:59.336518px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:69.225836px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y102{bottom:-28.980000px;}
.yea{bottom:-10.980000px;}
.yef{bottom:-10.800000px;}
.ye8{bottom:-7.920000px;}
.yed{bottom:-7.740000px;}
.y0{bottom:0.000000px;}
.yad{bottom:1.080000px;}
.yaa{bottom:3.600000px;}
.y133{bottom:6.480000px;}
.y3c{bottom:6.660000px;}
.yfb{bottom:6.690000px;}
.y139{bottom:6.705000px;}
.y3e{bottom:7.020000px;}
.y41{bottom:7.380000px;}
.yb0{bottom:8.100000px;}
.y126{bottom:11.705692px;}
.y3a{bottom:17.280000px;}
.y11a{bottom:20.041291px;}
.yac{bottom:21.960000px;}
.ya9{bottom:24.300000px;}
.yf9{bottom:27.540000px;}
.y3b{bottom:27.720000px;}
.yfc{bottom:27.750000px;}
.yf1{bottom:27.765000px;}
.yaf{bottom:28.980000px;}
.y125{bottom:32.926055px;}
.y114{bottom:36.383167px;}
.y6{bottom:61.380000px;}
.y124{bottom:75.291976px;}
.y67{bottom:89.280000px;}
.y115{bottom:89.851631px;}
.ye1{bottom:91.080000px;}
.y1a3{bottom:92.160000px;}
.y123{bottom:96.474936px;}
.y149{bottom:98.820000px;}
.y2f{bottom:100.620000px;}
.y179{bottom:102.960000px;}
.y91{bottom:104.220000px;}
.y112{bottom:104.760000px;}
.y1a1{bottom:108.000000px;}
.y66{bottom:110.340000px;}
.ye0{bottom:112.140000px;}
.y1a2{bottom:113.220000px;}
.y122{bottom:117.694239px;}
.y148{bottom:119.880000px;}
.y2e{bottom:121.680000px;}
.y178{bottom:124.020000px;}
.y90{bottom:125.280000px;}
.y111{bottom:125.820000px;}
.y1a0{bottom:129.060000px;}
.y1a4{bottom:130.860000px;}
.y65{bottom:131.400000px;}
.ydf{bottom:133.200000px;}
.ya7{bottom:134.280000px;}
.y121{bottom:138.878714px;}
.y147{bottom:140.940000px;}
.y2d{bottom:142.740000px;}
.y116{bottom:143.318580px;}
.y177{bottom:145.080000px;}
.y8f{bottom:146.340000px;}
.y110{bottom:146.880000px;}
.y19f{bottom:149.940000px;}
.y64{bottom:152.490000px;}
.yde{bottom:154.290000px;}
.ya6{bottom:155.370000px;}
.y120{bottom:160.057132px;}
.y146{bottom:162.030000px;}
.y2c{bottom:163.830000px;}
.y176{bottom:166.170000px;}
.y8e{bottom:167.430000px;}
.y10f{bottom:167.970000px;}
.y19e{bottom:171.030000px;}
.y63{bottom:173.550000px;}
.ydd{bottom:175.350000px;}
.ya5{bottom:176.430000px;}
.y11f{bottom:181.287034px;}
.y145{bottom:183.090000px;}
.y2b{bottom:184.890000px;}
.y175{bottom:187.230000px;}
.y8d{bottom:188.490000px;}
.y10e{bottom:189.030000px;}
.y19d{bottom:192.090000px;}
.y62{bottom:194.610000px;}
.ydc{bottom:196.410000px;}
.y117{bottom:196.793101px;}
.ya4{bottom:197.490000px;}
.y11e{bottom:202.471509px;}
.y144{bottom:204.150000px;}
.y2a{bottom:205.950000px;}
.y174{bottom:208.290000px;}
.y8c{bottom:209.550000px;}
.y10d{bottom:210.090000px;}
.y19c{bottom:213.150000px;}
.y61{bottom:215.670000px;}
.ydb{bottom:217.470000px;}
.ya3{bottom:218.550000px;}
.y143{bottom:225.210000px;}
.y29{bottom:227.010000px;}
.y173{bottom:229.350000px;}
.y8b{bottom:230.610000px;}
.y10c{bottom:231.150000px;}
.y19b{bottom:234.210000px;}
.y60{bottom:236.730000px;}
.yda{bottom:238.530000px;}
.ya2{bottom:239.610000px;}
.y11d{bottom:244.825316px;}
.y142{bottom:246.270000px;}
.y28{bottom:248.070000px;}
.y118{bottom:250.261565px;}
.y172{bottom:250.410000px;}
.y8a{bottom:251.670000px;}
.y10b{bottom:252.210000px;}
.y5f{bottom:257.790000px;}
.yd9{bottom:259.590000px;}
.ya1{bottom:260.670000px;}
.y19a{bottom:264.270000px;}
.y171{bottom:264.810000px;}
.y11c{bottom:266.055219px;}
.y141{bottom:267.330000px;}
.y27{bottom:269.130000px;}
.y89{bottom:272.730000px;}
.y10a{bottom:273.270000px;}
.y170{bottom:274.710000px;}
.y5e{bottom:278.850000px;}
.yd8{bottom:280.650000px;}
.y16f{bottom:281.370000px;}
.ya0{bottom:281.730000px;}
.y199{bottom:285.330000px;}
.y11b{bottom:287.239694px;}
.y140{bottom:288.390000px;}
.y26{bottom:290.190000px;}
.y88{bottom:293.790000px;}
.y109{bottom:294.330000px;}
.y5d{bottom:299.910000px;}
.yd7{bottom:301.710000px;}
.y16e{bottom:302.430000px;}
.y9f{bottom:302.790000px;}
.y119{bottom:303.714886px;}
.y198{bottom:306.390000px;}
.y25{bottom:311.250000px;}
.y13f{bottom:312.690000px;}
.y87{bottom:314.850000px;}
.y108{bottom:315.390000px;}
.y13e{bottom:319.170000px;}
.y5c{bottom:320.970000px;}
.yd6{bottom:322.770000px;}
.y16d{bottom:323.490000px;}
.y9e{bottom:323.850000px;}
.y197{bottom:327.450000px;}
.y24{bottom:332.310000px;}
.y86{bottom:335.910000px;}
.y107{bottom:336.270000px;}
.y13d{bottom:340.230000px;}
.y5b{bottom:342.030000px;}
.yd5{bottom:343.830000px;}
.y16c{bottom:344.550000px;}
.y9d{bottom:344.910000px;}
.y196{bottom:348.510000px;}
.y23{bottom:353.370000px;}
.y16b{bottom:354.450000px;}
.y85{bottom:356.970000px;}
.y106{bottom:357.330000px;}
.y16a{bottom:360.930000px;}
.y13c{bottom:361.290000px;}
.y5a{bottom:363.090000px;}
.yd4{bottom:364.890000px;}
.y9c{bottom:365.970000px;}
.y195{bottom:369.570000px;}
.y22{bottom:374.430000px;}
.y84{bottom:378.030000px;}
.y105{bottom:378.390000px;}
.y169{bottom:381.990000px;}
.y13b{bottom:382.350000px;}
.y194{bottom:383.970000px;}
.y59{bottom:384.150000px;}
.yd3{bottom:385.950000px;}
.y9b{bottom:387.030000px;}
.y168{bottom:391.890000px;}
.y13a{bottom:392.250000px;}
.y193{bottom:393.870000px;}
.y21{bottom:395.310000px;}
.y167{bottom:398.550000px;}
.y138{bottom:398.910000px;}
.y83{bottom:399.090000px;}
.y104{bottom:399.450000px;}
.y192{bottom:400.575000px;}
.y58{bottom:405.255000px;}
.yd2{bottom:407.055000px;}
.y9a{bottom:408.135000px;}
.y20{bottom:416.415000px;}
.y103{bottom:416.595000px;}
.y166{bottom:419.655000px;}
.y137{bottom:420.015000px;}
.y82{bottom:420.195000px;}
.y191{bottom:421.635000px;}
.yab{bottom:421.995000px;}
.y57{bottom:426.315000px;}
.yd1{bottom:428.115000px;}
.y99{bottom:429.195000px;}
.y1f{bottom:437.475000px;}
.y165{bottom:440.715000px;}
.y81{bottom:441.255000px;}
.y190{bottom:442.695000px;}
.y56{bottom:447.375000px;}
.yd0{bottom:449.175000px;}
.y98{bottom:450.255000px;}
.y1e{bottom:458.535000px;}
.y164{bottom:461.775000px;}
.y136{bottom:462.135000px;}
.y80{bottom:462.315000px;}
.y18f{bottom:463.755000px;}
.y55{bottom:468.435000px;}
.ycf{bottom:470.235000px;}
.y97{bottom:471.315000px;}
.y135{bottom:472.035000px;}
.y134{bottom:478.695000px;}
.y1d{bottom:479.595000px;}
.y163{bottom:482.835000px;}
.yae{bottom:483.195000px;}
.y7f{bottom:483.375000px;}
.y54{bottom:489.495000px;}
.y96{bottom:492.375000px;}
.y132{bottom:499.755000px;}
.yce{bottom:500.295000px;}
.y1c{bottom:500.655000px;}
.y7e{bottom:504.435000px;}
.y18e{bottom:505.875000px;}
.y53{bottom:510.555000px;}
.y95{bottom:513.435000px;}
.y131{bottom:520.635000px;}
.ycd{bottom:521.355000px;}
.y1b{bottom:521.715000px;}
.y101{bottom:524.955000px;}
.y7d{bottom:525.495000px;}
.y52{bottom:531.615000px;}
.y94{bottom:534.495000px;}
.y100{bottom:534.855000px;}
.ya8{bottom:535.035000px;}
.yff{bottom:541.515000px;}
.y130{bottom:541.695000px;}
.ycc{bottom:542.415000px;}
.y1a{bottom:542.775000px;}
.y7c{bottom:546.555000px;}
.y18d{bottom:547.995000px;}
.y51{bottom:552.675000px;}
.y93{bottom:555.555000px;}
.yfe{bottom:562.575000px;}
.ycb{bottom:563.475000px;}
.y7b{bottom:567.615000px;}
.y12f{bottom:569.415000px;}
.y50{bottom:573.735000px;}
.y92{bottom:576.615000px;}
.yca{bottom:584.535000px;}
.y19{bottom:587.415000px;}
.y18c{bottom:590.115000px;}
.y12e{bottom:590.475000px;}
.y4f{bottom:594.795000px;}
.y7a{bottom:597.675000px;}
.yfd{bottom:604.695000px;}
.yc9{bottom:605.595000px;}
.y18b{bottom:611.175000px;}
.y12d{bottom:611.535000px;}
.y4e{bottom:615.855000px;}
.y18{bottom:617.295000px;}
.y79{bottom:618.735000px;}
.y18a{bottom:621.075000px;}
.yc8{bottom:626.655000px;}
.y4d{bottom:630.975000px;}
.y12c{bottom:632.595000px;}
.y189{bottom:634.215000px;}
.y162{bottom:636.915000px;}
.y17{bottom:638.355000px;}
.y78{bottom:639.795000px;}
.yfa{bottom:646.815000px;}
.yc7{bottom:647.715000px;}
.y4c{bottom:653.505000px;}
.y12b{bottom:653.685000px;}
.y188{bottom:655.305000px;}
.y161{bottom:658.005000px;}
.y16{bottom:659.445000px;}
.y77{bottom:660.885000px;}
.yc6{bottom:668.805000px;}
.y12a{bottom:674.745000px;}
.y4b{bottom:676.005000px;}
.y187{bottom:676.365000px;}
.y160{bottom:679.065000px;}
.y15{bottom:680.505000px;}
.y76{bottom:681.945000px;}
.yf8{bottom:688.965000px;}
.yc5{bottom:689.865000px;}
.y129{bottom:695.805000px;}
.y186{bottom:697.425000px;}
.y4a{bottom:698.505000px;}
.y15f{bottom:700.125000px;}
.y14{bottom:701.565000px;}
.y75{bottom:703.005000px;}
.yc4{bottom:710.925000px;}
.y15e{bottom:714.525000px;}
.y128{bottom:716.865000px;}
.y185{bottom:718.485000px;}
.y49{bottom:721.005000px;}
.y13{bottom:722.625000px;}
.y74{bottom:724.065000px;}
.y15d{bottom:724.425000px;}
.yf7{bottom:730.905000px;}
.yc3{bottom:731.985000px;}
.y113{bottom:733.964919px;}
.y127{bottom:733.965000px;}
.y184{bottom:739.545000px;}
.y48{bottom:743.505000px;}
.y12{bottom:743.685000px;}
.y73{bottom:745.125000px;}
.y15c{bottom:751.965000px;}
.yc2{bottom:753.045000px;}
.y183{bottom:760.605000px;}
.y11{bottom:764.745000px;}
.y47{bottom:766.005000px;}
.yf6{bottom:773.025000px;}
.yc1{bottom:774.105000px;}
.y182{bottom:781.665000px;}
.y15b{bottom:782.925000px;}
.y10{bottom:785.805000px;}
.y72{bottom:787.065000px;}
.y46{bottom:788.505000px;}
.y15a{bottom:789.585000px;}
.yc0{bottom:795.165000px;}
.y181{bottom:799.485000px;}
.y180{bottom:806.145000px;}
.yf{bottom:806.865000px;}
.y71{bottom:808.125000px;}
.y159{bottom:810.645000px;}
.y45{bottom:811.005000px;}
.yf5{bottom:815.145000px;}
.ybf{bottom:816.225000px;}
.yf4{bottom:825.045000px;}
.y17f{bottom:827.205000px;}
.ye{bottom:827.925000px;}
.y70{bottom:829.185000px;}
.yf3{bottom:831.705000px;}
.y44{bottom:833.505000px;}
.ybe{bottom:837.285000px;}
.y158{bottom:838.365000px;}
.y17e{bottom:848.265000px;}
.y6f{bottom:850.245000px;}
.yd{bottom:851.145000px;}
.yf2{bottom:852.765000px;}
.y43{bottom:856.005000px;}
.ybd{bottom:858.345000px;}
.y157{bottom:859.425000px;}
.y17d{bottom:869.325000px;}
.y6e{bottom:871.305000px;}
.yf0{bottom:873.825000px;}
.yc{bottom:877.425000px;}
.y42{bottom:878.505000px;}
.ybc{bottom:879.405000px;}
.y156{bottom:880.485000px;}
.y6d{bottom:892.365000px;}
.yb{bottom:894.165000px;}
.ybb{bottom:900.510000px;}
.y40{bottom:901.050000px;}
.y155{bottom:901.590000px;}
.y17c{bottom:911.490000px;}
.y6c{bottom:913.470000px;}
.yee{bottom:915.990000px;}
.ya{bottom:916.530000px;}
.yba{bottom:921.570000px;}
.y154{bottom:922.650000px;}
.y3f{bottom:924.270000px;}
.yec{bottom:925.890000px;}
.yeb{bottom:932.550000px;}
.y6b{bottom:934.530000px;}
.y9{bottom:941.730000px;}
.yb9{bottom:942.630000px;}
.y153{bottom:943.710000px;}
.y3d{bottom:946.770000px;}
.y17b{bottom:953.610000px;}
.y6a{bottom:955.590000px;}
.yb8{bottom:963.690000px;}
.y152{bottom:964.770000px;}
.y39{bottom:969.270000px;}
.ye9{bottom:974.670000px;}
.y8{bottom:975.390000px;}
.y69{bottom:976.650000px;}
.y151{bottom:979.170000px;}
.ye7{bottom:984.570000px;}
.yb7{bottom:984.750000px;}
.y150{bottom:989.070000px;}
.ye6{bottom:991.050000px;}
.y14f{bottom:995.730000px;}
.y68{bottom:997.710000px;}
.yb6{bottom:1005.810000px;}
.y7{bottom:1009.050000px;}
.ye5{bottom:1012.110000px;}
.y14e{bottom:1016.790000px;}
.y38{bottom:1018.770000px;}
.y17a{bottom:1026.690000px;}
.yb5{bottom:1026.870000px;}
.ye4{bottom:1033.170000px;}
.y14d{bottom:1037.850000px;}
.y37{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.ye3{bottom:1054.230000px;}
.yb4{bottom:1056.930000px;}
.y14c{bottom:1058.910000px;}
.y36{bottom:1060.890000px;}
.y14b{bottom:1068.810000px;}
.ye2{bottom:1075.290000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1081.950000px;}
.yb3{bottom:1087.710000px;}
.y14a{bottom:1096.350000px;}
.y34{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.yb2{bottom:1118.490000px;}
.y33{bottom:1124.070000px;}
.yb1{bottom:1135.410000px;}
.y32{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y31{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y30{bottom:1193.220000px;}
.h15{height:3.420000px;}
.h17{height:3.600000px;}
.h14{height:6.480000px;}
.h16{height:6.660000px;}
.h20{height:6.696000px;}
.h1e{height:20.880000px;}
.h13{height:21.060000px;}
.h1f{height:21.096000px;}
.hc{height:21.780000px;}
.he{height:21.816000px;}
.hd{height:22.500000px;}
.h11{height:36.360000px;}
.h8{height:38.671172px;}
.h10{height:38.700000px;}
.h19{height:41.940000px;}
.hb{height:42.120000px;}
.h18{height:42.156000px;}
.h12{height:43.380000px;}
.hf{height:45.170156px;}
.h1d{height:45.637031px;}
.h1c{height:59.017816px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h1b{height:68.854018px;}
.ha{height:71.613281px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h1a{height:320.174875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.280000px;}
.w9{width:71.316000px;}
.wd{width:78.840000px;}
.wb{width:86.220000px;}
.we{width:86.256000px;}
.w1b{width:86.400000px;}
.w19{width:86.436000px;}
.w21{width:91.440000px;}
.w1c{width:91.620000px;}
.w15{width:91.656000px;}
.w4{width:116.676000px;}
.w17{width:125.316000px;}
.w1e{width:125.496000px;}
.w1f{width:127.440000px;}
.w18{width:127.620000px;}
.w20{width:127.656000px;}
.w1a{width:128.016000px;}
.w7{width:134.136000px;}
.wc{width:144.036000px;}
.w6{width:166.350000px;}
.wf{width:172.470000px;}
.w1d{width:172.650000px;}
.w5{width:177.330000px;}
.wa{width:309.135000px;}
.w12{width:316.515000px;}
.w16{width:339.375000px;}
.w8{width:395.355000px;}
.w11{width:402.765000px;}
.w14{width:425.595000px;}
.w13{width:466.665000px;}
.w10{width:581.541427px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3a{left:-11.550000px;}
.x0{left:0.000000px;}
.x22{left:4.902279px;}
.x9{left:7.740000px;}
.x12{left:12.060000px;}
.x16{left:14.400000px;}
.x10{left:15.660000px;}
.x19{left:21.240000px;}
.x15{left:29.160000px;}
.x13{left:32.400000px;}
.x20{left:40.499987px;}
.xf{left:47.340000px;}
.x6{left:53.999987px;}
.x11{left:58.896000px;}
.x18{left:64.619987px;}
.xb{left:70.199987px;}
.x4c{left:75.239987px;}
.x7{left:80.999987px;}
.x4d{left:102.275987px;}
.xc{left:108.035987px;}
.x1e{left:141.515987px;}
.x48{left:147.456000px;}
.x5{left:156.449987px;}
.x2a{left:162.030000px;}
.x2f{left:170.489987px;}
.x3b{left:171.930000px;}
.x43{left:183.810000px;}
.x30{left:187.950000px;}
.x35{left:204.150000px;}
.x21{left:209.789980px;}
.xd{left:216.029987px;}
.x29{left:224.489987px;}
.xe{left:237.269987px;}
.x25{left:245.190000px;}
.x49{left:275.115000px;}
.x17{left:278.894987px;}
.x3{left:286.634987px;}
.x3c{left:297.435000px;}
.x2b{left:306.075000px;}
.x44{left:309.315000px;}
.x33{left:313.275000px;}
.x36{left:329.475000px;}
.x3f{left:341.355000px;}
.x2{left:350.534987px;}
.x8{left:352.335000px;}
.x1c{left:360.075000px;}
.x4a{left:361.335000px;}
.x2c{left:384.915000px;}
.x27{left:389.235000px;}
.x14{left:402.375000px;}
.x4{left:419.114987px;}
.xa{left:423.975000px;}
.x45{left:436.755000px;}
.x23{left:437.756071px;}
.x1d{left:438.915000px;}
.x34{left:440.895000px;}
.x4b{left:447.765000px;}
.x1f{left:451.364987px;}
.x37{left:457.485000px;}
.x40{left:469.365000px;}
.x2d{left:471.165000px;}
.x28{left:475.485000px;}
.x1{left:479.264987px;}
.x3e{left:511.305000px;}
.x47{left:523.185000px;}
.x1b{left:525.165000px;}
.x32{left:527.325000px;}
.x38{left:543.885000px;}
.x41{left:555.765000px;}
.x2e{left:557.385000px;}
.x26{left:561.705000px;}
.x3d{left:597.525000px;}
.x46{left:609.405000px;}
.x1a{left:611.385000px;}
.x31{left:613.545000px;}
.x39{left:630.150000px;}
.x42{left:642.030000px;}
.x24{left:791.429987px;}
.x4e{left:855.539987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls15{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.383467pt;}
.lse{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.190933pt;}
.ls6{letter-spacing:-0.117867pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls23{letter-spacing:-0.069867pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls21{letter-spacing:-0.049280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034560pt;}
.ls2b{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.058667pt;}
.ls28{letter-spacing:0.059733pt;}
.ls1c{letter-spacing:0.066667pt;}
.ls12{letter-spacing:0.086400pt;}
.lsc{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.154880pt;}
.ls22{letter-spacing:0.155733pt;}
.ls2d{letter-spacing:0.159360pt;}
.ls9{letter-spacing:0.169067pt;}
.ls26{letter-spacing:0.244267pt;}
.ls20{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.279467pt;}
.ls2{letter-spacing:0.426240pt;}
.ls0{letter-spacing:0.490240pt;}
.ls16{letter-spacing:0.554240pt;}
.ls1d{letter-spacing:0.592640pt;}
.ls24{letter-spacing:0.676875pt;}
.ls25{letter-spacing:0.732228pt;}
.ls1{letter-spacing:0.794880pt;}
.ls17{letter-spacing:3.792640pt;}
.ls2c{letter-spacing:10.832640pt;}
.ls10{letter-spacing:17.872640pt;}
.ls11{letter-spacing:34.512640pt;}
.ls1a{letter-spacing:37.072640pt;}
.ls2a{letter-spacing:37.712640pt;}
.ls27{letter-spacing:38.992640pt;}
.ls1e{letter-spacing:39.632640pt;}
.ls29{letter-spacing:40.912640pt;}
.ls1f{letter-spacing:42.192640pt;}
.ls3{letter-spacing:71.120640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.284587pt;}
.wse{word-spacing:-12.277120pt;}
.ws14{word-spacing:-12.249387pt;}
.ws10{word-spacing:-12.160853pt;}
.wsd{word-spacing:-12.071787pt;}
.ws15{word-spacing:-12.064853pt;}
.ws16{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.955840pt;}
.ws9{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.935253pt;}
.wsb{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.wsa{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:198.949394pt;}
.ws13{word-spacing:218.963292pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._12{margin-left:-246.543360pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._17{margin-left:-198.394880pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._25{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._22{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._15{margin-left:-134.241280pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.386560pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._23{margin-left:-97.976320pt;}
._11{margin-left:-93.946880pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._14{margin-left:-59.292160pt;}
._16{margin-left:-44.010667pt;}
._13{margin-left:-42.668373pt;}
._19{margin-left:-28.861013pt;}
._42{margin-left:-12.759253pt;}
._27{margin-left:-3.917653pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.361920pt;}
._2d{width:2.496640pt;}
._2c{width:3.455360pt;}
._2b{width:4.426240pt;}
._2a{width:5.788160pt;}
._33{width:6.707200pt;}
._32{width:7.596160pt;}
._2f{width:8.919680pt;}
._2e{width:10.305280pt;}
._30{width:13.439360pt;}
._31{width:14.467840pt;}
._34{width:15.612800pt;}
._37{width:16.520320pt;}
._3a{width:18.273280pt;}
._39{width:19.335680pt;}
._38{width:20.451200pt;}
._41{width:21.938560pt;}
._40{width:23.213440pt;}
._35{width:27.163520pt;}
._36{width:28.328107pt;}
._28{width:41.708800pt;}
._3f{width:51.869867pt;}
._3b{width:56.098347pt;}
._3e{width:62.778667pt;}
._3d{width:64.691840pt;}
._4b{width:77.557781pt;}
._4f{width:87.063680pt;}
._4d{width:89.260800pt;}
._3c{width:94.966400pt;}
._4c{width:95.964163pt;}
._47{width:98.812316pt;}
._48{width:105.894977pt;}
._49{width:116.258276pt;}
._50{width:119.326720pt;}
._45{width:130.837077pt;}
._4a{width:133.027872pt;}
._46{width:141.255869pt;}
._4e{width:236.596480pt;}
._43{width:288.312363pt;}
._44{width:296.605008pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:52.743571pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:61.534077pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y102{bottom:-25.760000pt;}
.yea{bottom:-9.760000pt;}
.yef{bottom:-9.600000pt;}
.ye8{bottom:-7.040000pt;}
.yed{bottom:-6.880000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:0.960000pt;}
.yaa{bottom:3.200000pt;}
.y133{bottom:5.760000pt;}
.y3c{bottom:5.920000pt;}
.yfb{bottom:5.946667pt;}
.y139{bottom:5.960000pt;}
.y3e{bottom:6.240000pt;}
.y41{bottom:6.560000pt;}
.yb0{bottom:7.200000pt;}
.y126{bottom:10.405059pt;}
.y3a{bottom:15.360000pt;}
.y11a{bottom:17.814481pt;}
.yac{bottom:19.520000pt;}
.ya9{bottom:21.600000pt;}
.yf9{bottom:24.480000pt;}
.y3b{bottom:24.640000pt;}
.yfc{bottom:24.666667pt;}
.yf1{bottom:24.680000pt;}
.yaf{bottom:25.760000pt;}
.y125{bottom:29.267604pt;}
.y114{bottom:32.340593pt;}
.y6{bottom:54.560000pt;}
.y124{bottom:66.926201pt;}
.y67{bottom:79.360000pt;}
.y115{bottom:79.868116pt;}
.ye1{bottom:80.960000pt;}
.y1a3{bottom:81.920000pt;}
.y123{bottom:85.755499pt;}
.y149{bottom:87.840000pt;}
.y2f{bottom:89.440000pt;}
.y179{bottom:91.520000pt;}
.y91{bottom:92.640000pt;}
.y112{bottom:93.120000pt;}
.y1a1{bottom:96.000000pt;}
.y66{bottom:98.080000pt;}
.ye0{bottom:99.680000pt;}
.y1a2{bottom:100.640000pt;}
.y122{bottom:104.617101pt;}
.y148{bottom:106.560000pt;}
.y2e{bottom:108.160000pt;}
.y178{bottom:110.240000pt;}
.y90{bottom:111.360000pt;}
.y111{bottom:111.840000pt;}
.y1a0{bottom:114.720000pt;}
.y1a4{bottom:116.320000pt;}
.y65{bottom:116.800000pt;}
.ydf{bottom:118.400000pt;}
.ya7{bottom:119.360000pt;}
.y121{bottom:123.447746pt;}
.y147{bottom:125.280000pt;}
.y2d{bottom:126.880000pt;}
.y116{bottom:127.394293pt;}
.y177{bottom:128.960000pt;}
.y8f{bottom:130.080000pt;}
.y110{bottom:130.560000pt;}
.y19f{bottom:133.280000pt;}
.y64{bottom:135.546667pt;}
.yde{bottom:137.146667pt;}
.ya6{bottom:138.106667pt;}
.y120{bottom:142.273006pt;}
.y146{bottom:144.026667pt;}
.y2c{bottom:145.626667pt;}
.y176{bottom:147.706667pt;}
.y8e{bottom:148.826667pt;}
.y10f{bottom:149.306667pt;}
.y19e{bottom:152.026667pt;}
.y63{bottom:154.266667pt;}
.ydd{bottom:155.866667pt;}
.ya5{bottom:156.826667pt;}
.y11f{bottom:161.144031pt;}
.y145{bottom:162.746667pt;}
.y2b{bottom:164.346667pt;}
.y175{bottom:166.426667pt;}
.y8d{bottom:167.546667pt;}
.y10e{bottom:168.026667pt;}
.y19d{bottom:170.746667pt;}
.y62{bottom:172.986667pt;}
.ydc{bottom:174.586667pt;}
.y117{bottom:174.927201pt;}
.ya4{bottom:175.546667pt;}
.y11e{bottom:179.974675pt;}
.y144{bottom:181.466667pt;}
.y2a{bottom:183.066667pt;}
.y174{bottom:185.146667pt;}
.y8c{bottom:186.266667pt;}
.y10d{bottom:186.746667pt;}
.y19c{bottom:189.466667pt;}
.y61{bottom:191.706667pt;}
.ydb{bottom:193.306667pt;}
.ya3{bottom:194.266667pt;}
.y143{bottom:200.186667pt;}
.y29{bottom:201.786667pt;}
.y173{bottom:203.866667pt;}
.y8b{bottom:204.986667pt;}
.y10c{bottom:205.466667pt;}
.y19b{bottom:208.186667pt;}
.y60{bottom:210.426667pt;}
.yda{bottom:212.026667pt;}
.ya2{bottom:212.986667pt;}
.y11d{bottom:217.622503pt;}
.y142{bottom:218.906667pt;}
.y28{bottom:220.506667pt;}
.y118{bottom:222.454724pt;}
.y172{bottom:222.586667pt;}
.y8a{bottom:223.706667pt;}
.y10b{bottom:224.186667pt;}
.y5f{bottom:229.146667pt;}
.yd9{bottom:230.746667pt;}
.ya1{bottom:231.706667pt;}
.y19a{bottom:234.906667pt;}
.y171{bottom:235.386667pt;}
.y11c{bottom:236.493528pt;}
.y141{bottom:237.626667pt;}
.y27{bottom:239.226667pt;}
.y89{bottom:242.426667pt;}
.y10a{bottom:242.906667pt;}
.y170{bottom:244.186667pt;}
.y5e{bottom:247.866667pt;}
.yd8{bottom:249.466667pt;}
.y16f{bottom:250.106667pt;}
.ya0{bottom:250.426667pt;}
.y199{bottom:253.626667pt;}
.y11b{bottom:255.324172pt;}
.y140{bottom:256.346667pt;}
.y26{bottom:257.946667pt;}
.y88{bottom:261.146667pt;}
.y109{bottom:261.626667pt;}
.y5d{bottom:266.586667pt;}
.yd7{bottom:268.186667pt;}
.y16e{bottom:268.826667pt;}
.y9f{bottom:269.146667pt;}
.y119{bottom:269.968787pt;}
.y198{bottom:272.346667pt;}
.y25{bottom:276.666667pt;}
.y13f{bottom:277.946667pt;}
.y87{bottom:279.866667pt;}
.y108{bottom:280.346667pt;}
.y13e{bottom:283.706667pt;}
.y5c{bottom:285.306667pt;}
.yd6{bottom:286.906667pt;}
.y16d{bottom:287.546667pt;}
.y9e{bottom:287.866667pt;}
.y197{bottom:291.066667pt;}
.y24{bottom:295.386667pt;}
.y86{bottom:298.586667pt;}
.y107{bottom:298.906667pt;}
.y13d{bottom:302.426667pt;}
.y5b{bottom:304.026667pt;}
.yd5{bottom:305.626667pt;}
.y16c{bottom:306.266667pt;}
.y9d{bottom:306.586667pt;}
.y196{bottom:309.786667pt;}
.y23{bottom:314.106667pt;}
.y16b{bottom:315.066667pt;}
.y85{bottom:317.306667pt;}
.y106{bottom:317.626667pt;}
.y16a{bottom:320.826667pt;}
.y13c{bottom:321.146667pt;}
.y5a{bottom:322.746667pt;}
.yd4{bottom:324.346667pt;}
.y9c{bottom:325.306667pt;}
.y195{bottom:328.506667pt;}
.y22{bottom:332.826667pt;}
.y84{bottom:336.026667pt;}
.y105{bottom:336.346667pt;}
.y169{bottom:339.546667pt;}
.y13b{bottom:339.866667pt;}
.y194{bottom:341.306667pt;}
.y59{bottom:341.466667pt;}
.yd3{bottom:343.066667pt;}
.y9b{bottom:344.026667pt;}
.y168{bottom:348.346667pt;}
.y13a{bottom:348.666667pt;}
.y193{bottom:350.106667pt;}
.y21{bottom:351.386667pt;}
.y167{bottom:354.266667pt;}
.y138{bottom:354.586667pt;}
.y83{bottom:354.746667pt;}
.y104{bottom:355.066667pt;}
.y192{bottom:356.066667pt;}
.y58{bottom:360.226667pt;}
.yd2{bottom:361.826667pt;}
.y9a{bottom:362.786667pt;}
.y20{bottom:370.146667pt;}
.y103{bottom:370.306667pt;}
.y166{bottom:373.026667pt;}
.y137{bottom:373.346667pt;}
.y82{bottom:373.506667pt;}
.y191{bottom:374.786667pt;}
.yab{bottom:375.106667pt;}
.y57{bottom:378.946667pt;}
.yd1{bottom:380.546667pt;}
.y99{bottom:381.506667pt;}
.y1f{bottom:388.866667pt;}
.y165{bottom:391.746667pt;}
.y81{bottom:392.226667pt;}
.y190{bottom:393.506667pt;}
.y56{bottom:397.666667pt;}
.yd0{bottom:399.266667pt;}
.y98{bottom:400.226667pt;}
.y1e{bottom:407.586667pt;}
.y164{bottom:410.466667pt;}
.y136{bottom:410.786667pt;}
.y80{bottom:410.946667pt;}
.y18f{bottom:412.226667pt;}
.y55{bottom:416.386667pt;}
.ycf{bottom:417.986667pt;}
.y97{bottom:418.946667pt;}
.y135{bottom:419.586667pt;}
.y134{bottom:425.506667pt;}
.y1d{bottom:426.306667pt;}
.y163{bottom:429.186667pt;}
.yae{bottom:429.506667pt;}
.y7f{bottom:429.666667pt;}
.y54{bottom:435.106667pt;}
.y96{bottom:437.666667pt;}
.y132{bottom:444.226667pt;}
.yce{bottom:444.706667pt;}
.y1c{bottom:445.026667pt;}
.y7e{bottom:448.386667pt;}
.y18e{bottom:449.666667pt;}
.y53{bottom:453.826667pt;}
.y95{bottom:456.386667pt;}
.y131{bottom:462.786667pt;}
.ycd{bottom:463.426667pt;}
.y1b{bottom:463.746667pt;}
.y101{bottom:466.626667pt;}
.y7d{bottom:467.106667pt;}
.y52{bottom:472.546667pt;}
.y94{bottom:475.106667pt;}
.y100{bottom:475.426667pt;}
.ya8{bottom:475.586667pt;}
.yff{bottom:481.346667pt;}
.y130{bottom:481.506667pt;}
.ycc{bottom:482.146667pt;}
.y1a{bottom:482.466667pt;}
.y7c{bottom:485.826667pt;}
.y18d{bottom:487.106667pt;}
.y51{bottom:491.266667pt;}
.y93{bottom:493.826667pt;}
.yfe{bottom:500.066667pt;}
.ycb{bottom:500.866667pt;}
.y7b{bottom:504.546667pt;}
.y12f{bottom:506.146667pt;}
.y50{bottom:509.986667pt;}
.y92{bottom:512.546667pt;}
.yca{bottom:519.586667pt;}
.y19{bottom:522.146667pt;}
.y18c{bottom:524.546667pt;}
.y12e{bottom:524.866667pt;}
.y4f{bottom:528.706667pt;}
.y7a{bottom:531.266667pt;}
.yfd{bottom:537.506667pt;}
.yc9{bottom:538.306667pt;}
.y18b{bottom:543.266667pt;}
.y12d{bottom:543.586667pt;}
.y4e{bottom:547.426667pt;}
.y18{bottom:548.706667pt;}
.y79{bottom:549.986667pt;}
.y18a{bottom:552.066667pt;}
.yc8{bottom:557.026667pt;}
.y4d{bottom:560.866667pt;}
.y12c{bottom:562.306667pt;}
.y189{bottom:563.746667pt;}
.y162{bottom:566.146667pt;}
.y17{bottom:567.426667pt;}
.y78{bottom:568.706667pt;}
.yfa{bottom:574.946667pt;}
.yc7{bottom:575.746667pt;}
.y4c{bottom:580.893333pt;}
.y12b{bottom:581.053333pt;}
.y188{bottom:582.493333pt;}
.y161{bottom:584.893333pt;}
.y16{bottom:586.173333pt;}
.y77{bottom:587.453333pt;}
.yc6{bottom:594.493333pt;}
.y12a{bottom:599.773333pt;}
.y4b{bottom:600.893333pt;}
.y187{bottom:601.213333pt;}
.y160{bottom:603.613333pt;}
.y15{bottom:604.893333pt;}
.y76{bottom:606.173333pt;}
.yf8{bottom:612.413333pt;}
.yc5{bottom:613.213333pt;}
.y129{bottom:618.493333pt;}
.y186{bottom:619.933333pt;}
.y4a{bottom:620.893333pt;}
.y15f{bottom:622.333333pt;}
.y14{bottom:623.613333pt;}
.y75{bottom:624.893333pt;}
.yc4{bottom:631.933333pt;}
.y15e{bottom:635.133333pt;}
.y128{bottom:637.213333pt;}
.y185{bottom:638.653333pt;}
.y49{bottom:640.893333pt;}
.y13{bottom:642.333333pt;}
.y74{bottom:643.613333pt;}
.y15d{bottom:643.933333pt;}
.yf7{bottom:649.693333pt;}
.yc3{bottom:650.653333pt;}
.y113{bottom:652.413261pt;}
.y127{bottom:652.413333pt;}
.y184{bottom:657.373333pt;}
.y48{bottom:660.893333pt;}
.y12{bottom:661.053333pt;}
.y73{bottom:662.333333pt;}
.y15c{bottom:668.413333pt;}
.yc2{bottom:669.373333pt;}
.y183{bottom:676.093333pt;}
.y11{bottom:679.773333pt;}
.y47{bottom:680.893333pt;}
.yf6{bottom:687.133333pt;}
.yc1{bottom:688.093333pt;}
.y182{bottom:694.813333pt;}
.y15b{bottom:695.933333pt;}
.y10{bottom:698.493333pt;}
.y72{bottom:699.613333pt;}
.y46{bottom:700.893333pt;}
.y15a{bottom:701.853333pt;}
.yc0{bottom:706.813333pt;}
.y181{bottom:710.653333pt;}
.y180{bottom:716.573333pt;}
.yf{bottom:717.213333pt;}
.y71{bottom:718.333333pt;}
.y159{bottom:720.573333pt;}
.y45{bottom:720.893333pt;}
.yf5{bottom:724.573333pt;}
.ybf{bottom:725.533333pt;}
.yf4{bottom:733.373333pt;}
.y17f{bottom:735.293333pt;}
.ye{bottom:735.933333pt;}
.y70{bottom:737.053333pt;}
.yf3{bottom:739.293333pt;}
.y44{bottom:740.893333pt;}
.ybe{bottom:744.253333pt;}
.y158{bottom:745.213333pt;}
.y17e{bottom:754.013333pt;}
.y6f{bottom:755.773333pt;}
.yd{bottom:756.573333pt;}
.yf2{bottom:758.013333pt;}
.y43{bottom:760.893333pt;}
.ybd{bottom:762.973333pt;}
.y157{bottom:763.933333pt;}
.y17d{bottom:772.733333pt;}
.y6e{bottom:774.493333pt;}
.yf0{bottom:776.733333pt;}
.yc{bottom:779.933333pt;}
.y42{bottom:780.893333pt;}
.ybc{bottom:781.693333pt;}
.y156{bottom:782.653333pt;}
.y6d{bottom:793.213333pt;}
.yb{bottom:794.813333pt;}
.ybb{bottom:800.453333pt;}
.y40{bottom:800.933333pt;}
.y155{bottom:801.413333pt;}
.y17c{bottom:810.213333pt;}
.y6c{bottom:811.973333pt;}
.yee{bottom:814.213333pt;}
.ya{bottom:814.693333pt;}
.yba{bottom:819.173333pt;}
.y154{bottom:820.133333pt;}
.y3f{bottom:821.573333pt;}
.yec{bottom:823.013333pt;}
.yeb{bottom:828.933333pt;}
.y6b{bottom:830.693333pt;}
.y9{bottom:837.093333pt;}
.yb9{bottom:837.893333pt;}
.y153{bottom:838.853333pt;}
.y3d{bottom:841.573333pt;}
.y17b{bottom:847.653333pt;}
.y6a{bottom:849.413333pt;}
.yb8{bottom:856.613333pt;}
.y152{bottom:857.573333pt;}
.y39{bottom:861.573333pt;}
.ye9{bottom:866.373333pt;}
.y8{bottom:867.013333pt;}
.y69{bottom:868.133333pt;}
.y151{bottom:870.373333pt;}
.ye7{bottom:875.173333pt;}
.yb7{bottom:875.333333pt;}
.y150{bottom:879.173333pt;}
.ye6{bottom:880.933333pt;}
.y14f{bottom:885.093333pt;}
.y68{bottom:886.853333pt;}
.yb6{bottom:894.053333pt;}
.y7{bottom:896.933333pt;}
.ye5{bottom:899.653333pt;}
.y14e{bottom:903.813333pt;}
.y38{bottom:905.573333pt;}
.y17a{bottom:912.613333pt;}
.yb5{bottom:912.773333pt;}
.ye4{bottom:918.373333pt;}
.y14d{bottom:922.533333pt;}
.y37{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.ye3{bottom:937.093333pt;}
.yb4{bottom:939.493333pt;}
.y14c{bottom:941.253333pt;}
.y36{bottom:943.013333pt;}
.y14b{bottom:950.053333pt;}
.ye2{bottom:955.813333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:961.733333pt;}
.yb3{bottom:966.853333pt;}
.y14a{bottom:974.533333pt;}
.y34{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.yb2{bottom:994.213333pt;}
.y33{bottom:999.173333pt;}
.yb1{bottom:1009.253333pt;}
.y32{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y31{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y30{bottom:1060.640000pt;}
.h15{height:3.040000pt;}
.h17{height:3.200000pt;}
.h14{height:5.760000pt;}
.h16{height:5.920000pt;}
.h20{height:5.952000pt;}
.h1e{height:18.560000pt;}
.h13{height:18.720000pt;}
.h1f{height:18.752000pt;}
.hc{height:19.360000pt;}
.he{height:19.392000pt;}
.hd{height:20.000000pt;}
.h11{height:32.320000pt;}
.h8{height:34.374375pt;}
.h10{height:34.400000pt;}
.h19{height:37.280000pt;}
.hb{height:37.440000pt;}
.h18{height:37.472000pt;}
.h12{height:38.560000pt;}
.hf{height:40.151250pt;}
.h1d{height:40.566250pt;}
.h1c{height:52.460281pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h1b{height:61.203572pt;}
.ha{height:63.656250pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h1a{height:284.599889pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.360000pt;}
.w9{width:63.392000pt;}
.wd{width:70.080000pt;}
.wb{width:76.640000pt;}
.we{width:76.672000pt;}
.w1b{width:76.800000pt;}
.w19{width:76.832000pt;}
.w21{width:81.280000pt;}
.w1c{width:81.440000pt;}
.w15{width:81.472000pt;}
.w4{width:103.712000pt;}
.w17{width:111.392000pt;}
.w1e{width:111.552000pt;}
.w1f{width:113.280000pt;}
.w18{width:113.440000pt;}
.w20{width:113.472000pt;}
.w1a{width:113.792000pt;}
.w7{width:119.232000pt;}
.wc{width:128.032000pt;}
.w6{width:147.866667pt;}
.wf{width:153.306667pt;}
.w1d{width:153.466667pt;}
.w5{width:157.626667pt;}
.wa{width:274.786667pt;}
.w12{width:281.346667pt;}
.w16{width:301.666667pt;}
.w8{width:351.426667pt;}
.w11{width:358.013333pt;}
.w14{width:378.306667pt;}
.w13{width:414.813333pt;}
.w10{width:516.925713pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3a{left:-10.266667pt;}
.x0{left:0.000000pt;}
.x22{left:4.357581pt;}
.x9{left:6.880000pt;}
.x12{left:10.720000pt;}
.x16{left:12.800000pt;}
.x10{left:13.920000pt;}
.x19{left:18.880000pt;}
.x15{left:25.920000pt;}
.x13{left:28.800000pt;}
.x20{left:35.999988pt;}
.xf{left:42.080000pt;}
.x6{left:47.999988pt;}
.x11{left:52.352000pt;}
.x18{left:57.439988pt;}
.xb{left:62.399988pt;}
.x4c{left:66.879988pt;}
.x7{left:71.999988pt;}
.x4d{left:90.911988pt;}
.xc{left:96.031988pt;}
.x1e{left:125.791988pt;}
.x48{left:131.072000pt;}
.x5{left:139.066655pt;}
.x2a{left:144.026667pt;}
.x2f{left:151.546655pt;}
.x3b{left:152.826667pt;}
.x43{left:163.386667pt;}
.x30{left:167.066667pt;}
.x35{left:181.466667pt;}
.x21{left:186.479982pt;}
.xd{left:192.026655pt;}
.x29{left:199.546655pt;}
.xe{left:210.906655pt;}
.x25{left:217.946667pt;}
.x49{left:244.546667pt;}
.x17{left:247.906655pt;}
.x3{left:254.786655pt;}
.x3c{left:264.386667pt;}
.x2b{left:272.066667pt;}
.x44{left:274.946667pt;}
.x33{left:278.466667pt;}
.x36{left:292.866667pt;}
.x3f{left:303.426667pt;}
.x2{left:311.586655pt;}
.x8{left:313.186667pt;}
.x1c{left:320.066667pt;}
.x4a{left:321.186667pt;}
.x2c{left:342.146667pt;}
.x27{left:345.986667pt;}
.x14{left:357.666667pt;}
.x4{left:372.546655pt;}
.xa{left:376.866667pt;}
.x45{left:388.226667pt;}
.x23{left:389.116508pt;}
.x1d{left:390.146667pt;}
.x34{left:391.906667pt;}
.x4b{left:398.013333pt;}
.x1f{left:401.213322pt;}
.x37{left:406.653333pt;}
.x40{left:417.213333pt;}
.x2d{left:418.813333pt;}
.x28{left:422.653333pt;}
.x1{left:426.013322pt;}
.x3e{left:454.493333pt;}
.x47{left:465.053333pt;}
.x1b{left:466.813333pt;}
.x32{left:468.733333pt;}
.x38{left:483.453333pt;}
.x41{left:494.013333pt;}
.x2e{left:495.453333pt;}
.x26{left:499.293333pt;}
.x3d{left:531.133333pt;}
.x46{left:541.693333pt;}
.x1a{left:543.453333pt;}
.x31{left:545.373333pt;}
.x39{left:560.133333pt;}
.x42{left:570.693333pt;}
.x24{left:703.493322pt;}
.x4e{left:760.479988pt;}
}




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