
    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_d772d84a0015dad37bfc91a4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.280273;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_052949fdf94a9fff4eea20bd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.280273;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_365c613c1ff1a79a071a2775.woff')format("woff");}.ff3{font-family:ff3;line-height:1.072754;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_c1aedb5603e2f79a7c61bf53.woff')format("woff");}.ff4{font-family:ff4;line-height:1.072754;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_dab92a6384b8335559f07f7f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_111921aea1147ba97c03c6da.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_51d7697c73b3f292a1678398.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_dd246e866a5b782d6ad1748f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f32465fc441f3a4b99907d4b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_eb4df016cc31dcb189cf99fa.woff')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_71fec145c1a80638929e5353.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_cd3a2ffa1c4eb16159e9d788.woff')format("woff");}.ffc{font-family:ffc;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.000000px;}
.ls18{letter-spacing:-1.008000px;}
.ls4a{letter-spacing:-0.930000px;}
.ls39{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.579000px;}
.ls42{letter-spacing:-0.521400px;}
.ls3a{letter-spacing:-0.308400px;}
.lsf{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.232800px;}
.ls52{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.207600px;}
.ls46{letter-spacing:-0.144000px;}
.ls54{letter-spacing:-0.091200px;}
.ls3d{letter-spacing:-0.072600px;}
.lsd{letter-spacing:-0.072000px;}
.ls47{letter-spacing:-0.018000px;}
.ls19{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000001px;}
.ls27{letter-spacing:0.008640px;}
.ls55{letter-spacing:0.048000px;}
.ls53{letter-spacing:0.063600px;}
.lsb{letter-spacing:0.072000px;}
.ls3e{letter-spacing:0.094800px;}
.ls5f{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.155520px;}
.ls14{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.198600px;}
.ls3f{letter-spacing:0.198720px;}
.ls6{letter-spacing:0.216000px;}
.ls50{letter-spacing:0.259920px;}
.ls30{letter-spacing:0.262080px;}
.ls1b{letter-spacing:0.288000px;}
.ls4c{letter-spacing:0.336000px;}
.ls2d{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.366000px;}
.ls9{letter-spacing:0.396000px;}
.ls31{letter-spacing:0.400320px;}
.ls16{letter-spacing:0.432000px;}
.ls59{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.735840px;}
.ls2f{letter-spacing:0.792000px;}
.ls5e{letter-spacing:0.828000px;}
.ls34{letter-spacing:0.918720px;}
.ls4f{letter-spacing:0.979920px;}
.ls48{letter-spacing:1.098720px;}
.ls45{letter-spacing:1.368000px;}
.ls1{letter-spacing:1.546560px;}
.ls33{letter-spacing:1.638720px;}
.ls41{letter-spacing:1.726560px;}
.ls4e{letter-spacing:1.927440px;}
.ls8{letter-spacing:2.088000px;}
.ls4d{letter-spacing:2.340000px;}
.ls37{letter-spacing:2.358720px;}
.ls7{letter-spacing:2.808000px;}
.ls32{letter-spacing:3.078720px;}
.ls4b{letter-spacing:3.528000px;}
.ls36{letter-spacing:3.798720px;}
.ls15{letter-spacing:4.087440px;}
.ls13{letter-spacing:4.248000px;}
.ls35{letter-spacing:4.518720px;}
.ls1d{letter-spacing:4.968000px;}
.ls3{letter-spacing:5.146560px;}
.ls1c{letter-spacing:5.688000px;}
.ls2{letter-spacing:5.866560px;}
.ls57{letter-spacing:5.958720px;}
.ls12{letter-spacing:6.408000px;}
.ls5d{letter-spacing:7.128000px;}
.ls25{letter-spacing:7.306560px;}
.ls28{letter-spacing:7.848000px;}
.ls2e{letter-spacing:8.568000px;}
.ls5b{letter-spacing:10.008000px;}
.ls40{letter-spacing:10.296000px;}
.ls1e{letter-spacing:10.728000px;}
.ls1a{letter-spacing:11.448000px;}
.ls10{letter-spacing:12.168000px;}
.ls20{letter-spacing:12.414240px;}
.ls2b{letter-spacing:12.888000px;}
.ls2a{letter-spacing:13.608000px;}
.ls21{letter-spacing:14.167440px;}
.ls23{letter-spacing:14.328000px;}
.ls58{letter-spacing:15.048000px;}
.lsa{letter-spacing:15.768000px;}
.ls2c{letter-spacing:16.488000px;}
.ls5a{letter-spacing:17.208000px;}
.ls1f{letter-spacing:18.648000px;}
.ls5c{letter-spacing:21.528000px;}
.ls43{letter-spacing:24.408000px;}
.ls56{letter-spacing:25.128000px;}
.ls11{letter-spacing:25.848000px;}
.ls24{letter-spacing:63.466560px;}
.ls26{letter-spacing:157.985280px;}
.ls0{letter-spacing:178.327440px;}
.ls4{letter-spacing:197.976000px;}
.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;}
}
.ws10{word-spacing:-21.024000px;}
.ws2a{word-spacing:-20.592000px;}
.ws5{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.232001px;}
.ws6{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.231997px;}
.ws4{word-spacing:-20.160000px;}
.ws18{word-spacing:-20.088000px;}
.ws1e{word-spacing:-20.016000px;}
.ws1d{word-spacing:-19.944000px;}
.wsc{word-spacing:-19.728000px;}
.wsa{word-spacing:-19.584000px;}
.ws29{word-spacing:-19.512000px;}
.wsb{word-spacing:-19.152000px;}
.wsf{word-spacing:-18.622080px;}
.ws0{word-spacing:-18.613440px;}
.wsd{word-spacing:-18.405840px;}
.ws11{word-spacing:-18.305040px;}
.ws1{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.784000px;}
.ws17{word-spacing:-17.783997px;}
.ws1b{word-spacing:-16.727280px;}
.ws14{word-spacing:-16.719960px;}
.ws15{word-spacing:-16.456080px;}
.ws1a{word-spacing:-16.369920px;}
.ws12{word-spacing:-16.361280px;}
.ws1c{word-spacing:-16.153680px;}
.ws13{word-spacing:-15.782280px;}
.ws2{word-spacing:-14.220000px;}
.ws1f{word-spacing:-12.236544px;}
.ws19{word-spacing:-12.204000px;}
.wse{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:225.588000px;}
.ws25{word-spacing:235.368000px;}
.ws21{word-spacing:380.192448px;}
.ws24{word-spacing:380.214000px;}
.ws22{word-spacing:380.255040px;}
.ws23{word-spacing:380.298000px;}
.ws20{word-spacing:393.858000px;}
.ws27{word-spacing:471.738000px;}
.ws28{word-spacing:471.834000px;}
._28{margin-left:-7.691040px;}
._b{margin-left:-5.814720px;}
._a{margin-left:-4.769280px;}
._c{margin-left:-3.576960px;}
._14{margin-left:-2.160000px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._5{width:2.384640px;}
._6{width:3.706560px;}
._8{width:5.027520px;}
._3{width:6.696000px;}
._4{width:7.888800px;}
._f{width:9.679680px;}
._e{width:10.736640px;}
._d{width:12.718080px;}
._1b{width:13.837680px;}
._9{width:14.904000px;}
._17{width:16.248000px;}
._1a{width:17.464800px;}
._11{width:18.504000px;}
._3b{width:19.552800px;}
._12{width:21.340800px;}
._13{width:22.380000px;}
._2c{width:23.604000px;}
._15{width:25.392000px;}
._16{width:26.661600px;}
._2d{width:27.808800px;}
._7{width:28.946880px;}
._39{width:31.149600px;}
._18{width:32.184000px;}
._19{width:33.276000px;}
._3a{width:34.692000px;}
._23{width:52.519680px;}
._24{width:61.194240px;}
._2a{width:71.313120px;}
._20{width:78.006720px;}
._2f{width:92.634000px;}
._30{width:120.156000px;}
._2b{width:124.072320px;}
._1e{width:144.695520px;}
._21{width:148.682880px;}
._1f{width:157.700160px;}
._26{width:159.834240px;}
._25{width:160.993440px;}
._29{width:167.296320px;}
._1c{width:174.816000px;}
._35{width:192.804000px;}
._22{width:197.566560px;}
._32{width:218.796000px;}
._2e{width:233.688000px;}
._37{width:264.576000px;}
._27{width:277.824000px;}
._1d{width:279.442560px;}
._34{width:355.740000px;}
._31{width:360.870000px;}
._38{width:401.520000px;}
._33{width:406.168992px;}
._36{width:498.163008px;}
._1{width:499.714080px;}
._10{width:843.924000px;}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:5.970000px;}
.y110{bottom:6.045000px;}
.y10a{bottom:6.090000px;}
.y52{bottom:9.900000px;}
.y92{bottom:10.080000px;}
.y175{bottom:14.610000px;}
.y153{bottom:14.760000px;}
.y10c{bottom:22.530000px;}
.y10f{bottom:22.605000px;}
.y109{bottom:22.650000px;}
.y8f{bottom:25.380000px;}
.ybb{bottom:25.785000px;}
.y174{bottom:36.180000px;}
.y152{bottom:36.285000px;}
.y54{bottom:40.860000px;}
.y8b{bottom:41.220000px;}
.y8e{bottom:56.340000px;}
.y173{bottom:57.705000px;}
.y151{bottom:57.855000px;}
.y5{bottom:58.176000px;}
.y8d{bottom:71.820000px;}
.y53{bottom:72.000000px;}
.y8a{bottom:72.360000px;}
.y172{bottom:79.275000px;}
.y150{bottom:79.380000px;}
.y4{bottom:81.936000px;}
.y171{bottom:100.050000px;}
.y14f{bottom:100.185000px;}
.y50{bottom:103.680000px;}
.y3{bottom:105.156000px;}
.y170{bottom:108.285000px;}
.y14d{bottom:116.640000px;}
.y2{bottom:126.756000px;}
.y176{bottom:126.900000px;}
.y14e{bottom:133.125000px;}
.y154{bottom:143.490000px;}
.y1{bottom:150.690000px;}
.y177{bottom:152.130000px;}
.y155{bottom:164.880000px;}
.y4a{bottom:172.290000px;}
.y178{bottom:177.375000px;}
.yb9{bottom:177.510000px;}
.y16e{bottom:181.470000px;}
.yfe{bottom:184.890000px;}
.y156{bottom:186.225000px;}
.y41{bottom:187.410000px;}
.y17e{bottom:189.030000px;}
.y187{bottom:192.630000px;}
.y23{bottom:193.710000px;}
.y49{bottom:193.890000px;}
.yb8{bottom:194.430000px;}
.y6b{bottom:196.050000px;}
.yd0{bottom:199.110000px;}
.y48{bottom:199.830000px;}
.y179{bottom:202.605000px;}
.y157{bottom:207.570000px;}
.y16d{bottom:212.430000px;}
.y47{bottom:215.310000px;}
.y4e{bottom:215.490000px;}
.yfd{bottom:215.850000px;}
.y40{bottom:218.370000px;}
.y140{bottom:220.530000px;}
.y4d{bottom:220.710000px;}
.y46{bottom:221.250000px;}
.y186{bottom:223.590000px;}
.y22{bottom:223.770000px;}
.y6a{bottom:224.310000px;}
.y107{bottom:224.850000px;}
.y17a{bottom:227.850000px;}
.y12b{bottom:228.810000px;}
.y158{bottom:228.930000px;}
.ycf{bottom:230.250000px;}
.ye9{bottom:233.850000px;}
.y45{bottom:236.910000px;}
.y13f{bottom:237.450000px;}
.y4c{bottom:237.630000px;}
.y88{bottom:239.070000px;}
.yb7{bottom:241.590000px;}
.y44{bottom:242.130000px;}
.y16c{bottom:242.490000px;}
.yfc{bottom:246.810000px;}
.y3f{bottom:249.510000px;}
.y69{bottom:250.230000px;}
.y159{bottom:250.305000px;}
.y21{bottom:252.030000px;}
.y17b{bottom:253.080000px;}
.y185{bottom:254.550000px;}
.y106{bottom:255.810000px;}
.y43{bottom:258.870000px;}
.yce{bottom:261.210000px;}
.ye8{bottom:264.990000px;}
.y87{bottom:270.030000px;}
.y16b{bottom:270.930000px;}
.y15a{bottom:271.650000px;}
.yb6{bottom:272.730000px;}
.y68{bottom:274.350000px;}
.ya3{bottom:275.250000px;}
.yfb{bottom:277.770000px;}
.y17c{bottom:278.310000px;}
.y20{bottom:280.470000px;}
.y13e{bottom:285.510000px;}
.y105{bottom:286.770000px;}
.y12a{bottom:287.130000px;}
.ycd{bottom:292.215000px;}
.y15b{bottom:293.010000px;}
.ye7{bottom:295.995000px;}
.y16a{bottom:299.415000px;}
.y86{bottom:301.035000px;}
.y17d{bottom:303.555000px;}
.yb5{bottom:303.735000px;}
.y67{bottom:305.355000px;}
.ya2{bottom:306.255000px;}
.yfa{bottom:308.775000px;}
.y1f{bottom:308.955000px;}
.y3e{bottom:311.475000px;}
.y129{bottom:315.615000px;}
.y13d{bottom:316.695000px;}
.y104{bottom:317.775000px;}
.y4b{bottom:319.035000px;}
.ycc{bottom:323.175000px;}
.ye6{bottom:326.955000px;}
.y169{bottom:327.855000px;}
.y85{bottom:332.175000px;}
.y14b{bottom:332.535000px;}
.yb4{bottom:332.895000px;}
.y66{bottom:336.495000px;}
.ya1{bottom:337.215000px;}
.y1e{bottom:337.395000px;}
.yf9{bottom:339.915000px;}
.y3d{bottom:342.435000px;}
.y128{bottom:344.055000px;}
.y13c{bottom:347.655000px;}
.y103{bottom:348.915000px;}
.ycb{bottom:354.135000px;}
.y168{bottom:356.115000px;}
.ye5{bottom:357.915000px;}
.yb3{bottom:360.435000px;}
.y84{bottom:363.135000px;}
.y14a{bottom:363.495000px;}
.y1d{bottom:365.835000px;}
.y65{bottom:367.455000px;}
.ya0{bottom:368.175000px;}
.yf8{bottom:370.875000px;}
.y127{bottom:372.495000px;}
.y3c{bottom:373.395000px;}
.y13b{bottom:378.615000px;}
.y102{bottom:379.875000px;}
.yca{bottom:385.095000px;}
.y167{bottom:385.455000px;}
.ye4{bottom:388.875000px;}
.yb2{bottom:391.575000px;}
.y83{bottom:393.195000px;}
.y1c{bottom:394.095000px;}
.y149{bottom:394.455000px;}
.y64{bottom:398.415000px;}
.y9f{bottom:399.135000px;}
.yf7{bottom:400.035000px;}
.y126{bottom:400.935000px;}
.y3b{bottom:404.355000px;}
.y188{bottom:405.975000px;}
.y13a{bottom:409.575000px;}
.y101{bottom:410.835000px;}
.yc9{bottom:416.235000px;}
.y166{bottom:416.595000px;}
.ye3{bottom:419.835000px;}
.y82{bottom:421.455000px;}
.y1b{bottom:422.535000px;}
.y148{bottom:425.595000px;}
.yf6{bottom:427.575000px;}
.y125{bottom:429.195000px;}
.y63{bottom:429.375000px;}
.y9e{bottom:430.095000px;}
.y3a{bottom:435.315000px;}
.y138{bottom:440.535000px;}
.y100{bottom:441.795000px;}
.yc8{bottom:447.195000px;}
.y165{bottom:447.555000px;}
.y139{bottom:448.095000px;}
.y81{bottom:449.895000px;}
.ye2{bottom:450.795000px;}
.y1a{bottom:456.375000px;}
.y147{bottom:456.555000px;}
.y124{bottom:457.635000px;}
.yf5{bottom:458.715000px;}
.y62{bottom:460.335000px;}
.y9d{bottom:461.055000px;}
.y39{bottom:466.455000px;}
.yff{bottom:467.535000px;}
.y137{bottom:471.495000px;}
.yc7{bottom:477.075000px;}
.y80{bottom:478.335000px;}
.y164{bottom:478.515000px;}
.ye1{bottom:480.855000px;}
.y19{bottom:483.015000px;}
.y123{bottom:486.075000px;}
.y146{bottom:487.515000px;}
.yf4{bottom:489.675000px;}
.y61{bottom:491.295000px;}
.y9c{bottom:492.195000px;}
.y38{bottom:497.415000px;}
.y136{bottom:502.455000px;}
.yc6{bottom:505.515000px;}
.y7f{bottom:506.775000px;}
.ye0{bottom:509.295000px;}
.y163{bottom:509.475000px;}
.y18{bottom:513.075000px;}
.y122{bottom:514.515000px;}
.y145{bottom:518.475000px;}
.yf3{bottom:520.635000px;}
.y60{bottom:522.435000px;}
.y9b{bottom:523.155000px;}
.y37{bottom:528.375000px;}
.y135{bottom:533.595000px;}
.yc5{bottom:533.955000px;}
.y7e{bottom:535.215000px;}
.ydf{bottom:537.735000px;}
.y162{bottom:540.435000px;}
.y17{bottom:541.515000px;}
.y121{bottom:542.955000px;}
.y10e{bottom:545.400000px;}
.y144{bottom:549.465000px;}
.yf2{bottom:551.625000px;}
.y5f{bottom:553.425000px;}
.y9a{bottom:554.145000px;}
.y10b{bottom:556.200000px;}
.y36{bottom:559.365000px;}
.y7d{bottom:560.985000px;}
.yc4{bottom:562.425000px;}
.yb1{bottom:563.505000px;}
.y134{bottom:564.585000px;}
.yde{bottom:566.205000px;}
.y16{bottom:569.805000px;}
.y120{bottom:571.245000px;}
.y161{bottom:571.425000px;}
.y143{bottom:580.425000px;}
.yf1{bottom:582.585000px;}
.y7c{bottom:584.205000px;}
.y5e{bottom:584.385000px;}
.y99{bottom:585.105000px;}
.y35{bottom:590.325000px;}
.yc3{bottom:590.865000px;}
.yb0{bottom:591.945000px;}
.ydd{bottom:594.645000px;}
.y133{bottom:595.545000px;}
.y15{bottom:598.245000px;}
.y11f{bottom:599.685000px;}
.y160{bottom:602.385000px;}
.y142{bottom:611.385000px;}
.y7b{bottom:612.645000px;}
.y5d{bottom:615.345000px;}
.y98{bottom:616.065000px;}
.yc2{bottom:619.125000px;}
.yaf{bottom:620.385000px;}
.y34{bottom:621.285000px;}
.ydc{bottom:622.905000px;}
.y132{bottom:626.505000px;}
.y14{bottom:626.685000px;}
.y11e{bottom:628.125000px;}
.y15f{bottom:633.525000px;}
.y141{bottom:637.305000px;}
.y14c{bottom:639.000000px;}
.y7a{bottom:641.085000px;}
.y5c{bottom:646.305000px;}
.y97{bottom:647.025000px;}
.yc1{bottom:648.645000px;}
.yae{bottom:648.825000px;}
.ydb{bottom:651.345000px;}
.y33{bottom:652.245000px;}
.y13{bottom:655.125000px;}
.y11d{bottom:656.565000px;}
.y131{bottom:657.465000px;}
.y15e{bottom:664.485000px;}
.y79{bottom:666.825000px;}
.yf0{bottom:669.525000px;}
.y5b{bottom:677.265000px;}
.y96{bottom:677.985000px;}
.yc0{bottom:679.605000px;}
.yda{bottom:679.785000px;}
.y32{bottom:683.385000px;}
.y12{bottom:683.565000px;}
.y11c{bottom:685.005000px;}
.y130{bottom:688.425000px;}
.y78{bottom:691.125000px;}
.y108{bottom:693.000000px;}
.y15d{bottom:695.445000px;}
.yef{bottom:697.785000px;}
.yad{bottom:705.525000px;}
.y5a{bottom:708.225000px;}
.y95{bottom:709.125000px;}
.ybf{bottom:710.565000px;}
.y11{bottom:711.825000px;}
.y11b{bottom:713.265000px;}
.y31{bottom:714.345000px;}
.y12f{bottom:719.385000px;}
.y15c{bottom:721.185000px;}
.y16f{bottom:721.440000px;}
.y42{bottom:721.905000px;}
.y77{bottom:722.085000px;}
.yee{bottom:726.225000px;}
.y59{bottom:730.185000px;}
.y94{bottom:730.905000px;}
.ybe{bottom:732.345000px;}
.yac{bottom:733.965000px;}
.yd9{bottom:736.665000px;}
.y10{bottom:740.265000px;}
.y11a{bottom:741.705000px;}
.y30{bottom:745.305000px;}
.y12e{bottom:750.525000px;}
.y76{bottom:753.045000px;}
.yed{bottom:754.665000px;}
.y58{bottom:761.865000px;}
.yab{bottom:762.405000px;}
.y93{bottom:762.585000px;}
.ybd{bottom:764.025000px;}
.yd8{bottom:764.925000px;}
.yf{bottom:769.605000px;}
.y119{bottom:770.145000px;}
.y2f{bottom:776.265000px;}
.y12d{bottom:781.485000px;}
.yec{bottom:783.105000px;}
.y75{bottom:784.005000px;}
.yaa{bottom:790.845000px;}
.yd7{bottom:793.365000px;}
.y57{bottom:793.545000px;}
.y91{bottom:794.265000px;}
.yba{bottom:795.885000px;}
.y118{bottom:798.585000px;}
.ye{bottom:800.565000px;}
.y2e{bottom:807.270000px;}
.y12c{bottom:810.690000px;}
.yeb{bottom:811.590000px;}
.y184{bottom:812.490000px;}
.y74{bottom:814.110000px;}
.ya9{bottom:819.330000px;}
.yd6{bottom:821.850000px;}
.y56{bottom:825.450000px;}
.y90{bottom:826.170000px;}
.y117{bottom:827.070000px;}
.ybc{bottom:827.610000px;}
.yd{bottom:831.750000px;}
.y2d{bottom:838.230000px;}
.yea{bottom:839.850000px;}
.y73{bottom:842.550000px;}
.y183{bottom:843.450000px;}
.ya8{bottom:847.590000px;}
.yd5{bottom:850.290000px;}
.y116{bottom:855.330000px;}
.y55{bottom:857.130000px;}
.y89{bottom:857.850000px;}
.yc{bottom:862.710000px;}
.y72{bottom:868.290000px;}
.y2c{bottom:869.190000px;}
.y182{bottom:874.410000px;}
.ya7{bottom:876.030000px;}
.yd4{bottom:878.730000px;}
.y115{bottom:883.770000px;}
.y4f{bottom:888.810000px;}
.y71{bottom:891.510000px;}
.yb{bottom:893.670000px;}
.y2b{bottom:900.330000px;}
.ya6{bottom:904.470000px;}
.y181{bottom:905.370000px;}
.yd3{bottom:906.990000px;}
.y114{bottom:912.210000px;}
.y70{bottom:919.950000px;}
.ya{bottom:926.070000px;}
.y2a{bottom:931.290000px;}
.ya5{bottom:932.910000px;}
.yd2{bottom:935.430000px;}
.y180{bottom:936.330000px;}
.y113{bottom:940.650000px;}
.y6f{bottom:948.390000px;}
.y8c{bottom:951.630000px;}
.y9{bottom:962.250000px;}
.yd1{bottom:963.870000px;}
.y17f{bottom:965.670000px;}
.y112{bottom:969.090000px;}
.y6e{bottom:976.830000px;}
.y51{bottom:982.590000px;}
.y29{bottom:993.210000px;}
.y8{bottom:996.990000px;}
.y111{bottom:997.350000px;}
.ya4{bottom:1000.770000px;}
.y6d{bottom:1002.570000px;}
.y28{bottom:1024.170000px;}
.y6c{bottom:1025.790000px;}
.y7{bottom:1027.950000px;}
.y27{bottom:1049.190000px;}
.y6{bottom:1058.910000px;}
.y26{bottom:1073.340000px;}
.y25{bottom:1094.940000px;}
.y24{bottom:1116.360000px;}
.hd{height:30.960000px;}
.hf{height:30.996000px;}
.h16{height:31.140000px;}
.h12{height:31.176000px;}
.ha{height:37.705078px;}
.h17{height:37.980000px;}
.h9{height:38.158594px;}
.hb{height:38.671172px;}
.h7{height:43.737891px;}
.h14{height:50.013984px;}
.h10{height:50.524805px;}
.h18{height:53.709961px;}
.h1a{height:53.853187px;}
.h13{height:56.245781px;}
.h3{height:60.257812px;}
.h1d{height:61.136719px;}
.h1{height:62.590430px;}
.h15{height:62.676000px;}
.h8{height:65.884219px;}
.h2{height:69.377344px;}
.h6{height:70.664062px;}
.h1e{height:71.824219px;}
.h4{height:75.410156px;}
.h1c{height:86.709961px;}
.h5{height:88.229883px;}
.h11{height:92.880000px;}
.he{height:93.060000px;}
.hc{height:124.740000px;}
.h19{height:313.380000px;}
.h1b{height:323.820000px;}
.h0{height:1188.000000px;}
.w15{width:45.180000px;}
.w14{width:46.260000px;}
.w13{width:52.740000px;}
.w11{width:71.280000px;}
.w10{width:71.316000px;}
.w6{width:85.716000px;}
.w5{width:107.676000px;}
.wb{width:115.920000px;}
.w8{width:137.520000px;}
.w7{width:150.510000px;}
.w12{width:155.520000px;}
.w3{width:156.780000px;}
.wc{width:158.970000px;}
.we{width:179.640000px;}
.w9{width:190.650000px;}
.wd{width:232.770000px;}
.wf{width:371.595000px;}
.w4{width:375.195000px;}
.wa{width:509.295000px;}
.w17{width:685.080000px;}
.w16{width:702.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:5.040000px;}
.x11{left:7.740000px;}
.x3e{left:9.870000px;}
.x28{left:11.700000px;}
.x2a{left:12.960000px;}
.x3c{left:16.560000px;}
.x24{left:21.780000px;}
.x37{left:25.020000px;}
.x25{left:26.460000px;}
.x15{left:28.080000px;}
.x38{left:30.465000px;}
.x18{left:33.885000px;}
.x1c{left:38.385000px;}
.x26{left:39.420000px;}
.x44{left:40.932000px;}
.x1f{left:41.940000px;}
.x1b{left:44.820000px;}
.x2e{left:48.960000px;}
.x2b{left:53.460000px;}
.x1d{left:59.760000px;}
.x22{left:62.634000px;}
.x1a{left:64.260000px;}
.x19{left:66.240000px;}
.x33{left:67.545000px;}
.x2c{left:70.380000px;}
.x39{left:73.260000px;}
.x1e{left:97.914000px;}
.x1{left:108.035986px;}
.x2d{left:111.780000px;}
.x46{left:117.540000px;}
.x45{left:124.380000px;}
.x13{left:139.185000px;}
.x10{left:150.509973px;}
.xf{left:156.089973px;}
.x2{left:162.029986px;}
.xe{left:166.889986px;}
.x2f{left:169.589986px;}
.x3f{left:172.980000px;}
.x4{left:177.149986px;}
.x20{left:182.549986px;}
.x48{left:185.010000px;}
.x21{left:216.029986px;}
.x4c{left:225.029986px;}
.x12{left:266.250000px;}
.x3{left:283.529986px;}
.x32{left:289.110000px;}
.x23{left:300.135000px;}
.xd{left:324.074986px;}
.x16{left:352.695000px;}
.x34{left:361.155000px;}
.x3a{left:400.860000px;}
.x27{left:416.775000px;}
.x35{left:433.155000px;}
.x7{left:456.374973px;}
.x8{left:461.594986px;}
.x40{left:463.754973px;}
.x41{left:468.974986px;}
.x3d{left:484.380000px;}
.x17{left:503.925000px;}
.x36{left:505.185000px;}
.x30{left:523.184973px;}
.x31{left:528.404986px;}
.x4f{left:536.504986px;}
.x49{left:551.415000px;}
.x4d{left:561.524986px;}
.x29{left:576.645000px;}
.x5{left:584.744986px;}
.x9{left:596.804973px;}
.x42{left:600.090000px;}
.xa{left:602.024986px;}
.x50{left:606.344986px;}
.x43{left:612.615000px;}
.x4e{left:626.684986px;}
.x14{left:642.345000px;}
.x4b{left:668.984986px;}
.x4a{left:679.964986px;}
.xb{left:744.449973px;}
.xc{left:749.669986px;}
.x47{left:794.309986px;}
.x6{left:810.149986px;}
@media print{
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.333333pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls4a{letter-spacing:-0.826667pt;}
.ls39{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.514667pt;}
.ls42{letter-spacing:-0.463467pt;}
.ls3a{letter-spacing:-0.274133pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.206933pt;}
.ls52{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.184533pt;}
.ls46{letter-spacing:-0.128000pt;}
.ls54{letter-spacing:-0.081067pt;}
.ls3d{letter-spacing:-0.064533pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls47{letter-spacing:-0.016000pt;}
.ls19{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000001pt;}
.ls27{letter-spacing:0.007680pt;}
.ls55{letter-spacing:0.042667pt;}
.ls53{letter-spacing:0.056533pt;}
.lsb{letter-spacing:0.064000pt;}
.ls3e{letter-spacing:0.084267pt;}
.ls5f{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.138240pt;}
.ls14{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.176533pt;}
.ls3f{letter-spacing:0.176640pt;}
.ls6{letter-spacing:0.192000pt;}
.ls50{letter-spacing:0.231040pt;}
.ls30{letter-spacing:0.232960pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls4c{letter-spacing:0.298667pt;}
.ls2d{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.325333pt;}
.ls9{letter-spacing:0.352000pt;}
.ls31{letter-spacing:0.355840pt;}
.ls16{letter-spacing:0.384000pt;}
.ls59{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.654080pt;}
.ls2f{letter-spacing:0.704000pt;}
.ls5e{letter-spacing:0.736000pt;}
.ls34{letter-spacing:0.816640pt;}
.ls4f{letter-spacing:0.871040pt;}
.ls48{letter-spacing:0.976640pt;}
.ls45{letter-spacing:1.216000pt;}
.ls1{letter-spacing:1.374720pt;}
.ls33{letter-spacing:1.456640pt;}
.ls41{letter-spacing:1.534720pt;}
.ls4e{letter-spacing:1.713280pt;}
.ls8{letter-spacing:1.856000pt;}
.ls4d{letter-spacing:2.080000pt;}
.ls37{letter-spacing:2.096640pt;}
.ls7{letter-spacing:2.496000pt;}
.ls32{letter-spacing:2.736640pt;}
.ls4b{letter-spacing:3.136000pt;}
.ls36{letter-spacing:3.376640pt;}
.ls15{letter-spacing:3.633280pt;}
.ls13{letter-spacing:3.776000pt;}
.ls35{letter-spacing:4.016640pt;}
.ls1d{letter-spacing:4.416000pt;}
.ls3{letter-spacing:4.574720pt;}
.ls1c{letter-spacing:5.056000pt;}
.ls2{letter-spacing:5.214720pt;}
.ls57{letter-spacing:5.296640pt;}
.ls12{letter-spacing:5.696000pt;}
.ls5d{letter-spacing:6.336000pt;}
.ls25{letter-spacing:6.494720pt;}
.ls28{letter-spacing:6.976000pt;}
.ls2e{letter-spacing:7.616000pt;}
.ls5b{letter-spacing:8.896000pt;}
.ls40{letter-spacing:9.152000pt;}
.ls1e{letter-spacing:9.536000pt;}
.ls1a{letter-spacing:10.176000pt;}
.ls10{letter-spacing:10.816000pt;}
.ls20{letter-spacing:11.034880pt;}
.ls2b{letter-spacing:11.456000pt;}
.ls2a{letter-spacing:12.096000pt;}
.ls21{letter-spacing:12.593280pt;}
.ls23{letter-spacing:12.736000pt;}
.ls58{letter-spacing:13.376000pt;}
.lsa{letter-spacing:14.016000pt;}
.ls2c{letter-spacing:14.656000pt;}
.ls5a{letter-spacing:15.296000pt;}
.ls1f{letter-spacing:16.576000pt;}
.ls5c{letter-spacing:19.136000pt;}
.ls43{letter-spacing:21.696000pt;}
.ls56{letter-spacing:22.336000pt;}
.ls11{letter-spacing:22.976000pt;}
.ls24{letter-spacing:56.414720pt;}
.ls26{letter-spacing:140.431360pt;}
.ls0{letter-spacing:158.513280pt;}
.ls4{letter-spacing:175.978667pt;}
.ws10{word-spacing:-18.688000pt;}
.ws2a{word-spacing:-18.304000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws7{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.984001pt;}
.ws6{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.983997pt;}
.ws4{word-spacing:-17.920000pt;}
.ws18{word-spacing:-17.856000pt;}
.ws1e{word-spacing:-17.792000pt;}
.ws1d{word-spacing:-17.728000pt;}
.wsc{word-spacing:-17.536000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws29{word-spacing:-17.344000pt;}
.wsb{word-spacing:-17.024000pt;}
.wsf{word-spacing:-16.552960pt;}
.ws0{word-spacing:-16.545280pt;}
.wsd{word-spacing:-16.360747pt;}
.ws11{word-spacing:-16.271147pt;}
.ws1{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws17{word-spacing:-15.807997pt;}
.ws1b{word-spacing:-14.868693pt;}
.ws14{word-spacing:-14.862187pt;}
.ws15{word-spacing:-14.627627pt;}
.ws1a{word-spacing:-14.551040pt;}
.ws12{word-spacing:-14.543360pt;}
.ws1c{word-spacing:-14.358827pt;}
.ws13{word-spacing:-14.028693pt;}
.ws2{word-spacing:-12.640000pt;}
.ws1f{word-spacing:-10.876928pt;}
.ws19{word-spacing:-10.848000pt;}
.wse{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:200.522667pt;}
.ws25{word-spacing:209.216000pt;}
.ws21{word-spacing:337.948843pt;}
.ws24{word-spacing:337.968000pt;}
.ws22{word-spacing:338.004480pt;}
.ws23{word-spacing:338.042667pt;}
.ws20{word-spacing:350.096000pt;}
.ws27{word-spacing:419.322667pt;}
.ws28{word-spacing:419.408000pt;}
._28{margin-left:-6.836480pt;}
._b{margin-left:-5.168640pt;}
._a{margin-left:-4.239360pt;}
._c{margin-left:-3.179520pt;}
._14{margin-left:-1.920000pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._5{width:2.119680pt;}
._6{width:3.294720pt;}
._8{width:4.468907pt;}
._3{width:5.952000pt;}
._4{width:7.012267pt;}
._f{width:8.604160pt;}
._e{width:9.543680pt;}
._d{width:11.304960pt;}
._1b{width:12.300160pt;}
._9{width:13.248000pt;}
._17{width:14.442667pt;}
._1a{width:15.524267pt;}
._11{width:16.448000pt;}
._3b{width:17.380267pt;}
._12{width:18.969600pt;}
._13{width:19.893333pt;}
._2c{width:20.981333pt;}
._15{width:22.570667pt;}
._16{width:23.699200pt;}
._2d{width:24.718933pt;}
._7{width:25.730560pt;}
._39{width:27.688533pt;}
._18{width:28.608000pt;}
._19{width:29.578667pt;}
._3a{width:30.837333pt;}
._23{width:46.684160pt;}
._24{width:54.394880pt;}
._2a{width:63.389440pt;}
._20{width:69.339307pt;}
._2f{width:82.341333pt;}
._30{width:106.805333pt;}
._2b{width:110.286507pt;}
._1e{width:128.618240pt;}
._21{width:132.162560pt;}
._1f{width:140.177920pt;}
._26{width:142.074880pt;}
._25{width:143.105280pt;}
._29{width:148.707840pt;}
._1c{width:155.392000pt;}
._35{width:171.381333pt;}
._22{width:175.614720pt;}
._32{width:194.485333pt;}
._2e{width:207.722667pt;}
._37{width:235.178667pt;}
._27{width:246.954667pt;}
._1d{width:248.393387pt;}
._34{width:316.213333pt;}
._31{width:320.773333pt;}
._38{width:356.906667pt;}
._33{width:361.039104pt;}
._36{width:442.811563pt;}
._1{width:444.190293pt;}
._10{width:750.154667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:5.306667pt;}
.y110{bottom:5.373333pt;}
.y10a{bottom:5.413333pt;}
.y52{bottom:8.800000pt;}
.y92{bottom:8.960000pt;}
.y175{bottom:12.986667pt;}
.y153{bottom:13.120000pt;}
.y10c{bottom:20.026667pt;}
.y10f{bottom:20.093333pt;}
.y109{bottom:20.133333pt;}
.y8f{bottom:22.560000pt;}
.ybb{bottom:22.920000pt;}
.y174{bottom:32.160000pt;}
.y152{bottom:32.253333pt;}
.y54{bottom:36.320000pt;}
.y8b{bottom:36.640000pt;}
.y8e{bottom:50.080000pt;}
.y173{bottom:51.293333pt;}
.y151{bottom:51.426667pt;}
.y5{bottom:51.712000pt;}
.y8d{bottom:63.840000pt;}
.y53{bottom:64.000000pt;}
.y8a{bottom:64.320000pt;}
.y172{bottom:70.466667pt;}
.y150{bottom:70.560000pt;}
.y4{bottom:72.832000pt;}
.y171{bottom:88.933333pt;}
.y14f{bottom:89.053333pt;}
.y50{bottom:92.160000pt;}
.y3{bottom:93.472000pt;}
.y170{bottom:96.253333pt;}
.y14d{bottom:103.680000pt;}
.y2{bottom:112.672000pt;}
.y176{bottom:112.800000pt;}
.y14e{bottom:118.333333pt;}
.y154{bottom:127.546667pt;}
.y1{bottom:133.946667pt;}
.y177{bottom:135.226667pt;}
.y155{bottom:146.560000pt;}
.y4a{bottom:153.146667pt;}
.y178{bottom:157.666667pt;}
.yb9{bottom:157.786667pt;}
.y16e{bottom:161.306667pt;}
.yfe{bottom:164.346667pt;}
.y156{bottom:165.533333pt;}
.y41{bottom:166.586667pt;}
.y17e{bottom:168.026667pt;}
.y187{bottom:171.226667pt;}
.y23{bottom:172.186667pt;}
.y49{bottom:172.346667pt;}
.yb8{bottom:172.826667pt;}
.y6b{bottom:174.266667pt;}
.yd0{bottom:176.986667pt;}
.y48{bottom:177.626667pt;}
.y179{bottom:180.093333pt;}
.y157{bottom:184.506667pt;}
.y16d{bottom:188.826667pt;}
.y47{bottom:191.386667pt;}
.y4e{bottom:191.546667pt;}
.yfd{bottom:191.866667pt;}
.y40{bottom:194.106667pt;}
.y140{bottom:196.026667pt;}
.y4d{bottom:196.186667pt;}
.y46{bottom:196.666667pt;}
.y186{bottom:198.746667pt;}
.y22{bottom:198.906667pt;}
.y6a{bottom:199.386667pt;}
.y107{bottom:199.866667pt;}
.y17a{bottom:202.533333pt;}
.y12b{bottom:203.386667pt;}
.y158{bottom:203.493333pt;}
.ycf{bottom:204.666667pt;}
.ye9{bottom:207.866667pt;}
.y45{bottom:210.586667pt;}
.y13f{bottom:211.066667pt;}
.y4c{bottom:211.226667pt;}
.y88{bottom:212.506667pt;}
.yb7{bottom:214.746667pt;}
.y44{bottom:215.226667pt;}
.y16c{bottom:215.546667pt;}
.yfc{bottom:219.386667pt;}
.y3f{bottom:221.786667pt;}
.y69{bottom:222.426667pt;}
.y159{bottom:222.493333pt;}
.y21{bottom:224.026667pt;}
.y17b{bottom:224.960000pt;}
.y185{bottom:226.266667pt;}
.y106{bottom:227.386667pt;}
.y43{bottom:230.106667pt;}
.yce{bottom:232.186667pt;}
.ye8{bottom:235.546667pt;}
.y87{bottom:240.026667pt;}
.y16b{bottom:240.826667pt;}
.y15a{bottom:241.466667pt;}
.yb6{bottom:242.426667pt;}
.y68{bottom:243.866667pt;}
.ya3{bottom:244.666667pt;}
.yfb{bottom:246.906667pt;}
.y17c{bottom:247.386667pt;}
.y20{bottom:249.306667pt;}
.y13e{bottom:253.786667pt;}
.y105{bottom:254.906667pt;}
.y12a{bottom:255.226667pt;}
.ycd{bottom:259.746667pt;}
.y15b{bottom:260.453333pt;}
.ye7{bottom:263.106667pt;}
.y16a{bottom:266.146667pt;}
.y86{bottom:267.586667pt;}
.y17d{bottom:269.826667pt;}
.yb5{bottom:269.986667pt;}
.y67{bottom:271.426667pt;}
.ya2{bottom:272.226667pt;}
.yfa{bottom:274.466667pt;}
.y1f{bottom:274.626667pt;}
.y3e{bottom:276.866667pt;}
.y129{bottom:280.546667pt;}
.y13d{bottom:281.506667pt;}
.y104{bottom:282.466667pt;}
.y4b{bottom:283.586667pt;}
.ycc{bottom:287.266667pt;}
.ye6{bottom:290.626667pt;}
.y169{bottom:291.426667pt;}
.y85{bottom:295.266667pt;}
.y14b{bottom:295.586667pt;}
.yb4{bottom:295.906667pt;}
.y66{bottom:299.106667pt;}
.ya1{bottom:299.746667pt;}
.y1e{bottom:299.906667pt;}
.yf9{bottom:302.146667pt;}
.y3d{bottom:304.386667pt;}
.y128{bottom:305.826667pt;}
.y13c{bottom:309.026667pt;}
.y103{bottom:310.146667pt;}
.ycb{bottom:314.786667pt;}
.y168{bottom:316.546667pt;}
.ye5{bottom:318.146667pt;}
.yb3{bottom:320.386667pt;}
.y84{bottom:322.786667pt;}
.y14a{bottom:323.106667pt;}
.y1d{bottom:325.186667pt;}
.y65{bottom:326.626667pt;}
.ya0{bottom:327.266667pt;}
.yf8{bottom:329.666667pt;}
.y127{bottom:331.106667pt;}
.y3c{bottom:331.906667pt;}
.y13b{bottom:336.546667pt;}
.y102{bottom:337.666667pt;}
.yca{bottom:342.306667pt;}
.y167{bottom:342.626667pt;}
.ye4{bottom:345.666667pt;}
.yb2{bottom:348.066667pt;}
.y83{bottom:349.506667pt;}
.y1c{bottom:350.306667pt;}
.y149{bottom:350.626667pt;}
.y64{bottom:354.146667pt;}
.y9f{bottom:354.786667pt;}
.yf7{bottom:355.586667pt;}
.y126{bottom:356.386667pt;}
.y3b{bottom:359.426667pt;}
.y188{bottom:360.866667pt;}
.y13a{bottom:364.066667pt;}
.y101{bottom:365.186667pt;}
.yc9{bottom:369.986667pt;}
.y166{bottom:370.306667pt;}
.ye3{bottom:373.186667pt;}
.y82{bottom:374.626667pt;}
.y1b{bottom:375.586667pt;}
.y148{bottom:378.306667pt;}
.yf6{bottom:380.066667pt;}
.y125{bottom:381.506667pt;}
.y63{bottom:381.666667pt;}
.y9e{bottom:382.306667pt;}
.y3a{bottom:386.946667pt;}
.y138{bottom:391.586667pt;}
.y100{bottom:392.706667pt;}
.yc8{bottom:397.506667pt;}
.y165{bottom:397.826667pt;}
.y139{bottom:398.306667pt;}
.y81{bottom:399.906667pt;}
.ye2{bottom:400.706667pt;}
.y1a{bottom:405.666667pt;}
.y147{bottom:405.826667pt;}
.y124{bottom:406.786667pt;}
.yf5{bottom:407.746667pt;}
.y62{bottom:409.186667pt;}
.y9d{bottom:409.826667pt;}
.y39{bottom:414.626667pt;}
.yff{bottom:415.586667pt;}
.y137{bottom:419.106667pt;}
.yc7{bottom:424.066667pt;}
.y80{bottom:425.186667pt;}
.y164{bottom:425.346667pt;}
.ye1{bottom:427.426667pt;}
.y19{bottom:429.346667pt;}
.y123{bottom:432.066667pt;}
.y146{bottom:433.346667pt;}
.yf4{bottom:435.266667pt;}
.y61{bottom:436.706667pt;}
.y9c{bottom:437.506667pt;}
.y38{bottom:442.146667pt;}
.y136{bottom:446.626667pt;}
.yc6{bottom:449.346667pt;}
.y7f{bottom:450.466667pt;}
.ye0{bottom:452.706667pt;}
.y163{bottom:452.866667pt;}
.y18{bottom:456.066667pt;}
.y122{bottom:457.346667pt;}
.y145{bottom:460.866667pt;}
.yf3{bottom:462.786667pt;}
.y60{bottom:464.386667pt;}
.y9b{bottom:465.026667pt;}
.y37{bottom:469.666667pt;}
.y135{bottom:474.306667pt;}
.yc5{bottom:474.626667pt;}
.y7e{bottom:475.746667pt;}
.ydf{bottom:477.986667pt;}
.y162{bottom:480.386667pt;}
.y17{bottom:481.346667pt;}
.y121{bottom:482.626667pt;}
.y10e{bottom:484.800000pt;}
.y144{bottom:488.413333pt;}
.yf2{bottom:490.333333pt;}
.y5f{bottom:491.933333pt;}
.y9a{bottom:492.573333pt;}
.y10b{bottom:494.400000pt;}
.y36{bottom:497.213333pt;}
.y7d{bottom:498.653333pt;}
.yc4{bottom:499.933333pt;}
.yb1{bottom:500.893333pt;}
.y134{bottom:501.853333pt;}
.yde{bottom:503.293333pt;}
.y16{bottom:506.493333pt;}
.y120{bottom:507.773333pt;}
.y161{bottom:507.933333pt;}
.y143{bottom:515.933333pt;}
.yf1{bottom:517.853333pt;}
.y7c{bottom:519.293333pt;}
.y5e{bottom:519.453333pt;}
.y99{bottom:520.093333pt;}
.y35{bottom:524.733333pt;}
.yc3{bottom:525.213333pt;}
.yb0{bottom:526.173333pt;}
.ydd{bottom:528.573333pt;}
.y133{bottom:529.373333pt;}
.y15{bottom:531.773333pt;}
.y11f{bottom:533.053333pt;}
.y160{bottom:535.453333pt;}
.y142{bottom:543.453333pt;}
.y7b{bottom:544.573333pt;}
.y5d{bottom:546.973333pt;}
.y98{bottom:547.613333pt;}
.yc2{bottom:550.333333pt;}
.yaf{bottom:551.453333pt;}
.y34{bottom:552.253333pt;}
.ydc{bottom:553.693333pt;}
.y132{bottom:556.893333pt;}
.y14{bottom:557.053333pt;}
.y11e{bottom:558.333333pt;}
.y15f{bottom:563.133333pt;}
.y141{bottom:566.493333pt;}
.y14c{bottom:568.000000pt;}
.y7a{bottom:569.853333pt;}
.y5c{bottom:574.493333pt;}
.y97{bottom:575.133333pt;}
.yc1{bottom:576.573333pt;}
.yae{bottom:576.733333pt;}
.ydb{bottom:578.973333pt;}
.y33{bottom:579.773333pt;}
.y13{bottom:582.333333pt;}
.y11d{bottom:583.613333pt;}
.y131{bottom:584.413333pt;}
.y15e{bottom:590.653333pt;}
.y79{bottom:592.733333pt;}
.yf0{bottom:595.133333pt;}
.y5b{bottom:602.013333pt;}
.y96{bottom:602.653333pt;}
.yc0{bottom:604.093333pt;}
.yda{bottom:604.253333pt;}
.y32{bottom:607.453333pt;}
.y12{bottom:607.613333pt;}
.y11c{bottom:608.893333pt;}
.y130{bottom:611.933333pt;}
.y78{bottom:614.333333pt;}
.y108{bottom:616.000000pt;}
.y15d{bottom:618.173333pt;}
.yef{bottom:620.253333pt;}
.yad{bottom:627.133333pt;}
.y5a{bottom:629.533333pt;}
.y95{bottom:630.333333pt;}
.ybf{bottom:631.613333pt;}
.y11{bottom:632.733333pt;}
.y11b{bottom:634.013333pt;}
.y31{bottom:634.973333pt;}
.y12f{bottom:639.453333pt;}
.y15c{bottom:641.053333pt;}
.y16f{bottom:641.280000pt;}
.y42{bottom:641.693333pt;}
.y77{bottom:641.853333pt;}
.yee{bottom:645.533333pt;}
.y59{bottom:649.053333pt;}
.y94{bottom:649.693333pt;}
.ybe{bottom:650.973333pt;}
.yac{bottom:652.413333pt;}
.yd9{bottom:654.813333pt;}
.y10{bottom:658.013333pt;}
.y11a{bottom:659.293333pt;}
.y30{bottom:662.493333pt;}
.y12e{bottom:667.133333pt;}
.y76{bottom:669.373333pt;}
.yed{bottom:670.813333pt;}
.y58{bottom:677.213333pt;}
.yab{bottom:677.693333pt;}
.y93{bottom:677.853333pt;}
.ybd{bottom:679.133333pt;}
.yd8{bottom:679.933333pt;}
.yf{bottom:684.093333pt;}
.y119{bottom:684.573333pt;}
.y2f{bottom:690.013333pt;}
.y12d{bottom:694.653333pt;}
.yec{bottom:696.093333pt;}
.y75{bottom:696.893333pt;}
.yaa{bottom:702.973333pt;}
.yd7{bottom:705.213333pt;}
.y57{bottom:705.373333pt;}
.y91{bottom:706.013333pt;}
.yba{bottom:707.453333pt;}
.y118{bottom:709.853333pt;}
.ye{bottom:711.613333pt;}
.y2e{bottom:717.573333pt;}
.y12c{bottom:720.613333pt;}
.yeb{bottom:721.413333pt;}
.y184{bottom:722.213333pt;}
.y74{bottom:723.653333pt;}
.ya9{bottom:728.293333pt;}
.yd6{bottom:730.533333pt;}
.y56{bottom:733.733333pt;}
.y90{bottom:734.373333pt;}
.y117{bottom:735.173333pt;}
.ybc{bottom:735.653333pt;}
.yd{bottom:739.333333pt;}
.y2d{bottom:745.093333pt;}
.yea{bottom:746.533333pt;}
.y73{bottom:748.933333pt;}
.y183{bottom:749.733333pt;}
.ya8{bottom:753.413333pt;}
.yd5{bottom:755.813333pt;}
.y116{bottom:760.293333pt;}
.y55{bottom:761.893333pt;}
.y89{bottom:762.533333pt;}
.yc{bottom:766.853333pt;}
.y72{bottom:771.813333pt;}
.y2c{bottom:772.613333pt;}
.y182{bottom:777.253333pt;}
.ya7{bottom:778.693333pt;}
.yd4{bottom:781.093333pt;}
.y115{bottom:785.573333pt;}
.y4f{bottom:790.053333pt;}
.y71{bottom:792.453333pt;}
.yb{bottom:794.373333pt;}
.y2b{bottom:800.293333pt;}
.ya6{bottom:803.973333pt;}
.y181{bottom:804.773333pt;}
.yd3{bottom:806.213333pt;}
.y114{bottom:810.853333pt;}
.y70{bottom:817.733333pt;}
.ya{bottom:823.173333pt;}
.y2a{bottom:827.813333pt;}
.ya5{bottom:829.253333pt;}
.yd2{bottom:831.493333pt;}
.y180{bottom:832.293333pt;}
.y113{bottom:836.133333pt;}
.y6f{bottom:843.013333pt;}
.y8c{bottom:845.893333pt;}
.y9{bottom:855.333333pt;}
.yd1{bottom:856.773333pt;}
.y17f{bottom:858.373333pt;}
.y112{bottom:861.413333pt;}
.y6e{bottom:868.293333pt;}
.y51{bottom:873.413333pt;}
.y29{bottom:882.853333pt;}
.y8{bottom:886.213333pt;}
.y111{bottom:886.533333pt;}
.ya4{bottom:889.573333pt;}
.y6d{bottom:891.173333pt;}
.y28{bottom:910.373333pt;}
.y6c{bottom:911.813333pt;}
.y7{bottom:913.733333pt;}
.y27{bottom:932.613333pt;}
.y6{bottom:941.253333pt;}
.y26{bottom:954.080000pt;}
.y25{bottom:973.280000pt;}
.y24{bottom:992.320000pt;}
.hd{height:27.520000pt;}
.hf{height:27.552000pt;}
.h16{height:27.680000pt;}
.h12{height:27.712000pt;}
.ha{height:33.515625pt;}
.h17{height:33.760000pt;}
.h9{height:33.918750pt;}
.hb{height:34.374375pt;}
.h7{height:38.878125pt;}
.h14{height:44.456875pt;}
.h10{height:44.910937pt;}
.h18{height:47.742188pt;}
.h1a{height:47.869500pt;}
.h13{height:49.996250pt;}
.h3{height:53.562500pt;}
.h1d{height:54.343750pt;}
.h1{height:55.635938pt;}
.h15{height:55.712000pt;}
.h8{height:58.563750pt;}
.h2{height:61.668750pt;}
.h6{height:62.812500pt;}
.h1e{height:63.843750pt;}
.h4{height:67.031250pt;}
.h1c{height:77.075521pt;}
.h5{height:78.426562pt;}
.h11{height:82.560000pt;}
.he{height:82.720000pt;}
.hc{height:110.880000pt;}
.h19{height:278.560000pt;}
.h1b{height:287.840000pt;}
.h0{height:1056.000000pt;}
.w15{width:40.160000pt;}
.w14{width:41.120000pt;}
.w13{width:46.880000pt;}
.w11{width:63.360000pt;}
.w10{width:63.392000pt;}
.w6{width:76.192000pt;}
.w5{width:95.712000pt;}
.wb{width:103.040000pt;}
.w8{width:122.240000pt;}
.w7{width:133.786667pt;}
.w12{width:138.240000pt;}
.w3{width:139.360000pt;}
.wc{width:141.306667pt;}
.we{width:159.680000pt;}
.w9{width:169.466667pt;}
.wd{width:206.906667pt;}
.wf{width:330.306667pt;}
.w4{width:333.506667pt;}
.wa{width:452.706667pt;}
.w17{width:608.960000pt;}
.w16{width:624.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:4.480000pt;}
.x11{left:6.880000pt;}
.x3e{left:8.773333pt;}
.x28{left:10.400000pt;}
.x2a{left:11.520000pt;}
.x3c{left:14.720000pt;}
.x24{left:19.360000pt;}
.x37{left:22.240000pt;}
.x25{left:23.520000pt;}
.x15{left:24.960000pt;}
.x38{left:27.080000pt;}
.x18{left:30.120000pt;}
.x1c{left:34.120000pt;}
.x26{left:35.040000pt;}
.x44{left:36.384000pt;}
.x1f{left:37.280000pt;}
.x1b{left:39.840000pt;}
.x2e{left:43.520000pt;}
.x2b{left:47.520000pt;}
.x1d{left:53.120000pt;}
.x22{left:55.674667pt;}
.x1a{left:57.120000pt;}
.x19{left:58.880000pt;}
.x33{left:60.040000pt;}
.x2c{left:62.560000pt;}
.x39{left:65.120000pt;}
.x1e{left:87.034667pt;}
.x1{left:96.031988pt;}
.x2d{left:99.360000pt;}
.x46{left:104.480000pt;}
.x45{left:110.560000pt;}
.x13{left:123.720000pt;}
.x10{left:133.786642pt;}
.xf{left:138.746642pt;}
.x2{left:144.026655pt;}
.xe{left:148.346655pt;}
.x2f{left:150.746655pt;}
.x3f{left:153.760000pt;}
.x4{left:157.466655pt;}
.x20{left:162.266655pt;}
.x48{left:164.453333pt;}
.x21{left:192.026655pt;}
.x4c{left:200.026655pt;}
.x12{left:236.666667pt;}
.x3{left:252.026655pt;}
.x32{left:256.986667pt;}
.x23{left:266.786667pt;}
.xd{left:288.066655pt;}
.x16{left:313.506667pt;}
.x34{left:321.026667pt;}
.x3a{left:356.320000pt;}
.x27{left:370.466667pt;}
.x35{left:385.026667pt;}
.x7{left:405.666642pt;}
.x8{left:410.306655pt;}
.x40{left:412.226642pt;}
.x41{left:416.866655pt;}
.x3d{left:430.560000pt;}
.x17{left:447.933333pt;}
.x36{left:449.053333pt;}
.x30{left:465.053309pt;}
.x31{left:469.693321pt;}
.x4f{left:476.893321pt;}
.x49{left:490.146667pt;}
.x4d{left:499.133321pt;}
.x29{left:512.573333pt;}
.x5{left:519.773321pt;}
.x9{left:530.493309pt;}
.x42{left:533.413333pt;}
.xa{left:535.133321pt;}
.x50{left:538.973321pt;}
.x43{left:544.546667pt;}
.x4e{left:557.053321pt;}
.x14{left:570.973333pt;}
.x4b{left:594.653321pt;}
.x4a{left:604.413321pt;}
.xb{left:661.733309pt;}
.xc{left:666.373321pt;}
.x47{left:706.053321pt;}
.x6{left:720.133321pt;}
}




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