
    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_9ca168b503f3dcf95b295197.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_ff63daa484dbc3e2d408b051.woff')format("woff");}.ff2{font-family:ff2;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d74c3056a3ea0c8c5d78bc9c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_0bb430d65c63d445f72aa14e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_d8f656914fb94ed3e1365afc.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6bf8226dbf88552c15c628c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_47cdc155e36efc6301e04bdb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_8704d90999fff720bd876a3c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_665ee857a58cbf069d9a42c6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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_b808d6277c0dc363e4b86f0f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858887;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_2513543219f29b3ae35fb335.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_48679e70575d1c5e8881bae0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{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);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.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);}
.m5{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);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.018600px;}
.ls7{letter-spacing:0.155922px;}
.lsa{letter-spacing:0.378514px;}
.lsb{letter-spacing:0.378600px;}
.ls9{letter-spacing:0.378602px;}
.ls5{letter-spacing:1.451476px;}
.ls3{letter-spacing:21.075472px;}
.ls6{letter-spacing:88.047565px;}
.ls8{letter-spacing:608.962833px;}
.ls0{letter-spacing:1276.761705px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.418587px;}
.ws9{word-spacing:-18.155914px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.wsb{word-spacing:-15.318596px;}
.wsc{word-spacing:-15.318508px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.374074px;}
.ws10{word-spacing:-14.319354px;}
.wsa{word-spacing:-14.219994px;}
.wsd{word-spacing:-13.505755px;}
.ws2{word-spacing:-13.147195px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:160.196826px;}
.wse{word-spacing:292.887826px;}
.wsf{word-spacing:651.239164px;}
._18{margin-left:-4.965914px;}
._d{margin-left:-3.870354px;}
._a{margin-left:-2.585751px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._4{width:2.450491px;}
._3{width:3.967958px;}
._2{width:5.162792px;}
._13{width:6.261955px;}
._c{width:7.516542px;}
._f{width:8.645799px;}
._16{width:9.681446px;}
._e{width:10.763759px;}
._7{width:12.019066px;}
._19{width:13.109090px;}
._1b{width:14.629532px;}
._12{width:16.036346px;}
._9{width:17.156414px;}
._8{width:18.609261px;}
._1a{width:19.662099px;}
._68{width:20.667055px;}
._6{width:21.688666px;}
._5{width:23.450197px;}
._1c{width:24.571056px;}
._b{width:25.879820px;}
._11{width:27.513191px;}
._1d{width:29.455948px;}
._1e{width:30.505820px;}
._10{width:32.397755px;}
._15{width:34.346157px;}
._14{width:35.545025px;}
._17{width:36.884469px;}
._30{width:38.760896px;}
._2e{width:40.781850px;}
._2f{width:41.782084px;}
._1f{width:47.100441px;}
._53{width:48.451429px;}
._46{width:51.616681px;}
._66{width:52.811899px;}
._67{width:53.815772px;}
._56{width:55.586962px;}
._45{width:59.221077px;}
._58{width:61.467583px;}
._4b{width:63.629199px;}
._54{width:67.347580px;}
._5b{width:68.642197px;}
._48{width:70.231316px;}
._4e{width:74.151594px;}
._59{width:75.518336px;}
._47{width:76.786186px;}
._52{width:82.550014px;}
._60{width:84.103130px;}
._63{width:88.105655px;}
._4d{width:89.469980px;}
._4f{width:93.939658px;}
._3a{width:97.439299px;}
._51{width:105.214718px;}
._20{width:107.494433px;}
._62{width:109.737649px;}
._42{width:115.782834px;}
._5f{width:119.294204px;}
._5c{width:124.133221px;}
._57{width:129.177235px;}
._2b{width:130.363976px;}
._61{width:136.918435px;}
._25{width:144.052375px;}
._50{width:147.728053px;}
._4c{width:149.904538px;}
._65{width:152.697511px;}
._4a{width:157.264167px;}
._39{width:160.111239px;}
._3f{width:161.206544px;}
._64{width:162.239430px;}
._5e{width:164.222283px;}
._3c{width:171.671001px;}
._38{width:175.753707px;}
._26{width:177.495466px;}
._5d{width:184.689194px;}
._49{width:188.214350px;}
._37{width:190.366945px;}
._5a{width:197.409950px;}
._43{width:200.630237px;}
._2d{width:201.687740px;}
._3d{width:215.617802px;}
._27{width:229.960811px;}
._21{width:244.369652px;}
._44{width:250.980092px;}
._3e{width:264.568083px;}
._3b{width:266.311838px;}
._55{width:268.160452px;}
._36{width:283.938789px;}
._40{width:295.191850px;}
._28{width:296.729907px;}
._35{width:300.498903px;}
._22{width:317.622727px;}
._23{width:319.610953px;}
._24{width:325.962332px;}
._29{width:336.901562px;}
._2a{width:346.855152px;}
._31{width:355.856248px;}
._33{width:363.091537px;}
._32{width:370.004082px;}
._41{width:391.466001px;}
._34{width:397.046743px;}
._2c{width:586.211443px;}
.fce{color:rgb(34,34,34);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcd{color:rgb(13,13,13);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fca{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fcc{color:transparent;}
.fs2{font-size:53.999978px;}
.fs4{font-size:56.879977px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:63.359975px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y5{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.120234px;}
.y208{bottom:3.059074px;}
.yd9{bottom:3.059105px;}
.y213{bottom:3.059140px;}
.ye2{bottom:3.059158px;}
.ye4{bottom:3.059165px;}
.y21b{bottom:3.059192px;}
.yed{bottom:3.059217px;}
.yef{bottom:3.059224px;}
.y223{bottom:3.059252px;}
.yf5{bottom:3.059257px;}
.yf7{bottom:3.059264px;}
.yfe{bottom:3.059304px;}
.y100{bottom:3.059311px;}
.y230{bottom:3.059690px;}
.y105{bottom:3.059697px;}
.y11a{bottom:3.239030px;}
.y11c{bottom:3.239038px;}
.y11e{bottom:3.239045px;}
.y120{bottom:3.239052px;}
.y122{bottom:3.239059px;}
.y124{bottom:3.239066px;}
.y126{bottom:3.239074px;}
.y128{bottom:3.239081px;}
.y12a{bottom:3.239088px;}
.y12c{bottom:3.239095px;}
.y12e{bottom:3.239102px;}
.y130{bottom:3.239110px;}
.y132{bottom:3.239117px;}
.y134{bottom:3.239124px;}
.y136{bottom:3.239131px;}
.y138{bottom:3.239138px;}
.y13a{bottom:3.239146px;}
.y13c{bottom:3.239153px;}
.y13e{bottom:3.239160px;}
.y140{bottom:3.239167px;}
.y1ee{bottom:3.239180px;}
.y1f2{bottom:3.239202px;}
.y145{bottom:3.239206px;}
.y147{bottom:3.239214px;}
.y149{bottom:3.239221px;}
.y14b{bottom:3.239228px;}
.y14d{bottom:3.239235px;}
.y14f{bottom:3.239242px;}
.y151{bottom:3.239250px;}
.y153{bottom:3.239257px;}
.y155{bottom:3.239264px;}
.y157{bottom:3.239271px;}
.y159{bottom:3.239278px;}
.y15b{bottom:3.239286px;}
.y15d{bottom:3.239293px;}
.y15f{bottom:3.239300px;}
.y161{bottom:3.239307px;}
.y163{bottom:3.239314px;}
.y165{bottom:3.239322px;}
.y167{bottom:3.239689px;}
.y169{bottom:3.239696px;}
.y16b{bottom:3.240003px;}
.y53{bottom:3.419309px;}
.y15{bottom:3.599054px;}
.y12{bottom:4.319054px;}
.y4c{bottom:4.498947px;}
.ya{bottom:4.500038px;}
.yb{bottom:32.880287px;}
.y9{bottom:50.520240px;}
.y7{bottom:55.020278px;}
.y8{bottom:56.100278px;}
.y111{bottom:130.260248px;}
.y106{bottom:137.820245px;}
.y16a{bottom:138.540240px;}
.y44{bottom:142.679943px;}
.y82{bottom:143.040243px;}
.y110{bottom:149.879940px;}
.y104{bottom:154.200240px;}
.y168{bottom:156.540240px;}
.y81{bottom:163.739935px;}
.y201{bottom:164.639934px;}
.y19b{bottom:164.999934px;}
.y268{bottom:168.059933px;}
.y22f{bottom:170.760240px;}
.y1c2{bottom:171.299931px;}
.y247{bottom:172.199931px;}
.y103{bottom:173.639931px;}
.y166{bottom:174.540240px;}
.y43{bottom:177.059929px;}
.y10f{bottom:178.679929px;}
.y80{bottom:184.439926px;}
.y200{bottom:185.339926px;}
.y267{bottom:186.599925px;}
.y19a{bottom:187.319925px;}
.y102{bottom:190.019924px;}
.y22e{bottom:190.199924px;}
.yd3{bottom:192.539923px;}
.y164{bottom:192.540600px;}
.y42{bottom:197.939921px;}
.y246{bottom:204.959918px;}
.y7f{bottom:205.139918px;}
.y1ff{bottom:206.039918px;}
.yac{bottom:206.219918px;}
.y101{bottom:206.399917px;}
.y22d{bottom:206.579917px;}
.y199{bottom:209.639916px;}
.y162{bottom:210.540600px;}
.y1c1{bottom:212.879915px;}
.yd2{bottom:213.239915px;}
.yff{bottom:220.620600px;}
.y22c{bottom:222.959911px;}
.ybf{bottom:223.139911px;}
.y52{bottom:224.220600px;}
.y245{bottom:225.659910px;}
.y7e{bottom:225.839910px;}
.y1fe{bottom:226.739909px;}
.yab{bottom:226.919909px;}
.y51{bottom:227.819909px;}
.y160{bottom:228.540600px;}
.y198{bottom:231.959907px;}
.y1c0{bottom:233.579907px;}
.yd1{bottom:233.939906px;}
.y266{bottom:235.739906px;}
.yfd{bottom:237.720600px;}
.y22b{bottom:239.339904px;}
.ybe{bottom:243.839902px;}
.y50{bottom:246.359901px;}
.y7d{bottom:246.539901px;}
.y15e{bottom:246.540600px;}
.y1fd{bottom:247.439901px;}
.yaa{bottom:247.619901px;}
.y1bf{bottom:254.279898px;}
.y197{bottom:254.459898px;}
.yd0{bottom:254.639898px;}
.y22a{bottom:255.719898px;}
.yfc{bottom:257.159897px;}
.y24{bottom:258.059897px;}
.ybd{bottom:264.539894px;}
.y15c{bottom:264.540600px;}
.y4f{bottom:264.899894px;}
.y244{bottom:267.059893px;}
.y7c{bottom:267.239893px;}
.y1fc{bottom:268.139893px;}
.ya9{bottom:268.319893px;}
.y229{bottom:272.099891px;}
.yfb{bottom:273.539891px;}
.y1be{bottom:274.979890px;}
.ycf{bottom:275.339890px;}
.y196{bottom:276.779889px;}
.y15a{bottom:282.540600px;}
.y4e{bottom:283.619887px;}
.y265{bottom:285.059886px;}
.ybc{bottom:285.239886px;}
.y243{bottom:287.759885px;}
.y7b{bottom:287.939885px;}
.y228{bottom:288.479885px;}
.y1fb{bottom:288.839884px;}
.ya8{bottom:289.019884px;}
.yfa{bottom:289.919884px;}
.yce{bottom:296.039882px;}
.y1bd{bottom:297.479881px;}
.y195{bottom:299.099880px;}
.y158{bottom:300.540600px;}
.y4d{bottom:302.879879px;}
.y264{bottom:303.599879px;}
.y227{bottom:304.859878px;}
.ybb{bottom:305.939878px;}
.yf9{bottom:306.299877px;}
.y242{bottom:308.459877px;}
.y7a{bottom:308.639877px;}
.y1fa{bottom:309.539876px;}
.ya7{bottom:309.719876px;}
.ycd{bottom:316.739873px;}
.y156{bottom:318.540600px;}
.y226{bottom:321.239872px;}
.y194{bottom:321.419871px;}
.yf8{bottom:322.679871px;}
.y18c{bottom:325.919870px;}
.yba{bottom:326.639869px;}
.y241{bottom:329.159868px;}
.y79{bottom:329.339868px;}
.y1f9{bottom:330.239868px;}
.ya6{bottom:330.419868px;}
.y263{bottom:334.199866px;}
.y154{bottom:336.540600px;}
.yf6{bottom:336.720600px;}
.ycc{bottom:337.439865px;}
.y225{bottom:337.619865px;}
.y1bc{bottom:337.799865px;}
.y193{bottom:343.739863px;}
.y18b{bottom:346.619861px;}
.y41{bottom:346.799861px;}
.yb9{bottom:347.339861px;}
.y240{bottom:349.859860px;}
.y78{bottom:350.039860px;}
.y1f8{bottom:350.939860px;}
.ya5{bottom:351.119860px;}
.y262{bottom:352.919859px;}
.yf4{bottom:353.820600px;}
.y224{bottom:353.999858px;}
.y152{bottom:354.540600px;}
.ycb{bottom:358.139857px;}
.y40{bottom:364.799854px;}
.y192{bottom:366.059854px;}
.y18a{bottom:367.319853px;}
.yb8{bottom:368.039853px;}
.y222{bottom:368.040600px;}
.y23f{bottom:370.559852px;}
.y77{bottom:370.739852px;}
.y1f7{bottom:371.639851px;}
.y1bb{bottom:371.999851px;}
.y150{bottom:372.540600px;}
.yf3{bottom:373.259851px;}
.ya4{bottom:373.619851px;}
.yca{bottom:378.839848px;}
.y261{bottom:383.519847px;}
.y221{bottom:387.479845px;}
.y189{bottom:388.019845px;}
.y191{bottom:388.379845px;}
.yb7{bottom:388.739845px;}
.yf2{bottom:389.639844px;}
.y14e{bottom:390.540600px;}
.y3f{bottom:391.259843px;}
.y76{bottom:391.439843px;}
.y1f6{bottom:392.339843px;}
.y23{bottom:395.939842px;}
.yc9{bottom:399.539840px;}
.y260{bottom:402.059839px;}
.y1ba{bottom:402.419839px;}
.y220{bottom:403.859838px;}
.yf1{bottom:406.199838px;}
.y3e{bottom:408.539837px;}
.y14c{bottom:408.540600px;}
.y188{bottom:408.719837px;}
.y22{bottom:411.419835px;}
.y23e{bottom:411.959835px;}
.y75{bottom:412.139835px;}
.y1f5{bottom:413.039835px;}
.ya3{bottom:413.759834px;}
.yc8{bottom:420.239832px;}
.yb6{bottom:421.499831px;}
.y1dc{bottom:422.399831px;}
.yf0{bottom:422.579831px;}
.y3d{bottom:425.819830px;}
.y14a{bottom:426.540600px;}
.y21{bottom:426.899829px;}
.y190{bottom:428.699829px;}
.y187{bottom:429.419828px;}
.y23d{bottom:432.659827px;}
.y74{bottom:432.839827px;}
.y1f4{bottom:433.739827px;}
.ya2{bottom:434.459826px;}
.y21f{bottom:436.619825px;}
.yee{bottom:436.620600px;}
.y20{bottom:439.679824px;}
.yc7{bottom:440.939824px;}
.yb5{bottom:442.199823px;}
.y3c{bottom:443.099823px;}
.y148{bottom:444.540600px;}
.y1da{bottom:449.219820px;}
.y25f{bottom:451.379819px;}
.y21e{bottom:453.179819px;}
.y23c{bottom:453.359819px;}
.y73{bottom:453.539819px;}
.yec{bottom:453.720600px;}
.y1f3{bottom:454.439818px;}
.ya1{bottom:455.159818px;}
.y18f{bottom:459.119816px;}
.y3b{bottom:460.379816px;}
.yc6{bottom:461.639815px;}
.y146{bottom:462.540600px;}
.yb4{bottom:462.899815px;}
.y1d1{bottom:469.559812px;}
.y186{bottom:471.179812px;}
.yeb{bottom:473.159811px;}
.y23b{bottom:474.059810px;}
.y72{bottom:474.239810px;}
.ya0{bottom:475.859810px;}
.y3a{bottom:477.659809px;}
.y144{bottom:480.540600px;}
.y25e{bottom:481.979807px;}
.yc5{bottom:482.339807px;}
.yb3{bottom:483.599807px;}
.y21d{bottom:485.939806px;}
.yea{bottom:489.539804px;}
.y185{bottom:491.879803px;}
.y1f1{bottom:492.960600px;}
.y1ac{bottom:493.499803px;}
.y23a{bottom:494.759802px;}
.y39{bottom:494.939802px;}
.y9f{bottom:496.559801px;}
.y1d2{bottom:499.079800px;}
.y25d{bottom:500.519800px;}
.y143{bottom:501.779799px;}
.y21c{bottom:502.319799px;}
.yc4{bottom:503.039799px;}
.yb2{bottom:504.299798px;}
.ye9{bottom:505.919798px;}
.y1aa{bottom:509.159796px;}
.y38{bottom:512.039795px;}
.y184{bottom:512.579795px;}
.y1f0{bottom:513.479795px;}
.y1db{bottom:515.279794px;}
.y239{bottom:515.459794px;}
.y71{bottom:515.639794px;}
.y21a{bottom:516.360600px;}
.y9e{bottom:517.259793px;}
.y25c{bottom:519.239792px;}
.y142{bottom:519.779792px;}
.y1ad{bottom:520.319792px;}
.ye8{bottom:522.299791px;}
.yc3{bottom:523.739791px;}
.yb1{bottom:524.999790px;}
.y1d3{bottom:528.419789px;}
.y37{bottom:529.319788px;}
.y1ef{bottom:530.759788px;}
.y183{bottom:533.279787px;}
.y219{bottom:535.799786px;}
.y238{bottom:536.159786px;}
.y70{bottom:536.339785px;}
.y9d{bottom:537.959785px;}
.ye7{bottom:538.679785px;}
.yc2{bottom:544.439782px;}
.y1ed{bottom:545.520600px;}
.yb0{bottom:545.699782px;}
.y36{bottom:546.599781px;}
.y1ae{bottom:547.139781px;}
.y25b{bottom:549.839780px;}
.y141{bottom:552.179779px;}
.y182{bottom:553.979778px;}
.ye6{bottom:555.059778px;}
.y237{bottom:556.859777px;}
.y6f{bottom:557.039777px;}
.y1d4{bottom:557.759777px;}
.y9c{bottom:558.659777px;}
.y35{bottom:563.879774px;}
.y1f{bottom:564.779774px;}
.y1ec{bottom:565.859774px;}
.yaf{bottom:566.399773px;}
.y25a{bottom:568.379773px;}
.y218{bottom:568.559773px;}
.ye5{bottom:571.439771px;}
.y1af{bottom:573.959770px;}
.y181{bottom:574.679770px;}
.y10e{bottom:577.199769px;}
.y236{bottom:577.379769px;}
.y6e{bottom:577.739769px;}
.y13f{bottom:578.640600px;}
.y9b{bottom:579.359768px;}
.y34{bottom:581.159768px;}
.y1b7{bottom:582.419767px;}
.y1eb{bottom:583.139767px;}
.y217{bottom:584.939766px;}
.ye3{bottom:585.480600px;}
.y1d5{bottom:587.279765px;}
.yc1{bottom:593.399763px;}
.y13d{bottom:596.640600px;}
.y10d{bottom:597.899761px;}
.y1ea{bottom:597.900600px;}
.y235{bottom:598.079761px;}
.y33{bottom:598.439761px;}
.y259{bottom:598.979760px;}
.y9a{bottom:600.059760px;}
.y1b0{bottom:600.779760px;}
.y216{bottom:601.319759px;}
.ye1{bottom:602.760600px;}
.y13b{bottom:614.640600px;}
.yae{bottom:615.179754px;}
.y32{bottom:615.539754px;}
.y1d6{bottom:616.619753px;}
.y1e{bottom:617.519753px;}
.y215{bottom:617.699753px;}
.y180{bottom:617.879753px;}
.y1e9{bottom:618.419753px;}
.y10c{bottom:618.599753px;}
.y234{bottom:618.779752px;}
.y6d{bottom:619.139752px;}
.y99{bottom:620.759752px;}
.ye0{bottom:622.199751px;}
.y1b1{bottom:627.599749px;}
.yc0{bottom:630.659748px;}
.y139{bottom:632.640600px;}
.y1d{bottom:632.819747px;}
.y1e8{bottom:633.180600px;}
.y214{bottom:634.079746px;}
.y258{bottom:636.239746px;}
.ydf{bottom:638.579745px;}
.y10b{bottom:639.299744px;}
.y233{bottom:639.479744px;}
.y6c{bottom:639.839744px;}
.y98{bottom:641.459743px;}
.y1d7{bottom:645.959742px;}
.y1c{bottom:648.119741px;}
.y212{bottom:648.120600px;}
.y31{bottom:650.099740px;}
.y137{bottom:650.640600px;}
.y1e7{bottom:653.699739px;}
.y1b2{bottom:654.239738px;}
.yde{bottom:654.959738px;}
.y17f{bottom:659.639736px;}
.yad{bottom:659.999736px;}
.y232{bottom:660.179736px;}
.y6b{bottom:660.539736px;}
.y1b{bottom:662.159735px;}
.y257{bottom:666.839733px;}
.y30{bottom:667.379733px;}
.y211{bottom:667.559733px;}
.y1e6{bottom:668.460600px;}
.y135{bottom:668.640600px;}
.ydd{bottom:671.339731px;}
.y1d8{bottom:675.479730px;}
.y17e{bottom:680.339728px;}
.y10a{bottom:680.699728px;}
.y1b3{bottom:681.059728px;}
.y6a{bottom:681.239728px;}
.y231{bottom:682.679727px;}
.y97{bottom:682.859727px;}
.y210{bottom:683.939726px;}
.y2f{bottom:684.659726px;}
.y256{bottom:685.559726px;}
.y133{bottom:686.640600px;}
.ydc{bottom:687.719725px;}
.y1e5{bottom:688.979724px;}
.y20f{bottom:700.319720px;}
.y17d{bottom:701.039720px;}
.y109{bottom:701.399719px;}
.y2e{bottom:701.759719px;}
.y69{bottom:701.939719px;}
.y96{bottom:703.559719px;}
.y1e4{bottom:703.740600px;}
.ydb{bottom:704.099718px;}
.y131{bottom:704.640600px;}
.y1d9{bottom:704.819718px;}
.y1b4{bottom:707.879717px;}
.y1a{bottom:713.639715px;}
.y20e{bottom:716.699713px;}
.y2d{bottom:719.039712px;}
.yda{bottom:720.479712px;}
.y17c{bottom:721.739711px;}
.y68{bottom:722.639711px;}
.y12f{bottom:722.640600px;}
.y95{bottom:724.259710px;}
.y20d{bottom:733.079707px;}
.y108{bottom:733.979706px;}
.yd8{bottom:734.520600px;}
.y1b5{bottom:734.699706px;}
.y2c{bottom:736.319705px;}
.y1e3{bottom:739.020600px;}
.y1ab{bottom:739.739704px;}
.y12d{bottom:740.640600px;}
.y17b{bottom:742.439703px;}
.y67{bottom:743.339703px;}
.y1b9{bottom:744.059702px;}
.y94{bottom:744.959702px;}
.y20c{bottom:749.459700px;}
.y255{bottom:753.239699px;}
.y2b{bottom:753.599699px;}
.yd7{bottom:755.579698px;}
.y12b{bottom:758.640600px;}
.y1e2{bottom:759.359696px;}
.y1b6{bottom:761.519695px;}
.y107{bottom:762.599695px;}
.y17a{bottom:763.139695px;}
.y66{bottom:764.039694px;}
.y19{bottom:765.119694px;}
.y93{bottom:765.659694px;}
.y20b{bottom:765.839694px;}
.y2a{bottom:770.879692px;}
.y254{bottom:771.959691px;}
.y1b8{bottom:774.299690px;}
.yd6{bottom:776.279689px;}
.y1e1{bottom:776.639689px;}
.y129{bottom:776.640600px;}
.y20a{bottom:782.399687px;}
.y179{bottom:783.839686px;}
.y65{bottom:784.739686px;}
.y92{bottom:786.359685px;}
.y29{bottom:788.159685px;}
.y1d0{bottom:791.939683px;}
.y1e0{bottom:794.639682px;}
.y127{bottom:794.640600px;}
.y209{bottom:798.779680px;}
.y18e{bottom:800.579680px;}
.y253{bottom:802.559679px;}
.y178{bottom:804.539678px;}
.y28{bottom:805.259678px;}
.y64{bottom:805.439678px;}
.y91{bottom:807.059677px;}
.yd5{bottom:809.039676px;}
.y1df{bottom:811.919675px;}
.y125{bottom:812.640600px;}
.y207{bottom:812.820600px;}
.y18{bottom:816.779673px;}
.y1ce{bottom:821.099672px;}
.y27{bottom:822.539671px;}
.y177{bottom:825.239670px;}
.y63{bottom:826.139670px;}
.y90{bottom:827.759669px;}
.y1de{bottom:829.199668px;}
.y123{bottom:830.640600px;}
.y18d{bottom:830.999668px;}
.y17{bottom:832.259667px;}
.yd4{bottom:837.659665px;}
.y25{bottom:838.199665px;}
.y26{bottom:839.819664px;}
.y1c3{bottom:841.619663px;}
.y62{bottom:846.839661px;}
.y8f{bottom:848.459661px;}
.y206{bottom:848.639661px;}
.y121{bottom:848.640600px;}
.y252{bottom:851.699659px;}
.y1a9{bottom:853.859658px;}
.y11{bottom:861.420600px;}
.y14{bottom:862.320600px;}
.y1c4{bottom:865.019654px;}
.y13{bottom:865.919654px;}
.y11f{bottom:866.640600px;}
.y176{bottom:866.999653px;}
.y16{bottom:867.359653px;}
.y61{bottom:867.539653px;}
.y1dd{bottom:868.799652px;}
.y8e{bottom:869.159652px;}
.y251{bottom:870.419652px;}
.y1a7{bottom:876.719649px;}
.y1cf{bottom:879.599648px;}
.y11d{bottom:884.640600px;}
.y175{bottom:887.699645px;}
.y60{bottom:888.239645px;}
.y1c5{bottom:888.599645px;}
.y250{bottom:888.959644px;}
.y8d{bottom:889.859644px;}
.y1a0{bottom:896.159642px;}
.y11b{bottom:902.640600px;}
.y10{bottom:905.879638px;}
.y174{bottom:908.399637px;}
.y5f{bottom:908.939636px;}
.y8c{bottom:910.559636px;}
.y1c6{bottom:912.179635px;}
.y19c{bottom:919.199632px;}
.y24f{bottom:919.559632px;}
.y119{bottom:920.640600px;}
.yf{bottom:928.199629px;}
.y173{bottom:929.099628px;}
.y205{bottom:929.279628px;}
.y5e{bottom:929.639628px;}
.y8b{bottom:931.259627px;}
.y1c7{bottom:935.579626px;}
.y1a1{bottom:935.759626px;}
.y24e{bottom:938.279625px;}
.y118{bottom:941.879623px;}
.y172{bottom:949.799620px;}
.y204{bottom:949.979620px;}
.y5d{bottom:950.339620px;}
.y8a{bottom:951.959619px;}
.y1c8{bottom:959.159616px;}
.y117{bottom:959.879616px;}
.y1a8{bottom:960.419616px;}
.ye{bottom:962.579615px;}
.y24d{bottom:968.879612px;}
.y171{bottom:970.499612px;}
.y203{bottom:970.679612px;}
.y5c{bottom:971.039612px;}
.y89{bottom:972.659611px;}
.y1a2{bottom:975.539610px;}
.y19e{bottom:980.579608px;}
.y1c9{bottom:982.739607px;}
.y24c{bottom:987.419605px;}
.y202{bottom:991.379603px;}
.y5b{bottom:991.739603px;}
.y116{bottom:992.279603px;}
.y88{bottom:993.359603px;}
.yd{bottom:996.959601px;}
.y1ca{bottom:1006.139598px;}
.y19d{bottom:1010.279596px;}
.y170{bottom:1012.079595px;}
.y5a{bottom:1012.439595px;}
.y87{bottom:1014.059594px;}
.y1a3{bottom:1015.139594px;}
.y24b{bottom:1018.019593px;}
.yc{bottom:1019.279592px;}
.y115{bottom:1026.659589px;}
.y1cb{bottom:1029.719588px;}
.y16f{bottom:1032.779587px;}
.y59{bottom:1033.139587px;}
.y86{bottom:1034.759586px;}
.y24a{bottom:1036.739585px;}
.y114{bottom:1048.979580px;}
.y45{bottom:1051.679579px;}
.y1cc{bottom:1053.299579px;}
.y16e{bottom:1053.479579px;}
.y58{bottom:1053.839578px;}
.y1a4{bottom:1054.739578px;}
.y85{bottom:1055.459578px;}
.y4a{bottom:1060.139576px;}
.y249{bottom:1067.339573px;}
.y113{bottom:1071.299571px;}
.y16d{bottom:1074.179570px;}
.y57{bottom:1074.539570px;}
.y84{bottom:1076.159570px;}
.y1cd{bottom:1076.699569px;}
.y49{bottom:1078.499569px;}
.y248{bottom:1085.879566px;}
.y112{bottom:1093.619563px;}
.y1a5{bottom:1094.519562px;}
.y16c{bottom:1094.879562px;}
.y56{bottom:1095.239562px;}
.y48{bottom:1096.859561px;}
.y47{bottom:1115.219554px;}
.y55{bottom:1115.939554px;}
.y83{bottom:1117.559553px;}
.y4b{bottom:1127.640600px;}
.y46{bottom:1133.399547px;}
.y19f{bottom:1133.939546px;}
.y1a6{bottom:1134.119546px;}
.y54{bottom:1138.259545px;}
.y6{bottom:1172.279531px;}
.y3{bottom:1174.619530px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h3{height:5.940000px;}
.h1c{height:15.840000px;}
.h19{height:16.200000px;}
.h1f{height:16.560000px;}
.h16{height:17.820000px;}
.hd{height:19.260000px;}
.ha{height:20.160000px;}
.h6{height:20.340000px;}
.hc{height:35.991197px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:37.415024px;}
.h1a{height:38.549516px;}
.h10{height:39.339828px;}
.h12{height:39.830258px;}
.hf{height:40.297132px;}
.h1e{height:40.501390px;}
.h17{height:40.676468px;}
.h1b{height:40.826937px;}
.h7{height:41.405960px;}
.h1{height:42.894123px;}
.h13{height:43.390178px;}
.h15{height:43.536076px;}
.h20{height:43.900295px;}
.hb{height:44.149201px;}
.h14{height:44.256076px;}
.he{height:44.666701px;}
.h2{height:45.895763px;}
.h1d{height:48.095137px;}
.h8{height:48.796855px;}
.h9{height:51.679667px;}
.h18{height:52.453104px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w3{width:4.500000px;}
.w1d{width:4.680000px;}
.wa{width:7.200000px;}
.w1f{width:7.560000px;}
.w8{width:8.640000px;}
.w2{width:9.720000px;}
.w25{width:14.940000px;}
.w7{width:15.300000px;}
.w30{width:27.000000px;}
.w24{width:28.260000px;}
.w20{width:30.060000px;}
.w11{width:32.400000px;}
.w6{width:33.840000px;}
.w35{width:36.000000px;}
.w34{width:41.220000px;}
.w27{width:43.560000px;}
.w23{width:45.540000px;}
.w12{width:45.900000px;}
.w26{width:46.080000px;}
.w37{width:46.260000px;}
.w10{width:46.800000px;}
.w2d{width:48.780000px;}
.w1c{width:49.680000px;}
.w32{width:49.860000px;}
.w2c{width:51.660000px;}
.w2a{width:52.560000px;}
.w4{width:58.500000px;}
.w38{width:68.940000px;}
.w1e{width:69.480000px;}
.w36{width:70.920000px;}
.w22{width:73.800000px;}
.w29{width:77.040000px;}
.w13{width:77.940000px;}
.w31{width:83.700000px;}
.w33{width:84.780000px;}
.wf{width:86.760000px;}
.w21{width:89.640000px;}
.w16{width:93.060000px;}
.w28{width:94.500000px;}
.w14{width:96.120000px;}
.wc{width:97.380000px;}
.wd{width:100.980000px;}
.we{width:102.600000px;}
.w15{width:113.940000px;}
.w2f{width:122.400000px;}
.w2e{width:147.960000px;}
.w18{width:153.540000px;}
.w1a{width:158.400000px;}
.w1b{width:162.000000px;}
.w9{width:162.360000px;}
.w2b{width:172.080000px;}
.w19{width:183.780000px;}
.w17{width:189.180000px;}
.wb{width:190.080000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x25{left:-4.680255px;}
.x0{left:0.000000px;}
.x17{left:99.179960px;}
.x15{left:105.119958px;}
.x1{left:108.539957px;}
.x2{left:110.701628px;}
.x2d{left:115.559923px;}
.xb{left:119.519952px;}
.x2e{left:121.500014px;}
.x61{left:122.940000px;}
.x14{left:124.379963px;}
.x2c{left:125.459640px;}
.x55{left:126.720000px;}
.xd{left:128.160000px;}
.x5{left:132.659947px;}
.x56{left:134.280000px;}
.x62{left:137.880000px;}
.x8{left:141.659943px;}
.x29{left:147.780571px;}
.x74{left:149.579940px;}
.x31{left:152.280000px;}
.x7d{left:158.399937px;}
.x18{left:159.839936px;}
.x16{left:161.819935px;}
.x30{left:165.420440px;}
.x54{left:166.859933px;}
.x57{left:168.480000px;}
.x7a{left:169.559932px;}
.x1a{left:176.039931px;}
.x79{left:177.479929px;}
.x3a{left:182.160000px;}
.xe{left:186.660000px;}
.xf{left:190.260000px;}
.x2b{left:196.199887px;}
.x51{left:199.260045px;}
.x7c{left:201.779919px;}
.x98{left:204.839951px;}
.x7f{left:206.639917px;}
.x41{left:210.420000px;}
.x75{left:220.859912px;}
.x1d{left:222.479911px;}
.x10{left:224.099910px;}
.x11{left:226.799909px;}
.x64{left:232.020000px;}
.x58{left:236.880000px;}
.x89{left:242.280000px;}
.x19{left:246.239855px;}
.x6f{left:250.919900px;}
.x42{left:256.320000px;}
.x78{left:260.459896px;}
.x1e{left:268.019893px;}
.x12{left:270.900000px;}
.x8a{left:275.579890px;}
.x71{left:277.199889px;}
.x81{left:281.339887px;}
.x63{left:282.960000px;}
.x3b{left:284.760000px;}
.x77{left:288.179885px;}
.x80{left:289.259884px;}
.x44{left:290.340000px;}
.xc{left:292.499765px;}
.x13{left:294.292382px;}
.x26{left:295.559882px;}
.x21{left:302.039901px;}
.x9{left:311.038883px;}
.x32{left:314.640000px;}
.x65{left:321.660000px;}
.x49{left:325.260000px;}
.x59{left:326.520000px;}
.x99{left:336.959840px;}
.x8e{left:345.959862px;}
.x8f{left:356.940000px;}
.x66{left:358.200000px;}
.x37{left:366.839853px;}
.x33{left:370.080000px;}
.x1b{left:373.139851px;}
.xa{left:376.379849px;}
.x72{left:378.179849px;}
.x82{left:383.399847px;}
.x4a{left:385.920000px;}
.x20{left:388.259845px;}
.x22{left:399.599840px;}
.x76{left:405.539838px;}
.x90{left:406.800000px;}
.x5e{left:412.560000px;}
.x7e{left:415.439834px;}
.x45{left:418.500000px;}
.x1f{left:419.759607px;}
.x3c{left:421.740000px;}
.x6{left:432.359827px;}
.x5a{left:440.820000px;}
.x9a{left:443.159823px;}
.x1c{left:446.399821px;}
.x7b{left:455.939818px;}
.x92{left:458.459817px;}
.x83{left:463.859814px;}
.x38{left:467.820000px;}
.x67{left:470.340000px;}
.x5b{left:480.960000px;}
.x84{left:484.199806px;}
.x91{left:485.459806px;}
.x23{left:496.439801px;}
.x43{left:500.400000px;}
.x3d{left:508.500000px;}
.x46{left:511.560000px;}
.x9c{left:514.080000px;}
.x48{left:520.380000px;}
.x5f{left:541.260000px;}
.x4b{left:544.320000px;}
.x68{left:550.620000px;}
.x6b{left:553.140000px;}
.x5c{left:557.460000px;}
.x34{left:560.160000px;}
.x86{left:562.679832px;}
.x9b{left:574.739733px;}
.x39{left:579.419768px;}
.x95{left:581.940000px;}
.x47{left:583.380000px;}
.x8d{left:589.680000px;}
.x27{left:593.100000px;}
.x4c{left:596.880000px;}
.x94{left:597.959761px;}
.x93{left:599.039760px;}
.x53{left:601.919759px;}
.x40{left:611.820000px;}
.x87{left:615.240000px;}
.x9d{left:621.000000px;}
.x35{left:629.280000px;}
.x60{left:630.900000px;}
.x4e{left:633.780000px;}
.x85{left:636.839745px;}
.x24{left:641.520000px;}
.x6c{left:642.780000px;}
.x69{left:645.120000px;}
.x5d{left:647.100000px;}
.x73{left:651.599739px;}
.x3e{left:654.480000px;}
.x4{left:666.179734px;}
.x8c{left:685.080000px;}
.x50{left:690.479358px;}
.x6d{left:691.920000px;}
.x2f{left:697.319721px;}
.x3f{left:701.280000px;}
.x4f{left:703.260000px;}
.x8b{left:710.640000px;}
.x96{left:712.620000px;}
.x36{left:726.660000px;}
.x88{left:734.760000px;}
.x6e{left:746.999701px;}
.x97{left:753.840000px;}
.x4d{left:758.880000px;}
.x28{left:763.739695px;}
.x52{left:764.819685px;}
.x6a{left:767.340000px;}
.x2a{left:772.919691px;}
.x70{left:774.899690px;}
.x7{left:780.120000px;}
.x3{left:784.979686px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.016533pt;}
.ls7{letter-spacing:0.138597pt;}
.lsa{letter-spacing:0.336457pt;}
.lsb{letter-spacing:0.336533pt;}
.ls9{letter-spacing:0.336535pt;}
.ls5{letter-spacing:1.290201pt;}
.ls3{letter-spacing:18.733753pt;}
.ls6{letter-spacing:78.264502pt;}
.ls8{letter-spacing:541.300296pt;}
.ls0{letter-spacing:1134.899294pt;}
.ws4{word-spacing:-28.816521pt;}
.ws9{word-spacing:-16.138591pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.wsb{word-spacing:-13.616529pt;}
.wsc{word-spacing:-13.616451pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.776955pt;}
.ws10{word-spacing:-12.728315pt;}
.wsa{word-spacing:-12.639995pt;}
.wsd{word-spacing:-12.005115pt;}
.ws2{word-spacing:-11.686395pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:142.397178pt;}
.wse{word-spacing:260.344734pt;}
.wsf{word-spacing:578.879256pt;}
._18{margin-left:-4.414146pt;}
._d{margin-left:-3.440314pt;}
._a{margin-left:-2.298445pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._4{width:2.178214pt;}
._3{width:3.527073pt;}
._2{width:4.589149pt;}
._13{width:5.566182pt;}
._c{width:6.681370pt;}
._f{width:7.685155pt;}
._16{width:8.605730pt;}
._e{width:9.567786pt;}
._7{width:10.683614pt;}
._19{width:11.652524pt;}
._1b{width:13.004029pt;}
._12{width:14.254530pt;}
._9{width:15.250146pt;}
._8{width:16.541566pt;}
._1a{width:17.477421pt;}
._68{width:18.370715pt;}
._6{width:19.278814pt;}
._5{width:20.844620pt;}
._1c{width:21.840939pt;}
._b{width:23.004284pt;}
._11{width:24.456170pt;}
._1d{width:26.183065pt;}
._1e{width:27.116285pt;}
._10{width:28.798005pt;}
._15{width:30.529917pt;}
._14{width:31.595578pt;}
._17{width:32.786194pt;}
._30{width:34.454130pt;}
._2e{width:36.250533pt;}
._2f{width:37.139630pt;}
._1f{width:41.867059pt;}
._53{width:43.067937pt;}
._46{width:45.881494pt;}
._66{width:46.943911pt;}
._67{width:47.836242pt;}
._56{width:49.410633pt;}
._45{width:52.640958pt;}
._58{width:54.637851pt;}
._4b{width:56.559288pt;}
._54{width:59.864515pt;}
._5b{width:61.015286pt;}
._48{width:62.427836pt;}
._4e{width:65.912528pt;}
._59{width:67.127410pt;}
._47{width:68.254387pt;}
._52{width:73.377790pt;}
._60{width:74.758338pt;}
._63{width:78.316138pt;}
._4d{width:79.528871pt;}
._4f{width:83.501918pt;}
._3a{width:86.612710pt;}
._51{width:93.524193pt;}
._20{width:95.550607pt;}
._62{width:97.544577pt;}
._42{width:102.918075pt;}
._5f{width:106.039293pt;}
._5c{width:110.340641pt;}
._57{width:114.824209pt;}
._2b{width:115.879089pt;}
._61{width:121.705276pt;}
._25{width:128.046555pt;}
._50{width:131.313825pt;}
._4c{width:133.248478pt;}
._65{width:135.731121pt;}
._4a{width:139.790371pt;}
._39{width:142.321101pt;}
._3f{width:143.294705pt;}
._64{width:144.212827pt;}
._5e{width:145.975362pt;}
._3c{width:152.596445pt;}
._38{width:156.225517pt;}
._26{width:157.773747pt;}
._5d{width:164.168172pt;}
._49{width:167.301644pt;}
._37{width:169.215062pt;}
._5a{width:175.475511pt;}
._43{width:178.337989pt;}
._2d{width:179.277991pt;}
._3d{width:191.660268pt;}
._27{width:204.409610pt;}
._21{width:217.217469pt;}
._44{width:223.093415pt;}
._3e{width:235.171629pt;}
._3b{width:236.721634pt;}
._55{width:238.364847pt;}
._36{width:252.390035pt;}
._40{width:262.392755pt;}
._28{width:263.759918pt;}
._35{width:267.110136pt;}
._22{width:282.331313pt;}
._23{width:284.098625pt;}
._24{width:289.744295pt;}
._29{width:299.468055pt;}
._2a{width:308.315691pt;}
._31{width:316.316665pt;}
._33{width:322.748032pt;}
._32{width:328.892518pt;}
._41{width:347.969779pt;}
._34{width:352.930438pt;}
._2c{width:521.076838pt;}
.fs2{font-size:47.999981pt;}
.fs4{font-size:50.559980pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:56.319977pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y5{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.106875pt;}
.y208{bottom:2.719177pt;}
.yd9{bottom:2.719204pt;}
.y213{bottom:2.719235pt;}
.ye2{bottom:2.719251pt;}
.ye4{bottom:2.719257pt;}
.y21b{bottom:2.719282pt;}
.yed{bottom:2.719304pt;}
.yef{bottom:2.719310pt;}
.y223{bottom:2.719335pt;}
.yf5{bottom:2.719340pt;}
.yf7{bottom:2.719346pt;}
.yfe{bottom:2.719381pt;}
.y100{bottom:2.719387pt;}
.y230{bottom:2.719725pt;}
.y105{bottom:2.719731pt;}
.y11a{bottom:2.879138pt;}
.y11c{bottom:2.879145pt;}
.y11e{bottom:2.879151pt;}
.y120{bottom:2.879157pt;}
.y122{bottom:2.879164pt;}
.y124{bottom:2.879170pt;}
.y126{bottom:2.879177pt;}
.y128{bottom:2.879183pt;}
.y12a{bottom:2.879189pt;}
.y12c{bottom:2.879196pt;}
.y12e{bottom:2.879202pt;}
.y130{bottom:2.879209pt;}
.y132{bottom:2.879215pt;}
.y134{bottom:2.879221pt;}
.y136{bottom:2.879228pt;}
.y138{bottom:2.879234pt;}
.y13a{bottom:2.879241pt;}
.y13c{bottom:2.879247pt;}
.y13e{bottom:2.879253pt;}
.y140{bottom:2.879260pt;}
.y1ee{bottom:2.879272pt;}
.y1f2{bottom:2.879290pt;}
.y145{bottom:2.879295pt;}
.y147{bottom:2.879301pt;}
.y149{bottom:2.879307pt;}
.y14b{bottom:2.879314pt;}
.y14d{bottom:2.879320pt;}
.y14f{bottom:2.879327pt;}
.y151{bottom:2.879333pt;}
.y153{bottom:2.879339pt;}
.y155{bottom:2.879346pt;}
.y157{bottom:2.879352pt;}
.y159{bottom:2.879359pt;}
.y15b{bottom:2.879365pt;}
.y15d{bottom:2.879371pt;}
.y15f{bottom:2.879378pt;}
.y161{bottom:2.879384pt;}
.y163{bottom:2.879391pt;}
.y165{bottom:2.879397pt;}
.y167{bottom:2.879723pt;}
.y169{bottom:2.879730pt;}
.y16b{bottom:2.880003pt;}
.y53{bottom:3.039386pt;}
.y15{bottom:3.199159pt;}
.y12{bottom:3.839159pt;}
.y4c{bottom:3.999064pt;}
.ya{bottom:4.000034pt;}
.yb{bottom:29.226922pt;}
.y9{bottom:44.906880pt;}
.y7{bottom:48.906914pt;}
.y8{bottom:49.866913pt;}
.y111{bottom:115.786887pt;}
.y106{bottom:122.506884pt;}
.y16a{bottom:123.146880pt;}
.y44{bottom:126.826616pt;}
.y82{bottom:127.146882pt;}
.y110{bottom:133.226613pt;}
.y104{bottom:137.066880pt;}
.y168{bottom:139.146880pt;}
.y81{bottom:145.546608pt;}
.y201{bottom:146.346608pt;}
.y19b{bottom:146.666608pt;}
.y268{bottom:149.386607pt;}
.y22f{bottom:151.786880pt;}
.y1c2{bottom:152.266606pt;}
.y247{bottom:153.066605pt;}
.y103{bottom:154.346605pt;}
.y166{bottom:155.146880pt;}
.y43{bottom:157.386604pt;}
.y10f{bottom:158.826603pt;}
.y80{bottom:163.946601pt;}
.y200{bottom:164.746601pt;}
.y267{bottom:165.866600pt;}
.y19a{bottom:166.506600pt;}
.y102{bottom:168.906599pt;}
.y22e{bottom:169.066599pt;}
.yd3{bottom:171.146598pt;}
.y164{bottom:171.147200pt;}
.y42{bottom:175.946596pt;}
.y246{bottom:182.186594pt;}
.y7f{bottom:182.346594pt;}
.y1ff{bottom:183.146593pt;}
.yac{bottom:183.306593pt;}
.y101{bottom:183.466593pt;}
.y22d{bottom:183.626593pt;}
.y199{bottom:186.346592pt;}
.y162{bottom:187.147200pt;}
.y1c1{bottom:189.226591pt;}
.yd2{bottom:189.546591pt;}
.yff{bottom:196.107200pt;}
.y22c{bottom:198.186587pt;}
.ybf{bottom:198.346587pt;}
.y52{bottom:199.307200pt;}
.y245{bottom:200.586586pt;}
.y7e{bottom:200.746586pt;}
.y1fe{bottom:201.546586pt;}
.yab{bottom:201.706586pt;}
.y51{bottom:202.506586pt;}
.y160{bottom:203.147200pt;}
.y198{bottom:206.186584pt;}
.y1c0{bottom:207.626584pt;}
.yd1{bottom:207.946583pt;}
.y266{bottom:209.546583pt;}
.yfd{bottom:211.307200pt;}
.y22b{bottom:212.746582pt;}
.ybe{bottom:216.746580pt;}
.y50{bottom:218.986579pt;}
.y7d{bottom:219.146579pt;}
.y15e{bottom:219.147200pt;}
.y1fd{bottom:219.946579pt;}
.yaa{bottom:220.106579pt;}
.y1bf{bottom:226.026576pt;}
.y197{bottom:226.186576pt;}
.yd0{bottom:226.346576pt;}
.y22a{bottom:227.306576pt;}
.yfc{bottom:228.586575pt;}
.y24{bottom:229.386575pt;}
.ybd{bottom:235.146573pt;}
.y15c{bottom:235.147200pt;}
.y4f{bottom:235.466572pt;}
.y244{bottom:237.386572pt;}
.y7c{bottom:237.546572pt;}
.y1fc{bottom:238.346571pt;}
.ya9{bottom:238.506571pt;}
.y229{bottom:241.866570pt;}
.yfb{bottom:243.146569pt;}
.y1be{bottom:244.426569pt;}
.ycf{bottom:244.746569pt;}
.y196{bottom:246.026568pt;}
.y15a{bottom:251.147200pt;}
.y4e{bottom:252.106566pt;}
.y265{bottom:253.386565pt;}
.ybc{bottom:253.546565pt;}
.y243{bottom:255.786564pt;}
.y7b{bottom:255.946564pt;}
.y228{bottom:256.426564pt;}
.y1fb{bottom:256.746564pt;}
.ya8{bottom:256.906564pt;}
.yfa{bottom:257.706564pt;}
.yce{bottom:263.146561pt;}
.y1bd{bottom:264.426561pt;}
.y195{bottom:265.866560pt;}
.y158{bottom:267.147200pt;}
.y4d{bottom:269.226559pt;}
.y264{bottom:269.866559pt;}
.y227{bottom:270.986558pt;}
.ybb{bottom:271.946558pt;}
.yf9{bottom:272.266558pt;}
.y242{bottom:274.186557pt;}
.y7a{bottom:274.346557pt;}
.y1fa{bottom:275.146557pt;}
.ya7{bottom:275.306557pt;}
.ycd{bottom:281.546554pt;}
.y156{bottom:283.147200pt;}
.y226{bottom:285.546552pt;}
.y194{bottom:285.706552pt;}
.yf8{bottom:286.826552pt;}
.y18c{bottom:289.706551pt;}
.yba{bottom:290.346551pt;}
.y241{bottom:292.586550pt;}
.y79{bottom:292.746550pt;}
.y1f9{bottom:293.546549pt;}
.ya6{bottom:293.706549pt;}
.y263{bottom:297.066548pt;}
.y154{bottom:299.147200pt;}
.yf6{bottom:299.307200pt;}
.ycc{bottom:299.946547pt;}
.y225{bottom:300.106547pt;}
.y1bc{bottom:300.266547pt;}
.y193{bottom:305.546544pt;}
.y18b{bottom:308.106543pt;}
.y41{bottom:308.266543pt;}
.yb9{bottom:308.746543pt;}
.y240{bottom:310.986542pt;}
.y78{bottom:311.146542pt;}
.y1f8{bottom:311.946542pt;}
.ya5{bottom:312.106542pt;}
.y262{bottom:313.706541pt;}
.yf4{bottom:314.507200pt;}
.y224{bottom:314.666541pt;}
.y152{bottom:315.147200pt;}
.ycb{bottom:318.346539pt;}
.y40{bottom:324.266537pt;}
.y192{bottom:325.386537pt;}
.y18a{bottom:326.506536pt;}
.yb8{bottom:327.146536pt;}
.y222{bottom:327.147200pt;}
.y23f{bottom:329.386535pt;}
.y77{bottom:329.546535pt;}
.y1f7{bottom:330.346535pt;}
.y1bb{bottom:330.666534pt;}
.y150{bottom:331.147200pt;}
.yf3{bottom:331.786534pt;}
.ya4{bottom:332.106534pt;}
.yca{bottom:336.746532pt;}
.y261{bottom:340.906530pt;}
.y221{bottom:344.426529pt;}
.y189{bottom:344.906529pt;}
.y191{bottom:345.226529pt;}
.yb7{bottom:345.546528pt;}
.yf2{bottom:346.346528pt;}
.y14e{bottom:347.147200pt;}
.y3f{bottom:347.786528pt;}
.y76{bottom:347.946527pt;}
.y1f6{bottom:348.746527pt;}
.y23{bottom:351.946526pt;}
.yc9{bottom:355.146525pt;}
.y260{bottom:357.386524pt;}
.y1ba{bottom:357.706524pt;}
.y220{bottom:358.986523pt;}
.yf1{bottom:361.066522pt;}
.y3e{bottom:363.146521pt;}
.y14c{bottom:363.147200pt;}
.y188{bottom:363.306521pt;}
.y22{bottom:365.706520pt;}
.y23e{bottom:366.186520pt;}
.y75{bottom:366.346520pt;}
.y1f5{bottom:367.146520pt;}
.ya3{bottom:367.786520pt;}
.yc8{bottom:373.546517pt;}
.yb6{bottom:374.666517pt;}
.y1dc{bottom:375.466516pt;}
.yf0{bottom:375.626516pt;}
.y3d{bottom:378.506515pt;}
.y14a{bottom:379.147200pt;}
.y21{bottom:379.466515pt;}
.y190{bottom:381.066514pt;}
.y187{bottom:381.706514pt;}
.y23d{bottom:384.586513pt;}
.y74{bottom:384.746513pt;}
.y1f4{bottom:385.546512pt;}
.ya2{bottom:386.186512pt;}
.y21f{bottom:388.106511pt;}
.yee{bottom:388.107200pt;}
.y20{bottom:390.826510pt;}
.yc7{bottom:391.946510pt;}
.yb5{bottom:393.066509pt;}
.y3c{bottom:393.866509pt;}
.y148{bottom:395.147200pt;}
.y1da{bottom:399.306507pt;}
.y25f{bottom:401.226506pt;}
.y21e{bottom:402.826506pt;}
.y23c{bottom:402.986505pt;}
.y73{bottom:403.146505pt;}
.yec{bottom:403.307200pt;}
.y1f3{bottom:403.946505pt;}
.ya1{bottom:404.586505pt;}
.y18f{bottom:408.106503pt;}
.y3b{bottom:409.226503pt;}
.yc6{bottom:410.346503pt;}
.y146{bottom:411.147200pt;}
.yb4{bottom:411.466502pt;}
.y1d1{bottom:417.386500pt;}
.y186{bottom:418.826499pt;}
.yeb{bottom:420.586498pt;}
.y23b{bottom:421.386498pt;}
.y72{bottom:421.546498pt;}
.ya0{bottom:422.986497pt;}
.y3a{bottom:424.586497pt;}
.y144{bottom:427.147200pt;}
.y25e{bottom:428.426495pt;}
.yc5{bottom:428.746495pt;}
.yb3{bottom:429.866495pt;}
.y21d{bottom:431.946494pt;}
.yea{bottom:435.146493pt;}
.y185{bottom:437.226492pt;}
.y1f1{bottom:438.187200pt;}
.y1ac{bottom:438.666491pt;}
.y23a{bottom:439.786491pt;}
.y39{bottom:439.946491pt;}
.y9f{bottom:441.386490pt;}
.y1d2{bottom:443.626489pt;}
.y25d{bottom:444.906489pt;}
.y143{bottom:446.026488pt;}
.y21c{bottom:446.506488pt;}
.yc4{bottom:447.146488pt;}
.yb2{bottom:448.266487pt;}
.ye9{bottom:449.706487pt;}
.y1aa{bottom:452.586486pt;}
.y38{bottom:455.146485pt;}
.y184{bottom:455.626484pt;}
.y1f0{bottom:456.426484pt;}
.y1db{bottom:458.026483pt;}
.y239{bottom:458.186483pt;}
.y71{bottom:458.346483pt;}
.y21a{bottom:458.987200pt;}
.y9e{bottom:459.786483pt;}
.y25c{bottom:461.546482pt;}
.y142{bottom:462.026482pt;}
.y1ad{bottom:462.506482pt;}
.ye8{bottom:464.266481pt;}
.yc3{bottom:465.546480pt;}
.yb1{bottom:466.666480pt;}
.y1d3{bottom:469.706479pt;}
.y37{bottom:470.506478pt;}
.y1ef{bottom:471.786478pt;}
.y183{bottom:474.026477pt;}
.y219{bottom:476.266476pt;}
.y238{bottom:476.586476pt;}
.y70{bottom:476.746476pt;}
.y9d{bottom:478.186475pt;}
.ye7{bottom:478.826475pt;}
.yc2{bottom:483.946473pt;}
.y1ed{bottom:484.907200pt;}
.yb0{bottom:485.066473pt;}
.y36{bottom:485.866472pt;}
.y1ae{bottom:486.346472pt;}
.y25b{bottom:488.746471pt;}
.y141{bottom:490.826470pt;}
.y182{bottom:492.426470pt;}
.ye6{bottom:493.386469pt;}
.y237{bottom:494.986469pt;}
.y6f{bottom:495.146469pt;}
.y1d4{bottom:495.786468pt;}
.y9c{bottom:496.586468pt;}
.y35{bottom:501.226466pt;}
.y1f{bottom:502.026466pt;}
.y1ec{bottom:502.986465pt;}
.yaf{bottom:503.466465pt;}
.y25a{bottom:505.226465pt;}
.y218{bottom:505.386465pt;}
.ye5{bottom:507.946463pt;}
.y1af{bottom:510.186463pt;}
.y181{bottom:510.826462pt;}
.y10e{bottom:513.066461pt;}
.y236{bottom:513.226461pt;}
.y6e{bottom:513.546461pt;}
.y13f{bottom:514.347200pt;}
.y9b{bottom:514.986461pt;}
.y34{bottom:516.586460pt;}
.y1b7{bottom:517.706460pt;}
.y1eb{bottom:518.346459pt;}
.y217{bottom:519.946459pt;}
.ye3{bottom:520.427200pt;}
.y1d5{bottom:522.026458pt;}
.yc1{bottom:527.466456pt;}
.y13d{bottom:530.347200pt;}
.y10d{bottom:531.466454pt;}
.y1ea{bottom:531.467200pt;}
.y235{bottom:531.626454pt;}
.y33{bottom:531.946454pt;}
.y259{bottom:532.426454pt;}
.y9a{bottom:533.386453pt;}
.y1b0{bottom:534.026453pt;}
.y216{bottom:534.506453pt;}
.ye1{bottom:535.787200pt;}
.y13b{bottom:546.347200pt;}
.yae{bottom:546.826448pt;}
.y32{bottom:547.146448pt;}
.y1d6{bottom:548.106447pt;}
.y1e{bottom:548.906447pt;}
.y215{bottom:549.066447pt;}
.y180{bottom:549.226447pt;}
.y1e9{bottom:549.706447pt;}
.y10c{bottom:549.866447pt;}
.y234{bottom:550.026447pt;}
.y6d{bottom:550.346447pt;}
.y99{bottom:551.786446pt;}
.ye0{bottom:553.066445pt;}
.y1b1{bottom:557.866444pt;}
.yc0{bottom:560.586442pt;}
.y139{bottom:562.347200pt;}
.y1d{bottom:562.506442pt;}
.y1e8{bottom:562.827200pt;}
.y214{bottom:563.626441pt;}
.y258{bottom:565.546440pt;}
.ydf{bottom:567.626440pt;}
.y10b{bottom:568.266439pt;}
.y233{bottom:568.426439pt;}
.y6c{bottom:568.746439pt;}
.y98{bottom:570.186439pt;}
.y1d7{bottom:574.186437pt;}
.y1c{bottom:576.106436pt;}
.y212{bottom:576.107200pt;}
.y31{bottom:577.866436pt;}
.y137{bottom:578.347200pt;}
.y1e7{bottom:581.066434pt;}
.y1b2{bottom:581.546434pt;}
.yde{bottom:582.186434pt;}
.y17f{bottom:586.346432pt;}
.yad{bottom:586.666432pt;}
.y232{bottom:586.826432pt;}
.y6b{bottom:587.146432pt;}
.y1b{bottom:588.586431pt;}
.y257{bottom:592.746430pt;}
.y30{bottom:593.226429pt;}
.y211{bottom:593.386429pt;}
.y1e6{bottom:594.187200pt;}
.y135{bottom:594.347200pt;}
.ydd{bottom:596.746428pt;}
.y1d8{bottom:600.426426pt;}
.y17e{bottom:604.746425pt;}
.y10a{bottom:605.066425pt;}
.y1b3{bottom:605.386425pt;}
.y6a{bottom:605.546424pt;}
.y231{bottom:606.826424pt;}
.y97{bottom:606.986424pt;}
.y210{bottom:607.946423pt;}
.y2f{bottom:608.586423pt;}
.y256{bottom:609.386423pt;}
.y133{bottom:610.347200pt;}
.ydc{bottom:611.306422pt;}
.y1e5{bottom:612.426422pt;}
.y20f{bottom:622.506418pt;}
.y17d{bottom:623.146417pt;}
.y109{bottom:623.466417pt;}
.y2e{bottom:623.786417pt;}
.y69{bottom:623.946417pt;}
.y96{bottom:625.386417pt;}
.y1e4{bottom:625.547200pt;}
.ydb{bottom:625.866416pt;}
.y131{bottom:626.347200pt;}
.y1d9{bottom:626.506416pt;}
.y1b4{bottom:629.226415pt;}
.y1a{bottom:634.346413pt;}
.y20e{bottom:637.066412pt;}
.y2d{bottom:639.146411pt;}
.yda{bottom:640.426410pt;}
.y17c{bottom:641.546410pt;}
.y68{bottom:642.346410pt;}
.y12f{bottom:642.347200pt;}
.y95{bottom:643.786409pt;}
.y20d{bottom:651.626406pt;}
.y108{bottom:652.426406pt;}
.yd8{bottom:652.907200pt;}
.y1b5{bottom:653.066405pt;}
.y2c{bottom:654.506405pt;}
.y1e3{bottom:656.907200pt;}
.y1ab{bottom:657.546404pt;}
.y12d{bottom:658.347200pt;}
.y17b{bottom:659.946403pt;}
.y67{bottom:660.746402pt;}
.y1b9{bottom:661.386402pt;}
.y94{bottom:662.186402pt;}
.y20c{bottom:666.186400pt;}
.y255{bottom:669.546399pt;}
.y2b{bottom:669.866399pt;}
.yd7{bottom:671.626398pt;}
.y12b{bottom:674.347200pt;}
.y1e2{bottom:674.986397pt;}
.y1b6{bottom:676.906396pt;}
.y107{bottom:677.866396pt;}
.y17a{bottom:678.346395pt;}
.y66{bottom:679.146395pt;}
.y19{bottom:680.106395pt;}
.y93{bottom:680.586394pt;}
.y20b{bottom:680.746394pt;}
.y2a{bottom:685.226393pt;}
.y254{bottom:686.186392pt;}
.y1b8{bottom:688.266391pt;}
.yd6{bottom:690.026391pt;}
.y1e1{bottom:690.346391pt;}
.y129{bottom:690.347200pt;}
.y20a{bottom:695.466388pt;}
.y179{bottom:696.746388pt;}
.y65{bottom:697.546388pt;}
.y92{bottom:698.986387pt;}
.y29{bottom:700.586386pt;}
.y1d0{bottom:703.946385pt;}
.y1e0{bottom:706.346384pt;}
.y127{bottom:706.347200pt;}
.y209{bottom:710.026383pt;}
.y18e{bottom:711.626382pt;}
.y253{bottom:713.386381pt;}
.y178{bottom:715.146381pt;}
.y28{bottom:715.786380pt;}
.y64{bottom:715.946380pt;}
.y91{bottom:717.386380pt;}
.yd5{bottom:719.146379pt;}
.y1df{bottom:721.706378pt;}
.y125{bottom:722.347200pt;}
.y207{bottom:722.507200pt;}
.y18{bottom:726.026376pt;}
.y1ce{bottom:729.866375pt;}
.y27{bottom:731.146374pt;}
.y177{bottom:733.546373pt;}
.y63{bottom:734.346373pt;}
.y90{bottom:735.786372pt;}
.y1de{bottom:737.066372pt;}
.y123{bottom:738.347200pt;}
.y18d{bottom:738.666371pt;}
.y17{bottom:739.786371pt;}
.yd4{bottom:744.586369pt;}
.y25{bottom:745.066369pt;}
.y26{bottom:746.506368pt;}
.y1c3{bottom:748.106367pt;}
.y62{bottom:752.746366pt;}
.y8f{bottom:754.186365pt;}
.y206{bottom:754.346365pt;}
.y121{bottom:754.347200pt;}
.y252{bottom:757.066364pt;}
.y1a9{bottom:758.986363pt;}
.y11{bottom:765.707200pt;}
.y14{bottom:766.507200pt;}
.y1c4{bottom:768.906359pt;}
.y13{bottom:769.706359pt;}
.y11f{bottom:770.347200pt;}
.y176{bottom:770.666358pt;}
.y16{bottom:770.986358pt;}
.y61{bottom:771.146358pt;}
.y1dd{bottom:772.266358pt;}
.y8e{bottom:772.586358pt;}
.y251{bottom:773.706357pt;}
.y1a7{bottom:779.306355pt;}
.y1cf{bottom:781.866354pt;}
.y11d{bottom:786.347200pt;}
.y175{bottom:789.066351pt;}
.y60{bottom:789.546351pt;}
.y1c5{bottom:789.866351pt;}
.y250{bottom:790.186351pt;}
.y8d{bottom:790.986350pt;}
.y1a0{bottom:796.586348pt;}
.y11b{bottom:802.347200pt;}
.y10{bottom:805.226345pt;}
.y174{bottom:807.466344pt;}
.y5f{bottom:807.946343pt;}
.y8c{bottom:809.386343pt;}
.y1c6{bottom:810.826342pt;}
.y19c{bottom:817.066340pt;}
.y24f{bottom:817.386340pt;}
.y119{bottom:818.347200pt;}
.yf{bottom:825.066337pt;}
.y173{bottom:825.866336pt;}
.y205{bottom:826.026336pt;}
.y5e{bottom:826.346336pt;}
.y8b{bottom:827.786336pt;}
.y1c7{bottom:831.626334pt;}
.y1a1{bottom:831.786334pt;}
.y24e{bottom:834.026333pt;}
.y118{bottom:837.226332pt;}
.y172{bottom:844.266329pt;}
.y204{bottom:844.426329pt;}
.y5d{bottom:844.746329pt;}
.y8a{bottom:846.186328pt;}
.y1c8{bottom:852.586326pt;}
.y117{bottom:853.226325pt;}
.y1a8{bottom:853.706325pt;}
.ye{bottom:855.626324pt;}
.y24d{bottom:861.226322pt;}
.y171{bottom:862.666322pt;}
.y203{bottom:862.826322pt;}
.y5c{bottom:863.146321pt;}
.y89{bottom:864.586321pt;}
.y1a2{bottom:867.146320pt;}
.y19e{bottom:871.626318pt;}
.y1c9{bottom:873.546317pt;}
.y24c{bottom:877.706316pt;}
.y202{bottom:881.226314pt;}
.y5b{bottom:881.546314pt;}
.y116{bottom:882.026314pt;}
.y88{bottom:882.986313pt;}
.yd{bottom:886.186312pt;}
.y1ca{bottom:894.346309pt;}
.y19d{bottom:898.026307pt;}
.y170{bottom:899.626307pt;}
.y5a{bottom:899.946307pt;}
.y87{bottom:901.386306pt;}
.y1a3{bottom:902.346306pt;}
.y24b{bottom:904.906305pt;}
.yc{bottom:906.026304pt;}
.y115{bottom:912.586302pt;}
.y1cb{bottom:915.306301pt;}
.y16f{bottom:918.026299pt;}
.y59{bottom:918.346299pt;}
.y86{bottom:919.786299pt;}
.y24a{bottom:921.546298pt;}
.y114{bottom:932.426294pt;}
.y45{bottom:934.826293pt;}
.y1cc{bottom:936.266292pt;}
.y16e{bottom:936.426292pt;}
.y58{bottom:936.746292pt;}
.y1a4{bottom:937.546292pt;}
.y85{bottom:938.186291pt;}
.y4a{bottom:942.346290pt;}
.y249{bottom:948.746287pt;}
.y113{bottom:952.266286pt;}
.y16d{bottom:954.826285pt;}
.y57{bottom:955.146285pt;}
.y84{bottom:956.586284pt;}
.y1cd{bottom:957.066284pt;}
.y49{bottom:958.666283pt;}
.y248{bottom:965.226281pt;}
.y112{bottom:972.106278pt;}
.y1a5{bottom:972.906278pt;}
.y16c{bottom:973.226277pt;}
.y56{bottom:973.546277pt;}
.y48{bottom:974.986277pt;}
.y47{bottom:991.306270pt;}
.y55{bottom:991.946270pt;}
.y83{bottom:993.386269pt;}
.y4b{bottom:1002.347200pt;}
.y46{bottom:1007.466264pt;}
.y19f{bottom:1007.946263pt;}
.y1a6{bottom:1008.106263pt;}
.y54{bottom:1011.786262pt;}
.y6{bottom:1042.026250pt;}
.y3{bottom:1044.106249pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h3{height:5.280000pt;}
.h1c{height:14.080000pt;}
.h19{height:14.400000pt;}
.h1f{height:14.720000pt;}
.h16{height:15.840000pt;}
.hd{height:17.120000pt;}
.ha{height:17.920000pt;}
.h6{height:18.080000pt;}
.hc{height:31.992175pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:33.257799pt;}
.h1a{height:34.266236pt;}
.h10{height:34.968736pt;}
.h12{height:35.404673pt;}
.hf{height:35.819673pt;}
.h1e{height:36.001236pt;}
.h17{height:36.156861pt;}
.h1b{height:36.290610pt;}
.h7{height:36.805298pt;}
.h1{height:38.128110pt;}
.h13{height:38.569047pt;}
.h15{height:38.698735pt;}
.h20{height:39.022484pt;}
.hb{height:39.243734pt;}
.h14{height:39.338734pt;}
.he{height:39.703734pt;}
.h2{height:40.796234pt;}
.h1d{height:42.751233pt;}
.h8{height:43.374983pt;}
.h9{height:45.937482pt;}
.h18{height:46.624981pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w3{width:4.000000pt;}
.w1d{width:4.160000pt;}
.wa{width:6.400000pt;}
.w1f{width:6.720000pt;}
.w8{width:7.680000pt;}
.w2{width:8.640000pt;}
.w25{width:13.280000pt;}
.w7{width:13.600000pt;}
.w30{width:24.000000pt;}
.w24{width:25.120000pt;}
.w20{width:26.720000pt;}
.w11{width:28.800000pt;}
.w6{width:30.080000pt;}
.w35{width:32.000000pt;}
.w34{width:36.640000pt;}
.w27{width:38.720000pt;}
.w23{width:40.480000pt;}
.w12{width:40.800000pt;}
.w26{width:40.960000pt;}
.w37{width:41.120000pt;}
.w10{width:41.600000pt;}
.w2d{width:43.360000pt;}
.w1c{width:44.160000pt;}
.w32{width:44.320000pt;}
.w2c{width:45.920000pt;}
.w2a{width:46.720000pt;}
.w4{width:52.000000pt;}
.w38{width:61.280000pt;}
.w1e{width:61.760000pt;}
.w36{width:63.040000pt;}
.w22{width:65.600000pt;}
.w29{width:68.480000pt;}
.w13{width:69.280000pt;}
.w31{width:74.400000pt;}
.w33{width:75.360000pt;}
.wf{width:77.120000pt;}
.w21{width:79.680000pt;}
.w16{width:82.720000pt;}
.w28{width:84.000000pt;}
.w14{width:85.440000pt;}
.wc{width:86.560000pt;}
.wd{width:89.760000pt;}
.we{width:91.200000pt;}
.w15{width:101.280000pt;}
.w2f{width:108.800000pt;}
.w2e{width:131.520000pt;}
.w18{width:136.480000pt;}
.w1a{width:140.800000pt;}
.w1b{width:144.000000pt;}
.w9{width:144.320000pt;}
.w2b{width:152.960000pt;}
.w19{width:163.360000pt;}
.w17{width:168.160000pt;}
.wb{width:168.960000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x25{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x17{left:88.159965pt;}
.x15{left:93.439963pt;}
.x1{left:96.479961pt;}
.x2{left:98.401447pt;}
.x2d{left:102.719932pt;}
.xb{left:106.239958pt;}
.x2e{left:108.000013pt;}
.x61{left:109.280000pt;}
.x14{left:110.559967pt;}
.x2c{left:111.519680pt;}
.x55{left:112.640000pt;}
.xd{left:113.920000pt;}
.x5{left:117.919953pt;}
.x56{left:119.360000pt;}
.x62{left:122.560000pt;}
.x8{left:125.919950pt;}
.x29{left:131.360508pt;}
.x74{left:132.959947pt;}
.x31{left:135.360000pt;}
.x7d{left:140.799944pt;}
.x18{left:142.079943pt;}
.x16{left:143.839942pt;}
.x30{left:147.040391pt;}
.x54{left:148.319941pt;}
.x57{left:149.760000pt;}
.x7a{left:150.719940pt;}
.x1a{left:156.479938pt;}
.x79{left:157.759937pt;}
.x3a{left:161.920000pt;}
.xe{left:165.920000pt;}
.xf{left:169.120000pt;}
.x2b{left:174.399900pt;}
.x51{left:177.120040pt;}
.x7c{left:179.359928pt;}
.x98{left:182.079956pt;}
.x7f{left:183.679927pt;}
.x41{left:187.040000pt;}
.x75{left:196.319921pt;}
.x1d{left:197.759921pt;}
.x10{left:199.199920pt;}
.x11{left:201.599919pt;}
.x64{left:206.240000pt;}
.x58{left:210.560000pt;}
.x89{left:215.360000pt;}
.x19{left:218.879871pt;}
.x6f{left:223.039911pt;}
.x42{left:227.840000pt;}
.x78{left:231.519907pt;}
.x1e{left:238.239905pt;}
.x12{left:240.800000pt;}
.x8a{left:244.959902pt;}
.x71{left:246.399901pt;}
.x81{left:250.079900pt;}
.x63{left:251.520000pt;}
.x3b{left:253.120000pt;}
.x77{left:256.159898pt;}
.x80{left:257.119897pt;}
.x44{left:258.080000pt;}
.xc{left:259.999791pt;}
.x13{left:261.593229pt;}
.x26{left:262.719895pt;}
.x21{left:268.479912pt;}
.x9{left:276.479007pt;}
.x32{left:279.680000pt;}
.x65{left:285.920000pt;}
.x49{left:289.120000pt;}
.x59{left:290.240000pt;}
.x99{left:299.519857pt;}
.x8e{left:307.519877pt;}
.x8f{left:317.280000pt;}
.x66{left:318.400000pt;}
.x37{left:326.079870pt;}
.x33{left:328.960000pt;}
.x1b{left:331.679867pt;}
.xa{left:334.559866pt;}
.x72{left:336.159866pt;}
.x82{left:340.799864pt;}
.x4a{left:343.040000pt;}
.x20{left:345.119862pt;}
.x22{left:355.199858pt;}
.x76{left:360.479856pt;}
.x90{left:361.600000pt;}
.x5e{left:366.720000pt;}
.x7e{left:369.279852pt;}
.x45{left:372.000000pt;}
.x1f{left:373.119650pt;}
.x3c{left:374.880000pt;}
.x6{left:384.319846pt;}
.x5a{left:391.840000pt;}
.x9a{left:393.919842pt;}
.x1c{left:396.799841pt;}
.x7b{left:405.279838pt;}
.x92{left:407.519837pt;}
.x83{left:412.319835pt;}
.x38{left:415.840000pt;}
.x67{left:418.080000pt;}
.x5b{left:427.520000pt;}
.x84{left:430.399828pt;}
.x91{left:431.519827pt;}
.x23{left:441.279823pt;}
.x43{left:444.800000pt;}
.x3d{left:452.000000pt;}
.x46{left:454.720000pt;}
.x9c{left:456.960000pt;}
.x48{left:462.560000pt;}
.x5f{left:481.120000pt;}
.x4b{left:483.840000pt;}
.x68{left:489.440000pt;}
.x6b{left:491.680000pt;}
.x5c{left:495.520000pt;}
.x34{left:497.920000pt;}
.x86{left:500.159850pt;}
.x9b{left:510.879763pt;}
.x39{left:515.039794pt;}
.x95{left:517.280000pt;}
.x47{left:518.560000pt;}
.x8d{left:524.160000pt;}
.x27{left:527.200000pt;}
.x4c{left:530.560000pt;}
.x94{left:531.519787pt;}
.x93{left:532.479787pt;}
.x53{left:535.039786pt;}
.x40{left:543.840000pt;}
.x87{left:546.880000pt;}
.x9d{left:552.000000pt;}
.x35{left:559.360000pt;}
.x60{left:560.800000pt;}
.x4e{left:563.360000pt;}
.x85{left:566.079774pt;}
.x24{left:570.240000pt;}
.x6c{left:571.360000pt;}
.x69{left:573.440000pt;}
.x5d{left:575.200000pt;}
.x73{left:579.199768pt;}
.x3e{left:581.760000pt;}
.x4{left:592.159763pt;}
.x8c{left:608.960000pt;}
.x50{left:613.759429pt;}
.x6d{left:615.040000pt;}
.x2f{left:619.839752pt;}
.x3f{left:623.360000pt;}
.x4f{left:625.120000pt;}
.x8b{left:631.680000pt;}
.x96{left:633.440000pt;}
.x36{left:645.920000pt;}
.x88{left:653.120000pt;}
.x6e{left:663.999734pt;}
.x97{left:670.080000pt;}
.x4d{left:674.560000pt;}
.x28{left:678.879728pt;}
.x52{left:679.839720pt;}
.x6a{left:682.080000pt;}
.x2a{left:687.039725pt;}
.x70{left:688.799724pt;}
.x7{left:693.440000pt;}
.x3{left:697.759721pt;}
}




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