
    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_9b854261d683691c49a33d38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_671778bf88ca807c3e26e8d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_cd4928f4a48076213c13dd95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f15f69cf4c26b1ec0f43dba1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_2009875c6e7c9299c88fb751.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_c4c1f35af95a01423def97f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_1a7b0493481803e15a37e447.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_ae6045e48632d69e30486b5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.429000;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_598825dd3ac48277e8074768.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_8caeed9b1db3f7b49e5966bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_fc570b68608bd0546eca7ac4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_c9588e6c7797faff78a1d686.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.680000;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_95870695a8300e1923f2a7fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.514000;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_59996346bda609ffa9a4612c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_b40b2c74a4ce2c36d5f51a4c.woff2')format("woff");}.fff{font-family:fff;line-height:0.749000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2d753dc08fd3ebeaa2f82f87.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6478677e95e86ad68c80845c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.888000;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:ff12;src:url('chunks/assets/font_9c1a3c348211785efbfb3f67.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.046000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.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);}
.v3{vertical-align:-16.878000px;}
.v2{vertical-align:-8.970000px;}
.v5{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.964000px;}
.v7{vertical-align:15.108000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:71.730000px;}
.ls19{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000062px;}
.ls1f{letter-spacing:0.000538px;}
.ls2c{letter-spacing:0.000553px;}
.ls1a{letter-spacing:0.000792px;}
.ls7{letter-spacing:0.000993px;}
.ls25{letter-spacing:0.001641px;}
.ls1d{letter-spacing:0.002338px;}
.ls14{letter-spacing:0.003031px;}
.ls2e{letter-spacing:0.003056px;}
.ls1{letter-spacing:0.003220px;}
.ls34{letter-spacing:0.003269px;}
.ls10{letter-spacing:0.003652px;}
.ls39{letter-spacing:0.004200px;}
.ls5{letter-spacing:1.661249px;}
.lsd{letter-spacing:2.624368px;}
.ls30{letter-spacing:2.630368px;}
.ls2f{letter-spacing:2.984525px;}
.ls16{letter-spacing:2.986118px;}
.ls11{letter-spacing:2.987864px;}
.ls18{letter-spacing:2.987937px;}
.ls17{letter-spacing:2.988209px;}
.ls29{letter-spacing:2.988532px;}
.ls33{letter-spacing:2.988564px;}
.ls3a{letter-spacing:2.989409px;}
.lsc{letter-spacing:2.990525px;}
.ls13{letter-spacing:3.447652px;}
.ls35{letter-spacing:5.364538px;}
.ls3d{letter-spacing:8.303139px;}
.ls3c{letter-spacing:9.956338px;}
.ls3b{letter-spacing:9.962338px;}
.ls0{letter-spacing:10.884230px;}
.ls38{letter-spacing:13.278538px;}
.ls23{letter-spacing:14.602200px;}
.ls24{letter-spacing:14.604538px;}
.ls43{letter-spacing:16.604400px;}
.ls31{letter-spacing:19.666172px;}
.ls2{letter-spacing:19.922338px;}
.ls3e{letter-spacing:21.488525px;}
.ls9{letter-spacing:21.581249px;}
.lse{letter-spacing:21.587249px;}
.ls42{letter-spacing:21.600538px;}
.ls41{letter-spacing:21.608525px;}
.ls2d{letter-spacing:21.645056px;}
.ls3f{letter-spacing:22.202525px;}
.ls1e{letter-spacing:22.524538px;}
.ls40{letter-spacing:22.532525px;}
.lsa{letter-spacing:22.550368px;}
.lsf{letter-spacing:22.556368px;}
.ls20{letter-spacing:22.910525px;}
.ls32{letter-spacing:24.371864px;}
.ls27{letter-spacing:24.624553px;}
.ls26{letter-spacing:24.690553px;}
.ls1c{letter-spacing:24.905139px;}
.ls22{letter-spacing:25.002538px;}
.ls28{letter-spacing:25.184525px;}
.ls37{letter-spacing:25.827199px;}
.ls2b{letter-spacing:26.674528px;}
.ls21{letter-spacing:28.076525px;}
.ls2a{letter-spacing:28.162528px;}
.ls1b{letter-spacing:29.552525px;}
.ls36{letter-spacing:32.145031px;}
.ls12{letter-spacing:159.180564px;}
.ls15{letter-spacing:175.239199px;}
.ls6{letter-spacing:268.046368px;}
.ls8{letter-spacing:270.381220px;}
.ls4{letter-spacing:326.075139px;}
.ls3{letter-spacing:336.392408px;}
.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;}
}
.ws15{word-spacing:-38.937826px;}
.ws87{word-spacing:-36.271834px;}
.ws12{word-spacing:-28.955301px;}
.ws11{word-spacing:-16.605662px;}
.ws65{word-spacing:-16.273350px;}
.ws7c{word-spacing:-14.111859px;}
.ws97{word-spacing:-6.629783px;}
.ws57{word-spacing:-6.623136px;}
.ws83{word-spacing:-4.356029px;}
.wsb8{word-spacing:-3.335478px;}
.ws1f{word-spacing:-3.096376px;}
.ws41{word-spacing:-2.857274px;}
.wsba{word-spacing:-2.618171px;}
.ws3e{word-spacing:-2.498620px;}
.wsc7{word-spacing:-2.259518px;}
.ws68{word-spacing:-1.900864px;}
.ws62{word-spacing:-1.841088px;}
.ws28{word-spacing:-1.542210px;}
.ws8e{word-spacing:-1.422659px;}
.ws48{word-spacing:-1.123781px;}
.ws9c{word-spacing:-1.064006px;}
.ws5c{word-spacing:-0.944454px;}
.ws63{word-spacing:-0.884679px;}
.ws5a{word-spacing:-0.705352px;}
.ws93{word-spacing:-0.645576px;}
.wsd0{word-spacing:-0.071731px;}
.ws70{word-spacing:-0.047821px;}
.wse{word-spacing:-0.041843px;}
.ws17{word-spacing:-0.035866px;}
.ws19{word-spacing:0.000000px;}
.ws34{word-spacing:0.011955px;}
.ws40{word-spacing:0.071731px;}
.ws74{word-spacing:0.310833px;}
.wsa2{word-spacing:0.370609px;}
.ws3d{word-spacing:0.430384px;}
.ws7{word-spacing:0.500325px;}
.ws25{word-spacing:0.549936px;}
.ws69{word-spacing:0.609711px;}
.wsb9{word-spacing:0.669487px;}
.wsb1{word-spacing:0.848814px;}
.ws99{word-spacing:0.908589px;}
.wsb7{word-spacing:0.968365px;}
.ws23{word-spacing:1.028140px;}
.ws5{word-spacing:1.199704px;}
.ws88{word-spacing:1.207467px;}
.ws3b{word-spacing:1.324631px;}
.ws8d{word-spacing:1.386794px;}
.wsad{word-spacing:1.446570px;}
.ws64{word-spacing:1.468092px;}
.ws26{word-spacing:1.506345px;}
.wsbc{word-spacing:1.566121px;}
.ws9b{word-spacing:1.625896px;}
.ws2f{word-spacing:1.745448px;}
.ws2b{word-spacing:1.805223px;}
.wsc4{word-spacing:1.850657px;}
.ws67{word-spacing:1.864999px;}
.wsd1{word-spacing:1.908042px;}
.ws24{word-spacing:1.924774px;}
.ws7a{word-spacing:1.984550px;}
.ws8{word-spacing:2.006680px;}
.wsbd{word-spacing:2.008730px;}
.wsbe{word-spacing:2.044326px;}
.wsa4{word-spacing:2.104101px;}
.ws73{word-spacing:2.223652px;}
.wsd3{word-spacing:2.290607px;}
.ws32{word-spacing:2.462755px;}
.wsd4{word-spacing:2.481889px;}
.ws30{word-spacing:2.522530px;}
.wsd2{word-spacing:2.577530px;}
.wsaf{word-spacing:2.582306px;}
.ws90{word-spacing:2.642082px;}
.ws59{word-spacing:2.701857px;}
.ws61{word-spacing:2.761633px;}
.ws16{word-spacing:2.816633px;}
.wsd5{word-spacing:2.864454px;}
.ws50{word-spacing:2.940960px;}
.ws22{word-spacing:3.000735px;}
.ws60{word-spacing:3.060511px;}
.ws1d{word-spacing:3.120286px;}
.ws52{word-spacing:3.180062px;}
.ws37{word-spacing:3.237455px;}
.wscf{word-spacing:3.239838px;}
.wsa8{word-spacing:3.291949px;}
.ws33{word-spacing:3.293303px;}
.wsc3{word-spacing:3.297750px;}
.ws2{word-spacing:3.299613px;}
.ws14{word-spacing:3.309892px;}
.ws13{word-spacing:3.315892px;}
.ws6f{word-spacing:3.333096px;}
.ws10{word-spacing:3.359389px;}
.ws58{word-spacing:3.419164px;}
.wsce{word-spacing:3.538716px;}
.ws9e{word-spacing:3.598491px;}
.ws8f{word-spacing:3.658267px;}
.ws91{word-spacing:3.718042px;}
.wsc6{word-spacing:3.763481px;}
.ws66{word-spacing:3.777818px;}
.ws6{word-spacing:3.835826px;}
.ws47{word-spacing:3.837594px;}
.wsc2{word-spacing:3.897369px;}
.ws78{word-spacing:4.016920px;}
.ws3f{word-spacing:4.076696px;}
.ws42{word-spacing:4.136472px;}
.wsa1{word-spacing:4.196247px;}
.ws29{word-spacing:4.315798px;}
.wsa5{word-spacing:4.435350px;}
.wsa6{word-spacing:4.495125px;}
.wsb0{word-spacing:4.528611px;}
.ws53{word-spacing:4.614676px;}
.wsb3{word-spacing:4.674452px;}
.ws84{word-spacing:4.719893px;}
.wsae{word-spacing:4.734228px;}
.ws8a{word-spacing:4.773892px;}
.ws89{word-spacing:4.779595px;}
.ws77{word-spacing:4.794003px;}
.ws6c{word-spacing:4.853779px;}
.wsc{word-spacing:4.911794px;}
.ws2d{word-spacing:4.973330px;}
.ws5e{word-spacing:5.033106px;}
.ws5f{word-spacing:5.152657px;}
.ws6e{word-spacing:5.198099px;}
.ws21{word-spacing:5.212432px;}
.ws56{word-spacing:5.272208px;}
.ws20{word-spacing:5.391759px;}
.ws6b{word-spacing:5.451535px;}
.ws71{word-spacing:5.477971px;}
.ws5d{word-spacing:5.511310px;}
.ws6a{word-spacing:5.571086px;}
.ws6d{word-spacing:5.628485px;}
.wsa3{word-spacing:5.630862px;}
.ws31{word-spacing:5.690637px;}
.ws98{word-spacing:5.750413px;}
.ws2a{word-spacing:5.810188px;}
.ws4a{word-spacing:5.869964px;}
.ws4d{word-spacing:5.989515px;}
.ws1e{word-spacing:6.150892px;}
.wsb5{word-spacing:6.168842px;}
.ws54{word-spacing:6.202332px;}
.wsac{word-spacing:6.228618px;}
.wsc1{word-spacing:6.288393px;}
.wsbf{word-spacing:6.348169px;}
.ws75{word-spacing:6.407944px;}
.ws9d{word-spacing:6.467720px;}
.ws79{word-spacing:6.527496px;}
.ws3a{word-spacing:6.584897px;}
.wsc8{word-spacing:6.647047px;}
.ws49{word-spacing:6.706822px;}
.ws35{word-spacing:6.766598px;}
.wsab{word-spacing:6.871820px;}
.ws45{word-spacing:6.886149px;}
.ws92{word-spacing:7.065476px;}
.wsc5{word-spacing:7.206564px;}
.wsa9{word-spacing:7.304578px;}
.wsa7{word-spacing:7.483905px;}
.ws81{word-spacing:7.550873px;}
.ws27{word-spacing:7.603456px;}
.ws51{word-spacing:7.723008px;}
.ws3c{word-spacing:7.732591px;}
.ws9{word-spacing:7.763109px;}
.ws43{word-spacing:7.842559px;}
.ws55{word-spacing:7.876053px;}
.ws2e{word-spacing:7.902334px;}
.wscc{word-spacing:7.962110px;}
.wscd{word-spacing:8.141437px;}
.wsb{word-spacing:8.247295px;}
.ws4f{word-spacing:8.380539px;}
.ws7f{word-spacing:8.449900px;}
.ws7d{word-spacing:8.464246px;}
.wsca{word-spacing:8.559866px;}
.ws9a{word-spacing:8.619642px;}
.wsc9{word-spacing:8.679417px;}
.ws96{word-spacing:8.858744px;}
.wsa{word-spacing:9.377061px;}
.wsb2{word-spacing:9.396724px;}
.ws36{word-spacing:9.501953px;}
.wsb4{word-spacing:9.695602px;}
.wsd{word-spacing:9.699852px;}
.ws8b{word-spacing:9.815154px;}
.wscb{word-spacing:9.934705px;}
.ws4b{word-spacing:10.054256px;}
.wsd6{word-spacing:10.181006px;}
.ws7e{word-spacing:10.410545px;}
.ws76{word-spacing:10.412910px;}
.wsbb{word-spacing:10.472685px;}
.ws5b{word-spacing:10.771563px;}
.ws8c{word-spacing:10.813145px;}
.ws1c{word-spacing:10.831339px;}
.wsa0{word-spacing:11.189992px;}
.ws4{word-spacing:11.313804px;}
.ws44{word-spacing:11.429095px;}
.ws38{word-spacing:11.787748px;}
.ws7b{word-spacing:11.892983px;}
.ws3{word-spacing:12.093945px;}
.ws39{word-spacing:12.265953px;}
.ws94{word-spacing:12.624607px;}
.ws4e{word-spacing:12.684382px;}
.ws85{word-spacing:12.923485px;}
.ws4c{word-spacing:13.102812px;}
.ws72{word-spacing:13.162587px;}
.ws95{word-spacing:15.553611px;}
.ws86{word-spacing:15.972040px;}
.ws18{word-spacing:18.315290px;}
.wsb6{word-spacing:19.552754px;}
.ws9f{word-spacing:20.008754px;}
.ws1{word-spacing:21.339889px;}
.wsc0{word-spacing:24.556754px;}
.ws82{word-spacing:24.599912px;}
.ws80{word-spacing:24.599981px;}
.ws46{word-spacing:25.472766px;}
.ws2c{word-spacing:26.827469px;}
.ws1b{word-spacing:27.389019px;}
.ws0{word-spacing:38.631358px;}
.wsf{word-spacing:74.678766px;}
.ws1a{word-spacing:80.625869px;}
.wsaa{word-spacing:82.551495px;}
._23{margin-left:-28.368991px;}
._2d{margin-left:-27.272464px;}
._2c{margin-left:-25.068563px;}
._26{margin-left:-18.881192px;}
._1f{margin-left:-7.649399px;}
._21{margin-left:-6.516940px;}
._2{margin-left:-5.201876px;}
._1{margin-left:-3.202064px;}
._3{margin-left:-1.433215px;}
._4{width:1.673717px;}
._0{width:3.202064px;}
._2b{width:4.275227px;}
._6{width:9.984299px;}
._1c{width:13.094424px;}
._22{width:15.811918px;}
._16{width:16.890677px;}
._13{width:17.968574px;}
._9{width:19.897866px;}
._1d{width:21.859614px;}
._14{width:22.945335px;}
._17{width:24.926425px;}
._15{width:26.033545px;}
._b{width:27.462481px;}
._a{width:29.158733px;}
._8{width:30.863713px;}
._e{width:32.146135px;}
._19{width:33.774613px;}
._1b{width:35.887773px;}
._1e{width:38.127710px;}
._5{width:39.870325px;}
._d{width:41.918102px;}
._7{width:43.845696px;}
._c{width:45.547903px;}
._20{width:47.436346px;}
._27{width:50.148556px;}
._1a{width:51.598427px;}
._25{width:55.292430px;}
._24{width:56.332667px;}
._2a{width:60.228277px;}
._29{width:71.390983px;}
._18{width:81.247550px;}
._28{width:93.714201px;}
._11{width:162.929177px;}
._12{width:185.345027px;}
._f{width:189.714707px;}
._10{width:214.113468px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.099400px;}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.fs7{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y102{bottom:5.880064px;}
.y101{bottom:17.876929px;}
.y158{bottom:32.377559px;}
.y14c{bottom:32.486581px;}
.y103{bottom:32.497475px;}
.y117{bottom:32.570243px;}
.y140{bottom:32.861232px;}
.y2f{bottom:34.774500px;}
.y7d{bottom:48.970500px;}
.y2e{bottom:48.972000px;}
.y159{bottom:56.413083px;}
.y14d{bottom:56.509573px;}
.y104{bottom:56.519215px;}
.y118{bottom:56.583619px;}
.y141{bottom:56.841161px;}
.y2d{bottom:63.168000px;}
.y10c{bottom:75.332544px;}
.y15a{bottom:80.448606px;}
.y14e{bottom:80.532566px;}
.y105{bottom:80.540955px;}
.y119{bottom:80.596995px;}
.y142{bottom:80.821090px;}
.ya1{bottom:98.181000px;}
.y15b{bottom:104.484130px;}
.y14f{bottom:104.555558px;}
.y106{bottom:104.562695px;}
.y11a{bottom:104.610371px;}
.y143{bottom:104.801019px;}
.y2c{bottom:112.219500px;}
.ya0{bottom:112.378500px;}
.y55{bottom:113.217000px;}
.yde{bottom:113.368500px;}
.y115{bottom:115.521000px;}
.yba{bottom:121.053000px;}
.y2b{bottom:126.922500px;}
.y162{bottom:127.386000px;}
.y15c{bottom:128.519653px;}
.y150{bottom:128.578550px;}
.y107{bottom:128.584435px;}
.y11b{bottom:128.623747px;}
.y144{bottom:128.780948px;}
.y54{bottom:131.149500px;}
.ydd{bottom:131.301000px;}
.y114{bottom:133.453500px;}
.yb9{bottom:138.985500px;}
.y161{bottom:141.583500px;}
.y2a{bottom:141.625500px;}
.ydc{bottom:149.235000px;}
.y13e{bottom:151.386000px;}
.y113{bottom:151.387500px;}
.y15d{bottom:152.555177px;}
.y151{bottom:152.601543px;}
.y108{bottom:152.606176px;}
.y11c{bottom:152.637123px;}
.y145{bottom:152.760877px;}
.y29{bottom:155.823000px;}
.yb8{bottom:156.918000px;}
.y9f{bottom:166.567500px;}
.ydb{bottom:167.167500px;}
.y53{bottom:169.189500px;}
.y13d{bottom:169.320000px;}
.y157{bottom:170.724000px;}
.y28{bottom:171.024000px;}
.yb7{bottom:174.850500px;}
.y15e{bottom:176.590701px;}
.y152{bottom:176.624535px;}
.y109{bottom:176.627916px;}
.y11d{bottom:176.650499px;}
.y146{bottom:176.740806px;}
.y7c{bottom:179.509500px;}
.y52{bottom:183.387000px;}
.y9e{bottom:184.500000px;}
.yda{bottom:185.100000px;}
.y27{bottom:185.727000px;}
.y13c{bottom:187.252500px;}
.y112{bottom:188.763000px;}
.y110{bottom:191.634498px;}
.yb6{bottom:192.783000px;}
.y7b{bottom:197.443500px;}
.y26{bottom:200.431500px;}
.y15f{bottom:200.626224px;}
.y153{bottom:200.647527px;}
.y10a{bottom:200.649656px;}
.y11e{bottom:200.663875px;}
.y147{bottom:200.720735px;}
.y9d{bottom:202.432500px;}
.y111{bottom:202.960500px;}
.yd9{bottom:203.032500px;}
.y10f{bottom:204.508848px;}
.y13b{bottom:205.185000px;}
.yb5{bottom:210.717000px;}
.y25{bottom:215.134500px;}
.y7a{bottom:215.376000px;}
.y10e{bottom:217.383198px;}
.y9c{bottom:220.365000px;}
.yd8{bottom:220.965000px;}
.y13a{bottom:223.117500px;}
.y160{bottom:224.661748px;}
.y154{bottom:224.670520px;}
.y10b{bottom:224.671396px;}
.y11f{bottom:224.677251px;}
.y148{bottom:224.700664px;}
.yb4{bottom:228.649500px;}
.y24{bottom:229.837500px;}
.y10d{bottom:230.257548px;}
.y100{bottom:232.101000px;}
.y79{bottom:233.308500px;}
.y9b{bottom:238.299000px;}
.y139{bottom:241.050000px;}
.yb3{bottom:246.582000px;}
.y176{bottom:246.939000px;}
.y78{bottom:251.241000px;}
.y23{bottom:251.430000px;}
.yd7{bottom:253.696500px;}
.y9a{bottom:256.231500px;}
.y175{bottom:258.411000px;}
.y138{bottom:258.982500px;}
.yb2{bottom:264.514500px;}
.y77{bottom:269.173500px;}
.y22{bottom:272.350500px;}
.y99{bottom:274.164000px;}
.y21{bottom:276.129000px;}
.y174{bottom:276.828000px;}
.y137{bottom:276.916500px;}
.yb1{bottom:282.447000px;}
.y76{bottom:287.106000px;}
.y173{bottom:288.300000px;}
.y98{bottom:292.096500px;}
.y20{bottom:293.272500px;}
.y136{bottom:294.849000px;}
.yd6{bottom:297.138000px;}
.yb0{bottom:300.379500px;}
.y75{bottom:305.040000px;}
.y172{bottom:306.715500px;}
.y97{bottom:310.029000px;}
.y135{bottom:312.781500px;}
.y1f{bottom:314.194500px;}
.yd5{bottom:315.070500px;}
.y171{bottom:318.187500px;}
.yaf{bottom:318.313500px;}
.y74{bottom:322.972500px;}
.y96{bottom:327.963000px;}
.y134{bottom:330.714000px;}
.y170{bottom:332.383500px;}
.yd4{bottom:333.003000px;}
.y1e{bottom:335.115000px;}
.yae{bottom:336.246000px;}
.y73{bottom:340.905000px;}
.y95{bottom:345.895500px;}
.y133{bottom:348.646500px;}
.y16f{bottom:350.800500px;}
.yd3{bottom:350.935500px;}
.yad{bottom:354.178500px;}
.y1d{bottom:356.037000px;}
.y72{bottom:358.837500px;}
.y16e{bottom:362.272500px;}
.y94{bottom:363.828000px;}
.y132{bottom:366.580500px;}
.yd2{bottom:368.869500px;}
.yac{bottom:372.111000px;}
.y16d{bottom:376.468500px;}
.y71{bottom:376.770000px;}
.y1c{bottom:376.959000px;}
.y93{bottom:381.760500px;}
.y131{bottom:384.513000px;}
.yd1{bottom:386.802000px;}
.yab{bottom:390.043500px;}
.y70{bottom:394.702500px;}
.y16c{bottom:394.884000px;}
.y1b{bottom:397.881000px;}
.y92{bottom:399.693000px;}
.y130{bottom:402.445500px;}
.yd0{bottom:404.734500px;}
.yaa{bottom:407.976000px;}
.y6f{bottom:412.636500px;}
.y91{bottom:417.625500px;}
.y1a{bottom:418.801500px;}
.y16b{bottom:419.661000px;}
.y12f{bottom:420.378000px;}
.ycf{bottom:422.667000px;}
.ya9{bottom:425.910000px;}
.y51{bottom:427.236000px;}
.y6e{bottom:430.569000px;}
.y90{bottom:435.559500px;}
.y12e{bottom:438.310500px;}
.y19{bottom:439.723500px;}
.yce{bottom:440.599500px;}
.ya8{bottom:443.842500px;}
.y50{bottom:445.168500px;}
.y6d{bottom:448.501500px;}
.y8f{bottom:453.492000px;}
.y12d{bottom:456.243000px;}
.ycd{bottom:458.533500px;}
.y18{bottom:460.645500px;}
.ya7{bottom:461.775000px;}
.y4f{bottom:463.102500px;}
.y156{bottom:464.371500px;}
.y6c{bottom:466.434000px;}
.y8e{bottom:471.424500px;}
.y12c{bottom:474.177000px;}
.ycc{bottom:476.466000px;}
.y155{bottom:478.569000px;}
.y4e{bottom:481.035000px;}
.y6b{bottom:484.366500px;}
.y8d{bottom:489.357000px;}
.y12b{bottom:492.109500px;}
.y17{bottom:492.480000px;}
.ycb{bottom:494.398500px;}
.y4d{bottom:498.967500px;}
.ya6{bottom:499.152000px;}
.yff{bottom:500.275500px;}
.y6a{bottom:502.300500px;}
.y8c{bottom:507.289500px;}
.y14b{bottom:507.709500px;}
.y12a{bottom:510.042000px;}
.yca{bottom:512.331000px;}
.ya5{bottom:513.348000px;}
.y16a{bottom:513.766500px;}
.y4c{bottom:516.900000px;}
.yfe{bottom:518.208000px;}
.y69{bottom:520.233000px;}
.y8b{bottom:525.222000px;}
.ya4{bottom:527.545500px;}
.y129{bottom:527.974500px;}
.yc9{bottom:530.263500px;}
.y4b{bottom:534.832500px;}
.yfd{bottom:536.140500px;}
.y16{bottom:537.193500px;}
.ya3{bottom:541.741500px;}
.y8a{bottom:543.156000px;}
.y128{bottom:545.907000px;}
.yc8{bottom:548.196000px;}
.y4a{bottom:552.766500px;}
.y68{bottom:552.964500px;}
.y15{bottom:553.632000px;}
.yfc{bottom:554.073000px;}
.y169{bottom:557.208000px;}
.y89{bottom:561.088500px;}
.y127{bottom:563.839500px;}
.yc7{bottom:566.130000px;}
.y14{bottom:570.070500px;}
.y49{bottom:570.699000px;}
.yfb{bottom:572.005500px;}
.y168{bottom:575.140500px;}
.y88{bottom:579.021000px;}
.y126{bottom:581.773500px;}
.yc6{bottom:584.062500px;}
.y13{bottom:586.509000px;}
.y48{bottom:588.631500px;}
.yfa{bottom:589.938000px;}
.y167{bottom:593.073000px;}
.y67{bottom:596.404500px;}
.y87{bottom:596.953500px;}
.y125{bottom:599.706000px;}
.yc5{bottom:601.995000px;}
.y12{bottom:602.947500px;}
.y47{bottom:606.564000px;}
.yf9{bottom:607.872000px;}
.y166{bottom:611.005500px;}
.y66{bottom:614.338500px;}
.y86{bottom:614.886000px;}
.y124{bottom:617.638500px;}
.y11{bottom:619.386000px;}
.yc4{bottom:619.927500px;}
.yf8{bottom:625.804500px;}
.y165{bottom:628.938000px;}
.y65{bottom:632.271000px;}
.y85{bottom:632.818500px;}
.y123{bottom:635.571000px;}
.y10{bottom:635.823000px;}
.y46{bottom:639.295500px;}
.yc3{bottom:639.612000px;}
.yf7{bottom:643.737000px;}
.y164{bottom:646.870500px;}
.y64{bottom:650.203500px;}
.y84{bottom:650.752500px;}
.yf{bottom:652.261500px;}
.y122{bottom:653.503500px;}
.yc2{bottom:657.544500px;}
.yf6{bottom:661.669500px;}
.y163{bottom:664.804500px;}
.y63{bottom:668.136000px;}
.y83{bottom:668.685000px;}
.ye{bottom:668.700000px;}
.yc1{bottom:675.477000px;}
.yf5{bottom:679.602000px;}
.y45{bottom:682.737000px;}
.yd{bottom:685.138500px;}
.y62{bottom:686.068500px;}
.y82{bottom:686.617500px;}
.y121{bottom:690.049500px;}
.yc0{bottom:693.411000px;}
.yf4{bottom:697.536000px;}
.y44{bottom:700.669500px;}
.yc{bottom:701.577000px;}
.y61{bottom:704.001000px;}
.y120{bottom:704.247000px;}
.yf3{bottom:715.468500px;}
.y43{bottom:718.602000px;}
.y81{bottom:719.349000px;}
.y60{bottom:721.935000px;}
.y116{bottom:733.387500px;}
.yf2{bottom:733.401000px;}
.y42{bottom:736.534500px;}
.y5f{bottom:739.867500px;}
.yb{bottom:740.275500px;}
.ybf{bottom:748.039500px;}
.yf1{bottom:751.333500px;}
.y41{bottom:754.467000px;}
.y5e{bottom:757.800000px;}
.ya{bottom:761.197500px;}
.ybe{bottom:762.235500px;}
.yf0{bottom:769.266000px;}
.y40{bottom:772.401000px;}
.y80{bottom:774.642000px;}
.y5d{bottom:775.732500px;}
.ybd{bottom:776.433000px;}
.yef{bottom:787.198500px;}
.y7f{bottom:788.838000px;}
.y3f{bottom:790.333500px;}
.ybc{bottom:790.629000px;}
.y5c{bottom:793.665000px;}
.y14a{bottom:801.357000px;}
.y7e{bottom:803.035500px;}
.y9{bottom:803.041500px;}
.ybb{bottom:804.826500px;}
.yee{bottom:805.132500px;}
.y3e{bottom:808.266000px;}
.y5b{bottom:811.597500px;}
.y149{bottom:815.553000px;}
.yed{bottom:823.065000px;}
.y8{bottom:823.962000px;}
.y3d{bottom:826.198500px;}
.y5a{bottom:829.531500px;}
.yec{bottom:840.997500px;}
.y3c{bottom:844.131000px;}
.y13f{bottom:844.693500px;}
.yeb{bottom:858.930000px;}
.y3b{bottom:862.063500px;}
.y7{bottom:865.806000px;}
.yea{bottom:876.862500px;}
.y3a{bottom:879.997500px;}
.y59{bottom:884.160000px;}
.y6{bottom:886.726500px;}
.ye9{bottom:894.795000px;}
.y39{bottom:897.930000px;}
.y58{bottom:898.356000px;}
.y57{bottom:912.553500px;}
.ye8{bottom:912.729000px;}
.y38{bottom:915.862500px;}
.y5{bottom:920.118000px;}
.y56{bottom:926.749500px;}
.ye7{bottom:930.661500px;}
.y37{bottom:933.795000px;}
.y4{bottom:938.050500px;}
.ye6{bottom:948.594000px;}
.y36{bottom:951.727500px;}
.ye5{bottom:966.526500px;}
.y35{bottom:969.661500px;}
.y3{bottom:970.927500px;}
.ye4{bottom:984.459000px;}
.y34{bottom:987.594000px;}
.ye3{bottom:1002.391500px;}
.y33{bottom:1005.526500px;}
.y2{bottom:1018.749000px;}
.ye2{bottom:1020.325500px;}
.y32{bottom:1023.459000px;}
.ye1{bottom:1038.258000px;}
.y31{bottom:1041.391500px;}
.y1{bottom:1051.626000px;}
.ye0{bottom:1056.190500px;}
.ya2{bottom:1059.324000px;}
.ydf{bottom:1074.123000px;}
.y30{bottom:1092.055500px;}
.h11{height:24.890726px;}
.h8{height:26.935066px;}
.h10{height:32.607343px;}
.ha{height:34.143908px;}
.h9{height:35.865450px;}
.h5{height:40.348800px;}
.h7{height:42.679778px;}
.h3{height:42.799330px;}
.h6{height:44.831700px;}
.h2{height:50.211840px;}
.hd{height:50.728903px;}
.hc{height:50.734903px;}
.h4{height:53.119943px;}
.he{height:57.787778px;}
.h1{height:72.304680px;}
.hb{height:116.561700px;}
.hf{height:252.715680px;}
.h0{height:1188.000000px;}
.w1{width:631.789200px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:43.051608px;}
.x27{left:48.385071px;}
.x25{left:78.906966px;}
.x26{left:102.885116px;}
.x29{left:106.532163px;}
.x1b{left:108.000000px;}
.x18{left:113.983500px;}
.x6{left:116.967000px;}
.x15{left:119.161500px;}
.x16{left:120.322500px;}
.x14{left:123.477000px;}
.x13{left:124.639500px;}
.x1d{left:130.416000px;}
.x1c{left:132.822000px;}
.x12{left:143.874000px;}
.x11{left:145.360500px;}
.x10{left:166.095000px;}
.xb{left:170.449500px;}
.x4{left:180.355500px;}
.x1{left:192.789000px;}
.x7{left:214.600500px;}
.x1e{left:225.040500px;}
.x19{left:238.200000px;}
.x2{left:242.604000px;}
.x2a{left:266.414542px;}
.xd{left:280.767000px;}
.x2b{left:290.392692px;}
.x2c{left:294.039739px;}
.x8{left:299.823000px;}
.x31{left:313.606500px;}
.x20{left:315.162000px;}
.x1f{left:334.561500px;}
.xf{left:337.843500px;}
.x21{left:350.019000px;}
.x24{left:353.352000px;}
.xc{left:366.136500px;}
.x32{left:379.917000px;}
.x1a{left:386.844000px;}
.x3{left:392.416500px;}
.x9{left:397.000500px;}
.x5{left:402.565500px;}
.x33{left:411.798000px;}
.xe{left:430.416000px;}
.x30{left:452.649000px;}
.x2d{left:453.922118px;}
.x17{left:455.824500px;}
.x2e{left:477.900268px;}
.x2f{left:481.547315px;}
.xa{left:485.751000px;}
.x22{left:622.518000px;}
.x23{left:703.570500px;}
@media print{
.v3{vertical-align:-15.002667pt;}
.v2{vertical-align:-7.973333pt;}
.v5{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.968000pt;}
.v7{vertical-align:13.429333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:63.760000pt;}
.ls19{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000055pt;}
.ls1f{letter-spacing:0.000479pt;}
.ls2c{letter-spacing:0.000491pt;}
.ls1a{letter-spacing:0.000704pt;}
.ls7{letter-spacing:0.000882pt;}
.ls25{letter-spacing:0.001458pt;}
.ls1d{letter-spacing:0.002079pt;}
.ls14{letter-spacing:0.002694pt;}
.ls2e{letter-spacing:0.002717pt;}
.ls1{letter-spacing:0.002863pt;}
.ls34{letter-spacing:0.002906pt;}
.ls10{letter-spacing:0.003246pt;}
.ls39{letter-spacing:0.003733pt;}
.ls5{letter-spacing:1.476666pt;}
.lsd{letter-spacing:2.332772pt;}
.ls30{letter-spacing:2.338105pt;}
.ls2f{letter-spacing:2.652911pt;}
.ls16{letter-spacing:2.654327pt;}
.ls11{letter-spacing:2.655879pt;}
.ls18{letter-spacing:2.655944pt;}
.ls17{letter-spacing:2.656186pt;}
.ls29{letter-spacing:2.656473pt;}
.ls33{letter-spacing:2.656501pt;}
.ls3a{letter-spacing:2.657253pt;}
.lsc{letter-spacing:2.658245pt;}
.ls13{letter-spacing:3.064580pt;}
.ls35{letter-spacing:4.768479pt;}
.ls3d{letter-spacing:7.380568pt;}
.ls3c{letter-spacing:8.850079pt;}
.ls3b{letter-spacing:8.855412pt;}
.ls0{letter-spacing:9.674871pt;}
.ls38{letter-spacing:11.803145pt;}
.ls23{letter-spacing:12.979733pt;}
.ls24{letter-spacing:12.981812pt;}
.ls43{letter-spacing:14.759467pt;}
.ls31{letter-spacing:17.481042pt;}
.ls2{letter-spacing:17.708745pt;}
.ls3e{letter-spacing:19.100911pt;}
.ls9{letter-spacing:19.183333pt;}
.lse{letter-spacing:19.188666pt;}
.ls42{letter-spacing:19.200479pt;}
.ls41{letter-spacing:19.207578pt;}
.ls2d{letter-spacing:19.240050pt;}
.ls3f{letter-spacing:19.735578pt;}
.ls1e{letter-spacing:20.021812pt;}
.ls40{letter-spacing:20.028911pt;}
.lsa{letter-spacing:20.044772pt;}
.lsf{letter-spacing:20.050105pt;}
.ls20{letter-spacing:20.364911pt;}
.ls32{letter-spacing:21.663879pt;}
.ls27{letter-spacing:21.888491pt;}
.ls26{letter-spacing:21.947158pt;}
.ls1c{letter-spacing:22.137902pt;}
.ls22{letter-spacing:22.224479pt;}
.ls28{letter-spacing:22.386245pt;}
.ls37{letter-spacing:22.957510pt;}
.ls2b{letter-spacing:23.710692pt;}
.ls21{letter-spacing:24.956911pt;}
.ls2a{letter-spacing:25.033358pt;}
.ls1b{letter-spacing:26.268911pt;}
.ls36{letter-spacing:28.573361pt;}
.ls12{letter-spacing:141.493835pt;}
.ls15{letter-spacing:155.768177pt;}
.ls6{letter-spacing:238.263439pt;}
.ls8{letter-spacing:240.338863pt;}
.ls4{letter-spacing:289.844568pt;}
.ls3{letter-spacing:299.015474pt;}
.ws15{word-spacing:-34.611401pt;}
.ws87{word-spacing:-32.241630pt;}
.ws12{word-spacing:-25.738045pt;}
.ws11{word-spacing:-14.760588pt;}
.ws65{word-spacing:-14.465200pt;}
.ws7c{word-spacing:-12.543875pt;}
.ws97{word-spacing:-5.893140pt;}
.ws57{word-spacing:-5.887232pt;}
.ws83{word-spacing:-3.872025pt;}
.wsb8{word-spacing:-2.964870pt;}
.ws1f{word-spacing:-2.752334pt;}
.ws41{word-spacing:-2.539799pt;}
.wsba{word-spacing:-2.327263pt;}
.ws3e{word-spacing:-2.220996pt;}
.wsc7{word-spacing:-2.008460pt;}
.ws68{word-spacing:-1.689657pt;}
.ws62{word-spacing:-1.636523pt;}
.ws28{word-spacing:-1.370854pt;}
.ws8e{word-spacing:-1.264586pt;}
.ws48{word-spacing:-0.998917pt;}
.ws9c{word-spacing:-0.945783pt;}
.ws5c{word-spacing:-0.839515pt;}
.ws63{word-spacing:-0.786381pt;}
.ws5a{word-spacing:-0.626980pt;}
.ws93{word-spacing:-0.573846pt;}
.wsd0{word-spacing:-0.063761pt;}
.ws70{word-spacing:-0.042507pt;}
.wse{word-spacing:-0.037194pt;}
.ws17{word-spacing:-0.031881pt;}
.ws19{word-spacing:0.000000pt;}
.ws34{word-spacing:0.010627pt;}
.ws40{word-spacing:0.063761pt;}
.ws74{word-spacing:0.276296pt;}
.wsa2{word-spacing:0.329430pt;}
.ws3d{word-spacing:0.382564pt;}
.ws7{word-spacing:0.444733pt;}
.ws25{word-spacing:0.488832pt;}
.ws69{word-spacing:0.541965pt;}
.wsb9{word-spacing:0.595099pt;}
.wsb1{word-spacing:0.754501pt;}
.ws99{word-spacing:0.807635pt;}
.wsb7{word-spacing:0.860769pt;}
.ws23{word-spacing:0.913903pt;}
.ws5{word-spacing:1.066404pt;}
.ws88{word-spacing:1.073304pt;}
.ws3b{word-spacing:1.177449pt;}
.ws8d{word-spacing:1.232706pt;}
.wsad{word-spacing:1.285840pt;}
.ws64{word-spacing:1.304971pt;}
.ws26{word-spacing:1.338973pt;}
.wsbc{word-spacing:1.392107pt;}
.ws9b{word-spacing:1.445241pt;}
.ws2f{word-spacing:1.551509pt;}
.ws2b{word-spacing:1.604643pt;}
.wsc4{word-spacing:1.645029pt;}
.ws67{word-spacing:1.657777pt;}
.wsd1{word-spacing:1.696037pt;}
.ws24{word-spacing:1.710911pt;}
.ws7a{word-spacing:1.764044pt;}
.ws8{word-spacing:1.783716pt;}
.wsbd{word-spacing:1.785538pt;}
.wsbe{word-spacing:1.817178pt;}
.wsa4{word-spacing:1.870312pt;}
.ws73{word-spacing:1.976580pt;}
.wsd3{word-spacing:2.036095pt;}
.ws32{word-spacing:2.189115pt;}
.wsd4{word-spacing:2.206124pt;}
.ws30{word-spacing:2.242249pt;}
.wsd2{word-spacing:2.291138pt;}
.wsaf{word-spacing:2.295383pt;}
.ws90{word-spacing:2.348517pt;}
.ws59{word-spacing:2.401651pt;}
.ws61{word-spacing:2.454785pt;}
.ws16{word-spacing:2.503674pt;}
.wsd5{word-spacing:2.546181pt;}
.ws50{word-spacing:2.614186pt;}
.ws22{word-spacing:2.667320pt;}
.ws60{word-spacing:2.720454pt;}
.ws1d{word-spacing:2.773588pt;}
.ws52{word-spacing:2.826722pt;}
.ws37{word-spacing:2.877737pt;}
.wscf{word-spacing:2.879856pt;}
.wsa8{word-spacing:2.926177pt;}
.ws33{word-spacing:2.927380pt;}
.wsc3{word-spacing:2.931333pt;}
.ws2{word-spacing:2.932989pt;}
.ws14{word-spacing:2.942126pt;}
.ws13{word-spacing:2.947459pt;}
.ws6f{word-spacing:2.962752pt;}
.ws10{word-spacing:2.986123pt;}
.ws58{word-spacing:3.039257pt;}
.wsce{word-spacing:3.145525pt;}
.ws9e{word-spacing:3.198659pt;}
.ws8f{word-spacing:3.251793pt;}
.ws91{word-spacing:3.304927pt;}
.wsc6{word-spacing:3.345317pt;}
.ws66{word-spacing:3.358060pt;}
.ws6{word-spacing:3.409623pt;}
.ws47{word-spacing:3.411194pt;}
.wsc2{word-spacing:3.464328pt;}
.ws78{word-spacing:3.570596pt;}
.ws3f{word-spacing:3.623730pt;}
.ws42{word-spacing:3.676864pt;}
.wsa1{word-spacing:3.729997pt;}
.ws29{word-spacing:3.836265pt;}
.wsa5{word-spacing:3.942533pt;}
.wsa6{word-spacing:3.995667pt;}
.wsb0{word-spacing:4.025432pt;}
.ws53{word-spacing:4.101935pt;}
.wsb3{word-spacing:4.155068pt;}
.ws84{word-spacing:4.195461pt;}
.wsae{word-spacing:4.208202pt;}
.ws8a{word-spacing:4.243459pt;}
.ws89{word-spacing:4.248529pt;}
.ws77{word-spacing:4.261336pt;}
.ws6c{word-spacing:4.314470pt;}
.wsc{word-spacing:4.366039pt;}
.ws2d{word-spacing:4.420738pt;}
.ws5e{word-spacing:4.473872pt;}
.ws5f{word-spacing:4.580139pt;}
.ws6e{word-spacing:4.620533pt;}
.ws21{word-spacing:4.633273pt;}
.ws56{word-spacing:4.686407pt;}
.ws20{word-spacing:4.792675pt;}
.ws6b{word-spacing:4.845809pt;}
.ws71{word-spacing:4.869308pt;}
.ws5d{word-spacing:4.898943pt;}
.ws6a{word-spacing:4.952076pt;}
.ws6d{word-spacing:5.003097pt;}
.wsa3{word-spacing:5.005210pt;}
.ws31{word-spacing:5.058344pt;}
.ws98{word-spacing:5.111478pt;}
.ws2a{word-spacing:5.164612pt;}
.ws4a{word-spacing:5.217746pt;}
.ws4d{word-spacing:5.324013pt;}
.ws1e{word-spacing:5.467459pt;}
.wsb5{word-spacing:5.483415pt;}
.ws54{word-spacing:5.513184pt;}
.wsac{word-spacing:5.536549pt;}
.wsc1{word-spacing:5.589683pt;}
.wsbf{word-spacing:5.642817pt;}
.ws75{word-spacing:5.695951pt;}
.ws9d{word-spacing:5.749084pt;}
.ws79{word-spacing:5.802218pt;}
.ws3a{word-spacing:5.853241pt;}
.wsc8{word-spacing:5.908486pt;}
.ws49{word-spacing:5.961620pt;}
.ws35{word-spacing:6.014754pt;}
.wsab{word-spacing:6.108285pt;}
.ws45{word-spacing:6.121021pt;}
.ws92{word-spacing:6.280423pt;}
.wsc5{word-spacing:6.405835pt;}
.wsa9{word-spacing:6.492959pt;}
.wsa7{word-spacing:6.652360pt;}
.ws81{word-spacing:6.711887pt;}
.ws27{word-spacing:6.758628pt;}
.ws51{word-spacing:6.864896pt;}
.ws3c{word-spacing:6.873414pt;}
.ws9{word-spacing:6.900541pt;}
.ws43{word-spacing:6.971163pt;}
.ws55{word-spacing:7.000936pt;}
.ws2e{word-spacing:7.024297pt;}
.wscc{word-spacing:7.077431pt;}
.wscd{word-spacing:7.236833pt;}
.wsb{word-spacing:7.330929pt;}
.ws4f{word-spacing:7.449368pt;}
.ws7f{word-spacing:7.511022pt;}
.ws7d{word-spacing:7.523774pt;}
.wsca{word-spacing:7.608770pt;}
.ws9a{word-spacing:7.661904pt;}
.wsc9{word-spacing:7.715037pt;}
.ws96{word-spacing:7.874439pt;}
.wsa{word-spacing:8.335165pt;}
.wsb2{word-spacing:8.352644pt;}
.ws36{word-spacing:8.446181pt;}
.wsb4{word-spacing:8.618313pt;}
.wsd{word-spacing:8.622090pt;}
.ws8b{word-spacing:8.724581pt;}
.wscb{word-spacing:8.830849pt;}
.ws4b{word-spacing:8.937116pt;}
.wsd6{word-spacing:9.049783pt;}
.ws7e{word-spacing:9.253817pt;}
.ws76{word-spacing:9.255920pt;}
.wsbb{word-spacing:9.309053pt;}
.ws5b{word-spacing:9.574723pt;}
.ws8c{word-spacing:9.611685pt;}
.ws1c{word-spacing:9.627857pt;}
.wsa0{word-spacing:9.946660pt;}
.ws4{word-spacing:10.056714pt;}
.ws44{word-spacing:10.159195pt;}
.ws38{word-spacing:10.477999pt;}
.ws7b{word-spacing:10.571541pt;}
.ws3{word-spacing:10.750173pt;}
.ws39{word-spacing:10.903069pt;}
.ws94{word-spacing:11.221873pt;}
.ws4e{word-spacing:11.275007pt;}
.ws85{word-spacing:11.487542pt;}
.ws4c{word-spacing:11.646944pt;}
.ws72{word-spacing:11.700077pt;}
.ws95{word-spacing:13.825432pt;}
.ws86{word-spacing:14.197369pt;}
.ws18{word-spacing:16.280258pt;}
.wsb6{word-spacing:17.380225pt;}
.ws9f{word-spacing:17.785559pt;}
.ws1{word-spacing:18.968790pt;}
.wsc0{word-spacing:21.828225pt;}
.ws82{word-spacing:21.866588pt;}
.ws80{word-spacing:21.866650pt;}
.ws46{word-spacing:22.642459pt;}
.ws2c{word-spacing:23.846639pt;}
.ws1b{word-spacing:24.345795pt;}
.ws0{word-spacing:34.338985pt;}
.wsf{word-spacing:66.381126pt;}
.ws1a{word-spacing:71.667439pt;}
.wsaa{word-spacing:73.379107pt;}
._23{margin-left:-25.216881pt;}
._2d{margin-left:-24.242190pt;}
._2c{margin-left:-22.283167pt;}
._26{margin-left:-16.783282pt;}
._1f{margin-left:-6.799466pt;}
._21{margin-left:-5.792835pt;}
._2{margin-left:-4.623890pt;}
._1{margin-left:-2.846279pt;}
._3{margin-left:-1.273969pt;}
._4{width:1.487748pt;}
._0{width:2.846279pt;}
._2b{width:3.800202pt;}
._6{width:8.874932pt;}
._1c{width:11.639488pt;}
._22{width:14.055038pt;}
._16{width:15.013935pt;}
._13{width:15.972066pt;}
._9{width:17.686992pt;}
._1d{width:19.430768pt;}
._14{width:20.395853pt;}
._17{width:22.156822pt;}
._15{width:23.140929pt;}
._b{width:24.411094pt;}
._a{width:25.918874pt;}
._8{width:27.434412pt;}
._e{width:28.574342pt;}
._19{width:30.021878pt;}
._1b{width:31.900243pt;}
._1e{width:33.891298pt;}
._5{width:35.440289pt;}
._d{width:37.260535pt;}
._7{width:38.973952pt;}
._c{width:40.487025pt;}
._20{width:42.165641pt;}
._27{width:44.576494pt;}
._1a{width:45.865269pt;}
._25{width:49.148827pt;}
._24{width:50.073482pt;}
._2a{width:53.536246pt;}
._29{width:63.458652pt;}
._18{width:72.220045pt;}
._28{width:83.301512pt;}
._11{width:144.825935pt;}
._12{width:164.751135pt;}
._f{width:168.635295pt;}
._10{width:190.323083pt;}
.fs8{font-size:31.199467pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.fs7{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:5.226723pt;}
.y101{bottom:15.890603pt;}
.y158{bottom:28.780053pt;}
.y14c{bottom:28.876961pt;}
.y103{bottom:28.886644pt;}
.y117{bottom:28.951327pt;}
.y140{bottom:29.209984pt;}
.y2f{bottom:30.910667pt;}
.y7d{bottom:43.529333pt;}
.y2e{bottom:43.530667pt;}
.y159{bottom:50.144963pt;}
.y14d{bottom:50.230732pt;}
.y104{bottom:50.239302pt;}
.y118{bottom:50.296550pt;}
.y141{bottom:50.525477pt;}
.y2d{bottom:56.149333pt;}
.y10c{bottom:66.962262pt;}
.y15a{bottom:71.509872pt;}
.y14e{bottom:71.584503pt;}
.y105{bottom:71.591960pt;}
.y119{bottom:71.641773pt;}
.y142{bottom:71.840969pt;}
.ya1{bottom:87.272000pt;}
.y15b{bottom:92.874782pt;}
.y14f{bottom:92.938274pt;}
.y106{bottom:92.944618pt;}
.y11a{bottom:92.986997pt;}
.y143{bottom:93.156462pt;}
.y2c{bottom:99.750667pt;}
.ya0{bottom:99.892000pt;}
.y55{bottom:100.637333pt;}
.yde{bottom:100.772000pt;}
.y115{bottom:102.685333pt;}
.yba{bottom:107.602667pt;}
.y2b{bottom:112.820000pt;}
.y162{bottom:113.232000pt;}
.y15c{bottom:114.239692pt;}
.y150{bottom:114.292045pt;}
.y107{bottom:114.297276pt;}
.y11b{bottom:114.332220pt;}
.y144{bottom:114.471954pt;}
.y54{bottom:116.577333pt;}
.ydd{bottom:116.712000pt;}
.y114{bottom:118.625333pt;}
.yb9{bottom:123.542667pt;}
.y161{bottom:125.852000pt;}
.y2a{bottom:125.889333pt;}
.ydc{bottom:132.653333pt;}
.y13e{bottom:134.565333pt;}
.y113{bottom:134.566667pt;}
.y15d{bottom:135.604602pt;}
.y151{bottom:135.645816pt;}
.y108{bottom:135.649934pt;}
.y11c{bottom:135.677443pt;}
.y145{bottom:135.787446pt;}
.y29{bottom:138.509333pt;}
.yb8{bottom:139.482667pt;}
.y9f{bottom:148.060000pt;}
.ydb{bottom:148.593333pt;}
.y53{bottom:150.390667pt;}
.y13d{bottom:150.506667pt;}
.y157{bottom:151.754667pt;}
.y28{bottom:152.021333pt;}
.yb7{bottom:155.422667pt;}
.y15e{bottom:156.969512pt;}
.y152{bottom:156.999587pt;}
.y109{bottom:157.002592pt;}
.y11d{bottom:157.022666pt;}
.y146{bottom:157.102939pt;}
.y7c{bottom:159.564000pt;}
.y52{bottom:163.010667pt;}
.y9e{bottom:164.000000pt;}
.yda{bottom:164.533333pt;}
.y27{bottom:165.090667pt;}
.y13c{bottom:166.446667pt;}
.y112{bottom:167.789333pt;}
.y110{bottom:170.341776pt;}
.yb6{bottom:171.362667pt;}
.y7b{bottom:175.505333pt;}
.y26{bottom:178.161333pt;}
.y15f{bottom:178.334421pt;}
.y153{bottom:178.353358pt;}
.y10a{bottom:178.355250pt;}
.y11e{bottom:178.367889pt;}
.y147{bottom:178.418431pt;}
.y9d{bottom:179.940000pt;}
.y111{bottom:180.409333pt;}
.yd9{bottom:180.473333pt;}
.y10f{bottom:181.785643pt;}
.y13b{bottom:182.386667pt;}
.yb5{bottom:187.304000pt;}
.y25{bottom:191.230667pt;}
.y7a{bottom:191.445333pt;}
.y10e{bottom:193.229509pt;}
.y9c{bottom:195.880000pt;}
.yd8{bottom:196.413333pt;}
.y13a{bottom:198.326667pt;}
.y160{bottom:199.699331pt;}
.y154{bottom:199.707128pt;}
.y10b{bottom:199.707908pt;}
.y11f{bottom:199.713112pt;}
.y148{bottom:199.733923pt;}
.yb4{bottom:203.244000pt;}
.y24{bottom:204.300000pt;}
.y10d{bottom:204.673376pt;}
.y100{bottom:206.312000pt;}
.y79{bottom:207.385333pt;}
.y9b{bottom:211.821333pt;}
.y139{bottom:214.266667pt;}
.yb3{bottom:219.184000pt;}
.y176{bottom:219.501333pt;}
.y78{bottom:223.325333pt;}
.y23{bottom:223.493333pt;}
.yd7{bottom:225.508000pt;}
.y9a{bottom:227.761333pt;}
.y175{bottom:229.698667pt;}
.y138{bottom:230.206667pt;}
.yb2{bottom:235.124000pt;}
.y77{bottom:239.265333pt;}
.y22{bottom:242.089333pt;}
.y99{bottom:243.701333pt;}
.y21{bottom:245.448000pt;}
.y174{bottom:246.069333pt;}
.y137{bottom:246.148000pt;}
.yb1{bottom:251.064000pt;}
.y76{bottom:255.205333pt;}
.y173{bottom:256.266667pt;}
.y98{bottom:259.641333pt;}
.y20{bottom:260.686667pt;}
.y136{bottom:262.088000pt;}
.yd6{bottom:264.122667pt;}
.yb0{bottom:267.004000pt;}
.y75{bottom:271.146667pt;}
.y172{bottom:272.636000pt;}
.y97{bottom:275.581333pt;}
.y135{bottom:278.028000pt;}
.y1f{bottom:279.284000pt;}
.yd5{bottom:280.062667pt;}
.y171{bottom:282.833333pt;}
.yaf{bottom:282.945333pt;}
.y74{bottom:287.086667pt;}
.y96{bottom:291.522667pt;}
.y134{bottom:293.968000pt;}
.y170{bottom:295.452000pt;}
.yd4{bottom:296.002667pt;}
.y1e{bottom:297.880000pt;}
.yae{bottom:298.885333pt;}
.y73{bottom:303.026667pt;}
.y95{bottom:307.462667pt;}
.y133{bottom:309.908000pt;}
.y16f{bottom:311.822667pt;}
.yd3{bottom:311.942667pt;}
.yad{bottom:314.825333pt;}
.y1d{bottom:316.477333pt;}
.y72{bottom:318.966667pt;}
.y16e{bottom:322.020000pt;}
.y94{bottom:323.402667pt;}
.y132{bottom:325.849333pt;}
.yd2{bottom:327.884000pt;}
.yac{bottom:330.765333pt;}
.y16d{bottom:334.638667pt;}
.y71{bottom:334.906667pt;}
.y1c{bottom:335.074667pt;}
.y93{bottom:339.342667pt;}
.y131{bottom:341.789333pt;}
.yd1{bottom:343.824000pt;}
.yab{bottom:346.705333pt;}
.y70{bottom:350.846667pt;}
.y16c{bottom:351.008000pt;}
.y1b{bottom:353.672000pt;}
.y92{bottom:355.282667pt;}
.y130{bottom:357.729333pt;}
.yd0{bottom:359.764000pt;}
.yaa{bottom:362.645333pt;}
.y6f{bottom:366.788000pt;}
.y91{bottom:371.222667pt;}
.y1a{bottom:372.268000pt;}
.y16b{bottom:373.032000pt;}
.y12f{bottom:373.669333pt;}
.ycf{bottom:375.704000pt;}
.ya9{bottom:378.586667pt;}
.y51{bottom:379.765333pt;}
.y6e{bottom:382.728000pt;}
.y90{bottom:387.164000pt;}
.y12e{bottom:389.609333pt;}
.y19{bottom:390.865333pt;}
.yce{bottom:391.644000pt;}
.ya8{bottom:394.526667pt;}
.y50{bottom:395.705333pt;}
.y6d{bottom:398.668000pt;}
.y8f{bottom:403.104000pt;}
.y12d{bottom:405.549333pt;}
.ycd{bottom:407.585333pt;}
.y18{bottom:409.462667pt;}
.ya7{bottom:410.466667pt;}
.y4f{bottom:411.646667pt;}
.y156{bottom:412.774667pt;}
.y6c{bottom:414.608000pt;}
.y8e{bottom:419.044000pt;}
.y12c{bottom:421.490667pt;}
.ycc{bottom:423.525333pt;}
.y155{bottom:425.394667pt;}
.y4e{bottom:427.586667pt;}
.y6b{bottom:430.548000pt;}
.y8d{bottom:434.984000pt;}
.y12b{bottom:437.430667pt;}
.y17{bottom:437.760000pt;}
.ycb{bottom:439.465333pt;}
.y4d{bottom:443.526667pt;}
.ya6{bottom:443.690667pt;}
.yff{bottom:444.689333pt;}
.y6a{bottom:446.489333pt;}
.y8c{bottom:450.924000pt;}
.y14b{bottom:451.297333pt;}
.y12a{bottom:453.370667pt;}
.yca{bottom:455.405333pt;}
.ya5{bottom:456.309333pt;}
.y16a{bottom:456.681333pt;}
.y4c{bottom:459.466667pt;}
.yfe{bottom:460.629333pt;}
.y69{bottom:462.429333pt;}
.y8b{bottom:466.864000pt;}
.ya4{bottom:468.929333pt;}
.y129{bottom:469.310667pt;}
.yc9{bottom:471.345333pt;}
.y4b{bottom:475.406667pt;}
.yfd{bottom:476.569333pt;}
.y16{bottom:477.505333pt;}
.ya3{bottom:481.548000pt;}
.y8a{bottom:482.805333pt;}
.y128{bottom:485.250667pt;}
.yc8{bottom:487.285333pt;}
.y4a{bottom:491.348000pt;}
.y68{bottom:491.524000pt;}
.y15{bottom:492.117333pt;}
.yfc{bottom:492.509333pt;}
.y169{bottom:495.296000pt;}
.y89{bottom:498.745333pt;}
.y127{bottom:501.190667pt;}
.yc7{bottom:503.226667pt;}
.y14{bottom:506.729333pt;}
.y49{bottom:507.288000pt;}
.yfb{bottom:508.449333pt;}
.y168{bottom:511.236000pt;}
.y88{bottom:514.685333pt;}
.y126{bottom:517.132000pt;}
.yc6{bottom:519.166667pt;}
.y13{bottom:521.341333pt;}
.y48{bottom:523.228000pt;}
.yfa{bottom:524.389333pt;}
.y167{bottom:527.176000pt;}
.y67{bottom:530.137333pt;}
.y87{bottom:530.625333pt;}
.y125{bottom:533.072000pt;}
.yc5{bottom:535.106667pt;}
.y12{bottom:535.953333pt;}
.y47{bottom:539.168000pt;}
.yf9{bottom:540.330667pt;}
.y166{bottom:543.116000pt;}
.y66{bottom:546.078667pt;}
.y86{bottom:546.565333pt;}
.y124{bottom:549.012000pt;}
.y11{bottom:550.565333pt;}
.yc4{bottom:551.046667pt;}
.yf8{bottom:556.270667pt;}
.y165{bottom:559.056000pt;}
.y65{bottom:562.018667pt;}
.y85{bottom:562.505333pt;}
.y123{bottom:564.952000pt;}
.y10{bottom:565.176000pt;}
.y46{bottom:568.262667pt;}
.yc3{bottom:568.544000pt;}
.yf7{bottom:572.210667pt;}
.y164{bottom:574.996000pt;}
.y64{bottom:577.958667pt;}
.y84{bottom:578.446667pt;}
.yf{bottom:579.788000pt;}
.y122{bottom:580.892000pt;}
.yc2{bottom:584.484000pt;}
.yf6{bottom:588.150667pt;}
.y163{bottom:590.937333pt;}
.y63{bottom:593.898667pt;}
.y83{bottom:594.386667pt;}
.ye{bottom:594.400000pt;}
.yc1{bottom:600.424000pt;}
.yf5{bottom:604.090667pt;}
.y45{bottom:606.877333pt;}
.yd{bottom:609.012000pt;}
.y62{bottom:609.838667pt;}
.y82{bottom:610.326667pt;}
.y121{bottom:613.377333pt;}
.yc0{bottom:616.365333pt;}
.yf4{bottom:620.032000pt;}
.y44{bottom:622.817333pt;}
.yc{bottom:623.624000pt;}
.y61{bottom:625.778667pt;}
.y120{bottom:625.997333pt;}
.yf3{bottom:635.972000pt;}
.y43{bottom:638.757333pt;}
.y81{bottom:639.421333pt;}
.y60{bottom:641.720000pt;}
.y116{bottom:651.900000pt;}
.yf2{bottom:651.912000pt;}
.y42{bottom:654.697333pt;}
.y5f{bottom:657.660000pt;}
.yb{bottom:658.022667pt;}
.ybf{bottom:664.924000pt;}
.yf1{bottom:667.852000pt;}
.y41{bottom:670.637333pt;}
.y5e{bottom:673.600000pt;}
.ya{bottom:676.620000pt;}
.ybe{bottom:677.542667pt;}
.yf0{bottom:683.792000pt;}
.y40{bottom:686.578667pt;}
.y80{bottom:688.570667pt;}
.y5d{bottom:689.540000pt;}
.ybd{bottom:690.162667pt;}
.yef{bottom:699.732000pt;}
.y7f{bottom:701.189333pt;}
.y3f{bottom:702.518667pt;}
.ybc{bottom:702.781333pt;}
.y5c{bottom:705.480000pt;}
.y14a{bottom:712.317333pt;}
.y7e{bottom:713.809333pt;}
.y9{bottom:713.814667pt;}
.ybb{bottom:715.401333pt;}
.yee{bottom:715.673333pt;}
.y3e{bottom:718.458667pt;}
.y5b{bottom:721.420000pt;}
.y149{bottom:724.936000pt;}
.yed{bottom:731.613333pt;}
.y8{bottom:732.410667pt;}
.y3d{bottom:734.398667pt;}
.y5a{bottom:737.361333pt;}
.yec{bottom:747.553333pt;}
.y3c{bottom:750.338667pt;}
.y13f{bottom:750.838667pt;}
.yeb{bottom:763.493333pt;}
.y3b{bottom:766.278667pt;}
.y7{bottom:769.605333pt;}
.yea{bottom:779.433333pt;}
.y3a{bottom:782.220000pt;}
.y59{bottom:785.920000pt;}
.y6{bottom:788.201333pt;}
.ye9{bottom:795.373333pt;}
.y39{bottom:798.160000pt;}
.y58{bottom:798.538667pt;}
.y57{bottom:811.158667pt;}
.ye8{bottom:811.314667pt;}
.y38{bottom:814.100000pt;}
.y5{bottom:817.882667pt;}
.y56{bottom:823.777333pt;}
.ye7{bottom:827.254667pt;}
.y37{bottom:830.040000pt;}
.y4{bottom:833.822667pt;}
.ye6{bottom:843.194667pt;}
.y36{bottom:845.980000pt;}
.ye5{bottom:859.134667pt;}
.y35{bottom:861.921333pt;}
.y3{bottom:863.046667pt;}
.ye4{bottom:875.074667pt;}
.y34{bottom:877.861333pt;}
.ye3{bottom:891.014667pt;}
.y33{bottom:893.801333pt;}
.y2{bottom:905.554667pt;}
.ye2{bottom:906.956000pt;}
.y32{bottom:909.741333pt;}
.ye1{bottom:922.896000pt;}
.y31{bottom:925.681333pt;}
.y1{bottom:934.778667pt;}
.ye0{bottom:938.836000pt;}
.ya2{bottom:941.621333pt;}
.ydf{bottom:954.776000pt;}
.y30{bottom:970.716000pt;}
.h11{height:22.125090pt;}
.h8{height:23.942281pt;}
.h10{height:28.984305pt;}
.ha{height:30.350141pt;}
.h9{height:31.880400pt;}
.h5{height:35.865600pt;}
.h7{height:37.937581pt;}
.h3{height:38.043849pt;}
.h6{height:39.850400pt;}
.h2{height:44.632747pt;}
.hd{height:45.092358pt;}
.hc{height:45.097692pt;}
.h4{height:47.217727pt;}
.he{height:51.366914pt;}
.h1{height:64.270827pt;}
.hb{height:103.610400pt;}
.hf{height:224.636160pt;}
.h0{height:1056.000000pt;}
.w1{width:561.590400pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:38.268096pt;}
.x27{left:43.008952pt;}
.x25{left:70.139525pt;}
.x26{left:91.453437pt;}
.x29{left:94.695256pt;}
.x1b{left:96.000000pt;}
.x18{left:101.318667pt;}
.x6{left:103.970667pt;}
.x15{left:105.921333pt;}
.x16{left:106.953333pt;}
.x14{left:109.757333pt;}
.x13{left:110.790667pt;}
.x1d{left:115.925333pt;}
.x1c{left:118.064000pt;}
.x12{left:127.888000pt;}
.x11{left:129.209333pt;}
.x10{left:147.640000pt;}
.xb{left:151.510667pt;}
.x4{left:160.316000pt;}
.x1{left:171.368000pt;}
.x7{left:190.756000pt;}
.x1e{left:200.036000pt;}
.x19{left:211.733333pt;}
.x2{left:215.648000pt;}
.x2a{left:236.812926pt;}
.xd{left:249.570667pt;}
.x2b{left:258.126838pt;}
.x2c{left:261.368657pt;}
.x8{left:266.509333pt;}
.x31{left:278.761333pt;}
.x20{left:280.144000pt;}
.x1f{left:297.388000pt;}
.xf{left:300.305333pt;}
.x21{left:311.128000pt;}
.x24{left:314.090667pt;}
.xc{left:325.454667pt;}
.x32{left:337.704000pt;}
.x1a{left:343.861333pt;}
.x3{left:348.814667pt;}
.x9{left:352.889333pt;}
.x5{left:357.836000pt;}
.x33{left:366.042667pt;}
.xe{left:382.592000pt;}
.x30{left:402.354667pt;}
.x2d{left:403.486327pt;}
.x17{left:405.177333pt;}
.x2e{left:424.800238pt;}
.x2f{left:428.042058pt;}
.xa{left:431.778667pt;}
.x22{left:553.349333pt;}
.x23{left:625.396000pt;}
}




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