
    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_568d359d4e2df293cf84b50d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_909a8ee92a33e6c8598bebce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_edead335a7cef17894c54248.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.915000;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_145a0b43d3b915e84c07d00f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.165000;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_d033c29533088ffa3ed34d79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_edead335a7cef17894c54248.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_f7a13ee34a5a8530cb5992ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.032000;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_f7a13ee34a5a8530cb5992ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032000;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_601d88bfbb265071480c6486.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025000;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_909a8ee92a33e6c8598bebce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;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_909a8ee92a33e6c8598bebce.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.042000;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_f0b33890f95f30f4e09937a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_e706d323a25c6f4786086a3e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f76ef15ca33ebd6d732c1727.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9c50b6594e3c3d4d5632a745.woff2')format("woff");}.fff{font-family:fff;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d417916981def116d0d41e89.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.171000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7e8139f787c0434b87beb83a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031000;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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m4{transform:matrix(0.247567,0.000000,-0.034794,0.247567,0,0);-ms-transform:matrix(0.247567,0.000000,-0.034794,0.247567,0,0);-webkit-transform:matrix(0.247567,0.000000,-0.034794,0.247567,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v3{vertical-align:-2.280600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.719400px;}
.v5{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.ls6{letter-spacing:-4.200000px;}
.ls7{letter-spacing:-3.840000px;}
.ls3{letter-spacing:-0.336000px;}
.ls1{letter-spacing:-0.330000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.450000px;}
.ls5{letter-spacing:576.683400px;}
.ls4{letter-spacing:673.648200px;}
.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;}
}
.ws3b{word-spacing:-20.160000px;}
.ws3{word-spacing:-15.240000px;}
.ws37{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.800000px;}
.ws2{word-spacing:-12.240000px;}
.ws20{word-spacing:-12.000000px;}
.ws3c{word-spacing:-11.952000px;}
.ws0{word-spacing:-11.904000px;}
.ws3d{word-spacing:-11.328000px;}
.ws1{word-spacing:-11.136000px;}
.ws6{word-spacing:-10.890000px;}
.ws4{word-spacing:-8.884920px;}
.ws40{word-spacing:-8.112000px;}
.ws21{word-spacing:-7.345800px;}
.ws3e{word-spacing:-6.968016px;}
.ws1e{word-spacing:-2.700000px;}
.ws18{word-spacing:-1.800000px;}
.ws22{word-spacing:-1.080000px;}
.wsd{word-spacing:-0.900000px;}
.ws1d{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.225000px;}
.ws3f{word-spacing:-0.192000px;}
.ws1f{word-spacing:-0.120000px;}
.ws3a{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws13{word-spacing:1.200000px;}
.ws23{word-spacing:3.060000px;}
.ws26{word-spacing:3.180000px;}
.ws1c{word-spacing:3.660000px;}
.wsb{word-spacing:3.840000px;}
.ws16{word-spacing:4.080000px;}
.ws39{word-spacing:4.200000px;}
.wsc{word-spacing:4.440000px;}
.ws12{word-spacing:5.160000px;}
.ws15{word-spacing:6.840000px;}
.ws25{word-spacing:6.960000px;}
.ws11{word-spacing:7.020000px;}
.ws24{word-spacing:7.080000px;}
.ws10{word-spacing:7.500000px;}
.ws1b{word-spacing:7.620000px;}
.wsa{word-spacing:7.980000px;}
.wse{word-spacing:9.300000px;}
.ws17{word-spacing:10.260000px;}
.ws1a{word-spacing:14.160000px;}
.ws9{word-spacing:14.220000px;}
.wsf{word-spacing:15.480000px;}
.ws19{word-spacing:16.800000px;}
.ws14{word-spacing:18.540000px;}
.ws34{word-spacing:482.903400px;}
.ws35{word-spacing:514.223400px;}
.ws36{word-spacing:514.224000px;}
.ws38{word-spacing:530.183400px;}
.ws2b{word-spacing:538.263000px;}
.ws2e{word-spacing:554.488200px;}
.ws2f{word-spacing:579.868800px;}
.ws30{word-spacing:611.188800px;}
.ws33{word-spacing:627.148200px;}
.ws2c{word-spacing:629.343000px;}
.ws28{word-spacing:630.003000px;}
.ws31{word-spacing:642.508800px;}
.ws29{word-spacing:670.923000px;}
.ws32{word-spacing:673.828800px;}
.ws2d{word-spacing:685.443000px;}
.ws2a{word-spacing:687.003000px;}
.ws27{word-spacing:759.063000px;}
._8{margin-left:-1630.848000px;}
._9{margin-left:-8.089200px;}
._7{margin-left:-6.936000px;}
._2{margin-left:-5.542800px;}
._5{margin-left:-3.720000px;}
._1{margin-left:-2.640000px;}
._0{margin-left:-1.518000px;}
._4{width:1.434000px;}
._3{width:2.461800px;}
._a{width:3.612000px;}
._6{width:4.992000px;}
._19{width:20.976000px;}
._b{width:43.398000px;}
._18{width:46.032000px;}
._c{width:118.161000px;}
._10{width:458.222400px;}
._d{width:460.636200px;}
._16{width:472.463400px;}
._17{width:497.843400px;}
._13{width:518.355600px;}
._11{width:529.220400px;}
._12{width:538.562400px;}
._f{width:550.936200px;}
._14{width:577.528200px;}
._15{width:657.448800px;}
._e{width:675.722400px;}
.fc5{color:rgb(123,121,121);}
.fc6{color:rgb(0,0,255);}
.fc2{color:rgb(254,0,0);}
.fc3{color:rgb(101,98,99);}
.fc1{color:rgb(79,76,77);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:27.984000px;}
.fs6{font-size:34.980000px;}
.fs8{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:49.693267px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:54.530716px;}
.fsa{font-size:55.904847px;}
.fsc{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:46.444500px;}
.y40{bottom:61.444500px;}
.y42{bottom:74.725500px;}
.y3f{bottom:76.444500px;}
.y1d{bottom:127.559100px;}
.y70{bottom:129.420750px;}
.y19f{bottom:134.046450px;}
.y3e{bottom:134.086500px;}
.ye4{bottom:135.847650px;}
.y175{bottom:139.839750px;}
.y10c{bottom:143.221350px;}
.y1c{bottom:144.059100px;}
.yc8{bottom:144.091800px;}
.y9e{bottom:146.428650px;}
.y19e{bottom:148.296450px;}
.y6f{bottom:150.420750px;}
.y12d{bottom:152.169600px;}
.y1d7{bottom:152.212650px;}
.y3d{bottom:155.086500px;}
.ye3{bottom:156.847650px;}
.y1fb{bottom:157.958700px;}
.y1b{bottom:160.559100px;}
.y174{bottom:160.839750px;}
.y19d{bottom:162.546450px;}
.yc7{bottom:165.091800px;}
.y1d6{bottom:166.462650px;}
.y158{bottom:166.828650px;}
.y9d{bottom:167.428650px;}
.y10b{bottom:170.908200px;}
.y6e{bottom:171.420750px;}
.y1fa{bottom:172.208700px;}
.yf3{bottom:175.672650px;}
.y3c{bottom:176.086500px;}
.y19c{bottom:176.796450px;}
.y1a{bottom:177.059100px;}
.y12c{bottom:179.856450px;}
.y173{bottom:181.839750px;}
.ye2{bottom:182.099700px;}
.yc6{bottom:186.091800px;}
.y1f9{bottom:186.458700px;}
.y157{bottom:187.828650px;}
.y9c{bottom:188.428650px;}
.y1d5{bottom:189.216600px;}
.y19b{bottom:191.046450px;}
.y82{bottom:192.420750px;}
.yca{bottom:192.680550px;}
.y6d{bottom:196.672650px;}
.y3b{bottom:197.086500px;}
.y10a{bottom:198.408000px;}
.y1f8{bottom:200.708700px;}
.y172{bottom:202.839750px;}
.ye1{bottom:203.099700px;}
.y1d4{bottom:203.466600px;}
.y12b{bottom:207.543300px;}
.y156{bottom:208.828650px;}
.ycc{bottom:209.428650px;}
.y19{bottom:210.059100px;}
.yc5{bottom:211.343700px;}
.y81{bottom:213.420750px;}
.y9b{bottom:213.680550px;}
.y19a{bottom:213.800400px;}
.y6c{bottom:217.672650px;}
.y3a{bottom:218.086500px;}
.y1f7{bottom:223.462650px;}
.y171{bottom:223.839750px;}
.ye0{bottom:224.099700px;}
.y1d3{bottom:226.220550px;}
.y18{bottom:226.559100px;}
.y199{bottom:228.050400px;}
.ycb{bottom:230.428650px;}
.yc4{bottom:232.343700px;}
.y109{bottom:232.591800px;}
.y155{bottom:234.080700px;}
.y80{bottom:234.420750px;}
.y9a{bottom:234.680550px;}
.y12a{bottom:235.230150px;}
.y1f6{bottom:237.712650px;}
.y6b{bottom:238.672650px;}
.y39{bottom:239.086500px;}
.y1d2{bottom:240.470550px;}
.y17{bottom:243.059100px;}
.y170{bottom:244.839750px;}
.ydf{bottom:245.099700px;}
.yf2{bottom:247.176600px;}
.y198{bottom:250.804350px;}
.ye9{bottom:251.428650px;}
.y1f5{bottom:251.962650px;}
.yc3{bottom:253.343700px;}
.y1d1{bottom:254.720550px;}
.y154{bottom:255.080700px;}
.y7f{bottom:255.420750px;}
.y99{bottom:255.680550px;}
.y16{bottom:259.559100px;}
.y6a{bottom:259.672650px;}
.y38{bottom:260.086500px;}
.y129{bottom:262.917000px;}
.y16f{bottom:265.839750px;}
.yde{bottom:266.099700px;}
.yf1{bottom:268.176600px;}
.y1d0{bottom:268.970550px;}
.y197{bottom:273.558150px;}
.yc2{bottom:274.343700px;}
.y1f4{bottom:274.716600px;}
.y15{bottom:276.059100px;}
.y153{bottom:276.080700px;}
.y7e{bottom:276.420750px;}
.y98{bottom:276.680550px;}
.y69{bottom:280.672650px;}
.y37{bottom:281.086500px;}
.y1cf{bottom:283.220550px;}
.ydd{bottom:287.099700px;}
.yf0{bottom:289.176600px;}
.y128{bottom:290.416800px;}
.y14{bottom:292.559100px;}
.yc1{bottom:295.343700px;}
.y196{bottom:296.312100px;}
.y152{bottom:297.080700px;}
.y7d{bottom:297.420750px;}
.y1f3{bottom:297.470550px;}
.y97{bottom:297.680550px;}
.y68{bottom:301.672650px;}
.y36{bottom:302.086500px;}
.y1ce{bottom:305.974500px;}
.ydc{bottom:308.099700px;}
.y13{bottom:309.059100px;}
.yef{bottom:310.176600px;}
.y195{bottom:310.562100px;}
.yc0{bottom:316.343700px;}
.y151{bottom:318.080700px;}
.y96{bottom:318.680550px;}
.y1cd{bottom:320.224500px;}
.y67{bottom:322.672650px;}
.y35{bottom:323.086500px;}
.y127{bottom:324.600600px;}
.y194{bottom:324.812100px;}
.ydb{bottom:329.099700px;}
.yee{bottom:331.176600px;}
.y1cc{bottom:334.474500px;}
.ybf{bottom:337.343700px;}
.y150{bottom:339.080700px;}
.y16e{bottom:339.420600px;}
.y95{bottom:339.680550px;}
.y108{bottom:341.595750px;}
.y12{bottom:342.059100px;}
.y66{bottom:343.672650px;}
.y193{bottom:347.566200px;}
.y1f2{bottom:348.724500px;}
.yda{bottom:350.099700px;}
.yed{bottom:352.176600px;}
.y34{bottom:352.590450px;}
.y1cb{bottom:357.228450px;}
.ybe{bottom:358.343700px;}
.y11{bottom:358.559100px;}
.y14f{bottom:360.080550px;}
.y16d{bottom:360.420600px;}
.yc9{bottom:360.680550px;}
.y192{bottom:361.816200px;}
.y107{bottom:362.595750px;}
.y65{bottom:364.672650px;}
.y94{bottom:364.932600px;}
.y126{bottom:366.352500px;}
.yd9{bottom:371.099700px;}
.y1f1{bottom:371.478450px;}
.y10{bottom:375.059100px;}
.y191{bottom:376.066200px;}
.ybd{bottom:379.343700px;}
.y1ca{bottom:379.982400px;}
.y14e{bottom:381.080550px;}
.y16c{bottom:381.420600px;}
.ye8{bottom:381.680550px;}
.y106{bottom:383.595750px;}
.y64{bottom:385.672650px;}
.y1f0{bottom:385.728450px;}
.y93{bottom:385.932600px;}
.y125{bottom:387.352500px;}
.yf{bottom:391.559100px;}
.y1c9{bottom:394.232400px;}
.yd8{bottom:396.351600px;}
.y33{bottom:396.667350px;}
.y190{bottom:398.820000px;}
.y1ef{bottom:399.978450px;}
.ybc{bottom:400.343700px;}
.y14d{bottom:402.080550px;}
.y16b{bottom:402.420600px;}
.ye7{bottom:402.680550px;}
.y105{bottom:404.595750px;}
.y7c{bottom:406.672650px;}
.y92{bottom:406.932600px;}
.ye{bottom:408.059100px;}
.y124{bottom:408.352500px;}
.y18f{bottom:413.070000px;}
.y63{bottom:415.176600px;}
.y1c8{bottom:416.986200px;}
.yd7{bottom:417.351600px;}
.y32{bottom:417.667350px;}
.y1ee{bottom:422.732400px;}
.y14c{bottom:423.080550px;}
.ye6{bottom:423.680550px;}
.yd{bottom:424.559100px;}
.ybb{bottom:425.595600px;}
.y7b{bottom:427.672650px;}
.y91{bottom:427.932600px;}
.y123{bottom:429.352500px;}
.y104{bottom:434.099700px;}
.y18e{bottom:435.823950px;}
.y62{bottom:436.176600px;}
.y1ed{bottom:436.982400px;}
.yd6{bottom:438.351600px;}
.y31{bottom:438.667350px;}
.y1c7{bottom:439.740150px;}
.yc{bottom:441.059100px;}
.ye5{bottom:444.680550px;}
.yba{bottom:446.595600px;}
.y14b{bottom:448.332600px;}
.y16a{bottom:448.672650px;}
.y90{bottom:448.932600px;}
.y18d{bottom:450.073950px;}
.y122{bottom:450.352500px;}
.y1c6{bottom:453.990150px;}
.y61{bottom:457.176600px;}
.yb{bottom:457.559100px;}
.yd5{bottom:459.351600px;}
.y30{bottom:459.667350px;}
.y1ec{bottom:459.736200px;}
.yb9{bottom:467.595600px;}
.y14a{bottom:469.332600px;}
.y169{bottom:469.672650px;}
.y8f{bottom:469.932600px;}
.y18c{bottom:472.827900px;}
.y1eb{bottom:473.986200px;}
.ya{bottom:474.059100px;}
.y1c5{bottom:476.744100px;}
.y60{bottom:478.176600px;}
.yd4{bottom:480.351600px;}
.y2f{bottom:480.667350px;}
.y103{bottom:482.428650px;}
.y18b{bottom:487.077900px;}
.y1ea{bottom:488.236200px;}
.yb8{bottom:488.595600px;}
.y149{bottom:490.332600px;}
.y9{bottom:490.559100px;}
.y168{bottom:490.672650px;}
.y8e{bottom:490.932600px;}
.y1c4{bottom:490.994100px;}
.y121{bottom:492.612000px;}
.y5f{bottom:499.176600px;}
.yd3{bottom:501.351600px;}
.y2e{bottom:501.667350px;}
.y1e9{bottom:502.486200px;}
.y102{bottom:503.428650px;}
.y8{bottom:507.059100px;}
.yb7{bottom:509.595600px;}
.y18a{bottom:509.831850px;}
.y148{bottom:511.332600px;}
.y167{bottom:511.672650px;}
.y8d{bottom:511.932600px;}
.y1c3{bottom:513.748050px;}
.yec{bottom:516.184500px;}
.y1e8{bottom:516.736200px;}
.y7a{bottom:520.176600px;}
.y120{bottom:520.298850px;}
.y2d{bottom:522.667350px;}
.y7{bottom:523.559100px;}
.y189{bottom:524.081850px;}
.y101{bottom:524.428650px;}
.yd2{bottom:526.603650px;}
.y1c2{bottom:527.998050px;}
.yb6{bottom:530.595600px;}
.y147{bottom:532.332600px;}
.y166{bottom:532.672650px;}
.y5e{bottom:532.932600px;}
.yeb{bottom:537.184500px;}
.y1e7{bottom:539.490150px;}
.y6{bottom:540.059100px;}
.y2c{bottom:543.667350px;}
.y100{bottom:545.428650px;}
.y188{bottom:546.835800px;}
.yd1{bottom:547.603650px;}
.y11f{bottom:547.985700px;}
.y1c1{bottom:550.752000px;}
.yb5{bottom:551.595600px;}
.y146{bottom:553.332600px;}
.y165{bottom:553.672650px;}
.y1e6{bottom:553.740150px;}
.y5d{bottom:553.932600px;}
.y5{bottom:556.559100px;}
.yea{bottom:558.184500px;}
.y187{bottom:561.085800px;}
.y2b{bottom:564.667350px;}
.y1c0{bottom:565.002000px;}
.yff{bottom:566.428650px;}
.yd0{bottom:568.603650px;}
.yb4{bottom:572.595600px;}
.y4{bottom:573.059100px;}
.y145{bottom:574.332600px;}
.y5c{bottom:574.932600px;}
.y186{bottom:575.335800px;}
.y11e{bottom:575.672550px;}
.y1e5{bottom:576.494100px;}
.y164{bottom:578.924550px;}
.y79{bottom:579.184500px;}
.y1bf{bottom:579.252000px;}
.y2a{bottom:585.667350px;}
.yfe{bottom:587.428650px;}
.y3{bottom:589.559100px;}
.y185{bottom:589.585800px;}
.ycf{bottom:589.603650px;}
.y1be{bottom:593.502000px;}
.yb3{bottom:593.595600px;}
.y144{bottom:595.332600px;}
.y5b{bottom:595.932600px;}
.y1e4{bottom:599.248050px;}
.y163{bottom:599.924550px;}
.y78{bottom:600.184500px;}
.y11d{bottom:603.359400px;}
.y184{bottom:603.835800px;}
.y1bd{bottom:607.752000px;}
.yfd{bottom:608.428650px;}
.yce{bottom:610.603650px;}
.y29{bottom:610.919400px;}
.yb2{bottom:614.595600px;}
.y5a{bottom:616.932600px;}
.y143{bottom:620.584650px;}
.y162{bottom:620.924550px;}
.y77{bottom:621.184500px;}
.y1e3{bottom:622.002000px;}
.y183{bottom:626.589750px;}
.yfc{bottom:629.428650px;}
.y1bc{bottom:630.505950px;}
.y11c{bottom:631.046250px;}
.y28{bottom:631.919400px;}
.y59{bottom:637.932600px;}
.ycd{bottom:640.107600px;}
.y182{bottom:640.839750px;}
.y142{bottom:641.584650px;}
.y161{bottom:641.924550px;}
.y76{bottom:642.184500px;}
.yb1{bottom:644.099550px;}
.y1e2{bottom:644.755950px;}
.yfb{bottom:650.428650px;}
.y27{bottom:652.919400px;}
.y1bb{bottom:653.259900px;}
.y181{bottom:655.089750px;}
.y11b{bottom:658.733100px;}
.y58{bottom:658.932600px;}
.y141{bottom:662.584650px;}
.y160{bottom:662.924550px;}
.y75{bottom:663.184500px;}
.y1ba{bottom:667.509900px;}
.yfa{bottom:671.428650px;}
.y26{bottom:673.919400px;}
.y180{bottom:677.843700px;}
.y1e1{bottom:681.759900px;}
.y140{bottom:683.584650px;}
.y15f{bottom:683.924550px;}
.y57{bottom:684.184500px;}
.y11a{bottom:686.419950px;}
.yb0{bottom:688.176600px;}
.y1b9{bottom:690.263850px;}
.y17f{bottom:692.093700px;}
.yf9{bottom:692.428650px;}
.y25{bottom:694.919400px;}
.y1e0{bottom:696.009900px;}
.y1b8{bottom:704.513850px;}
.y13f{bottom:704.584650px;}
.y56{bottom:705.184500px;}
.yaf{bottom:709.176600px;}
.yf8{bottom:713.428650px;}
.y119{bottom:714.106800px;}
.y17e{bottom:714.847650px;}
.y24{bottom:715.919400px;}
.y1b7{bottom:718.763850px;}
.y13e{bottom:725.584650px;}
.y55{bottom:726.184500px;}
.yae{bottom:730.176600px;}
.y1df{bottom:733.013850px;}
.y23{bottom:736.919400px;}
.y17d{bottom:737.601600px;}
.y1b6{bottom:741.517800px;}
.y118{bottom:741.793650px;}
.y13d{bottom:746.584650px;}
.y54{bottom:747.184500px;}
.yad{bottom:751.176600px;}
.y1b5{bottom:755.767800px;}
.y22{bottom:757.919400px;}
.y17c{bottom:760.355550px;}
.y53{bottom:768.184500px;}
.y117{bottom:769.293450px;}
.y1b4{bottom:770.017800px;}
.y13c{bottom:771.836550px;}
.yac{bottom:772.176600px;}
.yf7{bottom:772.436400px;}
.y17b{bottom:774.605550px;}
.y21{bottom:778.919250px;}
.y17a{bottom:788.855550px;}
.y52{bottom:789.184500px;}
.y1b3{bottom:792.771750px;}
.y13b{bottom:792.836550px;}
.yab{bottom:793.176600px;}
.y74{bottom:793.436400px;}
.y179{bottom:803.105550px;}
.y116{bottom:803.477250px;}
.y1b2{bottom:807.021750px;}
.y51{bottom:810.184500px;}
.y13a{bottom:813.836550px;}
.yaa{bottom:814.176600px;}
.y73{bottom:814.436400px;}
.y178{bottom:817.355550px;}
.y15e{bottom:818.428500px;}
.y1b1{bottom:829.775700px;}
.y50{bottom:831.184500px;}
.y177{bottom:831.605550px;}
.y20{bottom:834.171300px;}
.y139{bottom:834.836550px;}
.ya9{bottom:835.176600px;}
.y72{bottom:835.436400px;}
.y15d{bottom:839.428500px;}
.y1b0{bottom:844.025700px;}
.y8c{bottom:852.184500px;}
.y1de{bottom:852.529500px;}
.y176{bottom:854.359500px;}
.y138{bottom:855.836550px;}
.y4f{bottom:856.436400px;}
.y115{bottom:857.984850px;}
.y1af{bottom:858.275700px;}
.ya8{bottom:860.428500px;}
.y1dd{bottom:866.779500px;}
.y15c{bottom:868.932450px;}
.y8b{bottom:873.184500px;}
.y137{bottom:876.836550px;}
.y4e{bottom:877.436400px;}
.y1f{bottom:879.431250px;}
.y1ae{bottom:881.029500px;}
.ya7{bottom:881.428500px;}
.y2{bottom:882.434700px;}
.y114{bottom:885.671850px;}
.y15b{bottom:889.932450px;}
.y8a{bottom:894.184500px;}
.y1ad{bottom:895.279500px;}
.y136{bottom:897.836550px;}
.y4d{bottom:898.436400px;}
.ya6{bottom:902.428500px;}
.yf6{bottom:902.688450px;}
.y1dc{bottom:903.783450px;}
.y1ac{bottom:909.529500px;}
.y15a{bottom:910.932450px;}
.y113{bottom:913.358700px;}
.y89{bottom:915.184500px;}
.y1e{bottom:916.931250px;}
.y1db{bottom:918.033450px;}
.y4c{bottom:919.436400px;}
.yf5{bottom:923.688450px;}
.y1{bottom:924.942600px;}
.ya5{bottom:931.932450px;}
.y1ab{bottom:932.283450px;}
.y88{bottom:936.184500px;}
.y135{bottom:940.096050px;}
.y4b{bottom:940.436400px;}
.y112{bottom:941.045400px;}
.yf4{bottom:944.688450px;}
.y1aa{bottom:946.533450px;}
.ya4{bottom:952.932450px;}
.y1a9{bottom:960.783450px;}
.y4a{bottom:961.436400px;}
.y87{bottom:965.688450px;}
.y134{bottom:967.782900px;}
.y111{bottom:968.732250px;}
.y1da{bottom:969.287550px;}
.ya3{bottom:973.932450px;}
.y1a8{bottom:975.033450px;}
.y49{bottom:982.436400px;}
.y1d9{bottom:983.537550px;}
.y86{bottom:986.688450px;}
.ya2{bottom:994.932450px;}
.y133{bottom:995.469750px;}
.y110{bottom:996.419250px;}
.y1a7{bottom:997.787550px;}
.y48{bottom:1003.436400px;}
.y85{bottom:1007.688450px;}
.y1a6{bottom:1012.037550px;}
.ya1{bottom:1015.932450px;}
.y132{bottom:1023.156600px;}
.y131{bottom:1023.726750px;}
.y10f{bottom:1024.106100px;}
.y47{bottom:1024.436400px;}
.y1a5{bottom:1026.287550px;}
.y84{bottom:1028.688450px;}
.y1fd{bottom:1034.791350px;}
.ya0{bottom:1036.932450px;}
.y1d8{bottom:1040.537550px;}
.y46{bottom:1045.436400px;}
.y1a4{bottom:1049.041350px;}
.y83{bottom:1049.688450px;}
.y130{bottom:1051.413600px;}
.y10e{bottom:1051.792950px;}
.y9f{bottom:1057.932450px;}
.y1a3{bottom:1063.291350px;}
.y45{bottom:1070.688450px;}
.y1fc{bottom:1077.541350px;}
.y12f{bottom:1079.100900px;}
.y10d{bottom:1079.480400px;}
.y1a2{bottom:1086.045300px;}
.y44{bottom:1091.688450px;}
.y1a1{bottom:1100.295300px;}
.y43{bottom:1112.688450px;}
.y159{bottom:1113.106350px;}
.y12e{bottom:1113.485850px;}
.y1a0{bottom:1114.545300px;}
.y71{bottom:1188.525900px;}
.ha{height:36.270000px;}
.h4{height:38.688000px;}
.h5{height:40.052773px;}
.h10{height:40.996582px;}
.h11{height:43.140000px;}
.hb{height:43.524000px;}
.hf{height:43.951757px;}
.hc{height:45.000000px;}
.he{height:45.059307px;}
.h7{height:45.234000px;}
.hd{height:46.215000px;}
.h2{height:47.388000px;}
.h12{height:52.859400px;}
.h3{height:53.196000px;}
.h8{height:53.400000px;}
.h9{height:60.312000px;}
.h6{height:77.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:62.279550px;}
.x1{left:63.779550px;}
.x2{left:90.899100px;}
.x3{left:204.321600px;}
.x4{left:260.433150px;}
.xe{left:268.936950px;}
.x5{left:277.440900px;}
.x7{left:281.692950px;}
.xd{left:297.933000px;}
.x10{left:319.491150px;}
.xf{left:331.611750px;}
.xc{left:348.919800px;}
.x9{left:388.033350px;}
.xa{left:391.516200px;}
.xb{left:398.400900px;}
.x8{left:609.789450px;}
.x11{left:629.022750px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-2.027200pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.639467pt;}
.v5{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.ls6{letter-spacing:-3.733333pt;}
.ls7{letter-spacing:-3.413333pt;}
.ls3{letter-spacing:-0.298667pt;}
.ls1{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.400000pt;}
.ls5{letter-spacing:512.607467pt;}
.ls4{letter-spacing:598.798400pt;}
.ws3b{word-spacing:-17.920000pt;}
.ws3{word-spacing:-13.546667pt;}
.ws37{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.266667pt;}
.ws2{word-spacing:-10.880000pt;}
.ws20{word-spacing:-10.666667pt;}
.ws3c{word-spacing:-10.624000pt;}
.ws0{word-spacing:-10.581333pt;}
.ws3d{word-spacing:-10.069333pt;}
.ws1{word-spacing:-9.898667pt;}
.ws6{word-spacing:-9.680000pt;}
.ws4{word-spacing:-7.897707pt;}
.ws40{word-spacing:-7.210667pt;}
.ws21{word-spacing:-6.529600pt;}
.ws3e{word-spacing:-6.193792pt;}
.ws1e{word-spacing:-2.400000pt;}
.ws18{word-spacing:-1.600000pt;}
.ws22{word-spacing:-0.960000pt;}
.wsd{word-spacing:-0.800000pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.200000pt;}
.ws3f{word-spacing:-0.170667pt;}
.ws1f{word-spacing:-0.106667pt;}
.ws3a{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws13{word-spacing:1.066667pt;}
.ws23{word-spacing:2.720000pt;}
.ws26{word-spacing:2.826667pt;}
.ws1c{word-spacing:3.253333pt;}
.wsb{word-spacing:3.413333pt;}
.ws16{word-spacing:3.626667pt;}
.ws39{word-spacing:3.733333pt;}
.wsc{word-spacing:3.946667pt;}
.ws12{word-spacing:4.586667pt;}
.ws15{word-spacing:6.080000pt;}
.ws25{word-spacing:6.186667pt;}
.ws11{word-spacing:6.240000pt;}
.ws24{word-spacing:6.293333pt;}
.ws10{word-spacing:6.666667pt;}
.ws1b{word-spacing:6.773333pt;}
.wsa{word-spacing:7.093333pt;}
.wse{word-spacing:8.266667pt;}
.ws17{word-spacing:9.120000pt;}
.ws1a{word-spacing:12.586667pt;}
.ws9{word-spacing:12.640000pt;}
.wsf{word-spacing:13.760000pt;}
.ws19{word-spacing:14.933333pt;}
.ws14{word-spacing:16.480000pt;}
.ws34{word-spacing:429.247467pt;}
.ws35{word-spacing:457.087467pt;}
.ws36{word-spacing:457.088000pt;}
.ws38{word-spacing:471.274133pt;}
.ws2b{word-spacing:478.456000pt;}
.ws2e{word-spacing:492.878400pt;}
.ws2f{word-spacing:515.438933pt;}
.ws30{word-spacing:543.278933pt;}
.ws33{word-spacing:557.465067pt;}
.ws2c{word-spacing:559.416000pt;}
.ws28{word-spacing:560.002667pt;}
.ws31{word-spacing:571.118933pt;}
.ws29{word-spacing:596.376000pt;}
.ws32{word-spacing:598.958933pt;}
.ws2d{word-spacing:609.282667pt;}
.ws2a{word-spacing:610.669333pt;}
.ws27{word-spacing:674.722667pt;}
._8{margin-left:-1449.642667pt;}
._9{margin-left:-7.190400pt;}
._7{margin-left:-6.165333pt;}
._2{margin-left:-4.926933pt;}
._5{margin-left:-3.306667pt;}
._1{margin-left:-2.346667pt;}
._0{margin-left:-1.349333pt;}
._4{width:1.274667pt;}
._3{width:2.188267pt;}
._a{width:3.210667pt;}
._6{width:4.437333pt;}
._19{width:18.645333pt;}
._b{width:38.576000pt;}
._18{width:40.917333pt;}
._c{width:105.032000pt;}
._10{width:407.308800pt;}
._d{width:409.454400pt;}
._16{width:419.967467pt;}
._17{width:442.527467pt;}
._13{width:460.760533pt;}
._11{width:470.418133pt;}
._12{width:478.722133pt;}
._f{width:489.721067pt;}
._14{width:513.358400pt;}
._15{width:584.398933pt;}
._e{width:600.642133pt;}
.fsd{font-size:24.874667pt;}
.fs6{font-size:31.093333pt;}
.fs8{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:44.171793pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:48.471748pt;}
.fsa{font-size:49.693198pt;}
.fsc{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:41.284000pt;}
.y40{bottom:54.617333pt;}
.y42{bottom:66.422667pt;}
.y3f{bottom:67.950667pt;}
.y1d{bottom:113.385867pt;}
.y70{bottom:115.040667pt;}
.y19f{bottom:119.152400pt;}
.y3e{bottom:119.188000pt;}
.ye4{bottom:120.753467pt;}
.y175{bottom:124.302000pt;}
.y10c{bottom:127.307867pt;}
.y1c{bottom:128.052533pt;}
.yc8{bottom:128.081600pt;}
.y9e{bottom:130.158800pt;}
.y19e{bottom:131.819067pt;}
.y6f{bottom:133.707333pt;}
.y12d{bottom:135.261867pt;}
.y1d7{bottom:135.300133pt;}
.y3d{bottom:137.854667pt;}
.ye3{bottom:139.420133pt;}
.y1fb{bottom:140.407733pt;}
.y1b{bottom:142.719200pt;}
.y174{bottom:142.968667pt;}
.y19d{bottom:144.485733pt;}
.yc7{bottom:146.748267pt;}
.y1d6{bottom:147.966800pt;}
.y158{bottom:148.292133pt;}
.y9d{bottom:148.825467pt;}
.y10b{bottom:151.918400pt;}
.y6e{bottom:152.374000pt;}
.y1fa{bottom:153.074400pt;}
.yf3{bottom:156.153467pt;}
.y3c{bottom:156.521333pt;}
.y19c{bottom:157.152400pt;}
.y1a{bottom:157.385867pt;}
.y12c{bottom:159.872400pt;}
.y173{bottom:161.635333pt;}
.ye2{bottom:161.866400pt;}
.yc6{bottom:165.414933pt;}
.y1f9{bottom:165.741067pt;}
.y157{bottom:166.958800pt;}
.y9c{bottom:167.492133pt;}
.y1d5{bottom:168.192533pt;}
.y19b{bottom:169.819067pt;}
.y82{bottom:171.040667pt;}
.yca{bottom:171.271600pt;}
.y6d{bottom:174.820133pt;}
.y3b{bottom:175.188000pt;}
.y10a{bottom:176.362667pt;}
.y1f8{bottom:178.407733pt;}
.y172{bottom:180.302000pt;}
.ye1{bottom:180.533067pt;}
.y1d4{bottom:180.859200pt;}
.y12b{bottom:184.482933pt;}
.y156{bottom:185.625467pt;}
.ycc{bottom:186.158800pt;}
.y19{bottom:186.719200pt;}
.yc5{bottom:187.861067pt;}
.y81{bottom:189.707333pt;}
.y9b{bottom:189.938267pt;}
.y19a{bottom:190.044800pt;}
.y6c{bottom:193.486800pt;}
.y3a{bottom:193.854667pt;}
.y1f7{bottom:198.633467pt;}
.y171{bottom:198.968667pt;}
.ye0{bottom:199.199733pt;}
.y1d3{bottom:201.084933pt;}
.y18{bottom:201.385867pt;}
.y199{bottom:202.711467pt;}
.ycb{bottom:204.825467pt;}
.yc4{bottom:206.527733pt;}
.y109{bottom:206.748267pt;}
.y155{bottom:208.071733pt;}
.y80{bottom:208.374000pt;}
.y9a{bottom:208.604933pt;}
.y12a{bottom:209.093467pt;}
.y1f6{bottom:211.300133pt;}
.y6b{bottom:212.153467pt;}
.y39{bottom:212.521333pt;}
.y1d2{bottom:213.751600pt;}
.y17{bottom:216.052533pt;}
.y170{bottom:217.635333pt;}
.ydf{bottom:217.866400pt;}
.yf2{bottom:219.712533pt;}
.y198{bottom:222.937200pt;}
.ye9{bottom:223.492133pt;}
.y1f5{bottom:223.966800pt;}
.yc3{bottom:225.194400pt;}
.y1d1{bottom:226.418267pt;}
.y154{bottom:226.738400pt;}
.y7f{bottom:227.040667pt;}
.y99{bottom:227.271600pt;}
.y16{bottom:230.719200pt;}
.y6a{bottom:230.820133pt;}
.y38{bottom:231.188000pt;}
.y129{bottom:233.704000pt;}
.y16f{bottom:236.302000pt;}
.yde{bottom:236.533067pt;}
.yf1{bottom:238.379200pt;}
.y1d0{bottom:239.084933pt;}
.y197{bottom:243.162800pt;}
.yc2{bottom:243.861067pt;}
.y1f4{bottom:244.192533pt;}
.y15{bottom:245.385867pt;}
.y153{bottom:245.405067pt;}
.y7e{bottom:245.707333pt;}
.y98{bottom:245.938267pt;}
.y69{bottom:249.486800pt;}
.y37{bottom:249.854667pt;}
.y1cf{bottom:251.751600pt;}
.ydd{bottom:255.199733pt;}
.yf0{bottom:257.045867pt;}
.y128{bottom:258.148267pt;}
.y14{bottom:260.052533pt;}
.yc1{bottom:262.527733pt;}
.y196{bottom:263.388533pt;}
.y152{bottom:264.071733pt;}
.y7d{bottom:264.374000pt;}
.y1f3{bottom:264.418267pt;}
.y97{bottom:264.604933pt;}
.y68{bottom:268.153467pt;}
.y36{bottom:268.521333pt;}
.y1ce{bottom:271.977333pt;}
.ydc{bottom:273.866400pt;}
.y13{bottom:274.719200pt;}
.yef{bottom:275.712533pt;}
.y195{bottom:276.055200pt;}
.yc0{bottom:281.194400pt;}
.y151{bottom:282.738400pt;}
.y96{bottom:283.271600pt;}
.y1cd{bottom:284.644000pt;}
.y67{bottom:286.820133pt;}
.y35{bottom:287.188000pt;}
.y127{bottom:288.533867pt;}
.y194{bottom:288.721867pt;}
.ydb{bottom:292.533067pt;}
.yee{bottom:294.379200pt;}
.y1cc{bottom:297.310667pt;}
.ybf{bottom:299.861067pt;}
.y150{bottom:301.405067pt;}
.y16e{bottom:301.707200pt;}
.y95{bottom:301.938267pt;}
.y108{bottom:303.640667pt;}
.y12{bottom:304.052533pt;}
.y66{bottom:305.486800pt;}
.y193{bottom:308.947733pt;}
.y1f2{bottom:309.977333pt;}
.yda{bottom:311.199733pt;}
.yed{bottom:313.045867pt;}
.y34{bottom:313.413733pt;}
.y1cb{bottom:317.536400pt;}
.ybe{bottom:318.527733pt;}
.y11{bottom:318.719200pt;}
.y14f{bottom:320.071600pt;}
.y16d{bottom:320.373867pt;}
.yc9{bottom:320.604933pt;}
.y192{bottom:321.614400pt;}
.y107{bottom:322.307333pt;}
.y65{bottom:324.153467pt;}
.y94{bottom:324.384533pt;}
.y126{bottom:325.646667pt;}
.yd9{bottom:329.866400pt;}
.y1f1{bottom:330.203067pt;}
.y10{bottom:333.385867pt;}
.y191{bottom:334.281067pt;}
.ybd{bottom:337.194400pt;}
.y1ca{bottom:337.762133pt;}
.y14e{bottom:338.738267pt;}
.y16c{bottom:339.040533pt;}
.ye8{bottom:339.271600pt;}
.y106{bottom:340.974000pt;}
.y64{bottom:342.820133pt;}
.y1f0{bottom:342.869733pt;}
.y93{bottom:343.051200pt;}
.y125{bottom:344.313333pt;}
.yf{bottom:348.052533pt;}
.y1c9{bottom:350.428800pt;}
.yd8{bottom:352.312533pt;}
.y33{bottom:352.593200pt;}
.y190{bottom:354.506667pt;}
.y1ef{bottom:355.536400pt;}
.ybc{bottom:355.861067pt;}
.y14d{bottom:357.404933pt;}
.y16b{bottom:357.707200pt;}
.ye7{bottom:357.938267pt;}
.y105{bottom:359.640667pt;}
.y7c{bottom:361.486800pt;}
.y92{bottom:361.717867pt;}
.ye{bottom:362.719200pt;}
.y124{bottom:362.980000pt;}
.y18f{bottom:367.173333pt;}
.y63{bottom:369.045867pt;}
.y1c8{bottom:370.654400pt;}
.yd7{bottom:370.979200pt;}
.y32{bottom:371.259867pt;}
.y1ee{bottom:375.762133pt;}
.y14c{bottom:376.071600pt;}
.ye6{bottom:376.604933pt;}
.yd{bottom:377.385867pt;}
.ybb{bottom:378.307200pt;}
.y7b{bottom:380.153467pt;}
.y91{bottom:380.384533pt;}
.y123{bottom:381.646667pt;}
.y104{bottom:385.866400pt;}
.y18e{bottom:387.399067pt;}
.y62{bottom:387.712533pt;}
.y1ed{bottom:388.428800pt;}
.yd6{bottom:389.645867pt;}
.y31{bottom:389.926533pt;}
.y1c7{bottom:390.880133pt;}
.yc{bottom:392.052533pt;}
.ye5{bottom:395.271600pt;}
.yba{bottom:396.973867pt;}
.y14b{bottom:398.517867pt;}
.y16a{bottom:398.820133pt;}
.y90{bottom:399.051200pt;}
.y18d{bottom:400.065733pt;}
.y122{bottom:400.313333pt;}
.y1c6{bottom:403.546800pt;}
.y61{bottom:406.379200pt;}
.yb{bottom:406.719200pt;}
.yd5{bottom:408.312533pt;}
.y30{bottom:408.593200pt;}
.y1ec{bottom:408.654400pt;}
.yb9{bottom:415.640533pt;}
.y14a{bottom:417.184533pt;}
.y169{bottom:417.486800pt;}
.y8f{bottom:417.717867pt;}
.y18c{bottom:420.291467pt;}
.y1eb{bottom:421.321067pt;}
.ya{bottom:421.385867pt;}
.y1c5{bottom:423.772533pt;}
.y60{bottom:425.045867pt;}
.yd4{bottom:426.979200pt;}
.y2f{bottom:427.259867pt;}
.y103{bottom:428.825467pt;}
.y18b{bottom:432.958133pt;}
.y1ea{bottom:433.987733pt;}
.yb8{bottom:434.307200pt;}
.y149{bottom:435.851200pt;}
.y9{bottom:436.052533pt;}
.y168{bottom:436.153467pt;}
.y8e{bottom:436.384533pt;}
.y1c4{bottom:436.439200pt;}
.y121{bottom:437.877333pt;}
.y5f{bottom:443.712533pt;}
.yd3{bottom:445.645867pt;}
.y2e{bottom:445.926533pt;}
.y1e9{bottom:446.654400pt;}
.y102{bottom:447.492133pt;}
.y8{bottom:450.719200pt;}
.yb7{bottom:452.973867pt;}
.y18a{bottom:453.183867pt;}
.y148{bottom:454.517867pt;}
.y167{bottom:454.820133pt;}
.y8d{bottom:455.051200pt;}
.y1c3{bottom:456.664933pt;}
.yec{bottom:458.830667pt;}
.y1e8{bottom:459.321067pt;}
.y7a{bottom:462.379200pt;}
.y120{bottom:462.487867pt;}
.y2d{bottom:464.593200pt;}
.y7{bottom:465.385867pt;}
.y189{bottom:465.850533pt;}
.y101{bottom:466.158800pt;}
.yd2{bottom:468.092133pt;}
.y1c2{bottom:469.331600pt;}
.yb6{bottom:471.640533pt;}
.y147{bottom:473.184533pt;}
.y166{bottom:473.486800pt;}
.y5e{bottom:473.717867pt;}
.yeb{bottom:477.497333pt;}
.y1e7{bottom:479.546800pt;}
.y6{bottom:480.052533pt;}
.y2c{bottom:483.259867pt;}
.y100{bottom:484.825467pt;}
.y188{bottom:486.076267pt;}
.yd1{bottom:486.758800pt;}
.y11f{bottom:487.098400pt;}
.y1c1{bottom:489.557333pt;}
.yb5{bottom:490.307200pt;}
.y146{bottom:491.851200pt;}
.y165{bottom:492.153467pt;}
.y1e6{bottom:492.213467pt;}
.y5d{bottom:492.384533pt;}
.y5{bottom:494.719200pt;}
.yea{bottom:496.164000pt;}
.y187{bottom:498.742933pt;}
.y2b{bottom:501.926533pt;}
.y1c0{bottom:502.224000pt;}
.yff{bottom:503.492133pt;}
.yd0{bottom:505.425467pt;}
.yb4{bottom:508.973867pt;}
.y4{bottom:509.385867pt;}
.y145{bottom:510.517867pt;}
.y5c{bottom:511.051200pt;}
.y186{bottom:511.409600pt;}
.y11e{bottom:511.708933pt;}
.y1e5{bottom:512.439200pt;}
.y164{bottom:514.599600pt;}
.y79{bottom:514.830667pt;}
.y1bf{bottom:514.890667pt;}
.y2a{bottom:520.593200pt;}
.yfe{bottom:522.158800pt;}
.y3{bottom:524.052533pt;}
.y185{bottom:524.076267pt;}
.ycf{bottom:524.092133pt;}
.y1be{bottom:527.557333pt;}
.yb3{bottom:527.640533pt;}
.y144{bottom:529.184533pt;}
.y5b{bottom:529.717867pt;}
.y1e4{bottom:532.664933pt;}
.y163{bottom:533.266267pt;}
.y78{bottom:533.497333pt;}
.y11d{bottom:536.319467pt;}
.y184{bottom:536.742933pt;}
.y1bd{bottom:540.224000pt;}
.yfd{bottom:540.825467pt;}
.yce{bottom:542.758800pt;}
.y29{bottom:543.039467pt;}
.yb2{bottom:546.307200pt;}
.y5a{bottom:548.384533pt;}
.y143{bottom:551.630800pt;}
.y162{bottom:551.932933pt;}
.y77{bottom:552.164000pt;}
.y1e3{bottom:552.890667pt;}
.y183{bottom:556.968667pt;}
.yfc{bottom:559.492133pt;}
.y1bc{bottom:560.449733pt;}
.y11c{bottom:560.930000pt;}
.y28{bottom:561.706133pt;}
.y59{bottom:567.051200pt;}
.ycd{bottom:568.984533pt;}
.y182{bottom:569.635333pt;}
.y142{bottom:570.297467pt;}
.y161{bottom:570.599600pt;}
.y76{bottom:570.830667pt;}
.yb1{bottom:572.532933pt;}
.y1e2{bottom:573.116400pt;}
.yfb{bottom:578.158800pt;}
.y27{bottom:580.372800pt;}
.y1bb{bottom:580.675467pt;}
.y181{bottom:582.302000pt;}
.y11b{bottom:585.540533pt;}
.y58{bottom:585.717867pt;}
.y141{bottom:588.964133pt;}
.y160{bottom:589.266267pt;}
.y75{bottom:589.497333pt;}
.y1ba{bottom:593.342133pt;}
.yfa{bottom:596.825467pt;}
.y26{bottom:599.039467pt;}
.y180{bottom:602.527733pt;}
.y1e1{bottom:606.008800pt;}
.y140{bottom:607.630800pt;}
.y15f{bottom:607.932933pt;}
.y57{bottom:608.164000pt;}
.y11a{bottom:610.151067pt;}
.yb0{bottom:611.712533pt;}
.y1b9{bottom:613.567867pt;}
.y17f{bottom:615.194400pt;}
.yf9{bottom:615.492133pt;}
.y25{bottom:617.706133pt;}
.y1e0{bottom:618.675467pt;}
.y1b8{bottom:626.234533pt;}
.y13f{bottom:626.297467pt;}
.y56{bottom:626.830667pt;}
.yaf{bottom:630.379200pt;}
.yf8{bottom:634.158800pt;}
.y119{bottom:634.761600pt;}
.y17e{bottom:635.420133pt;}
.y24{bottom:636.372800pt;}
.y1b7{bottom:638.901200pt;}
.y13e{bottom:644.964133pt;}
.y55{bottom:645.497333pt;}
.yae{bottom:649.045867pt;}
.y1df{bottom:651.567867pt;}
.y23{bottom:655.039467pt;}
.y17d{bottom:655.645867pt;}
.y1b6{bottom:659.126933pt;}
.y118{bottom:659.372133pt;}
.y13d{bottom:663.630800pt;}
.y54{bottom:664.164000pt;}
.yad{bottom:667.712533pt;}
.y1b5{bottom:671.793600pt;}
.y22{bottom:673.706133pt;}
.y17c{bottom:675.871600pt;}
.y53{bottom:682.830667pt;}
.y117{bottom:683.816400pt;}
.y1b4{bottom:684.460267pt;}
.y13c{bottom:686.076933pt;}
.yac{bottom:686.379200pt;}
.yf7{bottom:686.610133pt;}
.y17b{bottom:688.538267pt;}
.y21{bottom:692.372667pt;}
.y17a{bottom:701.204933pt;}
.y52{bottom:701.497333pt;}
.y1b3{bottom:704.686000pt;}
.y13b{bottom:704.743600pt;}
.yab{bottom:705.045867pt;}
.y74{bottom:705.276800pt;}
.y179{bottom:713.871600pt;}
.y116{bottom:714.202000pt;}
.y1b2{bottom:717.352667pt;}
.y51{bottom:720.164000pt;}
.y13a{bottom:723.410267pt;}
.yaa{bottom:723.712533pt;}
.y73{bottom:723.943467pt;}
.y178{bottom:726.538267pt;}
.y15e{bottom:727.492000pt;}
.y1b1{bottom:737.578400pt;}
.y50{bottom:738.830667pt;}
.y177{bottom:739.204933pt;}
.y20{bottom:741.485600pt;}
.y139{bottom:742.076933pt;}
.ya9{bottom:742.379200pt;}
.y72{bottom:742.610133pt;}
.y15d{bottom:746.158667pt;}
.y1b0{bottom:750.245067pt;}
.y8c{bottom:757.497333pt;}
.y1de{bottom:757.804000pt;}
.y176{bottom:759.430667pt;}
.y138{bottom:760.743600pt;}
.y4f{bottom:761.276800pt;}
.y115{bottom:762.653200pt;}
.y1af{bottom:762.911733pt;}
.ya8{bottom:764.825333pt;}
.y1dd{bottom:770.470667pt;}
.y15c{bottom:772.384400pt;}
.y8b{bottom:776.164000pt;}
.y137{bottom:779.410267pt;}
.y4e{bottom:779.943467pt;}
.y1f{bottom:781.716667pt;}
.y1ae{bottom:783.137333pt;}
.ya7{bottom:783.492000pt;}
.y2{bottom:784.386400pt;}
.y114{bottom:787.263867pt;}
.y15b{bottom:791.051067pt;}
.y8a{bottom:794.830667pt;}
.y1ad{bottom:795.804000pt;}
.y136{bottom:798.076933pt;}
.y4d{bottom:798.610133pt;}
.ya6{bottom:802.158667pt;}
.yf6{bottom:802.389733pt;}
.y1dc{bottom:803.363067pt;}
.y1ac{bottom:808.470667pt;}
.y15a{bottom:809.717733pt;}
.y113{bottom:811.874400pt;}
.y89{bottom:813.497333pt;}
.y1e{bottom:815.050000pt;}
.y1db{bottom:816.029733pt;}
.y4c{bottom:817.276800pt;}
.yf5{bottom:821.056400pt;}
.y1{bottom:822.171200pt;}
.ya5{bottom:828.384400pt;}
.y1ab{bottom:828.696400pt;}
.y88{bottom:832.164000pt;}
.y135{bottom:835.640933pt;}
.y4b{bottom:835.943467pt;}
.y112{bottom:836.484800pt;}
.yf4{bottom:839.723067pt;}
.y1aa{bottom:841.363067pt;}
.ya4{bottom:847.051067pt;}
.y1a9{bottom:854.029733pt;}
.y4a{bottom:854.610133pt;}
.y87{bottom:858.389733pt;}
.y134{bottom:860.251467pt;}
.y111{bottom:861.095333pt;}
.y1da{bottom:861.588933pt;}
.ya3{bottom:865.717733pt;}
.y1a8{bottom:866.696400pt;}
.y49{bottom:873.276800pt;}
.y1d9{bottom:874.255600pt;}
.y86{bottom:877.056400pt;}
.ya2{bottom:884.384400pt;}
.y133{bottom:884.862000pt;}
.y110{bottom:885.706000pt;}
.y1a7{bottom:886.922267pt;}
.y48{bottom:891.943467pt;}
.y85{bottom:895.723067pt;}
.y1a6{bottom:899.588933pt;}
.ya1{bottom:903.051067pt;}
.y132{bottom:909.472533pt;}
.y131{bottom:909.979333pt;}
.y10f{bottom:910.316533pt;}
.y47{bottom:910.610133pt;}
.y1a5{bottom:912.255600pt;}
.y84{bottom:914.389733pt;}
.y1fd{bottom:919.814533pt;}
.ya0{bottom:921.717733pt;}
.y1d8{bottom:924.922267pt;}
.y46{bottom:929.276800pt;}
.y1a4{bottom:932.481200pt;}
.y83{bottom:933.056400pt;}
.y130{bottom:934.589867pt;}
.y10e{bottom:934.927067pt;}
.y9f{bottom:940.384400pt;}
.y1a3{bottom:945.147867pt;}
.y45{bottom:951.723067pt;}
.y1fc{bottom:957.814533pt;}
.y12f{bottom:959.200800pt;}
.y10d{bottom:959.538133pt;}
.y1a2{bottom:965.373600pt;}
.y44{bottom:970.389733pt;}
.y1a1{bottom:978.040267pt;}
.y43{bottom:989.056400pt;}
.y159{bottom:989.427867pt;}
.y12e{bottom:989.765200pt;}
.y1a0{bottom:990.706933pt;}
.y71{bottom:1056.467467pt;}
.ha{height:32.240000pt;}
.h4{height:34.389333pt;}
.h5{height:35.602465pt;}
.h10{height:36.441406pt;}
.h11{height:38.346667pt;}
.hb{height:38.688000pt;}
.hf{height:39.068229pt;}
.hc{height:40.000000pt;}
.he{height:40.052717pt;}
.h7{height:40.208000pt;}
.hd{height:41.080000pt;}
.h2{height:42.122667pt;}
.h12{height:46.986133pt;}
.h3{height:47.285333pt;}
.h8{height:47.466667pt;}
.h9{height:53.610667pt;}
.h6{height:68.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:55.359600pt;}
.x1{left:56.692933pt;}
.x2{left:80.799200pt;}
.x3{left:181.619200pt;}
.x4{left:231.496133pt;}
.xe{left:239.055067pt;}
.x5{left:246.614133pt;}
.x7{left:250.393733pt;}
.xd{left:264.829333pt;}
.x10{left:283.992133pt;}
.xf{left:294.766000pt;}
.xc{left:310.150933pt;}
.x9{left:344.918533pt;}
.xa{left:348.014400pt;}
.xb{left:354.134133pt;}
.x8{left:542.035067pt;}
.x11{left:559.131333pt;}
}




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