
    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_8eb10205b5c6f06e52f44fc2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_55a2ce2769f821cabdb608c2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e718c2cfc755139223750d8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_e2845b3575d7f3d0bd589d1c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_e8e3a5c786ab972fdf1d62ad.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_4c82beb82e3a02221a57db04.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_c82d1de94ac59ded2dd0135c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_6cd8f5e96cc7f2ff84e34151.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_2a76d60401818840ea2c3328.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_3fafbdc99a6d28ad0d468a57.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_5d98211515bd31f1476591bd.woff')format("woff");}.fff{font-family:fff;line-height:0.952148;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_8de0f1016cdd61afdc2578b1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_ea9a32b6a1a464865d982a97.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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;}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.072600px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:0.093217px;}
.ls7{letter-spacing:0.208948px;}
.ls5{letter-spacing:0.243948px;}
.ls6{letter-spacing:0.341340px;}
.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:-22.407831px;}
.ws0{word-spacing:-18.021231px;}
.ws2{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.179034px;}
.ws9{word-spacing:-13.924943px;}
.ws8{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.257943px;}
.ws6{word-spacing:-13.107212px;}
.ws5{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-670.683089px;}
._3{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._2{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._34{margin-left:-2.580984px;}
._1{margin-left:-1.187579px;}
._0{width:1.020660px;}
._d{width:2.629037px;}
._f{width:4.259098px;}
._e{width:5.516630px;}
._12{width:7.359787px;}
._13{width:8.364931px;}
._1e{width:9.383167px;}
._10{width:10.538287px;}
._11{width:11.572291px;}
._3a{width:12.688485px;}
._c{width:14.989865px;}
._14{width:16.433566px;}
._1c{width:17.554633px;}
._1a{width:18.789050px;}
._1b{width:20.041469px;}
._20{width:21.582509px;}
._1d{width:22.978095px;}
._29{width:24.540892px;}
._24{width:25.831741px;}
._25{width:26.947580px;}
._15{width:28.596610px;}
._2d{width:29.608531px;}
._16{width:30.744130px;}
._26{width:32.140662px;}
._2b{width:33.170829px;}
._2a{width:34.852081px;}
._18{width:36.179995px;}
._19{width:37.226139px;}
._2f{width:38.382352px;}
._2e{width:39.493528px;}
._33{width:41.022573px;}
._1f{width:42.243754px;}
._21{width:43.355618px;}
._22{width:44.591842px;}
._2c{width:45.769977px;}
._23{width:46.910245px;}
._32{width:48.777491px;}
._37{width:50.091949px;}
._36{width:53.574334px;}
._27{width:57.269974px;}
._28{width:58.367102px;}
._39{width:63.502199px;}
._35{width:65.345452px;}
._38{width:69.179396px;}
._31{width:76.221854px;}
._30{width:82.374444px;}
._17{width:83.621441px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fs9{font-size:23.759990px;}
.fsc{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4a{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.yac{bottom:3.059006px;}
.yae{bottom:3.059013px;}
.yb0{bottom:3.059020px;}
.yb3{bottom:3.059027px;}
.yb6{bottom:3.059033px;}
.yb9{bottom:3.059040px;}
.ybc{bottom:3.059047px;}
.ybf{bottom:3.059053px;}
.yc2{bottom:3.059060px;}
.y20{bottom:3.059100px;}
.yc9{bottom:3.059112px;}
.ycb{bottom:3.059119px;}
.ycd{bottom:3.059126px;}
.yd0{bottom:3.059132px;}
.yd3{bottom:3.059139px;}
.y2a{bottom:3.059144px;}
.yd6{bottom:3.059146px;}
.yd9{bottom:3.059152px;}
.ydc{bottom:3.059159px;}
.ydf{bottom:3.059165px;}
.ye5{bottom:3.059206px;}
.ye7{bottom:3.059213px;}
.y8b{bottom:3.059220px;}
.y8d{bottom:3.059227px;}
.y90{bottom:3.059233px;}
.y93{bottom:3.059240px;}
.y96{bottom:3.059247px;}
.y99{bottom:3.059253px;}
.y9c{bottom:3.059260px;}
.y9f{bottom:3.059266px;}
.ya1{bottom:3.059273px;}
.y15{bottom:3.239032px;}
.y27{bottom:3.419133px;}
.y45{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y7{bottom:4.140028px;}
.y22{bottom:4.319100px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859040px;}
.y1b{bottom:4.859058px;}
.y25{bottom:4.859118px;}
.y8{bottom:58.620277px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.y100{bottom:112.979955px;}
.y42{bottom:115.859954px;}
.y89{bottom:118.199953px;}
.ya8{bottom:118.559953px;}
.y76{bottom:130.619948px;}
.yff{bottom:136.019946px;}
.y41{bottom:138.899944px;}
.y88{bottom:141.239944px;}
.ya7{bottom:141.419943px;}
.y75{bottom:153.479939px;}
.yfe{bottom:159.059936px;}
.y40{bottom:161.939935px;}
.y87{bottom:164.279934px;}
.ya6{bottom:164.459934px;}
.y74{bottom:176.519929px;}
.yfd{bottom:181.919927px;}
.y3f{bottom:184.979926px;}
.ya5{bottom:187.499925px;}
.y86{bottom:187.859925px;}
.y73{bottom:199.559920px;}
.yfc{bottom:204.959918px;}
.y3e{bottom:207.839917px;}
.ya4{bottom:210.539916px;}
.y85{bottom:211.619915px;}
.y72{bottom:222.599911px;}
.yfb{bottom:227.999909px;}
.y3d{bottom:230.879908px;}
.ya3{bottom:233.579907px;}
.y84{bottom:235.379906px;}
.y71{bottom:245.639902px;}
.yfa{bottom:251.039900px;}
.y3c{bottom:253.919898px;}
.ya2{bottom:255.179898px;}
.y83{bottom:259.139896px;}
.y70{bottom:268.679893px;}
.yf9{bottom:271.379891px;}
.y3b{bottom:276.959889px;}
.y82{bottom:283.079887px;}
.yf8{bottom:290.279884px;}
.y6f{bottom:291.539883px;}
.y3a{bottom:299.999880px;}
.y81{bottom:306.839877px;}
.yf7{bottom:311.699875px;}
.ya0{bottom:314.400600px;}
.y6e{bottom:314.579874px;}
.y39{bottom:323.039871px;}
.y80{bottom:330.599868px;}
.y9e{bottom:330.780600px;}
.yf6{bottom:333.119867px;}
.y6d{bottom:337.619865px;}
.y38{bottom:345.899862px;}
.y9b{bottom:347.340600px;}
.yf4{bottom:347.700600px;}
.y9d{bottom:354.179858px;}
.y7f{bottom:354.359858px;}
.yf5{bottom:354.539858px;}
.y6c{bottom:360.659856px;}
.y37{bottom:362.099855px;}
.y98{bottom:363.720600px;}
.yf2{bottom:364.080600px;}
.y36{bottom:365.879854px;}
.y9a{bottom:370.559852px;}
.yf3{bottom:370.919852px;}
.y7e{bottom:378.119849px;}
.y95{bottom:380.280600px;}
.yf0{bottom:380.640600px;}
.y6b{bottom:383.699847px;}
.y35{bottom:386.399845px;}
.y97{bottom:387.119845px;}
.yf1{bottom:387.479845px;}
.y92{bottom:396.660600px;}
.yee{bottom:397.020600px;}
.y7d{bottom:401.879839px;}
.y94{bottom:403.499839px;}
.yef{bottom:403.859838px;}
.y6a{bottom:406.739837px;}
.y34{bottom:409.439836px;}
.y8f{bottom:413.220600px;}
.yec{bottom:413.580600px;}
.y91{bottom:420.059832px;}
.yed{bottom:420.419832px;}
.y7c{bottom:425.639830px;}
.y69{bottom:429.599828px;}
.y8c{bottom:429.600600px;}
.yea{bottom:429.960600px;}
.y33{bottom:432.479827px;}
.y8e{bottom:436.439825px;}
.yeb{bottom:436.799825px;}
.ye8{bottom:446.520600px;}
.y8a{bottom:447.240600px;}
.y7b{bottom:449.399820px;}
.y68{bottom:452.639819px;}
.ye9{bottom:453.359819px;}
.y32{bottom:455.339818px;}
.y13d{bottom:455.879818px;}
.ye6{bottom:463.980600px;}
.y7a{bottom:473.159811px;}
.y67{bottom:475.679810px;}
.y31{bottom:478.379809px;}
.y13c{bottom:478.739809px;}
.ye4{bottom:481.620600px;}
.y120{bottom:496.379801px;}
.y79{bottom:496.919801px;}
.y66{bottom:498.719801px;}
.y30{bottom:501.419799px;}
.y13b{bottom:501.779799px;}
.ye3{bottom:508.439797px;}
.y11f{bottom:517.619793px;}
.y78{bottom:520.679792px;}
.y65{bottom:521.759791px;}
.y2f{bottom:524.459790px;}
.y13a{bottom:525.359790px;}
.ye2{bottom:528.959788px;}
.y11e{bottom:539.039784px;}
.y77{bottom:544.619782px;}
.y64{bottom:544.799782px;}
.y2e{bottom:547.499781px;}
.ye1{bottom:547.859781px;}
.y139{bottom:548.939780px;}
.y11d{bottom:560.639776px;}
.y63{bottom:567.659773px;}
.ye0{bottom:569.279772px;}
.y2d{bottom:570.539772px;}
.y138{bottom:572.519771px;}
.y11c{bottom:582.059767px;}
.yde{bottom:583.860600px;}
.y62{bottom:590.699764px;}
.y2c{bottom:593.399763px;}
.y137{bottom:596.279761px;}
.ydb{bottom:600.240600px;}
.y11b{bottom:603.479759px;}
.ydd{bottom:607.079757px;}
.y61{bottom:613.739755px;}
.y2b{bottom:616.439753px;}
.yd8{bottom:616.800600px;}
.y136{bottom:619.859752px;}
.yda{bottom:623.639751px;}
.y11a{bottom:624.899750px;}
.yd5{bottom:633.180600px;}
.y29{bottom:636.420600px;}
.y60{bottom:636.779745px;}
.yd7{bottom:640.019744px;}
.y135{bottom:643.619743px;}
.y119{bottom:644.519742px;}
.yd2{bottom:649.740600px;}
.yd4{bottom:656.579737px;}
.y5f{bottom:659.819736px;}
.y118{bottom:663.239735px;}
.y26{bottom:664.500600px;}
.ycf{bottom:666.120600px;}
.y134{bottom:667.199733px;}
.y28{bottom:667.919733px;}
.yd1{bottom:672.959731px;}
.y5e{bottom:682.679727px;}
.ycc{bottom:682.680600px;}
.y117{bottom:684.659726px;}
.y133{bottom:688.259725px;}
.yce{bottom:689.519724px;}
.yca{bottom:700.140600px;}
.y24{bottom:700.860600px;}
.y23{bottom:705.719718px;}
.y116{bottom:706.079718px;}
.y132{bottom:709.139716px;}
.yc8{bottom:717.780600px;}
.y115{bottom:727.499709px;}
.y5d{bottom:728.759708px;}
.y131{bottom:732.899707px;}
.y21{bottom:745.320600px;}
.yc7{bottom:746.219702px;}
.y1f{bottom:746.580600px;}
.y114{bottom:749.099700px;}
.y5c{bottom:751.799699px;}
.y130{bottom:756.479697px;}
.y1e{bottom:765.659694px;}
.yc6{bottom:766.739693px;}
.y113{bottom:770.519692px;}
.y5b{bottom:774.839690px;}
.y12f{bottom:780.239688px;}
.yc5{bottom:787.259685px;}
.y112{bottom:790.139684px;}
.y1d{bottom:793.739683px;}
.y5a{bottom:797.879681px;}
.y12e{bottom:801.299679px;}
.y111{bottom:808.679677px;}
.yc4{bottom:810.119676px;}
.y59{bottom:820.739672px;}
.y12d{bottom:822.179671px;}
.y1c{bottom:824.339670px;}
.y110{bottom:830.099668px;}
.yc3{bottom:833.159667px;}
.y58{bottom:843.779662px;}
.y12c{bottom:845.939662px;}
.yc1{bottom:847.560600px;}
.y1a{bottom:850.080600px;}
.y10f{bottom:851.699659px;}
.ybe{bottom:863.940600px;}
.y57{bottom:866.819653px;}
.y12b{bottom:869.519652px;}
.yc0{bottom:870.779652px;}
.y19{bottom:872.759651px;}
.y10e{bottom:873.119651px;}
.ybb{bottom:880.500600px;}
.ybd{bottom:887.339645px;}
.y56{bottom:889.859644px;}
.y12a{bottom:890.579644px;}
.y10d{bottom:894.539642px;}
.y16{bottom:895.440600px;}
.yb8{bottom:896.880600px;}
.yba{bottom:903.719639px;}
.y18{bottom:905.519638px;}
.y129{bottom:911.459635px;}
.y55{bottom:912.899635px;}
.yb5{bottom:913.440600px;}
.y10c{bottom:914.159634px;}
.y14{bottom:915.780600px;}
.yb7{bottom:920.279632px;}
.yb2{bottom:929.820600px;}
.y10b{bottom:932.699627px;}
.y128{bottom:935.219626px;}
.y54{bottom:935.939626px;}
.yb4{bottom:936.659625px;}
.yaf{bottom:946.380600px;}
.y13{bottom:949.259620px;}
.yb1{bottom:953.219619px;}
.y10a{bottom:954.299618px;}
.y53{bottom:958.799616px;}
.yad{bottom:963.840600px;}
.y109{bottom:975.719610px;}
.yab{bottom:981.480600px;}
.y52{bottom:981.839607px;}
.y127{bottom:982.559607px;}
.y12{bottom:990.119604px;}
.y108{bottom:997.139601px;}
.y51{bottom:1004.879598px;}
.y126{bottom:1006.139598px;}
.yaa{bottom:1009.919596px;}
.y11{bottom:1013.519595px;}
.y107{bottom:1018.739593px;}
.y50{bottom:1027.919589px;}
.y125{bottom:1029.719588px;}
.y10{bottom:1029.899588px;}
.yf{bottom:1030.259588px;}
.ya9{bottom:1030.439588px;}
.y106{bottom:1038.179585px;}
.y124{bottom:1050.779580px;}
.y4f{bottom:1050.959580px;}
.y105{bottom:1056.899577px;}
.y123{bottom:1071.839571px;}
.y49{bottom:1073.280600px;}
.y4e{bottom:1073.999570px;}
.y104{bottom:1078.319569px;}
.y48{bottom:1082.279567px;}
.y122{bottom:1095.419562px;}
.y4d{bottom:1096.859561px;}
.y103{bottom:1099.739560px;}
.y47{bottom:1103.519559px;}
.y121{bottom:1119.179552px;}
.y4c{bottom:1119.899552px;}
.y102{bottom:1121.339551px;}
.y46{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.y101{bottom:1142.759543px;}
.y4b{bottom:1142.939543px;}
.y44{bottom:1145.280600px;}
.y43{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y9{bottom:1195.860600px;}
.h25{height:2.880000px;}
.he{height:8.289489px;}
.h10{height:13.500000px;}
.h18{height:15.120000px;}
.h27{height:15.300000px;}
.h1f{height:16.091361px;}
.h1a{height:16.380000px;}
.h1d{height:17.100000px;}
.h4{height:19.800000px;}
.h12{height:20.160000px;}
.h15{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h23{height:21.780000px;}
.h20{height:25.913662px;}
.h13{height:26.331318px;}
.h28{height:27.228505px;}
.h2a{height:31.585065px;}
.h11{height:32.670338px;}
.h1c{height:33.588971px;}
.h29{height:36.486196px;}
.h14{height:36.886626px;}
.h17{height:40.005336px;}
.h19{height:40.842757px;}
.h24{height:41.290999px;}
.h21{height:43.185920px;}
.h1e{height:45.199318px;}
.hb{height:47.988262px;}
.h16{height:48.199199px;}
.h5{height:48.761699px;}
.h26{height:49.907793px;}
.h1b{height:50.132792px;}
.hd{height:54.457009px;}
.h22{height:55.054665px;}
.h8{height:57.051188px;}
.hf{height:64.853060px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w11{width:4.500000px;}
.w2{width:4.680000px;}
.w2b{width:5.040000px;}
.w1{width:6.480000px;}
.w18{width:7.200000px;}
.w14{width:7.740000px;}
.w8{width:8.280000px;}
.w15{width:8.820000px;}
.w1b{width:9.900000px;}
.w1a{width:10.620000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.wc{width:12.420000px;}
.wf{width:12.960000px;}
.w49{width:13.860000px;}
.w3e{width:15.480000px;}
.w4a{width:15.660000px;}
.w4{width:16.020000px;}
.w52{width:16.920000px;}
.w54{width:19.260000px;}
.w53{width:21.240000px;}
.w3f{width:23.040000px;}
.w28{width:23.760000px;}
.w3a{width:24.300000px;}
.w1f{width:24.480000px;}
.w57{width:25.020000px;}
.w43{width:25.200000px;}
.w39{width:25.560000px;}
.w3b{width:26.280000px;}
.w32{width:26.460000px;}
.w2a{width:26.640000px;}
.w23{width:27.000000px;}
.w30{width:28.080000px;}
.w35{width:28.260000px;}
.w4f{width:28.440000px;}
.w31{width:28.620000px;}
.w56{width:29.520000px;}
.w33{width:29.880000px;}
.w42{width:30.240000px;}
.w34{width:30.420000px;}
.w40{width:30.780000px;}
.w36{width:31.140000px;}
.w55{width:31.320000px;}
.w2c{width:31.860000px;}
.w41{width:32.040000px;}
.w26{width:32.220000px;}
.w3c{width:32.400000px;}
.w3d{width:32.580000px;}
.w4b{width:32.760000px;}
.w45{width:33.120000px;}
.w4c{width:33.300000px;}
.w5{width:33.480000px;}
.w38{width:33.660000px;}
.w21{width:33.840000px;}
.w4d{width:34.020000px;}
.w44{width:34.200000px;}
.w2d{width:34.380000px;}
.w46{width:34.560000px;}
.w37{width:35.640000px;}
.w58{width:35.820000px;}
.w4e{width:42.480000px;}
.w47{width:42.660000px;}
.w25{width:47.700000px;}
.w24{width:48.240000px;}
.w22{width:54.720000px;}
.w20{width:59.580000px;}
.w16{width:65.700000px;}
.w1c{width:69.120000px;}
.w2e{width:72.360000px;}
.w10{width:77.940000px;}
.w50{width:82.800000px;}
.w1d{width:89.280000px;}
.w51{width:93.240000px;}
.w29{width:104.940000px;}
.w1e{width:106.560000px;}
.w27{width:113.220000px;}
.w3{width:119.700000px;}
.wb{width:129.600000px;}
.w9{width:130.680000px;}
.w13{width:142.920000px;}
.w48{width:167.760000px;}
.w19{width:172.620000px;}
.w2f{width:176.040000px;}
.we{width:214.740000px;}
.wa{width:233.280000px;}
.w12{width:274.320000px;}
.wd{width:284.760000px;}
.w17{width:495.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x2f{left:116.459953px;}
.x7{left:120.240000px;}
.x2{left:128.699878px;}
.x3{left:155.700000px;}
.x6a{left:162.720000px;}
.x65{left:167.580000px;}
.x4{left:171.899931px;}
.x2c{left:174.599930px;}
.x8e{left:177.120000px;}
.x4c{left:180.360000px;}
.xc{left:185.219926px;}
.x26{left:187.200000px;}
.x27{left:191.700000px;}
.x79{left:212.940000px;}
.x58{left:214.560000px;}
.x78{left:221.220000px;}
.x8{left:239.940000px;}
.x21{left:244.800000px;}
.xd{left:259.740316px;}
.x5{left:295.560000px;}
.x6{left:300.239880px;}
.x72{left:311.940000px;}
.x50{left:316.080000px;}
.x59{left:325.980000px;}
.x5a{left:334.260000px;}
.x6e{left:339.479864px;}
.x66{left:340.739864px;}
.x31{left:342.539863px;}
.x51{left:344.160000px;}
.x73{left:348.120000px;}
.x9c{left:369.900000px;}
.xa2{left:371.340000px;}
.x96{left:372.960000px;}
.x92{left:379.620000px;}
.x74{left:380.880000px;}
.x6b{left:383.220000px;}
.x52{left:384.300000px;}
.x25{left:393.480000px;}
.x5b{left:394.560000px;}
.x93{left:396.540000px;}
.x97{left:398.159841px;}
.x9f{left:400.319840px;}
.x6f{left:401.399839px;}
.x5c{left:402.840000px;}
.x70{left:404.280000px;}
.x9d{left:406.440000px;}
.x67{left:409.319836px;}
.x75{left:411.119836px;}
.x68{left:412.380000px;}
.x4d{left:413.640000px;}
.x76{left:416.520000px;}
.xe{left:427.680106px;}
.xf{left:432.180102px;}
.x33{left:435.959826px;}
.x5d{left:447.660000px;}
.x29{left:448.920000px;}
.x6c{left:450.000000px;}
.x53{left:452.160000px;}
.x85{left:457.740000px;}
.x7a{left:461.340000px;}
.x30{left:462.600512px;}
.x28{left:466.020000px;}
.x7b{left:469.620000px;}
.x48{left:470.880000px;}
.x49{left:475.740000px;}
.x22{left:478.079809px;}
.x23{left:480.600000px;}
.x5e{left:483.120000px;}
.x86{left:490.499804px;}
.x89{left:494.640000px;}
.x8a{left:495.720000px;}
.x8c{left:500.040000px;}
.x98{left:504.540000px;}
.x4a{left:507.600000px;}
.x41{left:510.840000px;}
.x2a{left:513.179795px;}
.x10{left:516.060050px;}
.x3f{left:517.320000px;}
.x3c{left:522.180000px;}
.x5f{left:527.220000px;}
.x11{left:529.380042px;}
.x36{left:531.720000px;}
.x94{left:533.700000px;}
.x60{left:535.500000px;}
.x35{left:536.939785px;}
.xa0{left:538.019785px;}
.x6d{left:541.259783px;}
.x12{left:542.700033px;}
.x77{left:543.779782px;}
.x71{left:545.039782px;}
.x54{left:546.300000px;}
.x69{left:549.720000px;}
.x13{left:564.659960px;}
.x45{left:567.540000px;}
.x14{left:569.159957px;}
.x44{left:575.820000px;}
.x87{left:577.260000px;}
.x7c{left:578.340000px;}
.x61{left:579.600000px;}
.x15{left:582.479948px;}
.x55{left:584.460000px;}
.x80{left:588.240000px;}
.x34{left:589.679764px;}
.x8f{left:593.100000px;}
.x16{left:595.619941px;}
.x81{left:603.900000px;}
.x2d{left:604.980000px;}
.x8d{left:607.679757px;}
.x17{left:608.939932px;}
.x24{left:610.200000px;}
.x2e{left:612.180000px;}
.x18{left:613.439928px;}
.x56{left:614.880000px;}
.x62{left:619.740000px;}
.x7d{left:621.000000px;}
.x9e{left:622.080000px;}
.xa3{left:623.700000px;}
.xa1{left:625.680000px;}
.x19{left:631.079858px;}
.x1a{left:635.399856px;}
.x1b{left:648.719847px;}
.x95{left:649.980000px;}
.x63{left:651.780000px;}
.x1c{left:653.039845px;}
.x99{left:654.659738px;}
.x1d{left:657.539841px;}
.x9a{left:659.160000px;}
.x37{left:664.560000px;}
.x1e{left:666.359733px;}
.x7e{left:675.360000px;}
.x7f{left:684.000000px;}
.x57{left:685.260000px;}
.x3d{left:689.760000px;}
.x42{left:691.020000px;}
.x46{left:693.540000px;}
.x39{left:694.620000px;}
.x9{left:697.320000px;}
.x8b{left:698.760000px;}
.x82{left:701.280000px;}
.x83{left:706.140000px;}
.x90{left:716.040000px;}
.x3a{left:719.099712px;}
.x40{left:721.079712px;}
.x3b{left:723.600000px;}
.x47{left:724.860000px;}
.x4b{left:726.300000px;}
.x43{left:727.380000px;}
.x3e{left:728.640000px;}
.xa{left:730.800000px;}
.x88{left:732.600000px;}
.x4e{left:735.840000px;}
.x84{left:738.000000px;}
.xb{left:741.960000px;}
.x38{left:753.840000px;}
.x9b{left:755.820000px;}
.x91{left:761.040000px;}
.x64{left:762.480000px;}
.x4f{left:767.700000px;}
.x32{left:779.580000px;}
.x2b{left:781.559687px;}
.x1f{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.064533pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:0.082860pt;}
.ls7{letter-spacing:0.185732pt;}
.ls5{letter-spacing:0.216843pt;}
.ls6{letter-spacing:0.303413pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws2{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.492475pt;}
.ws9{word-spacing:-12.377727pt;}
.ws8{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.784838pt;}
.ws6{word-spacing:-11.650855pt;}
.ws5{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-596.162746pt;}
._3{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._2{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._34{margin-left:-2.294208pt;}
._1{margin-left:-1.055625pt;}
._0{width:0.907253pt;}
._d{width:2.336922pt;}
._f{width:3.785865pt;}
._e{width:4.903671pt;}
._12{width:6.542033pt;}
._13{width:7.435494pt;}
._1e{width:8.340593pt;}
._10{width:9.367366pt;}
._11{width:10.286481pt;}
._3a{width:11.278654pt;}
._c{width:13.324324pt;}
._14{width:14.607614pt;}
._1c{width:15.604119pt;}
._1a{width:16.701378pt;}
._1b{width:17.814639pt;}
._20{width:19.184452pt;}
._1d{width:20.424973pt;}
._29{width:21.814126pt;}
._24{width:22.961548pt;}
._25{width:23.953404pt;}
._15{width:25.419209pt;}
._2d{width:26.318695pt;}
._16{width:27.328115pt;}
._26{width:28.569477pt;}
._2b{width:29.485181pt;}
._2a{width:30.979628pt;}
._18{width:32.159996pt;}
._19{width:33.089901pt;}
._2f{width:34.117647pt;}
._2e{width:35.105358pt;}
._33{width:36.464510pt;}
._1f{width:37.550003pt;}
._21{width:38.538327pt;}
._22{width:39.637193pt;}
._2c{width:40.684424pt;}
._23{width:41.697995pt;}
._32{width:43.357770pt;}
._37{width:44.526177pt;}
._36{width:47.621631pt;}
._27{width:50.906643pt;}
._28{width:51.881868pt;}
._39{width:56.446399pt;}
._35{width:58.084846pt;}
._38{width:61.492797pt;}
._31{width:67.752759pt;}
._30{width:73.221728pt;}
._17{width:74.330170pt;}
.fsa{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fs9{font-size:21.119992pt;}
.fsc{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4a{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.yac{bottom:2.719117pt;}
.yae{bottom:2.719123pt;}
.yb0{bottom:2.719129pt;}
.yb3{bottom:2.719135pt;}
.yb6{bottom:2.719141pt;}
.yb9{bottom:2.719147pt;}
.ybc{bottom:2.719153pt;}
.ybf{bottom:2.719158pt;}
.yc2{bottom:2.719164pt;}
.y20{bottom:2.719200pt;}
.yc9{bottom:2.719210pt;}
.ycb{bottom:2.719217pt;}
.ycd{bottom:2.719223pt;}
.yd0{bottom:2.719229pt;}
.yd3{bottom:2.719235pt;}
.y2a{bottom:2.719239pt;}
.yd6{bottom:2.719240pt;}
.yd9{bottom:2.719246pt;}
.ydc{bottom:2.719252pt;}
.ydf{bottom:2.719258pt;}
.ye5{bottom:2.719294pt;}
.ye7{bottom:2.719301pt;}
.y8b{bottom:2.719307pt;}
.y8d{bottom:2.719313pt;}
.y90{bottom:2.719319pt;}
.y93{bottom:2.719325pt;}
.y96{bottom:2.719330pt;}
.y99{bottom:2.719336pt;}
.y9c{bottom:2.719342pt;}
.y9f{bottom:2.719348pt;}
.ya1{bottom:2.719354pt;}
.y15{bottom:2.879140pt;}
.y27{bottom:3.039229pt;}
.y45{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y7{bottom:3.680025pt;}
.y22{bottom:3.839200pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319147pt;}
.y1b{bottom:4.319163pt;}
.y25{bottom:4.319216pt;}
.y8{bottom:52.106912pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.y100{bottom:100.426626pt;}
.y42{bottom:102.986625pt;}
.y89{bottom:105.066625pt;}
.ya8{bottom:105.386625pt;}
.y76{bottom:116.106620pt;}
.yff{bottom:120.906618pt;}
.y41{bottom:123.466617pt;}
.y88{bottom:125.546616pt;}
.ya7{bottom:125.706616pt;}
.y75{bottom:136.426612pt;}
.yfe{bottom:141.386610pt;}
.y40{bottom:143.946609pt;}
.y87{bottom:146.026608pt;}
.ya6{bottom:146.186608pt;}
.y74{bottom:156.906604pt;}
.yfd{bottom:161.706602pt;}
.y3f{bottom:164.426601pt;}
.ya5{bottom:166.666600pt;}
.y86{bottom:166.986600pt;}
.y73{bottom:177.386596pt;}
.yfc{bottom:182.186594pt;}
.y3e{bottom:184.746593pt;}
.ya4{bottom:187.146592pt;}
.y85{bottom:188.106591pt;}
.y72{bottom:197.866588pt;}
.yfb{bottom:202.666586pt;}
.y3d{bottom:205.226585pt;}
.ya3{bottom:207.626584pt;}
.y84{bottom:209.226583pt;}
.y71{bottom:218.346579pt;}
.yfa{bottom:223.146577pt;}
.y3c{bottom:225.706576pt;}
.ya2{bottom:226.826576pt;}
.y83{bottom:230.346575pt;}
.y70{bottom:238.826571pt;}
.yf9{bottom:241.226570pt;}
.y3b{bottom:246.186568pt;}
.y82{bottom:251.626566pt;}
.yf8{bottom:258.026563pt;}
.y6f{bottom:259.146563pt;}
.y3a{bottom:266.666560pt;}
.y81{bottom:272.746558pt;}
.yf7{bottom:277.066556pt;}
.ya0{bottom:279.467200pt;}
.y6e{bottom:279.626555pt;}
.y39{bottom:287.146552pt;}
.y80{bottom:293.866549pt;}
.y9e{bottom:294.027200pt;}
.yf6{bottom:296.106548pt;}
.y6d{bottom:300.106547pt;}
.y38{bottom:307.466544pt;}
.y9b{bottom:308.747200pt;}
.yf4{bottom:309.067200pt;}
.y9d{bottom:314.826541pt;}
.y7f{bottom:314.986541pt;}
.yf5{bottom:315.146541pt;}
.y6c{bottom:320.586538pt;}
.y37{bottom:321.866538pt;}
.y98{bottom:323.307200pt;}
.yf2{bottom:323.627200pt;}
.y36{bottom:325.226537pt;}
.y9a{bottom:329.386535pt;}
.yf3{bottom:329.706535pt;}
.y7e{bottom:336.106532pt;}
.y95{bottom:338.027200pt;}
.yf0{bottom:338.347200pt;}
.y6b{bottom:341.066530pt;}
.y35{bottom:343.466529pt;}
.y97{bottom:344.106529pt;}
.yf1{bottom:344.426529pt;}
.y92{bottom:352.587200pt;}
.yee{bottom:352.907200pt;}
.y7d{bottom:357.226524pt;}
.y94{bottom:358.666523pt;}
.yef{bottom:358.986523pt;}
.y6a{bottom:361.546522pt;}
.y34{bottom:363.946521pt;}
.y8f{bottom:367.307200pt;}
.yec{bottom:367.627200pt;}
.y91{bottom:373.386517pt;}
.yed{bottom:373.706517pt;}
.y7c{bottom:378.346515pt;}
.y69{bottom:381.866514pt;}
.y8c{bottom:381.867200pt;}
.yea{bottom:382.187200pt;}
.y33{bottom:384.426513pt;}
.y8e{bottom:387.946511pt;}
.yeb{bottom:388.266511pt;}
.ye8{bottom:396.907200pt;}
.y8a{bottom:397.547200pt;}
.y7b{bottom:399.466507pt;}
.y68{bottom:402.346506pt;}
.ye9{bottom:402.986505pt;}
.y32{bottom:404.746505pt;}
.y13d{bottom:405.226505pt;}
.ye6{bottom:412.427200pt;}
.y7a{bottom:420.586498pt;}
.y67{bottom:422.826498pt;}
.y31{bottom:425.226497pt;}
.y13c{bottom:425.546496pt;}
.ye4{bottom:428.107200pt;}
.y120{bottom:441.226490pt;}
.y79{bottom:441.706490pt;}
.y66{bottom:443.306489pt;}
.y30{bottom:445.706488pt;}
.y13b{bottom:446.026488pt;}
.ye3{bottom:451.946486pt;}
.y11f{bottom:460.106483pt;}
.y78{bottom:462.826482pt;}
.y65{bottom:463.786481pt;}
.y2f{bottom:466.186480pt;}
.y13a{bottom:466.986480pt;}
.ye2{bottom:470.186479pt;}
.y11e{bottom:479.146475pt;}
.y77{bottom:484.106473pt;}
.y64{bottom:484.266473pt;}
.y2e{bottom:486.666472pt;}
.ye1{bottom:486.986472pt;}
.y139{bottom:487.946471pt;}
.y11d{bottom:498.346467pt;}
.y63{bottom:504.586465pt;}
.ye0{bottom:506.026464pt;}
.y2d{bottom:507.146464pt;}
.y138{bottom:508.906463pt;}
.y11c{bottom:517.386460pt;}
.yde{bottom:518.987200pt;}
.y62{bottom:525.066457pt;}
.y2c{bottom:527.466456pt;}
.y137{bottom:530.026455pt;}
.ydb{bottom:533.547200pt;}
.y11b{bottom:536.426452pt;}
.ydd{bottom:539.626451pt;}
.y61{bottom:545.546448pt;}
.y2b{bottom:547.946447pt;}
.yd8{bottom:548.267200pt;}
.y136{bottom:550.986446pt;}
.yda{bottom:554.346445pt;}
.y11a{bottom:555.466444pt;}
.yd5{bottom:562.827200pt;}
.y29{bottom:565.707200pt;}
.y60{bottom:566.026440pt;}
.yd7{bottom:568.906439pt;}
.y135{bottom:572.106438pt;}
.y119{bottom:572.906438pt;}
.yd2{bottom:577.547200pt;}
.yd4{bottom:583.626433pt;}
.y5f{bottom:586.506432pt;}
.y118{bottom:589.546431pt;}
.y26{bottom:590.667200pt;}
.ycf{bottom:592.107200pt;}
.y134{bottom:593.066429pt;}
.y28{bottom:593.706429pt;}
.yd1{bottom:598.186427pt;}
.y5e{bottom:606.826424pt;}
.ycc{bottom:606.827200pt;}
.y117{bottom:608.586423pt;}
.y133{bottom:611.786422pt;}
.yce{bottom:612.906422pt;}
.yca{bottom:622.347200pt;}
.y24{bottom:622.987200pt;}
.y23{bottom:627.306416pt;}
.y116{bottom:627.626416pt;}
.y132{bottom:630.346415pt;}
.yc8{bottom:638.027200pt;}
.y115{bottom:646.666408pt;}
.y5d{bottom:647.786408pt;}
.y131{bottom:651.466406pt;}
.y21{bottom:662.507200pt;}
.yc7{bottom:663.306401pt;}
.y1f{bottom:663.627200pt;}
.y114{bottom:665.866400pt;}
.y5c{bottom:668.266399pt;}
.y130{bottom:672.426398pt;}
.y1e{bottom:680.586394pt;}
.yc6{bottom:681.546394pt;}
.y113{bottom:684.906393pt;}
.y5b{bottom:688.746391pt;}
.y12f{bottom:693.546389pt;}
.yc5{bottom:699.786387pt;}
.y112{bottom:702.346386pt;}
.y1d{bottom:705.546384pt;}
.y5a{bottom:709.226383pt;}
.y12e{bottom:712.266382pt;}
.y111{bottom:718.826379pt;}
.yc4{bottom:720.106379pt;}
.y59{bottom:729.546375pt;}
.y12d{bottom:730.826374pt;}
.y1c{bottom:732.746374pt;}
.y110{bottom:737.866372pt;}
.yc3{bottom:740.586370pt;}
.y58{bottom:750.026367pt;}
.y12c{bottom:751.946366pt;}
.yc1{bottom:753.387200pt;}
.y1a{bottom:755.627200pt;}
.y10f{bottom:757.066364pt;}
.ybe{bottom:767.947200pt;}
.y57{bottom:770.506358pt;}
.y12b{bottom:772.906358pt;}
.yc0{bottom:774.026357pt;}
.y19{bottom:775.786356pt;}
.y10e{bottom:776.106356pt;}
.ybb{bottom:782.667200pt;}
.ybd{bottom:788.746351pt;}
.y56{bottom:790.986350pt;}
.y12a{bottom:791.626350pt;}
.y10d{bottom:795.146349pt;}
.y16{bottom:795.947200pt;}
.yb8{bottom:797.227200pt;}
.yba{bottom:803.306345pt;}
.y18{bottom:804.906345pt;}
.y129{bottom:810.186343pt;}
.y55{bottom:811.466342pt;}
.yb5{bottom:811.947200pt;}
.y10c{bottom:812.586342pt;}
.y14{bottom:814.027200pt;}
.yb7{bottom:818.026339pt;}
.yb2{bottom:826.507200pt;}
.y10b{bottom:829.066335pt;}
.y128{bottom:831.306334pt;}
.y54{bottom:831.946334pt;}
.yb4{bottom:832.586334pt;}
.yaf{bottom:841.227200pt;}
.y13{bottom:843.786329pt;}
.yb1{bottom:847.306328pt;}
.y10a{bottom:848.266327pt;}
.y53{bottom:852.266326pt;}
.yad{bottom:856.747200pt;}
.y109{bottom:867.306320pt;}
.yab{bottom:872.427200pt;}
.y52{bottom:872.746318pt;}
.y127{bottom:873.386317pt;}
.y12{bottom:880.106315pt;}
.y108{bottom:886.346312pt;}
.y51{bottom:893.226309pt;}
.y126{bottom:894.346309pt;}
.yaa{bottom:897.706308pt;}
.y11{bottom:900.906306pt;}
.y107{bottom:905.546304pt;}
.y50{bottom:913.706301pt;}
.y125{bottom:915.306301pt;}
.y10{bottom:915.466300pt;}
.yf{bottom:915.786300pt;}
.ya9{bottom:915.946300pt;}
.y106{bottom:922.826298pt;}
.y124{bottom:934.026293pt;}
.y4f{bottom:934.186293pt;}
.y105{bottom:939.466291pt;}
.y123{bottom:952.746286pt;}
.y49{bottom:954.027200pt;}
.y4e{bottom:954.666285pt;}
.y104{bottom:958.506283pt;}
.y48{bottom:962.026282pt;}
.y122{bottom:973.706277pt;}
.y4d{bottom:974.986277pt;}
.y103{bottom:977.546276pt;}
.y47{bottom:980.906274pt;}
.y121{bottom:994.826269pt;}
.y4c{bottom:995.466268pt;}
.y102{bottom:996.746268pt;}
.y46{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.y101{bottom:1015.786260pt;}
.y4b{bottom:1015.946260pt;}
.y44{bottom:1018.027200pt;}
.y43{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y9{bottom:1062.987200pt;}
.h25{height:2.560000pt;}
.he{height:7.368435pt;}
.h10{height:12.000000pt;}
.h18{height:13.440000pt;}
.h27{height:13.600000pt;}
.h1f{height:14.303432pt;}
.h1a{height:14.560000pt;}
.h1d{height:15.200000pt;}
.h4{height:17.600000pt;}
.h12{height:17.920000pt;}
.h15{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h23{height:19.360000pt;}
.h20{height:23.034366pt;}
.h13{height:23.405616pt;}
.h28{height:24.203115pt;}
.h2a{height:28.075614pt;}
.h11{height:29.040301pt;}
.h1c{height:29.856863pt;}
.h29{height:32.432175pt;}
.h14{height:32.788112pt;}
.h17{height:35.560298pt;}
.h19{height:36.304673pt;}
.h24{height:36.703110pt;}
.h21{height:38.387485pt;}
.h1e{height:40.177171pt;}
.hb{height:42.656233pt;}
.h16{height:42.843733pt;}
.h5{height:43.343733pt;}
.h26{height:44.362482pt;}
.h1b{height:44.562482pt;}
.hd{height:48.406231pt;}
.h22{height:48.937480pt;}
.h8{height:50.712167pt;}
.hf{height:57.647164pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w11{width:4.000000pt;}
.w2{width:4.160000pt;}
.w2b{width:4.480000pt;}
.w1{width:5.760000pt;}
.w18{width:6.400000pt;}
.w14{width:6.880000pt;}
.w8{width:7.360000pt;}
.w15{width:7.840000pt;}
.w1b{width:8.800000pt;}
.w1a{width:9.440000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.wc{width:11.040000pt;}
.wf{width:11.520000pt;}
.w49{width:12.320000pt;}
.w3e{width:13.760000pt;}
.w4a{width:13.920000pt;}
.w4{width:14.240000pt;}
.w52{width:15.040000pt;}
.w54{width:17.120000pt;}
.w53{width:18.880000pt;}
.w3f{width:20.480000pt;}
.w28{width:21.120000pt;}
.w3a{width:21.600000pt;}
.w1f{width:21.760000pt;}
.w57{width:22.240000pt;}
.w43{width:22.400000pt;}
.w39{width:22.720000pt;}
.w3b{width:23.360000pt;}
.w32{width:23.520000pt;}
.w2a{width:23.680000pt;}
.w23{width:24.000000pt;}
.w30{width:24.960000pt;}
.w35{width:25.120000pt;}
.w4f{width:25.280000pt;}
.w31{width:25.440000pt;}
.w56{width:26.240000pt;}
.w33{width:26.560000pt;}
.w42{width:26.880000pt;}
.w34{width:27.040000pt;}
.w40{width:27.360000pt;}
.w36{width:27.680000pt;}
.w55{width:27.840000pt;}
.w2c{width:28.320000pt;}
.w41{width:28.480000pt;}
.w26{width:28.640000pt;}
.w3c{width:28.800000pt;}
.w3d{width:28.960000pt;}
.w4b{width:29.120000pt;}
.w45{width:29.440000pt;}
.w4c{width:29.600000pt;}
.w5{width:29.760000pt;}
.w38{width:29.920000pt;}
.w21{width:30.080000pt;}
.w4d{width:30.240000pt;}
.w44{width:30.400000pt;}
.w2d{width:30.560000pt;}
.w46{width:30.720000pt;}
.w37{width:31.680000pt;}
.w58{width:31.840000pt;}
.w4e{width:37.760000pt;}
.w47{width:37.920000pt;}
.w25{width:42.400000pt;}
.w24{width:42.880000pt;}
.w22{width:48.640000pt;}
.w20{width:52.960000pt;}
.w16{width:58.400000pt;}
.w1c{width:61.440000pt;}
.w2e{width:64.320000pt;}
.w10{width:69.280000pt;}
.w50{width:73.600000pt;}
.w1d{width:79.360000pt;}
.w51{width:82.880000pt;}
.w29{width:93.280000pt;}
.w1e{width:94.720000pt;}
.w27{width:100.640000pt;}
.w3{width:106.400000pt;}
.wb{width:115.200000pt;}
.w9{width:116.160000pt;}
.w13{width:127.040000pt;}
.w48{width:149.120000pt;}
.w19{width:153.440000pt;}
.w2f{width:156.480000pt;}
.we{width:190.880000pt;}
.wa{width:207.360000pt;}
.w12{width:243.840000pt;}
.wd{width:253.120000pt;}
.w17{width:440.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x2f{left:103.519959pt;}
.x7{left:106.880000pt;}
.x2{left:114.399892pt;}
.x3{left:138.400000pt;}
.x6a{left:144.640000pt;}
.x65{left:148.960000pt;}
.x4{left:152.799939pt;}
.x2c{left:155.199938pt;}
.x8e{left:157.440000pt;}
.x4c{left:160.320000pt;}
.xc{left:164.639934pt;}
.x26{left:166.400000pt;}
.x27{left:170.400000pt;}
.x79{left:189.280000pt;}
.x58{left:190.720000pt;}
.x78{left:196.640000pt;}
.x8{left:213.280000pt;}
.x21{left:217.600000pt;}
.xd{left:230.880281pt;}
.x5{left:262.720000pt;}
.x6{left:266.879893pt;}
.x72{left:277.280000pt;}
.x50{left:280.960000pt;}
.x59{left:289.760000pt;}
.x5a{left:297.120000pt;}
.x6e{left:301.759879pt;}
.x66{left:302.879879pt;}
.x31{left:304.479878pt;}
.x51{left:305.920000pt;}
.x73{left:309.440000pt;}
.x9c{left:328.800000pt;}
.xa2{left:330.080000pt;}
.x96{left:331.520000pt;}
.x92{left:337.440000pt;}
.x74{left:338.560000pt;}
.x6b{left:340.640000pt;}
.x52{left:341.600000pt;}
.x25{left:349.760000pt;}
.x5b{left:350.720000pt;}
.x93{left:352.480000pt;}
.x97{left:353.919858pt;}
.x9f{left:355.839858pt;}
.x6f{left:356.799857pt;}
.x5c{left:358.080000pt;}
.x70{left:359.360000pt;}
.x9d{left:361.280000pt;}
.x67{left:363.839854pt;}
.x75{left:365.439854pt;}
.x68{left:366.560000pt;}
.x4d{left:367.680000pt;}
.x76{left:370.240000pt;}
.xe{left:380.160094pt;}
.xf{left:384.160091pt;}
.x33{left:387.519845pt;}
.x5d{left:397.920000pt;}
.x29{left:399.040000pt;}
.x6c{left:400.000000pt;}
.x53{left:401.920000pt;}
.x85{left:406.880000pt;}
.x7a{left:410.080000pt;}
.x30{left:411.200455pt;}
.x28{left:414.240000pt;}
.x7b{left:417.440000pt;}
.x48{left:418.560000pt;}
.x49{left:422.880000pt;}
.x22{left:424.959830pt;}
.x23{left:427.200000pt;}
.x5e{left:429.440000pt;}
.x86{left:435.999826pt;}
.x89{left:439.680000pt;}
.x8a{left:440.640000pt;}
.x8c{left:444.480000pt;}
.x98{left:448.480000pt;}
.x4a{left:451.200000pt;}
.x41{left:454.080000pt;}
.x2a{left:456.159818pt;}
.x10{left:458.720045pt;}
.x3f{left:459.840000pt;}
.x3c{left:464.160000pt;}
.x5f{left:468.640000pt;}
.x11{left:470.560037pt;}
.x36{left:472.640000pt;}
.x94{left:474.400000pt;}
.x60{left:476.000000pt;}
.x35{left:477.279809pt;}
.xa0{left:478.239809pt;}
.x6d{left:481.119808pt;}
.x12{left:482.400029pt;}
.x77{left:483.359807pt;}
.x71{left:484.479806pt;}
.x54{left:485.600000pt;}
.x69{left:488.640000pt;}
.x13{left:501.919965pt;}
.x45{left:504.480000pt;}
.x14{left:505.919962pt;}
.x44{left:511.840000pt;}
.x87{left:513.120000pt;}
.x7c{left:514.080000pt;}
.x61{left:515.200000pt;}
.x15{left:517.759954pt;}
.x55{left:519.520000pt;}
.x80{left:522.880000pt;}
.x34{left:524.159790pt;}
.x8f{left:527.200000pt;}
.x16{left:529.439947pt;}
.x81{left:536.800000pt;}
.x2d{left:537.760000pt;}
.x8d{left:540.159784pt;}
.x17{left:541.279939pt;}
.x24{left:542.400000pt;}
.x2e{left:544.160000pt;}
.x18{left:545.279936pt;}
.x56{left:546.560000pt;}
.x62{left:550.880000pt;}
.x7d{left:552.000000pt;}
.x9e{left:552.960000pt;}
.xa3{left:554.400000pt;}
.xa1{left:556.160000pt;}
.x19{left:560.959873pt;}
.x1a{left:564.799872pt;}
.x1b{left:576.639864pt;}
.x95{left:577.760000pt;}
.x63{left:579.360000pt;}
.x1c{left:580.479862pt;}
.x99{left:581.919767pt;}
.x1d{left:584.479859pt;}
.x9a{left:585.920000pt;}
.x37{left:590.720000pt;}
.x1e{left:592.319763pt;}
.x7e{left:600.320000pt;}
.x7f{left:608.000000pt;}
.x57{left:609.120000pt;}
.x3d{left:613.120000pt;}
.x42{left:614.240000pt;}
.x46{left:616.480000pt;}
.x39{left:617.440000pt;}
.x9{left:619.840000pt;}
.x8b{left:621.120000pt;}
.x82{left:623.360000pt;}
.x83{left:627.680000pt;}
.x90{left:636.480000pt;}
.x3a{left:639.199744pt;}
.x40{left:640.959744pt;}
.x3b{left:643.200000pt;}
.x47{left:644.320000pt;}
.x4b{left:645.600000pt;}
.x43{left:646.560000pt;}
.x3e{left:647.680000pt;}
.xa{left:649.600000pt;}
.x88{left:651.200000pt;}
.x4e{left:654.080000pt;}
.x84{left:656.000000pt;}
.xb{left:659.520000pt;}
.x38{left:670.080000pt;}
.x9b{left:671.840000pt;}
.x91{left:676.480000pt;}
.x64{left:677.760000pt;}
.x4f{left:682.400000pt;}
.x32{left:692.960000pt;}
.x2b{left:694.719722pt;}
.x1f{left:696.479721pt;}
}




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