
    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_30fdfdb2f81fcbbbed3fddd5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_3a1c2f63fb4ab203641c00e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_349f7476b4b2864243ebc8c5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_5b8f9bea69f94faaf3078921.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752441;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_097e0a155127b7c4ab925f2d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_1ea229e429270f75f531dfd2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_5b48886c3a657a8c1e34319f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133789;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_99fe7843986eea060cf04f80.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052246;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_13981640bb504ceaf10340cb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_64a9676697db74945c1845e8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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_729d798a0f9626506892d91b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_64d063e7408d40acbf8aabef.woff')format("woff");}.ffc{font-family:ffc;line-height:0.734863;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_ce3d4ee41b3eaa48f2b6e211.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962891;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_17f0f7bc8ec9613d12384e90.woff')format("woff");}.ffe{font-family:ffe;line-height:0.962891;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_6a907e81cb38ee8e06528cb7.woff')format("woff");}.fff{font-family:fff;line-height:0.986816;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_22d7ad79c8fc96491aa1d17e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.692871;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_a400b52a8912c01336784898.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:ff12;src:url('chunks/assets/font_3ab8ea7f6a60116db3935ce4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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:ff13;src:url('chunks/assets/font_ca771c12722b03bce626e77c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_fb0878c7167451c5d163bd0b.woff')format("woff");}.ff14{font-family:ff14;line-height:0.986816;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:ff15;src:url('chunks/assets/font_d3e5ae5b94be9a44da8b8315.woff')format("woff");}.ff15{font-family:ff15;line-height:0.975098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:45.000000px;}
