
    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_c127ddaab79cc11d558f59f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.435059;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_8512750a588dc3e8dea169cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4e721258dafc85a9d6ea28be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_1cace1ca9e0fccd3c772ff34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2244d8bea3a1c8351b374cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_27394d5d0d961836c9c02f35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3019cb5088d1fd27f80edcd9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_4807448295645acde8db64ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125488;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_297c832404f4762da3448493.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_320d3fc1e137027e7bba3b8f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_819de7a69add145f712e31f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b32e75e19ccb43e9640322bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d4b690ba309ad56eb7b44f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132600px;}
.ls19{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.089400px;}
.ls21{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.149760px;}
.ls24{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.256320px;}
.ls17{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.269400px;}
.ls25{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.869760px;}
.ls23{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.589760px;}
.ls13{letter-spacing:2.309760px;}
.ls12{letter-spacing:3.029760px;}
.ls1c{letter-spacing:3.749760px;}
.ls3{letter-spacing:4.469760px;}
.ls1{letter-spacing:5.189760px;}
.lsb{letter-spacing:5.909760px;}
.ls1e{letter-spacing:7.349760px;}
.ls1f{letter-spacing:8.069760px;}
.ls7{letter-spacing:11.669760px;}
.ls2{letter-spacing:16.709760px;}
.ls15{letter-spacing:18.720000px;}
.ls11{letter-spacing:31.104000px;}
.ls9{letter-spacing:33.269760px;}
.ls5{letter-spacing:33.984000px;}
.ls6{letter-spacing:38.465280px;}
.lsa{letter-spacing:64.224000px;}
.ls18{letter-spacing:67.265280px;}
.ls14{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.wsb{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.059640px;}
.ws1{word-spacing:-12.329400px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-16.670880px;}
._14{margin-left:-12.479520px;}
._13{margin-left:-11.260800px;}
._12{margin-left:-8.424000px;}
._29{margin-left:-5.472000px;}
._e{margin-left:-4.392000px;}
._f{margin-left:-3.312000px;}
._10{margin-left:-2.206080px;}
._2{margin-left:-1.179360px;}
._1{width:1.454880px;}
._15{width:2.547360px;}
._b{width:4.032000px;}
._6{width:5.040000px;}
._7{width:6.192000px;}
._8{width:7.632000px;}
._9{width:9.084480px;}
._5{width:10.152000px;}
._3{width:11.808000px;}
._4{width:12.900480px;}
._c{width:14.616000px;}
._d{width:16.344000px;}
._a{width:19.080000px;}
._1a{width:20.232000px;}
._17{width:21.384000px;}
._18{width:22.680000px;}
._20{width:24.336000px;}
._21{width:25.488000px;}
._22{width:26.883360px;}
._1f{width:28.512000px;}
._1b{width:30.168000px;}
._1c{width:31.628640px;}
._23{width:32.688000px;}
._16{width:33.867360px;}
._27{width:35.136000px;}
._28{width:36.476640px;}
._1e{width:42.579360px;}
._25{width:45.360000px;}
._26{width:46.368000px;}
._2b{width:47.880000px;}
._2c{width:49.150080px;}
._1d{width:86.400000px;}
._24{width:176.646240px;}
._19{width:194.376000px;}
._2a{width:846.180000px;}
._0{width:1305.287040px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y15b{bottom:17.280000px;}
.y161{bottom:17.460000px;}
.y15a{bottom:17.640000px;}
.y167{bottom:17.685000px;}
.y163{bottom:18.720000px;}
.y15d{bottom:18.900000px;}
.y1d0{bottom:26.640000px;}
.y1d6{bottom:26.670000px;}
.y1cd{bottom:26.685000px;}
.y1ca{bottom:26.820000px;}
.y1fe{bottom:43.245000px;}
.y1f1{bottom:53.640000px;}
.y1f9{bottom:57.240000px;}
.y1cf{bottom:57.600000px;}
.y1d5{bottom:57.630000px;}
.y1cc{bottom:57.645000px;}
.y1d2{bottom:57.780000px;}
.y14{bottom:58.500000px;}
.y1fd{bottom:62.505000px;}
.y1c9{bottom:69.840000px;}
.y13{bottom:78.696000px;}
.y1fc{bottom:81.585000px;}
.y1e9{bottom:87.510000px;}
.y1d4{bottom:88.770000px;}
.y201{bottom:92.565000px;}
.y1f0{bottom:96.660000px;}
.y115{bottom:111.816000px;}
.y1fb{bottom:112.545000px;}
.y81{bottom:112.716000px;}
.y200{bottom:113.805000px;}
.y171{bottom:113.976000px;}
.y122{bottom:116.856000px;}
.y4a{bottom:117.036000px;}
.y155{bottom:118.836000px;}
.y19e{bottom:120.996000px;}
.y1b8{bottom:123.156000px;}
.y119{bottom:123.876000px;}
.y1ae{bottom:124.776000px;}
.y1f4{bottom:127.296000px;}
.ye1{bottom:128.196000px;}
.y11c{bottom:130.896000px;}
.yfe{bottom:131.796000px;}
.y13e{bottom:133.056000px;}
.y1ff{bottom:134.505000px;}
.y99{bottom:135.036000px;}
.yd1{bottom:135.216000px;}
.y2f{bottom:135.396000px;}
.y63{bottom:135.756000px;}
.y16c{bottom:137.196000px;}
.y1a3{bottom:137.916000px;}
.y12{bottom:138.456000px;}
.y1ef{bottom:139.725000px;}
.y114{bottom:142.956000px;}
.y170{bottom:144.936000px;}
.y1c7{bottom:145.116000px;}
.y121{bottom:147.816000px;}
.ya6{bottom:149.976000px;}
.y19d{bottom:151.950000px;}
.y118{bottom:154.830000px;}
.y80{bottom:155.730000px;}
.ye0{bottom:159.330000px;}
.y144{bottom:159.870000px;}
.y49{bottom:160.050000px;}
.y11b{bottom:161.850000px;}
.yfd{bottom:162.750000px;}
.y1c3{bottom:164.010000px;}
.y1b7{bottom:166.170000px;}
.yd0{bottom:166.350000px;}
.y62{bottom:166.890000px;}
.y16b{bottom:168.330000px;}
.y153{bottom:169.050000px;}
.y1f3{bottom:170.310000px;}
.y113{bottom:173.910000px;}
.y11{bottom:174.630000px;}
.y13d{bottom:176.070000px;}
.y98{bottom:178.050000px;}
.yac{bottom:178.950000px;}
.y188{bottom:180.930000px;}
.y1ee{bottom:182.745000px;}
.y19c{bottom:183.090000px;}
.y1f7{bottom:184.680000px;}
.y117{bottom:185.970000px;}
.y7f{bottom:186.690000px;}
.y1c6{bottom:187.230000px;}
.y16f{bottom:187.950000px;}
.ydf{bottom:190.290000px;}
.y12d{bottom:190.830000px;}
.ya5{bottom:192.990000px;}
.ycf{bottom:197.310000px;}
.y61{bottom:197.850000px;}
.y2e{bottom:199.290000px;}
.y152{bottom:200.010000px;}
.y48{bottom:203.070000px;}
.y112{bottom:205.050000px;}
.yfc{bottom:205.770000px;}
.y1c2{bottom:207.030000px;}
.y184{bottom:209.190000px;}
.yab{bottom:209.910000px;}
.y10{bottom:210.630000px;}
.y16a{bottom:210.990000px;}
.y1a2{bottom:212.070000px;}
.y1f2{bottom:213.330000px;}
.y19b{bottom:214.050000px;}
.y116{bottom:216.930000px;}
.y7e{bottom:217.830000px;}
.y13c{bottom:219.090000px;}
.y1c5{bottom:219.270000px;}
.y97{bottom:221.250000px;}
.yde{bottom:221.430000px;}
.y12c{bottom:221.970000px;}
.y187{bottom:223.590000px;}
.y18e{bottom:223.950000px;}
.y1ed{bottom:225.765000px;}
.yce{bottom:228.450000px;}
.yff{bottom:228.990000px;}
.y1ea{bottom:230.790000px;}
.y151{bottom:231.150000px;}
.y47{bottom:233.310000px;}
.ya4{bottom:236.010000px;}
.yfb{bottom:236.910000px;}
.y1c1{bottom:238.170000px;}
.y60{bottom:241.050000px;}
.y1aa{bottom:243.030000px;}
.y19a{bottom:245.190000px;}
.yf{bottom:245.550000px;}
.y19f{bottom:247.710000px;}
.y11d{bottom:248.070000px;}
.y7d{bottom:248.790000px;}
.y183{bottom:252.210000px;}
.ydd{bottom:252.390000px;}
.y12b{bottom:252.930000px;}
.y18d{bottom:255.090000px;}
.ycd{bottom:259.410000px;}
.y1a0{bottom:259.590000px;}
.y107{bottom:259.950000px;}
.y13b{bottom:262.110000px;}
.y2d{bottom:263.010000px;}
.y169{bottom:263.190000px;}
.y96{bottom:264.270000px;}
.y46{bottom:265.350000px;}
.y111{bottom:267.150000px;}
.yfa{bottom:267.870000px;}
.y1ec{bottom:268.785000px;}
.y1c0{bottom:269.130000px;}
.y5f{bottom:272.010000px;}
.y1a9{bottom:274.170000px;}
.y199{bottom:276.150000px;}
.ye{bottom:276.690000px;}
.y154{bottom:278.670000px;}
.ya3{bottom:279.030000px;}
.y7c{bottom:279.930000px;}
.y182{bottom:283.170000px;}
.ydc{bottom:283.530000px;}
.y12a{bottom:284.070000px;}
.y18c{bottom:286.050000px;}
.y106{bottom:291.090000px;}
.y1c4{bottom:293.250000px;}
.y1b6{bottom:295.230000px;}
.y168{bottom:297.930000px;}
.y45{bottom:298.110000px;}
.yf9{bottom:299.010000px;}
.ycc{bottom:302.610000px;}
.y146{bottom:302.790000px;}
.y5e{bottom:303.150000px;}
.y16e{bottom:304.770000px;}
.y13a{bottom:305.130000px;}
.y95{bottom:307.290000px;}
.y1ab{bottom:310.170000px;}
.y7b{bottom:310.890000px;}
.y1eb{bottom:311.985000px;}
.y1bf{bottom:312.150000px;}
.ydb{bottom:314.490000px;}
.yd{bottom:314.850000px;}
.y143{bottom:315.030000px;}
.y1ad{bottom:316.830000px;}
.y2c{bottom:317.190000px;}
.ya2{bottom:322.050000px;}
.y1e7{bottom:323.865000px;}
.y181{bottom:326.370000px;}
.y129{bottom:327.090000px;}
.y110{bottom:329.250000px;}
.yf8{bottom:329.970000px;}
.ycb{bottom:333.570000px;}
.y166{bottom:333.930000px;}
.y5d{bottom:334.110000px;}
.y150{bottom:336.270000px;}
.y1b5{bottom:338.295000px;}
.y44{bottom:340.455000px;}
.y7a{bottom:342.075000px;}
.y1be{bottom:343.335000px;}
.yda{bottom:345.675000px;}
.y145{bottom:345.855000px;}
.y120{bottom:346.215000px;}
.y16d{bottom:347.835000px;}
.y139{bottom:348.195000px;}
.y94{bottom:350.355000px;}
.y105{bottom:353.235000px;}
.y1e6{bottom:355.005000px;}
.y128{bottom:358.095000px;}
.y2b{bottom:360.255000px;}
.yc{bottom:360.435000px;}
.yf7{bottom:361.155000px;}
.yca{bottom:364.755000px;}
.y5c{bottom:365.295000px;}
.y14f{bottom:367.275000px;}
.y165{bottom:368.715000px;}
.y180{bottom:369.075000px;}
.y10f{bottom:372.315000px;}
.y79{bottom:373.035000px;}
.y1bd{bottom:374.295000px;}
.yd9{bottom:376.635000px;}
.yb9{bottom:377.175000px;}
.y1a8{bottom:379.335000px;}
.y198{bottom:381.315000px;}
.y43{bottom:382.575000px;}
.y104{bottom:384.195000px;}
.y127{bottom:389.235000px;}
.y138{bottom:391.215000px;}
.yf6{bottom:392.115000px;}
.y93{bottom:393.375000px;}
.yc9{bottom:395.715000px;}
.y5b{bottom:396.255000px;}
.y14e{bottom:398.415000px;}
.y2a{bottom:403.275000px;}
.y164{bottom:403.455000px;}
.yb{bottom:405.795000px;}
.yb8{bottom:408.315000px;}
.y1a7{bottom:410.295000px;}
.y17f{bottom:412.455000px;}
.y140{bottom:415.335000px;}
.y78{bottom:416.055000px;}
.y1bc{bottom:417.315000px;}
.yd8{bottom:419.655000px;}
.y42{bottom:420.195000px;}
.y137{bottom:422.355000px;}
.yf5{bottom:423.255000px;}
.y1b4{bottom:424.515000px;}
.yc8{bottom:426.675000px;}
.y5a{bottom:427.215000px;}
.y14d{bottom:429.375000px;}
.y29{bottom:434.415000px;}
.y92{bottom:436.395000px;}
.y162{bottom:438.195000px;}
.yb7{bottom:439.275000px;}
.y1a6{bottom:441.435000px;}
.y17e{bottom:443.415000px;}
.y13f{bottom:446.295000px;}
.y77{bottom:447.195000px;}
.ya{bottom:447.915000px;}
.y1bb{bottom:448.455000px;}
.yd7{bottom:450.795000px;}
.y126{bottom:451.335000px;}
.y136{bottom:453.315000px;}
.yc7{bottom:457.815000px;}
.ya1{bottom:458.355000px;}
.y1b9{bottom:458.535000px;}
.y41{bottom:458.715000px;}
.y14c{bottom:460.515000px;}
.y10e{bottom:465.375000px;}
.yf4{bottom:466.275000px;}
.y1b3{bottom:467.535000px;}
.y59{bottom:470.415000px;}
.y1a5{bottom:472.395000px;}
.y160{bottom:474.195000px;}
.y197{bottom:474.555000px;}
.y11a{bottom:477.075000px;}
.y28{bottom:477.435000px;}
.y76{bottom:478.155000px;}
.y91{bottom:479.415000px;}
.yd6{bottom:481.755000px;}
.y125{bottom:482.295000px;}
.y135{bottom:484.455000px;}
.y17d{bottom:486.615000px;}
.yc6{bottom:488.775000px;}
.ya0{bottom:489.315000px;}
.y9{bottom:490.215000px;}
.y14b{bottom:491.475000px;}
.y1d9{bottom:493.995000px;}
.y10d{bottom:496.515000px;}
.yf3{bottom:497.235000px;}
.y40{bottom:497.415000px;}
.y58{bottom:501.375000px;}
.y1a4{bottom:503.535000px;}
.y27{bottom:508.395000px;}
.y15f{bottom:508.755000px;}
.y75{bottom:509.295000px;}
.y1b2{bottom:510.555000px;}
.yd5{bottom:512.895000px;}
.y142{bottom:513.435000px;}
.y134{bottom:515.415000px;}
.y196{bottom:517.215000px;}
.yc5{bottom:519.915000px;}
.y9f{bottom:520.455000px;}
.y90{bottom:522.615000px;}
.y124{bottom:525.315000px;}
.y10c{bottom:527.475000px;}
.y17c{bottom:529.635000px;}
.y8{bottom:531.795000px;}
.y57{bottom:532.515000px;}
.y14a{bottom:534.135000px;}
.y1ba{bottom:534.495000px;}
.y3f{bottom:535.935000px;}
.y1d8{bottom:537.015000px;}
.y26{bottom:539.535000px;}
.yf2{bottom:539.895000px;}
.y74{bottom:540.255000px;}
.y15e{bottom:543.495000px;}
.yd4{bottom:543.855000px;}
.yb6{bottom:544.395000px;}
.y133{bottom:546.555000px;}
.y103{bottom:551.415000px;}
.y1e1{bottom:552.675000px;}
.y1b1{bottom:553.575000px;}
.y123{bottom:556.455000px;}
.y18b{bottom:558.615000px;}
.y17b{bottom:560.595000px;}
.yc4{bottom:562.935000px;}
.y56{bottom:563.475000px;}
.y8f{bottom:565.635000px;}
.y7{bottom:565.995000px;}
.y25{bottom:570.495000px;}
.y73{bottom:571.395000px;}
.y3e{bottom:574.455000px;}
.y141{bottom:575.535000px;}
.y149{bottom:577.515000px;}
.y15c{bottom:578.235000px;}
.y1d7{bottom:580.215000px;}
.y102{bottom:582.555000px;}
.yf1{bottom:583.455000px;}
.yd3{bottom:586.875000px;}
.yb5{bottom:587.415000px;}
.y6{bottom:588.675000px;}
.y132{bottom:589.575000px;}
.y55{bottom:594.615000px;}
.y1e0{bottom:595.695000px;}
.y1b0{bottom:596.595000px;}
.y1d3{bottom:597.315000px;}
.y18a{bottom:601.275000px;}
.y24{bottom:601.635000px;}
.y72{bottom:602.355000px;}
.y1e8{bottom:602.895000px;}
.y17a{bottom:603.645000px;}
.yc3{bottom:605.985000px;}
.yaa{bottom:606.525000px;}
.y8e{bottom:608.685000px;}
.y3d{bottom:613.005000px;}
.y101{bottom:613.545000px;}
.y159{bottom:614.265000px;}
.yd2{bottom:618.225000px;}
.yb4{bottom:618.585000px;}
.y131{bottom:620.745000px;}
.y54{bottom:625.605000px;}
.yf0{bottom:626.505000px;}
.y5{bottom:630.825000px;}
.y23{bottom:632.625000px;}
.y195{bottom:634.785000px;}
.yc2{bottom:637.125000px;}
.ya9{bottom:637.665000px;}
.y1df{bottom:638.925000px;}
.y1af{bottom:639.645000px;}
.y100{bottom:644.685000px;}
.y71{bottom:645.585000px;}
.y1f8{bottom:646.665000px;}
.y179{bottom:646.845000px;}
.yb3{bottom:649.545000px;}
.y1f6{bottom:651.165000px;}
.y3c{bottom:651.525000px;}
.y8d{bottom:651.705000px;}
.y53{bottom:656.745000px;}
.yef{bottom:657.465000px;}
.y22{bottom:663.765000px;}
.y194{bottom:665.745000px;}
.yc1{bottom:668.085000px;}
.ya8{bottom:668.625000px;}
.y4{bottom:674.205000px;}
.y158{bottom:675.645000px;}
.y70{bottom:676.545000px;}
.yb2{bottom:680.685000px;}
.y1de{bottom:681.945000px;}
.y8c{bottom:682.845000px;}
.y9e{bottom:687.705000px;}
.yee{bottom:688.605000px;}
.y178{bottom:689.505000px;}
.y3b{bottom:690.045000px;}
.y148{bottom:694.725000px;}
.yc0{bottom:699.225000px;}
.y52{bottom:699.765000px;}
.y1d1{bottom:703.185000px;}
.y21{bottom:706.785000px;}
.y6f{bottom:707.505000px;}
.y1e5{bottom:707.685000px;}
.y193{bottom:708.765000px;}
.yb1{bottom:711.645000px;}
.y8b{bottom:713.805000px;}
.y3{bottom:717.405000px;}
.y9d{bottom:718.845000px;}
.yed{bottom:719.565000px;}
.y147{bottom:725.865000px;}
.y3a{bottom:728.565000px;}
.ybf{bottom:730.185000px;}
.y51{bottom:730.725000px;}
.y177{bottom:732.885000px;}
.y186{bottom:737.385000px;}
.y10b{bottom:737.745000px;}
.y6e{bottom:738.645000px;}
.yb0{bottom:742.785000px;}
.y130{bottom:744.765000px;}
.y20{bottom:749.805000px;}
.yec{bottom:750.705000px;}
.y192{bottom:751.965000px;}
.y8a{bottom:756.825000px;}
.ybe{bottom:761.325000px;}
.y50{bottom:761.865000px;}
.y176{bottom:763.845000px;}
.y2{bottom:764.565000px;}
.y39{bottom:767.265000px;}
.y1ac{bottom:768.525000px;}
.y10a{bottom:768.885000px;}
.y6d{bottom:769.605000px;}
.yaf{bottom:773.745000px;}
.y12f{bottom:775.905000px;}
.y1ce{bottom:778.065000px;}
.y9c{bottom:780.765000px;}
.yeb{bottom:781.665000px;}
.y89{bottom:787.965000px;}
.ybd{bottom:792.285000px;}
.y1f{bottom:792.825000px;}
.y191{bottom:794.985000px;}
.y1{bottom:799.665000px;}
.y109{bottom:799.845000px;}
.y6c{bottom:800.745000px;}
.yae{bottom:804.885000px;}
.y38{bottom:805.785000px;}
.y175{bottom:806.865000px;}
.y9b{bottom:811.905000px;}
.yea{bottom:812.805000px;}
.y12e{bottom:818.925000px;}
.ybc{bottom:823.425000px;}
.y1e{bottom:823.965000px;}
.y1dd{bottom:825.945000px;}
.y88{bottom:830.985000px;}
.y6b{bottom:831.705000px;}
.ya7{bottom:835.845000px;}
.y174{bottom:838.005000px;}
.y9a{bottom:842.865000px;}
.y37{bottom:844.305000px;}
.y1fa{bottom:848.805000px;}
.y1cb{bottom:852.945000px;}
.y4f{bottom:854.925000px;}
.ye9{bottom:855.825000px;}
.y87{bottom:861.945000px;}
.ybb{bottom:866.445000px;}
.y1d{bottom:866.985000px;}
.y1dc{bottom:868.965000px;}
.y108{bottom:874.050000px;}
.y6a{bottom:874.590000px;}
.y173{bottom:881.070000px;}
.y36{bottom:882.870000px;}
.y1a1{bottom:885.750000px;}
.y4e{bottom:886.110000px;}
.ye8{bottom:886.830000px;}
.yba{bottom:897.630000px;}
.y1c{bottom:897.990000px;}
.y86{bottom:905.010000px;}
.y11f{bottom:910.050000px;}
.y1db{bottom:912.210000px;}
.y4d{bottom:917.070000px;}
.y69{bottom:917.970000px;}
.y35{bottom:921.390000px;}
.y172{bottom:923.730000px;}
.y190{bottom:924.090000px;}
.y1c8{bottom:927.690000px;}
.y1b{bottom:929.130000px;}
.y85{bottom:936.150000px;}
.y11e{bottom:941.010000px;}
.y189{bottom:947.850000px;}
.y4c{bottom:948.210000px;}
.ye7{bottom:948.930000px;}
.y1da{bottom:955.230000px;}
.y34{bottom:959.910000px;}
.y1a{bottom:960.090000px;}
.y68{bottom:960.990000px;}
.y157{bottom:967.110000px;}
.yad{bottom:972.150000px;}
.y84{bottom:979.170000px;}
.ye6{bottom:980.070000px;}
.y19{bottom:991.230000px;}
.y156{bottom:998.250000px;}
.y33{bottom:998.610000px;}
.y67{bottom:1003.110000px;}
.y83{bottom:1010.310000px;}
.ye5{bottom:1011.030000px;}
.y18{bottom:1022.190000px;}
.y66{bottom:1034.250000px;}
.y32{bottom:1037.130000px;}
.y82{bottom:1041.270000px;}
.y1f5{bottom:1042.170000px;}
.y18f{bottom:1052.970000px;}
.y17{bottom:1053.330000px;}
.ye4{bottom:1054.050000px;}
.y65{bottom:1065.210000px;}
.y31{bottom:1075.650000px;}
.y1e4{bottom:1079.790000px;}
.y185{bottom:1083.930000px;}
.y16{bottom:1084.290000px;}
.ye3{bottom:1085.190000px;}
.y1e3{bottom:1095.630000px;}
.y64{bottom:1096.350000px;}
.y30{bottom:1116.330000px;}
.y4b{bottom:1126.950000px;}
.y15{bottom:1127.310000px;}
.y1e2{bottom:1127.490000px;}
.ye2{bottom:1128.210000px;}
.h14{height:33.840000px;}
.h12{height:34.020000px;}
.h16{height:34.056000px;}
.h15{height:35.100000px;}
.h17{height:35.280000px;}
.h13{height:35.316000px;}
.h1d{height:43.020000px;}
.hf{height:64.546875px;}
.h8{height:65.010937px;}
.h9{height:65.884219px;}
.h22{height:66.757500px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h11{height:71.824219px;}
.he{height:72.562500px;}
.h1a{height:73.980000px;}
.h10{height:74.004654px;}
.h19{height:74.016000px;}
.h1b{height:74.160000px;}
.ha{height:74.704922px;}
.hd{height:74.953125px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h18{height:86.220000px;}
.h3{height:91.019531px;}
.h7{height:96.508125px;}
.h1f{height:103.896000px;}
.h1c{height:105.156000px;}
.h4{height:108.843750px;}
.h20{height:115.920000px;}
.hc{height:118.008984px;}
.h21{height:155.730000px;}
.h23{height:227.370000px;}
.h1e{height:371.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:94.500000px;}
.w3{width:102.600000px;}
.wc{width:143.676000px;}
.wa{width:167.220000px;}
.wd{width:246.990000px;}
.w8{width:329.430000px;}
.w9{width:329.655000px;}
.wb{width:510.405000px;}
.w5{width:541.185000px;}
.w4{width:554.325000px;}
.w7{width:659.805000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x20{left:10.800000px;}
.x23{left:14.040000px;}
.x27{left:15.660000px;}
.x24{left:21.780000px;}
.x28{left:26.100000px;}
.x25{left:37.830000px;}
.x21{left:76.140000px;}
.x26{left:99.936000px;}
.x11{left:127.655987px;}
.x12{left:154.649987px;}
.x6{left:158.969987px;}
.x14{left:161.129987px;}
.x5{left:167.069987px;}
.xa{left:177.509987px;}
.x22{left:178.770000px;}
.x13{left:181.649987px;}
.x16{left:207.749987px;}
.x19{left:231.690000px;}
.x17{left:233.849987px;}
.x1{left:246.989987px;}
.x8{left:251.669987px;}
.xb{left:253.109987px;}
.x4{left:281.414987px;}
.x9{left:303.554987px;}
.xe{left:323.174987px;}
.x2{left:358.094987px;}
.xd{left:362.054987px;}
.xf{left:375.914987px;}
.x1a{left:411.734987px;}
.x7{left:432.254987px;}
.x3{left:443.594987px;}
.xc{left:446.474987px;}
.x1e{left:458.535000px;}
.x1d{left:547.844987px;}
.x1c{left:574.844987px;}
.x1f{left:656.790000px;}
.x1b{left:670.290000px;}
.x15{left:748.589987px;}
.x10{left:757.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117867pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.079467pt;}
.ls21{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.133120pt;}
.ls24{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.227840pt;}
.ls17{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.239467pt;}
.ls25{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.773120pt;}
.ls23{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.413120pt;}
.ls13{letter-spacing:2.053120pt;}
.ls12{letter-spacing:2.693120pt;}
.ls1c{letter-spacing:3.333120pt;}
.ls3{letter-spacing:3.973120pt;}
.ls1{letter-spacing:4.613120pt;}
.lsb{letter-spacing:5.253120pt;}
.ls1e{letter-spacing:6.533120pt;}
.ls1f{letter-spacing:7.173120pt;}
.ls7{letter-spacing:10.373120pt;}
.ls2{letter-spacing:14.853120pt;}
.ls15{letter-spacing:16.640000pt;}
.ls11{letter-spacing:27.648000pt;}
.ls9{letter-spacing:29.573120pt;}
.ls5{letter-spacing:30.208000pt;}
.ls6{letter-spacing:34.191360pt;}
.lsa{letter-spacing:57.088000pt;}
.ls18{letter-spacing:59.791360pt;}
.ls14{letter-spacing:172.778667pt;}
.ws7{word-spacing:-64.000000pt;}
.wsb{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.386347pt;}
.ws1{word-spacing:-10.959467pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-14.818560pt;}
._14{margin-left:-11.092907pt;}
._13{margin-left:-10.009600pt;}
._12{margin-left:-7.488000pt;}
._29{margin-left:-4.864000pt;}
._e{margin-left:-3.904000pt;}
._f{margin-left:-2.944000pt;}
._10{margin-left:-1.960960pt;}
._2{margin-left:-1.048320pt;}
._1{width:1.293227pt;}
._15{width:2.264320pt;}
._b{width:3.584000pt;}
._6{width:4.480000pt;}
._7{width:5.504000pt;}
._8{width:6.784000pt;}
._9{width:8.075093pt;}
._5{width:9.024000pt;}
._3{width:10.496000pt;}
._4{width:11.467093pt;}
._c{width:12.992000pt;}
._d{width:14.528000pt;}
._a{width:16.960000pt;}
._1a{width:17.984000pt;}
._17{width:19.008000pt;}
._18{width:20.160000pt;}
._20{width:21.632000pt;}
._21{width:22.656000pt;}
._22{width:23.896320pt;}
._1f{width:25.344000pt;}
._1b{width:26.816000pt;}
._1c{width:28.114347pt;}
._23{width:29.056000pt;}
._16{width:30.104320pt;}
._27{width:31.232000pt;}
._28{width:32.423680pt;}
._1e{width:37.848320pt;}
._25{width:40.320000pt;}
._26{width:41.216000pt;}
._2b{width:42.560000pt;}
._2c{width:43.688960pt;}
._1d{width:76.800000pt;}
._24{width:157.018880pt;}
._19{width:172.778667pt;}
._2a{width:752.160000pt;}
._0{width:1160.255147pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:15.360000pt;}
.y161{bottom:15.520000pt;}
.y15a{bottom:15.680000pt;}
.y167{bottom:15.720000pt;}
.y163{bottom:16.640000pt;}
.y15d{bottom:16.800000pt;}
.y1d0{bottom:23.680000pt;}
.y1d6{bottom:23.706667pt;}
.y1cd{bottom:23.720000pt;}
.y1ca{bottom:23.840000pt;}
.y1fe{bottom:38.440000pt;}
.y1f1{bottom:47.680000pt;}
.y1f9{bottom:50.880000pt;}
.y1cf{bottom:51.200000pt;}
.y1d5{bottom:51.226667pt;}
.y1cc{bottom:51.240000pt;}
.y1d2{bottom:51.360000pt;}
.y14{bottom:52.000000pt;}
.y1fd{bottom:55.560000pt;}
.y1c9{bottom:62.080000pt;}
.y13{bottom:69.952000pt;}
.y1fc{bottom:72.520000pt;}
.y1e9{bottom:77.786667pt;}
.y1d4{bottom:78.906667pt;}
.y201{bottom:82.280000pt;}
.y1f0{bottom:85.920000pt;}
.y115{bottom:99.392000pt;}
.y1fb{bottom:100.040000pt;}
.y81{bottom:100.192000pt;}
.y200{bottom:101.160000pt;}
.y171{bottom:101.312000pt;}
.y122{bottom:103.872000pt;}
.y4a{bottom:104.032000pt;}
.y155{bottom:105.632000pt;}
.y19e{bottom:107.552000pt;}
.y1b8{bottom:109.472000pt;}
.y119{bottom:110.112000pt;}
.y1ae{bottom:110.912000pt;}
.y1f4{bottom:113.152000pt;}
.ye1{bottom:113.952000pt;}
.y11c{bottom:116.352000pt;}
.yfe{bottom:117.152000pt;}
.y13e{bottom:118.272000pt;}
.y1ff{bottom:119.560000pt;}
.y99{bottom:120.032000pt;}
.yd1{bottom:120.192000pt;}
.y2f{bottom:120.352000pt;}
.y63{bottom:120.672000pt;}
.y16c{bottom:121.952000pt;}
.y1a3{bottom:122.592000pt;}
.y12{bottom:123.072000pt;}
.y1ef{bottom:124.200000pt;}
.y114{bottom:127.072000pt;}
.y170{bottom:128.832000pt;}
.y1c7{bottom:128.992000pt;}
.y121{bottom:131.392000pt;}
.ya6{bottom:133.312000pt;}
.y19d{bottom:135.066667pt;}
.y118{bottom:137.626667pt;}
.y80{bottom:138.426667pt;}
.ye0{bottom:141.626667pt;}
.y144{bottom:142.106667pt;}
.y49{bottom:142.266667pt;}
.y11b{bottom:143.866667pt;}
.yfd{bottom:144.666667pt;}
.y1c3{bottom:145.786667pt;}
.y1b7{bottom:147.706667pt;}
.yd0{bottom:147.866667pt;}
.y62{bottom:148.346667pt;}
.y16b{bottom:149.626667pt;}
.y153{bottom:150.266667pt;}
.y1f3{bottom:151.386667pt;}
.y113{bottom:154.586667pt;}
.y11{bottom:155.226667pt;}
.y13d{bottom:156.506667pt;}
.y98{bottom:158.266667pt;}
.yac{bottom:159.066667pt;}
.y188{bottom:160.826667pt;}
.y1ee{bottom:162.440000pt;}
.y19c{bottom:162.746667pt;}
.y1f7{bottom:164.160000pt;}
.y117{bottom:165.306667pt;}
.y7f{bottom:165.946667pt;}
.y1c6{bottom:166.426667pt;}
.y16f{bottom:167.066667pt;}
.ydf{bottom:169.146667pt;}
.y12d{bottom:169.626667pt;}
.ya5{bottom:171.546667pt;}
.ycf{bottom:175.386667pt;}
.y61{bottom:175.866667pt;}
.y2e{bottom:177.146667pt;}
.y152{bottom:177.786667pt;}
.y48{bottom:180.506667pt;}
.y112{bottom:182.266667pt;}
.yfc{bottom:182.906667pt;}
.y1c2{bottom:184.026667pt;}
.y184{bottom:185.946667pt;}
.yab{bottom:186.586667pt;}
.y10{bottom:187.226667pt;}
.y16a{bottom:187.546667pt;}
.y1a2{bottom:188.506667pt;}
.y1f2{bottom:189.626667pt;}
.y19b{bottom:190.266667pt;}
.y116{bottom:192.826667pt;}
.y7e{bottom:193.626667pt;}
.y13c{bottom:194.746667pt;}
.y1c5{bottom:194.906667pt;}
.y97{bottom:196.666667pt;}
.yde{bottom:196.826667pt;}
.y12c{bottom:197.306667pt;}
.y187{bottom:198.746667pt;}
.y18e{bottom:199.066667pt;}
.y1ed{bottom:200.680000pt;}
.yce{bottom:203.066667pt;}
.yff{bottom:203.546667pt;}
.y1ea{bottom:205.146667pt;}
.y151{bottom:205.466667pt;}
.y47{bottom:207.386667pt;}
.ya4{bottom:209.786667pt;}
.yfb{bottom:210.586667pt;}
.y1c1{bottom:211.706667pt;}
.y60{bottom:214.266667pt;}
.y1aa{bottom:216.026667pt;}
.y19a{bottom:217.946667pt;}
.yf{bottom:218.266667pt;}
.y19f{bottom:220.186667pt;}
.y11d{bottom:220.506667pt;}
.y7d{bottom:221.146667pt;}
.y183{bottom:224.186667pt;}
.ydd{bottom:224.346667pt;}
.y12b{bottom:224.826667pt;}
.y18d{bottom:226.746667pt;}
.ycd{bottom:230.586667pt;}
.y1a0{bottom:230.746667pt;}
.y107{bottom:231.066667pt;}
.y13b{bottom:232.986667pt;}
.y2d{bottom:233.786667pt;}
.y169{bottom:233.946667pt;}
.y96{bottom:234.906667pt;}
.y46{bottom:235.866667pt;}
.y111{bottom:237.466667pt;}
.yfa{bottom:238.106667pt;}
.y1ec{bottom:238.920000pt;}
.y1c0{bottom:239.226667pt;}
.y5f{bottom:241.786667pt;}
.y1a9{bottom:243.706667pt;}
.y199{bottom:245.466667pt;}
.ye{bottom:245.946667pt;}
.y154{bottom:247.706667pt;}
.ya3{bottom:248.026667pt;}
.y7c{bottom:248.826667pt;}
.y182{bottom:251.706667pt;}
.ydc{bottom:252.026667pt;}
.y12a{bottom:252.506667pt;}
.y18c{bottom:254.266667pt;}
.y106{bottom:258.746667pt;}
.y1c4{bottom:260.666667pt;}
.y1b6{bottom:262.426667pt;}
.y168{bottom:264.826667pt;}
.y45{bottom:264.986667pt;}
.yf9{bottom:265.786667pt;}
.ycc{bottom:268.986667pt;}
.y146{bottom:269.146667pt;}
.y5e{bottom:269.466667pt;}
.y16e{bottom:270.906667pt;}
.y13a{bottom:271.226667pt;}
.y95{bottom:273.146667pt;}
.y1ab{bottom:275.706667pt;}
.y7b{bottom:276.346667pt;}
.y1eb{bottom:277.320000pt;}
.y1bf{bottom:277.466667pt;}
.ydb{bottom:279.546667pt;}
.yd{bottom:279.866667pt;}
.y143{bottom:280.026667pt;}
.y1ad{bottom:281.626667pt;}
.y2c{bottom:281.946667pt;}
.ya2{bottom:286.266667pt;}
.y1e7{bottom:287.880000pt;}
.y181{bottom:290.106667pt;}
.y129{bottom:290.746667pt;}
.y110{bottom:292.666667pt;}
.yf8{bottom:293.306667pt;}
.ycb{bottom:296.506667pt;}
.y166{bottom:296.826667pt;}
.y5d{bottom:296.986667pt;}
.y150{bottom:298.906667pt;}
.y1b5{bottom:300.706667pt;}
.y44{bottom:302.626667pt;}
.y7a{bottom:304.066667pt;}
.y1be{bottom:305.186667pt;}
.yda{bottom:307.266667pt;}
.y145{bottom:307.426667pt;}
.y120{bottom:307.746667pt;}
.y16d{bottom:309.186667pt;}
.y139{bottom:309.506667pt;}
.y94{bottom:311.426667pt;}
.y105{bottom:313.986667pt;}
.y1e6{bottom:315.560000pt;}
.y128{bottom:318.306667pt;}
.y2b{bottom:320.226667pt;}
.yc{bottom:320.386667pt;}
.yf7{bottom:321.026667pt;}
.yca{bottom:324.226667pt;}
.y5c{bottom:324.706667pt;}
.y14f{bottom:326.466667pt;}
.y165{bottom:327.746667pt;}
.y180{bottom:328.066667pt;}
.y10f{bottom:330.946667pt;}
.y79{bottom:331.586667pt;}
.y1bd{bottom:332.706667pt;}
.yd9{bottom:334.786667pt;}
.yb9{bottom:335.266667pt;}
.y1a8{bottom:337.186667pt;}
.y198{bottom:338.946667pt;}
.y43{bottom:340.066667pt;}
.y104{bottom:341.506667pt;}
.y127{bottom:345.986667pt;}
.y138{bottom:347.746667pt;}
.yf6{bottom:348.546667pt;}
.y93{bottom:349.666667pt;}
.yc9{bottom:351.746667pt;}
.y5b{bottom:352.226667pt;}
.y14e{bottom:354.146667pt;}
.y2a{bottom:358.466667pt;}
.y164{bottom:358.626667pt;}
.yb{bottom:360.706667pt;}
.yb8{bottom:362.946667pt;}
.y1a7{bottom:364.706667pt;}
.y17f{bottom:366.626667pt;}
.y140{bottom:369.186667pt;}
.y78{bottom:369.826667pt;}
.y1bc{bottom:370.946667pt;}
.yd8{bottom:373.026667pt;}
.y42{bottom:373.506667pt;}
.y137{bottom:375.426667pt;}
.yf5{bottom:376.226667pt;}
.y1b4{bottom:377.346667pt;}
.yc8{bottom:379.266667pt;}
.y5a{bottom:379.746667pt;}
.y14d{bottom:381.666667pt;}
.y29{bottom:386.146667pt;}
.y92{bottom:387.906667pt;}
.y162{bottom:389.506667pt;}
.yb7{bottom:390.466667pt;}
.y1a6{bottom:392.386667pt;}
.y17e{bottom:394.146667pt;}
.y13f{bottom:396.706667pt;}
.y77{bottom:397.506667pt;}
.ya{bottom:398.146667pt;}
.y1bb{bottom:398.626667pt;}
.yd7{bottom:400.706667pt;}
.y126{bottom:401.186667pt;}
.y136{bottom:402.946667pt;}
.yc7{bottom:406.946667pt;}
.ya1{bottom:407.426667pt;}
.y1b9{bottom:407.586667pt;}
.y41{bottom:407.746667pt;}
.y14c{bottom:409.346667pt;}
.y10e{bottom:413.666667pt;}
.yf4{bottom:414.466667pt;}
.y1b3{bottom:415.586667pt;}
.y59{bottom:418.146667pt;}
.y1a5{bottom:419.906667pt;}
.y160{bottom:421.506667pt;}
.y197{bottom:421.826667pt;}
.y11a{bottom:424.066667pt;}
.y28{bottom:424.386667pt;}
.y76{bottom:425.026667pt;}
.y91{bottom:426.146667pt;}
.yd6{bottom:428.226667pt;}
.y125{bottom:428.706667pt;}
.y135{bottom:430.626667pt;}
.y17d{bottom:432.546667pt;}
.yc6{bottom:434.466667pt;}
.ya0{bottom:434.946667pt;}
.y9{bottom:435.746667pt;}
.y14b{bottom:436.866667pt;}
.y1d9{bottom:439.106667pt;}
.y10d{bottom:441.346667pt;}
.yf3{bottom:441.986667pt;}
.y40{bottom:442.146667pt;}
.y58{bottom:445.666667pt;}
.y1a4{bottom:447.586667pt;}
.y27{bottom:451.906667pt;}
.y15f{bottom:452.226667pt;}
.y75{bottom:452.706667pt;}
.y1b2{bottom:453.826667pt;}
.yd5{bottom:455.906667pt;}
.y142{bottom:456.386667pt;}
.y134{bottom:458.146667pt;}
.y196{bottom:459.746667pt;}
.yc5{bottom:462.146667pt;}
.y9f{bottom:462.626667pt;}
.y90{bottom:464.546667pt;}
.y124{bottom:466.946667pt;}
.y10c{bottom:468.866667pt;}
.y17c{bottom:470.786667pt;}
.y8{bottom:472.706667pt;}
.y57{bottom:473.346667pt;}
.y14a{bottom:474.786667pt;}
.y1ba{bottom:475.106667pt;}
.y3f{bottom:476.386667pt;}
.y1d8{bottom:477.346667pt;}
.y26{bottom:479.586667pt;}
.yf2{bottom:479.906667pt;}
.y74{bottom:480.226667pt;}
.y15e{bottom:483.106667pt;}
.yd4{bottom:483.426667pt;}
.yb6{bottom:483.906667pt;}
.y133{bottom:485.826667pt;}
.y103{bottom:490.146667pt;}
.y1e1{bottom:491.266667pt;}
.y1b1{bottom:492.066667pt;}
.y123{bottom:494.626667pt;}
.y18b{bottom:496.546667pt;}
.y17b{bottom:498.306667pt;}
.yc4{bottom:500.386667pt;}
.y56{bottom:500.866667pt;}
.y8f{bottom:502.786667pt;}
.y7{bottom:503.106667pt;}
.y25{bottom:507.106667pt;}
.y73{bottom:507.906667pt;}
.y3e{bottom:510.626667pt;}
.y141{bottom:511.586667pt;}
.y149{bottom:513.346667pt;}
.y15c{bottom:513.986667pt;}
.y1d7{bottom:515.746667pt;}
.y102{bottom:517.826667pt;}
.yf1{bottom:518.626667pt;}
.yd3{bottom:521.666667pt;}
.yb5{bottom:522.146667pt;}
.y6{bottom:523.266667pt;}
.y132{bottom:524.066667pt;}
.y55{bottom:528.546667pt;}
.y1e0{bottom:529.506667pt;}
.y1b0{bottom:530.306667pt;}
.y1d3{bottom:530.946667pt;}
.y18a{bottom:534.466667pt;}
.y24{bottom:534.786667pt;}
.y72{bottom:535.426667pt;}
.y1e8{bottom:535.906667pt;}
.y17a{bottom:536.573333pt;}
.yc3{bottom:538.653333pt;}
.yaa{bottom:539.133333pt;}
.y8e{bottom:541.053333pt;}
.y3d{bottom:544.893333pt;}
.y101{bottom:545.373333pt;}
.y159{bottom:546.013333pt;}
.yd2{bottom:549.533333pt;}
.yb4{bottom:549.853333pt;}
.y131{bottom:551.773333pt;}
.y54{bottom:556.093333pt;}
.yf0{bottom:556.893333pt;}
.y5{bottom:560.733333pt;}
.y23{bottom:562.333333pt;}
.y195{bottom:564.253333pt;}
.yc2{bottom:566.333333pt;}
.ya9{bottom:566.813333pt;}
.y1df{bottom:567.933333pt;}
.y1af{bottom:568.573333pt;}
.y100{bottom:573.053333pt;}
.y71{bottom:573.853333pt;}
.y1f8{bottom:574.813333pt;}
.y179{bottom:574.973333pt;}
.yb3{bottom:577.373333pt;}
.y1f6{bottom:578.813333pt;}
.y3c{bottom:579.133333pt;}
.y8d{bottom:579.293333pt;}
.y53{bottom:583.773333pt;}
.yef{bottom:584.413333pt;}
.y22{bottom:590.013333pt;}
.y194{bottom:591.773333pt;}
.yc1{bottom:593.853333pt;}
.ya8{bottom:594.333333pt;}
.y4{bottom:599.293333pt;}
.y158{bottom:600.573333pt;}
.y70{bottom:601.373333pt;}
.yb2{bottom:605.053333pt;}
.y1de{bottom:606.173333pt;}
.y8c{bottom:606.973333pt;}
.y9e{bottom:611.293333pt;}
.yee{bottom:612.093333pt;}
.y178{bottom:612.893333pt;}
.y3b{bottom:613.373333pt;}
.y148{bottom:617.533333pt;}
.yc0{bottom:621.533333pt;}
.y52{bottom:622.013333pt;}
.y1d1{bottom:625.053333pt;}
.y21{bottom:628.253333pt;}
.y6f{bottom:628.893333pt;}
.y1e5{bottom:629.053333pt;}
.y193{bottom:630.013333pt;}
.yb1{bottom:632.573333pt;}
.y8b{bottom:634.493333pt;}
.y3{bottom:637.693333pt;}
.y9d{bottom:638.973333pt;}
.yed{bottom:639.613333pt;}
.y147{bottom:645.213333pt;}
.y3a{bottom:647.613333pt;}
.ybf{bottom:649.053333pt;}
.y51{bottom:649.533333pt;}
.y177{bottom:651.453333pt;}
.y186{bottom:655.453333pt;}
.y10b{bottom:655.773333pt;}
.y6e{bottom:656.573333pt;}
.yb0{bottom:660.253333pt;}
.y130{bottom:662.013333pt;}
.y20{bottom:666.493333pt;}
.yec{bottom:667.293333pt;}
.y192{bottom:668.413333pt;}
.y8a{bottom:672.733333pt;}
.ybe{bottom:676.733333pt;}
.y50{bottom:677.213333pt;}
.y176{bottom:678.973333pt;}
.y2{bottom:679.613333pt;}
.y39{bottom:682.013333pt;}
.y1ac{bottom:683.133333pt;}
.y10a{bottom:683.453333pt;}
.y6d{bottom:684.093333pt;}
.yaf{bottom:687.773333pt;}
.y12f{bottom:689.693333pt;}
.y1ce{bottom:691.613333pt;}
.y9c{bottom:694.013333pt;}
.yeb{bottom:694.813333pt;}
.y89{bottom:700.413333pt;}
.ybd{bottom:704.253333pt;}
.y1f{bottom:704.733333pt;}
.y191{bottom:706.653333pt;}
.y1{bottom:710.813333pt;}
.y109{bottom:710.973333pt;}
.y6c{bottom:711.773333pt;}
.yae{bottom:715.453333pt;}
.y38{bottom:716.253333pt;}
.y175{bottom:717.213333pt;}
.y9b{bottom:721.693333pt;}
.yea{bottom:722.493333pt;}
.y12e{bottom:727.933333pt;}
.ybc{bottom:731.933333pt;}
.y1e{bottom:732.413333pt;}
.y1dd{bottom:734.173333pt;}
.y88{bottom:738.653333pt;}
.y6b{bottom:739.293333pt;}
.ya7{bottom:742.973333pt;}
.y174{bottom:744.893333pt;}
.y9a{bottom:749.213333pt;}
.y37{bottom:750.493333pt;}
.y1fa{bottom:754.493333pt;}
.y1cb{bottom:758.173333pt;}
.y4f{bottom:759.933333pt;}
.ye9{bottom:760.733333pt;}
.y87{bottom:766.173333pt;}
.ybb{bottom:770.173333pt;}
.y1d{bottom:770.653333pt;}
.y1dc{bottom:772.413333pt;}
.y108{bottom:776.933333pt;}
.y6a{bottom:777.413333pt;}
.y173{bottom:783.173333pt;}
.y36{bottom:784.773333pt;}
.y1a1{bottom:787.333333pt;}
.y4e{bottom:787.653333pt;}
.ye8{bottom:788.293333pt;}
.yba{bottom:797.893333pt;}
.y1c{bottom:798.213333pt;}
.y86{bottom:804.453333pt;}
.y11f{bottom:808.933333pt;}
.y1db{bottom:810.853333pt;}
.y4d{bottom:815.173333pt;}
.y69{bottom:815.973333pt;}
.y35{bottom:819.013333pt;}
.y172{bottom:821.093333pt;}
.y190{bottom:821.413333pt;}
.y1c8{bottom:824.613333pt;}
.y1b{bottom:825.893333pt;}
.y85{bottom:832.133333pt;}
.y11e{bottom:836.453333pt;}
.y189{bottom:842.533333pt;}
.y4c{bottom:842.853333pt;}
.ye7{bottom:843.493333pt;}
.y1da{bottom:849.093333pt;}
.y34{bottom:853.253333pt;}
.y1a{bottom:853.413333pt;}
.y68{bottom:854.213333pt;}
.y157{bottom:859.653333pt;}
.yad{bottom:864.133333pt;}
.y84{bottom:870.373333pt;}
.ye6{bottom:871.173333pt;}
.y19{bottom:881.093333pt;}
.y156{bottom:887.333333pt;}
.y33{bottom:887.653333pt;}
.y67{bottom:891.653333pt;}
.y83{bottom:898.053333pt;}
.ye5{bottom:898.693333pt;}
.y18{bottom:908.613333pt;}
.y66{bottom:919.333333pt;}
.y32{bottom:921.893333pt;}
.y82{bottom:925.573333pt;}
.y1f5{bottom:926.373333pt;}
.y18f{bottom:935.973333pt;}
.y17{bottom:936.293333pt;}
.ye4{bottom:936.933333pt;}
.y65{bottom:946.853333pt;}
.y31{bottom:956.133333pt;}
.y1e4{bottom:959.813333pt;}
.y185{bottom:963.493333pt;}
.y16{bottom:963.813333pt;}
.ye3{bottom:964.613333pt;}
.y1e3{bottom:973.893333pt;}
.y64{bottom:974.533333pt;}
.y30{bottom:992.293333pt;}
.y4b{bottom:1001.733333pt;}
.y15{bottom:1002.053333pt;}
.y1e2{bottom:1002.213333pt;}
.ye2{bottom:1002.853333pt;}
.h14{height:30.080000pt;}
.h12{height:30.240000pt;}
.h16{height:30.272000pt;}
.h15{height:31.200000pt;}
.h17{height:31.360000pt;}
.h13{height:31.392000pt;}
.h1d{height:38.240000pt;}
.hf{height:57.375000pt;}
.h8{height:57.787500pt;}
.h9{height:58.563750pt;}
.h22{height:59.340000pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h11{height:63.843750pt;}
.he{height:64.500000pt;}
.h1a{height:65.760000pt;}
.h10{height:65.781915pt;}
.h19{height:65.792000pt;}
.h1b{height:65.920000pt;}
.ha{height:66.404375pt;}
.hd{height:66.625000pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h18{height:76.640000pt;}
.h3{height:80.906250pt;}
.h7{height:85.785000pt;}
.h1f{height:92.352000pt;}
.h1c{height:93.472000pt;}
.h4{height:96.750000pt;}
.h20{height:103.040000pt;}
.hc{height:104.896875pt;}
.h21{height:138.426667pt;}
.h23{height:202.106667pt;}
.h1e{height:330.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:84.000000pt;}
.w3{width:91.200000pt;}
.wc{width:127.712000pt;}
.wa{width:148.640000pt;}
.wd{width:219.546667pt;}
.w8{width:292.826667pt;}
.w9{width:293.026667pt;}
.wb{width:453.693333pt;}
.w5{width:481.053333pt;}
.w4{width:492.733333pt;}
.w7{width:586.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x20{left:9.600000pt;}
.x23{left:12.480000pt;}
.x27{left:13.920000pt;}
.x24{left:19.360000pt;}
.x28{left:23.200000pt;}
.x25{left:33.626667pt;}
.x21{left:67.680000pt;}
.x26{left:88.832000pt;}
.x11{left:113.471988pt;}
.x12{left:137.466655pt;}
.x6{left:141.306655pt;}
.x14{left:143.226655pt;}
.x5{left:148.506655pt;}
.xa{left:157.786655pt;}
.x22{left:158.906667pt;}
.x13{left:161.466655pt;}
.x16{left:184.666655pt;}
.x19{left:205.946667pt;}
.x17{left:207.866655pt;}
.x1{left:219.546655pt;}
.x8{left:223.706655pt;}
.xb{left:224.986655pt;}
.x4{left:250.146655pt;}
.x9{left:269.826655pt;}
.xe{left:287.266655pt;}
.x2{left:318.306655pt;}
.xd{left:321.826655pt;}
.xf{left:334.146655pt;}
.x1a{left:365.986655pt;}
.x7{left:384.226655pt;}
.x3{left:394.306655pt;}
.xc{left:396.866655pt;}
.x1e{left:407.586667pt;}
.x1d{left:486.973322pt;}
.x1c{left:510.973322pt;}
.x1f{left:583.813333pt;}
.x1b{left:595.813333pt;}
.x15{left:665.413322pt;}
.x10{left:672.933322pt;}
}




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