
    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_07069b82cf6d79a0bb7770b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4994b85a33bb5d1e06b7f8dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132324;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_8c09702d2ee68f38369c5fca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_46d9846e1a1af6557d0ab0be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_271117022c3f4ab1f1f61d5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.140625;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_1f83aa52ba43f67427186d3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132324;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_28813f2a7d4ecdcd594318a2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cd71d593e723394d31944df2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.140625;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_91e308d0ced52b704fb09b8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.145508;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.236064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236064,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls29{letter-spacing:-1.272000px;}
.ls26{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.876000px;}
.ls34{letter-spacing:-0.870000px;}
.ls16{letter-spacing:-0.550200px;}
.ls7{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.325200px;}
.ls15{letter-spacing:-0.291000px;}
.ls1a{letter-spacing:-0.259200px;}
.ls32{letter-spacing:-0.224400px;}
.ls14{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.187200px;}
.ls31{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.175800px;}
.ls12{letter-spacing:-0.166800px;}
.lsf{letter-spacing:-0.158400px;}
.ls9{letter-spacing:-0.150000px;}
.ls6{letter-spacing:-0.149514px;}
.ls27{letter-spacing:-0.132600px;}
.ls19{letter-spacing:-0.100800px;}
.lsd{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.057600px;}
.ls35{letter-spacing:-0.011520px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.063360px;}
.ls0{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.169370px;}
.lsb{letter-spacing:0.169800px;}
.ls17{letter-spacing:0.169920px;}
.ls8{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.219000px;}
.ls1{letter-spacing:0.221042px;}
.ls23{letter-spacing:0.221760px;}
.ls20{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.322800px;}
.ls18{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.349920px;}
.ls22{letter-spacing:0.366000px;}
.ls2b{letter-spacing:0.367200px;}
.ls33{letter-spacing:0.388080px;}
.lse{letter-spacing:0.388200px;}
.ls11{letter-spacing:0.409200px;}
.ls2f{letter-spacing:0.888000px;}
.ls2e{letter-spacing:0.941760px;}
.lsc{letter-spacing:1.062000px;}
.ls1d{letter-spacing:5.772240px;}
.ls1c{letter-spacing:6.492240px;}
.ls24{letter-spacing:9.581760px;}
.ls25{letter-spacing:11.021760px;}
.ls2d{letter-spacing:13.901760px;}
.ls28{letter-spacing:40.541760px;}
.ls21{letter-spacing:62.652240px;}
.ls30{letter-spacing:128.381760px;}
.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;}
}
.ws1{word-spacing:-43.344000px;}
.ws2{word-spacing:-34.241760px;}
.ws7{word-spacing:-21.888000px;}
.ws5{word-spacing:-21.672000px;}
.ws6{word-spacing:-21.240000px;}
.wsd{word-spacing:-20.347440px;}
.ws12{word-spacing:-20.269440px;}
.ws15{word-spacing:-20.261040px;}
.ws1e{word-spacing:-20.157240px;}
.ws1b{word-spacing:-20.108040px;}
.ws0{word-spacing:-19.938240px;}
.ws21{word-spacing:-19.926720px;}
.wsf{word-spacing:-19.880640px;}
.ws3{word-spacing:-19.873695px;}
.ws13{word-spacing:-19.837440px;}
.ws1d{word-spacing:-19.805640px;}
.ws8{word-spacing:-19.788240px;}
.wsb{word-spacing:-19.779840px;}
.wse{word-spacing:-19.771440px;}
.ws17{word-spacing:-19.762440px;}
.ws4{word-spacing:-19.724180px;}
.ws10{word-spacing:-19.722240px;}
.ws1f{word-spacing:-19.713840px;}
.ws14{word-spacing:-19.679040px;}
.ws11{word-spacing:-19.647240px;}
.ws16{word-spacing:-19.613040px;}
.ws20{word-spacing:-19.068240px;}
.wsc{word-spacing:-19.062240px;}
.ws18{word-spacing:-18.353760px;}
.ws19{word-spacing:-16.254000px;}
.wsa{word-spacing:-16.164000px;}
.ws1a{word-spacing:-16.038000px;}
.ws1c{word-spacing:-12.936960px;}
.ws9{word-spacing:0.000000px;}
._21{margin-left:-5.443200px;}
._15{margin-left:-4.007040px;}
._8{margin-left:-2.646000px;}
._1{margin-left:-1.262400px;}
._4{width:1.059600px;}
._3{width:2.666400px;}
._5{width:3.698400px;}
._7{width:4.716000px;}
._10{width:5.738400px;}
._6{width:7.020000px;}
._2{width:8.532000px;}
._11{width:9.612000px;}
._e{width:11.610000px;}
._f{width:12.622800px;}
._b{width:13.878000px;}
._c{width:15.066000px;}
._14{width:16.427520px;}
._1a{width:17.778960px;}
._12{width:19.062000px;}
._13{width:20.088000px;}
._1c{width:21.205440px;}
._9{width:22.950000px;}
._16{width:24.053280px;}
._a{width:25.152000px;}
._23{width:26.308800px;}
._19{width:27.688320px;}
._1b{width:28.880640px;}
._2a{width:29.908320px;}
._29{width:30.934080px;}
._17{width:32.722560px;}
._18{width:34.443360px;}
._28{width:35.504160px;}
._26{width:36.696960px;}
._27{width:37.812000px;}
._3f{width:39.108720px;}
._24{width:40.277760px;}
._1f{width:41.333760px;}
._20{width:42.561600px;}
._1e{width:43.824480px;}
._1d{width:44.944800px;}
._3b{width:46.235520px;}
._3c{width:47.471280px;}
._37{width:53.786880px;}
._2b{width:55.111680px;}
._25{width:56.701440px;}
._22{width:57.761280px;}
._0{width:62.586720px;}
._2c{width:64.852800px;}
._45{width:71.651520px;}
._46{width:72.657600px;}
._38{width:79.665480px;}
._3e{width:103.368960px;}
._2d{width:110.819520px;}
._30{width:125.127360px;}
._43{width:138.710400px;}
._44{width:140.050560px;}
._31{width:194.219520px;}
._33{width:227.994240px;}
._32{width:229.989120px;}
._36{width:277.416960px;}
._3d{width:328.090560px;}
._3a{width:438.660480px;}
._39{width:439.945440px;}
._2f{width:619.079040px;}
._2e{width:620.509920px;}
._40{width:745.266240px;}
._41{width:746.329920px;}
._34{width:778.055040px;}
._35{width:794.350080px;}
._d{width:1778.262000px;}
._42{width:1841.670720px;}
.fc6{color:transparent;}
.fc5{color:rgb(179,44,22);}
.fc4{color:rgb(87,95,109);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(65,71,81);}
.fs9{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.566541px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.025564px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:113.760000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:0.720000px;}
.y29{bottom:3.600000px;}
.yc2{bottom:10.800000px;}
.yc0{bottom:10.980000px;}
.yc6{bottom:13.320000px;}
.ycc{bottom:14.040000px;}
.ye4{bottom:16.380000px;}
.y36{bottom:18.720000px;}
.y41{bottom:21.240000px;}
.y28{bottom:28.260000px;}
.yd6{bottom:34.380000px;}
.yd1{bottom:34.605000px;}
.y35{bottom:36.720000px;}
.ycb{bottom:37.485000px;}
.y40{bottom:38.700000px;}
.ye3{bottom:39.780000px;}
.y34{bottom:54.720000px;}
.y2{bottom:55.980000px;}
.y45{bottom:56.160000px;}
.y3f{bottom:56.700000px;}
.yd5{bottom:57.960000px;}
.yd0{bottom:58.005000px;}
.y31{bottom:60.679267px;}
.yca{bottom:61.065000px;}
.yde{bottom:66.060000px;}
.y1{bottom:68.580000px;}
.y33{bottom:74.340000px;}
.y44{bottom:74.376000px;}
.y3e{bottom:77.040000px;}
.y30{bottom:79.912801px;}
.yd4{bottom:81.360000px;}
.ycf{bottom:81.585000px;}
.yc9{bottom:84.645000px;}
.ydd{bottom:89.640000px;}
.y3d{bottom:96.300000px;}
.y2f{bottom:98.931034px;}
.yd3{bottom:104.940000px;}
.yce{bottom:104.985000px;}
.yc8{bottom:108.045000px;}
.ydc{bottom:113.070000px;}
.y3c{bottom:115.380000px;}
.y2e{bottom:117.949267px;}
.yec{bottom:128.385000px;}
.ycd{bottom:128.565000px;}
.y163{bottom:130.536000px;}
.yc7{bottom:131.625000px;}
.y1aa{bottom:132.336000px;}
.y17d{bottom:134.136000px;}
.y3b{bottom:134.490000px;}
.ydb{bottom:136.650000px;}
.y2d{bottom:137.182801px;}
.y111{bottom:137.736000px;}
.y1c1{bottom:139.356000px;}
.y177{bottom:140.436000px;}
.y106{bottom:141.336000px;}
.yf0{bottom:141.876000px;}
.y22{bottom:143.136000px;}
.y162{bottom:146.196000px;}
.y1cb{bottom:146.556000px;}
.y138{bottom:148.356000px;}
.y2b{bottom:149.915494px;}
.y161{bottom:150.690000px;}
.yeb{bottom:151.965000px;}
.y3a{bottom:153.750000px;}
.y1a5{bottom:154.470000px;}
.yc4{bottom:155.205000px;}
.ybc{bottom:155.370000px;}
.y17c{bottom:156.270000px;}
.y110{bottom:159.690000px;}
.yda{bottom:160.230000px;}
.y1c0{bottom:161.490000px;}
.y21{bottom:161.670000px;}
.y160{bottom:162.210000px;}
.y176{bottom:162.390000px;}
.y105{bottom:163.470000px;}
.y6f{bottom:167.430000px;}
.y1ca{bottom:168.510000px;}
.y137{bottom:170.490000px;}
.y39{bottom:172.830000px;}
.yef{bottom:174.810000px;}
.yea{bottom:175.545000px;}
.y1a4{bottom:176.430000px;}
.y96{bottom:177.330000px;}
.y17b{bottom:178.410000px;}
.ye7{bottom:181.665000px;}
.y10f{bottom:181.830000px;}
.yd9{bottom:183.630000px;}
.y18c{bottom:184.530000px;}
.y184{bottom:185.250000px;}
.y147{bottom:185.430000px;}
.ybb{bottom:188.310000px;}
.y6e{bottom:189.390000px;}
.y19b{bottom:191.370000px;}
.y136{bottom:192.450000px;}
.yee{bottom:192.810000px;}
.y20{bottom:196.050000px;}
.ye9{bottom:198.945000px;}
.y175{bottom:199.290000px;}
.y95{bottom:199.470000px;}
.y104{bottom:200.190000px;}
.y17a{bottom:200.370000px;}
.y1d5{bottom:201.990000px;}
.y10e{bottom:203.790000px;}
.ye6{bottom:205.065000px;}
.y1c9{bottom:205.410000px;}
.y1bf{bottom:205.590000px;}
.y18b{bottom:206.490000px;}
.yd8{bottom:207.210000px;}
.y146{bottom:207.390000px;}
.yed{bottom:210.990000px;}
.y6d{bottom:211.530000px;}
.y1a3{bottom:213.330000px;}
.y19a{bottom:213.510000px;}
.y1f{bottom:214.050000px;}
.y135{bottom:214.410000px;}
.y94{bottom:221.430000px;}
.y1d4{bottom:221.970000px;}
.y103{bottom:222.510000px;}
.ye8{bottom:222.525000px;}
.ydf{bottom:224.310000px;}
.y1c8{bottom:227.550000px;}
.ye5{bottom:228.645000px;}
.y145{bottom:229.530000px;}
.y27{bottom:230.250000px;}
.y1e{bottom:232.230000px;}
.y6c{bottom:233.490000px;}
.y199{bottom:235.650000px;}
.y134{bottom:236.550000px;}
.y10d{bottom:239.610000px;}
.y1be{bottom:242.490000px;}
.y18a{bottom:243.390000px;}
.y93{bottom:243.570000px;}
.y168{bottom:244.290000px;}
.y102{bottom:244.470000px;}
.y1d{bottom:250.230000px;}
.y144{bottom:251.490000px;}
.ye1{bottom:252.225000px;}
.yba{bottom:254.370000px;}
.y6b{bottom:255.450000px;}
.y1d3{bottom:257.070000px;}
.y1a2{bottom:257.610000px;}
.y10c{bottom:257.790000px;}
.y133{bottom:258.510000px;}
.y26{bottom:260.130000px;}
.y1c7{bottom:264.450000px;}
.y1bd{bottom:264.630000px;}
.y92{bottom:265.530000px;}
.y101{bottom:266.430000px;}
.y1c{bottom:268.230000px;}
.y198{bottom:272.370000px;}
.y143{bottom:273.630000px;}
.ye0{bottom:275.625000px;}
.y10b{bottom:275.790000px;}
.y1d2{bottom:277.050000px;}
.y6a{bottom:277.590000px;}
.y1a1{bottom:279.570000px;}
.y15f{bottom:280.650000px;}
.y1b{bottom:286.230000px;}
.y1bc{bottom:286.590000px;}
.y91{bottom:287.670000px;}
.yb9{bottom:288.390000px;}
.y100{bottom:288.570000px;}
.y10a{bottom:293.790000px;}
.y197{bottom:294.690000px;}
.y132{bottom:295.410000px;}
.y183{bottom:295.590000px;}
.y69{bottom:299.550000px;}
.y15e{bottom:302.610000px;}
.y1a{bottom:304.230000px;}
.y25{bottom:306.390000px;}
.y1bb{bottom:308.730000px;}
.y90{bottom:309.630000px;}
.y142{bottom:310.350000px;}
.yb8{bottom:310.530000px;}
.y1d1{bottom:312.150000px;}
.y1a0{bottom:316.470000px;}
.y196{bottom:316.650000px;}
.y131{bottom:317.550000px;}
.y68{bottom:321.690000px;}
.y19{bottom:322.230000px;}
.y109{bottom:323.490000px;}
.y189{bottom:324.390000px;}
.y15d{bottom:324.570000px;}
.y8f{bottom:331.590000px;}
.yb7{bottom:332.670000px;}
.y195{bottom:338.835000px;}
.y130{bottom:339.735000px;}
.y18{bottom:340.275000px;}
.y1ba{bottom:345.675000px;}
.y1c6{bottom:345.855000px;}
.y15c{bottom:346.755000px;}
.y1d0{bottom:347.295000px;}
.y167{bottom:347.475000px;}
.y8e{bottom:353.775000px;}
.y24{bottom:354.450000px;}
.yb6{bottom:354.675000px;}
.y17{bottom:358.455000px;}
.y19f{bottom:360.795000px;}
.y12f{bottom:361.695000px;}
.y1b9{bottom:367.815000px;}
.y15b{bottom:368.715000px;}
.yff{bottom:369.435000px;}
.y166{bottom:369.615000px;}
.y194{bottom:375.555000px;}
.y174{bottom:375.735000px;}
.y16{bottom:376.455000px;}
.y141{bottom:376.635000px;}
.y67{bottom:380.775000px;}
.y1cf{bottom:382.575000px;}
.y12e{bottom:383.835000px;}
.y1b8{bottom:389.775000px;}
.y8d{bottom:390.675000px;}
.y188{bottom:390.855000px;}
.yb5{bottom:391.575000px;}
.yfe{bottom:391.755000px;}
.y15{bottom:394.455000px;}
.y19e{bottom:397.695000px;}
.y173{bottom:397.875000px;}
.y140{bottom:398.775000px;}
.y66{bottom:402.735000px;}
.y15a{bottom:405.615000px;}
.y12d{bottom:405.795000px;}
.y14{bottom:412.455000px;}
.y8c{bottom:412.815000px;}
.yb4{bottom:413.715000px;}
.y1ce{bottom:419.655000px;}
.y193{bottom:419.835000px;}
.y13f{bottom:420.735000px;}
.y65{bottom:424.695000px;}
.y1b7{bottom:426.675000px;}
.y187{bottom:427.575000px;}
.y12c{bottom:427.755000px;}
.y13{bottom:430.455000px;}
.y172{bottom:434.595000px;}
.y8b{bottom:434.775000px;}
.yb3{bottom:435.855000px;}
.y192{bottom:441.795000px;}
.y13e{bottom:442.875000px;}
.y64{bottom:446.835000px;}
.y1b6{bottom:448.995000px;}
.y159{bottom:449.895000px;}
.y1a9{bottom:456.735000px;}
.y8a{bottom:456.915000px;}
.y179{bottom:457.635000px;}
.yb2{bottom:457.815000px;}
.ye2{bottom:460.155000px;}
.y19d{bottom:463.935000px;}
.y12{bottom:464.475000px;}
.y12b{bottom:464.655000px;}
.y13d{bottom:464.835000px;}
.y63{bottom:468.795000px;}
.y1b5{bottom:470.955000px;}
.y158{bottom:471.855000px;}
.y191{bottom:478.695000px;}
.y89{bottom:478.875000px;}
.yb1{bottom:479.775000px;}
.y23{bottom:480.675000px;}
.y11{bottom:483.555000px;}
.y1cd{bottom:485.895000px;}
.y38{bottom:486.435000px;}
.y12a{bottom:486.795000px;}
.y62{bottom:490.935000px;}
.y157{bottom:493.995000px;}
.y19c{bottom:500.835000px;}
.y88{bottom:501.015000px;}
.y13c{bottom:501.735000px;}
.yb0{bottom:501.915000px;}
.y1b4{bottom:507.855000px;}
.y129{bottom:508.935000px;}
.y2a{bottom:509.371537px;}
.y61{bottom:512.895000px;}
.yd7{bottom:513.435000px;}
.y2c{bottom:514.933518px;}
.y156{bottom:515.955000px;}
.y10{bottom:518.835000px;}
.y1cc{bottom:522.795000px;}
.y87{bottom:522.975000px;}
.yfd{bottom:523.875000px;}
.y1b3{bottom:529.995000px;}
.y182{bottom:530.715000px;}
.y128{bottom:530.895000px;}
.y60{bottom:534.855000px;}
.y155{bottom:537.915000px;}
.yaf{bottom:538.815000px;}
.y86{bottom:544.935000px;}
.yfc{bottom:546.015000px;}
.y1b2{bottom:551.955000px;}
.y127{bottom:553.035000px;}
.yf{bottom:555.915000px;}
.y5f{bottom:556.995000px;}
.y171{bottom:559.875000px;}
.y154{bottom:560.055000px;}
.y165{bottom:560.775000px;}
.yae{bottom:560.955000px;}
.y1c5{bottom:566.895000px;}
.y85{bottom:567.075000px;}
.y186{bottom:567.795000px;}
.yfb{bottom:567.975000px;}
.y126{bottom:574.995000px;}
.y5e{bottom:578.955000px;}
.y190{bottom:581.835000px;}
.y153{bottom:582.015000px;}
.yad{bottom:582.915000px;}
.y1b1{bottom:588.855000px;}
.y84{bottom:589.035000px;}
.y13b{bottom:589.935000px;}
.ye{bottom:592.995000px;}
.y125{bottom:596.955000px;}
.y5d{bottom:601.095000px;}
.y152{bottom:604.185000px;}
.yfa{bottom:604.905000px;}
.yac{bottom:605.085000px;}
.y1b0{bottom:611.205000px;}
.y13a{bottom:612.105000px;}
.y124{bottom:619.125000px;}
.y5c{bottom:623.085000px;}
.y83{bottom:625.965000px;}
.y151{bottom:626.145000px;}
.yab{bottom:627.045000px;}
.yd{bottom:630.105000px;}
.y1af{bottom:633.165000px;}
.y108{bottom:633.885000px;}
.y178{bottom:634.065000px;}
.y1a8{bottom:640.905000px;}
.y123{bottom:641.085000px;}
.y5b{bottom:645.225000px;}
.y82{bottom:648.105000px;}
.y139{bottom:649.005000px;}
.yaa{bottom:649.185000px;}
.y150{bottom:663.045000px;}
.y122{bottom:663.225000px;}
.yc{bottom:667.005000px;}
.y5a{bottom:667.185000px;}
.y1ae{bottom:670.065000px;}
.y81{bottom:670.245000px;}
.y107{bottom:670.965000px;}
.ya9{bottom:671.145000px;}
.y121{bottom:685.185000px;}
.y80{bottom:692.205000px;}
.yf9{bottom:693.105000px;}
.yb{bottom:704.085000px;}
.y170{bottom:706.965000px;}
.y14f{bottom:707.145000px;}
.ya8{bottom:708.045000px;}
.y1ad{bottom:714.345000px;}
.yf8{bottom:715.245000px;}
.y120{bottom:722.085000px;}
.y7f{bottom:729.105000px;}
.y14e{bottom:729.285000px;}
.ya7{bottom:730.185000px;}
.yd2{bottom:733.965000px;}
.yf7{bottom:737.205000px;}
.y59{bottom:740.985000px;}
.ya{bottom:741.165000px;}
.y11f{bottom:744.225000px;}
.y1ac{bottom:751.065000px;}
.y14d{bottom:751.245000px;}
.ya6{bottom:752.145000px;}
.yf6{bottom:759.345000px;}
.y58{bottom:762.225000px;}
.y7e{bottom:766.185000px;}
.y11e{bottom:766.365000px;}
.y14c{bottom:773.385000px;}
.ya5{bottom:774.285000px;}
.y9{bottom:777.705000px;}
.y57{bottom:780.765000px;}
.yf5{bottom:781.305000px;}
.y1c4{bottom:788.145000px;}
.y11d{bottom:788.325000px;}
.y16f{bottom:795.345000px;}
.y164{bottom:796.065000px;}
.ya4{bottom:796.245000px;}
.y7d{bottom:803.085000px;}
.yf4{bottom:803.265000px;}
.y14b{bottom:810.105000px;}
.y11c{bottom:810.285000px;}
.y8{bottom:812.805000px;}
.y56{bottom:815.145000px;}
.y16e{bottom:817.305000px;}
.y185{bottom:818.205000px;}
.ya3{bottom:818.385000px;}
.y7c{bottom:825.405000px;}
.y181{bottom:832.245000px;}
.y11b{bottom:832.425000px;}
.y55{bottom:833.145000px;}
.y16d{bottom:839.445000px;}
.yf3{bottom:840.165000px;}
.ya2{bottom:840.345000px;}
.y1a7{bottom:847.185000px;}
.y7b{bottom:847.365000px;}
.y7{bottom:847.905000px;}
.y54{bottom:851.325000px;}
.yc3{bottom:852.225000px;}
.y11a{bottom:854.385000px;}
.ya1{bottom:862.305000px;}
.y53{bottom:869.325000px;}
.y1a6{bottom:869.505000px;}
.y16c{bottom:876.390000px;}
.y119{bottom:876.570000px;}
.y6{bottom:882.870000px;}
.y7a{bottom:884.310000px;}
.yf2{bottom:884.490000px;}
.y52{bottom:887.370000px;}
.y18f{bottom:891.510000px;}
.y32{bottom:896.010000px;}
.y118{bottom:898.530000px;}
.ya0{bottom:899.250000px;}
.y51{bottom:905.370000px;}
.y79{bottom:906.450000px;}
.y1ab{bottom:913.290000px;}
.y18e{bottom:913.470000px;}
.y1d9{bottom:914.910000px;}
.y5{bottom:917.970000px;}
.y117{bottom:920.490000px;}
.y9f{bottom:921.570000px;}
.y50{bottom:923.370000px;}
.y78{bottom:928.590000px;}
.y14a{bottom:935.430000px;}
.y18d{bottom:935.610000px;}
.y4f{bottom:941.370000px;}
.y116{bottom:942.630000px;}
.y9e{bottom:943.530000px;}
.y1d8{bottom:950.010000px;}
.y77{bottom:950.550000px;}
.y4{bottom:953.430000px;}
.y1c3{bottom:957.570000px;}
.y4e{bottom:959.370000px;}
.y115{bottom:964.590000px;}
.yf1{bottom:965.310000px;}
.y9d{bottom:965.490000px;}
.y149{bottom:972.510000px;}
.y76{bottom:972.690000px;}
.y4d{bottom:977.550000px;}
.y180{bottom:979.530000px;}
.y16b{bottom:986.730000px;}
.y9c{bottom:987.630000px;}
.y3{bottom:988.170000px;}
.y1d7{bottom:991.410000px;}
.yc5{bottom:994.110000px;}
.y1c2{bottom:994.470000px;}
.y75{bottom:994.650000px;}
.y4c{bottom:995.550000px;}
.y114{bottom:1001.490000px;}
.y148{bottom:1009.410000px;}
.y9b{bottom:1009.590000px;}
.y4b{bottom:1013.550000px;}
.y17f{bottom:1016.430000px;}
.y74{bottom:1016.610000px;}
.yc1{bottom:1020.750000px;}
.y16a{bottom:1023.450000px;}
.y4a{bottom:1031.550000px;}
.y9a{bottom:1031.730000px;}
.y113{bottom:1038.570000px;}
.y73{bottom:1038.750000px;}
.ybf{bottom:1044.870000px;}
.y49{bottom:1049.550000px;}
.y17e{bottom:1053.510000px;}
.y99{bottom:1053.690000px;}
.y169{bottom:1060.530000px;}
.y72{bottom:1060.710000px;}
.y48{bottom:1067.550000px;}
.y112{bottom:1075.470000px;}
.y98{bottom:1075.650000px;}
.y1d6{bottom:1082.850000px;}
.y47{bottom:1085.730000px;}
.ybe{bottom:1089.690000px;}
.y71{bottom:1097.610000px;}
.y97{bottom:1097.790000px;}
.y46{bottom:1119.570000px;}
.y70{bottom:1119.750000px;}
.ybd{bottom:1122.630000px;}
.y43{bottom:1179.000000px;}
.y42{bottom:1197.180000px;}
.h1a{height:23.400000px;}
.h19{height:23.580000px;}
.h1c{height:25.920000px;}
.h24{height:33.539062px;}
.h23{height:38.905313px;}
.h2{height:44.236406px;}
.h3{height:49.148438px;}
.h17{height:50.308594px;}
.h18{height:50.572266px;}
.h9{height:52.048828px;}
.h21{height:52.380000px;}
.h26{height:54.390938px;}
.he{height:55.494610px;}
.h6{height:55.674844px;}
.h8{height:55.966641px;}
.h7{height:60.288750px;}
.h15{height:61.711875px;}
.h11{height:61.834488px;}
.h4{height:62.035312px;}
.h10{height:63.639874px;}
.h5{height:63.846562px;}
.h13{height:65.531250px;}
.h25{height:66.265313px;}
.hc{height:67.429688px;}
.h16{height:74.004654px;}
.h12{height:91.440000px;}
.h1e{height:117.540000px;}
.hb{height:131.062500px;}
.h1d{height:141.156000px;}
.hf{height:152.609400px;}
.hd{height:163.910043px;}
.h1b{height:167.790000px;}
.h14{height:188.310000px;}
.h1f{height:219.810000px;}
.h22{height:235.110000px;}
.h20{height:288.210000px;}
.ha{height:388.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:96.660000px;}
.wb{width:110.556000px;}
.w8{width:113.796000px;}
.w9{width:138.456000px;}
.wa{width:174.060000px;}
.wc{width:252.975000px;}
.w5{width:308.010000px;}
.w6{width:372.135000px;}
.w4{width:419.625000px;}
.wd{width:427.755000px;}
.w3{width:651.525000px;}
.we{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x5{left:10.800000px;}
.x4{left:127.655987px;}
.x16{left:132.335987px;}
.xb{left:180.749987px;}
.xd{left:225.750000px;}
.xe{left:340.275000px;}
.x15{left:343.694987px;}
.x7{left:348.525000px;}
.x9{left:355.395000px;}
.xf{left:479.445000px;}
.x8{left:505.905000px;}
.x6{left:640.734000px;}
.x13{left:643.244973px;}
.x14{left:648.644987px;}
.x10{left:654.225000px;}
.x12{left:660.029987px;}
.x11{left:729.689987px;}
.xa{left:737.609987px;}
.x1{left:745.889987px;}
.x2{left:765.689987px;}
.x3{left:768.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls29{letter-spacing:-1.130667pt;}
.ls26{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.778667pt;}
.ls34{letter-spacing:-0.773333pt;}
.ls16{letter-spacing:-0.489067pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.289067pt;}
.ls15{letter-spacing:-0.258667pt;}
.ls1a{letter-spacing:-0.230400pt;}
.ls32{letter-spacing:-0.199467pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.166400pt;}
.ls31{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.156267pt;}
.ls12{letter-spacing:-0.148267pt;}
.lsf{letter-spacing:-0.140800pt;}
.ls9{letter-spacing:-0.133333pt;}
.ls6{letter-spacing:-0.132902pt;}
.ls27{letter-spacing:-0.117867pt;}
.ls19{letter-spacing:-0.089600pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.051200pt;}
.ls35{letter-spacing:-0.010240pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.056320pt;}
.ls0{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.150551pt;}
.lsb{letter-spacing:0.150933pt;}
.ls17{letter-spacing:0.151040pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.194667pt;}
.ls1{letter-spacing:0.196482pt;}
.ls23{letter-spacing:0.197120pt;}
.ls20{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.286933pt;}
.ls18{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.311040pt;}
.ls22{letter-spacing:0.325333pt;}
.ls2b{letter-spacing:0.326400pt;}
.ls33{letter-spacing:0.344960pt;}
.lse{letter-spacing:0.345067pt;}
.ls11{letter-spacing:0.363733pt;}
.ls2f{letter-spacing:0.789333pt;}
.ls2e{letter-spacing:0.837120pt;}
.lsc{letter-spacing:0.944000pt;}
.ls1d{letter-spacing:5.130880pt;}
.ls1c{letter-spacing:5.770880pt;}
.ls24{letter-spacing:8.517120pt;}
.ls25{letter-spacing:9.797120pt;}
.ls2d{letter-spacing:12.357120pt;}
.ls28{letter-spacing:36.037120pt;}
.ls21{letter-spacing:55.690880pt;}
.ls30{letter-spacing:114.117120pt;}
.ws1{word-spacing:-38.528000pt;}
.ws2{word-spacing:-30.437120pt;}
.ws7{word-spacing:-19.456000pt;}
.ws5{word-spacing:-19.264000pt;}
.ws6{word-spacing:-18.880000pt;}
.wsd{word-spacing:-18.086613pt;}
.ws12{word-spacing:-18.017280pt;}
.ws15{word-spacing:-18.009813pt;}
.ws1e{word-spacing:-17.917547pt;}
.ws1b{word-spacing:-17.873813pt;}
.ws0{word-spacing:-17.722880pt;}
.ws21{word-spacing:-17.712640pt;}
.wsf{word-spacing:-17.671680pt;}
.ws3{word-spacing:-17.665506pt;}
.ws13{word-spacing:-17.633280pt;}
.ws1d{word-spacing:-17.605013pt;}
.ws8{word-spacing:-17.589547pt;}
.wsb{word-spacing:-17.582080pt;}
.wse{word-spacing:-17.574613pt;}
.ws17{word-spacing:-17.566613pt;}
.ws4{word-spacing:-17.532605pt;}
.ws10{word-spacing:-17.530880pt;}
.ws1f{word-spacing:-17.523413pt;}
.ws14{word-spacing:-17.492480pt;}
.ws11{word-spacing:-17.464213pt;}
.ws16{word-spacing:-17.433813pt;}
.ws20{word-spacing:-16.949547pt;}
.wsc{word-spacing:-16.944213pt;}
.ws18{word-spacing:-16.314453pt;}
.ws19{word-spacing:-14.448000pt;}
.wsa{word-spacing:-14.368000pt;}
.ws1a{word-spacing:-14.256000pt;}
.ws1c{word-spacing:-11.499520pt;}
.ws9{word-spacing:0.000000pt;}
._21{margin-left:-4.838400pt;}
._15{margin-left:-3.561813pt;}
._8{margin-left:-2.352000pt;}
._1{margin-left:-1.122133pt;}
._4{width:0.941867pt;}
._3{width:2.370133pt;}
._5{width:3.287467pt;}
._7{width:4.192000pt;}
._10{width:5.100800pt;}
._6{width:6.240000pt;}
._2{width:7.584000pt;}
._11{width:8.544000pt;}
._e{width:10.320000pt;}
._f{width:11.220267pt;}
._b{width:12.336000pt;}
._c{width:13.392000pt;}
._14{width:14.602240pt;}
._1a{width:15.803520pt;}
._12{width:16.944000pt;}
._13{width:17.856000pt;}
._1c{width:18.849280pt;}
._9{width:20.400000pt;}
._16{width:21.380693pt;}
._a{width:22.357333pt;}
._23{width:23.385600pt;}
._19{width:24.611840pt;}
._1b{width:25.671680pt;}
._2a{width:26.585173pt;}
._29{width:27.496960pt;}
._17{width:29.086720pt;}
._18{width:30.616320pt;}
._28{width:31.559253pt;}
._26{width:32.619520pt;}
._27{width:33.610667pt;}
._3f{width:34.763307pt;}
._24{width:35.802453pt;}
._1f{width:36.741120pt;}
._20{width:37.832533pt;}
._1e{width:38.955093pt;}
._1d{width:39.950933pt;}
._3b{width:41.098240pt;}
._3c{width:42.196693pt;}
._37{width:47.810560pt;}
._2b{width:48.988160pt;}
._25{width:50.401280pt;}
._22{width:51.343360pt;}
._0{width:55.632640pt;}
._2c{width:57.646933pt;}
._45{width:63.690240pt;}
._46{width:64.584533pt;}
._38{width:70.813760pt;}
._3e{width:91.883520pt;}
._2d{width:98.506240pt;}
._30{width:111.224320pt;}
._43{width:123.298133pt;}
._44{width:124.489387pt;}
._31{width:172.639573pt;}
._33{width:202.661547pt;}
._32{width:204.434773pt;}
._36{width:246.592853pt;}
._3d{width:291.636053pt;}
._3a{width:389.920427pt;}
._39{width:391.062613pt;}
._2f{width:550.292480pt;}
._2e{width:551.564373pt;}
._40{width:662.458880pt;}
._41{width:663.404373pt;}
._34{width:691.604480pt;}
._35{width:706.088960pt;}
._d{width:1580.677333pt;}
._42{width:1637.040640pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:52.948037pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.689390pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:101.120000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:0.640000pt;}
.y29{bottom:3.200000pt;}
.yc2{bottom:9.600000pt;}
.yc0{bottom:9.760000pt;}
.yc6{bottom:11.840000pt;}
.ycc{bottom:12.480000pt;}
.ye4{bottom:14.560000pt;}
.y36{bottom:16.640000pt;}
.y41{bottom:18.880000pt;}
.y28{bottom:25.120000pt;}
.yd6{bottom:30.560000pt;}
.yd1{bottom:30.760000pt;}
.y35{bottom:32.640000pt;}
.ycb{bottom:33.320000pt;}
.y40{bottom:34.400000pt;}
.ye3{bottom:35.360000pt;}
.y34{bottom:48.640000pt;}
.y2{bottom:49.760000pt;}
.y45{bottom:49.920000pt;}
.y3f{bottom:50.400000pt;}
.yd5{bottom:51.520000pt;}
.yd0{bottom:51.560000pt;}
.y31{bottom:53.937126pt;}
.yca{bottom:54.280000pt;}
.yde{bottom:58.720000pt;}
.y1{bottom:60.960000pt;}
.y33{bottom:66.080000pt;}
.y44{bottom:66.112000pt;}
.y3e{bottom:68.480000pt;}
.y30{bottom:71.033601pt;}
.yd4{bottom:72.320000pt;}
.ycf{bottom:72.520000pt;}
.yc9{bottom:75.240000pt;}
.ydd{bottom:79.680000pt;}
.y3d{bottom:85.600000pt;}
.y2f{bottom:87.938697pt;}
.yd3{bottom:93.280000pt;}
.yce{bottom:93.320000pt;}
.yc8{bottom:96.040000pt;}
.ydc{bottom:100.506667pt;}
.y3c{bottom:102.560000pt;}
.y2e{bottom:104.843793pt;}
.yec{bottom:114.120000pt;}
.ycd{bottom:114.280000pt;}
.y163{bottom:116.032000pt;}
.yc7{bottom:117.000000pt;}
.y1aa{bottom:117.632000pt;}
.y17d{bottom:119.232000pt;}
.y3b{bottom:119.546667pt;}
.ydb{bottom:121.466667pt;}
.y2d{bottom:121.940267pt;}
.y111{bottom:122.432000pt;}
.y1c1{bottom:123.872000pt;}
.y177{bottom:124.832000pt;}
.y106{bottom:125.632000pt;}
.yf0{bottom:126.112000pt;}
.y22{bottom:127.232000pt;}
.y162{bottom:129.952000pt;}
.y1cb{bottom:130.272000pt;}
.y138{bottom:131.872000pt;}
.y2b{bottom:133.258217pt;}
.y161{bottom:133.946667pt;}
.yeb{bottom:135.080000pt;}
.y3a{bottom:136.666667pt;}
.y1a5{bottom:137.306667pt;}
.yc4{bottom:137.960000pt;}
.ybc{bottom:138.106667pt;}
.y17c{bottom:138.906667pt;}
.y110{bottom:141.946667pt;}
.yda{bottom:142.426667pt;}
.y1c0{bottom:143.546667pt;}
.y21{bottom:143.706667pt;}
.y160{bottom:144.186667pt;}
.y176{bottom:144.346667pt;}
.y105{bottom:145.306667pt;}
.y6f{bottom:148.826667pt;}
.y1ca{bottom:149.786667pt;}
.y137{bottom:151.546667pt;}
.y39{bottom:153.626667pt;}
.yef{bottom:155.386667pt;}
.yea{bottom:156.040000pt;}
.y1a4{bottom:156.826667pt;}
.y96{bottom:157.626667pt;}
.y17b{bottom:158.586667pt;}
.ye7{bottom:161.480000pt;}
.y10f{bottom:161.626667pt;}
.yd9{bottom:163.226667pt;}
.y18c{bottom:164.026667pt;}
.y184{bottom:164.666667pt;}
.y147{bottom:164.826667pt;}
.ybb{bottom:167.386667pt;}
.y6e{bottom:168.346667pt;}
.y19b{bottom:170.106667pt;}
.y136{bottom:171.066667pt;}
.yee{bottom:171.386667pt;}
.y20{bottom:174.266667pt;}
.ye9{bottom:176.840000pt;}
.y175{bottom:177.146667pt;}
.y95{bottom:177.306667pt;}
.y104{bottom:177.946667pt;}
.y17a{bottom:178.106667pt;}
.y1d5{bottom:179.546667pt;}
.y10e{bottom:181.146667pt;}
.ye6{bottom:182.280000pt;}
.y1c9{bottom:182.586667pt;}
.y1bf{bottom:182.746667pt;}
.y18b{bottom:183.546667pt;}
.yd8{bottom:184.186667pt;}
.y146{bottom:184.346667pt;}
.yed{bottom:187.546667pt;}
.y6d{bottom:188.026667pt;}
.y1a3{bottom:189.626667pt;}
.y19a{bottom:189.786667pt;}
.y1f{bottom:190.266667pt;}
.y135{bottom:190.586667pt;}
.y94{bottom:196.826667pt;}
.y1d4{bottom:197.306667pt;}
.y103{bottom:197.786667pt;}
.ye8{bottom:197.800000pt;}
.ydf{bottom:199.386667pt;}
.y1c8{bottom:202.266667pt;}
.ye5{bottom:203.240000pt;}
.y145{bottom:204.026667pt;}
.y27{bottom:204.666667pt;}
.y1e{bottom:206.426667pt;}
.y6c{bottom:207.546667pt;}
.y199{bottom:209.466667pt;}
.y134{bottom:210.266667pt;}
.y10d{bottom:212.986667pt;}
.y1be{bottom:215.546667pt;}
.y18a{bottom:216.346667pt;}
.y93{bottom:216.506667pt;}
.y168{bottom:217.146667pt;}
.y102{bottom:217.306667pt;}
.y1d{bottom:222.426667pt;}
.y144{bottom:223.546667pt;}
.ye1{bottom:224.200000pt;}
.yba{bottom:226.106667pt;}
.y6b{bottom:227.066667pt;}
.y1d3{bottom:228.506667pt;}
.y1a2{bottom:228.986667pt;}
.y10c{bottom:229.146667pt;}
.y133{bottom:229.786667pt;}
.y26{bottom:231.226667pt;}
.y1c7{bottom:235.066667pt;}
.y1bd{bottom:235.226667pt;}
.y92{bottom:236.026667pt;}
.y101{bottom:236.826667pt;}
.y1c{bottom:238.426667pt;}
.y198{bottom:242.106667pt;}
.y143{bottom:243.226667pt;}
.ye0{bottom:245.000000pt;}
.y10b{bottom:245.146667pt;}
.y1d2{bottom:246.266667pt;}
.y6a{bottom:246.746667pt;}
.y1a1{bottom:248.506667pt;}
.y15f{bottom:249.466667pt;}
.y1b{bottom:254.426667pt;}
.y1bc{bottom:254.746667pt;}
.y91{bottom:255.706667pt;}
.yb9{bottom:256.346667pt;}
.y100{bottom:256.506667pt;}
.y10a{bottom:261.146667pt;}
.y197{bottom:261.946667pt;}
.y132{bottom:262.586667pt;}
.y183{bottom:262.746667pt;}
.y69{bottom:266.266667pt;}
.y15e{bottom:268.986667pt;}
.y1a{bottom:270.426667pt;}
.y25{bottom:272.346667pt;}
.y1bb{bottom:274.426667pt;}
.y90{bottom:275.226667pt;}
.y142{bottom:275.866667pt;}
.yb8{bottom:276.026667pt;}
.y1d1{bottom:277.466667pt;}
.y1a0{bottom:281.306667pt;}
.y196{bottom:281.466667pt;}
.y131{bottom:282.266667pt;}
.y68{bottom:285.946667pt;}
.y19{bottom:286.426667pt;}
.y109{bottom:287.546667pt;}
.y189{bottom:288.346667pt;}
.y15d{bottom:288.506667pt;}
.y8f{bottom:294.746667pt;}
.yb7{bottom:295.706667pt;}
.y195{bottom:301.186667pt;}
.y130{bottom:301.986667pt;}
.y18{bottom:302.466667pt;}
.y1ba{bottom:307.266667pt;}
.y1c6{bottom:307.426667pt;}
.y15c{bottom:308.226667pt;}
.y1d0{bottom:308.706667pt;}
.y167{bottom:308.866667pt;}
.y8e{bottom:314.466667pt;}
.y24{bottom:315.066667pt;}
.yb6{bottom:315.266667pt;}
.y17{bottom:318.626667pt;}
.y19f{bottom:320.706667pt;}
.y12f{bottom:321.506667pt;}
.y1b9{bottom:326.946667pt;}
.y15b{bottom:327.746667pt;}
.yff{bottom:328.386667pt;}
.y166{bottom:328.546667pt;}
.y194{bottom:333.826667pt;}
.y174{bottom:333.986667pt;}
.y16{bottom:334.626667pt;}
.y141{bottom:334.786667pt;}
.y67{bottom:338.466667pt;}
.y1cf{bottom:340.066667pt;}
.y12e{bottom:341.186667pt;}
.y1b8{bottom:346.466667pt;}
.y8d{bottom:347.266667pt;}
.y188{bottom:347.426667pt;}
.yb5{bottom:348.066667pt;}
.yfe{bottom:348.226667pt;}
.y15{bottom:350.626667pt;}
.y19e{bottom:353.506667pt;}
.y173{bottom:353.666667pt;}
.y140{bottom:354.466667pt;}
.y66{bottom:357.986667pt;}
.y15a{bottom:360.546667pt;}
.y12d{bottom:360.706667pt;}
.y14{bottom:366.626667pt;}
.y8c{bottom:366.946667pt;}
.yb4{bottom:367.746667pt;}
.y1ce{bottom:373.026667pt;}
.y193{bottom:373.186667pt;}
.y13f{bottom:373.986667pt;}
.y65{bottom:377.506667pt;}
.y1b7{bottom:379.266667pt;}
.y187{bottom:380.066667pt;}
.y12c{bottom:380.226667pt;}
.y13{bottom:382.626667pt;}
.y172{bottom:386.306667pt;}
.y8b{bottom:386.466667pt;}
.yb3{bottom:387.426667pt;}
.y192{bottom:392.706667pt;}
.y13e{bottom:393.666667pt;}
.y64{bottom:397.186667pt;}
.y1b6{bottom:399.106667pt;}
.y159{bottom:399.906667pt;}
.y1a9{bottom:405.986667pt;}
.y8a{bottom:406.146667pt;}
.y179{bottom:406.786667pt;}
.yb2{bottom:406.946667pt;}
.ye2{bottom:409.026667pt;}
.y19d{bottom:412.386667pt;}
.y12{bottom:412.866667pt;}
.y12b{bottom:413.026667pt;}
.y13d{bottom:413.186667pt;}
.y63{bottom:416.706667pt;}
.y1b5{bottom:418.626667pt;}
.y158{bottom:419.426667pt;}
.y191{bottom:425.506667pt;}
.y89{bottom:425.666667pt;}
.yb1{bottom:426.466667pt;}
.y23{bottom:427.266667pt;}
.y11{bottom:429.826667pt;}
.y1cd{bottom:431.906667pt;}
.y38{bottom:432.386667pt;}
.y12a{bottom:432.706667pt;}
.y62{bottom:436.386667pt;}
.y157{bottom:439.106667pt;}
.y19c{bottom:445.186667pt;}
.y88{bottom:445.346667pt;}
.y13c{bottom:445.986667pt;}
.yb0{bottom:446.146667pt;}
.y1b4{bottom:451.426667pt;}
.y129{bottom:452.386667pt;}
.y2a{bottom:452.774700pt;}
.y61{bottom:455.906667pt;}
.yd7{bottom:456.386667pt;}
.y2c{bottom:457.718683pt;}
.y156{bottom:458.626667pt;}
.y10{bottom:461.186667pt;}
.y1cc{bottom:464.706667pt;}
.y87{bottom:464.866667pt;}
.yfd{bottom:465.666667pt;}
.y1b3{bottom:471.106667pt;}
.y182{bottom:471.746667pt;}
.y128{bottom:471.906667pt;}
.y60{bottom:475.426667pt;}
.y155{bottom:478.146667pt;}
.yaf{bottom:478.946667pt;}
.y86{bottom:484.386667pt;}
.yfc{bottom:485.346667pt;}
.y1b2{bottom:490.626667pt;}
.y127{bottom:491.586667pt;}
.yf{bottom:494.146667pt;}
.y5f{bottom:495.106667pt;}
.y171{bottom:497.666667pt;}
.y154{bottom:497.826667pt;}
.y165{bottom:498.466667pt;}
.yae{bottom:498.626667pt;}
.y1c5{bottom:503.906667pt;}
.y85{bottom:504.066667pt;}
.y186{bottom:504.706667pt;}
.yfb{bottom:504.866667pt;}
.y126{bottom:511.106667pt;}
.y5e{bottom:514.626667pt;}
.y190{bottom:517.186667pt;}
.y153{bottom:517.346667pt;}
.yad{bottom:518.146667pt;}
.y1b1{bottom:523.426667pt;}
.y84{bottom:523.586667pt;}
.y13b{bottom:524.386667pt;}
.ye{bottom:527.106667pt;}
.y125{bottom:530.626667pt;}
.y5d{bottom:534.306667pt;}
.y152{bottom:537.053333pt;}
.yfa{bottom:537.693333pt;}
.yac{bottom:537.853333pt;}
.y1b0{bottom:543.293333pt;}
.y13a{bottom:544.093333pt;}
.y124{bottom:550.333333pt;}
.y5c{bottom:553.853333pt;}
.y83{bottom:556.413333pt;}
.y151{bottom:556.573333pt;}
.yab{bottom:557.373333pt;}
.yd{bottom:560.093333pt;}
.y1af{bottom:562.813333pt;}
.y108{bottom:563.453333pt;}
.y178{bottom:563.613333pt;}
.y1a8{bottom:569.693333pt;}
.y123{bottom:569.853333pt;}
.y5b{bottom:573.533333pt;}
.y82{bottom:576.093333pt;}
.y139{bottom:576.893333pt;}
.yaa{bottom:577.053333pt;}
.y150{bottom:589.373333pt;}
.y122{bottom:589.533333pt;}
.yc{bottom:592.893333pt;}
.y5a{bottom:593.053333pt;}
.y1ae{bottom:595.613333pt;}
.y81{bottom:595.773333pt;}
.y107{bottom:596.413333pt;}
.ya9{bottom:596.573333pt;}
.y121{bottom:609.053333pt;}
.y80{bottom:615.293333pt;}
.yf9{bottom:616.093333pt;}
.yb{bottom:625.853333pt;}
.y170{bottom:628.413333pt;}
.y14f{bottom:628.573333pt;}
.ya8{bottom:629.373333pt;}
.y1ad{bottom:634.973333pt;}
.yf8{bottom:635.773333pt;}
.y120{bottom:641.853333pt;}
.y7f{bottom:648.093333pt;}
.y14e{bottom:648.253333pt;}
.ya7{bottom:649.053333pt;}
.yd2{bottom:652.413333pt;}
.yf7{bottom:655.293333pt;}
.y59{bottom:658.653333pt;}
.ya{bottom:658.813333pt;}
.y11f{bottom:661.533333pt;}
.y1ac{bottom:667.613333pt;}
.y14d{bottom:667.773333pt;}
.ya6{bottom:668.573333pt;}
.yf6{bottom:674.973333pt;}
.y58{bottom:677.533333pt;}
.y7e{bottom:681.053333pt;}
.y11e{bottom:681.213333pt;}
.y14c{bottom:687.453333pt;}
.ya5{bottom:688.253333pt;}
.y9{bottom:691.293333pt;}
.y57{bottom:694.013333pt;}
.yf5{bottom:694.493333pt;}
.y1c4{bottom:700.573333pt;}
.y11d{bottom:700.733333pt;}
.y16f{bottom:706.973333pt;}
.y164{bottom:707.613333pt;}
.ya4{bottom:707.773333pt;}
.y7d{bottom:713.853333pt;}
.yf4{bottom:714.013333pt;}
.y14b{bottom:720.093333pt;}
.y11c{bottom:720.253333pt;}
.y8{bottom:722.493333pt;}
.y56{bottom:724.573333pt;}
.y16e{bottom:726.493333pt;}
.y185{bottom:727.293333pt;}
.ya3{bottom:727.453333pt;}
.y7c{bottom:733.693333pt;}
.y181{bottom:739.773333pt;}
.y11b{bottom:739.933333pt;}
.y55{bottom:740.573333pt;}
.y16d{bottom:746.173333pt;}
.yf3{bottom:746.813333pt;}
.ya2{bottom:746.973333pt;}
.y1a7{bottom:753.053333pt;}
.y7b{bottom:753.213333pt;}
.y7{bottom:753.693333pt;}
.y54{bottom:756.733333pt;}
.yc3{bottom:757.533333pt;}
.y11a{bottom:759.453333pt;}
.ya1{bottom:766.493333pt;}
.y53{bottom:772.733333pt;}
.y1a6{bottom:772.893333pt;}
.y16c{bottom:779.013333pt;}
.y119{bottom:779.173333pt;}
.y6{bottom:784.773333pt;}
.y7a{bottom:786.053333pt;}
.yf2{bottom:786.213333pt;}
.y52{bottom:788.773333pt;}
.y18f{bottom:792.453333pt;}
.y32{bottom:796.453333pt;}
.y118{bottom:798.693333pt;}
.ya0{bottom:799.333333pt;}
.y51{bottom:804.773333pt;}
.y79{bottom:805.733333pt;}
.y1ab{bottom:811.813333pt;}
.y18e{bottom:811.973333pt;}
.y1d9{bottom:813.253333pt;}
.y5{bottom:815.973333pt;}
.y117{bottom:818.213333pt;}
.y9f{bottom:819.173333pt;}
.y50{bottom:820.773333pt;}
.y78{bottom:825.413333pt;}
.y14a{bottom:831.493333pt;}
.y18d{bottom:831.653333pt;}
.y4f{bottom:836.773333pt;}
.y116{bottom:837.893333pt;}
.y9e{bottom:838.693333pt;}
.y1d8{bottom:844.453333pt;}
.y77{bottom:844.933333pt;}
.y4{bottom:847.493333pt;}
.y1c3{bottom:851.173333pt;}
.y4e{bottom:852.773333pt;}
.y115{bottom:857.413333pt;}
.yf1{bottom:858.053333pt;}
.y9d{bottom:858.213333pt;}
.y149{bottom:864.453333pt;}
.y76{bottom:864.613333pt;}
.y4d{bottom:868.933333pt;}
.y180{bottom:870.693333pt;}
.y16b{bottom:877.093333pt;}
.y9c{bottom:877.893333pt;}
.y3{bottom:878.373333pt;}
.y1d7{bottom:881.253333pt;}
.yc5{bottom:883.653333pt;}
.y1c2{bottom:883.973333pt;}
.y75{bottom:884.133333pt;}
.y4c{bottom:884.933333pt;}
.y114{bottom:890.213333pt;}
.y148{bottom:897.253333pt;}
.y9b{bottom:897.413333pt;}
.y4b{bottom:900.933333pt;}
.y17f{bottom:903.493333pt;}
.y74{bottom:903.653333pt;}
.yc1{bottom:907.333333pt;}
.y16a{bottom:909.733333pt;}
.y4a{bottom:916.933333pt;}
.y9a{bottom:917.093333pt;}
.y113{bottom:923.173333pt;}
.y73{bottom:923.333333pt;}
.ybf{bottom:928.773333pt;}
.y49{bottom:932.933333pt;}
.y17e{bottom:936.453333pt;}
.y99{bottom:936.613333pt;}
.y169{bottom:942.693333pt;}
.y72{bottom:942.853333pt;}
.y48{bottom:948.933333pt;}
.y112{bottom:955.973333pt;}
.y98{bottom:956.133333pt;}
.y1d6{bottom:962.533333pt;}
.y47{bottom:965.093333pt;}
.ybe{bottom:968.613333pt;}
.y71{bottom:975.653333pt;}
.y97{bottom:975.813333pt;}
.y46{bottom:995.173333pt;}
.y70{bottom:995.333333pt;}
.ybd{bottom:997.893333pt;}
.y43{bottom:1048.000000pt;}
.y42{bottom:1064.160000pt;}
.h1a{height:20.800000pt;}
.h19{height:20.960000pt;}
.h1c{height:23.040000pt;}
.h24{height:29.812500pt;}
.h23{height:34.582500pt;}
.h2{height:39.321250pt;}
.h3{height:43.687500pt;}
.h17{height:44.718750pt;}
.h18{height:44.953125pt;}
.h9{height:46.265625pt;}
.h21{height:46.560000pt;}
.h26{height:48.347500pt;}
.he{height:49.328542pt;}
.h6{height:49.488750pt;}
.h8{height:49.748125pt;}
.h7{height:53.590000pt;}
.h15{height:54.855000pt;}
.h11{height:54.963989pt;}
.h4{height:55.142500pt;}
.h10{height:56.568777pt;}
.h5{height:56.752500pt;}
.h13{height:58.250000pt;}
.h25{height:58.902500pt;}
.hc{height:59.937500pt;}
.h16{height:65.781915pt;}
.h12{height:81.280000pt;}
.h1e{height:104.480000pt;}
.hb{height:116.500000pt;}
.h1d{height:125.472000pt;}
.hf{height:135.652800pt;}
.hd{height:145.697816pt;}
.h1b{height:149.146667pt;}
.h14{height:167.386667pt;}
.h1f{height:195.386667pt;}
.h22{height:208.986667pt;}
.h20{height:256.186667pt;}
.ha{height:345.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:85.920000pt;}
.wb{width:98.272000pt;}
.w8{width:101.152000pt;}
.w9{width:123.072000pt;}
.wa{width:154.720000pt;}
.wc{width:224.866667pt;}
.w5{width:273.786667pt;}
.w6{width:330.786667pt;}
.w4{width:373.000000pt;}
.wd{width:380.226667pt;}
.w3{width:579.133333pt;}
.we{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x5{left:9.600000pt;}
.x4{left:113.471988pt;}
.x16{left:117.631988pt;}
.xb{left:160.666655pt;}
.xd{left:200.666667pt;}
.xe{left:302.466667pt;}
.x15{left:305.506655pt;}
.x7{left:309.800000pt;}
.x9{left:315.906667pt;}
.xf{left:426.173333pt;}
.x8{left:449.693333pt;}
.x6{left:569.541333pt;}
.x13{left:571.773310pt;}
.x14{left:576.573322pt;}
.x10{left:581.533333pt;}
.x12{left:586.693322pt;}
.x11{left:648.613322pt;}
.xa{left:655.653322pt;}
.x1{left:663.013322pt;}
.x2{left:680.613322pt;}
.x3{left:683.493322pt;}
}




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