.ls3{letter-spacing:-1.650000px;}
.ls1{letter-spacing:-0.528000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.264000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2c{word-spacing:-18.348000px;}
.ws3{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.150000px;}
.ws2b{word-spacing:-18.084000px;}
.ws35{word-spacing:-16.500000px;}
.ws0{word-spacing:-13.248000px;}
.ws16{word-spacing:-8.250000px;}
.wsd{word-spacing:-5.016000px;}
.ws1a{word-spacing:-4.092000px;}
.ws1d{word-spacing:-3.960000px;}
.ws13{word-spacing:-3.630000px;}
.ws11{word-spacing:-3.432000px;}
.ws23{word-spacing:-3.234000px;}
.ws12{word-spacing:-3.102000px;}
.ws19{word-spacing:-2.772000px;}
.wsb{word-spacing:-2.574000px;}
.ws34{word-spacing:-1.848000px;}
.ws2{word-spacing:-1.814400px;}
.ws37{word-spacing:-1.518000px;}
.ws29{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.254000px;}
.ws31{word-spacing:-1.122000px;}
.ws8{word-spacing:-0.462000px;}
.ws21{word-spacing:-0.198000px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.528000px;}
.ws9{word-spacing:1.320000px;}
.wsa{word-spacing:1.452000px;}
.ws2e{word-spacing:1.650000px;}
.ws36{word-spacing:2.046000px;}
.ws27{word-spacing:2.574000px;}
.ws2f{word-spacing:2.640000px;}
.ws18{word-spacing:2.706000px;}
.ws1f{word-spacing:3.366000px;}
.ws30{word-spacing:4.686000px;}
.ws14{word-spacing:5.214000px;}
.ws1b{word-spacing:6.138000px;}
.ws7{word-spacing:7.260000px;}
.ws4{word-spacing:8.052000px;}
.ws1e{word-spacing:8.184000px;}
.ws1c{word-spacing:8.844000px;}
.ws5{word-spacing:9.174000px;}
.ws38{word-spacing:9.438000px;}
.ws6{word-spacing:10.098000px;}
.ws28{word-spacing:10.494000px;}
.ws20{word-spacing:11.418000px;}
.ws2a{word-spacing:11.682000px;}
.ws32{word-spacing:11.814000px;}
.ws33{word-spacing:14.850000px;}
.ws2d{word-spacing:15.510000px;}
.ws26{word-spacing:17.952000px;}
.ws15{word-spacing:20.064000px;}
.wsf{word-spacing:160.626000px;}
.wse{word-spacing:358.380000px;}
.ws25{word-spacing:475.992000px;}
.ws24{word-spacing:506.748000px;}
.ws10{word-spacing:1084.800000px;}
._f{margin-left:-589.397533px;}
._18{margin-left:-12.084000px;}
._19{margin-left:-10.606200px;}
._5{margin-left:-8.651641px;}
._14{margin-left:-7.586034px;}
._6{margin-left:-6.316800px;}
._8{margin-left:-5.107200px;}
._0{margin-left:-3.464291px;}
._d{margin-left:-2.398358px;}
._a{margin-left:-1.344000px;}
._1{width:1.565533px;}
._7{width:3.286080px;}
._e{width:4.421760px;}
._12{width:5.650320px;}
._c{width:6.867840px;}
._11{width:7.932240px;}
._9{width:9.018240px;}
._b{width:10.301760px;}
._1a{width:11.350320px;}
._1c{width:12.964080px;}
._15{width:14.751000px;}
._10{width:15.840000px;}
._16{width:17.080800px;}
._13{width:19.767000px;}
._1b{width:20.992200px;}
._4{width:27.120000px;}
._24{width:31.812000px;}
._25{width:37.889267px;}
._26{width:39.300291px;}
._20{width:59.334000px;}
._23{width:74.844000px;}
._17{width:87.318000px;}
._1f{width:91.800000px;}
._22{width:93.673200px;}
._21{width:105.481200px;}
._1e{width:140.818358px;}
._2{width:153.107843px;}
._1d{width:158.400000px;}
._3{width:182.777517px;}
.fc5{color:rgb(48,88,159);}
.fc4{color:rgb(101,98,99);}
.fc3{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:62.872800px;}
.fsb{font-size:66.000000px;}
.fs7{font-size:67.200000px;}
.fs9{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:39.069000px;}
.y25{bottom:55.269000px;}
.y28{bottom:59.083800px;}
.y29{bottom:60.457650px;}
.y8e{bottom:106.594950px;}
.y17f{bottom:108.657450px;}
.y18a{bottom:109.119450px;}
.ye6{bottom:109.581450px;}
.y1b{bottom:110.982300px;}
.y1c9{bottom:111.654900px;}
.y125{bottom:112.567950px;}
.y1a8{bottom:113.255250px;}
.y16b{bottom:114.630450px;}
.y71{bottom:118.078950px;}
.y1a{bottom:125.382300px;}
.y14c{bottom:125.652450px;}
.y1d7{bottom:126.114450px;}
.y10a{bottom:126.678300px;}
.y189{bottom:131.625450px;}
.ye5{bottom:132.087450px;}
.yf1{bottom:132.648450px;}
.y1c8{bottom:134.160900px;}
.y124{bottom:135.073950px;}
.y1a7{bottom:135.755250px;}
.y4f{bottom:136.573950px;}
.y8d{bottom:137.598450px;}
.y17e{bottom:139.660950px;}
.yb0{bottom:140.122950px;}
.y70{bottom:140.584950px;}
.y16a{bottom:145.633950px;}
.y1e9{bottom:149.082450px;}
.y109{bottom:149.184300px;}
.y188{bottom:154.131450px;}
.ye4{bottom:154.593450px;}
.yf0{bottom:155.154450px;}
.y14b{bottom:156.655950px;}
.y1d6{bottom:157.117950px;}
.y1a6{bottom:158.255250px;}
.y4e{bottom:159.079950px;}
.y136{bottom:160.104450px;}
.yaf{bottom:162.628950px;}
.y1c7{bottom:165.159450px;}
.y8c{bottom:168.601950px;}
.y17d{bottom:170.664450px;}
.y1e8{bottom:171.588450px;}
.ycf{bottom:174.619800px;}
.y169{bottom:176.637450px;}
.yef{bottom:177.660450px;}
.y1d5{bottom:179.623950px;}
.y108{bottom:180.187800px;}
.y1a5{bottom:180.755250px;}
.y4d{bottom:181.585950px;}
.yae{bottom:185.134950px;}
.ye3{bottom:185.596950px;}
.yce{bottom:185.869800px;}
.y14a{bottom:187.659450px;}
.y1c6{bottom:187.665450px;}
.y8b{bottom:191.107950px;}
.y123{bottom:197.080950px;}
.y187{bottom:199.143450px;}
.yee{bottom:200.166450px;}
.y17c{bottom:201.667950px;}
.y6f{bottom:202.591950px;}
.y107{bottom:202.693800px;}
.y1a4{bottom:203.255250px;}
.yad{bottom:207.640950px;}
.ye2{bottom:208.102950px;}
.y1d4{bottom:210.627450px;}
.y149{bottom:218.662950px;}
.y1c5{bottom:218.668950px;}
.y122{bottom:219.586950px;}
.y186{bottom:221.649450px;}
.y8a{bottom:222.111450px;}
.y17b{bottom:224.173950px;}
.y1e7{bottom:225.097950px;}
.y106{bottom:225.199800px;}
.y1a3{bottom:225.755250px;}
.yac{bottom:230.146950px;}
.ye1{bottom:230.608950px;}
.yed{bottom:231.169950px;}
.ycd{bottom:233.044800px;}
.y1d3{bottom:233.133450px;}
.y6e{bottom:233.595450px;}
.y168{bottom:238.644450px;}
.y121{bottom:242.092950px;}
.y4c{bottom:243.592950px;}
.y105{bottom:247.705800px;}
.y1a2{bottom:248.255250px;}
.y148{bottom:249.666450px;}
.y1c4{bottom:249.672450px;}
.y185{bottom:252.652950px;}
.y89{bottom:253.114950px;}
.yec{bottom:253.675950px;}
.y17a{bottom:255.177450px;}
.ycc{bottom:255.544800px;}
.y1e6{bottom:256.101450px;}
.yab{bottom:261.150450px;}
.y18{bottom:263.449800px;}
.y1d2{bottom:264.136950px;}
.y120{bottom:264.598950px;}
.y4b{bottom:266.098950px;}
.y167{bottom:269.647950px;}
.y104{bottom:270.211800px;}
.y1a1{bottom:270.755250px;}
.y1c3{bottom:272.178450px;}
.y184{bottom:275.158950px;}
.yeb{bottom:276.181950px;}
.y1e5{bottom:278.607450px;}
.y147{bottom:280.669950px;}
.y17{bottom:283.902300px;}
.ye0{bottom:284.118450px;}
.y11f{bottom:287.104950px;}
.y4a{bottom:288.604950px;}
.ycb{bottom:291.484800px;}
.y103{bottom:292.717800px;}
.y1a0{bottom:293.255250px;}
.y1d1{bottom:295.140450px;}
.y6d{bottom:295.602450px;}
.y183{bottom:297.664950px;}
.yea{bottom:298.687950px;}
.y166{bottom:300.651450px;}
.y1e4{bottom:301.113450px;}
.y1c2{bottom:303.181950px;}
.ydf{bottom:306.624450px;}
.y49{bottom:311.110950px;}
.y146{bottom:311.673450px;}
.yca{bottom:313.984800px;}
.y16{bottom:313.989900px;}
.y88{bottom:315.121950px;}
.y102{bottom:315.223800px;}
.y19f{bottom:315.755250px;}
.y179{bottom:317.184450px;}
.y1d0{bottom:317.646450px;}
.y6c{bottom:318.108450px;}
.y182{bottom:320.170950px;}
.yaa{bottom:323.157450px;}
.yde{bottom:329.130450px;}
.y165{bottom:331.654950px;}
.y1e3{bottom:332.116950px;}
.y1c1{bottom:334.185450px;}
.y87{bottom:337.627950px;}
.y101{bottom:337.694250px;}
.y19e{bottom:338.255250px;}
.y1cf{bottom:340.152450px;}
.y6b{bottom:340.614450px;}
.y145{bottom:342.676950px;}
.ya9{bottom:345.663450px;}
.y135{bottom:346.125450px;}
.y178{bottom:348.187950px;}
.y11e{bottom:349.111950px;}
.yc9{bottom:349.909800px;}
.ydd{bottom:351.636450px;}
.y1e2{bottom:354.622950px;}
.y86{bottom:360.133950px;}
.ye9{bottom:360.694950px;}
.y19d{bottom:360.755250px;}
.yc8{bottom:361.159800px;}
.y164{bottom:362.658450px;}
.y181{bottom:365.182950px;}
.y1c0{bottom:365.188950px;}
.y134{bottom:368.631450px;}
.y100{bottom:368.697750px;}
.y1ce{bottom:371.155950px;}
.y48{bottom:373.117950px;}
.y144{bottom:373.680450px;}
.ydc{bottom:374.142450px;}
.ya8{bottom:376.666950px;}
.y177{bottom:379.191450px;}
.y11d{bottom:380.115450px;}
.y19c{bottom:383.255250px;}
.y1e1{bottom:385.626450px;}
.y180{bottom:387.688950px;}
.yff{bottom:391.203750px;}
.y163{bottom:393.661950px;}
.y47{bottom:395.623950px;}
.y1bf{bottom:396.192450px;}
.ya7{bottom:399.172950px;}
.y133{bottom:399.634950px;}
.y6a{bottom:402.621450px;}
.y143{bottom:404.683950px;}
.ydb{bottom:405.145950px;}
.y19b{bottom:405.755250px;}
.y1e0{bottom:408.132450px;}
.yc7{bottom:408.334800px;}
.y176{bottom:410.194950px;}
.y11c{bottom:411.118950px;}
.yfe{bottom:413.709750px;}
.yc4{bottom:419.584800px;}
.y85{bottom:422.140950px;}
.y162{bottom:424.665450px;}
.y69{bottom:425.127450px;}
.y19a{bottom:428.113950px;}
.ya6{bottom:430.176450px;}
.yc6{bottom:430.834800px;}
.y142{bottom:435.687450px;}
.yfd{bottom:436.215750px;}
.y1df{bottom:439.135950px;}
.y175{bottom:441.198450px;}
.yc3{bottom:442.084800px;}
.y11b{bottom:442.122450px;}
.y84{bottom:444.646950px;}
.y1cd{bottom:447.171450px;}
.y68{bottom:447.633450px;}
.y132{bottom:453.144450px;}
.yc5{bottom:453.334800px;}
.y161{bottom:455.668950px;}
.y46{bottom:457.630950px;}
.y1be{bottom:458.199450px;}
.yfc{bottom:458.721750px;}
.ya5{bottom:461.179950px;}
.y1de{bottom:461.641950px;}
.y11a{bottom:464.628450px;}
.y141{bottom:466.690950px;}
.y83{bottom:467.152950px;}
.y1ee{bottom:468.390450px;}
.y67{bottom:470.139450px;}
.y174{bottom:472.201950px;}
.y131{bottom:475.650450px;}
.y160{bottom:478.174950px;}
.y45{bottom:480.136950px;}
.yfb{bottom:481.227750px;}
.y1dd{bottom:484.147950px;}
.y119{bottom:487.134450px;}
.y1bd{bottom:489.202950px;}
.yc2{bottom:489.244800px;}
.y82{bottom:489.658950px;}
.y199{bottom:490.120950px;}
.y1ed{bottom:490.896450px;}
.ya4{bottom:492.183450px;}
.y66{bottom:492.645450px;}
.y140{bottom:497.694450px;}
.yc1{bottom:500.494800px;}
.y15f{bottom:500.680950px;}
.y44{bottom:502.642950px;}
.y173{bottom:503.205450px;}
.yfa{bottom:503.721750px;}
.y130{bottom:506.653950px;}
.y15{bottom:506.898750px;}
.y118{bottom:509.640450px;}
.y198{bottom:512.626950px;}
.y65{bottom:515.151450px;}
.y1bc{bottom:520.206450px;}
.yda{bottom:520.662450px;}
.ya3{bottom:523.186950px;}
.y43{bottom:525.148950px;}
.yf9{bottom:526.227750px;}
.y13f{bottom:528.697950px;}
.y12f{bottom:529.159950px;}
.y15e{bottom:531.684450px;}
.y117{bottom:532.146450px;}
.y172{bottom:534.208950px;}
.y197{bottom:535.132950px;}
.y1dc{bottom:537.657450px;}
.y14{bottom:540.649950px;}
.yd9{bottom:543.168450px;}
.y42{bottom:547.654950px;}
.yc0{bottom:547.669800px;}
.yf8{bottom:548.679450px;}
.y1bb{bottom:551.209950px;}
.y81{bottom:551.665950px;}
.ya2{bottom:554.190450px;}
.y116{bottom:554.652450px;}
.y196{bottom:557.638950px;}
.ybf{bottom:558.919800px;}
.y13e{bottom:559.701450px;}
.y12e{bottom:560.163450px;}
.y13{bottom:561.649950px;}
.y171{bottom:565.212450px;}
.yd8{bottom:565.674450px;}
.y80{bottom:574.171950px;}
.y15d{bottom:576.696450px;}
.y64{bottom:577.158450px;}
.y41{bottom:578.658450px;}
.yf7{bottom:579.682950px;}
.y195{bottom:580.144950px;}
.y1ba{bottom:582.213450px;}
.y12{bottom:582.649950px;}
.ya1{bottom:585.193950px;}
.y13d{bottom:590.704950px;}
.y12d{bottom:591.166950px;}
.y170{bottom:596.215950px;}
.y7f{bottom:596.677950px;}
.y15c{bottom:599.202450px;}
.y63{bottom:599.664450px;}
.y194{bottom:602.650950px;}
.y11{bottom:603.649950px;}
.ybe{bottom:606.094800px;}
.ya0{bottom:607.699950px;}
.yf6{bottom:610.686450px;}
.y1b9{bottom:613.216950px;}
.y1db{bottom:613.672950px;}
.y7e{bottom:619.183950px;}
.y13c{bottom:621.708450px;}
.y62{bottom:622.170450px;}
.y10{bottom:624.649950px;}
.y193{bottom:625.156950px;}
.y16f{bottom:627.219450px;}
.ybd{bottom:628.594800px;}
.y15b{bottom:630.205950px;}
.y1da{bottom:636.178950px;}
.y9f{bottom:638.703450px;}
.y115{bottom:639.165450px;}
.y40{bottom:640.665450px;}
.y7d{bottom:641.689950px;}
.y1b8{bottom:644.220450px;}
.y61{bottom:644.676450px;}
.yf{bottom:645.649950px;}
.y192{bottom:647.662950px;}
.y1ec{bottom:650.187450px;}
.y13b{bottom:652.711950px;}
.y12c{bottom:653.173950px;}
.y16e{bottom:658.222950px;}
.yd7{bottom:658.684950px;}
.y9e{bottom:661.209450px;}
.y114{bottom:661.671450px;}
.ybc{bottom:664.534800px;}
.ye{bottom:666.649950px;}
.y60{bottom:667.182450px;}
.y3f{bottom:671.668950px;}
.y7c{bottom:672.693450px;}
.y15a{bottom:675.217950px;}
.y1b7{bottom:675.223950px;}
.y191{bottom:678.666450px;}
.yd6{bottom:681.190950px;}
.y13a{bottom:683.715450px;}
.y113{bottom:684.177450px;}
.ybb{bottom:687.034800px;}
.yd{bottom:687.649950px;}
.y16d{bottom:689.226450px;}
.y5f{bottom:689.688450px;}
.y9d{bottom:692.212950px;}
.y3e{bottom:694.174950px;}
.y159{bottom:697.723950px;}
.y190{bottom:701.172450px;}
.y7b{bottom:703.696950px;}
.y1b6{bottom:706.227450px;}
.y112{bottom:706.683450px;}
.y24{bottom:708.506400px;}
.yc{bottom:708.649950px;}
.y5e{bottom:712.194450px;}
.y139{bottom:714.718950px;}
.y12b{bottom:715.180950px;}
.y3d{bottom:716.680950px;}
.y158{bottom:720.229950px;}
.y23{bottom:722.901600px;}
.yba{bottom:722.959800px;}
.y9c{bottom:723.216450px;}
.y18f{bottom:723.678450px;}
.y1eb{bottom:726.202950px;}
.y111{bottom:729.189450px;}
.yb{bottom:729.649950px;}
.yd5{bottom:734.700450px;}
.y1b5{bottom:737.230950px;}
.y3c{bottom:739.186950px;}
.y5d{bottom:743.197950px;}
.y9b{bottom:745.722450px;}
.y18e{bottom:746.184450px;}
.ya{bottom:750.649950px;}
.y157{bottom:751.233450px;}
.y110{bottom:751.695450px;}
.yd4{bottom:757.206450px;}
.yb9{bottom:761.446950px;}
.y22{bottom:763.806600px;}
.y7a{bottom:765.703950px;}
.y1cc{bottom:768.228450px;}
.y1b4{bottom:768.234450px;}
.y18d{bottom:768.690450px;}
.y3b{bottom:770.190450px;}
.y9{bottom:771.649950px;}
.y9a{bottom:776.725950px;}
.y12a{bottom:777.187950px;}
.y1ea{bottom:779.712450px;}
.y21{bottom:780.006600px;}
.y16c{bottom:782.236950px;}
.y10f{bottom:782.698950px;}
.y79{bottom:788.209950px;}
.y18c{bottom:791.196450px;}
.y3a{bottom:792.696450px;}
.y20{bottom:796.206600px;}
.y1d9{bottom:796.707450px;}
.y1cb{bottom:799.231950px;}
.y1b3{bottom:799.237950px;}
.y129{bottom:799.693950px;}
.y5c{bottom:805.204950px;}
.y8{bottom:805.401150px;}
.y99{bottom:807.729450px;}
.y78{bottom:810.715950px;}
.y1f{bottom:812.406600px;}
.y156{bottom:813.240450px;}
.y18b{bottom:813.702450px;}
.y39{bottom:815.202450px;}
.y1d8{bottom:819.213450px;}
.y1ca{bottom:821.737950px;}
.y128{bottom:822.199950px;}
.y5b{bottom:827.710950px;}
.y1b2{bottom:830.241450px;}
.yf5{bottom:833.221950px;}
.yb8{bottom:836.208450px;}
.y1e{bottom:837.111600px;}
.y38{bottom:837.708450px;}
.y98{bottom:838.732950px;}
.yd3{bottom:841.719450px;}
.y155{bottom:844.243950px;}
.y10e{bottom:844.705950px;}
.y7{bottom:847.209600px;}
.y5a{bottom:850.216950px;}
.yb7{bottom:858.714450px;}
.y37{bottom:860.214450px;}
.y1b1{bottom:861.244950px;}
.yd2{bottom:864.225450px;}
.y10d{bottom:867.211950px;}
.y97{bottom:869.736450px;}
.y1d{bottom:870.321600px;}
.y77{bottom:872.722950px;}
.y154{bottom:875.247450px;}
.yb6{bottom:881.220450px;}
.y1b0{bottom:883.750950px;}
.yf4{bottom:886.731450px;}
.y10c{bottom:889.717950px;}
.y1c{bottom:890.774100px;}
.y36{bottom:891.217950px;}
.y96{bottom:892.242450px;}
.y76{bottom:895.228950px;}
.y138{bottom:900.739950px;}
.y153{bottom:906.250950px;}
.yf3{bottom:909.237450px;}
.y6{bottom:910.735950px;}
.y59{bottom:912.223950px;}
.y35{bottom:913.723950px;}
.y1af{bottom:914.754450px;}
.y75{bottom:917.734950px;}
.y95{bottom:923.245950px;}
.y2{bottom:930.837000px;}
.y137{bottom:931.743450px;}
.y58{bottom:934.729950px;}
.y34{bottom:936.229950px;}
.y152{bottom:937.254450px;}
.y5{bottom:939.435900px;}
.y74{bottom:940.240950px;}
.y1ae{bottom:945.757950px;}
.ye8{bottom:948.738450px;}
.y94{bottom:954.249450px;}
.y57{bottom:957.235950px;}
.y33{bottom:958.735950px;}
.y73{bottom:962.746950px;}
.y151{bottom:968.257950px;}
.y3{bottom:971.181900px;}
.yd1{bottom:971.244450px;}
.y1ad{bottom:976.761450px;}
.y56{bottom:979.741950px;}
.y32{bottom:981.241950px;}
.y93{bottom:985.252950px;}
.yb5{bottom:988.239450px;}
.yd0{bottom:993.750450px;}
.y150{bottom:999.261450px;}
.y55{bottom:1002.247950px;}
.yf2{bottom:1007.758950px;}
.y1ac{bottom:1007.764950px;}
.yb4{bottom:1010.745450px;}
.y31{bottom:1012.245450px;}
.y92{bottom:1016.256450px;}
.y127{bottom:1019.242950px;}
.y54{bottom:1024.753950px;}
.y14f{bottom:1030.264950px;}
.yb3{bottom:1033.251450px;}
.y30{bottom:1034.751450px;}
.y91{bottom:1038.762450px;}
.y1ab{bottom:1038.768450px;}
.y126{bottom:1041.748950px;}
.y53{bottom:1047.259950px;}
.yb2{bottom:1055.757450px;}
.y2f{bottom:1057.257450px;}
.y14e{bottom:1061.268450px;}
.y10b{bottom:1064.254950px;}
.y72{bottom:1069.765950px;}
.y1aa{bottom:1069.771950px;}
.yb1{bottom:1078.263450px;}
.y2e{bottom:1079.763450px;}
.y19{bottom:1086.281850px;}
.ye7{bottom:1086.760950px;}
.y14d{bottom:1092.271950px;}
.y90{bottom:1100.769450px;}
.y2d{bottom:1102.269450px;}
.y52{bottom:1109.266950px;}
.y8f{bottom:1123.275450px;}
.y2c{bottom:1124.775450px;}
.y4{bottom:1129.179750px;}
.y1{bottom:1131.415500px;}
.y51{bottom:1131.772950px;}
.y1a9{bottom:1131.778950px;}
.y50{bottom:1154.278950px;}
.y2b{bottom:1155.778950px;}
.y2a{bottom:1197.498900px;}
.y27{bottom:1197.501600px;}
.hc{height:27.916992px;}
.h7{height:35.906250px;}
.h3{height:39.972656px;}
.h11{height:40.394531px;}
.h19{height:40.634766px;}
.h13{height:41.330566px;}
.h1a{height:41.660156px;}
.h14{height:42.372070px;}
.hf{height:43.148438px;}
.h10{height:44.138672px;}
.h2{height:46.540608px;}
.h12{height:46.898438px;}
.hd{height:48.541992px;}
.hb{height:50.268750px;}
.h6{height:51.562500px;}
.h15{height:51.788086px;}
.h5{height:53.296875px;}
.ha{height:54.928125px;}
.h18{height:56.718750px;}
.h17{height:56.847656px;}
.h16{height:59.329102px;}
.h9{height:60.407812px;}
.he{height:62.179688px;}
.h8{height:72.187500px;}
.h4{height:81.210938px;}
.h1b{height:86.660156px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:21.179550px;}
.xf{left:25.891050px;}
.xd{left:30.332550px;}
.x2{left:38.377950px;}
.xa{left:45.681150px;}
.xc{left:60.779550px;}
.x12{left:63.779550px;}
.x11{left:66.614100px;}
.xb{left:70.876800px;}
.x9{left:72.843150px;}
.x8{left:83.566200px;}
.x15{left:90.774870px;}
.x10{left:93.620550px;}
.x3{left:211.181100px;}
.x5{left:212.774700px;}
.x7{left:232.786800px;}
.x6{left:242.046600px;}
.x1{left:308.436300px;}
.x14{left:556.179900px;}
.x4{left:679.675800px;}
.x13{left:811.499550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.000000pt;}
.ls3{letter-spacing:-1.466667pt;}
.ls1{letter-spacing:-0.469333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.234667pt;}
.ws2c{word-spacing:-16.309333pt;}
.ws3{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.133333pt;}
.ws2b{word-spacing:-16.074667pt;}
.ws35{word-spacing:-14.666667pt;}
.ws0{word-spacing:-11.776000pt;}
.ws16{word-spacing:-7.333333pt;}
.wsd{word-spacing:-4.458667pt;}
.ws1a{word-spacing:-3.637333pt;}
.ws1d{word-spacing:-3.520000pt;}
.ws13{word-spacing:-3.226667pt;}
.ws11{word-spacing:-3.050667pt;}
.ws23{word-spacing:-2.874667pt;}
.ws12{word-spacing:-2.757333pt;}
.ws19{word-spacing:-2.464000pt;}
.wsb{word-spacing:-2.288000pt;}
.ws34{word-spacing:-1.642667pt;}
.ws2{word-spacing:-1.612800pt;}
.ws37{word-spacing:-1.349333pt;}
.ws29{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.114667pt;}
.ws31{word-spacing:-0.997333pt;}
.ws8{word-spacing:-0.410667pt;}
.ws21{word-spacing:-0.176000pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.469333pt;}
.ws9{word-spacing:1.173333pt;}
.wsa{word-spacing:1.290667pt;}
.ws2e{word-spacing:1.466667pt;}
.ws36{word-spacing:1.818667pt;}
.ws27{word-spacing:2.288000pt;}
.ws2f{word-spacing:2.346667pt;}
.ws18{word-spacing:2.405333pt;}
.ws1f{word-spacing:2.992000pt;}
.ws30{word-spacing:4.165333pt;}
.ws14{word-spacing:4.634667pt;}
.ws1b{word-spacing:5.456000pt;}
.ws7{word-spacing:6.453333pt;}
.ws4{word-spacing:7.157333pt;}
.ws1e{word-spacing:7.274667pt;}
.ws1c{word-spacing:7.861333pt;}
.ws5{word-spacing:8.154667pt;}
.ws38{word-spacing:8.389333pt;}
.ws6{word-spacing:8.976000pt;}
.ws28{word-spacing:9.328000pt;}
.ws20{word-spacing:10.149333pt;}
.ws2a{word-spacing:10.384000pt;}
.ws32{word-spacing:10.501333pt;}
.ws33{word-spacing:13.200000pt;}
.ws2d{word-spacing:13.786667pt;}
.ws26{word-spacing:15.957333pt;}
.ws15{word-spacing:17.834667pt;}
.wsf{word-spacing:142.778667pt;}
.wse{word-spacing:318.560000pt;}
.ws25{word-spacing:423.104000pt;}
.ws24{word-spacing:450.442667pt;}
.ws10{word-spacing:964.266667pt;}
._f{margin-left:-523.908918pt;}
._18{margin-left:-10.741333pt;}
._19{margin-left:-9.427733pt;}
._5{margin-left:-7.690348pt;}
._14{margin-left:-6.743142pt;}
._6{margin-left:-5.614933pt;}
._8{margin-left:-4.539733pt;}
._0{margin-left:-3.079370pt;}
._d{margin-left:-2.131874pt;}
._a{margin-left:-1.194667pt;}
._1{width:1.391585pt;}
._7{width:2.920960pt;}
._e{width:3.930453pt;}
._12{width:5.022507pt;}
._c{width:6.104747pt;}
._11{width:7.050880pt;}
._9{width:8.016213pt;}
._b{width:9.157120pt;}
._1a{width:10.089173pt;}
._1c{width:11.523627pt;}
._15{width:13.112000pt;}
._10{width:14.080000pt;}
._16{width:15.182933pt;}
._13{width:17.570667pt;}
._1b{width:18.659733pt;}
._4{width:24.106667pt;}
._24{width:28.277333pt;}
._25{width:33.679349pt;}
._26{width:34.933592pt;}
._20{width:52.741333pt;}
._23{width:66.528000pt;}
._17{width:77.616000pt;}
._1f{width:81.600000pt;}
._22{width:83.265067pt;}
._21{width:93.761067pt;}
._1e{width:125.171874pt;}
._2{width:136.095860pt;}
._1d{width:140.800000pt;}
._3{width:162.468904pt;}
.fs8{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:55.886933pt;}
.fsb{font-size:58.666667pt;}
.fs7{font-size:59.733333pt;}
.fs9{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:34.728000pt;}
.y25{bottom:49.128000pt;}
.y28{bottom:52.518933pt;}
.y29{bottom:53.740133pt;}
.y8e{bottom:94.751067pt;}
.y17f{bottom:96.584400pt;}
.y18a{bottom:96.995067pt;}
.ye6{bottom:97.405733pt;}
.y1b{bottom:98.650933pt;}
.y1c9{bottom:99.248800pt;}
.y125{bottom:100.060400pt;}
.y1a8{bottom:100.671333pt;}
.y16b{bottom:101.893733pt;}
.y71{bottom:104.959067pt;}
.y1a{bottom:111.450933pt;}
.y14c{bottom:111.691067pt;}
.y1d7{bottom:112.101733pt;}
.y10a{bottom:112.602933pt;}
.y189{bottom:117.000400pt;}
.ye5{bottom:117.411067pt;}
.yf1{bottom:117.909733pt;}
.y1c8{bottom:119.254133pt;}
.y124{bottom:120.065733pt;}
.y1a7{bottom:120.671333pt;}
.y4f{bottom:121.399067pt;}
.y8d{bottom:122.309733pt;}
.y17e{bottom:124.143067pt;}
.yb0{bottom:124.553733pt;}
.y70{bottom:124.964400pt;}
.y16a{bottom:129.452400pt;}
.y1e9{bottom:132.517733pt;}
.y109{bottom:132.608267pt;}
.y188{bottom:137.005733pt;}
.ye4{bottom:137.416400pt;}
.yf0{bottom:137.915067pt;}
.y14b{bottom:139.249733pt;}
.y1d6{bottom:139.660400pt;}
.y1a6{bottom:140.671333pt;}
.y4e{bottom:141.404400pt;}
.y136{bottom:142.315067pt;}
.yaf{bottom:144.559067pt;}
.y1c7{bottom:146.808400pt;}
.y8c{bottom:149.868400pt;}
.y17d{bottom:151.701733pt;}
.y1e8{bottom:152.523067pt;}
.ycf{bottom:155.217600pt;}
.y169{bottom:157.011067pt;}
.yef{bottom:157.920400pt;}
.y1d5{bottom:159.665733pt;}
.y108{bottom:160.166933pt;}
.y1a5{bottom:160.671333pt;}
.y4d{bottom:161.409733pt;}
.yae{bottom:164.564400pt;}
.ye3{bottom:164.975067pt;}
.yce{bottom:165.217600pt;}
.y14a{bottom:166.808400pt;}
.y1c6{bottom:166.813733pt;}
.y8b{bottom:169.873733pt;}
.y123{bottom:175.183067pt;}
.y187{bottom:177.016400pt;}
.yee{bottom:177.925733pt;}
.y17c{bottom:179.260400pt;}
.y6f{bottom:180.081733pt;}
.y107{bottom:180.172267pt;}
.y1a4{bottom:180.671333pt;}
.yad{bottom:184.569733pt;}
.ye2{bottom:184.980400pt;}
.y1d4{bottom:187.224400pt;}
.y149{bottom:194.367067pt;}
.y1c5{bottom:194.372400pt;}
.y122{bottom:195.188400pt;}
.y186{bottom:197.021733pt;}
.y8a{bottom:197.432400pt;}
.y17b{bottom:199.265733pt;}
.y1e7{bottom:200.087067pt;}
.y106{bottom:200.177600pt;}
.y1a3{bottom:200.671333pt;}
.yac{bottom:204.575067pt;}
.ye1{bottom:204.985733pt;}
.yed{bottom:205.484400pt;}
.ycd{bottom:207.150933pt;}
.y1d3{bottom:207.229733pt;}
.y6e{bottom:207.640400pt;}
.y168{bottom:212.128400pt;}
.y121{bottom:215.193733pt;}
.y4c{bottom:216.527067pt;}
.y105{bottom:220.182933pt;}
.y1a2{bottom:220.671333pt;}
.y148{bottom:221.925733pt;}
.y1c4{bottom:221.931067pt;}
.y185{bottom:224.580400pt;}
.y89{bottom:224.991067pt;}
.yec{bottom:225.489733pt;}
.y17a{bottom:226.824400pt;}
.ycc{bottom:227.150933pt;}
.y1e6{bottom:227.645733pt;}
.yab{bottom:232.133733pt;}
.y18{bottom:234.177600pt;}
.y1d2{bottom:234.788400pt;}
.y120{bottom:235.199067pt;}
.y4b{bottom:236.532400pt;}
.y167{bottom:239.687067pt;}
.y104{bottom:240.188267pt;}
.y1a1{bottom:240.671333pt;}
.y1c3{bottom:241.936400pt;}
.y184{bottom:244.585733pt;}
.yeb{bottom:245.495067pt;}
.y1e5{bottom:247.651067pt;}
.y147{bottom:249.484400pt;}
.y17{bottom:252.357600pt;}
.ye0{bottom:252.549733pt;}
.y11f{bottom:255.204400pt;}
.y4a{bottom:256.537733pt;}
.ycb{bottom:259.097600pt;}
.y103{bottom:260.193600pt;}
.y1a0{bottom:260.671333pt;}
.y1d1{bottom:262.347067pt;}
.y6d{bottom:262.757733pt;}
.y183{bottom:264.591067pt;}
.yea{bottom:265.500400pt;}
.y166{bottom:267.245733pt;}
.y1e4{bottom:267.656400pt;}
.y1c2{bottom:269.495067pt;}
.ydf{bottom:272.555067pt;}
.y49{bottom:276.543067pt;}
.y146{bottom:277.043067pt;}
.yca{bottom:279.097600pt;}
.y16{bottom:279.102133pt;}
.y88{bottom:280.108400pt;}
.y102{bottom:280.198933pt;}
.y19f{bottom:280.671333pt;}
.y179{bottom:281.941733pt;}
.y1d0{bottom:282.352400pt;}
.y6c{bottom:282.763067pt;}
.y182{bottom:284.596400pt;}
.yaa{bottom:287.251067pt;}
.yde{bottom:292.560400pt;}
.y165{bottom:294.804400pt;}
.y1e3{bottom:295.215067pt;}
.y1c1{bottom:297.053733pt;}
.y87{bottom:300.113733pt;}
.y101{bottom:300.172667pt;}
.y19e{bottom:300.671333pt;}
.y1cf{bottom:302.357733pt;}
.y6b{bottom:302.768400pt;}
.y145{bottom:304.601733pt;}
.ya9{bottom:307.256400pt;}
.y135{bottom:307.667067pt;}
.y178{bottom:309.500400pt;}
.y11e{bottom:310.321733pt;}
.yc9{bottom:311.030933pt;}
.ydd{bottom:312.565733pt;}
.y1e2{bottom:315.220400pt;}
.y86{bottom:320.119067pt;}
.ye9{bottom:320.617733pt;}
.y19d{bottom:320.671333pt;}
.yc8{bottom:321.030933pt;}
.y164{bottom:322.363067pt;}
.y181{bottom:324.607067pt;}
.y1c0{bottom:324.612400pt;}
.y134{bottom:327.672400pt;}
.y100{bottom:327.731333pt;}
.y1ce{bottom:329.916400pt;}
.y48{bottom:331.660400pt;}
.y144{bottom:332.160400pt;}
.ydc{bottom:332.571067pt;}
.ya8{bottom:334.815067pt;}
.y177{bottom:337.059067pt;}
.y11d{bottom:337.880400pt;}
.y19c{bottom:340.671333pt;}
.y1e1{bottom:342.779067pt;}
.y180{bottom:344.612400pt;}
.yff{bottom:347.736667pt;}
.y163{bottom:349.921733pt;}
.y47{bottom:351.665733pt;}
.y1bf{bottom:352.171067pt;}
.ya7{bottom:354.820400pt;}
.y133{bottom:355.231067pt;}
.y6a{bottom:357.885733pt;}
.y143{bottom:359.719067pt;}
.ydb{bottom:360.129733pt;}
.y19b{bottom:360.671333pt;}
.y1e0{bottom:362.784400pt;}
.yc7{bottom:362.964267pt;}
.y176{bottom:364.617733pt;}
.y11c{bottom:365.439067pt;}
.yfe{bottom:367.742000pt;}
.yc4{bottom:372.964267pt;}
.y85{bottom:375.236400pt;}
.y162{bottom:377.480400pt;}
.y69{bottom:377.891067pt;}
.y19a{bottom:380.545733pt;}
.ya6{bottom:382.379067pt;}
.yc6{bottom:382.964267pt;}
.y142{bottom:387.277733pt;}
.yfd{bottom:387.747333pt;}
.y1df{bottom:390.343067pt;}
.y175{bottom:392.176400pt;}
.yc3{bottom:392.964267pt;}
.y11b{bottom:392.997733pt;}
.y84{bottom:395.241733pt;}
.y1cd{bottom:397.485733pt;}
.y68{bottom:397.896400pt;}
.y132{bottom:402.795067pt;}
.yc5{bottom:402.964267pt;}
.y161{bottom:405.039067pt;}
.y46{bottom:406.783067pt;}
.y1be{bottom:407.288400pt;}
.yfc{bottom:407.752667pt;}
.ya5{bottom:409.937733pt;}
.y1de{bottom:410.348400pt;}
.y11a{bottom:413.003067pt;}
.y141{bottom:414.836400pt;}
.y83{bottom:415.247067pt;}
.y1ee{bottom:416.347067pt;}
.y67{bottom:417.901733pt;}
.y174{bottom:419.735067pt;}
.y131{bottom:422.800400pt;}
.y160{bottom:425.044400pt;}
.y45{bottom:426.788400pt;}
.yfb{bottom:427.758000pt;}
.y1dd{bottom:430.353733pt;}
.y119{bottom:433.008400pt;}
.y1bd{bottom:434.847067pt;}
.yc2{bottom:434.884267pt;}
.y82{bottom:435.252400pt;}
.y199{bottom:435.663067pt;}
.y1ed{bottom:436.352400pt;}
.ya4{bottom:437.496400pt;}
.y66{bottom:437.907067pt;}
.y140{bottom:442.395067pt;}
.yc1{bottom:444.884267pt;}
.y15f{bottom:445.049733pt;}
.y44{bottom:446.793733pt;}
.y173{bottom:447.293733pt;}
.yfa{bottom:447.752667pt;}
.y130{bottom:450.359067pt;}
.y15{bottom:450.576667pt;}
.y118{bottom:453.013733pt;}
.y198{bottom:455.668400pt;}
.y65{bottom:457.912400pt;}
.y1bc{bottom:462.405733pt;}
.yda{bottom:462.811067pt;}
.ya3{bottom:465.055067pt;}
.y43{bottom:466.799067pt;}
.yf9{bottom:467.758000pt;}
.y13f{bottom:469.953733pt;}
.y12f{bottom:470.364400pt;}
.y15e{bottom:472.608400pt;}
.y117{bottom:473.019067pt;}
.y172{bottom:474.852400pt;}
.y197{bottom:475.673733pt;}
.y1dc{bottom:477.917733pt;}
.y14{bottom:480.577733pt;}
.yd9{bottom:482.816400pt;}
.y42{bottom:486.804400pt;}
.yc0{bottom:486.817600pt;}
.yf8{bottom:487.715067pt;}
.y1bb{bottom:489.964400pt;}
.y81{bottom:490.369733pt;}
.ya2{bottom:492.613733pt;}
.y116{bottom:493.024400pt;}
.y196{bottom:495.679067pt;}
.ybf{bottom:496.817600pt;}
.y13e{bottom:497.512400pt;}
.y12e{bottom:497.923067pt;}
.y13{bottom:499.244400pt;}
.y171{bottom:502.411067pt;}
.yd8{bottom:502.821733pt;}
.y80{bottom:510.375067pt;}
.y15d{bottom:512.619067pt;}
.y64{bottom:513.029733pt;}
.y41{bottom:514.363067pt;}
.yf7{bottom:515.273733pt;}
.y195{bottom:515.684400pt;}
.y1ba{bottom:517.523067pt;}
.y12{bottom:517.911067pt;}
.ya1{bottom:520.172400pt;}
.y13d{bottom:525.071067pt;}
.y12d{bottom:525.481733pt;}
.y170{bottom:529.969733pt;}
.y7f{bottom:530.380400pt;}
.y15c{bottom:532.624400pt;}
.y63{bottom:533.035067pt;}
.y194{bottom:535.689733pt;}
.y11{bottom:536.577733pt;}
.ybe{bottom:538.750933pt;}
.ya0{bottom:540.177733pt;}
.yf6{bottom:542.832400pt;}
.y1b9{bottom:545.081733pt;}
.y1db{bottom:545.487067pt;}
.y7e{bottom:550.385733pt;}
.y13c{bottom:552.629733pt;}
.y62{bottom:553.040400pt;}
.y10{bottom:555.244400pt;}
.y193{bottom:555.695067pt;}
.y16f{bottom:557.528400pt;}
.ybd{bottom:558.750933pt;}
.y15b{bottom:560.183067pt;}
.y1da{bottom:565.492400pt;}
.y9f{bottom:567.736400pt;}
.y115{bottom:568.147067pt;}
.y40{bottom:569.480400pt;}
.y7d{bottom:570.391067pt;}
.y1b8{bottom:572.640400pt;}
.y61{bottom:573.045733pt;}
.yf{bottom:573.911067pt;}
.y192{bottom:575.700400pt;}
.y1ec{bottom:577.944400pt;}
.y13b{bottom:580.188400pt;}
.y12c{bottom:580.599067pt;}
.y16e{bottom:585.087067pt;}
.yd7{bottom:585.497733pt;}
.y9e{bottom:587.741733pt;}
.y114{bottom:588.152400pt;}
.ybc{bottom:590.697600pt;}
.ye{bottom:592.577733pt;}
.y60{bottom:593.051067pt;}
.y3f{bottom:597.039067pt;}
.y7c{bottom:597.949733pt;}
.y15a{bottom:600.193733pt;}
.y1b7{bottom:600.199067pt;}
.y191{bottom:603.259067pt;}
.yd6{bottom:605.503067pt;}
.y13a{bottom:607.747067pt;}
.y113{bottom:608.157733pt;}
.ybb{bottom:610.697600pt;}
.yd{bottom:611.244400pt;}
.y16d{bottom:612.645733pt;}
.y5f{bottom:613.056400pt;}
.y9d{bottom:615.300400pt;}
.y3e{bottom:617.044400pt;}
.y159{bottom:620.199067pt;}
.y190{bottom:623.264400pt;}
.y7b{bottom:625.508400pt;}
.y1b6{bottom:627.757733pt;}
.y112{bottom:628.163067pt;}
.y24{bottom:629.783467pt;}
.yc{bottom:629.911067pt;}
.y5e{bottom:633.061733pt;}
.y139{bottom:635.305733pt;}
.y12b{bottom:635.716400pt;}
.y3d{bottom:637.049733pt;}
.y158{bottom:640.204400pt;}
.y23{bottom:642.579200pt;}
.yba{bottom:642.630933pt;}
.y9c{bottom:642.859067pt;}
.y18f{bottom:643.269733pt;}
.y1eb{bottom:645.513733pt;}
.y111{bottom:648.168400pt;}
.yb{bottom:648.577733pt;}
.yd5{bottom:653.067067pt;}
.y1b5{bottom:655.316400pt;}
.y3c{bottom:657.055067pt;}
.y5d{bottom:660.620400pt;}
.y9b{bottom:662.864400pt;}
.y18e{bottom:663.275067pt;}
.ya{bottom:667.244400pt;}
.y157{bottom:667.763067pt;}
.y110{bottom:668.173733pt;}
.yd4{bottom:673.072400pt;}
.yb9{bottom:676.841733pt;}
.y22{bottom:678.939200pt;}
.y7a{bottom:680.625733pt;}
.y1cc{bottom:682.869733pt;}
.y1b4{bottom:682.875067pt;}
.y18d{bottom:683.280400pt;}
.y3b{bottom:684.613733pt;}
.y9{bottom:685.911067pt;}
.y9a{bottom:690.423067pt;}
.y12a{bottom:690.833733pt;}
.y1ea{bottom:693.077733pt;}
.y21{bottom:693.339200pt;}
.y16c{bottom:695.321733pt;}
.y10f{bottom:695.732400pt;}
.y79{bottom:700.631067pt;}
.y18c{bottom:703.285733pt;}
.y3a{bottom:704.619067pt;}
.y20{bottom:707.739200pt;}
.y1d9{bottom:708.184400pt;}
.y1cb{bottom:710.428400pt;}
.y1b3{bottom:710.433733pt;}
.y129{bottom:710.839067pt;}
.y5c{bottom:715.737733pt;}
.y8{bottom:715.912133pt;}
.y99{bottom:717.981733pt;}
.y78{bottom:720.636400pt;}
.y1f{bottom:722.139200pt;}
.y156{bottom:722.880400pt;}
.y18b{bottom:723.291067pt;}
.y39{bottom:724.624400pt;}
.y1d8{bottom:728.189733pt;}
.y1ca{bottom:730.433733pt;}
.y128{bottom:730.844400pt;}
.y5b{bottom:735.743067pt;}
.y1b2{bottom:737.992400pt;}
.yf5{bottom:740.641733pt;}
.yb8{bottom:743.296400pt;}
.y1e{bottom:744.099200pt;}
.y38{bottom:744.629733pt;}
.y98{bottom:745.540400pt;}
.yd3{bottom:748.195067pt;}
.y155{bottom:750.439067pt;}
.y10e{bottom:750.849733pt;}
.y7{bottom:753.075200pt;}
.y5a{bottom:755.748400pt;}
.yb7{bottom:763.301733pt;}
.y37{bottom:764.635067pt;}
.y1b1{bottom:765.551067pt;}
.yd2{bottom:768.200400pt;}
.y10d{bottom:770.855067pt;}
.y97{bottom:773.099067pt;}
.y1d{bottom:773.619200pt;}
.y77{bottom:775.753733pt;}
.y154{bottom:777.997733pt;}
.yb6{bottom:783.307067pt;}
.y1b0{bottom:785.556400pt;}
.yf4{bottom:788.205733pt;}
.y10c{bottom:790.860400pt;}
.y1c{bottom:791.799200pt;}
.y36{bottom:792.193733pt;}
.y96{bottom:793.104400pt;}
.y76{bottom:795.759067pt;}
.y138{bottom:800.657733pt;}
.y153{bottom:805.556400pt;}
.yf3{bottom:808.211067pt;}
.y6{bottom:809.543067pt;}
.y59{bottom:810.865733pt;}
.y35{bottom:812.199067pt;}
.y1af{bottom:813.115067pt;}
.y75{bottom:815.764400pt;}
.y95{bottom:820.663067pt;}
.y2{bottom:827.410667pt;}
.y137{bottom:828.216400pt;}
.y58{bottom:830.871067pt;}
.y34{bottom:832.204400pt;}
.y152{bottom:833.115067pt;}
.y5{bottom:835.054133pt;}
.y74{bottom:835.769733pt;}
.y1ae{bottom:840.673733pt;}
.ye8{bottom:843.323067pt;}
.y94{bottom:848.221733pt;}
.y57{bottom:850.876400pt;}
.y33{bottom:852.209733pt;}
.y73{bottom:855.775067pt;}
.y151{bottom:860.673733pt;}
.y3{bottom:863.272800pt;}
.yd1{bottom:863.328400pt;}
.y1ad{bottom:868.232400pt;}
.y56{bottom:870.881733pt;}
.y32{bottom:872.215067pt;}
.y93{bottom:875.780400pt;}
.yb5{bottom:878.435067pt;}
.yd0{bottom:883.333733pt;}
.y150{bottom:888.232400pt;}
.y55{bottom:890.887067pt;}
.yf2{bottom:895.785733pt;}
.y1ac{bottom:895.791067pt;}
.yb4{bottom:898.440400pt;}
.y31{bottom:899.773733pt;}
.y92{bottom:903.339067pt;}
.y127{bottom:905.993733pt;}
.y54{bottom:910.892400pt;}
.y14f{bottom:915.791067pt;}
.yb3{bottom:918.445733pt;}
.y30{bottom:919.779067pt;}
.y91{bottom:923.344400pt;}
.y1ab{bottom:923.349733pt;}
.y126{bottom:925.999067pt;}
.y53{bottom:930.897733pt;}
.yb2{bottom:938.451067pt;}
.y2f{bottom:939.784400pt;}
.y14e{bottom:943.349733pt;}
.y10b{bottom:946.004400pt;}
.y72{bottom:950.903067pt;}
.y1aa{bottom:950.908400pt;}
.yb1{bottom:958.456400pt;}
.y2e{bottom:959.789733pt;}
.y19{bottom:965.583867pt;}
.ye7{bottom:966.009733pt;}
.y14d{bottom:970.908400pt;}
.y90{bottom:978.461733pt;}
.y2d{bottom:979.795067pt;}
.y52{bottom:986.015067pt;}
.y8f{bottom:998.467067pt;}
.y2c{bottom:999.800400pt;}
.y4{bottom:1003.715333pt;}
.y1{bottom:1005.702667pt;}
.y51{bottom:1006.020400pt;}
.y1a9{bottom:1006.025733pt;}
.y50{bottom:1026.025733pt;}
.y2b{bottom:1027.359067pt;}
.y2a{bottom:1064.443467pt;}
.y27{bottom:1064.445867pt;}
.hc{height:24.815104pt;}
.h7{height:31.916667pt;}
.h3{height:35.531250pt;}
.h11{height:35.906250pt;}
.h19{height:36.119792pt;}
.h13{height:36.738281pt;}
.h1a{height:37.031250pt;}
.h14{height:37.664062pt;}
.hf{height:38.354167pt;}
.h10{height:39.234375pt;}
.h2{height:41.369429pt;}
.h12{height:41.687500pt;}
.hd{height:43.148438pt;}
.hb{height:44.683333pt;}
.h6{height:45.833333pt;}
.h15{height:46.033854pt;}
.h5{height:47.375000pt;}
.ha{height:48.825000pt;}
.h18{height:50.416667pt;}
.h17{height:50.531250pt;}
.h16{height:52.736979pt;}
.h9{height:53.695833pt;}
.he{height:55.270833pt;}
.h8{height:64.166667pt;}
.h4{height:72.187500pt;}
.h1b{height:77.031250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:18.826267pt;}
.xf{left:23.014267pt;}
.xd{left:26.962267pt;}
.x2{left:34.113733pt;}
.xa{left:40.605467pt;}
.xc{left:54.026267pt;}
.x12{left:56.692933pt;}
.x11{left:59.212533pt;}
.xb{left:63.001600pt;}
.x9{left:64.749467pt;}
.x8{left:74.281067pt;}
.x15{left:80.688773pt;}
.x10{left:83.218267pt;}
.x3{left:187.716533pt;}
.x5{left:189.133067pt;}
.x7{left:206.921600pt;}
.x6{left:215.152533pt;}
.x1{left:274.165600pt;}
.x14{left:494.382133pt;}
.x4{left:604.156267pt;}
.x13{left:721.332933pt;}
}




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