
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_6729e2af9f7475e00d5b5c8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.076172;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_ffa7045cb34b77e6ee38fc43.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4f4a30f4fa49a096b22bd789.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_dfec87a8433b6e0f03dca8f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_977ffa3328adeba6dc4692cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002441;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_e1f890761b1d61d9e6f65d5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.085579;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_23fd5421abc75da0167d1daa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bcb8c8b5bc26973a99d99815.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937500;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_d418ffc5607abb7258af4980.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_8bafa6ddf130204f831c444d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d932f2f91c47d85acd497f99.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.028809;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_326c2df178e12099a7013946.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.085579;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_c20b68615503e93c0bb41325.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.028809;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e301d8664273d31efcba17c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.912109;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-1.056000px;}
.ls29{letter-spacing:-0.996000px;}
.ls1c{letter-spacing:-0.798000px;}
.ls2b{letter-spacing:-0.756000px;}
.ls1d{letter-spacing:-0.570000px;}
.ls3{letter-spacing:-0.541200px;}
.lsc{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.454800px;}
.ls25{letter-spacing:-0.391800px;}
.ls1f{letter-spacing:-0.103800px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.025920px;}
.ls18{letter-spacing:0.034560px;}
.lsd{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.166800px;}
.ls0{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.291000px;}
.ls9{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.403200px;}
.lsa{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.478200px;}
.ls1{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.544200px;}
.lse{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.624000px;}
.ls2d{letter-spacing:0.639360px;}
.ls20{letter-spacing:0.642000px;}
.ls28{letter-spacing:0.690000px;}
.ls1b{letter-spacing:0.731520px;}
.ls5{letter-spacing:0.816000px;}
.ls2c{letter-spacing:1.278000px;}
.ls8{letter-spacing:1.330560px;}
.ls26{letter-spacing:1.972800px;}
.ls7{letter-spacing:6.984000px;}
.ls23{letter-spacing:12.159360px;}
.ls6{letter-spacing:12.744000px;}
.ls19{letter-spacing:22.861440px;}
.ls2a{letter-spacing:24.264000px;}
.ls11{letter-spacing:24.301440px;}
.ls1e{letter-spacing:25.741440px;}
.ls27{letter-spacing:30.061440px;}
.ls22{letter-spacing:31.662720px;}
.ls15{letter-spacing:34.542720px;}
.lsf{letter-spacing:38.701440px;}
.ls14{letter-spacing:60.462720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-54.181440px;}
.ws0{word-spacing:-20.304000px;}
.ws13{word-spacing:-18.563280px;}
.wsa{word-spacing:-18.276480px;}
.wse{word-spacing:-18.164280px;}
.wsb{word-spacing:-18.040080px;}
.ws17{word-spacing:-17.918640px;}
.ws10{word-spacing:-17.769480px;}
.ws11{word-spacing:-17.264640px;}
.ws12{word-spacing:-17.184840px;}
.ws6{word-spacing:-16.640640px;}
.ws9{word-spacing:-15.984000px;}
.ws16{word-spacing:-15.884640px;}
.wsc{word-spacing:-15.584640px;}
.ws8{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.382200px;}
.ws7{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.904000px;}
.ws5{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.175360px;}
.ws14{word-spacing:-12.942720px;}
.wsd{word-spacing:-12.674880px;}
.wsf{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-4.652160px;}
._4{margin-left:-3.612000px;}
._5{margin-left:-2.318400px;}
._2{margin-left:-1.293600px;}
._1{width:1.293600px;}
._0{width:2.605920px;}
._3{width:3.871200px;}
._8{width:5.643840px;}
._d{width:7.286880px;}
._10{width:8.736960px;}
._f{width:9.744960px;}
._e{width:10.918080px;}
._a{width:12.611040px;}
._c{width:13.940160px;}
._9{width:15.036000px;}
._21{width:16.881120px;}
._b{width:18.589440px;}
._17{width:19.765920px;}
._18{width:21.188640px;}
._19{width:22.965600px;}
._15{width:24.324000px;}
._16{width:25.929600px;}
._14{width:27.449280px;}
._11{width:29.386080px;}
._12{width:30.516000px;}
._1a{width:32.493600px;}
._1c{width:38.604960px;}
._1b{width:39.690240px;}
._6{width:40.998240px;}
._7{width:42.023040px;}
._2c{width:48.916320px;}
._1e{width:50.211840px;}
._1d{width:51.243840px;}
._20{width:52.332480px;}
._1f{width:53.399520px;}
._26{width:56.405280px;}
._2a{width:75.756000px;}
._2e{width:76.957440px;}
._2f{width:79.180320px;}
._2b{width:80.579040px;}
._30{width:82.517280px;}
._31{width:85.505280px;}
._29{width:86.875680px;}
._28{width:106.677600px;}
._23{width:117.805920px;}
._25{width:128.934240px;}
._24{width:131.428800px;}
._33{width:134.008800px;}
._32{width:135.938400px;}
._22{width:192.265920px;}
._35{width:194.105280px;}
._36{width:195.177600px;}
._27{width:196.379040px;}
._2d{width:498.081120px;}
._34{width:2539.323360px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,112,192);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:38.880000px;}
.fse{font-size:47.520000px;}
.fsc{font-size:50.400000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fsf{font-size:81.965417px;}
.fsa{font-size:83.520000px;}
.fs2{font-size:86.400000px;}
.fs9{font-size:102.240000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:168.480000px;}
.fs5{font-size:180.000000px;}
.fs6{font-size:191.520000px;}
.fs1{font-size:227.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.320000px;}
.y177{bottom:12.600000px;}
.y17d{bottom:13.680000px;}
.y2a{bottom:21.996000px;}
.y176{bottom:38.160000px;}
.y18a{bottom:39.240000px;}
.y18e{bottom:39.270000px;}
.y17c{bottom:41.760000px;}
.y18f{bottom:41.790000px;}
.y186{bottom:42.120000px;}
.y29{bottom:43.236000px;}
.y41{bottom:50.076000px;}
.y48{bottom:52.596000px;}
.y47{bottom:57.276000px;}
.y175{bottom:63.720000px;}
.y28{bottom:64.116000px;}
.y189{bottom:68.070000px;}
.y18c{bottom:69.510000px;}
.y17b{bottom:69.840000px;}
.y18b{bottom:69.870000px;}
.y185{bottom:70.200000px;}
.y180{bottom:74.880000px;}
.y40{bottom:81.396000px;}
.y27{bottom:85.356000px;}
.y43{bottom:87.165000px;}
.y10c{bottom:88.596000px;}
.y174{bottom:89.280000px;}
.y10b{bottom:93.996000px;}
.y183{bottom:96.480000px;}
.y187{bottom:97.920000px;}
.y184{bottom:98.280000px;}
.y17a{bottom:98.640000px;}
.yb8{bottom:99.396000px;}
.y17f{bottom:102.960000px;}
.y26{bottom:106.236000px;}
.y10a{bottom:106.956000px;}
.y11b{bottom:108.756000px;}
.y170{bottom:110.196000px;}
.y165{bottom:110.556000px;}
.ye4{bottom:111.276000px;}
.y129{bottom:111.996000px;}
.y109{bottom:112.356000px;}
.y3f{bottom:113.076000px;}
.y172{bottom:113.085000px;}
.y15c{bottom:113.796000px;}
.yce{bottom:114.516000px;}
.y173{bottom:114.885000px;}
.y9e{bottom:116.316000px;}
.y81{bottom:122.436000px;}
.y66{bottom:122.796000px;}
.yf2{bottom:123.156000px;}
.y195{bottom:126.045000px;}
.y19b{bottom:126.432000px;}
.y25{bottom:127.152000px;}
.y179{bottom:129.270000px;}
.y181{bottom:130.710000px;}
.y138{bottom:130.752000px;}
.y17e{bottom:131.070000px;}
.yb7{bottom:134.352000px;}
.y11a{bottom:143.352000px;}
.y164{bottom:143.712000px;}
.ydd{bottom:144.072000px;}
.y128{bottom:145.152000px;}
.ye3{bottom:146.592000px;}
.ycd{bottom:147.672000px;}
.y24{bottom:148.392000px;}
.y15b{bottom:149.112000px;}
.y9d{bottom:149.832000px;}
.y192{bottom:150.165000px;}
.y194{bottom:154.485000px;}
.y80{bottom:155.955000px;}
.yf1{bottom:157.755000px;}
.y14b{bottom:158.475000px;}
.y19a{bottom:159.555000px;}
.y1b4{bottom:164.235000px;}
.y137{bottom:164.595000px;}
.y65{bottom:165.315000px;}
.yb6{bottom:167.475000px;}
.y23{bottom:169.275000px;}
.y119{bottom:176.475000px;}
.y163{bottom:176.835000px;}
.ydc{bottom:177.195000px;}
.y127{bottom:178.635000px;}
.ye2{bottom:179.715000px;}
.y191{bottom:180.765000px;}
.ycc{bottom:180.795000px;}
.y196{bottom:182.205000px;}
.y15a{bottom:182.235000px;}
.y193{bottom:182.565000px;}
.y9c{bottom:182.955000px;}
.y1b3{bottom:186.555000px;}
.y7f{bottom:189.075000px;}
.y108{bottom:189.795000px;}
.y22{bottom:190.515000px;}
.yf0{bottom:191.235000px;}
.y199{bottom:193.035000px;}
.y14a{bottom:194.475000px;}
.y64{bottom:196.275000px;}
.y3e{bottom:197.355000px;}
.y136{bottom:200.235000px;}
.yb5{bottom:200.595000px;}
.y1b2{bottom:208.515000px;}
.y118{bottom:209.595000px;}
.y16f{bottom:209.955000px;}
.y162{bottom:210.315000px;}
.ydb{bottom:210.675000px;}
.y21{bottom:211.395000px;}
.y126{bottom:211.755000px;}
.ycb{bottom:214.275000px;}
.y9b{bottom:216.075000px;}
.y159{bottom:216.435000px;}
.y7e{bottom:222.195000px;}
.y107{bottom:222.915000px;}
.yef{bottom:224.355000px;}
.y198{bottom:226.155000px;}
.ye1{bottom:226.875000px;}
.y149{bottom:230.115000px;}
.y20{bottom:232.275000px;}
.y1b1{bottom:232.635000px;}
.yb4{bottom:234.075000px;}
.y63{bottom:238.395000px;}
.y117{bottom:243.075000px;}
.y161{bottom:243.435000px;}
.yda{bottom:243.795000px;}
.y125{bottom:244.875000px;}
.y3d{bottom:246.315000px;}
.yca{bottom:247.395000px;}
.y9a{bottom:249.195000px;}
.y158{bottom:252.465000px;}
.y1f{bottom:253.545000px;}
.y7d{bottom:255.345000px;}
.y106{bottom:256.785000px;}
.yee{bottom:257.145000px;}
.ye0{bottom:258.225000px;}
.y197{bottom:259.665000px;}
.y148{bottom:263.265000px;}
.yb3{bottom:267.225000px;}
.y135{bottom:269.385000px;}
.y160{bottom:272.985000px;}
.y1e{bottom:274.425000px;}
.y1b0{bottom:274.785000px;}
.y116{bottom:276.225000px;}
.y16e{bottom:276.585000px;}
.y190{bottom:277.305000px;}
.yd9{bottom:277.665000px;}
.y124{bottom:278.385000px;}
.y62{bottom:281.265000px;}
.yc9{bottom:281.625000px;}
.y99{bottom:282.705000px;}
.ydf{bottom:288.465000px;}
.y7c{bottom:288.825000px;}
.yed{bottom:292.065000px;}
.y105{bottom:292.425000px;}
.y1d{bottom:295.665000px;}
.y3c{bottom:296.025000px;}
.y147{bottom:296.385000px;}
.y1af{bottom:297.105000px;}
.yb2{bottom:300.345000px;}
.y134{bottom:303.585000px;}
.y15f{bottom:304.305000px;}
.y115{bottom:309.345000px;}
.y16d{bottom:310.425000px;}
.y123{bottom:311.505000px;}
.yd8{bottom:312.945000px;}
.yc8{bottom:314.745000px;}
.y98{bottom:315.825000px;}
.y1c{bottom:316.545000px;}
.y1ae{bottom:319.065000px;}
.y7b{bottom:321.945000px;}
.y157{bottom:324.105000px;}
.y61{bottom:324.465000px;}
.yec{bottom:325.185000px;}
.y104{bottom:325.545000px;}
.y146{bottom:329.505000px;}
.yb1{bottom:333.465000px;}
.y15e{bottom:334.545000px;}
.y1b{bottom:337.425000px;}
.y133{bottom:338.865000px;}
.y114{bottom:342.465000px;}
.y122{bottom:344.625000px;}
.yd7{bottom:346.425000px;}
.yc7{bottom:348.225000px;}
.y3b{bottom:348.585000px;}
.y97{bottom:350.025000px;}
.y7a{bottom:355.065000px;}
.y156{bottom:357.225000px;}
.yeb{bottom:358.305000px;}
.y1a{bottom:358.665000px;}
.y1ad{bottom:361.185000px;}
.y145{bottom:362.985000px;}
.yb0{bottom:366.945000px;}
.y60{bottom:367.305000px;}
.y132{bottom:371.985000px;}
.y113{bottom:376.710000px;}
.y121{bottom:377.790000px;}
.y19{bottom:379.590000px;}
.yd6{bottom:380.310000px;}
.yc6{bottom:381.390000px;}
.y16c{bottom:382.110000px;}
.y1ac{bottom:383.550000px;}
.y96{bottom:384.990000px;}
.y79{bottom:388.590000px;}
.y155{bottom:390.390000px;}
.yea{bottom:391.830000px;}
.y103{bottom:392.550000px;}
.y144{bottom:396.150000px;}
.yaf{bottom:400.110000px;}
.y18{bottom:400.830000px;}
.y3a{bottom:401.910000px;}
.y131{bottom:405.510000px;}
.y5f{bottom:410.550000px;}
.y120{bottom:411.270000px;}
.y112{bottom:413.070000px;}
.y16b{bottom:415.230000px;}
.yc5{bottom:415.590000px;}
.yd5{bottom:416.310000px;}
.y95{bottom:418.110000px;}
.y17{bottom:421.710000px;}
.y154{bottom:423.510000px;}
.ye9{bottom:424.950000px;}
.y1ab{bottom:427.830000px;}
.y102{bottom:428.190000px;}
.y143{bottom:429.270000px;}
.yae{bottom:433.230000px;}
.y130{bottom:438.630000px;}
.y16{bottom:442.590000px;}
.y11f{bottom:444.390000px;}
.y16a{bottom:448.350000px;}
.yc4{bottom:448.710000px;}
.y111{bottom:449.070000px;}
.y94{bottom:451.230000px;}
.y1aa{bottom:451.590000px;}
.yd4{bottom:451.950000px;}
.y5e{bottom:453.750000px;}
.y78{bottom:455.910000px;}
.y153{bottom:456.990000px;}
.y39{bottom:458.070000px;}
.y101{bottom:461.310000px;}
.y142{bottom:462.390000px;}
.y15{bottom:463.830000px;}
.yad{bottom:466.710000px;}
.y18d{bottom:474.990000px;}
.y11e{bottom:477.510000px;}
.y110{bottom:479.310000px;}
.y169{bottom:481.470000px;}
.y12f{bottom:481.830000px;}
.yc3{bottom:482.190000px;}
.y93{bottom:484.350000px;}
.y14{bottom:484.710000px;}
.yd3{bottom:485.070000px;}
.y152{bottom:490.830000px;}
.ye8{bottom:491.190000px;}
.y1a9{bottom:491.910000px;}
.y77{bottom:494.430000px;}
.y100{bottom:495.150000px;}
.y141{bottom:495.870000px;}
.yac{bottom:499.830000px;}
.y13{bottom:505.980000px;}
.y10f{bottom:510.660000px;}
.y11d{bottom:511.020000px;}
.y38{bottom:514.260000px;}
.y5d{bottom:514.620000px;}
.y168{bottom:514.980000px;}
.yc2{bottom:515.340000px;}
.y12e{bottom:516.420000px;}
.y92{bottom:517.860000px;}
.ye7{bottom:520.380000px;}
.y151{bottom:526.140000px;}
.y12{bottom:526.860000px;}
.yd2{bottom:528.300000px;}
.y140{bottom:529.020000px;}
.yff{bottom:531.540000px;}
.y76{bottom:531.900000px;}
.yab{bottom:532.980000px;}
.y5c{bottom:540.180000px;}
.y10e{bottom:540.900000px;}
.y11c{bottom:544.140000px;}
.y11{bottom:547.740000px;}
.y167{bottom:548.100000px;}
.y12d{bottom:549.900000px;}
.y91{bottom:550.980000px;}
.ye6{bottom:551.700000px;}
.y1c3{bottom:554.940000px;}
.y1a8{bottom:556.020000px;}
.y188{bottom:559.980000px;}
.y150{bottom:560.340000px;}
.yc1{bottom:561.780000px;}
.y13f{bottom:562.140000px;}
.yd1{bottom:563.220000px;}
.yaa{bottom:566.100000px;}
.yfe{bottom:567.540000px;}
.y10{bottom:568.980000px;}
.y37{bottom:569.340000px;}
.y5b{bottom:574.740000px;}
.y1a7{bottom:578.340000px;}
.ye5{bottom:581.940000px;}
.y166{bottom:582.660000px;}
.y12c{bottom:583.740000px;}
.y90{bottom:584.100000px;}
.yf{bottom:589.860000px;}
.yc0{bottom:590.580000px;}
.y13e{bottom:591.300000px;}
.y75{bottom:594.900000px;}
.y1c2{bottom:595.260000px;}
.yd0{bottom:596.340000px;}
.y14f{bottom:596.700000px;}
.y5a{bottom:600.300000px;}
.yfd{bottom:603.540000px;}
.ye{bottom:611.100000px;}
.y36{bottom:615.780000px;}
.y8f{bottom:617.580000px;}
.ybf{bottom:619.380000px;}
.y12b{bottom:619.740000px;}
.y74{bottom:620.460000px;}
.y13d{bottom:622.620000px;}
.ycf{bottom:624.420000px;}
.y59{bottom:625.500000px;}
.y14e{bottom:631.290000px;}
.yd{bottom:632.010000px;}
.y1c1{bottom:635.250000px;}
.ya9{bottom:636.330000px;}
.y35{bottom:636.690000px;}
.yfc{bottom:639.210000px;}
.y182{bottom:644.970000px;}
.y73{bottom:646.050000px;}
.ybe{bottom:648.210000px;}
.y12a{bottom:650.370000px;}
.y8e{bottom:650.730000px;}
.y58{bottom:651.090000px;}
.yc{bottom:652.890000px;}
.y34{bottom:657.930000px;}
.y14d{bottom:660.810000px;}
.y1a6{bottom:666.570000px;}
.y72{bottom:671.250000px;}
.ya8{bottom:671.610000px;}
.yfb{bottom:672.330000px;}
.yb{bottom:674.490000px;}
.y1c0{bottom:675.570000px;}
.y57{bottom:676.650000px;}
.ybd{bottom:677.010000px;}
.yde{bottom:681.690000px;}
.y8d{bottom:683.850000px;}
.y42{bottom:685.290000px;}
.y1a5{bottom:688.890000px;}
.y14c{bottom:692.130000px;}
.y71{bottom:696.810000px;}
.y1bf{bottom:697.890000px;}
.ya{bottom:700.050000px;}
.y56{bottom:702.210000px;}
.ya7{bottom:705.090000px;}
.yfa{bottom:705.450000px;}
.ybc{bottom:705.810000px;}
.y1a4{bottom:710.850000px;}
.y8c{bottom:716.970000px;}
.y1be{bottom:719.850000px;}
.y70{bottom:722.370000px;}
.y55{bottom:727.410000px;}
.y9{bottom:734.610000px;}
.yf9{bottom:738.570000px;}
.y1bd{bottom:743.970000px;}
.y6f{bottom:747.930000px;}
.y8b{bottom:750.450000px;}
.ya6{bottom:751.530000px;}
.y54{bottom:753.015000px;}
.y178{bottom:758.415000px;}
.ybb{bottom:763.455000px;}
.yf8{bottom:772.095000px;}
.y6e{bottom:773.175000px;}
.y1a3{bottom:775.335000px;}
.y53{bottom:778.575000px;}
.ya5{bottom:780.375000px;}
.y8a{bottom:783.615000px;}
.y1bc{bottom:786.135000px;}
.yba{bottom:792.255000px;}
.y1a2{bottom:797.295000px;}
.y6d{bottom:798.735000px;}
.y8{bottom:800.895000px;}
.y52{bottom:804.135000px;}
.yf7{bottom:805.935000px;}
.ya4{bottom:809.175000px;}
.y89{bottom:816.735000px;}
.y1a1{bottom:819.615000px;}
.yb9{bottom:821.055000px;}
.y6c{bottom:824.295000px;}
.y1bb{bottom:826.095000px;}
.y51{bottom:829.335000px;}
.ya3{bottom:837.615000px;}
.yf6{bottom:841.935000px;}
.y1a0{bottom:843.735000px;}
.y15d{bottom:844.815000px;}
.y10d{bottom:848.055000px;}
.y1ba{bottom:848.415000px;}
.y6b{bottom:849.855000px;}
.y88{bottom:850.215000px;}
.y50{bottom:854.895000px;}
.y7{bottom:867.495000px;}
.y1b9{bottom:870.735000px;}
.y6a{bottom:875.055000px;}
.yf5{bottom:878.325000px;}
.y4f{bottom:880.485000px;}
.y87{bottom:883.365000px;}
.y19f{bottom:885.525000px;}
.y69{bottom:900.645000px;}
.y171{bottom:904.605000px;}
.y4e{bottom:906.045000px;}
.y19e{bottom:907.845000px;}
.y1b8{bottom:912.525000px;}
.ya2{bottom:913.605000px;}
.y86{bottom:916.485000px;}
.y19d{bottom:930.165000px;}
.y4d{bottom:931.245000px;}
.y6{bottom:934.125000px;}
.y1b7{bottom:934.845000px;}
.y68{bottom:938.085000px;}
.y13c{bottom:943.845000px;}
.ya1{bottom:946.725000px;}
.yf3{bottom:947.445000px;}
.y85{bottom:949.605000px;}
.yf4{bottom:955.725000px;}
.y1b6{bottom:958.965000px;}
.y19c{bottom:972.645000px;}
.y67{bottom:973.725000px;}
.y4c{bottom:977.685000px;}
.y13b{bottom:978.045000px;}
.ya0{bottom:980.205000px;}
.y84{bottom:983.085000px;}
.y33{bottom:987.765000px;}
.y5{bottom:1000.725000px;}
.y32{bottom:1007.970000px;}
.y13a{bottom:1013.370000px;}
.y9f{bottom:1014.090000px;}
.y4b{bottom:1014.810000px;}
.y83{bottom:1016.250000px;}
.y1b5{bottom:1023.090000px;}
.y31{bottom:1025.970000px;}
.y4a{bottom:1043.970000px;}
.y30{bottom:1046.490000px;}
.y139{bottom:1047.210000px;}
.y82{bottom:1049.370000px;}
.y2f{bottom:1067.010000px;}
.y4{bottom:1070.610000px;}
.y46{bottom:1082.850000px;}
.y2e{bottom:1087.530000px;}
.y45{bottom:1101.570000px;}
.y3{bottom:1104.450000px;}
.y2d{bottom:1108.410000px;}
.y44{bottom:1120.290000px;}
.y2c{bottom:1129.680000px;}
.y2{bottom:1137.960000px;}
.y2b{bottom:1150.920000px;}
.y1{bottom:1171.800000px;}
.hf{height:20.160000px;}
.h1a{height:29.520703px;}
.h19{height:38.464453px;}
.h1b{height:46.638281px;}
.h1e{height:49.550625px;}
.h1f{height:50.211000px;}
.h1{height:50.229844px;}
.he{height:50.294531px;}
.h21{height:50.553281px;}
.h6{height:51.532031px;}
.hc{height:54.993000px;}
.h18{height:58.168125px;}
.h16{height:59.345156px;}
.h14{height:59.775000px;}
.h1c{height:61.313974px;}
.h4{height:61.347656px;}
.h12{height:64.557000px;}
.hd{height:65.010937px;}
.h11{height:69.339000px;}
.h3{height:73.617188px;}
.h13{height:74.953125px;}
.h5{height:75.093750px;}
.h17{height:79.925027px;}
.h23{height:84.276000px;}
.h10{height:84.880500px;}
.h15{height:85.845399px;}
.ha{height:92.021484px;}
.h22{height:112.716000px;}
.h1d{height:127.836000px;}
.h9{height:143.553516px;}
.h20{height:145.476000px;}
.h7{height:153.369141px;}
.h8{height:163.184766px;}
.h2{height:193.858594px;}
.h24{height:196.950000px;}
.hb{height:267.195000px;}
.h0{height:1188.000000px;}
.w3{width:25.236000px;}
.w8{width:96.156000px;}
.w5{width:99.756000px;}
.w6{width:109.836000px;}
.w9{width:117.072000px;}
.w7{width:127.476000px;}
.w2{width:457.350000px;}
.w4{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3d{left:7.920000px;}
.x1{left:42.479986px;}
.x7{left:80.675986px;}
.x16{left:84.995986px;}
.x2c{left:90.035986px;}
.x15{left:92.555986px;}
.x34{left:100.115986px;}
.x4{left:104.435986px;}
.x2e{left:107.675986px;}
.x1c{left:111.995986px;}
.x3b{left:113.795986px;}
.x24{left:122.795986px;}
.x1b{left:123.875986px;}
.x1d{left:127.475986px;}
.x28{left:132.155973px;}
.x25{left:134.675986px;}
.x29{left:136.475986px;}
.x1e{left:138.995986px;}
.x37{left:164.594986px;}
.x13{left:166.350000px;}
.x36{left:184.034986px;}
.x3e{left:186.195000px;}
.x5{left:193.034986px;}
.x2{left:236.594986px;}
.x32{left:238.034986px;}
.x2f{left:247.784986px;}
.x6{left:255.344986px;}
.x3c{left:270.824986px;}
.x14{left:297.104986px;}
.x22{left:301.064986px;}
.x26{left:303.224986px;}
.x3{left:310.784986px;}
.x1f{left:318.344986px;}
.x2d{left:333.824986px;}
.x35{left:345.029986px;}
.x21{left:353.669986px;}
.x38{left:354.749986px;}
.x30{left:401.909973px;}
.x31{left:406.589986px;}
.x3f{left:424.950000px;}
.x8{left:436.139986px;}
.x12{left:459.540000px;}
.x11{left:467.819986px;}
.x9{left:489.059986px;}
.x40{left:521.820000px;}
.xc{left:532.289986px;}
.xd{left:595.289986px;}
.xb{left:597.449986px;}
.x20{left:616.889986px;}
.x41{left:618.690000px;}
.x39{left:620.849986px;}
.x18{left:626.609986px;}
.xa{left:685.694986px;}
.x27{left:693.254986px;}
.xf{left:731.444986px;}
.x1a{left:736.484986px;}
.x19{left:741.164986px;}
.xe{left:749.444986px;}
.x2a{left:754.124973px;}
.x2b{left:759.524986px;}
.x3a{left:760.964986px;}
.x33{left:792.284986px;}
.x17{left:807.765000px;}
.x23{left:810.284986px;}
.x10{left:882.689986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.938667pt;}
.ls29{letter-spacing:-0.885333pt;}
.ls1c{letter-spacing:-0.709333pt;}
.ls2b{letter-spacing:-0.672000pt;}
.ls1d{letter-spacing:-0.506667pt;}
.ls3{letter-spacing:-0.481067pt;}
.lsc{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.404267pt;}
.ls25{letter-spacing:-0.348267pt;}
.ls1f{letter-spacing:-0.092267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.023040pt;}
.ls18{letter-spacing:0.030720pt;}
.lsd{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.148267pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.258667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.358400pt;}
.lsa{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.425067pt;}
.ls1{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.483733pt;}
.lse{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.554667pt;}
.ls2d{letter-spacing:0.568320pt;}
.ls20{letter-spacing:0.570667pt;}
.ls28{letter-spacing:0.613333pt;}
.ls1b{letter-spacing:0.650240pt;}
.ls5{letter-spacing:0.725333pt;}
.ls2c{letter-spacing:1.136000pt;}
.ls8{letter-spacing:1.182720pt;}
.ls26{letter-spacing:1.753600pt;}
.ls7{letter-spacing:6.208000pt;}
.ls23{letter-spacing:10.808320pt;}
.ls6{letter-spacing:11.328000pt;}
.ls19{letter-spacing:20.321280pt;}
.ls2a{letter-spacing:21.568000pt;}
.ls11{letter-spacing:21.601280pt;}
.ls1e{letter-spacing:22.881280pt;}
.ls27{letter-spacing:26.721280pt;}
.ls22{letter-spacing:28.144640pt;}
.ls15{letter-spacing:30.704640pt;}
.lsf{letter-spacing:34.401280pt;}
.ls14{letter-spacing:53.744640pt;}
.ws1{word-spacing:-48.161280pt;}
.ws0{word-spacing:-18.048000pt;}
.ws13{word-spacing:-16.500693pt;}
.wsa{word-spacing:-16.245760pt;}
.wse{word-spacing:-16.146027pt;}
.wsb{word-spacing:-16.035627pt;}
.ws17{word-spacing:-15.927680pt;}
.ws10{word-spacing:-15.795093pt;}
.ws11{word-spacing:-15.346347pt;}
.ws12{word-spacing:-15.275413pt;}
.ws6{word-spacing:-14.791680pt;}
.ws9{word-spacing:-14.208000pt;}
.ws16{word-spacing:-14.119680pt;}
.wsc{word-spacing:-13.853013pt;}
.ws8{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.673067pt;}
.ws7{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.248000pt;}
.ws5{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.600320pt;}
.ws14{word-spacing:-11.504640pt;}
.wsd{word-spacing:-11.266560pt;}
.wsf{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-4.135253pt;}
._4{margin-left:-3.210667pt;}
._5{margin-left:-2.060800pt;}
._2{margin-left:-1.149867pt;}
._1{width:1.149867pt;}
._0{width:2.316373pt;}
._3{width:3.441067pt;}
._8{width:5.016747pt;}
._d{width:6.477227pt;}
._10{width:7.766187pt;}
._f{width:8.662187pt;}
._e{width:9.704960pt;}
._a{width:11.209813pt;}
._c{width:12.391253pt;}
._9{width:13.365333pt;}
._21{width:15.005440pt;}
._b{width:16.523947pt;}
._17{width:17.569707pt;}
._18{width:18.834347pt;}
._19{width:20.413867pt;}
._15{width:21.621333pt;}
._16{width:23.048533pt;}
._14{width:24.399360pt;}
._11{width:26.120960pt;}
._12{width:27.125333pt;}
._1a{width:28.883200pt;}
._1c{width:34.315520pt;}
._1b{width:35.280213pt;}
._6{width:36.442880pt;}
._7{width:37.353813pt;}
._2c{width:43.481173pt;}
._1e{width:44.632747pt;}
._1d{width:45.550080pt;}
._20{width:46.517760pt;}
._1f{width:47.466240pt;}
._26{width:50.138027pt;}
._2a{width:67.338667pt;}
._2e{width:68.406613pt;}
._2f{width:70.382507pt;}
._2b{width:71.625813pt;}
._30{width:73.348693pt;}
._31{width:76.004693pt;}
._29{width:77.222827pt;}
._28{width:94.824533pt;}
._23{width:104.716373pt;}
._25{width:114.608213pt;}
._24{width:116.825600pt;}
._33{width:119.118933pt;}
._32{width:120.834133pt;}
._22{width:170.903040pt;}
._35{width:172.538027pt;}
._36{width:173.491200pt;}
._27{width:174.559147pt;}
._2d{width:442.738773pt;}
._34{width:2257.176320pt;}
.fsd{font-size:34.560000pt;}
.fse{font-size:42.240000pt;}
.fsc{font-size:44.800000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fsf{font-size:72.858149pt;}
.fsa{font-size:74.240000pt;}
.fs2{font-size:76.800000pt;}
.fs9{font-size:90.880000pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:149.760000pt;}
.fs5{font-size:160.000000pt;}
.fs6{font-size:170.240000pt;}
.fs1{font-size:202.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.840000pt;}
.y177{bottom:11.200000pt;}
.y17d{bottom:12.160000pt;}
.y2a{bottom:19.552000pt;}
.y176{bottom:33.920000pt;}
.y18a{bottom:34.880000pt;}
.y18e{bottom:34.906667pt;}
.y17c{bottom:37.120000pt;}
.y18f{bottom:37.146667pt;}
.y186{bottom:37.440000pt;}
.y29{bottom:38.432000pt;}
.y41{bottom:44.512000pt;}
.y48{bottom:46.752000pt;}
.y47{bottom:50.912000pt;}
.y175{bottom:56.640000pt;}
.y28{bottom:56.992000pt;}
.y189{bottom:60.506667pt;}
.y18c{bottom:61.786667pt;}
.y17b{bottom:62.080000pt;}
.y18b{bottom:62.106667pt;}
.y185{bottom:62.400000pt;}
.y180{bottom:66.560000pt;}
.y40{bottom:72.352000pt;}
.y27{bottom:75.872000pt;}
.y43{bottom:77.480000pt;}
.y10c{bottom:78.752000pt;}
.y174{bottom:79.360000pt;}
.y10b{bottom:83.552000pt;}
.y183{bottom:85.760000pt;}
.y187{bottom:87.040000pt;}
.y184{bottom:87.360000pt;}
.y17a{bottom:87.680000pt;}
.yb8{bottom:88.352000pt;}
.y17f{bottom:91.520000pt;}
.y26{bottom:94.432000pt;}
.y10a{bottom:95.072000pt;}
.y11b{bottom:96.672000pt;}
.y170{bottom:97.952000pt;}
.y165{bottom:98.272000pt;}
.ye4{bottom:98.912000pt;}
.y129{bottom:99.552000pt;}
.y109{bottom:99.872000pt;}
.y3f{bottom:100.512000pt;}
.y172{bottom:100.520000pt;}
.y15c{bottom:101.152000pt;}
.yce{bottom:101.792000pt;}
.y173{bottom:102.120000pt;}
.y9e{bottom:103.392000pt;}
.y81{bottom:108.832000pt;}
.y66{bottom:109.152000pt;}
.yf2{bottom:109.472000pt;}
.y195{bottom:112.040000pt;}
.y19b{bottom:112.384000pt;}
.y25{bottom:113.024000pt;}
.y179{bottom:114.906667pt;}
.y181{bottom:116.186667pt;}
.y138{bottom:116.224000pt;}
.y17e{bottom:116.506667pt;}
.yb7{bottom:119.424000pt;}
.y11a{bottom:127.424000pt;}
.y164{bottom:127.744000pt;}
.ydd{bottom:128.064000pt;}
.y128{bottom:129.024000pt;}
.ye3{bottom:130.304000pt;}
.ycd{bottom:131.264000pt;}
.y24{bottom:131.904000pt;}
.y15b{bottom:132.544000pt;}
.y9d{bottom:133.184000pt;}
.y192{bottom:133.480000pt;}
.y194{bottom:137.320000pt;}
.y80{bottom:138.626667pt;}
.yf1{bottom:140.226667pt;}
.y14b{bottom:140.866667pt;}
.y19a{bottom:141.826667pt;}
.y1b4{bottom:145.986667pt;}
.y137{bottom:146.306667pt;}
.y65{bottom:146.946667pt;}
.yb6{bottom:148.866667pt;}
.y23{bottom:150.466667pt;}
.y119{bottom:156.866667pt;}
.y163{bottom:157.186667pt;}
.ydc{bottom:157.506667pt;}
.y127{bottom:158.786667pt;}
.ye2{bottom:159.746667pt;}
.y191{bottom:160.680000pt;}
.ycc{bottom:160.706667pt;}
.y196{bottom:161.960000pt;}
.y15a{bottom:161.986667pt;}
.y193{bottom:162.280000pt;}
.y9c{bottom:162.626667pt;}
.y1b3{bottom:165.826667pt;}
.y7f{bottom:168.066667pt;}
.y108{bottom:168.706667pt;}
.y22{bottom:169.346667pt;}
.yf0{bottom:169.986667pt;}
.y199{bottom:171.586667pt;}
.y14a{bottom:172.866667pt;}
.y64{bottom:174.466667pt;}
.y3e{bottom:175.426667pt;}
.y136{bottom:177.986667pt;}
.yb5{bottom:178.306667pt;}
.y1b2{bottom:185.346667pt;}
.y118{bottom:186.306667pt;}
.y16f{bottom:186.626667pt;}
.y162{bottom:186.946667pt;}
.ydb{bottom:187.266667pt;}
.y21{bottom:187.906667pt;}
.y126{bottom:188.226667pt;}
.ycb{bottom:190.466667pt;}
.y9b{bottom:192.066667pt;}
.y159{bottom:192.386667pt;}
.y7e{bottom:197.506667pt;}
.y107{bottom:198.146667pt;}
.yef{bottom:199.426667pt;}
.y198{bottom:201.026667pt;}
.ye1{bottom:201.666667pt;}
.y149{bottom:204.546667pt;}
.y20{bottom:206.466667pt;}
.y1b1{bottom:206.786667pt;}
.yb4{bottom:208.066667pt;}
.y63{bottom:211.906667pt;}
.y117{bottom:216.066667pt;}
.y161{bottom:216.386667pt;}
.yda{bottom:216.706667pt;}
.y125{bottom:217.666667pt;}
.y3d{bottom:218.946667pt;}
.yca{bottom:219.906667pt;}
.y9a{bottom:221.506667pt;}
.y158{bottom:224.413333pt;}
.y1f{bottom:225.373333pt;}
.y7d{bottom:226.973333pt;}
.y106{bottom:228.253333pt;}
.yee{bottom:228.573333pt;}
.ye0{bottom:229.533333pt;}
.y197{bottom:230.813333pt;}
.y148{bottom:234.013333pt;}
.yb3{bottom:237.533333pt;}
.y135{bottom:239.453333pt;}
.y160{bottom:242.653333pt;}
.y1e{bottom:243.933333pt;}
.y1b0{bottom:244.253333pt;}
.y116{bottom:245.533333pt;}
.y16e{bottom:245.853333pt;}
.y190{bottom:246.493333pt;}
.yd9{bottom:246.813333pt;}
.y124{bottom:247.453333pt;}
.y62{bottom:250.013333pt;}
.yc9{bottom:250.333333pt;}
.y99{bottom:251.293333pt;}
.ydf{bottom:256.413333pt;}
.y7c{bottom:256.733333pt;}
.yed{bottom:259.613333pt;}
.y105{bottom:259.933333pt;}
.y1d{bottom:262.813333pt;}
.y3c{bottom:263.133333pt;}
.y147{bottom:263.453333pt;}
.y1af{bottom:264.093333pt;}
.yb2{bottom:266.973333pt;}
.y134{bottom:269.853333pt;}
.y15f{bottom:270.493333pt;}
.y115{bottom:274.973333pt;}
.y16d{bottom:275.933333pt;}
.y123{bottom:276.893333pt;}
.yd8{bottom:278.173333pt;}
.yc8{bottom:279.773333pt;}
.y98{bottom:280.733333pt;}
.y1c{bottom:281.373333pt;}
.y1ae{bottom:283.613333pt;}
.y7b{bottom:286.173333pt;}
.y157{bottom:288.093333pt;}
.y61{bottom:288.413333pt;}
.yec{bottom:289.053333pt;}
.y104{bottom:289.373333pt;}
.y146{bottom:292.893333pt;}
.yb1{bottom:296.413333pt;}
.y15e{bottom:297.373333pt;}
.y1b{bottom:299.933333pt;}
.y133{bottom:301.213333pt;}
.y114{bottom:304.413333pt;}
.y122{bottom:306.333333pt;}
.yd7{bottom:307.933333pt;}
.yc7{bottom:309.533333pt;}
.y3b{bottom:309.853333pt;}
.y97{bottom:311.133333pt;}
.y7a{bottom:315.613333pt;}
.y156{bottom:317.533333pt;}
.yeb{bottom:318.493333pt;}
.y1a{bottom:318.813333pt;}
.y1ad{bottom:321.053333pt;}
.y145{bottom:322.653333pt;}
.yb0{bottom:326.173333pt;}
.y60{bottom:326.493333pt;}
.y132{bottom:330.653333pt;}
.y113{bottom:334.853333pt;}
.y121{bottom:335.813333pt;}
.y19{bottom:337.413333pt;}
.yd6{bottom:338.053333pt;}
.yc6{bottom:339.013333pt;}
.y16c{bottom:339.653333pt;}
.y1ac{bottom:340.933333pt;}
.y96{bottom:342.213333pt;}
.y79{bottom:345.413333pt;}
.y155{bottom:347.013333pt;}
.yea{bottom:348.293333pt;}
.y103{bottom:348.933333pt;}
.y144{bottom:352.133333pt;}
.yaf{bottom:355.653333pt;}
.y18{bottom:356.293333pt;}
.y3a{bottom:357.253333pt;}
.y131{bottom:360.453333pt;}
.y5f{bottom:364.933333pt;}
.y120{bottom:365.573333pt;}
.y112{bottom:367.173333pt;}
.y16b{bottom:369.093333pt;}
.yc5{bottom:369.413333pt;}
.yd5{bottom:370.053333pt;}
.y95{bottom:371.653333pt;}
.y17{bottom:374.853333pt;}
.y154{bottom:376.453333pt;}
.ye9{bottom:377.733333pt;}
.y1ab{bottom:380.293333pt;}
.y102{bottom:380.613333pt;}
.y143{bottom:381.573333pt;}
.yae{bottom:385.093333pt;}
.y130{bottom:389.893333pt;}
.y16{bottom:393.413333pt;}
.y11f{bottom:395.013333pt;}
.y16a{bottom:398.533333pt;}
.yc4{bottom:398.853333pt;}
.y111{bottom:399.173333pt;}
.y94{bottom:401.093333pt;}
.y1aa{bottom:401.413333pt;}
.yd4{bottom:401.733333pt;}
.y5e{bottom:403.333333pt;}
.y78{bottom:405.253333pt;}
.y153{bottom:406.213333pt;}
.y39{bottom:407.173333pt;}
.y101{bottom:410.053333pt;}
.y142{bottom:411.013333pt;}
.y15{bottom:412.293333pt;}
.yad{bottom:414.853333pt;}
.y18d{bottom:422.213333pt;}
.y11e{bottom:424.453333pt;}
.y110{bottom:426.053333pt;}
.y169{bottom:427.973333pt;}
.y12f{bottom:428.293333pt;}
.yc3{bottom:428.613333pt;}
.y93{bottom:430.533333pt;}
.y14{bottom:430.853333pt;}
.yd3{bottom:431.173333pt;}
.y152{bottom:436.293333pt;}
.ye8{bottom:436.613333pt;}
.y1a9{bottom:437.253333pt;}
.y77{bottom:439.493333pt;}
.y100{bottom:440.133333pt;}
.y141{bottom:440.773333pt;}
.yac{bottom:444.293333pt;}
.y13{bottom:449.760000pt;}
.y10f{bottom:453.920000pt;}
.y11d{bottom:454.240000pt;}
.y38{bottom:457.120000pt;}
.y5d{bottom:457.440000pt;}
.y168{bottom:457.760000pt;}
.yc2{bottom:458.080000pt;}
.y12e{bottom:459.040000pt;}
.y92{bottom:460.320000pt;}
.ye7{bottom:462.560000pt;}
.y151{bottom:467.680000pt;}
.y12{bottom:468.320000pt;}
.yd2{bottom:469.600000pt;}
.y140{bottom:470.240000pt;}
.yff{bottom:472.480000pt;}
.y76{bottom:472.800000pt;}
.yab{bottom:473.760000pt;}
.y5c{bottom:480.160000pt;}
.y10e{bottom:480.800000pt;}
.y11c{bottom:483.680000pt;}
.y11{bottom:486.880000pt;}
.y167{bottom:487.200000pt;}
.y12d{bottom:488.800000pt;}
.y91{bottom:489.760000pt;}
.ye6{bottom:490.400000pt;}
.y1c3{bottom:493.280000pt;}
.y1a8{bottom:494.240000pt;}
.y188{bottom:497.760000pt;}
.y150{bottom:498.080000pt;}
.yc1{bottom:499.360000pt;}
.y13f{bottom:499.680000pt;}
.yd1{bottom:500.640000pt;}
.yaa{bottom:503.200000pt;}
.yfe{bottom:504.480000pt;}
.y10{bottom:505.760000pt;}
.y37{bottom:506.080000pt;}
.y5b{bottom:510.880000pt;}
.y1a7{bottom:514.080000pt;}
.ye5{bottom:517.280000pt;}
.y166{bottom:517.920000pt;}
.y12c{bottom:518.880000pt;}
.y90{bottom:519.200000pt;}
.yf{bottom:524.320000pt;}
.yc0{bottom:524.960000pt;}
.y13e{bottom:525.600000pt;}
.y75{bottom:528.800000pt;}
.y1c2{bottom:529.120000pt;}
.yd0{bottom:530.080000pt;}
.y14f{bottom:530.400000pt;}
.y5a{bottom:533.600000pt;}
.yfd{bottom:536.480000pt;}
.ye{bottom:543.200000pt;}
.y36{bottom:547.360000pt;}
.y8f{bottom:548.960000pt;}
.ybf{bottom:550.560000pt;}
.y12b{bottom:550.880000pt;}
.y74{bottom:551.520000pt;}
.y13d{bottom:553.440000pt;}
.ycf{bottom:555.040000pt;}
.y59{bottom:556.000000pt;}
.y14e{bottom:561.146667pt;}
.yd{bottom:561.786667pt;}
.y1c1{bottom:564.666667pt;}
.ya9{bottom:565.626667pt;}
.y35{bottom:565.946667pt;}
.yfc{bottom:568.186667pt;}
.y182{bottom:573.306667pt;}
.y73{bottom:574.266667pt;}
.ybe{bottom:576.186667pt;}
.y12a{bottom:578.106667pt;}
.y8e{bottom:578.426667pt;}
.y58{bottom:578.746667pt;}
.yc{bottom:580.346667pt;}
.y34{bottom:584.826667pt;}
.y14d{bottom:587.386667pt;}
.y1a6{bottom:592.506667pt;}
.y72{bottom:596.666667pt;}
.ya8{bottom:596.986667pt;}
.yfb{bottom:597.626667pt;}
.yb{bottom:599.546667pt;}
.y1c0{bottom:600.506667pt;}
.y57{bottom:601.466667pt;}
.ybd{bottom:601.786667pt;}
.yde{bottom:605.946667pt;}
.y8d{bottom:607.866667pt;}
.y42{bottom:609.146667pt;}
.y1a5{bottom:612.346667pt;}
.y14c{bottom:615.226667pt;}
.y71{bottom:619.386667pt;}
.y1bf{bottom:620.346667pt;}
.ya{bottom:622.266667pt;}
.y56{bottom:624.186667pt;}
.ya7{bottom:626.746667pt;}
.yfa{bottom:627.066667pt;}
.ybc{bottom:627.386667pt;}
.y1a4{bottom:631.866667pt;}
.y8c{bottom:637.306667pt;}
.y1be{bottom:639.866667pt;}
.y70{bottom:642.106667pt;}
.y55{bottom:646.586667pt;}
.y9{bottom:652.986667pt;}
.yf9{bottom:656.506667pt;}
.y1bd{bottom:661.306667pt;}
.y6f{bottom:664.826667pt;}
.y8b{bottom:667.066667pt;}
.ya6{bottom:668.026667pt;}
.y54{bottom:669.346667pt;}
.y178{bottom:674.146667pt;}
.ybb{bottom:678.626667pt;}
.yf8{bottom:686.306667pt;}
.y6e{bottom:687.266667pt;}
.y1a3{bottom:689.186667pt;}
.y53{bottom:692.066667pt;}
.ya5{bottom:693.666667pt;}
.y8a{bottom:696.546667pt;}
.y1bc{bottom:698.786667pt;}
.yba{bottom:704.226667pt;}
.y1a2{bottom:708.706667pt;}
.y6d{bottom:709.986667pt;}
.y8{bottom:711.906667pt;}
.y52{bottom:714.786667pt;}
.yf7{bottom:716.386667pt;}
.ya4{bottom:719.266667pt;}
.y89{bottom:725.986667pt;}
.y1a1{bottom:728.546667pt;}
.yb9{bottom:729.826667pt;}
.y6c{bottom:732.706667pt;}
.y1bb{bottom:734.306667pt;}
.y51{bottom:737.186667pt;}
.ya3{bottom:744.546667pt;}
.yf6{bottom:748.386667pt;}
.y1a0{bottom:749.986667pt;}
.y15d{bottom:750.946667pt;}
.y10d{bottom:753.826667pt;}
.y1ba{bottom:754.146667pt;}
.y6b{bottom:755.426667pt;}
.y88{bottom:755.746667pt;}
.y50{bottom:759.906667pt;}
.y7{bottom:771.106667pt;}
.y1b9{bottom:773.986667pt;}
.y6a{bottom:777.826667pt;}
.yf5{bottom:780.733333pt;}
.y4f{bottom:782.653333pt;}
.y87{bottom:785.213333pt;}
.y19f{bottom:787.133333pt;}
.y69{bottom:800.573333pt;}
.y171{bottom:804.093333pt;}
.y4e{bottom:805.373333pt;}
.y19e{bottom:806.973333pt;}
.y1b8{bottom:811.133333pt;}
.ya2{bottom:812.093333pt;}
.y86{bottom:814.653333pt;}
.y19d{bottom:826.813333pt;}
.y4d{bottom:827.773333pt;}
.y6{bottom:830.333333pt;}
.y1b7{bottom:830.973333pt;}
.y68{bottom:833.853333pt;}
.y13c{bottom:838.973333pt;}
.ya1{bottom:841.533333pt;}
.yf3{bottom:842.173333pt;}
.y85{bottom:844.093333pt;}
.yf4{bottom:849.533333pt;}
.y1b6{bottom:852.413333pt;}
.y19c{bottom:864.573333pt;}
.y67{bottom:865.533333pt;}
.y4c{bottom:869.053333pt;}
.y13b{bottom:869.373333pt;}
.ya0{bottom:871.293333pt;}
.y84{bottom:873.853333pt;}
.y33{bottom:878.013333pt;}
.y5{bottom:889.533333pt;}
.y32{bottom:895.973333pt;}
.y13a{bottom:900.773333pt;}
.y9f{bottom:901.413333pt;}
.y4b{bottom:902.053333pt;}
.y83{bottom:903.333333pt;}
.y1b5{bottom:909.413333pt;}
.y31{bottom:911.973333pt;}
.y4a{bottom:927.973333pt;}
.y30{bottom:930.213333pt;}
.y139{bottom:930.853333pt;}
.y82{bottom:932.773333pt;}
.y2f{bottom:948.453333pt;}
.y4{bottom:951.653333pt;}
.y46{bottom:962.533333pt;}
.y2e{bottom:966.693333pt;}
.y45{bottom:979.173333pt;}
.y3{bottom:981.733333pt;}
.y2d{bottom:985.253333pt;}
.y44{bottom:995.813333pt;}
.y2c{bottom:1004.160000pt;}
.y2{bottom:1011.520000pt;}
.y2b{bottom:1023.040000pt;}
.y1{bottom:1041.600000pt;}
.hf{height:17.920000pt;}
.h1a{height:26.240625pt;}
.h19{height:34.190625pt;}
.h1b{height:41.456250pt;}
.h1e{height:44.045000pt;}
.h1f{height:44.632000pt;}
.h1{height:44.648750pt;}
.he{height:44.706250pt;}
.h21{height:44.936250pt;}
.h6{height:45.806250pt;}
.hc{height:48.882667pt;}
.h18{height:51.705000pt;}
.h16{height:52.751250pt;}
.h14{height:53.133333pt;}
.h1c{height:54.501310pt;}
.h4{height:54.531250pt;}
.h12{height:57.384000pt;}
.hd{height:57.787500pt;}
.h11{height:61.634667pt;}
.h3{height:65.437500pt;}
.h13{height:66.625000pt;}
.h5{height:66.750000pt;}
.h17{height:71.044468pt;}
.h23{height:74.912000pt;}
.h10{height:75.449333pt;}
.h15{height:76.307021pt;}
.ha{height:81.796875pt;}
.h22{height:100.192000pt;}
.h1d{height:113.632000pt;}
.h9{height:127.603125pt;}
.h20{height:129.312000pt;}
.h7{height:136.328125pt;}
.h8{height:145.053125pt;}
.h2{height:172.318750pt;}
.h24{height:175.066667pt;}
.hb{height:237.506667pt;}
.h0{height:1056.000000pt;}
.w3{width:22.432000pt;}
.w8{width:85.472000pt;}
.w5{width:88.672000pt;}
.w6{width:97.632000pt;}
.w9{width:104.064000pt;}
.w7{width:113.312000pt;}
.w2{width:406.533333pt;}
.w4{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:7.040000pt;}
.x1{left:37.759988pt;}
.x7{left:71.711988pt;}
.x16{left:75.551988pt;}
.x2c{left:80.031988pt;}
.x15{left:82.271988pt;}
.x34{left:88.991988pt;}
.x4{left:92.831988pt;}
.x2e{left:95.711988pt;}
.x1c{left:99.551988pt;}
.x3b{left:101.151988pt;}
.x24{left:109.151988pt;}
.x1b{left:110.111988pt;}
.x1d{left:113.311988pt;}
.x28{left:117.471976pt;}
.x25{left:119.711988pt;}
.x29{left:121.311988pt;}
.x1e{left:123.551988pt;}
.x37{left:146.306655pt;}
.x13{left:147.866667pt;}
.x36{left:163.586655pt;}
.x3e{left:165.506667pt;}
.x5{left:171.586655pt;}
.x2{left:210.306655pt;}
.x32{left:211.586655pt;}
.x2f{left:220.253321pt;}
.x6{left:226.973321pt;}
.x3c{left:240.733321pt;}
.x14{left:264.093321pt;}
.x22{left:267.613321pt;}
.x26{left:269.533321pt;}
.x3{left:276.253321pt;}
.x1f{left:282.973321pt;}
.x2d{left:296.733321pt;}
.x35{left:306.693321pt;}
.x21{left:314.373321pt;}
.x38{left:315.333321pt;}
.x30{left:357.253309pt;}
.x31{left:361.413321pt;}
.x3f{left:377.733333pt;}
.x8{left:387.679988pt;}
.x12{left:408.480000pt;}
.x11{left:415.839988pt;}
.x9{left:434.719988pt;}
.x40{left:463.840000pt;}
.xc{left:473.146655pt;}
.xd{left:529.146655pt;}
.xb{left:531.066655pt;}
.x20{left:548.346655pt;}
.x41{left:549.946667pt;}
.x39{left:551.866655pt;}
.x18{left:556.986655pt;}
.xa{left:609.506655pt;}
.x27{left:616.226655pt;}
.xf{left:650.173321pt;}
.x1a{left:654.653321pt;}
.x19{left:658.813321pt;}
.xe{left:666.173321pt;}
.x2a{left:670.333309pt;}
.x2b{left:675.133321pt;}
.x3a{left:676.413321pt;}
.x33{left:704.253321pt;}
.x17{left:718.013333pt;}
.x23{left:720.253321pt;}
.x10{left:784.613321pt;}
}




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