
    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_d4c998997dc6d69f86dc962e.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_35e6bed3d2e4f049b72aa40c.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_33e57a7928f52de2dcbc0c8f.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_6603aa008fda5c260685d5c5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_852518993c4e09dfc1e9ad23.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_65e59efda1c883557bae2a1a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9de0b0ee0fd0e4f86d3c81c4.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_ab631d3a290acd8d6fd540ba.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_3b504084658d8358c1ac7950.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_9a259b3727db68b13eb1e17f.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_c8803119f1bd1dc2b5545bbd.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_5b27186d6cc407105ef85e58.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_eb2487cb6640b00fab152d47.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_b5b897d745c0918187d4cefd.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);}
.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);}
.m8{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;}
.v2{vertical-align:48.959980px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls5{letter-spacing:0.055440px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:7.175997px;}
.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;}
}
.ws2{word-spacing:-22.407831px;}
.ws0{word-spacing:-18.021231px;}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.179034px;}
.ws6{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{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;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._45{margin-left:-6.577539px;}
._31{margin-left:-2.316566px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._c{width:2.718983px;}
._f{width:3.846001px;}
._10{width:5.134273px;}
._15{width:6.177927px;}
._2e{width:7.225024px;}
._12{width:8.239384px;}
._d{width:9.856267px;}
._11{width:10.869421px;}
._1b{width:11.987188px;}
._e{width:14.604691px;}
._22{width:15.719698px;}
._14{width:16.844679px;}
._13{width:18.797894px;}
._23{width:20.765188px;}
._1d{width:21.811599px;}
._1e{width:22.895472px;}
._20{width:24.674204px;}
._21{width:25.945502px;}
._35{width:27.102095px;}
._29{width:28.549382px;}
._28{width:29.823060px;}
._26{width:31.465799px;}
._27{width:32.485215px;}
._25{width:33.729933px;}
._30{width:34.881079px;}
._19{width:36.127448px;}
._1a{width:37.146023px;}
._24{width:38.272646px;}
._2f{width:39.616885px;}
._17{width:40.731651px;}
._18{width:41.806710px;}
._1c{width:43.403429px;}
._41{width:44.649055px;}
._33{width:46.317562px;}
._34{width:47.576890px;}
._2b{width:49.603365px;}
._16{width:51.416144px;}
._2d{width:53.441604px;}
._32{width:55.003717px;}
._43{width:56.301184px;}
._42{width:57.309499px;}
._40{width:58.466930px;}
._48{width:59.670983px;}
._3c{width:63.513979px;}
._3d{width:64.697153px;}
._2c{width:70.470924px;}
._47{width:72.021921px;}
._49{width:73.660992px;}
._4a{width:75.601075px;}
._3f{width:78.114097px;}
._3e{width:98.592879px;}
._46{width:112.502220px;}
._2a{width:114.369440px;}
._44{width:138.641451px;}
._1f{width:202.412979px;}
._38{width:402.652459px;}
._37{width:445.156922px;}
._39{width:449.479620px;}
._3a{width:589.559764px;}
._3b{width:917.447633px;}
._36{width:995.963602px;}
.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;}
.fs6{font-size:38.879984px;}
.fsc{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fsd{font-size:51.119980px;}
.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;}
.y49{bottom:-15.661023px;}
.y10a{bottom:-0.000805px;}
.y10d{bottom:-0.000798px;}
.y110{bottom:-0.000792px;}
.y12a{bottom:-0.000703px;}
.y0{bottom:0.000000px;}
.y107{bottom:0.179189px;}
.y11f{bottom:0.179259px;}
.y8{bottom:2.878921px;}
.y19d{bottom:3.058953px;}
.y1a0{bottom:3.058959px;}
.y1a2{bottom:3.058966px;}
.y1a4{bottom:3.058973px;}
.y1a6{bottom:3.058979px;}
.y1a8{bottom:3.058986px;}
.y153{bottom:3.058990px;}
.y1aa{bottom:3.058993px;}
.y156{bottom:3.058996px;}
.y1ac{bottom:3.058999px;}
.y158{bottom:3.059003px;}
.y15b{bottom:3.059016px;}
.y15d{bottom:3.059022px;}
.y160{bottom:3.059028px;}
.y162{bottom:3.059041px;}
.y166{bottom:3.059060px;}
.yb4{bottom:3.059070px;}
.y1c{bottom:3.059072px;}
.y169{bottom:3.059073px;}
.y188{bottom:3.059091px;}
.y18b{bottom:3.059104px;}
.y26{bottom:3.059116px;}
.y18e{bottom:3.059117px;}
.y191{bottom:3.059130px;}
.y193{bottom:3.059136px;}
.y196{bottom:3.059149px;}
.yfe{bottom:3.059162px;}
.y13d{bottom:3.059165px;}
.y102{bottom:3.059168px;}
.y13f{bottom:3.059171px;}
.y19b{bottom:3.059174px;}
.y141{bottom:3.059178px;}
.y1b6{bottom:3.059182px;}
.y143{bottom:3.059184px;}
.y105{bottom:3.059187px;}
.y145{bottom:3.059191px;}
.y109{bottom:3.059194px;}
.y1b9{bottom:3.059196px;}
.y147{bottom:3.059198px;}
.y10c{bottom:3.059201px;}
.y1bb{bottom:3.059203px;}
.y149{bottom:3.059204px;}
.y10f{bottom:3.059207px;}
.y1bd{bottom:3.059209px;}
.y112{bottom:3.059214px;}
.y14c{bottom:3.059217px;}
.y1c0{bottom:3.059223px;}
.y115{bottom:3.059227px;}
.y118{bottom:3.059239px;}
.y11d{bottom:3.059258px;}
.y121{bottom:3.059265px;}
.y124{bottom:3.059277px;}
.y129{bottom:3.059296px;}
.y98{bottom:3.059297px;}
.y12{bottom:3.239016px;}
.y23{bottom:3.419104px;}
.y44{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y1e{bottom:4.319072px;}
.y4{bottom:4.320028px;}
.y14{bottom:4.859024px;}
.y18{bottom:4.859042px;}
.y21{bottom:4.859089px;}
.y7b{bottom:58.440277px;}
.y6{bottom:58.620277px;}
.y79{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y7a{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y78{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.yd2{bottom:111.359955px;}
.y41{bottom:118.199953px;}
.y1f4{bottom:120.359952px;}
.y9e{bottom:123.239951px;}
.yb2{bottom:126.479949px;}
.y12f{bottom:127.019949px;}
.y21a{bottom:127.919949px;}
.y76{bottom:130.619948px;}
.y186{bottom:133.499947px;}
.y1cc{bottom:134.039946px;}
.yd1{bottom:134.399946px;}
.ye5{bottom:135.479946px;}
.y40{bottom:141.239944px;}
.y1f3{bottom:144.119942px;}
.y9d{bottom:146.279941px;}
.yb1{bottom:149.879940px;}
.y219{bottom:150.959940px;}
.y75{bottom:153.479939px;}
.y185{bottom:156.539937px;}
.yd0{bottom:157.259937px;}
.y1cb{bottom:158.339937px;}
.ye4{bottom:158.519937px;}
.y3f{bottom:164.279934px;}
.y1f2{bottom:167.879933px;}
.y9c{bottom:169.319932px;}
.y12e{bottom:172.919931px;}
.yb0{bottom:173.459931px;}
.y218{bottom:173.999930px;}
.y74{bottom:176.519929px;}
.y184{bottom:179.579928px;}
.ycf{bottom:180.299928px;}
.ye3{bottom:181.559927px;}
.y1ca{bottom:182.459927px;}
.y151{bottom:187.139925px;}
.y3e{bottom:187.319925px;}
.y1f1{bottom:191.819923px;}
.y9b{bottom:192.359923px;}
.y12d{bottom:195.959922px;}
.yaf{bottom:196.859921px;}
.y217{bottom:197.039921px;}
.y73{bottom:199.559920px;}
.y183{bottom:202.619919px;}
.yce{bottom:203.339919px;}
.ye2{bottom:204.599918px;}
.y1c9{bottom:206.759917px;}
.y3d{bottom:210.179916px;}
.y9a{bottom:215.399914px;}
.y1f0{bottom:215.579914px;}
.y12c{bottom:218.999912px;}
.y216{bottom:220.079912px;}
.yae{bottom:220.259912px;}
.y72{bottom:222.599911px;}
.y182{bottom:225.479910px;}
.ycd{bottom:226.379909px;}
.ye1{bottom:227.459909px;}
.y1c8{bottom:230.879908px;}
.y3c{bottom:233.219907px;}
.y99{bottom:235.739906px;}
.y1ef{bottom:239.339904px;}
.y12b{bottom:242.039903px;}
.yad{bottom:243.119903px;}
.y71{bottom:245.639902px;}
.y181{bottom:248.519901px;}
.ycc{bottom:249.419900px;}
.ye0{bottom:250.499900px;}
.y97{bottom:253.200600px;}
.y1c7{bottom:255.179898px;}
.y3b{bottom:256.259897px;}
.y128{bottom:256.260600px;}
.y1ee{bottom:263.099895px;}
.yac{bottom:265.979894px;}
.y70{bottom:268.679893px;}
.y180{bottom:271.559891px;}
.ycb{bottom:272.459891px;}
.ydf{bottom:273.539891px;}
.y126{bottom:275.879890px;}
.y3a{bottom:279.299888px;}
.y1ed{bottom:286.859885px;}
.y215{bottom:289.019884px;}
.yab{bottom:289.379884px;}
.y125{bottom:291.179884px;}
.y6f{bottom:291.539883px;}
.y17f{bottom:294.599882px;}
.yca{bottom:295.319882px;}
.yde{bottom:296.579881px;}
.y39{bottom:302.339879px;}
.y127{bottom:303.419879px;}
.y123{bottom:303.420600px;}
.y1c6{bottom:303.599879px;}
.y1ec{bottom:310.619876px;}
.y214{bottom:312.059875px;}
.yaa{bottom:312.779875px;}
.y6e{bottom:314.579874px;}
.y17e{bottom:317.639873px;}
.yc9{bottom:318.359873px;}
.ydd{bottom:319.619872px;}
.y122{bottom:323.039871px;}
.y150{bottom:325.199870px;}
.y38{bottom:325.379870px;}
.y1c5{bottom:327.899869px;}
.y1eb{bottom:334.379866px;}
.y213{bottom:335.099866px;}
.y120{bottom:335.280600px;}
.ya9{bottom:336.359865px;}
.y6d{bottom:337.619865px;}
.y17d{bottom:340.679864px;}
.yc8{bottom:341.399863px;}
.ydc{bottom:342.479863px;}
.y37{bottom:348.239861px;}
.y11e{bottom:351.660600px;}
.y11c{bottom:351.840600px;}
.y1c4{bottom:352.019859px;}
.y1ea{bottom:358.139857px;}
.ya8{bottom:358.679857px;}
.y6c{bottom:360.659856px;}
.y17c{bottom:363.539855px;}
.y36{bottom:364.439854px;}
.ydb{bottom:365.519854px;}
.y35{bottom:368.219853px;}
.y11a{bottom:371.279851px;}
.y1c3{bottom:376.319849px;}
.ya7{bottom:380.639848px;}
.y212{bottom:381.179848px;}
.y1e9{bottom:381.899847px;}
.y6b{bottom:383.699847px;}
.y119{bottom:386.579845px;}
.yc7{bottom:387.479845px;}
.yda{bottom:388.559845px;}
.y34{bottom:388.739845px;}
.y14f{bottom:394.319842px;}
.y11b{bottom:398.819840px;}
.y117{bottom:398.820600px;}
.y1c2{bottom:400.439840px;}
.ya6{bottom:404.039838px;}
.y1e8{bottom:405.659838px;}
.y6a{bottom:406.739837px;}
.y17b{bottom:409.619836px;}
.yc6{bottom:410.519836px;}
.yd9{bottom:411.599835px;}
.y33{bottom:411.779835px;}
.y14e{bottom:417.359833px;}
.y116{bottom:418.439833px;}
.y1c1{bottom:423.659831px;}
.y211{bottom:427.079829px;}
.ya5{bottom:427.439829px;}
.y1e7{bottom:429.419828px;}
.y69{bottom:429.599828px;}
.y114{bottom:430.680600px;}
.y17a{bottom:432.659827px;}
.yc5{bottom:433.379827px;}
.yd8{bottom:434.639826px;}
.y32{bottom:434.819826px;}
.y1bf{bottom:438.780600px;}
.y14d{bottom:440.219824px;}
.y210{bottom:450.119820px;}
.y113{bottom:450.299820px;}
.ya4{bottom:451.019820px;}
.y68{bottom:452.639819px;}
.y1e6{bottom:453.359819px;}
.y14b{bottom:454.620600px;}
.y179{bottom:455.699818px;}
.y1be{bottom:456.060600px;}
.yc4{bottom:456.419817px;}
.yd7{bottom:457.679817px;}
.y31{bottom:457.859817px;}
.y111{bottom:462.540600px;}
.y20f{bottom:473.159811px;}
.y1bc{bottom:473.340600px;}
.y14a{bottom:474.239810px;}
.ya3{bottom:474.419810px;}
.y67{bottom:475.679810px;}
.y1e5{bottom:477.119809px;}
.y178{bottom:478.739809px;}
.y10e{bottom:478.920600px;}
.yc3{bottom:479.459808px;}
.yd6{bottom:480.539808px;}
.y30{bottom:480.719808px;}
.y148{bottom:486.480600px;}
.y1ba{bottom:490.440600px;}
.y10b{bottom:495.480600px;}
.y20e{bottom:496.199802px;}
.ya2{bottom:497.819801px;}
.y66{bottom:498.719801px;}
.y1e4{bottom:500.879800px;}
.y177{bottom:501.599799px;}
.yc2{bottom:502.499799px;}
.y146{bottom:502.860600px;}
.yd5{bottom:503.579799px;}
.y2f{bottom:503.759798px;}
.y1b8{bottom:507.720600px;}
.y108{bottom:511.860600px;}
.y20d{bottom:519.059792px;}
.y144{bottom:519.420600px;}
.ya1{bottom:521.399791px;}
.y65{bottom:521.759791px;}
.y176{bottom:524.639790px;}
.yc1{bottom:525.539790px;}
.yd4{bottom:526.619789px;}
.y2e{bottom:526.799789px;}
.y106{bottom:528.240600px;}
.y104{bottom:528.420600px;}
.y1b7{bottom:529.139788px;}
.y142{bottom:535.800600px;}
.y20c{bottom:542.099783px;}
.y1b5{bottom:542.100600px;}
.ya0{bottom:544.619782px;}
.y64{bottom:544.799782px;}
.y175{bottom:547.679781px;}
.yc0{bottom:548.399781px;}
.y103{bottom:548.939780px;}
.yd3{bottom:549.659780px;}
.y2d{bottom:549.839780px;}
.y140{bottom:552.360600px;}
.y19a{bottom:562.080600px;}
.y100{bottom:564.419774px;}
.y20b{bottom:565.139774px;}
.y9f{bottom:567.479773px;}
.y63{bottom:567.659773px;}
.y13e{bottom:569.820600px;}
.y96{bottom:569.999772px;}
.y174{bottom:570.719772px;}
.ybf{bottom:571.439771px;}
.y1e3{bottom:572.159771px;}
.y2c{bottom:572.879771px;}
.y101{bottom:576.660600px;}
.yff{bottom:579.719768px;}
.y199{bottom:581.519767px;}
.y13c{bottom:585.300600px;}
.y20a{bottom:588.179765px;}
.y95{bottom:590.519764px;}
.y62{bottom:590.699764px;}
.yfd{bottom:591.960600px;}
.y173{bottom:593.759762px;}
.ybe{bottom:594.479762px;}
.y2b{bottom:595.739762px;}
.y1e2{bottom:595.919762px;}
.y198{bottom:596.819761px;}
.y209{bottom:611.219756px;}
.y197{bottom:612.299755px;}
.y94{bottom:613.559755px;}
.y61{bottom:613.739755px;}
.y172{bottom:616.619753px;}
.ybd{bottom:617.519753px;}
.y2a{bottom:618.779752px;}
.y1e1{bottom:619.679752px;}
.yfc{bottom:620.399752px;}
.y195{bottom:624.540600px;}
.y208{bottom:634.259746px;}
.y93{bottom:636.599745px;}
.y60{bottom:636.779745px;}
.y171{bottom:639.659744px;}
.ybc{bottom:640.559744px;}
.y29{bottom:641.819743px;}
.yfb{bottom:643.439743px;}
.y194{bottom:643.979742px;}
.y192{bottom:656.400600px;}
.y207{bottom:657.119737px;}
.y92{bottom:659.639736px;}
.y5f{bottom:659.819736px;}
.y13b{bottom:662.339735px;}
.y170{bottom:662.699735px;}
.ybb{bottom:663.599735px;}
.y28{bottom:664.859734px;}
.yfa{bottom:667.019733px;}
.y1e0{bottom:667.199733px;}
.y190{bottom:672.780600px;}
.y206{bottom:680.159728px;}
.y91{bottom:682.499727px;}
.y5e{bottom:682.679727px;}
.y13a{bottom:685.379726px;}
.y16f{bottom:685.739726px;}
.yba{bottom:686.459725px;}
.y27{bottom:687.899725px;}
.yf9{bottom:690.779724px;}
.y1df{bottom:690.959724px;}
.y18f{bottom:692.219723px;}
.y205{bottom:703.199719px;}
.y18d{bottom:704.640600px;}
.y90{bottom:705.539718px;}
.y5d{bottom:705.719718px;}
.y25{bottom:707.880600px;}
.y139{bottom:708.419717px;}
.y16e{bottom:708.779716px;}
.yb9{bottom:709.499716px;}
.yf8{bottom:714.539714px;}
.y1de{bottom:714.719714px;}
.y204{bottom:723.719711px;}
.y18c{bottom:724.079710px;}
.y8f{bottom:728.579709px;}
.y5c{bottom:728.759708px;}
.y138{bottom:731.279707px;}
.y16d{bottom:731.819707px;}
.yb8{bottom:732.539707px;}
.y22{bottom:735.960600px;}
.y18a{bottom:736.320600px;}
.yf7{bottom:738.479705px;}
.y1dd{bottom:738.659705px;}
.y24{bottom:739.379704px;}
.y203{bottom:744.059702px;}
.y8e{bottom:751.619699px;}
.y5b{bottom:751.799699px;}
.y137{bottom:754.319698px;}
.y16c{bottom:754.679698px;}
.yb7{bottom:755.579698px;}
.y189{bottom:757.019697px;}
.yf6{bottom:762.239695px;}
.y1dc{bottom:762.419695px;}
.y202{bottom:767.099693px;}
.y22f{bottom:767.999693px;}
.y187{bottom:769.260600px;}
.y20{bottom:772.140600px;}
.y8d{bottom:774.659690px;}
.y5a{bottom:774.839690px;}
.y1f{bottom:776.999689px;}
.y136{bottom:777.359689px;}
.y16b{bottom:777.719689px;}
.yb6{bottom:778.619689px;}
.yf5{bottom:785.999686px;}
.y1db{bottom:786.179686px;}
.y201{bottom:790.139684px;}
.y229{bottom:791.039684px;}
.y8c{bottom:797.699681px;}
.y59{bottom:797.879681px;}
.y135{bottom:800.399680px;}
.y16a{bottom:800.759680px;}
.yb5{bottom:801.659679px;}
.yf4{bottom:809.759676px;}
.y1da{bottom:809.939676px;}
.y200{bottom:813.179675px;}
.y228{bottom:814.439674px;}
.y168{bottom:815.160600px;}
.y1d{bottom:816.600600px;}
.y1b{bottom:817.860600px;}
.y8b{bottom:820.559672px;}
.y58{bottom:820.739672px;}
.yb3{bottom:821.460600px;}
.y134{bottom:823.439671px;}
.y1b4{bottom:823.799670px;}
.yf3{bottom:833.519667px;}
.y1d9{bottom:833.699667px;}
.y167{bottom:834.599666px;}
.y1ff{bottom:836.219666px;}
.y1a{bottom:837.119665px;}
.y227{bottom:837.839665px;}
.y8a{bottom:843.599663px;}
.y57{bottom:843.779662px;}
.y133{bottom:846.299661px;}
.y1b3{bottom:846.839661px;}
.y165{bottom:846.840600px;}
.y1fe{bottom:856.559657px;}
.yf2{bottom:857.279657px;}
.y1d8{bottom:857.459657px;}
.y22e{bottom:859.079656px;}
.y226{bottom:861.239656px;}
.y19{bottom:865.199654px;}
.y164{bottom:866.459653px;}
.y89{bottom:866.639653px;}
.y56{bottom:866.819653px;}
.y132{bottom:869.339652px;}
.y1b2{bottom:869.879652px;}
.y1fd{bottom:877.079649px;}
.yf1{bottom:881.039648px;}
.y1d7{bottom:881.219648px;}
.y163{bottom:881.759647px;}
.y22d{bottom:882.119647px;}
.y225{bottom:884.819646px;}
.y88{bottom:889.679644px;}
.y55{bottom:889.859644px;}
.y17{bottom:890.940600px;}
.y131{bottom:892.379643px;}
.y1b1{bottom:892.739643px;}
.y161{bottom:894.000600px;}
.y1fc{bottom:900.119640px;}
.y22c{bottom:902.639639px;}
.yf0{bottom:904.799638px;}
.y1d6{bottom:904.979638px;}
.y224{bottom:908.219637px;}
.y87{bottom:912.719635px;}
.y54{bottom:912.899635px;}
.y16{bottom:913.619635px;}
.y130{bottom:914.159634px;}
.y1b0{bottom:915.779634px;}
.y1fb{bottom:923.159631px;}
.y15f{bottom:925.860600px;}
.yef{bottom:928.559629px;}
.y1d5{bottom:928.739629px;}
.y223{bottom:931.619627px;}
.y86{bottom:935.759626px;}
.y53{bottom:935.939626px;}
.y13{bottom:936.300600px;}
.y1af{bottom:938.819624px;}
.y15c{bottom:942.420600px;}
.y15e{bottom:945.479622px;}
.y1fa{bottom:946.019622px;}
.y15{bottom:946.379621px;}
.yee{bottom:952.319619px;}
.y1d4{bottom:952.499619px;}
.y222{bottom:955.199618px;}
.y11{bottom:956.460600px;}
.y15a{bottom:957.720600px;}
.y85{bottom:958.619617px;}
.y52{bottom:958.799616px;}
.y1ae{bottom:961.859615px;}
.y1f9{bottom:969.059612px;}
.yed{bottom:976.079610px;}
.y1d3{bottom:976.259609px;}
.y159{bottom:977.159609px;}
.y221{bottom:978.599609px;}
.y84{bottom:981.659607px;}
.y51{bottom:981.839607px;}
.y1ad{bottom:984.899606px;}
.y157{bottom:989.400600px;}
.y1f8{bottom:989.579604px;}
.y10{bottom:990.119604px;}
.y1ab{bottom:999.120600px;}
.yec{bottom:999.839600px;}
.y1d2{bottom:1000.019600px;}
.y220{bottom:1001.999599px;}
.y83{bottom:1004.699598px;}
.y50{bottom:1004.879598px;}
.y155{bottom:1007.040600px;}
.y1f7{bottom:1009.919596px;}
.y154{bottom:1010.099596px;}
.yf{bottom:1013.519595px;}
.y1a9{bottom:1015.680600px;}
.y152{bottom:1022.340600px;}
.yeb{bottom:1023.779590px;}
.y1d1{bottom:1023.959590px;}
.y21f{bottom:1025.399590px;}
.y82{bottom:1027.739589px;}
.y4f{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y1a7{bottom:1032.060600px;}
.y1f6{bottom:1032.959587px;}
.yea{bottom:1047.539581px;}
.y1d0{bottom:1047.719581px;}
.y1a5{bottom:1048.620600px;}
.y21e{bottom:1048.979580px;}
.y81{bottom:1050.779580px;}
.y4e{bottom:1050.959580px;}
.y1f5{bottom:1053.479579px;}
.y22b{bottom:1055.999578px;}
.y1a3{bottom:1065.000600px;}
.ye9{bottom:1071.299571px;}
.y1cf{bottom:1071.479571px;}
.y21d{bottom:1072.379571px;}
.y48{bottom:1073.280600px;}
.y80{bottom:1073.819570px;}
.y4d{bottom:1073.999570px;}
.y22a{bottom:1076.519569px;}
.y1a1{bottom:1081.560600px;}
.y47{bottom:1082.279567px;}
.ye8{bottom:1095.059562px;}
.y1ce{bottom:1095.239562px;}
.y21c{bottom:1095.779562px;}
.y7f{bottom:1096.679561px;}
.y4c{bottom:1096.859561px;}
.y19f{bottom:1099.020600px;}
.y19e{bottom:1102.079559px;}
.y46{bottom:1103.519559px;}
.y19c{bottom:1114.500600px;}
.ye7{bottom:1118.819552px;}
.y1cd{bottom:1118.999552px;}
.y21b{bottom:1119.359552px;}
.y7e{bottom:1119.719552px;}
.y4b{bottom:1119.899552px;}
.y45{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.ye6{bottom:1142.579543px;}
.y7d{bottom:1142.759543px;}
.y4a{bottom:1142.939543px;}
.y43{bottom:1145.280600px;}
.y42{bottom:1149.059540px;}
.y77{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y7c{bottom:1195.680600px;}
.y7{bottom:1195.860600px;}
.h23{height:2.880000px;}
.hb{height:8.169958px;}
.h2b{height:12.420000px;}
.h2a{height:12.600000px;}
.hd{height:13.500000px;}
.h16{height:15.120000px;}
.h28{height:15.300000px;}
.h29{height:15.480000px;}
.h1d{height:15.859330px;}
.h18{height:16.380000px;}
.h1b{height:17.100000px;}
.hf{height:20.160000px;}
.h13{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h21{height:21.780000px;}
.h1e{height:25.913662px;}
.h11{height:25.951630px;}
.h25{height:31.585065px;}
.he{height:32.199245px;}
.h1a{height:33.588971px;}
.h26{height:36.486196px;}
.h12{height:36.886626px;}
.h27{height:38.664477px;}
.h15{height:40.005336px;}
.h17{height:40.842757px;}
.h22{height:41.290999px;}
.h1f{height:43.185920px;}
.h1c{height:45.199318px;}
.h8{height:47.988262px;}
.h10{height:48.058575px;}
.h14{height:48.199199px;}
.h24{height:49.907793px;}
.h19{height:50.132792px;}
.ha{height:54.457009px;}
.h20{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h2c{height:89.802738px;}
.h0{height:1263.000000px;}
.w6e{width:0.720000px;}
.w89{width:1.800000px;}
.w8e{width:2.160000px;}
.w58{width:2.700000px;}
.w1b{width:2.880000px;}
.w8a{width:3.060000px;}
.w18{width:3.240000px;}
.w50{width:3.420000px;}
.w3e{width:3.960000px;}
.w88{width:4.140000px;}
.wb{width:4.320000px;}
.wf{width:4.500000px;}
.w68{width:4.860000px;}
.w43{width:5.220000px;}
.w7e{width:5.580000px;}
.w4a{width:5.760000px;}
.w22{width:5.940000px;}
.w3c{width:6.120000px;}
.w85{width:6.300000px;}
.w1{width:6.480000px;}
.w81{width:6.660000px;}
.w20{width:6.840000px;}
.w39{width:7.200000px;}
.w1e{width:7.380000px;}
.w3a{width:7.560000px;}
.w11{width:7.740000px;}
.w53{width:8.100000px;}
.w7{width:8.280000px;}
.w12{width:8.820000px;}
.w16{width:9.900000px;}
.w15{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.w75{width:11.520000px;}
.w9{width:12.420000px;}
.w4d{width:12.600000px;}
.wd{width:12.960000px;}
.w45{width:13.320000px;}
.w48{width:13.500000px;}
.w61{width:13.860000px;}
.w66{width:14.040000px;}
.w5a{width:14.220000px;}
.w84{width:14.400000px;}
.w40{width:14.580000px;}
.w49{width:14.940000px;}
.w60{width:15.120000px;}
.w73{width:15.660000px;}
.w7d{width:15.840000px;}
.w3{width:16.020000px;}
.w5e{width:21.600000px;}
.w54{width:25.200000px;}
.w62{width:25.560000px;}
.w56{width:25.740000px;}
.w63{width:25.920000px;}
.w46{width:26.100000px;}
.w5b{width:26.280000px;}
.w4e{width:26.460000px;}
.w4b{width:26.820000px;}
.w82{width:27.000000px;}
.w6b{width:27.180000px;}
.w41{width:27.360000px;}
.w70{width:27.540000px;}
.w2d{width:27.720000px;}
.w2c{width:29.700000px;}
.w1d{width:30.960000px;}
.w4{width:33.480000px;}
.w55{width:33.840000px;}
.w1a{width:40.140000px;}
.w17{width:40.680000px;}
.w34{width:43.200000px;}
.w64{width:45.180000px;}
.w6a{width:46.620000px;}
.w52{width:48.060000px;}
.w3b{width:51.660000px;}
.w76{width:51.840000px;}
.w6c{width:53.640000px;}
.w2a{width:55.440000px;}
.w78{width:58.860000px;}
.w57{width:61.380000px;}
.w33{width:62.100000px;}
.w29{width:63.900000px;}
.w27{width:65.520000px;}
.w13{width:65.700000px;}
.w24{width:68.040000px;}
.w2b{width:72.000000px;}
.we{width:77.940000px;}
.w38{width:79.740000px;}
.w8c{width:80.460000px;}
.w71{width:81.900000px;}
.w87{width:82.800000px;}
.w7b{width:84.240000px;}
.w32{width:86.760000px;}
.w5c{width:88.020000px;}
.w25{width:91.080000px;}
.w31{width:91.800000px;}
.w7a{width:91.980000px;}
.w1f{width:94.500000px;}
.w23{width:95.220000px;}
.w37{width:99.900000px;}
.w8b{width:100.080000px;}
.w86{width:100.440000px;}
.w28{width:103.140000px;}
.w42{width:104.220000px;}
.w8d{width:106.200000px;}
.w3d{width:106.740000px;}
.w6d{width:109.080000px;}
.w2{width:119.700000px;}
.w21{width:124.200000px;}
.w19{width:130.140000px;}
.w26{width:134.280000px;}
.w69{width:142.020000px;}
.w51{width:148.860000px;}
.w4f{width:152.100000px;}
.w7c{width:152.280000px;}
.w8{width:162.000000px;}
.w67{width:164.160000px;}
.w36{width:167.580000px;}
.w1c{width:183.600000px;}
.w35{width:193.500000px;}
.w5f{width:194.760000px;}
.w30{width:200.340000px;}
.w47{width:205.560000px;}
.w2e{width:212.400000px;}
.w2f{width:213.660000px;}
.w74{width:215.640000px;}
.w7f{width:222.120000px;}
.w79{width:225.540000px;}
.wc{width:226.620000px;}
.w83{width:235.440000px;}
.wa{width:266.400000px;}
.w44{width:281.340000px;}
.w77{width:290.340000px;}
.w80{width:290.880000px;}
.w3f{width:294.840000px;}
.w65{width:302.580000px;}
.w10{width:310.320000px;}
.w4c{width:311.040000px;}
.w5d{width:326.520000px;}
.w72{width:342.000000px;}
.w6f{width:342.180000px;}
.w59{width:362.520000px;}
.w14{width:675.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x2b{left:116.459953px;}
.x5{left:120.240000px;}
.x2{left:128.699878px;}
.x72{left:141.840000px;}
.x32{left:148.860000px;}
.x33{left:152.100000px;}
.x83{left:153.180000px;}
.x3{left:155.700000px;}
.x8f{left:159.840000px;}
.x86{left:161.460000px;}
.x4c{left:163.620000px;}
.x73{left:167.219933px;}
.x74{left:169.200000px;}
.x52{left:170.280000px;}
.x4{left:171.899931px;}
.x2a{left:174.599930px;}
.xa{left:185.219926px;}
.x24{left:187.200000px;}
.x25{left:191.700000px;}
.x51{left:199.980000px;}
.x37{left:202.680000px;}
.x55{left:208.080000px;}
.x4b{left:211.320000px;}
.x53{left:213.480000px;}
.x4d{left:235.620000px;}
.x6{left:239.940000px;}
.x46{left:242.460000px;}
.xb{left:259.740316px;}
.x6f{left:263.520000px;}
.x4e{left:265.320000px;}
.x1f{left:271.259891px;}
.x20{left:276.120000px;}
.x34{left:282.240000px;}
.x4f{left:293.040000px;}
.x82{left:302.759879px;}
.x47{left:307.980000px;}
.x69{left:313.560000px;}
.x50{left:320.580000px;}
.x8d{left:323.640000px;}
.x38{left:326.880000px;}
.x39{left:329.219868px;}
.x91{left:333.540000px;}
.x35{left:334.800000px;}
.x2d{left:342.539863px;}
.x96{left:344.520000px;}
.x36{left:365.760000px;}
.x21{left:375.660000px;}
.x22{left:379.980000px;}
.x67{left:389.340000px;}
.x48{left:393.120000px;}
.x9a{left:398.880000px;}
.x61{left:402.840000px;}
.x70{left:412.200000px;}
.x71{left:415.620000px;}
.x6c{left:419.040000px;}
.x85{left:423.900000px;}
.xc{left:427.680106px;}
.xd{left:432.180102px;}
.x81{left:434.520000px;}
.x2f{left:435.959826px;}
.x3a{left:445.500000px;}
.x27{left:448.920000px;}
.x3b{left:455.940000px;}
.x3c{left:458.459817px;}
.x2c{left:462.600512px;}
.x84{left:467.100000px;}
.x87{left:469.440000px;}
.x89{left:473.220000px;}
.x62{left:475.380000px;}
.x58{left:479.160000px;}
.x7a{left:482.220000px;}
.x59{left:486.360000px;}
.x8a{left:488.700000px;}
.x63{left:489.960000px;}
.x92{left:491.940000px;}
.x75{left:493.020000px;}
.x7b{left:496.440000px;}
.x8e{left:499.140000px;}
.x26{left:502.020000px;}
.x90{left:503.100000px;}
.x28{left:504.359798px;}
.x97{left:505.800000px;}
.x56{left:507.600000px;}
.x6a{left:508.860000px;}
.x6d{left:510.120000px;}
.x5a{left:512.640000px;}
.xe{left:516.060050px;}
.x98{left:518.580000px;}
.x5b{left:520.200000px;}
.xa1{left:521.460000px;}
.x6e{left:522.720000px;}
.x6b{left:523.800000px;}
.x76{left:527.040000px;}
.xf{left:529.380042px;}
.x93{left:532.800000px;}
.x99{left:534.420000px;}
.x31{left:536.939785px;}
.x10{left:542.700033px;}
.x8c{left:543.960000px;}
.x3d{left:545.220000px;}
.x5c{left:546.480000px;}
.x68{left:550.260000px;}
.x7c{left:552.780000px;}
.x5d{left:553.860000px;}
.x3f{left:557.279777px;}
.x77{left:560.520000px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x3e{left:573.120000px;}
.x79{left:576.533769px;}
.x40{left:580.139768px;}
.x13{left:582.479948px;}
.x30{left:589.679764px;}
.x5e{left:593.280000px;}
.x14{left:595.619941px;}
.x78{left:596.700000px;}
.x88{left:601.913759px;}
.x64{left:603.900000px;}
.x49{left:605.520000px;}
.x23{left:606.600000px;}
.x7d{left:607.860000px;}
.x15{left:608.939932px;}
.x54{left:611.460000px;}
.x16{left:613.439928px;}
.x9d{left:618.120000px;}
.x17{left:631.079858px;}
.x7e{left:634.140000px;}
.x18{left:635.399856px;}
.x9e{left:643.860000px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x5f{left:662.220000px;}
.x1c{left:666.359733px;}
.x60{left:672.300000px;}
.x65{left:673.560000px;}
.x41{left:675.720000px;}
.x9b{left:678.060000px;}
.x94{left:679.680000px;}
.x7f{left:681.660000px;}
.x44{left:683.999726px;}
.x8b{left:687.960000px;}
.xa0{left:690.480000px;}
.x43{left:696.059722px;}
.x7{left:697.320000px;}
.x45{left:701.639719px;}
.x4a{left:721.080000px;}
.x57{left:727.020000px;}
.x8{left:730.800000px;}
.x9{left:741.960000px;}
.x42{left:766.620000px;}
.x80{left:769.680000px;}
.x95{left:771.660000px;}
.x9f{left:775.440000px;}
.x66{left:777.780000px;}
.x2e{left:779.580000px;}
.x29{left:781.559687px;}
.x1d{left:783.539686px;}
.x9c{left:784.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.v2{vertical-align:43.519983pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls5{letter-spacing:0.049280pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:6.378664pt;}
.ws2{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.492475pt;}
.ws6{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{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;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._45{margin-left:-5.846702pt;}
._31{margin-left:-2.059170pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._c{width:2.416874pt;}
._f{width:3.418668pt;}
._10{width:4.563798pt;}
._15{width:5.491491pt;}
._2e{width:6.422244pt;}
._12{width:7.323897pt;}
._d{width:8.761126pt;}
._11{width:9.661707pt;}
._1b{width:10.655278pt;}
._e{width:12.981947pt;}
._22{width:13.973065pt;}
._14{width:14.973048pt;}
._13{width:16.709239pt;}
._23{width:18.457945pt;}
._1d{width:19.388088pt;}
._1e{width:20.351531pt;}
._20{width:21.932625pt;}
._21{width:23.062669pt;}
._35{width:24.090751pt;}
._29{width:25.377229pt;}
._28{width:26.509387pt;}
._26{width:27.969599pt;}
._27{width:28.875747pt;}
._25{width:29.982162pt;}
._30{width:31.005403pt;}
._19{width:32.113287pt;}
._1a{width:33.018687pt;}
._24{width:34.020130pt;}
._2f{width:35.215009pt;}
._17{width:36.205912pt;}
._18{width:37.161520pt;}
._1c{width:38.580826pt;}
._41{width:39.688049pt;}
._33{width:41.171166pt;}
._34{width:42.290569pt;}
._2b{width:44.091880pt;}
._16{width:45.703239pt;}
._2d{width:47.503648pt;}
._32{width:48.892193pt;}
._43{width:50.045497pt;}
._42{width:50.941777pt;}
._40{width:51.970605pt;}
._48{width:53.040874pt;}
._3c{width:56.456870pt;}
._3d{width:57.508581pt;}
._2c{width:62.640821pt;}
._47{width:64.019485pt;}
._49{width:65.476437pt;}
._4a{width:67.200956pt;}
._3f{width:69.434753pt;}
._3e{width:87.638114pt;}
._46{width:100.001973pt;}
._2a{width:101.661724pt;}
._44{width:123.236845pt;}
._1f{width:179.922648pt;}
._38{width:357.913297pt;}
._37{width:395.695042pt;}
._39{width:399.537440pt;}
._3a{width:524.053124pt;}
._3b{width:815.509007pt;}
._36{width:885.300979pt;}
.fsa{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fs9{font-size:21.119992pt;}
.fs6{font-size:34.559986pt;}
.fsc{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fsd{font-size:45.439982pt;}
.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;}
.y49{bottom:-13.920909pt;}
.y10a{bottom:-0.000715pt;}
.y10d{bottom:-0.000710pt;}
.y110{bottom:-0.000704pt;}
.y12a{bottom:-0.000624pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:0.159279pt;}
.y11f{bottom:0.159342pt;}
.y8{bottom:2.559040pt;}
.y19d{bottom:2.719069pt;}
.y1a0{bottom:2.719075pt;}
.y1a2{bottom:2.719081pt;}
.y1a4{bottom:2.719087pt;}
.y1a6{bottom:2.719093pt;}
.y1a8{bottom:2.719099pt;}
.y153{bottom:2.719102pt;}
.y1aa{bottom:2.719104pt;}
.y156{bottom:2.719108pt;}
.y1ac{bottom:2.719110pt;}
.y158{bottom:2.719114pt;}
.y15b{bottom:2.719125pt;}
.y15d{bottom:2.719130pt;}
.y160{bottom:2.719136pt;}
.y162{bottom:2.719148pt;}
.y166{bottom:2.719164pt;}
.yb4{bottom:2.719174pt;}
.y1c{bottom:2.719175pt;}
.y169{bottom:2.719176pt;}
.y188{bottom:2.719192pt;}
.y18b{bottom:2.719204pt;}
.y26{bottom:2.719214pt;}
.y18e{bottom:2.719215pt;}
.y191{bottom:2.719226pt;}
.y193{bottom:2.719232pt;}
.y196{bottom:2.719244pt;}
.yfe{bottom:2.719255pt;}
.y13d{bottom:2.719257pt;}
.y102{bottom:2.719261pt;}
.y13f{bottom:2.719263pt;}
.y19b{bottom:2.719266pt;}
.y141{bottom:2.719269pt;}
.y1b6{bottom:2.719273pt;}
.y143{bottom:2.719275pt;}
.y105{bottom:2.719278pt;}
.y145{bottom:2.719281pt;}
.y109{bottom:2.719284pt;}
.y1b9{bottom:2.719285pt;}
.y147{bottom:2.719287pt;}
.y10c{bottom:2.719289pt;}
.y1bb{bottom:2.719291pt;}
.y149{bottom:2.719293pt;}
.y10f{bottom:2.719295pt;}
.y1bd{bottom:2.719297pt;}
.y112{bottom:2.719301pt;}
.y14c{bottom:2.719304pt;}
.y1c0{bottom:2.719310pt;}
.y115{bottom:2.719312pt;}
.y118{bottom:2.719324pt;}
.y11d{bottom:2.719340pt;}
.y121{bottom:2.719346pt;}
.y124{bottom:2.719358pt;}
.y129{bottom:2.719374pt;}
.y98{bottom:2.719376pt;}
.y12{bottom:2.879125pt;}
.y23{bottom:3.039204pt;}
.y44{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y1e{bottom:3.839175pt;}
.y4{bottom:3.840025pt;}
.y14{bottom:4.319132pt;}
.y18{bottom:4.319148pt;}
.y21{bottom:4.319190pt;}
.y7b{bottom:51.946913pt;}
.y6{bottom:52.106912pt;}
.y79{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y7a{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y78{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.yd2{bottom:98.986627pt;}
.y41{bottom:105.066625pt;}
.y1f4{bottom:106.986624pt;}
.y9e{bottom:109.546623pt;}
.yb2{bottom:112.426622pt;}
.y12f{bottom:112.906622pt;}
.y21a{bottom:113.706621pt;}
.y76{bottom:116.106620pt;}
.y186{bottom:118.666619pt;}
.y1cc{bottom:119.146619pt;}
.yd1{bottom:119.466619pt;}
.ye5{bottom:120.426618pt;}
.y40{bottom:125.546616pt;}
.y1f3{bottom:128.106615pt;}
.y9d{bottom:130.026615pt;}
.yb1{bottom:133.226613pt;}
.y219{bottom:134.186613pt;}
.y75{bottom:136.426612pt;}
.y185{bottom:139.146611pt;}
.yd0{bottom:139.786611pt;}
.y1cb{bottom:140.746610pt;}
.ye4{bottom:140.906610pt;}
.y3f{bottom:146.026608pt;}
.y1f2{bottom:149.226607pt;}
.y9c{bottom:150.506606pt;}
.y12e{bottom:153.706605pt;}
.yb0{bottom:154.186605pt;}
.y218{bottom:154.666605pt;}
.y74{bottom:156.906604pt;}
.y184{bottom:159.626603pt;}
.ycf{bottom:160.266603pt;}
.ye3{bottom:161.386602pt;}
.y1ca{bottom:162.186602pt;}
.y151{bottom:166.346600pt;}
.y3e{bottom:166.506600pt;}
.y1f1{bottom:170.506598pt;}
.y9b{bottom:170.986598pt;}
.y12d{bottom:174.186597pt;}
.yaf{bottom:174.986597pt;}
.y217{bottom:175.146597pt;}
.y73{bottom:177.386596pt;}
.y183{bottom:180.106595pt;}
.yce{bottom:180.746594pt;}
.ye2{bottom:181.866594pt;}
.y1c9{bottom:183.786593pt;}
.y3d{bottom:186.826592pt;}
.y9a{bottom:191.466590pt;}
.y1f0{bottom:191.626590pt;}
.y12c{bottom:194.666589pt;}
.y216{bottom:195.626588pt;}
.yae{bottom:195.786588pt;}
.y72{bottom:197.866588pt;}
.y182{bottom:200.426586pt;}
.ycd{bottom:201.226586pt;}
.ye1{bottom:202.186586pt;}
.y1c8{bottom:205.226585pt;}
.y3c{bottom:207.306584pt;}
.y99{bottom:209.546583pt;}
.y1ef{bottom:212.746582pt;}
.y12b{bottom:215.146581pt;}
.yad{bottom:216.106580pt;}
.y71{bottom:218.346579pt;}
.y181{bottom:220.906578pt;}
.ycc{bottom:221.706578pt;}
.ye0{bottom:222.666578pt;}
.y97{bottom:225.067200pt;}
.y1c7{bottom:226.826576pt;}
.y3b{bottom:227.786576pt;}
.y128{bottom:227.787200pt;}
.y1ee{bottom:233.866573pt;}
.yac{bottom:236.426572pt;}
.y70{bottom:238.826571pt;}
.y180{bottom:241.386570pt;}
.ycb{bottom:242.186570pt;}
.ydf{bottom:243.146569pt;}
.y126{bottom:245.226569pt;}
.y3a{bottom:248.266567pt;}
.y1ed{bottom:254.986565pt;}
.y215{bottom:256.906564pt;}
.yab{bottom:257.226564pt;}
.y125{bottom:258.826563pt;}
.y6f{bottom:259.146563pt;}
.y17f{bottom:261.866562pt;}
.yca{bottom:262.506562pt;}
.yde{bottom:263.626561pt;}
.y39{bottom:268.746559pt;}
.y127{bottom:269.706559pt;}
.y123{bottom:269.707200pt;}
.y1c6{bottom:269.866559pt;}
.y1ec{bottom:276.106556pt;}
.y214{bottom:277.386556pt;}
.yaa{bottom:278.026555pt;}
.y6e{bottom:279.626555pt;}
.y17e{bottom:282.346554pt;}
.yc9{bottom:282.986553pt;}
.ydd{bottom:284.106553pt;}
.y122{bottom:287.146552pt;}
.y150{bottom:289.066551pt;}
.y38{bottom:289.226551pt;}
.y1c5{bottom:291.466550pt;}
.y1eb{bottom:297.226548pt;}
.y213{bottom:297.866548pt;}
.y120{bottom:298.027200pt;}
.ya9{bottom:298.986547pt;}
.y6d{bottom:300.106547pt;}
.y17d{bottom:302.826546pt;}
.yc8{bottom:303.466545pt;}
.ydc{bottom:304.426545pt;}
.y37{bottom:309.546543pt;}
.y11e{bottom:312.587200pt;}
.y11c{bottom:312.747200pt;}
.y1c4{bottom:312.906542pt;}
.y1ea{bottom:318.346539pt;}
.ya8{bottom:318.826539pt;}
.y6c{bottom:320.586538pt;}
.y17c{bottom:323.146537pt;}
.y36{bottom:323.946537pt;}
.ydb{bottom:324.906537pt;}
.y35{bottom:327.306536pt;}
.y11a{bottom:330.026535pt;}
.y1c3{bottom:334.506533pt;}
.ya7{bottom:338.346531pt;}
.y212{bottom:338.826531pt;}
.y1e9{bottom:339.466531pt;}
.y6b{bottom:341.066530pt;}
.y119{bottom:343.626529pt;}
.yc7{bottom:344.426529pt;}
.yda{bottom:345.386529pt;}
.y34{bottom:345.546528pt;}
.y14f{bottom:350.506526pt;}
.y11b{bottom:354.506525pt;}
.y117{bottom:354.507200pt;}
.y1c2{bottom:355.946524pt;}
.ya6{bottom:359.146523pt;}
.y1e8{bottom:360.586522pt;}
.y6a{bottom:361.546522pt;}
.y17b{bottom:364.106521pt;}
.yc6{bottom:364.906521pt;}
.yd9{bottom:365.866520pt;}
.y33{bottom:366.026520pt;}
.y14e{bottom:370.986518pt;}
.y116{bottom:371.946518pt;}
.y1c1{bottom:376.586516pt;}
.y211{bottom:379.626515pt;}
.ya5{bottom:379.946515pt;}
.y1e7{bottom:381.706514pt;}
.y69{bottom:381.866514pt;}
.y114{bottom:382.827200pt;}
.y17a{bottom:384.586513pt;}
.yc5{bottom:385.226513pt;}
.yd8{bottom:386.346512pt;}
.y32{bottom:386.506512pt;}
.y1bf{bottom:390.027200pt;}
.y14d{bottom:391.306510pt;}
.y210{bottom:400.106507pt;}
.y113{bottom:400.266507pt;}
.ya4{bottom:400.906506pt;}
.y68{bottom:402.346506pt;}
.y1e6{bottom:402.986505pt;}
.y14b{bottom:404.107200pt;}
.y179{bottom:405.066505pt;}
.y1be{bottom:405.387200pt;}
.yc4{bottom:405.706504pt;}
.yd7{bottom:406.826504pt;}
.y31{bottom:406.986504pt;}
.y111{bottom:411.147200pt;}
.y20f{bottom:420.586498pt;}
.y1bc{bottom:420.747200pt;}
.y14a{bottom:421.546498pt;}
.ya3{bottom:421.706498pt;}
.y67{bottom:422.826498pt;}
.y1e5{bottom:424.106497pt;}
.y178{bottom:425.546496pt;}
.y10e{bottom:425.707200pt;}
.yc3{bottom:426.186496pt;}
.yd6{bottom:427.146496pt;}
.y30{bottom:427.306496pt;}
.y148{bottom:432.427200pt;}
.y1ba{bottom:435.947200pt;}
.y10b{bottom:440.427200pt;}
.y20e{bottom:441.066490pt;}
.ya2{bottom:442.506490pt;}
.y66{bottom:443.306489pt;}
.y1e4{bottom:445.226489pt;}
.y177{bottom:445.866488pt;}
.yc2{bottom:446.666488pt;}
.y146{bottom:446.987200pt;}
.yd5{bottom:447.626488pt;}
.y2f{bottom:447.786488pt;}
.y1b8{bottom:451.307200pt;}
.y108{bottom:454.987200pt;}
.y20d{bottom:461.386482pt;}
.y144{bottom:461.707200pt;}
.ya1{bottom:463.466481pt;}
.y65{bottom:463.786481pt;}
.y176{bottom:466.346480pt;}
.yc1{bottom:467.146480pt;}
.yd4{bottom:468.106479pt;}
.y2e{bottom:468.266479pt;}
.y106{bottom:469.547200pt;}
.y104{bottom:469.707200pt;}
.y1b7{bottom:470.346479pt;}
.y142{bottom:476.267200pt;}
.y20c{bottom:481.866474pt;}
.y1b5{bottom:481.867200pt;}
.ya0{bottom:484.106473pt;}
.y64{bottom:484.266473pt;}
.y175{bottom:486.826472pt;}
.yc0{bottom:487.466472pt;}
.y103{bottom:487.946471pt;}
.yd3{bottom:488.586471pt;}
.y2d{bottom:488.746471pt;}
.y140{bottom:490.987200pt;}
.y19a{bottom:499.627200pt;}
.y100{bottom:501.706466pt;}
.y20b{bottom:502.346466pt;}
.y9f{bottom:504.426465pt;}
.y63{bottom:504.586465pt;}
.y13e{bottom:506.507200pt;}
.y96{bottom:506.666464pt;}
.y174{bottom:507.306464pt;}
.ybf{bottom:507.946463pt;}
.y1e3{bottom:508.586463pt;}
.y2c{bottom:509.226463pt;}
.y101{bottom:512.587200pt;}
.yff{bottom:515.306461pt;}
.y199{bottom:516.906460pt;}
.y13c{bottom:520.267200pt;}
.y20a{bottom:522.826458pt;}
.y95{bottom:524.906457pt;}
.y62{bottom:525.066457pt;}
.yfd{bottom:526.187200pt;}
.y173{bottom:527.786456pt;}
.ybe{bottom:528.426455pt;}
.y2b{bottom:529.546455pt;}
.y1e2{bottom:529.706455pt;}
.y198{bottom:530.506454pt;}
.y209{bottom:543.306449pt;}
.y197{bottom:544.266449pt;}
.y94{bottom:545.386449pt;}
.y61{bottom:545.546448pt;}
.y172{bottom:548.106447pt;}
.ybd{bottom:548.906447pt;}
.y2a{bottom:550.026447pt;}
.y1e1{bottom:550.826446pt;}
.yfc{bottom:551.466446pt;}
.y195{bottom:555.147200pt;}
.y208{bottom:563.786441pt;}
.y93{bottom:565.866440pt;}
.y60{bottom:566.026440pt;}
.y171{bottom:568.586439pt;}
.ybc{bottom:569.386439pt;}
.y29{bottom:570.506438pt;}
.yfb{bottom:571.946438pt;}
.y194{bottom:572.426438pt;}
.y192{bottom:583.467200pt;}
.y207{bottom:584.106433pt;}
.y92{bottom:586.346432pt;}
.y5f{bottom:586.506432pt;}
.y13b{bottom:588.746431pt;}
.y170{bottom:589.066431pt;}
.ybb{bottom:589.866431pt;}
.y28{bottom:590.986430pt;}
.yfa{bottom:592.906430pt;}
.y1e0{bottom:593.066429pt;}
.y190{bottom:598.027200pt;}
.y206{bottom:604.586425pt;}
.y91{bottom:606.666424pt;}
.y5e{bottom:606.826424pt;}
.y13a{bottom:609.226423pt;}
.y16f{bottom:609.546423pt;}
.yba{bottom:610.186423pt;}
.y27{bottom:611.466422pt;}
.yf9{bottom:614.026421pt;}
.y1df{bottom:614.186421pt;}
.y18f{bottom:615.306421pt;}
.y205{bottom:625.066417pt;}
.y18d{bottom:626.347200pt;}
.y90{bottom:627.146416pt;}
.y5d{bottom:627.306416pt;}
.y25{bottom:629.227200pt;}
.y139{bottom:629.706415pt;}
.y16e{bottom:630.026415pt;}
.yb9{bottom:630.666414pt;}
.yf8{bottom:635.146413pt;}
.y1de{bottom:635.306413pt;}
.y204{bottom:643.306409pt;}
.y18c{bottom:643.626409pt;}
.y8f{bottom:647.626408pt;}
.y5c{bottom:647.786408pt;}
.y138{bottom:650.026407pt;}
.y16d{bottom:650.506406pt;}
.yb8{bottom:651.146406pt;}
.y22{bottom:654.187200pt;}
.y18a{bottom:654.507200pt;}
.yf7{bottom:656.426404pt;}
.y1dd{bottom:656.586404pt;}
.y24{bottom:657.226404pt;}
.y203{bottom:661.386402pt;}
.y8e{bottom:668.106399pt;}
.y5b{bottom:668.266399pt;}
.y137{bottom:670.506398pt;}
.y16c{bottom:670.826398pt;}
.yb7{bottom:671.626398pt;}
.y189{bottom:672.906398pt;}
.yf6{bottom:677.546396pt;}
.y1dc{bottom:677.706396pt;}
.y202{bottom:681.866394pt;}
.y22f{bottom:682.666394pt;}
.y187{bottom:683.787200pt;}
.y20{bottom:686.347200pt;}
.y8d{bottom:688.586391pt;}
.y5a{bottom:688.746391pt;}
.y1f{bottom:690.666390pt;}
.y136{bottom:690.986390pt;}
.y16b{bottom:691.306390pt;}
.yb6{bottom:692.106390pt;}
.yf5{bottom:698.666387pt;}
.y1db{bottom:698.826387pt;}
.y201{bottom:702.346386pt;}
.y229{bottom:703.146385pt;}
.y8c{bottom:709.066383pt;}
.y59{bottom:709.226383pt;}
.y135{bottom:711.466382pt;}
.y16a{bottom:711.786382pt;}
.yb5{bottom:712.586382pt;}
.yf4{bottom:719.786379pt;}
.y1da{bottom:719.946379pt;}
.y200{bottom:722.826378pt;}
.y228{bottom:723.946377pt;}
.y168{bottom:724.587200pt;}
.y1d{bottom:725.867200pt;}
.y1b{bottom:726.987200pt;}
.y8b{bottom:729.386375pt;}
.y58{bottom:729.546375pt;}
.yb3{bottom:730.187200pt;}
.y134{bottom:731.946374pt;}
.y1b4{bottom:732.266374pt;}
.yf3{bottom:740.906370pt;}
.y1d9{bottom:741.066370pt;}
.y167{bottom:741.866370pt;}
.y1ff{bottom:743.306369pt;}
.y1a{bottom:744.106369pt;}
.y227{bottom:744.746369pt;}
.y8a{bottom:749.866367pt;}
.y57{bottom:750.026367pt;}
.y133{bottom:752.266366pt;}
.y1b3{bottom:752.746366pt;}
.y165{bottom:752.747200pt;}
.y1fe{bottom:761.386362pt;}
.yf2{bottom:762.026362pt;}
.y1d8{bottom:762.186362pt;}
.y22e{bottom:763.626361pt;}
.y226{bottom:765.546360pt;}
.y19{bottom:769.066359pt;}
.y164{bottom:770.186359pt;}
.y89{bottom:770.346359pt;}
.y56{bottom:770.506358pt;}
.y132{bottom:772.746358pt;}
.y1b2{bottom:773.226357pt;}
.y1fd{bottom:779.626355pt;}
.yf1{bottom:783.146353pt;}
.y1d7{bottom:783.306353pt;}
.y163{bottom:783.786353pt;}
.y22d{bottom:784.106353pt;}
.y225{bottom:786.506352pt;}
.y88{bottom:790.826350pt;}
.y55{bottom:790.986350pt;}
.y17{bottom:791.947200pt;}
.y131{bottom:793.226349pt;}
.y1b1{bottom:793.546349pt;}
.y161{bottom:794.667200pt;}
.y1fc{bottom:800.106347pt;}
.y22c{bottom:802.346346pt;}
.yf0{bottom:804.266345pt;}
.y1d6{bottom:804.426345pt;}
.y224{bottom:807.306344pt;}
.y87{bottom:811.306342pt;}
.y54{bottom:811.466342pt;}
.y16{bottom:812.106342pt;}
.y130{bottom:812.586342pt;}
.y1b0{bottom:814.026341pt;}
.y1fb{bottom:820.586338pt;}
.y15f{bottom:822.987200pt;}
.yef{bottom:825.386337pt;}
.y1d5{bottom:825.546336pt;}
.y223{bottom:828.106335pt;}
.y86{bottom:831.786334pt;}
.y53{bottom:831.946334pt;}
.y13{bottom:832.267200pt;}
.y1af{bottom:834.506333pt;}
.y15c{bottom:837.707200pt;}
.y15e{bottom:840.426330pt;}
.y1fa{bottom:840.906330pt;}
.y15{bottom:841.226330pt;}
.yee{bottom:846.506328pt;}
.y1d4{bottom:846.666328pt;}
.y222{bottom:849.066327pt;}
.y11{bottom:850.187200pt;}
.y15a{bottom:851.307200pt;}
.y85{bottom:852.106326pt;}
.y52{bottom:852.266326pt;}
.y1ae{bottom:854.986325pt;}
.y1f9{bottom:861.386322pt;}
.yed{bottom:867.626320pt;}
.y1d3{bottom:867.786320pt;}
.y159{bottom:868.586319pt;}
.y221{bottom:869.866319pt;}
.y84{bottom:872.586318pt;}
.y51{bottom:872.746318pt;}
.y1ad{bottom:875.466316pt;}
.y157{bottom:879.467200pt;}
.y1f8{bottom:879.626315pt;}
.y10{bottom:880.106315pt;}
.y1ab{bottom:888.107200pt;}
.yec{bottom:888.746311pt;}
.y1d2{bottom:888.906311pt;}
.y220{bottom:890.666310pt;}
.y83{bottom:893.066309pt;}
.y50{bottom:893.226309pt;}
.y155{bottom:895.147200pt;}
.y1f7{bottom:897.706308pt;}
.y154{bottom:897.866308pt;}
.yf{bottom:900.906306pt;}
.y1a9{bottom:902.827200pt;}
.y152{bottom:908.747200pt;}
.yeb{bottom:910.026303pt;}
.y1d1{bottom:910.186303pt;}
.y21f{bottom:911.466302pt;}
.y82{bottom:913.546301pt;}
.y4f{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y1a7{bottom:917.387200pt;}
.y1f6{bottom:918.186299pt;}
.yea{bottom:931.146294pt;}
.y1d0{bottom:931.306294pt;}
.y1a5{bottom:932.107200pt;}
.y21e{bottom:932.426294pt;}
.y81{bottom:934.026293pt;}
.y4e{bottom:934.186293pt;}
.y1f5{bottom:936.426292pt;}
.y22b{bottom:938.666291pt;}
.y1a3{bottom:946.667200pt;}
.ye9{bottom:952.266286pt;}
.y1cf{bottom:952.426286pt;}
.y21d{bottom:953.226285pt;}
.y48{bottom:954.027200pt;}
.y80{bottom:954.506285pt;}
.y4d{bottom:954.666285pt;}
.y22a{bottom:956.906284pt;}
.y1a1{bottom:961.387200pt;}
.y47{bottom:962.026282pt;}
.ye8{bottom:973.386277pt;}
.y1ce{bottom:973.546277pt;}
.y21c{bottom:974.026277pt;}
.y7f{bottom:974.826277pt;}
.y4c{bottom:974.986277pt;}
.y19f{bottom:976.907200pt;}
.y19e{bottom:979.626275pt;}
.y46{bottom:980.906274pt;}
.y19c{bottom:990.667200pt;}
.ye7{bottom:994.506269pt;}
.y1cd{bottom:994.666269pt;}
.y21b{bottom:994.986269pt;}
.y7e{bottom:995.306269pt;}
.y4b{bottom:995.466268pt;}
.y45{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.ye6{bottom:1015.626260pt;}
.y7d{bottom:1015.786260pt;}
.y4a{bottom:1015.946260pt;}
.y43{bottom:1018.027200pt;}
.y42{bottom:1021.386258pt;}
.y77{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y7c{bottom:1062.827200pt;}
.y7{bottom:1062.987200pt;}
.h23{height:2.560000pt;}
.hb{height:7.262185pt;}
.h2b{height:11.040000pt;}
.h2a{height:11.200000pt;}
.hd{height:12.000000pt;}
.h16{height:13.440000pt;}
.h28{height:13.600000pt;}
.h29{height:13.760000pt;}
.h1d{height:14.097182pt;}
.h18{height:14.560000pt;}
.h1b{height:15.200000pt;}
.hf{height:17.920000pt;}
.h13{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h21{height:19.360000pt;}
.h1e{height:23.034366pt;}
.h11{height:23.068116pt;}
.h25{height:28.075614pt;}
.he{height:28.621551pt;}
.h1a{height:29.856863pt;}
.h26{height:32.432175pt;}
.h12{height:32.788112pt;}
.h27{height:34.368424pt;}
.h15{height:35.560298pt;}
.h17{height:36.304673pt;}
.h22{height:36.703110pt;}
.h1f{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h8{height:42.656233pt;}
.h10{height:42.718733pt;}
.h14{height:42.843733pt;}
.h24{height:44.362482pt;}
.h19{height:44.562482pt;}
.ha{height:48.406231pt;}
.h20{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h2c{height:79.824656pt;}
.h0{height:1122.666667pt;}
.w6e{width:0.640000pt;}
.w89{width:1.600000pt;}
.w8e{width:1.920000pt;}
.w58{width:2.400000pt;}
.w1b{width:2.560000pt;}
.w8a{width:2.720000pt;}
.w18{width:2.880000pt;}
.w50{width:3.040000pt;}
.w3e{width:3.520000pt;}
.w88{width:3.680000pt;}
.wb{width:3.840000pt;}
.wf{width:4.000000pt;}
.w68{width:4.320000pt;}
.w43{width:4.640000pt;}
.w7e{width:4.960000pt;}
.w4a{width:5.120000pt;}
.w22{width:5.280000pt;}
.w3c{width:5.440000pt;}
.w85{width:5.600000pt;}
.w1{width:5.760000pt;}
.w81{width:5.920000pt;}
.w20{width:6.080000pt;}
.w39{width:6.400000pt;}
.w1e{width:6.560000pt;}
.w3a{width:6.720000pt;}
.w11{width:6.880000pt;}
.w53{width:7.200000pt;}
.w7{width:7.360000pt;}
.w12{width:7.840000pt;}
.w16{width:8.800000pt;}
.w15{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.w75{width:10.240000pt;}
.w9{width:11.040000pt;}
.w4d{width:11.200000pt;}
.wd{width:11.520000pt;}
.w45{width:11.840000pt;}
.w48{width:12.000000pt;}
.w61{width:12.320000pt;}
.w66{width:12.480000pt;}
.w5a{width:12.640000pt;}
.w84{width:12.800000pt;}
.w40{width:12.960000pt;}
.w49{width:13.280000pt;}
.w60{width:13.440000pt;}
.w73{width:13.920000pt;}
.w7d{width:14.080000pt;}
.w3{width:14.240000pt;}
.w5e{width:19.200000pt;}
.w54{width:22.400000pt;}
.w62{width:22.720000pt;}
.w56{width:22.880000pt;}
.w63{width:23.040000pt;}
.w46{width:23.200000pt;}
.w5b{width:23.360000pt;}
.w4e{width:23.520000pt;}
.w4b{width:23.840000pt;}
.w82{width:24.000000pt;}
.w6b{width:24.160000pt;}
.w41{width:24.320000pt;}
.w70{width:24.480000pt;}
.w2d{width:24.640000pt;}
.w2c{width:26.400000pt;}
.w1d{width:27.520000pt;}
.w4{width:29.760000pt;}
.w55{width:30.080000pt;}
.w1a{width:35.680000pt;}
.w17{width:36.160000pt;}
.w34{width:38.400000pt;}
.w64{width:40.160000pt;}
.w6a{width:41.440000pt;}
.w52{width:42.720000pt;}
.w3b{width:45.920000pt;}
.w76{width:46.080000pt;}
.w6c{width:47.680000pt;}
.w2a{width:49.280000pt;}
.w78{width:52.320000pt;}
.w57{width:54.560000pt;}
.w33{width:55.200000pt;}
.w29{width:56.800000pt;}
.w27{width:58.240000pt;}
.w13{width:58.400000pt;}
.w24{width:60.480000pt;}
.w2b{width:64.000000pt;}
.we{width:69.280000pt;}
.w38{width:70.880000pt;}
.w8c{width:71.520000pt;}
.w71{width:72.800000pt;}
.w87{width:73.600000pt;}
.w7b{width:74.880000pt;}
.w32{width:77.120000pt;}
.w5c{width:78.240000pt;}
.w25{width:80.960000pt;}
.w31{width:81.600000pt;}
.w7a{width:81.760000pt;}
.w1f{width:84.000000pt;}
.w23{width:84.640000pt;}
.w37{width:88.800000pt;}
.w8b{width:88.960000pt;}
.w86{width:89.280000pt;}
.w28{width:91.680000pt;}
.w42{width:92.640000pt;}
.w8d{width:94.400000pt;}
.w3d{width:94.880000pt;}
.w6d{width:96.960000pt;}
.w2{width:106.400000pt;}
.w21{width:110.400000pt;}
.w19{width:115.680000pt;}
.w26{width:119.360000pt;}
.w69{width:126.240000pt;}
.w51{width:132.320000pt;}
.w4f{width:135.200000pt;}
.w7c{width:135.360000pt;}
.w8{width:144.000000pt;}
.w67{width:145.920000pt;}
.w36{width:148.960000pt;}
.w1c{width:163.200000pt;}
.w35{width:172.000000pt;}
.w5f{width:173.120000pt;}
.w30{width:178.080000pt;}
.w47{width:182.720000pt;}
.w2e{width:188.800000pt;}
.w2f{width:189.920000pt;}
.w74{width:191.680000pt;}
.w7f{width:197.440000pt;}
.w79{width:200.480000pt;}
.wc{width:201.440000pt;}
.w83{width:209.280000pt;}
.wa{width:236.800000pt;}
.w44{width:250.080000pt;}
.w77{width:258.080000pt;}
.w80{width:258.560000pt;}
.w3f{width:262.080000pt;}
.w65{width:268.960000pt;}
.w10{width:275.840000pt;}
.w4c{width:276.480000pt;}
.w5d{width:290.240000pt;}
.w72{width:304.000000pt;}
.w6f{width:304.160000pt;}
.w59{width:322.240000pt;}
.w14{width:600.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x2b{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2{left:114.399892pt;}
.x72{left:126.080000pt;}
.x32{left:132.320000pt;}
.x33{left:135.200000pt;}
.x83{left:136.160000pt;}
.x3{left:138.400000pt;}
.x8f{left:142.080000pt;}
.x86{left:143.520000pt;}
.x4c{left:145.440000pt;}
.x73{left:148.639941pt;}
.x74{left:150.400000pt;}
.x52{left:151.360000pt;}
.x4{left:152.799939pt;}
.x2a{left:155.199938pt;}
.xa{left:164.639934pt;}
.x24{left:166.400000pt;}
.x25{left:170.400000pt;}
.x51{left:177.760000pt;}
.x37{left:180.160000pt;}
.x55{left:184.960000pt;}
.x4b{left:187.840000pt;}
.x53{left:189.760000pt;}
.x4d{left:209.440000pt;}
.x6{left:213.280000pt;}
.x46{left:215.520000pt;}
.xb{left:230.880281pt;}
.x6f{left:234.240000pt;}
.x4e{left:235.840000pt;}
.x1f{left:241.119904pt;}
.x20{left:245.440000pt;}
.x34{left:250.880000pt;}
.x4f{left:260.480000pt;}
.x82{left:269.119892pt;}
.x47{left:273.760000pt;}
.x69{left:278.720000pt;}
.x50{left:284.960000pt;}
.x8d{left:287.680000pt;}
.x38{left:290.560000pt;}
.x39{left:292.639883pt;}
.x91{left:296.480000pt;}
.x35{left:297.600000pt;}
.x2d{left:304.479878pt;}
.x96{left:306.240000pt;}
.x36{left:325.120000pt;}
.x21{left:333.920000pt;}
.x22{left:337.760000pt;}
.x67{left:346.080000pt;}
.x48{left:349.440000pt;}
.x9a{left:354.560000pt;}
.x61{left:358.080000pt;}
.x70{left:366.400000pt;}
.x71{left:369.440000pt;}
.x6c{left:372.480000pt;}
.x85{left:376.800000pt;}
.xc{left:380.160094pt;}
.xd{left:384.160091pt;}
.x81{left:386.240000pt;}
.x2f{left:387.519845pt;}
.x3a{left:396.000000pt;}
.x27{left:399.040000pt;}
.x3b{left:405.280000pt;}
.x3c{left:407.519837pt;}
.x2c{left:411.200455pt;}
.x84{left:415.200000pt;}
.x87{left:417.280000pt;}
.x89{left:420.640000pt;}
.x62{left:422.560000pt;}
.x58{left:425.920000pt;}
.x7a{left:428.640000pt;}
.x59{left:432.320000pt;}
.x8a{left:434.400000pt;}
.x63{left:435.520000pt;}
.x92{left:437.280000pt;}
.x75{left:438.240000pt;}
.x7b{left:441.280000pt;}
.x8e{left:443.680000pt;}
.x26{left:446.240000pt;}
.x90{left:447.200000pt;}
.x28{left:448.319821pt;}
.x97{left:449.600000pt;}
.x56{left:451.200000pt;}
.x6a{left:452.320000pt;}
.x6d{left:453.440000pt;}
.x5a{left:455.680000pt;}
.xe{left:458.720045pt;}
.x98{left:460.960000pt;}
.x5b{left:462.400000pt;}
.xa1{left:463.520000pt;}
.x6e{left:464.640000pt;}
.x6b{left:465.600000pt;}
.x76{left:468.480000pt;}
.xf{left:470.560037pt;}
.x93{left:473.600000pt;}
.x99{left:475.040000pt;}
.x31{left:477.279809pt;}
.x10{left:482.400029pt;}
.x8c{left:483.520000pt;}
.x3d{left:484.640000pt;}
.x5c{left:485.760000pt;}
.x68{left:489.120000pt;}
.x7c{left:491.360000pt;}
.x5d{left:492.320000pt;}
.x3f{left:495.359802pt;}
.x77{left:498.240000pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x3e{left:509.440000pt;}
.x79{left:512.474462pt;}
.x40{left:515.679794pt;}
.x13{left:517.759954pt;}
.x30{left:524.159790pt;}
.x5e{left:527.360000pt;}
.x14{left:529.439947pt;}
.x78{left:530.400000pt;}
.x88{left:535.034453pt;}
.x64{left:536.800000pt;}
.x49{left:538.240000pt;}
.x23{left:539.200000pt;}
.x7d{left:540.320000pt;}
.x15{left:541.279939pt;}
.x54{left:543.520000pt;}
.x16{left:545.279936pt;}
.x9d{left:549.440000pt;}
.x17{left:560.959873pt;}
.x7e{left:563.680000pt;}
.x18{left:564.799872pt;}
.x9e{left:572.320000pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x5f{left:588.640000pt;}
.x1c{left:592.319763pt;}
.x60{left:597.600000pt;}
.x65{left:598.720000pt;}
.x41{left:600.640000pt;}
.x9b{left:602.720000pt;}
.x94{left:604.160000pt;}
.x7f{left:605.920000pt;}
.x44{left:607.999757pt;}
.x8b{left:611.520000pt;}
.xa0{left:613.760000pt;}
.x43{left:618.719753pt;}
.x7{left:619.840000pt;}
.x45{left:623.679751pt;}
.x4a{left:640.960000pt;}
.x57{left:646.240000pt;}
.x8{left:649.600000pt;}
.x9{left:659.520000pt;}
.x42{left:681.440000pt;}
.x80{left:684.160000pt;}
.x95{left:685.920000pt;}
.x9f{left:689.280000pt;}
.x66{left:691.360000pt;}
.x2e{left:692.960000pt;}
.x29{left:694.719722pt;}
.x1d{left:696.479721pt;}
.x9c{left:697.600000pt;}
}




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